diff --git a/.github/workflows/labeler-review.yml b/.github/workflows/labeler-review.yml index a0341e42a18..0adfee7d0e5 100644 --- a/.github/workflows/labeler-review.yml +++ b/.github/workflows/labeler-review.yml @@ -16,7 +16,7 @@ jobs: with: username: ${{ github.actor }} team: "content-maintainers,junior-maintainers" - GITHUB_TOKEN: ${{ secrets.GH_PAT }} + GITHUB_TOKEN: ${{ secrets.LABELER_PAT }} - if: ${{ steps.checkUserMember.outputs.isTeamMember == 'true' }} uses: actions-ecosystem/action-add-labels@v1 with: diff --git a/Content.Client/Administration/UI/Notes/NoteEdit.xaml.cs b/Content.Client/Administration/UI/Notes/NoteEdit.xaml.cs index a412e47396b..c8e3afeb22c 100644 --- a/Content.Client/Administration/UI/Notes/NoteEdit.xaml.cs +++ b/Content.Client/Administration/UI/Notes/NoteEdit.xaml.cs @@ -159,6 +159,7 @@ private void OnTypeChanged(OptionButton.ItemSelectedEventArgs args) SecretCheckBox.Pressed = false; SeverityOption.Disabled = false; PermanentCheckBox.Pressed = true; + SubmitButton.Disabled = true; UpdatePermanentCheckboxFields(); break; case (int) NoteType.Message: // Message: these are shown to the player when they log on diff --git a/Content.Client/Atmos/Components/PipeColorVisualsComponent.cs b/Content.Client/Atmos/Components/PipeColorVisualsComponent.cs index 355b10cb4a4..9b24b1adc25 100644 --- a/Content.Client/Atmos/Components/PipeColorVisualsComponent.cs +++ b/Content.Client/Atmos/Components/PipeColorVisualsComponent.cs @@ -1,8 +1,4 @@ -using Robust.Shared.GameObjects; - namespace Content.Client.Atmos.Components; [RegisterComponent] -public sealed partial class PipeColorVisualsComponent : Component -{ -} +public sealed partial class PipeColorVisualsComponent : Component; diff --git a/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml b/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml index 6bdfb3989f9..3dbe14e6b6d 100644 --- a/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml +++ b/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml @@ -1,6 +1,5 @@ @@ -62,7 +61,7 @@ - + diff --git a/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml.cs b/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml.cs index 79bb66560e3..e533ef2dce0 100644 --- a/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml.cs +++ b/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml.cs @@ -136,8 +136,9 @@ public void UpdateEntry(AtmosAlertsComputerEntry entry, bool isFocus, AtmosAlert GasGridContainer.RemoveAllChildren(); var gasData = focusData.Value.GasData.Where(g => g.Key != Gas.Oxygen); + var keyValuePairs = gasData.ToList(); - if (gasData.Count() == 0) + if (keyValuePairs.Count == 0) { // No other gases var gasLabel = new Label() @@ -158,13 +159,11 @@ public void UpdateEntry(AtmosAlertsComputerEntry entry, bool isFocus, AtmosAlert else { // Add an entry for each gas - foreach ((var gas, (var mol, var percent, var alert)) in gasData) + foreach ((var gas, (var mol, var percent, var alert)) in keyValuePairs) { - var gasPercent = (FixedPoint2)0f; - gasPercent = percent * 100f; + FixedPoint2 gasPercent = percent * 100f; - if (!_gasShorthands.TryGetValue(gas, out var gasShorthand)) - gasShorthand = "X"; + var gasShorthand = _gasShorthands.GetValueOrDefault(gas, "X"); var gasLabel = new Label() { diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs b/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs index 08cae979b9b..6f0e7f80da1 100644 --- a/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs +++ b/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs @@ -14,8 +14,6 @@ protected override void Open() _menu = new AtmosAlertsComputerWindow(this, Owner); _menu.OpenCentered(); _menu.OnClose += Close; - - EntMan.TryGetComponent(Owner, out var xform); } protected override void UpdateState(BoundUserInterfaceState state) @@ -24,9 +22,6 @@ protected override void UpdateState(BoundUserInterfaceState state) var castState = (AtmosAlertsComputerBoundInterfaceState) state; - if (castState == null) - return; - EntMan.TryGetComponent(Owner, out var xform); _menu?.UpdateUI(xform?.Coordinates, castState.AirAlarms, castState.FireAlarms, castState.FocusData); } diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml index 8824a776ee6..e5ede1b92e3 100644 --- a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml +++ b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml @@ -1,7 +1,6 @@ (OnInit); - SubscribeLocalEvent(OnAppearanceChanged, after: new[] { typeof(SubFloorHideSystem) }); + SubscribeLocalEvent(OnAppearanceChanged, after: [typeof(SubFloorHideSystem)]); } private void OnInit(EntityUid uid, PipeAppearanceComponent component, ComponentInit args) @@ -84,7 +82,8 @@ private void OnAppearanceChanged(EntityUid uid, PipeAppearanceComponent componen layer.Visible &= visible; - if (!visible) continue; + if (!visible) + continue; layer.Color = color; } diff --git a/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsSystem.cs b/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsSystem.cs index 019f25f376b..18ca2234752 100644 --- a/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsSystem.cs +++ b/Content.Client/Atmos/Monitor/AtmosAlarmableVisualsSystem.cs @@ -1,12 +1,7 @@ -using System.Collections.Generic; using Content.Shared.Atmos.Monitor; using Content.Shared.Power; using Robust.Client.GameObjects; using Robust.Client.Graphics; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; -using Robust.Shared.Maths; -using Robust.Shared.Serialization.Manager.Attributes; namespace Content.Client.Atmos.Monitor; @@ -27,7 +22,7 @@ protected override void OnAppearanceChange(EntityUid uid, AtmosAlarmableVisualsC { foreach (var visLayer in component.HideOnDepowered) { - if (args.Sprite.LayerMapTryGet(visLayer, out int powerVisibilityLayer)) + if (args.Sprite.LayerMapTryGet(visLayer, out var powerVisibilityLayer)) args.Sprite.LayerSetVisible(powerVisibilityLayer, powered); } } @@ -36,7 +31,7 @@ protected override void OnAppearanceChange(EntityUid uid, AtmosAlarmableVisualsC { foreach (var (setLayer, powerState) in component.SetOnDepowered) { - if (args.Sprite.LayerMapTryGet(setLayer, out int setStateLayer)) + if (args.Sprite.LayerMapTryGet(setLayer, out var setStateLayer)) args.Sprite.LayerSetState(setStateLayer, new RSI.StateId(powerState)); } } diff --git a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs index d9e94e373b4..650f96eec97 100644 --- a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs +++ b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs @@ -1,11 +1,7 @@ using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Monitor.Components; -using Robust.Client.GameObjects; using Robust.Client.UserInterface; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; -using Robust.Shared.Log; namespace Content.Client.Atmos.Monitor.UI; @@ -78,6 +74,7 @@ protected override void Dispose(bool disposing) { base.Dispose(disposing); - if (disposing) _window?.Dispose(); + if (disposing) + _window?.Dispose(); } } diff --git a/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs b/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs index e1425ac491b..65164983865 100644 --- a/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs +++ b/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs @@ -8,7 +8,6 @@ using Content.Shared.Atmos.Piping.Unary.Components; using Content.Shared.Temperature; using Robust.Client.AutoGenerated; -using Robust.Client.GameObjects; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; @@ -59,7 +58,7 @@ public AirAlarmWindow() AirAlarmMode.Fill => "air-alarm-ui-mode-fill", AirAlarmMode.Panic => "air-alarm-ui-mode-panic", AirAlarmMode.None => "air-alarm-ui-mode-none", - _ => "error" + _ => "error", }; _modes.AddItem(Loc.GetString(text)); } @@ -70,7 +69,7 @@ public AirAlarmWindow() AirAlarmModeChanged!.Invoke((AirAlarmMode) args.Id); }; - _autoMode.OnToggled += args => + _autoMode.OnToggled += _ => { AutoModeChanged!.Invoke(_autoMode.Pressed); }; @@ -176,22 +175,18 @@ public void UpdateDeviceData(string addr, IAtmosDeviceData device) public static Color ColorForThreshold(float amount, AtmosAlarmThreshold threshold) { - threshold.CheckThreshold(amount, out AtmosAlarmType curAlarm); + threshold.CheckThreshold(amount, out var curAlarm); return ColorForAlarm(curAlarm); } public static Color ColorForAlarm(AtmosAlarmType curAlarm) { - if(curAlarm == AtmosAlarmType.Danger) + return curAlarm switch { - return StyleNano.DangerousRedFore; - } - else if(curAlarm == AtmosAlarmType.Warning) - { - return StyleNano.ConcerningOrangeFore; - } - - return StyleNano.GoodGreenFore; + AtmosAlarmType.Danger => StyleNano.DangerousRedFore, + AtmosAlarmType.Warning => StyleNano.ConcerningOrangeFore, + _ => StyleNano.GoodGreenFore, + }; } diff --git a/Content.Client/Atmos/Monitor/UI/Widgets/PumpControl.xaml.cs b/Content.Client/Atmos/Monitor/UI/Widgets/PumpControl.xaml.cs index 17b03b84684..2cd51d6fc7f 100644 --- a/Content.Client/Atmos/Monitor/UI/Widgets/PumpControl.xaml.cs +++ b/Content.Client/Atmos/Monitor/UI/Widgets/PumpControl.xaml.cs @@ -1,12 +1,8 @@ -using System; -using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Monitor.Components; using Content.Shared.Atmos.Piping.Unary.Components; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.Localization; namespace Content.Client.Atmos.Monitor.UI.Widgets; @@ -25,7 +21,7 @@ public sealed partial class PumpControl : BoxContainer private OptionButton _pressureCheck => CPressureCheck; private FloatSpinBox _externalBound => CExternalBound; private FloatSpinBox _internalBound => CInternalBound; - private Button _copySettings => CCopySettings; + private Button _copySettings => CCopySettings; public PumpControl(GasVentPumpData data, string address) { @@ -86,7 +82,7 @@ public PumpControl(GasVentPumpData data, string address) _data.PressureChecks = (VentPressureBound) args.Id; PumpDataChanged?.Invoke(_address, _data); }; - + _copySettings.OnPressed += _ => { PumpDataCopied?.Invoke(_data); diff --git a/Content.Client/Atmos/Monitor/UI/Widgets/ScrubberControl.xaml.cs b/Content.Client/Atmos/Monitor/UI/Widgets/ScrubberControl.xaml.cs index f2241bcd8da..c16ff688c93 100644 --- a/Content.Client/Atmos/Monitor/UI/Widgets/ScrubberControl.xaml.cs +++ b/Content.Client/Atmos/Monitor/UI/Widgets/ScrubberControl.xaml.cs @@ -1,15 +1,9 @@ -using System; -using System.Collections.Generic; -using System.Linq; using Content.Shared.Atmos; -using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Monitor.Components; using Content.Shared.Atmos.Piping.Unary.Components; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.Localization; namespace Content.Client.Atmos.Monitor.UI.Widgets; @@ -27,7 +21,7 @@ public sealed partial class ScrubberControl : BoxContainer private OptionButton _pumpDirection => CPumpDirection; private FloatSpinBox _volumeRate => CVolumeRate; private CheckBox _wideNet => CWideNet; - private Button _copySettings => CCopySettings; + private Button _copySettings => CCopySettings; private GridContainer _gases => CGasContainer; private Dictionary _gasControls = new(); @@ -77,7 +71,7 @@ public ScrubberControl(GasVentScrubberData data, string address) _data.PumpDirection = (ScrubberPumpDirection) args.Id; ScrubberDataChanged?.Invoke(_address, _data); }; - + _copySettings.OnPressed += _ => { ScrubberDataCopied?.Invoke(_data); diff --git a/Content.Client/Atmos/Monitor/UI/Widgets/SensorInfo.xaml.cs b/Content.Client/Atmos/Monitor/UI/Widgets/SensorInfo.xaml.cs index da602cd7479..9e60b6cea62 100644 --- a/Content.Client/Atmos/Monitor/UI/Widgets/SensorInfo.xaml.cs +++ b/Content.Client/Atmos/Monitor/UI/Widgets/SensorInfo.xaml.cs @@ -43,7 +43,8 @@ public SensorInfo(AtmosSensorData data, string address) var label = new RichTextLabel(); var fractionGas = amount / data.TotalMoles; - label.SetMarkup(Loc.GetString("air-alarm-ui-gases-indicator", ("gas", $"{gas}"), + label.SetMarkup(Loc.GetString("air-alarm-ui-gases-indicator", + ("gas", $"{gas}"), ("color", AirAlarmWindow.ColorForThreshold(fractionGas, data.GasThresholds[gas])), ("amount", $"{amount:0.####}"), ("percentage", $"{(100 * fractionGas):0.##}"))); @@ -53,9 +54,9 @@ public SensorInfo(AtmosSensorData data, string address) var threshold = data.GasThresholds[gas]; var gasThresholdControl = new ThresholdControl(Loc.GetString($"air-alarm-ui-thresholds-gas-title", ("gas", $"{gas}")), threshold, AtmosMonitorThresholdType.Gas, gas, 100); gasThresholdControl.Margin = new Thickness(20, 2, 2, 2); - gasThresholdControl.ThresholdDataChanged += (type, threshold, arg3) => + gasThresholdControl.ThresholdDataChanged += (type, alarmThreshold, arg3) => { - OnThresholdUpdate!(_address, type, threshold, arg3); + OnThresholdUpdate!(_address, type, alarmThreshold, arg3); }; _gasThresholds.Add(gas, gasThresholdControl); @@ -64,7 +65,8 @@ public SensorInfo(AtmosSensorData data, string address) _pressureThreshold = new ThresholdControl(Loc.GetString("air-alarm-ui-thresholds-pressure-title"), data.PressureThreshold, AtmosMonitorThresholdType.Pressure); PressureThresholdContainer.AddChild(_pressureThreshold); - _temperatureThreshold = new ThresholdControl(Loc.GetString("air-alarm-ui-thresholds-temperature-title"), data.TemperatureThreshold, + _temperatureThreshold = new ThresholdControl(Loc.GetString("air-alarm-ui-thresholds-temperature-title"), + data.TemperatureThreshold, AtmosMonitorThresholdType.Temperature); TemperatureThresholdContainer.AddChild(_temperatureThreshold); @@ -103,7 +105,8 @@ public void ChangeData(AtmosSensorData data) } var fractionGas = amount / data.TotalMoles; - label.SetMarkup(Loc.GetString("air-alarm-ui-gases-indicator", ("gas", $"{gas}"), + label.SetMarkup(Loc.GetString("air-alarm-ui-gases-indicator", + ("gas", $"{gas}"), ("color", AirAlarmWindow.ColorForThreshold(fractionGas, data.GasThresholds[gas])), ("amount", $"{amount:0.####}"), ("percentage", $"{(100 * fractionGas):0.##}"))); diff --git a/Content.Client/Atmos/Monitor/UI/Widgets/ThresholdBoundControl.xaml.cs b/Content.Client/Atmos/Monitor/UI/Widgets/ThresholdBoundControl.xaml.cs index 3612d84de4c..55f7c008987 100644 --- a/Content.Client/Atmos/Monitor/UI/Widgets/ThresholdBoundControl.xaml.cs +++ b/Content.Client/Atmos/Monitor/UI/Widgets/ThresholdBoundControl.xaml.cs @@ -1,7 +1,4 @@ -using Content.Client.Message; -using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; -using Content.Shared.Temperature; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; diff --git a/Content.Client/Atmos/Monitor/UI/Widgets/ThresholdControl.xaml.cs b/Content.Client/Atmos/Monitor/UI/Widgets/ThresholdControl.xaml.cs index 78c73fa573a..651620f3e25 100644 --- a/Content.Client/Atmos/Monitor/UI/Widgets/ThresholdControl.xaml.cs +++ b/Content.Client/Atmos/Monitor/UI/Widgets/ThresholdControl.xaml.cs @@ -1,12 +1,8 @@ -using System; using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; -using Content.Shared.Atmos.Monitor.Components; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.Localization; // holy FUCK // this technically works because some of this you can *not* do in XAML but holy FUCK @@ -115,29 +111,38 @@ public ThresholdControl(string name, AtmosAlarmThreshold threshold, AtmosMonitor _enabled.Pressed = !_threshold.Ignore; } - private String LabelForBound(string boundType) //, DebugMessage)> state) => { if (_system.TileData.TryGetValue(uid, out var data)) diff --git a/Content.Client/Electrocution/ElectrocutionHUDVisualizerSystem.cs b/Content.Client/Electrocution/ElectrocutionHUDVisualizerSystem.cs new file mode 100644 index 00000000000..b95c0d585d7 --- /dev/null +++ b/Content.Client/Electrocution/ElectrocutionHUDVisualizerSystem.cs @@ -0,0 +1,95 @@ +using Content.Shared.Electrocution; +using Robust.Client.GameObjects; +using Robust.Client.Player; +using Robust.Shared.Player; + +namespace Content.Client.Electrocution; + +/// +/// Shows the Electrocution HUD to entities with the ShowElectrocutionHUDComponent. +/// +public sealed class ElectrocutionHUDVisualizerSystem : VisualizerSystem +{ + [Dependency] private readonly IPlayerManager _playerMan = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); + } + + private void OnPlayerAttached(Entity ent, ref LocalPlayerAttachedEvent args) + { + ShowHUD(); + } + + private void OnPlayerDetached(Entity ent, ref LocalPlayerDetachedEvent args) + { + RemoveHUD(); + } + + private void OnInit(Entity ent, ref ComponentInit args) + { + if (_playerMan.LocalEntity == ent) + { + ShowHUD(); + } + } + + private void OnShutdown(Entity ent, ref ComponentShutdown args) + { + if (_playerMan.LocalEntity == ent) + { + RemoveHUD(); + } + } + + // Show the HUD to the client. + // We have to look for all current entities that can be electrified and toggle the HUD layer on if they are. + private void ShowHUD() + { + var electrifiedQuery = AllEntityQuery(); + while (electrifiedQuery.MoveNext(out var uid, out var _, out var appearanceComp, out var spriteComp)) + { + if (!AppearanceSystem.TryGetData(uid, ElectrifiedVisuals.IsElectrified, out var electrified, appearanceComp)) + continue; + + if (electrified) + spriteComp.LayerSetVisible(ElectrifiedLayers.HUD, true); + else + spriteComp.LayerSetVisible(ElectrifiedLayers.HUD, false); + } + } + + // Remove the HUD from the client. + // Find all current entities that can be electrified and hide the HUD layer. + private void RemoveHUD() + { + var electrifiedQuery = AllEntityQuery(); + while (electrifiedQuery.MoveNext(out var uid, out var _, out var appearanceComp, out var spriteComp)) + { + + spriteComp.LayerSetVisible(ElectrifiedLayers.HUD, false); + } + } + + // Toggle the HUD layer if an entity becomes (de-)electrified + protected override void OnAppearanceChange(EntityUid uid, ElectrocutionHUDVisualsComponent comp, ref AppearanceChangeEvent args) + { + if (args.Sprite == null) + return; + + if (!AppearanceSystem.TryGetData(uid, ElectrifiedVisuals.IsElectrified, out var electrified, args.Component)) + return; + + var player = _playerMan.LocalEntity; + if (electrified && HasComp(player)) + args.Sprite.LayerSetVisible(ElectrifiedLayers.HUD, true); + else + args.Sprite.LayerSetVisible(ElectrifiedLayers.HUD, false); + } +} diff --git a/Content.Client/Eui/BaseEui.cs b/Content.Client/Eui/BaseEui.cs index 7f86ded7e48..c11ba5a9b69 100644 --- a/Content.Client/Eui/BaseEui.cs +++ b/Content.Client/Eui/BaseEui.cs @@ -55,7 +55,7 @@ public virtual void HandleMessage(EuiMessageBase msg) /// protected void SendMessage(EuiMessageBase msg) { - var netMsg = _netManager.CreateNetMessage(); + var netMsg = new MsgEuiMessage(); netMsg.Id = Id; netMsg.Message = msg; diff --git a/Content.Client/Light/HandheldLightSystem.cs b/Content.Client/Light/HandheldLightSystem.cs index ddd99c7c483..d25b28756f8 100644 --- a/Content.Client/Light/HandheldLightSystem.cs +++ b/Content.Client/Light/HandheldLightSystem.cs @@ -21,6 +21,22 @@ public override void Initialize() SubscribeLocalEvent(OnAppearanceChange); } + /// + /// TODO: Not properly predicted yet. Don't call this function if you want a the actual return value! + /// + public override bool TurnOff(Entity ent, bool makeNoise = true) + { + return true; + } + + /// + /// TODO: Not properly predicted yet. Don't call this function if you want a the actual return value! + /// + public override bool TurnOn(EntityUid user, Entity uid) + { + return true; + } + private void OnAppearanceChange(EntityUid uid, HandheldLightComponent? component, ref AppearanceChangeEvent args) { if (!Resolve(uid, ref component)) diff --git a/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs b/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs index b50d8fa6b21..a5411005391 100644 --- a/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs +++ b/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs @@ -116,7 +116,7 @@ protected void DrawCircles(DrawingHandleScreen handle) } } - protected void DrawGrid(DrawingHandleScreen handle, Matrix3x2 matrix, Entity grid, Color color, float alpha = 0.01f) + protected void DrawGrid(DrawingHandleScreen handle, Matrix3x2 gridToView, Entity grid, Color color, float alpha = 0.01f) { var rator = Maps.GetAllTilesEnumerator(grid.Owner, grid.Comp); var minimapScale = MinimapScale; @@ -264,7 +264,7 @@ protected void DrawGrid(DrawingHandleScreen handle, Matrix3x2 matrix, Entity 16; + public int BatchSize => 64; public float MinimapScale; public Vector2 MidPoint; @@ -297,12 +297,7 @@ private record struct GridDrawJob : IParallelRobustJob public void Execute(int index) { - var vert = Vertices[index]; - var adjustedVert = Vector2.Transform(vert, Matrix); - adjustedVert = adjustedVert with { Y = -adjustedVert.Y }; - - var scaledVert = ScalePosition(adjustedVert, MinimapScale, MidPoint); - ScaledVertices[index] = scaledVert; + ScaledVertices[index] = Vector2.Transform(Vertices[index], Matrix); } } } diff --git a/Content.Client/Shuttles/UI/NavScreen.xaml.cs b/Content.Client/Shuttles/UI/NavScreen.xaml.cs index 91d95aaa042..7236714ef29 100644 --- a/Content.Client/Shuttles/UI/NavScreen.xaml.cs +++ b/Content.Client/Shuttles/UI/NavScreen.xaml.cs @@ -15,6 +15,7 @@ public sealed partial class NavScreen : BoxContainer [Dependency] private readonly IEntityManager _entManager = default!; private SharedTransformSystem _xformSystem; + private EntityUid? _consoleEntity; // Entity of controlling console private EntityUid? _shuttleEntity; public NavScreen() @@ -35,6 +36,12 @@ public void SetShuttle(EntityUid? shuttle) _shuttleEntity = shuttle; } + public void SetConsole(EntityUid? console) + { + _consoleEntity = console; + NavRadar.SetConsole(console); + } + private void OnIFFTogglePressed(BaseButton.ButtonEventArgs args) { NavRadar.ShowIFF ^= true; diff --git a/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs b/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs index a4b42fb672c..d0e6f9ebf7b 100644 --- a/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml.cs @@ -138,6 +138,7 @@ public void UpdateState(EntityUid owner, ShuttleBoundUserInterfaceState cState) { var coordinates = _entManager.GetCoordinates(cState.NavState.Coordinates); NavContainer.SetShuttle(coordinates?.EntityId); + NavContainer.SetConsole(owner); MapContainer.SetShuttle(coordinates?.EntityId); MapContainer.SetConsole(owner); diff --git a/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs b/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs index 61ae0699266..2b575b48059 100644 --- a/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs @@ -107,16 +107,19 @@ protected override void Draw(DrawingHandleScreen handle) DrawCircles(handle); var gridNent = EntManager.GetNetEntity(GridEntity); var mapPos = _xformSystem.ToMapCoordinates(_coordinates.Value); - var ourGridMatrix = _xformSystem.GetWorldMatrix(GridEntity.Value); - var dockMatrix = Matrix3Helpers.CreateTransform(_coordinates.Value.Position, Angle.Zero); - var worldFromDock = Matrix3x2.Multiply(dockMatrix, ourGridMatrix); + var ourGridToWorld = _xformSystem.GetWorldMatrix(GridEntity.Value); + var selectedDockToOurGrid = Matrix3Helpers.CreateTransform(_coordinates.Value.Position, Angle.Zero); + var selectedDockToWorld = Matrix3x2.Multiply(selectedDockToOurGrid, ourGridToWorld); - Matrix3x2.Invert(worldFromDock, out var offsetMatrix); + Box2 viewBoundsWorld = Matrix3Helpers.TransformBox(selectedDockToWorld, new Box2(-WorldRangeVector, WorldRangeVector)); + + Matrix3x2.Invert(selectedDockToWorld, out var worldToSelectedDock); + var selectedDockToView = Matrix3x2.CreateScale(new Vector2(MinimapScale, -MinimapScale)) * Matrix3x2.CreateTranslation(MidPointVector); // Draw nearby grids var controlBounds = PixelSizeBox; _grids.Clear(); - _mapManager.FindGridsIntersecting(gridXform.MapID, new Box2(mapPos.Position - WorldRangeVector, mapPos.Position + WorldRangeVector), ref _grids); + _mapManager.FindGridsIntersecting(gridXform.MapID, viewBoundsWorld, ref _grids); // offset the dotted-line position to the bounds. Vector2? viewedDockPos = _viewedState != null ? MidPointVector : null; @@ -136,11 +139,11 @@ protected override void Draw(DrawingHandleScreen handle) if (grid.Owner != GridEntity && !_shuttles.CanDraw(grid.Owner, iffComp: iffComp)) continue; - var gridMatrix = _xformSystem.GetWorldMatrix(grid.Owner); - var matty = Matrix3x2.Multiply(gridMatrix, offsetMatrix); + var curGridToWorld = _xformSystem.GetWorldMatrix(grid.Owner); + var curGridToView = curGridToWorld * worldToSelectedDock * selectedDockToView; var color = _shuttles.GetIFFColor(grid.Owner, grid.Owner == GridEntity, component: iffComp); - DrawGrid(handle, matty, grid, color); + DrawGrid(handle, curGridToView, grid, color); // Draw any docks on that grid if (!DockState.Docks.TryGetValue(EntManager.GetNetEntity(grid), out var gridDocks)) @@ -151,23 +154,24 @@ protected override void Draw(DrawingHandleScreen handle) if (ViewedDock == dock.Entity) continue; - var position = Vector2.Transform(dock.Coordinates.Position, matty); - var otherDockRotation = Matrix3Helpers.CreateRotation(dock.Angle); - var scaledPos = ScalePosition(position with {Y = -position.Y}); - if (!controlBounds.Contains(scaledPos.Floored())) + // This box is the AABB of all the vertices we draw below. + var dockRenderBoundsLocal = new Box2(-0.5f, -0.7f, 0.5f, 0.5f); + var currentDockToCurGrid = Matrix3Helpers.CreateTransform(dock.Coordinates.Position, dock.Angle); + var currentDockToWorld = Matrix3x2.Multiply(currentDockToCurGrid, curGridToWorld); + var dockRenderBoundsWorld = Matrix3Helpers.TransformBox(currentDockToWorld, dockRenderBoundsLocal); + if (!viewBoundsWorld.Intersects(dockRenderBoundsWorld)) continue; - // Draw the dock's collision var collisionBL = Vector2.Transform(dock.Coordinates.Position + - Vector2.Transform(new Vector2(-0.2f, -0.7f), otherDockRotation), matty); + Vector2.Transform(new Vector2(-0.2f, -0.7f), otherDockRotation), curGridToView); var collisionBR = Vector2.Transform(dock.Coordinates.Position + - Vector2.Transform(new Vector2(0.2f, -0.7f), otherDockRotation), matty); + Vector2.Transform(new Vector2(0.2f, -0.7f), otherDockRotation), curGridToView); var collisionTR = Vector2.Transform(dock.Coordinates.Position + - Vector2.Transform(new Vector2(0.2f, -0.5f), otherDockRotation), matty); + Vector2.Transform(new Vector2(0.2f, -0.5f), otherDockRotation), curGridToView); var collisionTL = Vector2.Transform(dock.Coordinates.Position + - Vector2.Transform(new Vector2(-0.2f, -0.5f), otherDockRotation), matty); + Vector2.Transform(new Vector2(-0.2f, -0.5f), otherDockRotation), curGridToView); var verts = new[] { @@ -181,13 +185,6 @@ protected override void Draw(DrawingHandleScreen handle) collisionBL, }; - for (var i = 0; i < verts.Length; i++) - { - var vert = verts[i]; - vert.Y = -vert.Y; - verts[i] = ScalePosition(vert); - } - var collisionCenter = verts[0] + verts[1] + verts[3] + verts[5]; var otherDockConnection = Color.ToSrgb(Color.Pink); @@ -195,10 +192,10 @@ protected override void Draw(DrawingHandleScreen handle) handle.DrawPrimitives(DrawPrimitiveTopology.LineList, verts, otherDockConnection); // Draw the dock itself - var dockBL = Vector2.Transform(dock.Coordinates.Position + new Vector2(-0.5f, -0.5f), matty); - var dockBR = Vector2.Transform(dock.Coordinates.Position + new Vector2(0.5f, -0.5f), matty); - var dockTR = Vector2.Transform(dock.Coordinates.Position + new Vector2(0.5f, 0.5f), matty); - var dockTL = Vector2.Transform(dock.Coordinates.Position + new Vector2(-0.5f, 0.5f), matty); + var dockBL = Vector2.Transform(dock.Coordinates.Position + new Vector2(-0.5f, -0.5f), curGridToView); + var dockBR = Vector2.Transform(dock.Coordinates.Position + new Vector2(0.5f, -0.5f), curGridToView); + var dockTR = Vector2.Transform(dock.Coordinates.Position + new Vector2(0.5f, 0.5f), curGridToView); + var dockTL = Vector2.Transform(dock.Coordinates.Position + new Vector2(-0.5f, 0.5f), curGridToView); verts = new[] { @@ -212,13 +209,6 @@ protected override void Draw(DrawingHandleScreen handle) dockBL }; - for (var i = 0; i < verts.Length; i++) - { - var vert = verts[i]; - vert.Y = -vert.Y; - verts[i] = ScalePosition(vert); - } - Color otherDockColor; if (HighlightedDock == dock.Entity) @@ -253,9 +243,11 @@ protected override void Draw(DrawingHandleScreen handle) collisionCenter /= 4; var range = viewedDockPos.Value - collisionCenter; - if (range.Length() < SharedDockingSystem.DockingHiglightRange * MinimapScale) + var maxRange = SharedDockingSystem.DockingHiglightRange * MinimapScale; + var maxRangeSq = maxRange * maxRange; + if (range.LengthSquared() < maxRangeSq) { - if (_viewedState?.GridDockedWith == null) + if (dock.GridDockedWith == null) { var coordsOne = EntManager.GetCoordinates(_viewedState!.Coordinates); var coordsTwo = EntManager.GetCoordinates(dock.Coordinates); @@ -265,10 +257,11 @@ protected override void Draw(DrawingHandleScreen handle) var rotA = _xformSystem.GetWorldRotation(coordsOne.EntityId) + _viewedState!.Angle; var rotB = _xformSystem.GetWorldRotation(coordsTwo.EntityId) + dock.Angle; - var distance = (mapOne.Position - mapTwo.Position).Length(); + var distanceSq = (mapOne.Position - mapTwo.Position).LengthSquared(); var inAlignment = _dockSystem.InAlignment(mapOne, rotA, mapTwo, rotB); - var canDock = distance < SharedDockingSystem.DockRange && inAlignment; + var maxDockDistSq = SharedDockingSystem.DockRange * SharedDockingSystem.DockRange; + var canDock = distanceSq < maxDockDistSq && inAlignment; if (dockButton != null) dockButton.Disabled = !canDock || !canDockChange; @@ -297,7 +290,8 @@ protected override void Draw(DrawingHandleScreen handle) { // Because it's being layed out top-down we have to arrange for first frame. container.Arrange(PixelRect); - var containerPos = scaledPos / UIScale - container.DesiredSize / 2 - new Vector2(0f, 0.75f) * MinimapScale; + var dockPositionInView = Vector2.Transform(dock.Coordinates.Position, curGridToView); + var containerPos = dockPositionInView / UIScale - container.DesiredSize / 2 - new Vector2(0f, 0.75f) * MinimapScale; SetPosition(container, containerPos); } diff --git a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs index 2674343e059..805608c9a53 100644 --- a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs @@ -29,6 +29,11 @@ public sealed partial class ShuttleNavControl : BaseShuttleControl /// private EntityCoordinates? _coordinates; + /// + /// Entity of controlling console + /// + private EntityUid? _consoleEntity; + private Angle? _rotation; private Dictionary> _docks = new(); @@ -57,6 +62,11 @@ public void SetMatrix(EntityCoordinates? coordinates, Angle? angle) _rotation = angle; } + public void SetConsole(EntityUid? consoleEntity) + { + _consoleEntity = consoleEntity; + } + protected override void KeyBindUp(GUIBoundKeyEventArgs args) { base.KeyBindUp(args); @@ -139,40 +149,35 @@ protected override void Draw(DrawingHandleScreen handle) } var mapPos = _transform.ToMapCoordinates(_coordinates.Value); - var offset = _coordinates.Value.Position; - var posMatrix = Matrix3Helpers.CreateTransform(offset, _rotation.Value); + var posMatrix = Matrix3Helpers.CreateTransform(_coordinates.Value.Position, _rotation.Value); var ourEntRot = RotateWithEntity ? _transform.GetWorldRotation(xform) : _rotation.Value; var ourEntMatrix = Matrix3Helpers.CreateTransform(_transform.GetWorldPosition(xform), ourEntRot); - var ourWorldMatrix = Matrix3x2.Multiply(posMatrix, ourEntMatrix); - Matrix3x2.Invert(ourWorldMatrix, out var ourWorldMatrixInvert); + var shuttleToWorld = Matrix3x2.Multiply(posMatrix, ourEntMatrix); + Matrix3x2.Invert(shuttleToWorld, out var worldToShuttle); + var shuttleToView = Matrix3x2.CreateScale(new Vector2(MinimapScale, -MinimapScale)) * Matrix3x2.CreateTranslation(MidPointVector); // Draw our grid in detail var ourGridId = xform.GridUid; if (EntManager.TryGetComponent(ourGridId, out var ourGrid) && fixturesQuery.HasComponent(ourGridId.Value)) { - var ourGridMatrix = _transform.GetWorldMatrix(ourGridId.Value); - var matrix = Matrix3x2.Multiply(ourGridMatrix, ourWorldMatrixInvert); + var ourGridToWorld = _transform.GetWorldMatrix(ourGridId.Value); + var ourGridToShuttle = Matrix3x2.Multiply(ourGridToWorld, worldToShuttle); + var ourGridToView = ourGridToShuttle * shuttleToView; var color = _shuttles.GetIFFColor(ourGridId.Value, self: true); - DrawGrid(handle, matrix, (ourGridId.Value, ourGrid), color); - DrawDocks(handle, ourGridId.Value, matrix); + DrawGrid(handle, ourGridToView, (ourGridId.Value, ourGrid), color); + DrawDocks(handle, ourGridId.Value, ourGridToView); } - var invertedPosition = _coordinates.Value.Position - offset; - invertedPosition.Y = -invertedPosition.Y; - // Don't need to transform the InvWorldMatrix again as it's already offset to its position. - // Draw radar position on the station - var radarPos = invertedPosition; const float radarVertRadius = 2f; - var radarPosVerts = new Vector2[] { - ScalePosition(radarPos + new Vector2(0f, -radarVertRadius)), - ScalePosition(radarPos + new Vector2(radarVertRadius / 2f, 0f)), - ScalePosition(radarPos + new Vector2(0f, radarVertRadius)), - ScalePosition(radarPos + new Vector2(radarVertRadius / -2f, 0f)), + ScalePosition(new Vector2(0f, -radarVertRadius)), + ScalePosition(new Vector2(radarVertRadius / 2f, 0f)), + ScalePosition(new Vector2(0f, radarVertRadius)), + ScalePosition(new Vector2(radarVertRadius / -2f, 0f)), }; handle.DrawPrimitives(DrawPrimitiveTopology.TriangleFan, radarPosVerts, Color.Lime); @@ -197,8 +202,8 @@ protected override void Draw(DrawingHandleScreen handle) if (!_shuttles.CanDraw(gUid, gridBody, iff)) continue; - var gridMatrix = _transform.GetWorldMatrix(gUid); - var matty = Matrix3x2.Multiply(gridMatrix, ourWorldMatrixInvert); + var curGridToWorld = _transform.GetWorldMatrix(gUid); + var curGridToView = curGridToWorld * worldToShuttle * shuttleToView; var labelColor = _shuttles.GetIFFColor(grid, self: false, iff); var coordColor = new Color(labelColor.R * 0.8f, labelColor.G * 0.8f, labelColor.B * 0.8f, 0.5f); @@ -213,8 +218,7 @@ protected override void Draw(DrawingHandleScreen handle) { var gridBounds = grid.Comp.LocalAABB; - var gridCentre = Vector2.Transform(gridBody.LocalCenter, matty); - gridCentre.Y = -gridCentre.Y; + var gridCentre = Vector2.Transform(gridBody.LocalCenter, curGridToView); var distance = gridCentre.Length(); var labelText = Loc.GetString("shuttle-console-iff-label", ("name", labelName), @@ -230,9 +234,8 @@ protected override void Draw(DrawingHandleScreen handle) // y-offset the control to always render below the grid (vertically) var yOffset = Math.Max(gridBounds.Height, gridBounds.Width) * MinimapScale / 1.8f; - // The actual position in the UI. We centre the label by offsetting the matrix position - // by half the label's width, plus the y-offset - var gridScaledPosition = ScalePosition(gridCentre) - new Vector2(0, -yOffset); + // The actual position in the UI. + var gridScaledPosition = gridCentre - new Vector2(0, -yOffset); // Normalize the grid position if it exceeds the viewport bounds // normalizing it instead of clamping it preserves the direction of the vector and prevents corner-hugging @@ -264,18 +267,32 @@ protected override void Draw(DrawingHandleScreen handle) } // Detailed view - var gridAABB = gridMatrix.TransformBox(grid.Comp.LocalAABB); + var gridAABB = curGridToWorld.TransformBox(grid.Comp.LocalAABB); // Skip drawing if it's out of range. if (!gridAABB.Intersects(viewAABB)) continue; - DrawGrid(handle, matty, grid, labelColor); - DrawDocks(handle, gUid, matty); + DrawGrid(handle, curGridToView, grid, labelColor); + DrawDocks(handle, gUid, curGridToView); } + + // If we've set the controlling console, and it's on a different grid + // to the shuttle itself, then draw an additional marker to help the + // player determine where they are relative to the shuttle. + if (_consoleEntity != null && xformQuery.TryGetComponent(_consoleEntity, out var consoleXform)) + { + if (consoleXform.ParentUid != _coordinates.Value.EntityId) + { + var consolePositionWorld = _transform.GetWorldPosition((EntityUid)_consoleEntity); + var p = Vector2.Transform(consolePositionWorld, worldToShuttle * shuttleToView); + handle.DrawCircle(p, 5, Color.ToSrgb(Color.Cyan), true); + } + } + } - private void DrawDocks(DrawingHandleScreen handle, EntityUid uid, Matrix3x2 matrix) + private void DrawDocks(DrawingHandleScreen handle, EntityUid uid, Matrix3x2 gridToView) { if (!ShowDocks) return; @@ -283,33 +300,32 @@ private void DrawDocks(DrawingHandleScreen handle, EntityUid uid, Matrix3x2 matr const float DockScale = 0.6f; var nent = EntManager.GetNetEntity(uid); + const float sqrt2 = 1.41421356f; + const float dockRadius = DockScale * sqrt2; + // Worst-case bounds used to cull a dock: + Box2 viewBounds = new Box2(-dockRadius, -dockRadius, Size.X + dockRadius, Size.Y + dockRadius); if (_docks.TryGetValue(nent, out var docks)) { foreach (var state in docks) { var position = state.Coordinates.Position; - var uiPosition = Vector2.Transform(position, matrix); - if (uiPosition.Length() > (WorldRange * 2f) - DockScale) + var positionInView = Vector2.Transform(position, gridToView); + if (!viewBounds.Contains(positionInView)) + { continue; + } var color = Color.ToSrgb(Color.Magenta); var verts = new[] { - Vector2.Transform(position + new Vector2(-DockScale, -DockScale), matrix), - Vector2.Transform(position + new Vector2(DockScale, -DockScale), matrix), - Vector2.Transform(position + new Vector2(DockScale, DockScale), matrix), - Vector2.Transform(position + new Vector2(-DockScale, DockScale), matrix), + Vector2.Transform(position + new Vector2(-DockScale, -DockScale), gridToView), + Vector2.Transform(position + new Vector2(DockScale, -DockScale), gridToView), + Vector2.Transform(position + new Vector2(DockScale, DockScale), gridToView), + Vector2.Transform(position + new Vector2(-DockScale, DockScale), gridToView), }; - for (var i = 0; i < verts.Length; i++) - { - var vert = verts[i]; - vert.Y = -vert.Y; - verts[i] = ScalePosition(vert); - } - handle.DrawPrimitives(DrawPrimitiveTopology.TriangleFan, verts, color.WithAlpha(0.8f)); handle.DrawPrimitives(DrawPrimitiveTopology.LineStrip, verts, color); } diff --git a/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs b/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs index d32922a00ac..877ab4efc46 100644 --- a/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs +++ b/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs @@ -16,9 +16,8 @@ namespace Content.Client.UserInterface.Systems.Chat.Widgets; [GenerateTypedNameReferences] -#pragma warning disable RA0003 +[Virtual] public partial class ChatBox : UIWidget -#pragma warning restore RA0003 { private readonly ChatUIController _controller; private readonly IEntityManager _entManager; diff --git a/Content.Client/UserInterface/Systems/Ghost/Controls/Roles/GhostRolesWindow.xaml.cs b/Content.Client/UserInterface/Systems/Ghost/Controls/Roles/GhostRolesWindow.xaml.cs index e0949228fcc..629b1f370a1 100644 --- a/Content.Client/UserInterface/Systems/Ghost/Controls/Roles/GhostRolesWindow.xaml.cs +++ b/Content.Client/UserInterface/Systems/Ghost/Controls/Roles/GhostRolesWindow.xaml.cs @@ -77,6 +77,7 @@ public void AddEntry(string name, string description, bool hasAccess, FormattedM buttonHeading.AddStyleClass(ContainerButton.StyleClassButton); buttonHeading.Label.HorizontalAlignment = HAlignment.Center; buttonHeading.Label.HorizontalExpand = true; + buttonHeading.Margin = new Thickness(8, 0, 8, 2); var body = new CollapsibleBody { diff --git a/Content.PatreonParser/Content.PatreonParser.csproj b/Content.PatreonParser/Content.PatreonParser.csproj index 3206ad42e9d..ec259e6f1dc 100644 --- a/Content.PatreonParser/Content.PatreonParser.csproj +++ b/Content.PatreonParser/Content.PatreonParser.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net8.0 enable enable true diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index 88404c4aa96..eb10f8d2809 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -121,7 +121,7 @@ private void UpdateState(float frameTime) activated.TimeLeft -= frameTime; if (activated.TimeLeft <= 0 || !IsPowered(uid, electrified, transform)) { - _appearance.SetData(uid, ElectrifiedVisuals.IsPowered, false); + _appearance.SetData(uid, ElectrifiedVisuals.ShowSparks, false); RemComp(uid); } } @@ -217,7 +217,7 @@ public bool TryDoElectrifiedAct(EntityUid uid, EntityUid targetUid, return false; EnsureComp(uid); - _appearance.SetData(uid, ElectrifiedVisuals.IsPowered, true); + _appearance.SetData(uid, ElectrifiedVisuals.ShowSparks, true); siemens *= electrified.SiemensCoefficient; if (!DoCommonElectrocutionAttempt(targetUid, uid, ref siemens) || siemens <= 0) @@ -488,15 +488,4 @@ private void PlayElectrocutionSound(EntityUid targetUid, EntityUid sourceUid, El } _audio.PlayPvs(electrified.ShockNoises, targetUid, AudioParams.Default.WithVolume(electrified.ShockVolume)); } - - public void SetElectrifiedWireCut(Entity ent, bool value) - { - if (ent.Comp.IsWireCut == value) - { - return; - } - - ent.Comp.IsWireCut = value; - Dirty(ent); - } } diff --git a/Content.Server/Ghost/GhostCommand.cs b/Content.Server/Ghost/GhostCommand.cs index fe49d1344b7..3601152236e 100644 --- a/Content.Server/Ghost/GhostCommand.cs +++ b/Content.Server/Ghost/GhostCommand.cs @@ -1,8 +1,10 @@ using Content.Server.GameTicking; using Content.Server.Popups; using Content.Shared.Administration; +using Content.Shared.GameTicking; using Content.Shared.Mind; using Robust.Shared.Console; +using Content.Server.GameTicking; namespace Content.Server.Ghost { @@ -24,6 +26,14 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } + var gameTicker = _entities.System(); + if (!gameTicker.PlayerGameStatuses.TryGetValue(player.UserId, out var playerStatus) || + playerStatus is not PlayerGameStatus.JoinedGame) + { + shell.WriteLine("ghost-command-error-lobby"); + return; + } + if (player.AttachedEntity is { Valid: true } frozen && _entities.HasComponent(frozen)) { diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index ffa01ecc82d..bec4a91df91 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -1,3 +1,5 @@ +using System.Linq; +using System.Numerics; using Content.Server.Administration.Logs; using Content.Server.Chat.Managers; using Content.Server.GameTicking; @@ -32,14 +34,13 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Timing; -using System.Linq; -using System.Numerics; namespace Content.Server.Ghost { public sealed class GhostSystem : SharedGhostSystem { [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly IAdminLogManager _adminLog = default!; [Dependency] private readonly SharedEyeSystem _eye = default!; [Dependency] private readonly FollowerSystem _followerSystem = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; @@ -324,6 +325,8 @@ private void OnGhostnadoRequest(GhostnadoRequestEvent msg, EntitySessionEventArg private void WarpTo(EntityUid uid, EntityUid target) { + _adminLog.Add(LogType.GhostWarp, $"{ToPrettyString(uid)} ghost warped to {ToPrettyString(target)}"); + if ((TryComp(target, out WarpPointComponent? warp) && warp.Follow) || HasComp(target)) { _followerSystem.StartFollowingEntity(uid, target); diff --git a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs index a5a41bcc105..a1977d5a463 100644 --- a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs +++ b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs @@ -9,7 +9,6 @@ using Content.Shared.Light.Components; using Content.Shared.Rounding; using Content.Shared.Toggleable; -using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Audio; @@ -46,7 +45,6 @@ public override void Initialize() SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnExamine); - SubscribeLocalEvent>(AddToggleLightVerb); SubscribeLocalEvent(OnActivate); @@ -179,25 +177,7 @@ public override void Update(float frameTime) } } - private void AddToggleLightVerb(Entity ent, ref GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract || !ent.Comp.ToggleOnInteract) - return; - - var @event = args; - ActivationVerb verb = new() - { - Text = Loc.GetString("verb-common-toggle-light"), - Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/light.svg.192dpi.png")), - Act = ent.Comp.Activated - ? () => TurnOff(ent) - : () => TurnOn(@event.User, ent) - }; - - args.Verbs.Add(verb); - } - - public bool TurnOff(Entity ent, bool makeNoise = true) + public override bool TurnOff(Entity ent, bool makeNoise = true) { if (!ent.Comp.Activated || !_lights.TryGetLight(ent, out var pointLightComponent)) { @@ -211,7 +191,7 @@ public bool TurnOff(Entity ent, bool makeNoise = true) return true; } - public bool TurnOn(EntityUid user, Entity uid) + public override bool TurnOn(EntityUid user, Entity uid) { var component = uid.Comp; if (component.Activated || !_lights.TryGetLight(uid, out var pointLightComponent)) diff --git a/Content.Server/Power/Components/CableComponent.cs b/Content.Server/Power/Components/CableComponent.cs index 7398bc0616e..63899735b58 100644 --- a/Content.Server/Power/Components/CableComponent.cs +++ b/Content.Server/Power/Components/CableComponent.cs @@ -18,8 +18,11 @@ public sealed partial class CableComponent : Component [DataField] public EntProtoId CableDroppedOnCutPrototype = "CableHVStack1"; + /// + /// The tool quality needed to cut the cable. Setting to null prevents cutting. + /// [DataField] - public ProtoId CuttingQuality = SharedToolSystem.CutQuality; + public ProtoId? CuttingQuality = SharedToolSystem.CutQuality; /// /// Checked by to determine if there is diff --git a/Content.Server/Power/EntitySystems/CableSystem.cs b/Content.Server/Power/EntitySystems/CableSystem.cs index d0f45b54fcf..db44323007a 100644 --- a/Content.Server/Power/EntitySystems/CableSystem.cs +++ b/Content.Server/Power/EntitySystems/CableSystem.cs @@ -35,7 +35,10 @@ private void OnInteractUsing(EntityUid uid, CableComponent cable, InteractUsingE if (args.Handled) return; - args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, cable.CuttingDelay, cable.CuttingQuality, new CableCuttingFinishedEvent()); + if (cable.CuttingQuality != null) + { + args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, cable.CuttingDelay, cable.CuttingQuality, new CableCuttingFinishedEvent()); + } } private void OnCableCut(EntityUid uid, CableComponent cable, DoAfterEvent args) diff --git a/Content.Server/Power/PowerWireAction.cs b/Content.Server/Power/PowerWireAction.cs index cebb7de8ec8..9e4e6a6086d 100644 --- a/Content.Server/Power/PowerWireAction.cs +++ b/Content.Server/Power/PowerWireAction.cs @@ -17,7 +17,7 @@ public sealed partial class PowerWireAction : BaseWireAction [DataField("pulseTimeout")] private int _pulseTimeout = 30; - private ElectrocutionSystem _electrocutionSystem = default!; + private ElectrocutionSystem _electrocution = default!; public override object StatusKey { get; } = PowerWireActionKey.Status; @@ -105,8 +105,8 @@ private void SetElectrified(EntityUid used, bool setting, ElectrifiedComponent? && !EntityManager.TryGetComponent(used, out electrified)) return; - _electrocutionSystem.SetElectrifiedWireCut((used, electrified), setting); - electrified.Enabled = setting; + _electrocution.SetElectrifiedWireCut((used, electrified), setting); + _electrocution.SetElectrified((used, electrified), setting); } /// false if failed, true otherwise, or if the entity cannot be electrified @@ -120,7 +120,7 @@ private bool TrySetElectrocution(EntityUid user, Wire wire, bool timed = false) // always set this to true SetElectrified(wire.Owner, true, electrified); - var electrifiedAttempt = _electrocutionSystem.TryDoElectrifiedAct(wire.Owner, user); + var electrifiedAttempt = _electrocution.TryDoElectrifiedAct(wire.Owner, user); // if we were electrified, then return false return !electrifiedAttempt; @@ -161,7 +161,7 @@ public override void Initialize() { base.Initialize(); - _electrocutionSystem = EntityManager.System(); + _electrocution = EntityManager.System(); } // This should add a wire into the entity's state, whether it be diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWallMount.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWallMount.cs index afc7608d64a..d5c8587ea95 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWallMount.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWallMount.cs @@ -20,7 +20,11 @@ private async Task PostGen(WallMountDunGen gen, DungeonData data, Dungeon dungeo } var tileDef = _prototype.Index(tileProto); - data.SpawnGroups.TryGetValue(DungeonDataKey.WallMounts, out var spawnProto); + if (!data.SpawnGroups.TryGetValue(DungeonDataKey.WallMounts, out var spawnProto)) + { + // caves can have no walls + return; + } var checkedTiles = new HashSet(); var allExterior = new HashSet(dungeon.CorridorExteriorTiles); diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index d0aab9aad55..b550db93ed6 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -234,12 +234,6 @@ public bool CanFTL(EntityUid shuttleUid, [NotNullWhen(false)] out string? reason if (TryComp(shuttleUid, out var shuttlePhysics)) { - // Static physics type is set when station anchor is enabled - if (shuttlePhysics.BodyType == BodyType.Static) - { - reason = Loc.GetString("shuttle-console-static"); - return false; - } // Too large to FTL if (FTLMassLimit > 0 && shuttlePhysics.Mass > FTLMassLimit) @@ -1008,6 +1002,7 @@ private void Smimsh(EntityUid uid, FixturesComponent? manager = null, MapGridCom continue; } + // If it has the FTLSmashImmuneComponent ignore it. if (_immuneQuery.HasComponent(ent)) { continue; diff --git a/Content.Server/StationEvents/Components/GreytideVirusComponent.cs b/Content.Server/StationEvents/Components/GreytideVirusComponent.cs new file mode 100644 index 00000000000..307f131db11 --- /dev/null +++ b/Content.Server/StationEvents/Components/GreytideVirusComponent.cs @@ -0,0 +1,38 @@ +using Content.Server.StationEvents.Events; +using Content.Shared.Access; +using Content.Shared.Destructible.Thresholds; +using Robust.Shared.Prototypes; + +namespace Content.Server.StationEvents.Components; + +/// +/// Greytide Virus event specific configuration +/// +[RegisterComponent, Access(typeof(GreytideVirusRule))] +public sealed partial class GreytideVirusRuleComponent : Component +{ + /// + /// Range from which the severity is randomly picked from. + /// + [DataField] + public MinMax SeverityRange = new(1, 3); + + /// + /// Severity corresponding to the number of access groups affected. + /// Will pick randomly from the SeverityRange if not specified. + /// + [DataField] + public int? Severity; + + /// + /// Access groups to pick from. + /// + [DataField] + public List> AccessGroups = new(); + + /// + /// Entities with this access level will be ignored. + /// + [DataField] + public List> Blacklist = new(); +} diff --git a/Content.Server/StationEvents/Events/GreytideVirusRule.cs b/Content.Server/StationEvents/Events/GreytideVirusRule.cs new file mode 100644 index 00000000000..f60d80ba9c5 --- /dev/null +++ b/Content.Server/StationEvents/Events/GreytideVirusRule.cs @@ -0,0 +1,96 @@ +using Content.Server.StationEvents.Components; +using Content.Shared.Access; +using Content.Shared.Access.Systems; +using Content.Shared.Access.Components; +using Content.Shared.Doors.Components; +using Content.Shared.Doors.Systems; +using Content.Shared.Lock; +using Content.Shared.GameTicking.Components; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server.StationEvents.Events; + + +/// +/// Greytide Virus event +/// This will open and bolt airlocks and unlock lockers from randomly selected access groups. +/// +public sealed class GreytideVirusRule : StationEventSystem +{ + [Dependency] private readonly AccessReaderSystem _access = default!; + [Dependency] private readonly SharedDoorSystem _door = default!; + [Dependency] private readonly LockSystem _lock = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IRobustRandom _random = default!; + + protected override void Added(EntityUid uid, GreytideVirusRuleComponent virusComp, GameRuleComponent gameRule, GameRuleAddedEvent args) + { + if (!TryComp(uid, out var stationEvent)) + return; + + // pick severity randomly from range if not specified otherwise + virusComp.Severity ??= virusComp.SeverityRange.Next(_random); + virusComp.Severity = Math.Min(virusComp.Severity.Value, virusComp.AccessGroups.Count); + + stationEvent.StartAnnouncement = Loc.GetString("station-event-greytide-virus-start-announcement", ("severity", virusComp.Severity.Value)); + base.Added(uid, virusComp, gameRule, args); + } + protected override void Started(EntityUid uid, GreytideVirusRuleComponent virusComp, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, virusComp, gameRule, args); + + if (virusComp.Severity == null) + return; + + // pick random access groups + var chosen = _random.GetItems(virusComp.AccessGroups, virusComp.Severity.Value, allowDuplicates: false); + + // combine all the selected access groups + var accessIds = new HashSet>(); + foreach (var group in chosen) + { + if (_prototype.TryIndex(group, out var proto)) + accessIds.UnionWith(proto.Tags); + } + + var firelockQuery = GetEntityQuery(); + var accessQuery = GetEntityQuery(); + + var lockQuery = AllEntityQuery(); + while (lockQuery.MoveNext(out var lockUid, out var lockComp)) + { + if (!accessQuery.TryComp(lockUid, out var accessComp)) + continue; + + // check access + // the AreAccessTagsAllowed function is a little weird because it technically has support for certain tags to be locked out of opening something + // which might have unintened side effects (see the comments in the function itself) + // but no one uses that yet, so it is fine for now + if (!_access.AreAccessTagsAllowed(accessIds, accessComp) || _access.AreAccessTagsAllowed(virusComp.Blacklist, accessComp)) + continue; + + // open lockers + _lock.Unlock(lockUid, null, lockComp); + } + + var airlockQuery = AllEntityQuery(); + while (airlockQuery.MoveNext(out var airlockUid, out var airlockComp, out var doorComp)) + { + // don't space everything + if (firelockQuery.HasComp(airlockUid)) + continue; + + // use the access reader from the door electronics if they exist + if (!_access.GetMainAccessReader(airlockUid, out var accessComp)) + continue; + + // check access + if (!_access.AreAccessTagsAllowed(accessIds, accessComp) || _access.AreAccessTagsAllowed(virusComp.Blacklist, accessComp)) + continue; + + // open and bolt airlocks + _door.TryOpenAndBolt(airlockUid, doorComp, airlockComp); + } + } +} diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index 90fe4cb7d8a..c20a6a46446 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -38,6 +38,7 @@ public sealed class VendingMachineSystem : SharedVendingMachineSystem [Dependency] private readonly ThrowingSystem _throwingSystem = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly SpeakOnUIClosedSystem _speakOnUIClosed = default!; + [Dependency] private readonly SharedPointLightSystem _light = default!; private const float WallVendEjectDistanceFromWall = 1f; @@ -334,6 +335,12 @@ public void TryUpdateVisualState(EntityUid uid, VendingMachineComponent? vendCom finalState = VendingMachineVisualState.Off; } + if (_light.TryGetLight(uid, out var pointlight)) + { + var lightState = finalState != VendingMachineVisualState.Broken && finalState != VendingMachineVisualState.Off; + _light.SetEnabled(uid, lightState, pointlight); + } + _appearanceSystem.SetData(uid, VendingMachineVisuals.VisualState, finalState); } diff --git a/Content.Server/Wires/ComponentWireAction.cs b/Content.Server/Wires/ComponentWireAction.cs index 24070680563..90c8a7594d4 100644 --- a/Content.Server/Wires/ComponentWireAction.cs +++ b/Content.Server/Wires/ComponentWireAction.cs @@ -22,13 +22,14 @@ public abstract partial class ComponentWireAction : BaseWireAction w public override bool Cut(EntityUid user, Wire wire) { base.Cut(user, wire); - return EntityManager.TryGetComponent(wire.Owner, out TComponent? component) && Cut(user, wire, component); + // if the entity doesn't exist, we need to return true otherwise the wire sprite is never updated + return EntityManager.TryGetComponent(wire.Owner, out TComponent? component) ? Cut(user, wire, component) : true; } public override bool Mend(EntityUid user, Wire wire) { base.Mend(user, wire); - return EntityManager.TryGetComponent(wire.Owner, out TComponent? component) && Mend(user, wire, component); + return EntityManager.TryGetComponent(wire.Owner, out TComponent? component) ? Mend(user, wire, component) : true; } public override void Pulse(EntityUid user, Wire wire) diff --git a/Content.Shared.Database/LogType.cs b/Content.Shared.Database/LogType.cs index e4088b8e484..4b763a5e6ed 100644 --- a/Content.Shared.Database/LogType.cs +++ b/Content.Shared.Database/LogType.cs @@ -122,4 +122,8 @@ public enum LogType Psionics = 121, + /// + /// A ghost warped to an entity through the ghost warp menu. + /// + GhostWarp = 95, } diff --git a/Content.Shared/CCVar/CCVars.Shuttle.cs b/Content.Shared/CCVar/CCVars.Shuttle.cs index f66fe9ca598..caf7f81b0e1 100644 --- a/Content.Shared/CCVar/CCVars.Shuttle.cs +++ b/Content.Shared/CCVar/CCVars.Shuttle.cs @@ -4,6 +4,12 @@ namespace Content.Shared.CCVar; public sealed partial class CCVars { + /// + /// Delay for auto-orientation. Used for people arriving via arrivals. + /// + public static readonly CVarDef AutoOrientDelay = + CVarDef.Create("shuttle.auto_orient_delay", 2.0, CVar.SERVER | CVar.REPLICATED); + /// /// If true then the camera will match the grid / map and is unchangeable. /// - When traversing grids it will snap to 0 degrees rotation. diff --git a/Content.Shared/Climbing/Systems/ClimbSystem.cs b/Content.Shared/Climbing/Systems/ClimbSystem.cs index 9bf481002a9..467d96187e5 100644 --- a/Content.Shared/Climbing/Systems/ClimbSystem.cs +++ b/Content.Shared/Climbing/Systems/ClimbSystem.cs @@ -151,6 +151,10 @@ private void OnCanDragDropOn(EntityUid uid, ClimbableComponent component, ref Ca if (args.Handled) return; + // If already climbing then don't show outlines. + if (TryComp(args.Dragged, out ClimbingComponent? climbing) && climbing.IsClimbing) + return; + var canVault = args.User == args.Dragged ? CanVault(component, args.User, uid, out _) : CanVault(component, args.User, args.Dragged, uid, out _); diff --git a/Content.Shared/Doors/Components/DoorComponent.cs b/Content.Shared/Doors/Components/DoorComponent.cs index 21fad142b3a..5e35045b109 100644 --- a/Content.Shared/Doors/Components/DoorComponent.cs +++ b/Content.Shared/Doors/Components/DoorComponent.cs @@ -66,7 +66,7 @@ public sealed partial class DoorComponent : Component /// /// When the door is active, this is the time when the state will next update. /// - [AutoNetworkedField] + [AutoNetworkedField, ViewVariables] public TimeSpan? NextStateChange; /// diff --git a/Content.Shared/Doors/DoorEvents.cs b/Content.Shared/Doors/DoorEvents.cs index 08a2c8b18b1..849ea837303 100644 --- a/Content.Shared/Doors/DoorEvents.cs +++ b/Content.Shared/Doors/DoorEvents.cs @@ -15,6 +15,19 @@ public DoorStateChangedEvent(DoorState state) } } + /// + /// Raised when the door's bolt status was changed. + /// + public sealed class DoorBoltsChangedEvent : EntityEventArgs + { + public readonly bool BoltsDown; + + public DoorBoltsChangedEvent(bool boltsDown) + { + BoltsDown = boltsDown; + } + } + /// /// Raised when the door is determining whether it is able to open. /// Cancel to stop the door from being opened. diff --git a/Content.Shared/Doors/Systems/SharedAirlockSystem.cs b/Content.Shared/Doors/Systems/SharedAirlockSystem.cs index e404a91bdd7..bdd119004e8 100644 --- a/Content.Shared/Doors/Systems/SharedAirlockSystem.cs +++ b/Content.Shared/Doors/Systems/SharedAirlockSystem.cs @@ -22,6 +22,7 @@ public override void Initialize() SubscribeLocalEvent(OnBeforeDoorClosed); SubscribeLocalEvent(OnStateChanged); + SubscribeLocalEvent(OnBoltsChanged); SubscribeLocalEvent(OnBeforeDoorOpened); SubscribeLocalEvent(OnBeforeDoorDenied); SubscribeLocalEvent(OnGetPryMod); @@ -70,6 +71,13 @@ private void OnStateChanged(EntityUid uid, AirlockComponent component, DoorState } } + private void OnBoltsChanged(EntityUid uid, AirlockComponent component, DoorBoltsChangedEvent args) + { + // If unbolted, reset the auto close timer + if (!args.BoltsDown) + UpdateAutoClose(uid, component); + } + private void OnBeforeDoorOpened(EntityUid uid, AirlockComponent component, BeforeDoorOpenedEvent args) { if (!CanChangeState(uid, component)) @@ -145,7 +153,7 @@ public void SetEmergencyAccess(Entity ent, bool value, EntityU ent.Comp.EmergencyAccess = value; Dirty(ent, ent.Comp); // This only runs on the server apparently so we need this. UpdateEmergencyLightStatus(ent, ent.Comp); - + var sound = ent.Comp.EmergencyAccess ? ent.Comp.EmergencyOnSound : ent.Comp.EmergencyOffSound; if (predicted) Audio.PlayPredicted(sound, ent, user: user); diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.Bolts.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.Bolts.cs index 13050616e1b..d14b6c71906 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.Bolts.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.Bolts.cs @@ -96,6 +96,10 @@ public bool TrySetBoltDown( Dirty(ent, ent.Comp); UpdateBoltLightStatus(ent); + // used to reset the auto-close timer after unbolting + var ev = new DoorBoltsChangedEvent(value); + RaiseLocalEvent(ent.Owner, ev); + var sound = value ? ent.Comp.BoltDownSound : ent.Comp.BoltUpSound; if (predicted) Audio.PlayPredicted(sound, ent, user: user); diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index 80e7ff96698..69905d1bd6b 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -396,6 +396,25 @@ public void OnPartialOpen(EntityUid uid, DoorComponent? door = null) Dirty(uid, door); } + + /// + /// Opens and then bolts a door. + /// Different from emagging this does not remove the access reader, so it can be repaired by simply unbolting the door. + /// + public bool TryOpenAndBolt(EntityUid uid, DoorComponent? door = null, AirlockComponent? airlock = null) + { + if (!Resolve(uid, ref door, ref airlock)) + return false; + + if (IsBolted(uid) || !airlock.Powered || door.State != DoorState.Closed) + { + return false; + } + + SetState(uid, DoorState.Emagging, door); + + return true; + } #endregion #region Closing @@ -461,17 +480,17 @@ public bool OnPartialClose(EntityUid uid, DoorComponent? door = null, PhysicsCom if (!Resolve(uid, ref door, ref physics)) return false; - door.Partial = true; - // Make sure no entity walked into the airlock when it started closing. if (!CanClose(uid, door)) { door.NextStateChange = GameTiming.CurTime + door.OpenTimeTwo; - door.State = DoorState.Opening; - AppearanceSystem.SetData(uid, DoorVisuals.State, DoorState.Opening); + door.State = DoorState.Open; + AppearanceSystem.SetData(uid, DoorVisuals.State, DoorState.Open); + Dirty(uid, door); return false; } + door.Partial = true; SetCollidable(uid, true, door, physics); door.NextStateChange = GameTiming.CurTime + door.CloseTimeTwo; Dirty(uid, door); @@ -700,6 +719,8 @@ public void SetNextStateChange(EntityUid uid, TimeSpan? delay, DoorComponent? do } door.NextStateChange = GameTiming.CurTime + delay.Value; + Dirty(uid, door); + _activeDoors.Add((uid, door)); } diff --git a/Content.Shared/DrawDepth/DrawDepth.cs b/Content.Shared/DrawDepth/DrawDepth.cs index 0f72a24a4e3..056bd15c286 100644 --- a/Content.Shared/DrawDepth/DrawDepth.cs +++ b/Content.Shared/DrawDepth/DrawDepth.cs @@ -76,33 +76,38 @@ public enum DrawDepth /// Items = DrawDepthTag.Default + 3, - Mobs = DrawDepthTag.Default + 4, + /// + /// Stuff that should be drawn below mobs, but on top of items. Like muzzle flash. + /// + BelowMobs = DrawDepthTag.Default + 4, + + Mobs = DrawDepthTag.Default + 5, - OverMobs = DrawDepthTag.Default + 5, + OverMobs = DrawDepthTag.Default + 6, - Doors = DrawDepthTag.Default + 6, + Doors = DrawDepthTag.Default + 7, /// /// Blast doors and shutters which go over the usual doors. /// - BlastDoors = DrawDepthTag.Default + 7, + BlastDoors = DrawDepthTag.Default + 8, /// /// Stuff that needs to draw over most things, but not effects, like Kudzu. /// - Overdoors = DrawDepthTag.Default + 8, + Overdoors = DrawDepthTag.Default + 9, /// /// Explosions, fire, melee swings. Whatever. /// - Effects = DrawDepthTag.Default + 9, + Effects = DrawDepthTag.Default + 10, - Ghosts = DrawDepthTag.Default + 10, + Ghosts = DrawDepthTag.Default + 11, /// /// Use this selectively if it absolutely needs to be drawn above (almost) everything else. Examples include /// the pointing arrow, the drag & drop ghost-entity, and some debug tools. /// - Overlays = DrawDepthTag.Default + 11, + Overlays = DrawDepthTag.Default + 12, } } diff --git a/Content.Shared/Electrocution/Components/ElectrocutionHUDVisualsComponent.cs b/Content.Shared/Electrocution/Components/ElectrocutionHUDVisualsComponent.cs new file mode 100644 index 00000000000..a48b1e3e5a3 --- /dev/null +++ b/Content.Shared/Electrocution/Components/ElectrocutionHUDVisualsComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.Electrocution; + +/// +/// Handles toggling sprite layers for the electrocution HUD to show if an entity with the ElectrifiedComponent is electrified. +/// +[RegisterComponent] +public sealed partial class ElectrocutionHUDVisualsComponent : Component; diff --git a/Content.Shared/Electrocution/Components/ShowElectrocutionHUDComponent.cs b/Content.Shared/Electrocution/Components/ShowElectrocutionHUDComponent.cs new file mode 100644 index 00000000000..a6d9f380da3 --- /dev/null +++ b/Content.Shared/Electrocution/Components/ShowElectrocutionHUDComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Electrocution; + +/// +/// Allow an entity to see the Electrocution HUD showing electrocuted doors. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShowElectrocutionHUDComponent : Component; diff --git a/Content.Shared/Electrocution/SharedElectrocution.cs b/Content.Shared/Electrocution/SharedElectrocution.cs index 4060856d4d6..5422049874d 100644 --- a/Content.Shared/Electrocution/SharedElectrocution.cs +++ b/Content.Shared/Electrocution/SharedElectrocution.cs @@ -5,11 +5,13 @@ namespace Content.Shared.Electrocution; [Serializable, NetSerializable] public enum ElectrifiedLayers : byte { - Powered + Sparks, + HUD, } [Serializable, NetSerializable] public enum ElectrifiedVisuals : byte { - IsPowered + ShowSparks, // only shown when zapping someone, deactivated after a short time + IsElectrified, // if the entity is electrified or not, used for the AI HUD } diff --git a/Content.Shared/Electrocution/SharedElectrocutionSystem.cs b/Content.Shared/Electrocution/SharedElectrocutionSystem.cs index e36e4a804b7..5da344e023a 100644 --- a/Content.Shared/Electrocution/SharedElectrocutionSystem.cs +++ b/Content.Shared/Electrocution/SharedElectrocutionSystem.cs @@ -5,6 +5,8 @@ namespace Content.Shared.Electrocution { public abstract class SharedElectrocutionSystem : EntitySystem { + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + public override void Initialize() { base.Initialize(); @@ -35,6 +37,19 @@ public void SetElectrified(Entity ent, bool value) ent.Comp.Enabled = value; Dirty(ent, ent.Comp); + + _appearance.SetData(ent.Owner, ElectrifiedVisuals.IsElectrified, value); + } + + public void SetElectrifiedWireCut(Entity ent, bool value) + { + if (ent.Comp.IsWireCut == value) + { + return; + } + + ent.Comp.IsWireCut = value; + Dirty(ent); } /// Entity being electrocuted. diff --git a/Content.Shared/Light/SharedHandheldLightSystem.cs b/Content.Shared/Light/SharedHandheldLightSystem.cs index 9bec37a3140..74c809797b0 100644 --- a/Content.Shared/Light/SharedHandheldLightSystem.cs +++ b/Content.Shared/Light/SharedHandheldLightSystem.cs @@ -3,9 +3,11 @@ using Content.Shared.Item; using Content.Shared.Light.Components; using Content.Shared.Toggleable; +using Content.Shared.Verbs; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.GameStates; +using Robust.Shared.Utility; namespace Content.Shared.Light; @@ -22,6 +24,8 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnHandleState); + + SubscribeLocalEvent>(AddToggleLightVerb); } private void OnInit(EntityUid uid, HandheldLightComponent component, ComponentInit args) @@ -78,4 +82,25 @@ public void UpdateVisuals(EntityUid uid, HandheldLightComponent? component = nul _appearance.SetData(uid, ToggleableLightVisuals.Enabled, component.Activated, appearance); } + + private void AddToggleLightVerb(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || !ent.Comp.ToggleOnInteract) + return; + + var @event = args; + ActivationVerb verb = new() + { + Text = Loc.GetString("verb-common-toggle-light"), + Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/light.svg.192dpi.png")), + Act = ent.Comp.Activated + ? () => TurnOff(ent) + : () => TurnOn(@event.User, ent) + }; + + args.Verbs.Add(verb); + } + + public abstract bool TurnOff(Entity ent, bool makeNoise = true); + public abstract bool TurnOn(EntityUid user, Entity uid); } diff --git a/Content.Shared/Movement/Components/AutoOrientComponent.cs b/Content.Shared/Movement/Components/AutoOrientComponent.cs index 4b89b0cbf42..1031425c717 100644 --- a/Content.Shared/Movement/Components/AutoOrientComponent.cs +++ b/Content.Shared/Movement/Components/AutoOrientComponent.cs @@ -5,8 +5,9 @@ namespace Content.Shared.Movement.Components; /// /// Automatically rotates eye upon grid traversals. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] public sealed partial class AutoOrientComponent : Component { - + [DataField, AutoNetworkedField, AutoPausedField] + public TimeSpan? NextChange; } diff --git a/Content.Shared/Movement/Systems/AutoOrientSystem.cs b/Content.Shared/Movement/Systems/AutoOrientSystem.cs new file mode 100644 index 00000000000..3bbd715df50 --- /dev/null +++ b/Content.Shared/Movement/Systems/AutoOrientSystem.cs @@ -0,0 +1,51 @@ +using Content.Shared.CCVar; +using Content.Shared.Movement.Components; +using Robust.Shared.Configuration; +using Robust.Shared.Timing; + +namespace Content.Shared.Movement.Systems; + +public sealed class AutoOrientSystem : EntitySystem +{ + [Dependency] private readonly IConfigurationManager _cfgManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SharedMoverController _mover = default!; + + private TimeSpan _delay = TimeSpan.Zero; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnEntParentChanged); + + Subs.CVar(_cfgManager, CCVars.AutoOrientDelay, OnAutoOrient, true); + } + + private void OnAutoOrient(double obj) + { + _delay = TimeSpan.FromSeconds(obj); + } + + private void OnEntParentChanged(Entity ent, ref EntParentChangedMessage args) + { + ent.Comp.NextChange = _timing.CurTime + _delay; + Dirty(ent); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out var uid, out var comp)) + { + if (comp.NextChange <= _timing.CurTime) + { + comp.NextChange = null; + Dirty(uid, comp); + _mover.ResetCamera(uid); + } + } + } +} diff --git a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs index c11df709f63..1fe38b6cdf1 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs @@ -57,8 +57,6 @@ private void InitializeInput() SubscribeLocalEvent(OnMoverHandleState); SubscribeLocalEvent(OnInputParentChange); - SubscribeLocalEvent(OnAutoParentChange); - SubscribeLocalEvent(OnFollowedParentChange); Subs.CVar(_configManager, CCVars.CameraRotationLocked, obj => CameraRotationLocked = obj, true); @@ -146,11 +144,6 @@ private void ShutdownInput() protected virtual void HandleShuttleInput(EntityUid uid, ShuttleButtons button, ushort subTick, bool state) {} - private void OnAutoParentChange(Entity entity, ref EntParentChangedMessage args) - { - ResetCamera(entity.Owner); - } - public void RotateCamera(EntityUid uid, Angle angle) { if (CameraRotationLocked || !MoverQuery.TryGetComponent(uid, out var mover)) diff --git a/Content.Shared/Random/Rules/GridInRange.cs b/Content.Shared/Random/Rules/GridInRange.cs index 8cbbef1cdc2..dfe57b93757 100644 --- a/Content.Shared/Random/Rules/GridInRange.cs +++ b/Content.Shared/Random/Rules/GridInRange.cs @@ -34,6 +34,6 @@ public override bool Check(EntityManager entManager, EntityUid uid) return !Inverted; } - return false; + return Inverted; } } diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index 00271693abe..d5820ac0392 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -2,7 +2,6 @@ using Content.Shared.Administration.Logs; using Content.Shared.CCVar; using Content.Shared.Database; -using Content.Shared.GameTicking; using Content.Shared.Mind; using Content.Shared.Roles.Jobs; using Robust.Shared.Audio; @@ -20,7 +19,6 @@ public abstract class SharedRoleSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IEntityManager _entityManager = default!; - [Dependency] private readonly SharedGameTicker _gameTicker = default!; [Dependency] private readonly IPrototypeManager _prototypes = default!; private JobRequirementOverridePrototype? _requirementOverride; @@ -28,6 +26,8 @@ public abstract class SharedRoleSystem : EntitySystem public override void Initialize() { Subs.CVar(_cfg, CCVars.GameRoleTimerOverride, SetRequirementOverride, true); + + SubscribeLocalEvent(OnComponentShutdown); } private void SetRequirementOverride(string value) @@ -209,7 +209,6 @@ public bool MindRemoveRole(Entity mind) where T : IComponent } antagonist |= roleComp.Antag | roleComp.ExclusiveAntag; - _entityManager.DeleteEntity(role); delete.Add(role); found = true; } @@ -219,7 +218,7 @@ public bool MindRemoveRole(Entity mind) where T : IComponent foreach (var role in delete) { - mind.Comp.MindRoles.Remove(role); + _entityManager.DeleteEntity(role); } if (mind.Comp.OwnedEntity != null) @@ -235,6 +234,17 @@ public bool MindRemoveRole(Entity mind) where T : IComponent return true; } + // Removing the mind role's reference on component shutdown + // to make sure the reference gets removed even if the mind role entity was deleted by outside code + private void OnComponentShutdown(Entity ent, ref ComponentShutdown args) + { + //TODO: Just ensure that the tests don't spawn unassociated mind role entities + if (ent.Comp.Mind.Comp is null) + return; + + ent.Comp.Mind.Comp.MindRoles.Remove(ent.Owner); + } + /// /// Finds and removes all mind roles of a specific type /// diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Airlock.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Airlock.cs index 37e5cd6e6ae..ca2d593dbe1 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Airlock.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Airlock.cs @@ -34,7 +34,7 @@ private void OnAirlockBolt(EntityUid ent, DoorBoltComponent component, StationAi } /// - /// Attempts to bolt door. If wire was cut (AI) or its not powered - notifies AI and does nothing. + /// Attempts to toggle the door's emergency access. If wire was cut (AI) or its not powered - notifies AI and does nothing. /// private void OnAirlockEmergencyAccess(EntityUid ent, AirlockComponent component, StationAiEmergencyAccessEvent args) { @@ -48,7 +48,7 @@ private void OnAirlockEmergencyAccess(EntityUid ent, AirlockComponent component, } /// - /// Attempts to bolt door. If wire was cut (AI or for one of power-wires) or its not powered - notifies AI and does nothing. + /// Attempts to electrify the door. If wire was cut (AI or for one of power-wires) or its not powered - notifies AI and does nothing. /// private void OnElectrified(EntityUid ent, ElectrifiedComponent component, StationAiElectrifiedEvent args) { diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs index 189515635a8..5fca5cad280 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs @@ -394,6 +394,9 @@ private void AttachEye(Entity ent) private void OnAiInsert(Entity ent, ref EntInsertedIntoContainerMessage args) { + if (args.Container.ID != StationAiCoreComponent.Container) + return; + if (_timing.ApplyingState) return; diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs index ad264cd22a4..a23ee309401 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Inventory; +using Content.Shared.Item; using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; using Content.Shared.Storage; @@ -145,27 +146,23 @@ public void EquipStartingGear(EntityUid entity, IEquipmentLoadout? startingGear, if (startingGear.Storage.Count > 0) { var coords = _xformSystem.GetMapCoordinates(entity); - var ents = new ValueList(); _inventoryQuery.TryComp(entity, out var inventoryComp); - foreach (var (slot, entProtos) in startingGear.Storage) + foreach (var (slotName, entProtos) in startingGear.Storage) { - ents.Clear(); - if (entProtos.Count == 0) + if (entProtos == null || entProtos.Count == 0) continue; if (inventoryComp != null && - InventorySystem.TryGetSlotEntity(entity, slot, out var slotEnt, inventoryComponent: inventoryComp) && + InventorySystem.TryGetSlotEntity(entity, slotName, out var slotEnt, inventoryComponent: inventoryComp) && _storageQuery.TryComp(slotEnt, out var storage)) { - foreach (var ent in entProtos) - { - ents.Add(Spawn(ent, coords)); - } - foreach (var ent in ents) + foreach (var entProto in entProtos) { - _storage.Insert(slotEnt.Value, ent, out _, storageComp: storage, playSound: false); + var spawnedEntity = Spawn(entProto, coords); + + _storage.Insert(slotEnt.Value, spawnedEntity, out _, storageComp: storage, playSound: false); } } } diff --git a/Content.Shared/Traits/Assorted/PermanentBlindnessSystem.cs b/Content.Shared/Traits/Assorted/PermanentBlindnessSystem.cs index 6245118466f..2ab17e2c5e4 100644 --- a/Content.Shared/Traits/Assorted/PermanentBlindnessSystem.cs +++ b/Content.Shared/Traits/Assorted/PermanentBlindnessSystem.cs @@ -12,7 +12,6 @@ namespace Content.Shared.Traits.Assorted; public sealed class PermanentBlindnessSystem : EntitySystem { [Dependency] private readonly INetManager _net = default!; - [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly BlindableSystem _blinding = default!; /// @@ -33,20 +32,26 @@ private void OnExamined(Entity blindness, ref Exami private void OnShutdown(Entity blindness, ref ComponentShutdown args) { - _blinding.UpdateIsBlind(blindness.Owner); + if (!TryComp(blindness.Owner, out var blindable)) + return; + + if (blindable.MinDamage != 0) + { + _blinding.SetMinDamage((blindness.Owner, blindable), 0); + } } private void OnMapInit(Entity blindness, ref MapInitEvent args) { - if (!_entityManager.TryGetComponent(blindness, out var blindable)) + if(!TryComp(blindness.Owner, out var blindable)) return; if (blindness.Comp.Blindness != 0) - _blinding.SetMinDamage(new Entity(blindness.Owner, blindable), blindness.Comp.Blindness); + _blinding.SetMinDamage((blindness.Owner, blindable), blindness.Comp.Blindness); else { var maxMagnitudeInt = (int) BlurryVisionComponent.MaxMagnitude; - _blinding.SetMinDamage(new Entity(blindness.Owner, blindable), maxMagnitudeInt); + _blinding.SetMinDamage((blindness.Owner, blindable), maxMagnitudeInt); } } } diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 70963d8ba25..3136a52c243 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,230 +1,4 @@ Entries: -- author: Beck Thompson - changes: - - message: Cutting food now moves the sliced pieces a small amount! - type: Tweak - id: 7138 - time: '2024-08-18T21:18:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31166 -- author: lzk228 - changes: - - message: Pizza and pizza box now have 3x2 size in inventory. - type: Tweak - - message: Pizze box is 4x2 inside and always will have a pizza with a knife inside. - type: Tweak - - message: Pizza box have whitelist for utensils and pizza. - type: Tweak - id: 7139 - time: '2024-08-18T21:55:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31171 -- author: Deatherd - changes: - - message: Sharks Go RAWR! - type: Tweak - id: 7140 - time: '2024-08-18T22:18:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31142 -- author: slarticodefast - changes: - - message: Fixed the radiation collector warning light thresholds. - type: Fix - id: 7141 - time: '2024-08-18T22:25:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31175 -- author: Potato1234_x - changes: - - message: Added tea plants that can be dried and ground to make tea powder which - can then be used to make tea. - type: Add - - message: Added blue pumpkins. Currently useless but recipe uses are coming soon. - type: Add - id: 7142 - time: '2024-08-18T22:28:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25092 -- author: deltanedas - changes: - - message: Added Memory Cells for storing logic signals persistently. - type: Add - id: 7143 - time: '2024-08-18T22:34:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24983 -- author: Psychpsyo - changes: - - message: The random sentience event is back and can no longer pick things that - aren't even on the station. - type: Add - id: 7144 - time: '2024-08-18T23:41:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29123 -- author: EmoGarbage404 - changes: - - message: Ore can no longer be destroyed by explosions. Happy blast mining. - type: Tweak - id: 7145 - time: '2024-08-19T01:55:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31182 -- author: slarticodefast - changes: - - message: Mobs without hands can no longer toggle other players' suit pieces. - type: Fix - id: 7146 - time: '2024-08-19T02:41:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31152 -- author: Goldminermac - changes: - - message: Chocolate-chip and blueberry pancakes can now be in stacks of up to nine - for consistency. - type: Fix - id: 7147 - time: '2024-08-19T02:42:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31123 -- author: tosatur - changes: - - message: Made hydroponics alert light more orange - type: Tweak - id: 7148 - time: '2024-08-19T02:48:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31088 -- author: redmushie - changes: - - message: News management console now checks for Service ID card access instead - of the manifest - type: Fix - id: 7149 - time: '2024-08-19T02:55:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31160 -- author: Moomoobeef - changes: - - message: Added pitchers for the chef who wants to serve beverages too. - type: Add - id: 7150 - time: '2024-08-19T03:01:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31105 -- author: EmoGarbage404 - changes: - - message: Space carp and Sharkminnows now drop teeth when butchered. - type: Add - - message: Added new bounties for carp and shark teeth. - type: Add - id: 7151 - time: '2024-08-19T03:04:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31070 -- author: to4no_fix - changes: - - message: Now it takes 5 seconds to take off or put on a muzzle - type: Tweak - - message: Now it takes 5 seconds to take off or put on a blindfold - type: Tweak - - message: Added a recipe for producing a straitjacket, it opens when researching - the Special Means technology, it can be produced at the security techfab - type: Add - id: 7152 - time: '2024-08-19T03:05:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31095 -- author: Magicalus - changes: - - message: Suit sensors, borgs, and PDAs can no longer be saved to device-lists. - type: Tweak - id: 7153 - time: '2024-08-19T03:13:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30997 -- author: UBlueberry - changes: - - message: The guidebook entries for all antagonists have been revised. - type: Tweak - id: 7154 - time: '2024-08-19T03:16:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31075 -- author: TheWaffleJesus - changes: - - message: ERT Chaplains now have blessings to use their bible. - type: Fix - id: 7155 - time: '2024-08-19T03:19:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30993 -- author: DieselMohawk - changes: - - message: Reshaped the Security Helmet - type: Tweak - id: 7156 - time: '2024-08-19T03:21:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30961 -- author: EmoGarbage404 - changes: - - message: Increased the sell prices of most materials - type: Tweak - - message: Increased the price of ordering material crates from cargo. - type: Tweak - - message: Decreased the amount of plasma in one plasma crate from 3 stacks to 1 - stack. - type: Tweak - id: 7157 - time: '2024-08-19T03:28:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30869 -- author: Flareguy - changes: - - message: Added 2 new vox customization options for both hair & facial hair. - type: Add - - message: Vox Long Braids no longer incorrectly uses the Vox Afro sprite. - type: Fix - id: 7158 - time: '2024-08-19T03:32:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30815 -- author: EmoGarbage404 - changes: - - message: The recycler can now be broken down and repaired. - type: Add - - message: Breaking the recycler now removes the EMAG effect. - type: Add - - message: The material-reclaiming efficiency of the recycler has been increased. - type: Tweak - - message: Fixed a bug where inaccessible solutions could be extracted from entities - via the recycler. - type: Fix - - message: Removed the material reclaimer. - type: Remove - id: 7159 - time: '2024-08-19T03:39:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30802 -- author: lzk228 - changes: - - message: Cheese wheel now Normal sized and slices in 4 slices instead of 3. - type: Tweak - id: 7160 - time: '2024-08-19T07:54:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31168 -- author: Beck Thompson - changes: - - message: Slightly increased the price of the seed restock. - type: Tweak - id: 7161 - time: '2024-08-19T10:33:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31185 -- author: Boaz1111 - changes: - - message: The HoS has been given a new experimental weapon:An energy shotgun with - multiple fire modes. This experimental tech is highly wanted by the syndicate, - and agents will try to steal it. - type: Add - - message: Removed the Head of Security's Emergency Orders. - type: Remove - id: 7162 - time: '2024-08-19T11:14:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30643 -- author: tosatur - changes: - - message: Added more words to chat sanitisation - type: Tweak - id: 7163 - time: '2024-08-19T14:03:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31085 -- author: tosatur - changes: - - message: Changed text for ghost visibility toggle - type: Tweak - id: 7164 - time: '2024-08-19T17:51:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30998 - author: themias changes: - message: Lizards can now eat meat dumplings. @@ -3935,3 +3709,203 @@ id: 7637 time: '2024-11-22T03:46:10.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33128 +- author: IProduceWidgets + changes: + - message: The terminal is more tamper proof. + type: Fix + id: 7638 + time: '2024-11-22T22:50:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33281 +- author: MissKay1994 + changes: + - message: The salvage vendor now has enough equipment for everyone + type: Tweak + id: 7639 + time: '2024-11-23T02:53:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33437 +- author: slarticodefast + changes: + - message: The AI and observers can now see if doors are electrified. + type: Add + id: 7640 + time: '2024-11-23T06:37:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33466 +- author: Winkarst-cpu + changes: + - message: Now submit button in admin notes becomes disabled on switching type back + to note. + type: Fix + id: 7641 + time: '2024-11-23T06:41:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33456 +- author: metalgearsloth + changes: + - message: Fix airlock animations mispredicting if the closing animation is interrupted, + e.g. via walking into it. + type: Fix + id: 7642 + time: '2024-11-23T09:31:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33481 +- author: metalgearsloth + changes: + - message: Drag-drop outline no longer shows the vaulting outlines if you're vaulting. + type: Tweak + id: 7643 + time: '2024-11-23T11:19:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33477 +- author: goet + changes: + - message: Useless wires some vending machines have can be cut now. + type: Fix + id: 7644 + time: '2024-11-23T11:41:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32447 +- author: IProduceWidgets + changes: + - message: Arrivals shuttle is more tamper proof. + type: Fix + id: 7645 + time: '2024-11-23T15:14:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33284 +- author: metalgearsloth + changes: + - message: The auto-orientation when showing up on the arrivals shuttle now has + a delay to it. + type: Tweak + id: 7646 + time: '2024-11-23T16:52:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33479 +- author: Winkarst-cpu + changes: + - message: Now muzzle flashes are displayed below mobs. + type: Tweak + id: 7647 + time: '2024-11-24T04:20:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33465 +- author: MilenVolf + changes: + - message: Expeditions can now be completed prematurely again by making an FTL jump. + type: Fix + id: 7648 + time: '2024-11-24T08:11:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33507 +- author: deltanedas + changes: + - message: Fixed expeditions on cave planets not having any ore. + type: Fix + id: 7649 + time: '2024-11-24T08:49:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32890 +- author: slarticodefast + changes: + - message: Fixed doors not auto-closing correctly after being unbolted in an open + state. + type: Fix + id: 7650 + time: '2024-11-25T04:26:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33524 +- author: Schrodinger71 + changes: + - message: Fixed a bug letting players type "ghost" in the console and then see + the whole chat while being in the lobby. + type: Fix + id: 7651 + time: '2024-11-25T07:20:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33529 +- author: Minemoder + changes: + - message: The shark plushie now goes rawr when hitting something or being thrown. + type: Tweak + id: 7652 + time: '2024-11-25T12:23:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33540 +- author: red15 + changes: + - message: Vending machine lights turns off when broken. + type: Fix + id: 7653 + time: '2024-11-25T12:35:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33513 +- author: metalgearsloth + changes: + - message: Adjusted the top menu on the separated game screen. The buttons will + now form multiple rows and no longer overflow into the viewport. + type: Tweak + id: 7654 + time: '2024-11-26T00:59:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33047 +- author: slarticodefast + changes: + - message: Added the greytide virus station event. It will bolt open all doors in + a few randomly chosen departments and unlock lockers with the corresponding + access. + type: Add + id: 7655 + time: '2024-11-26T13:50:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33547 +- author: slarticodefast + changes: + - message: Fixed space ambient music not playing. + type: Fix + id: 7656 + time: '2024-11-27T05:32:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33594 +- author: slarticodefast + changes: + - message: Fixed windoors and high security doors not showing up on the AI's electrocution + HUD. + type: Fix + id: 7657 + time: '2024-11-27T05:55:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33551 +- author: Beck Thompson + changes: + - message: Handheld light verbs are now predicted! + type: Fix + id: 7658 + time: '2024-11-28T13:41:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33622 +- author: arimah + changes: + - message: GPS coordinates are now more readable. + type: Tweak + id: 7659 + time: '2024-11-29T08:14:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33625 +- author: DrSmugleaf + changes: + - message: Added admin log for ghost warping. + type: Add + id: 7660 + time: '2024-11-29T09:46:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33636 +- author: MossyGreySlope + changes: + - message: Rename the "slimeperson life support crate" to "internals crate (nitrogen)". + type: Tweak + id: 7661 + time: '2024-11-29T12:51:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33545 +- author: GansuLalan + changes: + - message: The arrival shuttle will no longer smash the nuke + type: Fix + id: 7662 + time: '2024-11-30T02:48:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33659 +- author: VlaDOS1408 + changes: + - message: Locale to shuttle-ftl-status-Invalid + type: Add + id: 7663 + time: '2024-11-30T02:54:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33651 +- author: jbox144 + changes: + - message: Fixed the link on Marathon's TEG exterior airlock + type: Fix + - message: Fixed Cog's exterior atmospherics airlock + type: Fix + id: 7664 + time: '2024-11-30T06:23:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33621 diff --git a/Resources/Changelog/ChangelogSyndie.yml b/Resources/Changelog/ChangelogSyndie.yml index f8a225e84d1..83722c17fbb 100644 --- a/Resources/Changelog/ChangelogSyndie.yml +++ b/Resources/Changelog/ChangelogSyndie.yml @@ -1,78 +1,4 @@ Entries: -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 211 - time: '2022-08-07T12:16:15.0000000+00:00' -- author: lapatison - changes: - - message: "\u043F\u043E\u043F\u0440\u0430\u0432\u043B\u0435\u043D \u043F\u0435\u0440\ - \u0435\u0432\u043E\u0434" - type: Fix - - message: "\u043F\u0430\u043B\u043E\u0447\u043A\u0438 \u0438 \u0436\u0435\u0437\ - \u043B\u044B \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u0438\u0437\u0438\ - \u0440\u043E\u0432\u0430\u043D\u044B \u0432 \u0432\u043E\u043B\u0448\u0435\u0431\ - \u043D\u044B\u0435 \u043F\u0430\u043B\u043E\u0447\u043A\u0438" - type: Tweak - id: 212 - time: '2022-08-07T13:43:36.0000000+00:00' -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0435\u0440\ - \u0435\u0432\u043E\u0434\u044B \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\ - \u0433\u043E \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F" - type: Add - id: 213 - time: '2022-08-07T13:43:25.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 214 - time: '2022-08-07T23:53:12.0000000+00:00' -- author: lapatison - changes: - - message: "\u041F\u043E\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0435\ - \u0440\u0435\u0432\u043E\u0434\u044B" - type: Fix - id: 215 - time: '2022-08-11T15:05:49.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 216 - time: '2022-08-13T00:45:18.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 217 - time: '2022-08-15T21:35:15.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 218 - time: '2022-08-16T15:22:57.0000000+00:00' -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0435\u0440\ - \u0435\u0432\u043E\u0434\u044B" - type: Add - id: 219 - time: '2022-08-16T16:10:42.0000000+00:00' - author: lapatison changes: - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0440\u0430\u0437\ @@ -4539,3 +4465,89 @@ id: 710 time: '2024-11-22T13:08:35.0000000+00:00' url: https://github.com/space-syndicate/space-station-14/pull/2786 +- author: Resoid + changes: + - message: "\u041D\u043E\u0432\u043E\u0433\u043E\u0434\u043D\u0435\u0435 \u043E\u0431\ + \u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 Astra." + type: Tweak + id: 711 + time: '2024-11-22T23:42:58.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2798 +- author: Meguneri + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0430 \u043E\u043F\u0435\ + \u0440\u0430\u0446\u0438\u043E\u043D\u043D\u0430\u044F \u0438 \u0437\u0438\u043C\ + \u043D\u044F\u044F \u0430\u0442\u043C\u043E\u0441\u0444\u0435\u0440\u0430 \u043D\ + \u0430 \u043A\u0430\u0440\u0442\u0443 Maus!" + type: Add + id: 712 + time: '2024-11-26T01:40:43.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2803 +- author: TiFeRi + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043A\u0430\u0440\ + \u0442\u0430 Paper." + type: Tweak + id: 713 + time: '2024-11-26T01:43:04.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2804 +- author: Litogin + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043A\u0430\ + \u0440\u0442 \u0441\u043C\u0435\u0449\u0435\u043D\u0438\u044F" + type: Add + - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D \u0431\u0430\u0433\ + \ \u0441 \u0431\u043E\u0442\u0438\u043D\u043A\u0430\u043C\u0438" + type: Fix + id: 714 + time: '2024-11-23T04:14:16.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2447 +- author: SonicHDC + changes: + - message: "\u0410\u0434\u0430\u043F\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u044B\ + \ \u0438\u043A\u043E\u043D\u043A\u0438 \u0440\u0441\u0443!" + type: Tweak + id: 715 + time: '2024-11-25T01:31:16.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2800 +- author: RatIRL + changes: + - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D Avrite." + type: Tweak + id: 716 + time: '2024-11-26T16:09:32.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2806 +- author: tabupetko + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043A\u0430\u0440\ + \u0442\u0430 Awesome." + type: Tweak + id: 717 + time: '2024-11-28T06:03:25.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2811 +- author: SonicHDC + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0434\u0432\u0438\ + \u0436\u0443\u0449\u0435\u0439\u0441\u044F \u043F\u0430\u0440\u0430\u043B\u043B\ + \u0430\u043A\u0441\u044B!" + type: Add + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043B\u0435\u0434\ + \u044F\u043D\u044B\u0435 \u043F\u0430\u0440\u0430\u043B\u043B\u0430\u043A\u0441\ + \u044B!" + type: Add + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043B\u0430\u0432\ + \u043E\u0432\u044B\u0435 \u043F\u0430\u0440\u0430\u043B\u043B\u0430\u043A\u0441\ + \u044B!" + type: Add + id: 718 + time: '2024-11-28T09:25:30.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2813 +- author: Vonsant + changes: + - message: "\u0428\u0430\u043D\u0441\u044B \u0440\u0435\u0436\u0438\u043C\u043E\u0432\ + \ \u0431\u044B\u043B\u0438 \u0432\u0430\u043D\u0438\u043B\u0438\u0437\u0438\u0440\ + \u043E\u0432\u0430\u043D\u044B." + type: Tweak + id: 719 + time: '2024-11-30T10:45:49.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2818 diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 28bab5d4c76..2efa9ef23cb 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -9,7 +9,7 @@ panic_bunker.enabled = true panic_bunker.disable_with_admins = true panic_bunker.enable_without_admins = true panic_bunker.show_reason = true -panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard or Farm Grass Hopper until you have more playtime." +panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard until you have more playtime." [infolinks] bug_report = "https://github.com/space-wizards/space-station-14/issues/new/choose" diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 53c4eb7ea0f..326dc1945d4 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, Spanky, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zylofan, Zymem, zzylex +0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex diff --git a/Resources/Locale/en-US/GPS/handheld-gps.ftl b/Resources/Locale/en-US/GPS/handheld-gps.ftl index e852f808323..b265bd1249b 100644 --- a/Resources/Locale/en-US/GPS/handheld-gps.ftl +++ b/Resources/Locale/en-US/GPS/handheld-gps.ftl @@ -1 +1,3 @@ -handheld-gps-coordinates-title = Coords: {$coordinates} +handheld-gps-coordinates-title = + Coords: + {$coordinates} diff --git a/Resources/Locale/en-US/chat/commands/ghost-command.ftl b/Resources/Locale/en-US/chat/commands/ghost-command.ftl index 08e78d34ce5..53dfa478d65 100644 --- a/Resources/Locale/en-US/chat/commands/ghost-command.ftl +++ b/Resources/Locale/en-US/chat/commands/ghost-command.ftl @@ -3,3 +3,4 @@ ghost-command-help-text = The ghost command turns you into a ghost and makes the Please note that you cannot return to your character's body after ghosting. ghost-command-no-session = You have no session, you can't ghost. ghost-command-denied = You cannot ghost right now. +ghost-command-error-lobby = You can't ghost right now. You are not in the game! diff --git a/Resources/Locale/en-US/preferences/humanoid-character-profile.ftl b/Resources/Locale/en-US/preferences/humanoid-character-profile.ftl index 800da35ba52..2d0b8ebcddc 100644 --- a/Resources/Locale/en-US/preferences/humanoid-character-profile.ftl +++ b/Resources/Locale/en-US/preferences/humanoid-character-profile.ftl @@ -5,5 +5,6 @@ humanoid-character-profile-summary = This is {$name}. {$gender -> [male] He is [female] She is - *[other] They are + [epicene] They are + *[other] It is } {$age} years old. \ No newline at end of file diff --git a/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl b/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl index 04ea0d9d51f..b2b66ebeb7a 100644 --- a/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl +++ b/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl @@ -15,7 +15,7 @@ humanoid-profile-editor-pronouns-label = Pronouns: humanoid-profile-editor-pronouns-male-text = He / Him humanoid-profile-editor-pronouns-female-text = She / Her humanoid-profile-editor-pronouns-epicene-text = They / Them -humanoid-profile-editor-pronouns-neuter-text = It / It +humanoid-profile-editor-pronouns-neuter-text = It / Its humanoid-profile-editor-import-button = Import humanoid-profile-editor-export-button = Export humanoid-profile-editor-export-image-button = Export image diff --git a/Resources/Locale/en-US/shuttles/console.ftl b/Resources/Locale/en-US/shuttles/console.ftl index 6143c995529..5b8be6ff021 100644 --- a/Resources/Locale/en-US/shuttles/console.ftl +++ b/Resources/Locale/en-US/shuttles/console.ftl @@ -4,7 +4,6 @@ shuttle-pilot-end = Stopped piloting shuttle-console-in-ftl = Currently in FTL shuttle-console-mass = Too large to FTL shuttle-console-prevent = You are unable to pilot this ship -shuttle-console-static = Grid is static # NAV @@ -31,6 +30,7 @@ shuttle-console-ftl-state-Starting = Starting shuttle-console-ftl-state-Travelling = Travelling shuttle-console-ftl-state-Arriving = Arriving shuttle-console-ftl-state-Cooldown = Cooldown +shuttle-console-ftl-state-Invalid = Invalid shuttle-console-map-settings = Settings shuttle-console-ftl-button = FTL diff --git a/Resources/Locale/en-US/station-events/events/greytide-virus.ftl b/Resources/Locale/en-US/station-events/events/greytide-virus.ftl new file mode 100644 index 00000000000..7e6f5e32ca6 --- /dev/null +++ b/Resources/Locale/en-US/station-events/events/greytide-virus.ftl @@ -0,0 +1 @@ +station-event-greytide-virus-start-announcement = Gr3y.T1d3 virus detected in the station's secure locking encryption subroutines. Severity level of { $severity }. Recommend station AI involvement. diff --git a/Resources/Maps/Misc/terminal.yml b/Resources/Maps/Misc/terminal.yml index d32a53856ef..8ca17b4ebcf 100644 --- a/Resources/Maps/Misc/terminal.yml +++ b/Resources/Maps/Misc/terminal.yml @@ -948,6 +948,7 @@ entities: - type: RadiationGridResistance - type: SpreaderGrid - type: GridPathfinding + - type: Godmode - proto: AirlockExternalGlass entities: - uid: 2 @@ -955,54 +956,187 @@ entities: - type: Transform pos: 6.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 3 components: - type: Transform pos: -7.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 4 components: - type: Transform pos: -7.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 5 components: - type: Transform pos: 6.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 11 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 12 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 13 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 14 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 1 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-17.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - proto: AirlockExternalLocked entities: - uid: 589 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - proto: AirlockGlass entities: - uid: 252 @@ -1010,90 +1144,237 @@ entities: - type: Transform pos: -9.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 253 components: - type: Transform pos: -10.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 254 components: - type: Transform pos: -11.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 255 components: - type: Transform pos: 8.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 256 components: - type: Transform pos: 9.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 257 components: - type: Transform pos: 10.5,-4.5 parent: 818 -- proto: AirlockGlassShuttleEasyPryLocked + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible +- proto: AirlockMaint entities: - - uid: 1 + - uid: 146 + components: + - type: Transform + pos: 3.5,3.5 + parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction +- proto: AlwaysPoweredWallLight + entities: + - uid: 150 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-10.5 + pos: -8.5,-5.5 parent: 818 - - uid: 6 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 188 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-17.5 + pos: 11.5,2.5 parent: 818 - - uid: 7 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-10.5 + rot: 3.141592653589793 rad + pos: -2.5,-1.5 parent: 818 - - uid: 8 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 209 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-17.5 + pos: 7.5,-5.5 parent: 818 - - uid: 9 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-10.5 + rot: 3.141592653589793 rad + pos: 1.5,-1.5 parent: 818 - - uid: 15 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 + pos: 9.5,-16.5 parent: 818 - - uid: 16 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 + rot: 3.141592653589793 rad + pos: 9.5,-11.5 parent: 818 - - uid: 17 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-11.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 650 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 687 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-17.5 + pos: -13.5,1.5 parent: 818 -- proto: AirlockMaint - entities: - - uid: 146 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 701 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,3.5 + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 715 + components: + - type: Transform + pos: -0.5,5.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible + - uid: 742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - proto: APCBasic entities: - uid: 205 @@ -1101,32 +1382,92 @@ entities: - type: Transform pos: 6.5,2.5 parent: 818 + - type: AccessReader + access: + - - CentralCommand + - type: Godmode + - type: BatterySelfRecharger + autoRechargeRate: 50000 + autoRecharge: True + missingComponents: + - Construction + - Destructible - uid: 206 components: - type: Transform pos: -13.5,2.5 parent: 818 + - type: AccessReader + access: + - - CentralCommand + - type: Godmode + - type: BatterySelfRecharger + autoRechargeRate: 50000 + autoRecharge: True + missingComponents: + - Construction + - Destructible - uid: 211 components: - type: Transform pos: -13.5,-11.5 parent: 818 + - type: AccessReader + access: + - - CentralCommand + - type: Godmode + - type: BatterySelfRecharger + autoRechargeRate: 50000 + autoRecharge: True + missingComponents: + - Construction + - Destructible - uid: 212 components: - type: Transform pos: 6.5,-11.5 parent: 818 + - type: AccessReader + access: + - - CentralCommand + - type: Godmode + - type: BatterySelfRecharger + autoRechargeRate: 50000 + autoRecharge: True + missingComponents: + - Construction + - Destructible - uid: 355 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,6.5 parent: 818 + - type: AccessReader + access: + - - CentralCommand + - type: Godmode + - type: BatterySelfRecharger + autoRechargeRate: 50000 + autoRecharge: True + missingComponents: + - Construction + - Destructible - uid: 846 components: - type: Transform pos: 2.5,3.5 parent: 818 + - type: AccessReader + access: + - - CentralCommand + - type: Godmode + - type: BatterySelfRecharger + autoRechargeRate: 50000 + autoRecharge: True + missingComponents: + - Construction + - Destructible - proto: ArrivalsShuttleTimer entities: - uid: 597 @@ -1134,21 +1475,33 @@ entities: - type: Transform pos: -7.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction - uid: 633 components: - type: Transform pos: 6.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction - uid: 928 components: - type: Transform pos: -6.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction - uid: 929 components: - type: Transform pos: 5.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction - proto: AtmosDeviceFanTiny entities: - uid: 296 @@ -1156,46 +1509,55 @@ entities: - type: Transform pos: -6.5,-10.5 parent: 818 + - type: Godmode - uid: 297 components: - type: Transform pos: -14.5,-10.5 parent: 818 + - type: Godmode - uid: 298 components: - type: Transform pos: -14.5,-17.5 parent: 818 + - type: Godmode - uid: 299 components: - type: Transform pos: -6.5,-17.5 parent: 818 + - type: Godmode - uid: 300 components: - type: Transform pos: 5.5,-17.5 parent: 818 + - type: Godmode - uid: 301 components: - type: Transform pos: 5.5,-10.5 parent: 818 + - type: Godmode - uid: 302 components: - type: Transform pos: 13.5,-10.5 parent: 818 + - type: Godmode - uid: 303 components: - type: Transform pos: 13.5,-17.5 parent: 818 + - type: Godmode - uid: 809 components: - type: Transform pos: 4.5,8.5 parent: 818 + - type: Godmode - proto: BarSignEngineChange entities: - uid: 215 @@ -1203,6 +1565,10 @@ entities: - type: Transform pos: -10.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - ApcPowerReceiver + - Destructible - proto: BlockGameArcade entities: - uid: 727 @@ -1211,28 +1577,46 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - ApcPowerReceiver + - Anchorable + - Construction + - Destructible - uid: 728 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - ApcPowerReceiver + - Anchorable + - Construction + - Destructible - proto: BookshelfFilled entities: - uid: 442 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - uid: 752 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - proto: BoozeDispenser entities: - uid: 710 @@ -1240,1198 +1624,2152 @@ entities: - type: Transform pos: -11.5,4.5 parent: 818 -- proto: CableApcExtension + - type: Godmode + missingComponents: + - ApcPowerReceiver + - Anchorable + - Destructible + - Construction +- proto: CableApcExtensionUncuttable entities: - uid: 203 components: - type: Transform pos: 1.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 208 components: - type: Transform pos: -3.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 218 components: - type: Transform pos: -4.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 402 components: - type: Transform pos: -4.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 404 components: - type: Transform pos: 2.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 410 components: - type: Transform pos: 2.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 411 components: - type: Transform pos: 3.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 412 components: - type: Transform pos: 3.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 426 components: - type: Transform pos: -2.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 427 components: - type: Transform pos: -1.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 428 components: - type: Transform pos: -0.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 429 components: - type: Transform pos: 0.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 430 components: - type: Transform pos: 1.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 431 components: - type: Transform pos: 1.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 434 components: - type: Transform pos: 0.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 435 components: - type: Transform pos: -0.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 436 components: - type: Transform pos: -1.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 437 components: - type: Transform pos: -2.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 438 components: - type: Transform pos: -3.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 439 components: - type: Transform pos: -4.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 440 components: - type: Transform pos: -2.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 443 components: - type: Transform pos: 2.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 444 components: - type: Transform pos: 3.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 445 components: - type: Transform pos: 4.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 446 components: - type: Transform pos: -5.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 447 components: - type: Transform pos: -13.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 448 components: - type: Transform pos: -13.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 449 components: - type: Transform pos: -13.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 450 components: - type: Transform pos: -13.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 451 components: - type: Transform pos: -12.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 452 components: - type: Transform pos: -11.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 453 components: - type: Transform pos: -10.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 454 components: - type: Transform pos: -9.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 455 components: - type: Transform pos: -8.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 456 components: - type: Transform pos: -7.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 457 components: - type: Transform pos: -10.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 458 components: - type: Transform pos: -10.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 459 components: - type: Transform pos: -10.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 460 components: - type: Transform pos: -10.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 461 components: - type: Transform pos: -10.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 462 components: - type: Transform pos: -10.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 463 components: - type: Transform pos: -10.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 464 components: - type: Transform pos: -11.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 465 components: - type: Transform pos: -9.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 466 components: - type: Transform pos: -11.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 467 components: - type: Transform pos: -9.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 468 components: - type: Transform pos: -13.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 469 components: - type: Transform pos: -12.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 470 components: - type: Transform pos: -11.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 471 components: - type: Transform pos: -11.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 472 components: - type: Transform pos: 10.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 473 components: - type: Transform pos: 10.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 474 components: - type: Transform pos: 10.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 475 components: - type: Transform pos: 10.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 476 components: - type: Transform pos: -11.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 477 components: - type: Transform pos: -10.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 478 components: - type: Transform pos: -10.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 479 components: - type: Transform pos: -10.5,-19.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 480 components: - type: Transform pos: -10.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 481 components: - type: Transform pos: -11.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 482 components: - type: Transform pos: -12.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 483 components: - type: Transform pos: -13.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 484 components: - type: Transform pos: -14.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 485 components: - type: Transform pos: -9.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 486 components: - type: Transform pos: -8.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 487 components: - type: Transform pos: -7.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 488 components: - type: Transform pos: -6.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 489 components: - type: Transform pos: -10.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 490 components: - type: Transform pos: -9.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 491 components: - type: Transform pos: -8.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 492 components: - type: Transform pos: -7.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 493 components: - type: Transform pos: -6.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 494 components: - type: Transform pos: -12.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 495 components: - type: Transform pos: -13.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 496 components: - type: Transform pos: -14.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 497 components: - type: Transform pos: -11.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 498 components: - type: Transform pos: -12.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 499 components: - type: Transform pos: -9.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 500 components: - type: Transform pos: -8.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 501 components: - type: Transform pos: -10.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 502 components: - type: Transform pos: -10.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 503 components: - type: Transform pos: -10.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 504 components: - type: Transform pos: -10.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 505 components: - type: Transform pos: 6.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 506 components: - type: Transform pos: 7.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 507 components: - type: Transform pos: 7.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 508 components: - type: Transform pos: 6.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 509 components: - type: Transform pos: 5.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 510 components: - type: Transform pos: 8.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 511 components: - type: Transform pos: 8.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 512 components: - type: Transform pos: 9.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 513 components: - type: Transform pos: 10.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 514 components: - type: Transform pos: 11.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 515 components: - type: Transform pos: 12.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 516 components: - type: Transform pos: 13.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 517 components: - type: Transform pos: 8.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 518 components: - type: Transform pos: 8.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 519 components: - type: Transform pos: 8.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 520 components: - type: Transform pos: 8.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 521 components: - type: Transform pos: -11.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 522 components: - type: Transform pos: 9.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 523 components: - type: Transform pos: 9.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 524 components: - type: Transform pos: 9.5,-19.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 525 components: - type: Transform pos: 9.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 526 components: - type: Transform pos: 8.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 527 components: - type: Transform pos: 7.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 528 components: - type: Transform pos: 6.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 529 components: - type: Transform pos: 5.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 530 components: - type: Transform pos: 10.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 531 components: - type: Transform pos: 11.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 532 components: - type: Transform pos: 12.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 533 components: - type: Transform pos: 13.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 534 components: - type: Transform pos: 8.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 535 components: - type: Transform pos: 7.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 536 components: - type: Transform pos: 10.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 537 components: - type: Transform pos: 11.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 538 components: - type: Transform pos: 9.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 539 components: - type: Transform pos: 9.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 540 components: - type: Transform pos: 9.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 541 components: - type: Transform pos: 9.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 542 components: - type: Transform pos: 6.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 543 components: - type: Transform pos: 6.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 544 components: - type: Transform pos: 6.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 545 components: - type: Transform pos: 6.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 546 components: - type: Transform pos: 7.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 547 components: - type: Transform pos: 8.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 548 components: - type: Transform pos: 9.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 549 components: - type: Transform pos: 9.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 550 components: - type: Transform pos: 9.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 551 components: - type: Transform pos: 9.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 552 components: - type: Transform pos: 9.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 553 components: - type: Transform pos: 10.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 554 components: - type: Transform pos: 8.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 555 components: - type: Transform pos: 10.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 556 components: - type: Transform pos: 11.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 557 components: - type: Transform pos: 12.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 558 components: - type: Transform pos: 9.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 559 components: - type: Transform pos: 9.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 560 components: - type: Transform pos: 9.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 561 components: - type: Transform pos: 8.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 562 components: - type: Transform pos: 10.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 563 components: - type: Transform pos: 1.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 564 components: - type: Transform pos: 2.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 565 components: - type: Transform pos: 3.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 566 components: - type: Transform pos: 3.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 579 components: - type: Transform pos: 2.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 599 components: - type: Transform pos: -4.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 601 components: - type: Transform pos: -4.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 651 components: - type: Transform pos: 10.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 652 components: - type: Transform pos: -11.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 653 components: - type: Transform pos: -11.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 654 components: - type: Transform pos: -9.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 655 components: - type: Transform pos: -9.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 656 components: - type: Transform pos: -9.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 657 components: - type: Transform pos: -9.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 658 components: - type: Transform pos: -9.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 842 components: - type: Transform pos: -4.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 843 components: - type: Transform pos: -4.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 844 components: - type: Transform pos: 2.5,3.5 parent: 818 -- proto: CableHV + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable +- proto: CableHVUncuttable entities: - uid: 413 components: - type: Transform pos: -3.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 415 components: - type: Transform pos: -4.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 416 components: - type: Transform pos: -2.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 734 components: - type: Transform pos: -0.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 735 components: - type: Transform pos: -1.5,8.5 parent: 818 -- proto: CableMV + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable +- proto: CableMVUncuttable entities: - uid: 177 components: - type: Transform pos: 3.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 201 components: - type: Transform pos: 6.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 210 components: - type: Transform pos: 6.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 214 components: - type: Transform pos: 6.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 219 components: - type: Transform pos: 7.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 221 components: - type: Transform pos: 3.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 224 components: - type: Transform pos: 1.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 226 components: - type: Transform pos: 6.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 227 components: - type: Transform pos: 8.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 228 components: - type: Transform pos: 9.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 349 components: - type: Transform pos: 9.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 350 components: - type: Transform pos: 5.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 352 components: - type: Transform pos: 2.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 353 components: - type: Transform pos: 4.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 354 components: - type: Transform pos: 1.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 356 components: - type: Transform pos: 9.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 357 components: - type: Transform pos: 9.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 358 components: - type: Transform pos: 9.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 359 components: - type: Transform pos: 9.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 360 components: - type: Transform pos: 9.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 361 components: - type: Transform pos: 9.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 362 components: - type: Transform pos: 9.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 363 components: - type: Transform pos: 9.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 364 components: - type: Transform pos: 9.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 365 components: - type: Transform pos: 9.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 366 components: - type: Transform pos: 8.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 367 components: - type: Transform pos: 7.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 368 components: - type: Transform pos: 6.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 369 components: - type: Transform pos: 0.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 370 components: - type: Transform pos: -0.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 371 components: - type: Transform pos: -1.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 372 components: - type: Transform pos: -2.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 373 components: - type: Transform pos: -3.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 374 components: - type: Transform pos: -4.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 375 components: - type: Transform pos: -5.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 376 components: - type: Transform pos: -6.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 377 components: - type: Transform pos: -7.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 378 components: - type: Transform pos: -8.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 379 components: - type: Transform pos: -9.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 380 components: - type: Transform pos: -10.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 381 components: - type: Transform pos: -11.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 382 components: - type: Transform pos: -12.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 383 components: - type: Transform pos: -13.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 384 components: - type: Transform pos: -13.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 385 components: - type: Transform pos: -13.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 386 components: - type: Transform pos: -13.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 387 components: - type: Transform pos: -10.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 388 components: - type: Transform pos: -10.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 389 components: - type: Transform pos: -10.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 390 components: - type: Transform pos: -10.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 391 components: - type: Transform pos: -10.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 392 components: - type: Transform pos: -10.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 393 components: - type: Transform pos: -10.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 394 components: - type: Transform pos: -10.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 395 components: - type: Transform pos: -10.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 396 components: - type: Transform pos: -10.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 397 components: - type: Transform pos: -10.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 398 components: - type: Transform pos: -11.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 399 components: - type: Transform pos: -12.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 400 components: - type: Transform pos: -13.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 418 components: - type: Transform pos: 3.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 419 components: - type: Transform pos: 3.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 421 components: - type: Transform pos: -0.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 422 components: - type: Transform pos: 0.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 423 components: - type: Transform pos: 1.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 424 components: - type: Transform pos: 2.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 425 components: - type: Transform pos: 3.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 567 components: - type: Transform pos: 3.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 568 components: - type: Transform pos: 3.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 569 components: - type: Transform pos: 3.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 570 components: - type: Transform pos: -0.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 803 components: - type: Transform pos: 3.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 845 components: - type: Transform pos: 2.5,3.5 parent: 818 -- proto: CableTerminal + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable +- proto: CableTerminalUncuttable entities: - uid: 417 components: @@ -2439,6 +3777,11 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - proto: Catwalk entities: - uid: 580 @@ -2446,56 +3789,111 @@ entities: - type: Transform pos: 3.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - RCDDeconstructable - uid: 584 components: - type: Transform pos: 2.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - RCDDeconstructable - uid: 590 components: - type: Transform pos: 3.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - RCDDeconstructable - uid: 596 components: - type: Transform pos: 1.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - RCDDeconstructable - uid: 747 components: - type: Transform pos: 3.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - RCDDeconstructable - uid: 810 components: - type: Transform pos: 0.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - RCDDeconstructable - uid: 811 components: - type: Transform pos: -0.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - RCDDeconstructable - uid: 812 components: - type: Transform pos: -1.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - RCDDeconstructable - uid: 813 components: - type: Transform pos: -2.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - RCDDeconstructable - uid: 814 components: - type: Transform pos: -3.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - RCDDeconstructable - uid: 815 components: - type: Transform pos: -4.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - RCDDeconstructable - proto: Chair entities: - uid: 592 @@ -2504,254 +3902,475 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 593 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 603 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 604 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 605 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 606 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 607 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 608 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 609 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 610 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 611 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 612 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 613 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 614 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 615 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 616 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 617 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 618 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 619 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 620 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 621 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 622 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 623 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 624 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 625 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 626 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 627 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 628 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 629 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 630 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 631 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 632 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 847 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 848 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 849 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 850 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: ChairOfficeDark entities: - - uid: 591 + - uid: 18 components: - type: Transform + anchored: True rot: 3.141592653589793 rad pos: 9.5,3.5 parent: 818 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: ChairWood entities: - uid: 577 components: - type: Transform + anchored: True pos: 10.5,1.5 parent: 818 - - uid: 703 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Destructible + - Anchorable + - uid: 591 components: - type: Transform + anchored: True rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 818 - - uid: 704 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Destructible + - Anchorable + - uid: 703 components: - type: Transform + anchored: True pos: 9.5,1.5 parent: 818 - - uid: 714 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Destructible + - Anchorable + - uid: 704 components: - type: Transform + anchored: True rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 818 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Destructible + - Anchorable - proto: ChessBoard entities: - - uid: 918 + - uid: 714 components: - type: Transform - pos: 12.503689,-2.3981738 + rot: 3.141592653589793 rad + pos: 12.5093775,-2.403601 parent: 818 - proto: ClosetWallEmergencyFilledRandom entities: @@ -2760,6 +4379,10 @@ entities: - type: Transform pos: -5.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - proto: ClosetWallFireFilledRandom entities: - uid: 432 @@ -2767,6 +4390,10 @@ entities: - type: Transform pos: 4.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - proto: ComfyChair entities: - uid: 595 @@ -2775,28 +4402,53 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 718 components: - type: Transform pos: 12.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 749 components: - type: Transform pos: 12.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 759 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 760 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: DisposalBend entities: - uid: 853 @@ -2805,40 +4457,75 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 862 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 891 components: - type: Transform pos: 3.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 893 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 898 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 899 components: - type: Transform pos: 9.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 900 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: DisposalJunctionFlipped entities: - uid: 892 @@ -2847,6 +4534,11 @@ entities: rot: 3.141592653589793 rad pos: 3.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: DisposalPipe entities: - uid: 854 @@ -2855,277 +4547,517 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 855 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 856 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 857 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 858 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 859 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 860 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 861 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 863 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 864 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 865 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 866 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 867 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 868 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 869 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 870 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 871 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 872 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 873 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 874 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 875 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 876 components: - type: Transform pos: 3.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 877 components: - type: Transform pos: 3.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 878 components: - type: Transform pos: 3.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 879 components: - type: Transform pos: 3.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 880 components: - type: Transform pos: 3.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 881 components: - type: Transform pos: 3.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 882 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 883 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 884 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 885 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 886 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 887 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 888 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 889 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 890 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 901 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 902 components: - type: Transform pos: 9.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 903 components: - type: Transform pos: 9.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 904 components: - type: Transform pos: 9.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 905 components: - type: Transform pos: 9.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 906 components: - type: Transform pos: 9.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 907 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 908 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 909 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 910 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 911 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 912 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: DisposalTrunk entities: - uid: 852 @@ -3134,18 +5066,33 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 894 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 897 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: DisposalUnit entities: - uid: 851 @@ -3153,29 +5100,39 @@ entities: - type: Transform pos: -12.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - Anchorable - uid: 896 components: - type: Transform pos: 11.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Destructible + - Anchorable - proto: DrinkGlass entities: - - uid: 915 + - uid: 723 components: - type: Transform - pos: -12.587411,2.5765429 + pos: -12.618602,2.5336328 parent: 818 - - uid: 916 + - uid: 915 components: - type: Transform - pos: -12.321786,2.7171679 + pos: -12.399852,2.6273828 parent: 818 - proto: DrinkShaker entities: - - uid: 914 + - uid: 724 components: - type: Transform - pos: -12.649911,2.7640429 + pos: -12.722768,2.7627993 parent: 818 - proto: ExtinguisherCabinetFilled entities: @@ -3184,11 +5141,17 @@ entities: - type: Transform pos: -6.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 816 components: - type: Transform pos: 5.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: FirelockEdge entities: - uid: 690 @@ -3196,111 +5159,211 @@ entities: - type: Transform pos: -8.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 694 components: - type: Transform pos: -12.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 695 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 696 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 697 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 698 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 699 components: - type: Transform pos: 11.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 700 components: - type: Transform pos: 7.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 822 components: - type: Transform pos: 10.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 823 components: - type: Transform pos: 9.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 824 components: - type: Transform pos: 8.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 825 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 826 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 827 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 828 components: - type: Transform pos: -9.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 829 components: - type: Transform pos: -10.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 830 components: - type: Transform pos: -11.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 831 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 832 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 833 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - proto: FirelockGlass entities: - uid: 194 @@ -3308,51 +5371,101 @@ entities: - type: Transform pos: 5.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 216 components: - type: Transform pos: -10.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 220 components: - type: Transform pos: -9.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 305 components: - type: Transform pos: -6.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 345 components: - type: Transform pos: 5.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 346 components: - type: Transform pos: 5.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 347 components: - type: Transform pos: -6.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 348 components: - type: Transform pos: -6.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 586 components: - type: Transform pos: -11.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 716 components: - type: Transform pos: -12.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - proto: GeneratorBasic15kW entities: - uid: 124 @@ -3360,6 +5473,10 @@ entities: - type: Transform pos: -4.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - Anchorable + - Destructible - proto: GravityGeneratorMini entities: - uid: 808 @@ -3367,6 +5484,11 @@ entities: - type: Transform pos: 1.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - proto: Grille entities: - uid: 96 @@ -3374,479 +5496,918 @@ entities: - type: Transform pos: -14.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 97 components: - type: Transform pos: -14.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 98 components: - type: Transform pos: -14.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 99 components: - type: Transform pos: -6.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 101 components: - type: Transform pos: 5.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 102 components: - type: Transform pos: 5.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 103 components: - type: Transform pos: 13.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 104 components: - type: Transform pos: 13.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 125 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-19.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 126 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 127 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 128 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 131 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 132 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 133 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 134 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-19.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 135 components: - type: Transform pos: 5.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 136 components: - type: Transform pos: 5.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 137 components: - type: Transform pos: 13.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 138 components: - type: Transform pos: 13.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 139 components: - type: Transform pos: -14.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 140 components: - type: Transform pos: -6.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 141 components: - type: Transform pos: -6.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 142 components: - type: Transform pos: -6.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 143 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 144 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 145 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 147 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 148 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 149 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 153 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 155 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 156 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 157 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 167 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 168 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 169 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 170 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 171 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 172 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 173 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 174 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 175 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 176 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 178 components: - type: Transform pos: 3.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 183 components: - type: Transform pos: -3.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 184 components: - type: Transform pos: 4.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 191 components: - type: Transform pos: -5.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 197 components: - type: Transform pos: -4.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 229 components: - type: Transform pos: 2.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 233 components: - type: Transform pos: -8.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 234 components: - type: Transform pos: 11.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 235 components: - type: Transform pos: 7.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 244 components: - type: Transform pos: -12.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 276 components: - type: Transform pos: 13.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 277 components: - type: Transform pos: 13.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 278 components: - type: Transform pos: 13.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 279 components: - type: Transform pos: 13.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 280 components: - type: Transform pos: -14.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 281 components: - type: Transform pos: -14.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 282 components: - type: Transform pos: -14.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 283 components: - type: Transform pos: -14.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 318 components: - type: Transform pos: -13.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 319 components: - type: Transform pos: -13.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 320 components: - type: Transform pos: -12.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 321 components: - type: Transform pos: -12.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 322 components: - type: Transform pos: -11.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 323 components: - type: Transform pos: -10.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 324 components: - type: Transform pos: -9.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 325 components: - type: Transform pos: -8.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 326 components: - type: Transform pos: -8.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 327 components: - type: Transform pos: -7.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 328 components: - type: Transform pos: -7.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 329 components: - type: Transform pos: 6.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 330 components: - type: Transform pos: 6.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 331 components: - type: Transform pos: 7.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 332 components: - type: Transform pos: 7.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 333 components: - type: Transform pos: 8.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 334 components: - type: Transform pos: 9.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 335 components: - type: Transform pos: 10.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 336 components: - type: Transform pos: 11.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 337 components: - type: Transform pos: 11.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 338 components: - type: Transform pos: 12.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 339 components: - type: Transform pos: 12.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - proto: PaperBin10 entities: - - uid: 737 + - uid: 729 components: - type: Transform - rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 818 - proto: PosterLegitCohibaRobustoAd @@ -3856,6 +6417,9 @@ entities: - type: Transform pos: -6.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: PosterLegitEnlist entities: - uid: 926 @@ -3863,6 +6427,9 @@ entities: - type: Transform pos: -14.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: PosterLegitHighClassMartini entities: - uid: 925 @@ -3870,6 +6437,9 @@ entities: - type: Transform pos: -6.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: PosterLegitJustAWeekAway entities: - uid: 821 @@ -3877,6 +6447,9 @@ entities: - type: Transform pos: 5.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: PosterLegitNanomichiAd entities: - uid: 820 @@ -3884,6 +6457,9 @@ entities: - type: Transform pos: -4.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: PosterLegitNanotrasenLogo entities: - uid: 246 @@ -3891,36 +6467,57 @@ entities: - type: Transform pos: -7.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 247 components: - type: Transform pos: -13.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 248 components: - type: Transform pos: 12.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 249 components: - type: Transform pos: 6.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 250 components: - type: Transform pos: -13.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 251 components: - type: Transform pos: 12.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 922 components: - type: Transform pos: -0.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: PosterLegitNTTGC entities: - uid: 924 @@ -3928,6 +6525,9 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: PosterLegitPDAAd entities: - uid: 920 @@ -3935,6 +6535,9 @@ entities: - type: Transform pos: 12.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: PosterLegitVacation entities: - uid: 921 @@ -3942,6 +6545,9 @@ entities: - type: Transform pos: -7.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: PosterLegitWorkForAFuture entities: - uid: 923 @@ -3949,6 +6555,9 @@ entities: - type: Transform pos: 12.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: PottedPlantRandom entities: - uid: 236 @@ -3956,31 +6565,37 @@ entities: - type: Transform pos: 7.5,-19.5 parent: 818 + - type: Godmode - uid: 237 components: - type: Transform pos: -12.5,-19.5 parent: 818 + - type: Godmode - uid: 238 components: - type: Transform pos: 11.5,-19.5 parent: 818 + - type: Godmode - uid: 239 components: - type: Transform pos: -8.5,-19.5 parent: 818 + - type: Godmode - uid: 733 components: - type: Transform pos: -8.5,-5.5 parent: 818 + - type: Godmode - uid: 741 components: - type: Transform pos: -7.5,-3.5 parent: 818 + - type: Godmode - proto: PottedPlantRandomPlastic entities: - uid: 708 @@ -3988,130 +6603,13 @@ entities: - type: Transform pos: -13.5,1.5 parent: 818 + - type: Godmode - uid: 755 components: - type: Transform pos: -13.5,-3.5 parent: 818 -- proto: Poweredlight - entities: - - uid: 150 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-5.5 - parent: 818 - - uid: 188 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 818 - - uid: 195 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 818 - - uid: 209 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 818 - - uid: 341 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 818 - - uid: 634 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 9.5,-16.5 - parent: 818 - - uid: 636 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-11.5 - parent: 818 - - uid: 649 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-11.5 - parent: 818 - - uid: 650 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-16.5 - parent: 818 - - uid: 687 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 818 - - uid: 701 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,3.5 - parent: 818 - - uid: 702 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 818 - - uid: 715 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,5.5 - parent: 818 - - uid: 717 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 818 - - uid: 742 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 818 + - type: Godmode - proto: RandomSpawner entities: - uid: 895 @@ -4119,32 +6617,7 @@ entities: - type: Transform pos: -4.5,4.5 parent: 818 -- proto: RandomVending - entities: - - uid: 835 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 818 - - uid: 836 - components: - - type: Transform - pos: -10.5,-20.5 - parent: 818 -- proto: RandomVendingDrinks - entities: - - uid: 692 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 818 -- proto: RandomVendingSnacks - entities: - - uid: 834 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 818 + - type: Godmode - proto: ReinforcedWindow entities: - uid: 19 @@ -4153,472 +6626,912 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 20 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 21 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 22 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 24 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-19.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 25 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 26 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 27 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 28 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 29 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-19.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 30 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 31 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 32 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 33 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 34 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 35 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 36 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 37 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 38 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-20.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 39 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 91 components: - type: Transform pos: -14.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 93 components: - type: Transform pos: -14.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 94 components: - type: Transform pos: -6.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 95 components: - type: Transform pos: -6.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 100 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 105 components: - type: Transform pos: 5.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 106 components: - type: Transform pos: 5.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 107 components: - type: Transform pos: 13.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 108 components: - type: Transform pos: 13.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 109 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 110 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 111 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 113 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 115 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 116 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 117 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 118 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 121 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 122 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-7.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 123 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 159 components: - type: Transform pos: -14.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 160 components: - type: Transform pos: -14.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 161 components: - type: Transform pos: -6.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 162 components: - type: Transform pos: -6.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 163 components: - type: Transform pos: 5.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 164 components: - type: Transform pos: 13.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 165 components: - type: Transform pos: 5.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 166 components: - type: Transform pos: 13.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 185 components: - type: Transform pos: -5.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 186 components: - type: Transform pos: 2.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 192 components: - type: Transform pos: 4.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 196 components: - type: Transform pos: 3.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 198 components: - type: Transform pos: -3.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 232 components: - type: Transform pos: -4.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 240 components: - type: Transform pos: -12.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 241 components: - type: Transform pos: 11.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 242 components: - type: Transform pos: 7.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 243 components: - type: Transform pos: -8.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 268 components: - type: Transform pos: -14.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 269 components: - type: Transform pos: -14.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 270 components: - type: Transform pos: -14.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 271 components: - type: Transform pos: -14.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 272 components: - type: Transform pos: 13.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 273 components: - type: Transform pos: 13.5,-1.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 274 components: - type: Transform pos: 13.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 275 components: - type: Transform pos: 13.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 284 components: - type: Transform pos: -13.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 285 components: - type: Transform pos: -12.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 286 components: - type: Transform pos: -10.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 287 components: - type: Transform pos: -11.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 288 components: - type: Transform pos: -8.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 289 components: - type: Transform pos: -8.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 290 components: - type: Transform pos: -12.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 291 components: - type: Transform pos: -13.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 292 components: - type: Transform pos: -9.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 293 components: - type: Transform pos: 6.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 294 components: - type: Transform pos: -7.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 295 components: - type: Transform pos: -7.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 308 components: - type: Transform pos: 6.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 309 components: - type: Transform pos: 7.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 310 components: - type: Transform pos: 7.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 311 components: - type: Transform pos: 8.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 312 components: - type: Transform pos: 9.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 313 components: - type: Transform pos: 10.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 314 components: - type: Transform pos: 11.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 315 components: - type: Transform pos: 11.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 316 components: - type: Transform pos: 12.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 317 components: - type: Transform pos: 12.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - proto: SignNanotrasen1 entities: - uid: 721 @@ -4626,6 +7539,9 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: SignNanotrasen2 entities: - uid: 722 @@ -4633,6 +7549,9 @@ entities: - type: Transform pos: -1.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: SignNanotrasen3 entities: - uid: 719 @@ -4640,6 +7559,9 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: SignNanotrasen4 entities: - uid: 801 @@ -4647,6 +7569,9 @@ entities: - type: Transform pos: 0.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: SignNanotrasen5 entities: - uid: 802 @@ -4654,6 +7579,9 @@ entities: - type: Transform pos: 1.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: SignNosmoking entities: - uid: 720 @@ -4661,6 +7589,9 @@ entities: - type: Transform pos: -7.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: SignShipDock entities: - uid: 200 @@ -4668,11 +7599,17 @@ entities: - type: Transform pos: 6.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 245 components: - type: Transform pos: -7.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: SignSpace entities: - uid: 571 @@ -4680,46 +7617,73 @@ entities: - type: Transform pos: 12.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 640 components: - type: Transform pos: -7.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 688 components: - type: Transform pos: -13.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 689 components: - type: Transform pos: -7.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 691 components: - type: Transform pos: -13.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 705 components: - type: Transform pos: 12.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 709 components: - type: Transform pos: 6.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 817 components: - type: Transform pos: 6.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 819 components: - type: Transform pos: 4.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: SinkWide entities: - uid: 913 @@ -4728,6 +7692,9 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: SmallLight entities: - uid: 598 @@ -4736,52 +7703,102 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 641 components: - type: Transform pos: -14.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 642 components: - type: Transform pos: -6.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 643 components: - type: Transform pos: -14.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 644 components: - type: Transform pos: -6.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 645 components: - type: Transform pos: 5.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 646 components: - type: Transform pos: 13.5,-10.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 647 components: - type: Transform pos: 13.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 648 components: - type: Transform pos: 5.5,-17.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 917 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - proto: SMESBasic entities: - uid: 805 @@ -4789,13 +7806,24 @@ entities: - type: Transform pos: -2.5,8.5 parent: 818 -- proto: soda_dispenser + - type: Godmode + missingComponents: + - Anchorable + - Destructible + - Construction +- proto: SodaDispenser entities: - uid: 795 components: - type: Transform pos: -10.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - ApcPowerReceiver + - Anchorable + - Destructible + - Construction - proto: SpaceVillainArcadeFilled entities: - uid: 731 @@ -4804,12 +7832,24 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - ApcPowerReceiver + - Anchorable + - Construction + - Destructible - uid: 732 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - ApcPowerReceiver + - Anchorable + - Construction + - Destructible - proto: SpawnPointLatejoin entities: - uid: 763 @@ -4817,161 +7857,193 @@ entities: - type: Transform pos: -7.5,-15.5 parent: 818 + - type: Godmode - uid: 764 components: - type: Transform pos: -7.5,-14.5 parent: 818 + - type: Godmode - uid: 765 components: - type: Transform pos: -7.5,-13.5 parent: 818 + - type: Godmode - uid: 766 components: - type: Transform pos: -7.5,-12.5 parent: 818 + - type: Godmode - uid: 767 components: - type: Transform pos: -9.5,-15.5 parent: 818 + - type: Godmode - uid: 768 components: - type: Transform pos: -9.5,-14.5 parent: 818 + - type: Godmode - uid: 769 components: - type: Transform pos: -9.5,-13.5 parent: 818 + - type: Godmode - uid: 770 components: - type: Transform pos: -9.5,-12.5 parent: 818 + - type: Godmode - uid: 771 components: - type: Transform pos: -11.5,-15.5 parent: 818 + - type: Godmode - uid: 772 components: - type: Transform pos: -11.5,-14.5 parent: 818 + - type: Godmode - uid: 773 components: - type: Transform pos: -11.5,-13.5 parent: 818 + - type: Godmode - uid: 774 components: - type: Transform pos: -11.5,-12.5 parent: 818 + - type: Godmode - uid: 775 components: - type: Transform pos: -13.5,-15.5 parent: 818 + - type: Godmode - uid: 776 components: - type: Transform pos: -13.5,-14.5 parent: 818 + - type: Godmode - uid: 777 components: - type: Transform pos: -13.5,-13.5 parent: 818 + - type: Godmode - uid: 778 components: - type: Transform pos: -13.5,-12.5 parent: 818 + - type: Godmode - uid: 779 components: - type: Transform pos: 6.5,-15.5 parent: 818 + - type: Godmode - uid: 780 components: - type: Transform pos: 6.5,-14.5 parent: 818 + - type: Godmode - uid: 781 components: - type: Transform pos: 6.5,-13.5 parent: 818 + - type: Godmode - uid: 782 components: - type: Transform pos: 6.5,-12.5 parent: 818 + - type: Godmode - uid: 783 components: - type: Transform pos: 8.5,-15.5 parent: 818 + - type: Godmode - uid: 784 components: - type: Transform pos: 8.5,-14.5 parent: 818 + - type: Godmode - uid: 785 components: - type: Transform pos: 8.5,-13.5 parent: 818 + - type: Godmode - uid: 786 components: - type: Transform pos: 8.5,-12.5 parent: 818 + - type: Godmode - uid: 787 components: - type: Transform pos: 10.5,-15.5 parent: 818 + - type: Godmode - uid: 788 components: - type: Transform pos: 10.5,-14.5 parent: 818 + - type: Godmode - uid: 789 components: - type: Transform pos: 10.5,-13.5 parent: 818 + - type: Godmode - uid: 790 components: - type: Transform pos: 10.5,-12.5 parent: 818 + - type: Godmode - uid: 791 components: - type: Transform pos: 12.5,-15.5 parent: 818 + - type: Godmode - uid: 792 components: - type: Transform pos: 12.5,-14.5 parent: 818 + - type: Godmode - uid: 793 components: - type: Transform pos: 12.5,-13.5 parent: 818 + - type: Godmode - uid: 794 components: - type: Transform pos: 12.5,-12.5 parent: 818 + - type: Godmode - proto: SS13Memorial entities: - uid: 594 @@ -4979,56 +8051,121 @@ entities: - type: Transform pos: -0.5,4.5 parent: 818 + - type: Godmode - proto: Stool entities: - uid: 119 components: - type: Transform + anchored: True rot: 3.141592653589793 rad pos: -11.5,-20.5 parent: 818 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 639 components: - type: Transform + anchored: True rot: 3.141592653589793 rad pos: -9.5,-20.5 parent: 818 - - uid: 723 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible + - uid: 730 components: - type: Transform + anchored: True rot: 3.141592653589793 rad - pos: 10.5,-20.5 + pos: 8.5,-20.5 parent: 818 - - uid: 724 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible + - uid: 737 components: - type: Transform + anchored: True rot: 3.141592653589793 rad - pos: 8.5,-20.5 + pos: 10.5,-20.5 parent: 818 - - uid: 729 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible + - uid: 738 components: - type: Transform + anchored: True rot: -1.5707963267948966 rad - pos: -12.5,-1.5 + pos: -12.5,-0.5 parent: 818 - - uid: 730 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible + - uid: 740 components: - type: Transform + anchored: True rot: -1.5707963267948966 rad - pos: -12.5,-2.5 + pos: -12.5,0.5 parent: 818 - - uid: 738 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible + - uid: 761 components: - type: Transform + anchored: True rot: -1.5707963267948966 rad - pos: -12.5,-0.5 + pos: -12.5,-1.5 parent: 818 - - uid: 740 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible + - uid: 914 components: - type: Transform + anchored: True rot: -1.5707963267948966 rad - pos: -12.5,0.5 + pos: -12.5,-2.5 parent: 818 + - type: Physics + bodyType: Static + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: StoolBar entities: - uid: 230 @@ -5037,18 +8174,33 @@ entities: rot: 3.141592653589793 rad pos: -9.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 342 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 433 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: SubstationBasic entities: - uid: 807 @@ -5056,6 +8208,11 @@ entities: - type: Transform pos: -0.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - proto: TableCarpet entities: - uid: 572 @@ -5063,21 +8220,37 @@ entities: - type: Transform pos: 9.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 573 components: - type: Transform pos: 9.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 574 components: - type: Transform pos: 10.5,-0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 576 components: - type: Transform pos: 10.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - proto: TableReinforced entities: - uid: 585 @@ -5086,36 +8259,60 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 707 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 751 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 796 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 797 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 798 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - proto: TableWood entities: - uid: 441 @@ -5123,31 +8320,55 @@ entities: - type: Transform pos: 12.5,0.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 575 components: - type: Transform pos: 6.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 587 components: - type: Transform pos: 12.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 706 components: - type: Transform pos: 9.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 750 components: - type: Transform pos: 10.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 756 components: - type: Transform pos: 8.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Construction - proto: TelecomServerFilled entities: - uid: 919 @@ -5155,972 +8376,1162 @@ entities: - type: Transform pos: -1.5,8.5 parent: 818 + - type: EncryptionKeyHolder + keysUnlocked: False + - type: Godmode + missingComponents: + - Destructible + - ApcPowerReceiver + - Anchorable + - Construction - proto: VendingMachineBooze entities: - uid: 753 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -9.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - ApcPowerReceiver +- proto: VendingMachineChang + entities: + - uid: 692 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable - proto: VendingMachineCigs entities: - uid: 744 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -7.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - ApcPowerReceiver - proto: VendingMachineCola entities: - uid: 635 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -12.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - ApcPowerReceiver +- proto: VendingMachineColaBlack + entities: + - uid: 834 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable +- proto: VendingMachineDiscount + entities: + - uid: 836 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable +- proto: VendingMachineDrGibb + entities: + - uid: 835 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable - proto: VendingMachineGames entities: - uid: 748 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 6.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - ApcPowerReceiver - proto: VendingMachineSnack entities: - uid: 637 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -12.5,-6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - ApcPowerReceiver - proto: WallRiveted entities: - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 23 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-21.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 41 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 42 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 43 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 44 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 45 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 46 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 48 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 49 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 50 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 51 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 52 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-18.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 53 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 54 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 55 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 56 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 57 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 60 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 61 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 62 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 63 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 64 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 65 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 69 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 70 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 71 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 72 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 73 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 74 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 75 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 76 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 77 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 78 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 79 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 80 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 81 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 82 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 83 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 84 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 85 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 86 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 87 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 88 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 89 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 90 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 92 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 112 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 114 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 120 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 154 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 158 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 179 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 180 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 182 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 187 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 189 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 190 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 193 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 199 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 202 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 207 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 217 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 222 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 223 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 225 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 231 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 258 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 259 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 260 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,-4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 261 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,-3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 262 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 263 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 264 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 265 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,1.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 266 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 267 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 304 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 306 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 307 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 340 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 343 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 351 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 401 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 403 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 405 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 406 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 407 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 408 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 409 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 414 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 420 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 578 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 581 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 582 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 583 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 588 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 602 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 693 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 711 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 712 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 713 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-2.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 725 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 726 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 736 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 739 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 743 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 745 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 746 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 754 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,7.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 757 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 758 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 762 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,5.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 799 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,4.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 800 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,9.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - uid: 804 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,6.5 parent: 818 + - type: Godmode + missingComponents: + - Destructible - proto: WarpPoint entities: - uid: 638 @@ -6130,6 +9541,7 @@ entities: parent: 818 - type: WarpPoint location: Terminal + - type: Godmode - proto: Windoor entities: - uid: 806 @@ -6137,11 +9549,21 @@ entities: - type: Transform pos: -8.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - uid: 841 components: - type: Transform pos: -2.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - proto: WindowReinforcedDirectional entities: - uid: 181 @@ -6150,198 +9572,373 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 204 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 600 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,8.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 659 components: - type: Transform pos: 9.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 660 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 661 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 662 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 663 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 664 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 665 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 666 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 667 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 668 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 669 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 670 components: - type: Transform pos: -10.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 671 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 672 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 673 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 674 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 675 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-12.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 676 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-13.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 677 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-14.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 678 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-15.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 679 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 680 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 681 components: - type: Transform pos: -11.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 682 components: - type: Transform pos: -9.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 683 components: - type: Transform pos: 10.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 684 components: - type: Transform pos: 8.5,-11.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 685 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 686 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-16.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 837 components: - type: Transform pos: 1.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 838 components: - type: Transform pos: 0.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 839 components: - type: Transform pos: -0.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 840 components: - type: Transform pos: -1.5,3.5 parent: 818 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible ... diff --git a/Resources/Maps/Shuttles/arrivals.yml b/Resources/Maps/Shuttles/arrivals.yml index b4609e1b0ae..3c853ef7395 100644 --- a/Resources/Maps/Shuttles/arrivals.yml +++ b/Resources/Maps/Shuttles/arrivals.yml @@ -192,13 +192,17 @@ entities: - type: RadiationGridResistance - type: SpreaderGrid - type: GridPathfinding + - type: Godmode - proto: AirCanister entities: - uid: 214 components: - type: Transform + anchored: True pos: -1.5,7.5 parent: 292 + - type: Physics + bodyType: Static - proto: AirlockCommandGlassLocked entities: - uid: 278 @@ -208,6 +212,11 @@ entities: - type: Transform pos: -0.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - proto: AirlockGlassShuttle entities: - uid: 177 @@ -217,11 +226,16 @@ entities: pos: 3.5,-2.5 parent: 292 - type: Door - secondsUntilStateChange: -336.60016 + secondsUntilStateChange: -623.03485 state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 178 components: - type: Transform @@ -229,11 +243,16 @@ entities: pos: 3.5,4.5 parent: 292 - type: Door - secondsUntilStateChange: -338.3335 + secondsUntilStateChange: -624.7682 state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 179 components: - type: Transform @@ -241,11 +260,16 @@ entities: pos: -4.5,4.5 parent: 292 - type: Door - secondsUntilStateChange: -332.80017 + secondsUntilStateChange: -619.23486 state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 180 components: - type: Transform @@ -253,11 +277,16 @@ entities: pos: -4.5,-2.5 parent: 292 - type: Door - secondsUntilStateChange: -334.70016 + secondsUntilStateChange: -621.1349 state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - proto: APCBasic entities: - uid: 116 @@ -266,6 +295,13 @@ entities: rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 292 + - type: BatterySelfRecharger + autoRechargeRate: 50000 + autoRecharge: True + - type: Godmode + missingComponents: + - Construction + - Destructible - proto: ArrivalsShuttleTimer entities: - uid: 294 @@ -273,11 +309,17 @@ entities: - type: Transform pos: -4.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Construction - uid: 295 components: - type: Transform pos: 3.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Construction - proto: AtmosDeviceFanDirectional entities: - uid: 164 @@ -286,24 +328,28 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 292 + - type: Godmode - uid: 165 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,4.5 parent: 292 + - type: Godmode - uid: 166 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-2.5 parent: 292 + - type: Godmode - uid: 167 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-2.5 parent: 292 + - type: Godmode - proto: BlockGameArcade entities: - uid: 258 @@ -312,418 +358,747 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-1.5 parent: 292 -- proto: CableApcExtension + - type: Godmode + missingComponents: + - Anchorable + - Construction + - Destructible +- proto: CableApcExtensionUncuttable entities: - uid: 123 components: - type: Transform pos: -0.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 124 components: - type: Transform pos: -0.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 125 components: - type: Transform pos: -1.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 126 components: - type: Transform pos: -2.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 127 components: - type: Transform pos: -2.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 128 components: - type: Transform pos: -2.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 129 components: - type: Transform pos: -2.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 130 components: - type: Transform pos: -2.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 131 components: - type: Transform pos: -2.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 132 components: - type: Transform pos: -2.5,-1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 133 components: - type: Transform pos: -2.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 134 components: - type: Transform pos: -1.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 135 components: - type: Transform pos: -0.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 136 components: - type: Transform pos: 0.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 137 components: - type: Transform pos: 1.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 138 components: - type: Transform pos: 1.5,-1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 139 components: - type: Transform pos: 1.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 140 components: - type: Transform pos: 1.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 141 components: - type: Transform pos: 1.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 142 components: - type: Transform pos: 1.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 143 components: - type: Transform pos: 1.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 144 components: - type: Transform pos: 1.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 145 components: - type: Transform pos: 0.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 146 components: - type: Transform pos: -0.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 147 components: - type: Transform pos: -0.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 148 components: - type: Transform pos: -0.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 149 components: - type: Transform pos: -0.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 150 components: - type: Transform pos: -1.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 151 components: - type: Transform pos: 0.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 152 components: - type: Transform pos: 0.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 153 components: - type: Transform pos: 1.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 154 components: - type: Transform pos: -1.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 155 components: - type: Transform pos: -2.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 156 components: - type: Transform pos: -2.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 157 components: - type: Transform pos: 1.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 158 components: - type: Transform pos: -1.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 159 components: - type: Transform pos: 0.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 160 components: - type: Transform pos: -3.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 161 components: - type: Transform pos: 2.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 162 components: - type: Transform pos: 2.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 163 components: - type: Transform pos: -3.5,-2.5 parent: 292 -- proto: CableHV + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable +- proto: CableHVUncuttable entities: - uid: 79 components: - type: Transform pos: 0.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 80 components: - type: Transform pos: 1.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 81 components: - type: Transform pos: 1.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 82 components: - type: Transform pos: -0.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 83 components: - type: Transform pos: -0.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 85 components: - type: Transform pos: -0.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 86 components: - type: Transform pos: -0.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 87 components: - type: Transform pos: -1.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 88 components: - type: Transform pos: -2.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 89 components: - type: Transform pos: -2.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 90 components: - type: Transform pos: -2.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 91 components: - type: Transform pos: -2.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 92 components: - type: Transform pos: -2.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 93 components: - type: Transform pos: -2.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 94 components: - type: Transform pos: -2.5,-1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 95 components: - type: Transform pos: -2.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 96 components: - type: Transform pos: -1.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 97 components: - type: Transform pos: -0.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 98 components: - type: Transform pos: 0.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 99 components: - type: Transform pos: 1.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 100 components: - type: Transform pos: 1.5,-1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 101 components: - type: Transform pos: 1.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 102 components: - type: Transform pos: 1.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 103 components: - type: Transform pos: 1.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 104 components: - type: Transform pos: 1.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 105 components: - type: Transform pos: 1.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 106 components: - type: Transform pos: 1.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 107 components: - type: Transform pos: 0.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 108 components: - type: Transform pos: -1.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 109 components: - type: Transform pos: -1.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 110 components: - type: Transform pos: -1.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 111 components: - type: Transform pos: 0.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 112 components: - type: Transform pos: 0.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 113 components: - type: Transform pos: 0.5,-3.5 parent: 292 -- proto: CableMV + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable +- proto: CableMVUncuttable entities: - uid: 117 components: - type: Transform pos: 1.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 118 components: - type: Transform pos: 1.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 119 components: - type: Transform pos: 1.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 120 components: - type: Transform pos: 0.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 121 components: - type: Transform pos: -0.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable - uid: 122 components: - type: Transform pos: -0.5,3.5 parent: 292 -- proto: CableTerminal + - type: Godmode + missingComponents: + - Destructible + - RCDDeconstructable +- proto: CableTerminalUncuttable entities: - uid: 84 components: @@ -731,6 +1106,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Destructible + - Construction - proto: ChairPilotSeat entities: - uid: 223 @@ -739,112 +1119,207 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 224 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 225 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 226 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 227 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 228 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 229 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 230 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 231 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 232 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 233 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 234 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 235 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 236 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 237 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 238 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 239 components: - type: Transform pos: 1.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 240 components: - type: Transform pos: -2.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 241 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: ClosetEmergencyFilledRandom entities: - uid: 252 @@ -852,72 +1327,18 @@ entities: - type: Transform pos: 0.5,5.5 parent: 292 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 260 + - uid: 253 components: - type: Transform pos: -2.5,-3.5 parent: 292 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetFireFilled entities: - - uid: 253 + - uid: 260 components: - type: Transform pos: -1.5,5.5 parent: 292 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetWallEmergencyFilledRandom entities: - uid: 288 @@ -944,6 +1365,10 @@ entities: - 0 - 0 - 0 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 289 components: - type: Transform @@ -967,6 +1392,10 @@ entities: - 0 - 0 - 0 + - type: Godmode + missingComponents: + - Destructible + - Construction - proto: ClosetWallFireFilledRandom entities: - uid: 286 @@ -992,6 +1421,10 @@ entities: - 0 - 0 - 0 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 287 components: - type: Transform @@ -1016,40 +1449,28 @@ entities: - 0 - 0 - 0 + - type: Godmode + missingComponents: + - Destructible + - Construction - proto: ClothingBackpack entities: - - uid: 275 + - uid: 266 components: - type: Transform - pos: 2.5,5.5 + pos: 2.5277145,5.600461 parent: 292 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null - proto: ClothingMaskBreath entities: - - uid: 272 + - uid: 267 components: - type: Transform - pos: 2.5,-3.5 + pos: 2.4086668,-3.4828715 parent: 292 - - uid: 273 + - uid: 274 components: - type: Transform - pos: -3.5,-3.5 + pos: -3.6032372,-3.4947772 parent: 292 - proto: ComputerShuttle entities: @@ -1058,24 +1479,29 @@ entities: - type: Transform pos: -0.5,9.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: CrowbarRed entities: - - uid: 274 + - uid: 293 components: - type: Transform - pos: 0.5,-3.5 + pos: 0.45628688,-3.5066814 parent: 292 - proto: EmergencyOxygenTankFilled entities: - - uid: 270 + - uid: 268 components: - type: Transform - pos: 2.5708976,-3.5851696 + pos: -3.2460945,-3.6614437 parent: 292 - - uid: 271 + - uid: 269 components: - type: Transform - pos: -3.4291024,-3.5851696 + pos: 2.7300956,-3.6138248 parent: 292 - proto: ExtinguisherCabinetFilled entities: @@ -1084,6 +1510,9 @@ entities: - type: Transform pos: -0.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible - proto: GasPassiveGate entities: - uid: 184 @@ -1091,6 +1520,11 @@ entities: - type: Transform pos: -0.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: GasPipeBend entities: - uid: 182 @@ -1099,34 +1533,64 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 183 components: - type: Transform pos: -0.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 187 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 188 components: - type: Transform pos: 1.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 189 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 190 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: GasPipeFourway entities: - uid: 186 @@ -1134,6 +1598,11 @@ entities: - type: Transform pos: -0.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: GasPipeStraight entities: - uid: 185 @@ -1141,110 +1610,215 @@ entities: - type: Transform pos: -0.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 192 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 193 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 194 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 195 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 196 components: - type: Transform pos: 1.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 197 components: - type: Transform pos: 1.5,-1.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 198 components: - type: Transform pos: 1.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 199 components: - type: Transform pos: 1.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 200 components: - type: Transform pos: 1.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 201 components: - type: Transform pos: 1.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 202 components: - type: Transform pos: 1.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 203 components: - type: Transform pos: 1.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 204 components: - type: Transform pos: -2.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 205 components: - type: Transform pos: -2.5,-1.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 206 components: - type: Transform pos: -2.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 207 components: - type: Transform pos: -2.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 208 components: - type: Transform pos: -2.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 209 components: - type: Transform pos: -2.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 210 components: - type: Transform pos: -2.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 211 components: - type: Transform pos: -2.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: GasPipeTJunction entities: - uid: 191 @@ -1253,6 +1827,11 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: GasPort entities: - uid: 181 @@ -1261,6 +1840,11 @@ entities: rot: 3.141592653589793 rad pos: -1.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: GasVentPump entities: - uid: 212 @@ -1268,12 +1852,22 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 213 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: GeneratorBasic15kW entities: - uid: 114 @@ -1281,11 +1875,19 @@ entities: - type: Transform pos: -1.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Anchorable + - Destructible - uid: 115 components: - type: Transform pos: 0.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Anchorable + - Destructible - proto: GeneratorWallmountAPU entities: - uid: 78 @@ -1293,6 +1895,11 @@ entities: - type: Transform pos: 1.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: GravityGeneratorMini entities: - uid: 291 @@ -1300,6 +1907,11 @@ entities: - type: Transform pos: -2.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - proto: Grille entities: - uid: 44 @@ -1307,116 +1919,231 @@ entities: - type: Transform pos: 3.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 52 components: - type: Transform pos: 3.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 53 components: - type: Transform pos: 3.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 54 components: - type: Transform pos: 3.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 55 components: - type: Transform pos: -4.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 56 components: - type: Transform pos: -4.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 57 components: - type: Transform pos: -4.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 58 components: - type: Transform pos: -4.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 59 components: - type: Transform pos: -1.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 60 components: - type: Transform pos: -2.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 61 components: - type: Transform pos: 1.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 62 components: - type: Transform pos: 0.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 63 components: - type: Transform pos: 0.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 64 components: - type: Transform pos: -1.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 65 components: - type: Transform pos: -2.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 66 components: - type: Transform pos: -2.5,9.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 67 components: - type: Transform pos: -1.5,9.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 68 components: - type: Transform pos: -1.5,10.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 69 components: - type: Transform pos: -0.5,10.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 70 components: - type: Transform pos: 0.5,10.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 71 components: - type: Transform pos: 0.5,9.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 72 components: - type: Transform pos: 1.5,9.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - uid: 73 components: - type: Transform pos: 1.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - RCDDeconstructable + - Construction + - Destructible - proto: Gyroscope entities: - uid: 168 @@ -1424,6 +2151,11 @@ entities: - type: Transform pos: 1.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - proto: IntercomCommon entities: - uid: 264 @@ -1431,6 +2163,12 @@ entities: - type: Transform pos: -0.5,-1.5 parent: 292 + - type: EncryptionKeyHolder + keysUnlocked: False + - type: Godmode + missingComponents: + - Construction + - Destructible - proto: MaintenanceFluffSpawner entities: - uid: 284 @@ -1438,29 +2176,31 @@ entities: - type: Transform pos: 0.5,3.5 parent: 292 + - type: Godmode - uid: 285 components: - type: Transform pos: -1.5,3.5 parent: 292 + - type: Godmode - proto: MedkitFilled entities: - - uid: 266 + - uid: 276 components: - type: Transform - pos: -0.5,-3.5 + pos: -0.4960943,-3.4828715 parent: 292 - proto: NitrogenTankFilled entities: - - uid: 268 + - uid: 271 components: - type: Transform - pos: -3.5,-3.5 + pos: -3.4365704,-3.590015 parent: 292 - - uid: 269 + - uid: 273 components: - type: Transform - pos: 2.5,-3.5 + pos: 2.563429,-3.566205 parent: 292 - proto: PosterLegitNanotrasenLogo entities: @@ -1469,6 +2209,9 @@ entities: - type: Transform pos: -2.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible - proto: PottedPlantRandom entities: - uid: 254 @@ -1476,21 +2219,25 @@ entities: - type: Transform pos: 2.5,-1.5 parent: 292 + - type: Godmode - uid: 255 components: - type: Transform pos: 2.5,3.5 parent: 292 + - type: Godmode - uid: 256 components: - type: Transform pos: -3.5,3.5 parent: 292 + - type: Godmode - uid: 257 components: - type: Transform pos: -3.5,-1.5 parent: 292 + - type: Godmode - proto: PowerCellRecharger entities: - uid: 265 @@ -1498,7 +2245,12 @@ entities: - type: Transform pos: 0.5,-3.5 parent: 292 -- proto: Poweredlight + - type: Godmode + missingComponents: + - Anchorable + - Destructible + - Construction +- proto: AlwaysPoweredWallLight entities: - uid: 279 components: @@ -1508,6 +2260,11 @@ entities: parent: 292 - type: ApcPowerReceiver powerLoad: 0 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 280 components: - type: Transform @@ -1516,6 +2273,11 @@ entities: parent: 292 - type: ApcPowerReceiver powerLoad: 0 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 281 components: - type: Transform @@ -1524,6 +2286,11 @@ entities: parent: 292 - type: ApcPowerReceiver powerLoad: 0 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 282 components: - type: Transform @@ -1532,6 +2299,11 @@ entities: parent: 292 - type: ApcPowerReceiver powerLoad: 0 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 283 components: - type: Transform @@ -1540,6 +2312,11 @@ entities: parent: 292 - type: ApcPowerReceiver powerLoad: 0 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - proto: Rack entities: - uid: 262 @@ -1547,11 +2324,21 @@ entities: - type: Transform pos: 2.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - uid: 263 components: - type: Transform pos: -3.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - Anchorable + - Destructible - proto: ShuttleWindow entities: - uid: 28 @@ -1559,116 +2346,231 @@ entities: - type: Transform pos: 3.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 29 components: - type: Transform pos: 3.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 30 components: - type: Transform pos: 3.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 31 components: - type: Transform pos: 3.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 32 components: - type: Transform pos: -4.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 33 components: - type: Transform pos: -4.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 34 components: - type: Transform pos: -4.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 35 components: - type: Transform pos: -4.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 36 components: - type: Transform pos: -1.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 37 components: - type: Transform pos: -2.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 38 components: - type: Transform pos: 0.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 39 components: - type: Transform pos: 1.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 40 components: - type: Transform pos: 0.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 41 components: - type: Transform pos: -1.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 42 components: - type: Transform pos: -2.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 43 components: - type: Transform pos: -1.5,9.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 45 components: - type: Transform pos: -2.5,9.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 46 components: - type: Transform pos: -1.5,10.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 47 components: - type: Transform pos: -0.5,10.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 48 components: - type: Transform pos: 0.5,10.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 49 components: - type: Transform pos: 0.5,9.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 50 components: - type: Transform pos: 1.5,9.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - uid: 51 components: - type: Transform pos: 1.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction + - RCDDeconstructable - proto: SMESBasic entities: - uid: 76 @@ -1676,6 +2578,11 @@ entities: - type: Transform pos: 0.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Anchorable + - Destructible + - Construction - proto: SpaceVillainArcadeFilled entities: - uid: 259 @@ -1684,6 +2591,11 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 292 + - type: Godmode + missingComponents: + - Anchorable + - Construction + - Destructible - proto: SubstationWallBasic entities: - uid: 77 @@ -1691,6 +2603,10 @@ entities: - type: Transform pos: 1.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - proto: TableReinforced entities: - uid: 243 @@ -1698,46 +2614,82 @@ entities: - type: Transform pos: 0.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 244 components: - type: Transform pos: -1.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 245 components: - type: Transform pos: 0.5,8.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 246 components: - type: Transform pos: -0.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 247 components: - type: Transform pos: -1.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 248 components: - type: Transform pos: 0.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 249 components: - type: Transform pos: -1.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 250 components: - type: Transform pos: 2.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 251 components: - type: Transform pos: -3.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - proto: Thruster entities: - uid: 169 @@ -1745,58 +2697,103 @@ entities: - type: Transform pos: 2.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - uid: 170 components: - type: Transform pos: -3.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - uid: 171 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - uid: 172 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - uid: 173 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - uid: 174 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - uid: 175 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - uid: 176 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Anchorable + - Construction - proto: ToolboxEmergencyFilled entities: - - uid: 267 + - uid: 270 components: - type: Transform - pos: -1.5,-3.5 + pos: -1.4722855,-3.4471583 parent: 292 - - uid: 276 + - uid: 272 components: - type: Transform - pos: -3.5,5.5 + pos: -1.4722855,-3.4471583 + parent: 292 + - uid: 275 + components: + - type: Transform + pos: -3.5079994,5.600461 parent: 292 - proto: VendingMachineClothing entities: @@ -1805,6 +2802,10 @@ entities: - type: Transform pos: 1.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Anchorable - proto: WallShuttle entities: - uid: 1 @@ -1812,146 +2813,262 @@ entities: - type: Transform pos: 3.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 2 components: - type: Transform pos: 3.5,-1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 3 components: - type: Transform pos: -4.5,-3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 4 components: - type: Transform pos: -4.5,-1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 5 components: - type: Transform pos: -4.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 6 components: - type: Transform pos: -4.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 7 components: - type: Transform pos: 3.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 8 components: - type: Transform pos: 3.5,5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 9 components: - type: Transform pos: 3.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 10 components: - type: Transform pos: 2.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 11 components: - type: Transform pos: -4.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 12 components: - type: Transform pos: -3.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 13 components: - type: Transform pos: -2.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 14 components: - type: Transform pos: -2.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 15 components: - type: Transform pos: 1.5,6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 16 components: - type: Transform pos: 1.5,7.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 17 components: - type: Transform pos: 3.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 18 components: - type: Transform pos: 2.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 19 components: - type: Transform pos: -4.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 20 components: - type: Transform pos: -3.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 21 components: - type: Transform pos: -0.5,-4.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 22 components: - type: Transform pos: 2.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 23 components: - type: Transform pos: 3.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 24 components: - type: Transform pos: -3.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 25 components: - type: Transform pos: -4.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 26 components: - type: Transform pos: -0.5,-6.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 27 components: - type: Transform pos: -0.5,-5.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 74 components: - type: Transform pos: -0.5,-1.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - uid: 75 components: - type: Transform pos: -0.5,3.5 parent: 292 + - type: Godmode + missingComponents: + - Destructible + - Construction - proto: WindowReinforcedDirectional entities: - uid: 215 @@ -1960,46 +3077,86 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 216 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 217 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 218 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 219 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,2.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 220 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 221 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible - uid: 222 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-0.5 parent: 292 + - type: Godmode + missingComponents: + - Construction + - RCDDeconstructable + - Destructible ... diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index d770924a72f..eed5e0bec4b 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -15048,12 +15048,24 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,6.5 parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 26626: + - DoorStatus: DoorBolt - uid: 26626 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,8.5 parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 26625: + - DoorStatus: DoorBolt - uid: 28301 components: - type: Transform diff --git a/Resources/Maps/corvax_astra.yml b/Resources/Maps/corvax_astra.yml index 19f2e36d736..d353590cac9 100644 --- a/Resources/Maps/corvax_astra.yml +++ b/Resources/Maps/corvax_astra.yml @@ -80,6 +80,7 @@ tilemap: 6: FloorShuttleRed 89: FloorShuttleWhite 12: FloorSilver + 97: FloorSnowDug 93: FloorSteel 95: FloorSteelCheckerDark 96: FloorSteelCheckerLight @@ -143,21 +144,21 @@ entities: - type: MetaData name: Astra - type: Transform - pos: 0.5663719,-3.1277313 + pos: -0.47481894,-2.540786 parent: 1 - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: LwAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAASAAAAAAANQAAAAABSAAAAAADNQAAAAACNQAAAAAAfgAAAAAAXQAAAAAATgAAAAACXQAAAAACXQAAAAAATgAAAAABLwAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAANQAAAAADNQAAAAABSAAAAAAANQAAAAACSAAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAATQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAAASAAAAAADNQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAACTQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADTQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAATgAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADHwAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACHwAAAAADegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAACXQAAAAAATQAAAAADXQAAAAADfgAAAAAAHwAAAAADegAAAAACegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAAAXQAAAAACHwAAAAAAXQAAAAABXwAAAAACXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfAAAAAACegAAAAADegAAAAAAXQAAAAABXQAAAAAAfgAAAAAATQAAAAADHwAAAAAAXQAAAAACfgAAAAAAQAAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA + tiles: LwAAAAAAXQAAAAAALAAAAAAALAAAAAAAfgAAAAAASAAAAAAANQAAAAABSAAAAAADNQAAAAACNQAAAAAAfgAAAAAAXQAAAAAATgAAAAACXQAAAAACXQAAAAAATgAAAAABLwAAAAAAXQAAAAADLAAAAAAALAAAAAAAfgAAAAAANQAAAAADNQAAAAABSAAAAAAANQAAAAACSAAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAATQAAAAADXQAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAAASAAAAAADNQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAACTQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADTQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAATgAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADHwAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACHwAAAAADegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAACXQAAAAAATQAAAAADXQAAAAADfgAAAAAAHwAAAAADegAAAAACegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAAAXQAAAAACHwAAAAAAXQAAAAABXwAAAAACXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfAAAAAACegAAAAADegAAAAAAXQAAAAABXQAAAAAAfgAAAAAATQAAAAADHwAAAAAAXQAAAAACfgAAAAAAQAAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: DwAAAAACDwAAAAABDwAAAAADDwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAGgAAAAABGgAAAAACGgAAAAACRQAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAARQAAAAAAGgAAAAAAGgAAAAADGgAAAAADRQAAAAAAfgAAAAAAGgAAAAADGgAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAfgAAAAAAGgAAAAABGgAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAfgAAAAAAGgAAAAABGgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAUwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAACfgAAAAAASAAAAAADNQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALwAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAANQAAAAACNQAAAAAANQAAAAAANQAAAAACNQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAATQAAAAAAXQAAAAAA + tiles: DwAAAAACDwAAAAABDwAAAAADDwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAGgAAAAABGgAAAAACGgAAAAACRQAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAARQAAAAAAGgAAAAAAGgAAAAADGgAAAAADRQAAAAAAfgAAAAAAGgAAAAADGgAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAfgAAAAAAGgAAAAABGgAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAfgAAAAAAGgAAAAABGgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAUwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAALAAAAAAAfgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALwAAAAAAXQAAAAADLAAAAAAALAAAAAAAfgAAAAAANQAAAAACNQAAAAAANQAAAAAANQAAAAACNQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAATQAAAAAAXQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: XQAAAAADTgAAAAACXQAAAAADXQAAAAABTgAAAAACXQAAAAADfgAAAAAAXQAAAAADHwAAAAABHwAAAAADHwAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAADTQAAAAACXQAAAAAATwAAAAAAfgAAAAAAXQAAAAABTQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAVgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACVgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACVgAAAAAAVgAAAAAAVgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAANAAAAAABNAAAAAAANAAAAAACXQAAAAACfgAAAAAAXQAAAAABJgAAAAAAJgAAAAAAVgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAATQAAAAACJgAAAAAAJgAAAAAAVgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAASwAAAAAASwAAAAAASwAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAKAAAAAACHwAAAAABfgAAAAAAXQAAAAACSwAAAAAASwAAAAAASwAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAACSwAAAAAASwAAAAAASwAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAAAegAAAAADegAAAAABHwAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAKAAAAAADHwAAAAABHwAAAAACKAAAAAACHwAAAAADHwAAAAADHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADXwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAADXQAAAAACTQAAAAABHwAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAHwAAAAADHwAAAAACXwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAAB + tiles: XQAAAAADTgAAAAACXQAAAAADXQAAAAABTgAAAAACXQAAAAADfgAAAAAAXQAAAAADHwAAAAABHwAAAAADHwAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAADTQAAAAACXQAAAAAATwAAAAAAfgAAAAAAXQAAAAABTQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAVgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACVgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACVgAAAAAAVgAAAAAAVgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACfgAAAAAAXQAAAAABJgAAAAAAJgAAAAAAVgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAATQAAAAACJgAAAAAAJgAAAAAAVgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAASwAAAAAASwAAAAAASwAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAKAAAAAACHwAAAAABfgAAAAAAXQAAAAACSwAAAAAASwAAAAAASwAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAACSwAAAAAASwAAAAAASwAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAAAegAAAAADegAAAAABHwAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAKAAAAAADHwAAAAABHwAAAAACKAAAAAACHwAAAAADHwAAAAADHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADXwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAADXQAAAAACTQAAAAABHwAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAHwAAAAADHwAAAAACXwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAAB version: 6 -1,-1: ind: -1,-1 @@ -165,7 +166,7 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: fgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAWgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADTQAAAAACXQAAAAADHwAAAAACXQAAAAAAfgAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAWgAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAXwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADfgAAAAAAHwAAAAAATQAAAAAAHwAAAAAAfgAAAAAAGwAAAAAAWgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAATQAAAAAATQAAAAAAHwAAAAAAWgAAAAAAGwAAAAAAWgAAAAAAGwAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAWgAAAAAAGwAAAAAAGwAAAAAAXQAAAAAATQAAAAADXQAAAAADXQAAAAACXQAAAAABfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAACKAAAAAACHwAAAAADHwAAAAADKAAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABTQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAABKAAAAAAAKAAAAAABKAAAAAABXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAHwAAAAABKAAAAAADKAAAAAACKAAAAAABKAAAAAABHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADKAAAAAABKAAAAAACKAAAAAAAHwAAAAABHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABTQAAAAABXQAAAAADHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAATQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: fgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAWgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADTQAAAAACXQAAAAADHwAAAAACXQAAAAAAfgAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAWgAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAXwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADfgAAAAAAHwAAAAAATQAAAAAAHwAAAAAAfgAAAAAAGwAAAAAAWgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAATQAAAAAATQAAAAAAHwAAAAAAWgAAAAAAGwAAAAAAWgAAAAAAGwAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAWgAAAAAAGwAAAAAAGwAAAAAAXQAAAAAATQAAAAADXQAAAAADXQAAAAACXQAAAAABfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAACKAAAAAACHwAAAAADHwAAAAADKAAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABTQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAABKAAAAAAAKAAAAAABKAAAAAABXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAHwAAAAABKAAAAAADKAAAAAACKAAAAAABKAAAAAABHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADKAAAAAABKAAAAAACKAAAAAAAHwAAAAABHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABTQAAAAABXQAAAAADHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAATQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 0,1: ind: 0,1 @@ -173,23 +174,23 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: EQAAAAAACQAAAAAAGgAAAAADGgAAAAACGgAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAACQAAAAAACQAAAAAACQAAAAAAGgAAAAACGgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAATgAAAAADXQAAAAACfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAGgAAAAAAGgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAANAAAAAAACQAAAAAACQAAAAAACQAAAAAAGgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACNAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABNAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACTgAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAAAXQAAAAADfgAAAAAAIgAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACTgAAAAAAXQAAAAACXQAAAAADEAAAAAABfAAAAAABGwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACEAAAAAAAGwAAAAABfAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAATgAAAAABXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfAAAAAADGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABTgAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAGwAAAAAAGwAAAAAAfAAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACTgAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAGwAAAAADfAAAAAADGwAAAAACXQAAAAAAXQAAAAACXQAAAAADTgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAIQAAAAAAGwAAAAAAfAAAAAAC + tiles: EQAAAAAACQAAAAAAGgAAAAADGgAAAAACGgAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAACQAAAAAACQAAAAAACQAAAAAAGgAAAAACGgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAATgAAAAADXQAAAAACfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAGgAAAAAAGgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAMQAAAAAACQAAAAAACQAAAAAACQAAAAAAGgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABMQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACTgAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAAAXQAAAAADfgAAAAAAIgAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACTgAAAAAAXQAAAAACXQAAAAADEAAAAAABfAAAAAABGwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACEAAAAAAAGwAAAAABfAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAATgAAAAABXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfAAAAAADGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABTgAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAGwAAAAAAGwAAAAAAfAAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACTgAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAGwAAAAADfAAAAAADGwAAAAACXQAAAAAAXQAAAAACXQAAAAADTgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAIQAAAAAAGwAAAAAAfAAAAAAC version: 6 1,0: ind: 1,0 - tiles: XQAAAAACXQAAAAADTQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAAANAAAAAACIQAAAAADfAAAAAADGwAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAIwAAAAADIwAAAAADegAAAAAAegAAAAAAIgAAAAADegAAAAABegAAAAACIQAAAAABGwAAAAAAfAAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAACegAAAAACIgAAAAAAIgAAAAAAegAAAAABegAAAAAAIQAAAAADfAAAAAACGwAAAAAAXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAIwAAAAABIwAAAAACegAAAAADegAAAAAAIgAAAAACegAAAAABegAAAAABIQAAAAABGwAAAAACGwAAAAADXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAAAIQAAAAADfAAAAAAAGwAAAAAAXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAXQAAAAADNAAAAAADfgAAAAAAfAAAAAADGwAAAAADGwAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAcAAAAAACPgAAAAAAXQAAAAAAGwAAAAACfAAAAAABGwAAAAADXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfAAAAAADegAAAAABfgAAAAAAcAAAAAADPgAAAAAAXQAAAAABfAAAAAACGwAAAAACfAAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAACfAAAAAADegAAAAAAfgAAAAAAcAAAAAAAPgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAAcAAAAAACPgAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAPgAAAAAAcAAAAAACcAAAAAADcAAAAAADPgAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAPgAAAAAAcAAAAAACcAAAAAACcAAAAAACPgAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAQAAAAAAAQAAAAAAAJwAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAADQAAAAAAAQAAAAAAAfgAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAA + tiles: XQAAAAACXQAAAAADTQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAAAMQAAAAAAIQAAAAADfAAAAAADGwAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAIwAAAAADIwAAAAADegAAAAAAegAAAAAAIgAAAAADegAAAAABegAAAAACIQAAAAABGwAAAAAAfAAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAACegAAAAACIgAAAAAAIgAAAAAAegAAAAABegAAAAAAIQAAAAADfAAAAAACGwAAAAAAXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAIwAAAAABIwAAAAACegAAAAADegAAAAAAIgAAAAACegAAAAABegAAAAABIQAAAAABGwAAAAACGwAAAAADXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAAAIQAAAAADfAAAAAAAGwAAAAAAXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAXQAAAAADMQAAAAAAfgAAAAAAfAAAAAADGwAAAAADGwAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAcAAAAAACPgAAAAAAXQAAAAAAGwAAAAACfAAAAAABGwAAAAADXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfAAAAAADegAAAAABfgAAAAAAcAAAAAADPgAAAAAAXQAAAAABfAAAAAACGwAAAAACfAAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAACfAAAAAADegAAAAAAfgAAAAAAcAAAAAAAPgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAAcAAAAAACPgAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAPgAAAAAAcAAAAAACcAAAAAADcAAAAAADPgAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAPgAAAAAAcAAAAAACcAAAAAACcAAAAAACPgAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAQAAAAAAAQAAAAAAAJwAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAADQAAAAAAAQAAAAAAAfgAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAA version: 6 1,1: ind: 1,1 - tiles: QAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAAbAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACfgAAAAAAfgAAAAAAbAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAACHwAAAAABEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAAAQAAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAKgAAAAACfgAAAAAAKgAAAAACKgAAAAABKgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAFQAAAAAGfgAAAAAAfgAAAAAAFQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAKgAAAAABegAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFQAAAAABfgAAAAAAKgAAAAADegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: QAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHwAAAAABHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXgAAAAAAXgAAAAAATQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAHwAAAAACHwAAAAABEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMQAAAAAADQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADQAAAAAAFQAAAAAGDQAAAAAADQAAAAAAFQAAAAAGAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAegAAAAAADQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFQAAAAABDQAAAAAAMQAAAAAAegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,0: ind: 2,0 - tiles: JAAAAAACegAAAAADJAAAAAABGwAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATgAAAAAAHwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAJAAAAAACJAAAAAABJAAAAAADGwAAAAADJQAAAAADJQAAAAABfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAVQAAAAAAZAAAAAAAXQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABfgAAAAAAZAAAAAAAXQAAAAAAVQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAACGwAAAAADGwAAAAAAIQAAAAACIQAAAAADIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAGwAAAAABGwAAAAABGwAAAAACNAAAAAACNAAAAAAANAAAAAACfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAVQAAAAAAXQAAAAAAXQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAIQAAAAAAIQAAAAADIQAAAAABfgAAAAAAZAAAAAAAXQAAAAAAVQAAAAAAHwAAAAAATgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAABGwAAAAAAfAAAAAABGwAAAAACfAAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATgAAAAAAHwAAAAAAVQAAAAAAXQAAAAAAXQAAAAAAGwAAAAAAfAAAAAAAGwAAAAADfAAAAAAAGwAAAAACfAAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAPAAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAPAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAcAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANAAAAAADcAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAHwAAAAAAHwAAAAAANAAAAAACcAAAAAACcAAAAAAAcAAAAAADPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAANAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAWgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAegAAAAAA + tiles: JAAAAAACegAAAAADJAAAAAABGwAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATgAAAAAAHwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAJAAAAAACJAAAAAABJAAAAAADGwAAAAADJQAAAAADJQAAAAABfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAVQAAAAAAZAAAAAAAXQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABfgAAAAAAZAAAAAAAXQAAAAAAVQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAACGwAAAAADGwAAAAAAIQAAAAACIQAAAAADIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAGwAAAAABGwAAAAABGwAAAAACMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAVQAAAAAAXQAAAAAAXQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAIQAAAAAAIQAAAAADIQAAAAABfgAAAAAAZAAAAAAAXQAAAAAAVQAAAAAAHwAAAAAATgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAABGwAAAAAAfAAAAAABGwAAAAACfAAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATgAAAAAAHwAAAAAAVQAAAAAAXQAAAAAAXQAAAAAAGwAAAAAAfAAAAAAAGwAAAAADfAAAAAAAGwAAAAACfAAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAPAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAHwAAAAAAHwAAAAAAMQAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAMQAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAWgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAcAAAAAAAcAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAegAAAAAA version: 6 2,1: ind: 2,1 - tiles: fgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAWgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAcAAAAAACcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAFQAAAAAEegAAAAACegAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADPAAAAAAAcQAAAAADPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIAAAAAACIAAAAAADHwAAAAABPAAAAAAAcQAAAAABPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABFQAAAAAFfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACPAAAAAAAcQAAAAACPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABFQAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAFQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAFQAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAKgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfQAAAAAAAAAAAAAA + tiles: fgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAWgAAAAAATQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAACcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADPAAAAAAAcQAAAAADPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIAAAAAACIAAAAAADHwAAAAABPAAAAAAAcQAAAAABPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACPAAAAAAAcQAAAAACPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAFQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAFQAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfQAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 @@ -197,7 +198,7 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAUwAAAAAAUwAAAAAALAAAAAAALAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAACXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAALAAAAAAALAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAACDwAAAAADDwAAAAADDwAAAAADDwAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAADwAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACTgAAAAABXQAAAAABHwAAAAADfgAAAAAADwAAAAACDwAAAAABDwAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAADwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAADwAAAAACfgAAAAAAXQAAAAADXQAAAAABCQAAAAAACQAAAAAACQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAADDwAAAAABXQAAAAABXQAAAAABXQAAAAADCQAAAAAACQAAAAAACQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAADwAAAAACfgAAAAAAXQAAAAABXQAAAAADCQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABTgAAAAACXQAAAAADXQAAAAADGgAAAAADCQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAOwAAAAAACQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAEQAAAAAACQAAAAAAGgAAAAACGgAAAAACGgAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAEQAAAAAACQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALAAAAAAALAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALAAAAAAALAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAACDwAAAAADDwAAAAADDwAAAAADDwAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALAAAAAAALAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAADwAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACTgAAAAABXQAAAAABHwAAAAADfgAAAAAADwAAAAACDwAAAAABDwAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAADwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAADwAAAAACfgAAAAAAXQAAAAADXQAAAAABCQAAAAAACQAAAAAACQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAADDwAAAAABXQAAAAABXQAAAAABXQAAAAADCQAAAAAACQAAAAAACQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAADwAAAAACfgAAAAAAXQAAAAABXQAAAAADCQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABTgAAAAACXQAAAAADXQAAAAADGgAAAAADCQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAOwAAAAAACQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAEQAAAAAACQAAAAAAGgAAAAACGgAAAAACGgAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAEQAAAAAACQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAA version: 6 2,-2: ind: 2,-2 @@ -221,15 +222,15 @@ entities: version: 6 4,0: ind: 4,0 - tiles: cAAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAHwAAAAAAFwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAFwAAAAAAHwAAAAAALwAAAAAAHwAAAAAAFwAAAAAAHwAAAAAAKAAAAAAAKAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAFwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAALwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAANgAAAAAANgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAANgAAAAAANgAAAAAANgAAAAAANwAAAAAANwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAKAAAAAAAKAAAAAAANgAAAAAANgAAAAAANgAAAAAANwAAAAAANwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAANgAAAAAANwAAAAAANwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAHwAAAAAAFwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAFwAAAAAAHwAAAAAALwAAAAAAHwAAAAAAFwAAAAAAHwAAAAAAKAAAAAAAKAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAFwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAALwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAANgAAAAAANgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAANgAAAAAANgAAAAAANgAAAAAANwAAAAAANwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAKAAAAAAAKAAAAAAANgAAAAAANgAAAAAANgAAAAAANwAAAAAANwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAANgAAAAAANwAAAAAANwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: fgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: fgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-2: ind: 4,-2 @@ -241,7 +242,7 @@ entities: version: 6 5,-3: ind: 5,-3 - tiles: fgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAegAAAAAAFQAAAAAFegAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAegAAAAADFQAAAAAGfgAAAAAAbAAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAXQAAAAACTQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABTQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADTQAAAAADXQAAAAAAfgAAAAAAXQAAAAABLwAAAAABHwAAAAAAHwAAAAACHwAAAAADLwAAAAADLwAAAAABLwAAAAAAHwAAAAADHwAAAAACLwAAAAABHwAAAAADHwAAAAACLwAAAAACLwAAAAADfgAAAAAAXQAAAAABHwAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADTQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACTQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAHwAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADLwAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATQAAAAACHwAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABHwAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAHwAAAAACLwAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAXQAAAAACTQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABTQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADTQAAAAADXQAAAAAAfgAAAAAAXQAAAAABLwAAAAABHwAAAAAAHwAAAAACHwAAAAADLwAAAAADLwAAAAABLwAAAAAAHwAAAAADHwAAAAACLwAAAAABHwAAAAADHwAAAAACLwAAAAACLwAAAAADfgAAAAAAXQAAAAABHwAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADTQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACTQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAHwAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADLwAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATQAAAAACHwAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABHwAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAHwAAAAACLwAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 @@ -249,15 +250,15 @@ entities: version: 6 3,-3: ind: 3,-3 - tiles: YgAAAAABYgAAAAACYgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAKgAAAAACKgAAAAACKgAAAAABKgAAAAACKgAAAAACKgAAAAAAKgAAAAACKgAAAAABKgAAAAADKgAAAAAAKgAAAAABKgAAAAACfgAAAAAAXQAAAAABYgAAAAADYgAAAAABKgAAAAACGQAAAAACKgAAAAABKgAAAAACKgAAAAAAKgAAAAADGQAAAAAAGQAAAAAHGQAAAAACKgAAAAADKgAAAAADKgAAAAACfgAAAAAAXQAAAAAAYgAAAAAAYgAAAAADGQAAAAAFGQAAAAADGQAAAAAAGQAAAAADGQAAAAADGQAAAAABGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAAEKgAAAAABGQAAAAADfgAAAAAAXQAAAAACYgAAAAABYgAAAAAAGQAAAAABKgAAAAACKgAAAAABKgAAAAABGQAAAAAHGQAAAAABKgAAAAACKgAAAAACKgAAAAABGQAAAAACGQAAAAAFGQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAGQAAAAAGKgAAAAABKgAAAAACKgAAAAABGQAAAAADKgAAAAADKgAAAAACKgAAAAADKgAAAAAAGQAAAAAEGQAAAAACGQAAAAAHfgAAAAAAXQAAAAADYgAAAAADYgAAAAABGQAAAAAAKgAAAAACKgAAAAADKgAAAAACGQAAAAAAGQAAAAAAGQAAAAADGQAAAAACGQAAAAACGQAAAAAFGQAAAAAGGQAAAAAAfgAAAAAAXQAAAAADYgAAAAADYgAAAAACKgAAAAAAKgAAAAABKgAAAAAAKgAAAAACKgAAAAADGQAAAAADGQAAAAAGKgAAAAADKgAAAAAAKgAAAAACKgAAAAACKgAAAAACfgAAAAAAXQAAAAABYgAAAAACYgAAAAAAKgAAAAABKgAAAAADKgAAAAADKgAAAAAAKgAAAAABGQAAAAAFGQAAAAAHKgAAAAACKgAAAAAAKgAAAAABKgAAAAAAKgAAAAACfgAAAAAAXQAAAAACYgAAAAADYgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABTQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABTQAAAAADTQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADTgAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACTgAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAATgAAAAACXQAAAAAC + tiles: YgAAAAABYgAAAAACYgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABYgAAAAADYgAAAAABMQAAAAAAMQAAAAAAMQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAYgAAAAAAYgAAAAADYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAMQAAAAAAYQAAAAAAfgAAAAAAXQAAAAACYgAAAAABYgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAADQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAYQAAAAAADQAAAAAADQAAAAAADQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADQAAAAAADQAAAAAAYQAAAAAAfgAAAAAAXQAAAAADYgAAAAADYgAAAAABMQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAADQAAAAAADQAAAAAADQAAAAAAYQAAAAAAfgAAAAAAXQAAAAADYgAAAAADYgAAAAACMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADQAAAAAAYQAAAAAAYQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABYgAAAAACYgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAYQAAAAAAYQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACYgAAAAADYgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABTQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABTQAAAAADTQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADTgAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACTgAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAATgAAAAACXQAAAAAC version: 6 2,-3: ind: 2,-3 - tiles: XQAAAAACXQAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACTQAAAAACXQAAAAABLwAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAABXQAAAAAALwAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAACbAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAABLwAAAAABXQAAAAACfgAAAAAAfgAAAAAATgAAAAABTQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAADTQAAAAADfgAAAAAAKgAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAACTQAAAAABfgAAAAAAKgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAACLwAAAAACXQAAAAADfgAAAAAAGQAAAAAHXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAALwAAAAABXQAAAAABXQAAAAADGQAAAAAGXQAAAAABXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADLwAAAAAAXQAAAAABXQAAAAABGQAAAAABXQAAAAADXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAACHwAAAAADXQAAAAAAfgAAAAAAKgAAAAACTgAAAAABXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADHwAAAAABXQAAAAACfgAAAAAAKgAAAAADXQAAAAACTQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAABfgAAAAAAXQAAAAABLwAAAAACXQAAAAABfgAAAAAAKgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACTQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAAATQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACTQAAAAADXQAAAAADXQAAAAADTgAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAATgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAATgAAAAABXQAAAAADXQAAAAABXQAAAAAD + tiles: XQAAAAACXQAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACTQAAAAACXQAAAAABLwAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAABXQAAAAAALwAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAACbAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAABLwAAAAABXQAAAAACfgAAAAAAfgAAAAAATgAAAAABTQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAADTQAAAAADfgAAAAAAMQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAACTQAAAAABfgAAAAAAMQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAACLwAAAAACXQAAAAADfgAAAAAAMQAAAAAAXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAALwAAAAABXQAAAAABXQAAAAADYQAAAAAAXQAAAAABXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADLwAAAAAAXQAAAAABXQAAAAABYQAAAAAAXQAAAAADXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAACHwAAAAADXQAAAAAAfgAAAAAAMQAAAAAATgAAAAABXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADHwAAAAABXQAAAAACfgAAAAAAMQAAAAAAXQAAAAACTQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAABfgAAAAAAXQAAAAABLwAAAAACXQAAAAABfgAAAAAAMQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACTQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAAATQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACTQAAAAADXQAAAAADXQAAAAADTgAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAATgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAATgAAAAABXQAAAAADXQAAAAABXQAAAAAD version: 6 1,-3: ind: 1,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAACSAAAAAADSAAAAAACSAAAAAACSAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABSAAAAAACfgAAAAAAfgAAAAAASAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABSAAAAAACfgAAAAAASAAAAAABSAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAAANQAAAAACNQAAAAABNQAAAAABfgAAAAAAXQAAAAAASAAAAAACSAAAAAACSAAAAAADSAAAAAADSAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAABNgAAAAAANgAAAAACNgAAAAADNQAAAAADfgAAAAAAXQAAAAAASwAAAAAASwAAAAADSwAAAAACSAAAAAAASAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAANQAAAAABNgAAAAABNgAAAAABNgAAAAABNQAAAAABfgAAAAAAXQAAAAAASwAAAAACfgAAAAAASwAAAAABSAAAAAADSAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAABNgAAAAACNQAAAAAANQAAAAAAfgAAAAAAXQAAAAABSwAAAAAASwAAAAABSwAAAAACSAAAAAABSAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAACNgAAAAADNQAAAAABNQAAAAABfgAAAAAAXQAAAAACfQAAAAAASwAAAAAASwAAAAAASAAAAAAASAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADSwAAAAACSwAAAAACSwAAAAACSAAAAAACSAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAABNgAAAAADNQAAAAAANQAAAAABfgAAAAAAXQAAAAADSwAAAAACSwAAAAABSwAAAAAASAAAAAACSAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAADNQAAAAADNgAAAAACNQAAAAACNQAAAAACNQAAAAABXQAAAAAASAAAAAAASAAAAAABSAAAAAACSAAAAAADSAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANgAAAAADNgAAAAABNgAAAAAANgAAAAAANgAAAAACNQAAAAADXQAAAAACSwAAAAACSwAAAAADSwAAAAAASwAAAAABSAAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAANQAAAAABNQAAAAABNQAAAAAANQAAAAABNQAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAGfgAAAAAAfgAAAAAAfgAAAAAANQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAATQAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADTgAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAB + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAACSAAAAAADSAAAAAACSAAAAAACSAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABSAAAAAACfgAAAAAAfgAAAAAASAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABSAAAAAACfgAAAAAASAAAAAABSAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAAANQAAAAACNQAAAAABNQAAAAABfgAAAAAAXQAAAAAASAAAAAACSAAAAAACSAAAAAADSAAAAAADSAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAABNgAAAAAANgAAAAACNgAAAAADNQAAAAADfgAAAAAAXQAAAAAASwAAAAAASwAAAAADSwAAAAACSAAAAAAASAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAANQAAAAABNgAAAAABNgAAAAABNgAAAAABNQAAAAABfgAAAAAAXQAAAAAASwAAAAACfgAAAAAASwAAAAABSAAAAAADSAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAABNgAAAAACNQAAAAAANQAAAAAAfgAAAAAAXQAAAAABSwAAAAAASwAAAAABSwAAAAACSAAAAAABSAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAACNgAAAAADNQAAAAABNQAAAAABfgAAAAAAXQAAAAACfQAAAAAASwAAAAAASwAAAAAASAAAAAAASAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADSwAAAAACSwAAAAACSwAAAAACSAAAAAACSAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAABNgAAAAADNQAAAAAANQAAAAABfgAAAAAAXQAAAAADSwAAAAACSwAAAAABSwAAAAAASAAAAAACSAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAADNQAAAAADNgAAAAACNQAAAAACNQAAAAACNQAAAAABXQAAAAAASAAAAAAASAAAAAABSAAAAAACSAAAAAADSAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANgAAAAADNgAAAAABNgAAAAAANgAAAAAANgAAAAACNQAAAAADXQAAAAACSwAAAAACSwAAAAADSwAAAAAASwAAAAABSAAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAANQAAAAABNQAAAAABNQAAAAAANQAAAAABNQAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAGfgAAAAAAfgAAAAAAfgAAAAAANQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAATQAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADTgAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAB version: 6 6,-2: ind: 6,-2 @@ -293,7 +294,7 @@ entities: version: 6 1,-5: ind: 1,-5 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAegAAAAAAegAAAAACQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAfgAAAAAAXQAAAAAATgAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADTQAAAAADTQAAAAAAXQAAAAADXQAAAAACTgAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADTgAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANAAAAAACNAAAAAADTQAAAAADXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAANAAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAA + tiles: fgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAegAAAAAAegAAAAACQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAfgAAAAAAXQAAAAAATgAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADTQAAAAADTQAAAAAAXQAAAAADXQAAAAACTgAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADTgAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAATQAAAAADXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAA version: 6 1,-4: ind: 1,-4 @@ -305,7 +306,7 @@ entities: version: 6 5,-4: ind: 5,-4 - tiles: fgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAegAAAAADFQAAAAAFfgAAAAAAFQAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAegAAAAADegAAAAAAegAAAAABFQAAAAAEegAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAADHwAAAAACfgAAAAAAegAAAAADFQAAAAAFfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABFQAAAAAGFQAAAAAGegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAFQAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABbAAAAAAAbAAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA + tiles: fgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA version: 6 3,-6: ind: 3,-6 @@ -325,7 +326,7 @@ entities: version: 6 0,-5: ind: 0,-5 - tiles: HwAAAAADXQAAAAADfgAAAAAAHQAAAAACHAAAAAADHAAAAAAAHAAAAAACHQAAAAABHAAAAAADHAAAAAAAHQAAAAACHQAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAALwAAAAADXQAAAAADfgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABfgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAABfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAAATgAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAATgAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAagAAAAABagAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACTQAAAAAAXQAAAAABHwAAAAACHwAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAYgAAAAADXQAAAAADfgAAAAAAXQAAAAAATgAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABHwAAAAABHwAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAABfgAAAAAAYgAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABTQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAUwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAUwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAABZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAADXQAAAAADfgAAAAAAHQAAAAACHAAAAAADHAAAAAAAHAAAAAACHQAAAAABHAAAAAADHAAAAAAAHQAAAAACHQAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAALwAAAAADXQAAAAADfgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABfgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAABfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAAATgAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAATgAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACTQAAAAAAXQAAAAABHwAAAAACHwAAAAABfgAAAAAALAAAAAAALAAAAAAALAAAAAAAfgAAAAAAYgAAAAADXQAAAAADfgAAAAAAXQAAAAAATgAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABHwAAAAABHwAAAAAAfgAAAAAALAAAAAAALAAAAAAALAAAAAAAfgAAAAAAYgAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABTQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAUwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAUwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAABZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-6: ind: 4,-6 @@ -333,7 +334,7 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: bAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHAAAAAADHQAAAAACHQAAAAAAHAAAAAAAfgAAAAAANQAAAAAANQAAAAABSAAAAAABNQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAABfgAAAAAANQAAAAAANQAAAAAANQAAAAACfgAAAAAAXQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHAAAAAACHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADTQAAAAAAXQAAAAACXQAAAAABXQAAAAACLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADTgAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABTgAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADTQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABTgAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAHwAAAAACTQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAUwAAAAAAfgAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAUwAAAAAAfgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAADNgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAANgAAAAACNgAAAAADNgAAAAADNgAAAAABNgAAAAADNgAAAAADNgAAAAAANgAAAAADNgAAAAADZAAAAAAAZAAAAAAA + tiles: bAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHAAAAAADHQAAAAACHQAAAAAAHAAAAAAAfgAAAAAANQAAAAAANQAAAAABSAAAAAABNQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAABfgAAAAAANQAAAAAANQAAAAAANQAAAAACfgAAAAAAXQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHAAAAAACHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADTQAAAAAAXQAAAAACXQAAAAABXQAAAAACLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADTgAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABTgAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADTQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABTgAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAHwAAAAACTQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAUwAAAAAAfgAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAUwAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAADNgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAANgAAAAACNgAAAAADNgAAAAADNgAAAAABNgAAAAADNgAAAAADNgAAAAAANgAAAAADNgAAAAADZAAAAAAAZAAAAAAA version: 6 -1,-6: ind: -1,-6 @@ -349,15 +350,15 @@ entities: version: 6 -2,-7: ind: -2,-7 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHAAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAfgAAAAAAHAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHgAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADegAAAAADfgAAAAAAFQAAAAAEegAAAAADegAAAAABegAAAAABFQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAACfgAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAABegAAAAADegAAAAACegAAAAABegAAAAADHAAAAAADHAAAAAADfgAAAAAAHwAAAAACHwAAAAABFQAAAAACegAAAAADegAAAAADegAAAAADegAAAAABegAAAAABegAAAAACegAAAAAAgQAAAAAAgQAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAADegAAAAADegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAABYAAAAAAAXQAAAAADXQAAAAAAegAAAAACegAAAAABFQAAAAACegAAAAADegAAAAAAgQAAAAAAgQAAAAAAFQAAAAAGegAAAAABegAAAAACFQAAAAAEegAAAAABegAAAAAAcAAAAAADYAAAAAAAXQAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAACegAAAAABegAAAAACegAAAAADegAAAAACgQAAAAAAegAAAAADfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHAAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAfgAAAAAAHAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHgAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADegAAAAADfgAAAAAAFQAAAAAEegAAAAADegAAAAABegAAAAABFQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAACfgAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAABegAAAAADegAAAAACegAAAAABegAAAAADHAAAAAADHAAAAAADfgAAAAAAHwAAAAACHwAAAAABFQAAAAACegAAAAADegAAAAADegAAAAADegAAAAABegAAAAABegAAAAACegAAAAAAgQAAAAAAgQAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAADegAAAAADegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAABYAAAAAAAXQAAAAADXQAAAAAAegAAAAACegAAAAABFQAAAAACegAAAAADegAAAAAAgQAAAAAAgQAAAAAAFQAAAAAGegAAAAABegAAAAACFQAAAAAEegAAAAABegAAAAAAcAAAAAADYAAAAAAAXQAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAACegAAAAABegAAAAACegAAAAADegAAAAACgQAAAAAAegAAAAADfgAAAAAA version: 6 -2,-6: ind: -2,-6 - tiles: cAAAAAAAYAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAACegAAAAACcAAAAAABYAAAAAADXQAAAAACfgAAAAAALAAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAFQAAAAAEegAAAAABegAAAAACegAAAAABFQAAAAACYAAAAAABXQAAAAABXQAAAAABfgAAAAAALAAAAAAAcAAAAAABcAAAAAAAcQAAAAAAcQAAAAABcAAAAAACfgAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAALAAAAAAAcAAAAAACcAAAAAACcQAAAAAAcQAAAAADcAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAegAAAAACfgAAAAAAegAAAAABegAAAAACfgAAAAAAXQAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAegAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOQAAAAADEgAAAAABEgAAAAABEgAAAAACEgAAAAADEgAAAAABEgAAAAACOQAAAAABOQAAAAABfgAAAAAAXQAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAAAfgAAAAAAOQAAAAAAEgAAAAADEgAAAAACEgAAAAAAEgAAAAAAEgAAAAADEgAAAAABOQAAAAADOQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAOQAAAAAAEgAAAAACEgAAAAABEgAAAAAAEgAAAAACEgAAAAABEgAAAAADOQAAAAADOQAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOQAAAAAAEgAAAAABEgAAAAABEgAAAAAAEgAAAAADEgAAAAACEgAAAAACOQAAAAADOQAAAAABfgAAAAAAXQAAAAACegAAAAABegAAAAADegAAAAADegAAAAADfgAAAAAAOQAAAAADEgAAAAADEgAAAAAAEgAAAAACEgAAAAABEgAAAAAAEgAAAAAAOQAAAAADOQAAAAABfgAAAAAAXQAAAAABfgAAAAAAegAAAAAAegAAAAACegAAAAADfgAAAAAAOQAAAAACEgAAAAABEgAAAAABEgAAAAAAEgAAAAACEgAAAAADEgAAAAADOQAAAAACOQAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: cAAAAAAAYAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAACegAAAAACcAAAAAABYAAAAAADXQAAAAACfgAAAAAALAAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAFQAAAAAEegAAAAABegAAAAACegAAAAABFQAAAAACYAAAAAABXQAAAAABXQAAAAABfgAAAAAALAAAAAAAcAAAAAABcAAAAAAAcQAAAAAAcQAAAAABcAAAAAACfgAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAALAAAAAAAcAAAAAACcAAAAAACcQAAAAAAcQAAAAADcAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAegAAAAACfgAAAAAAegAAAAABegAAAAACfgAAAAAAXQAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAegAAAAAAegAAAAADegAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAAAfgAAAAAAMQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAMQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACegAAAAABegAAAAADegAAAAADegAAAAADfgAAAAAAMQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAegAAAAAAegAAAAACegAAAAADfgAAAAAAMQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAACTgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADLwAAAAABLwAAAAABXQAAAAABfgAAAAAAXQAAAAADTgAAAAACXQAAAAABXQAAAAAAXQAAAAADLAAAAAAALAAAAAAALAAAAAAAXQAAAAACLgAAAAAAfgAAAAAAXQAAAAAALwAAAAAALwAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAALwAAAAABLwAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAACTQAAAAAAXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAATQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADTgAAAAACbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACTgAAAAAAXQAAAAACXQAAAAAATQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACTgAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAATQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABTQAAAAACXQAAAAACXQAAAAABXQAAAAACTQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADNAAAAAACNAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACNAAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACTgAAAAABXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAACTgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADLwAAAAABLwAAAAABXQAAAAABfgAAAAAAXQAAAAADTgAAAAACXQAAAAABXQAAAAAAXQAAAAADLAAAAAAALAAAAAAALAAAAAAAXQAAAAACLgAAAAAAfgAAAAAAXQAAAAAALwAAAAAALwAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAALwAAAAABLwAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAACTQAAAAAAXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAATQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADTgAAAAACbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACTgAAAAAAXQAAAAACXQAAAAAATQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACTgAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAATQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABTQAAAAACXQAAAAACXQAAAAABXQAAAAACTQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACMQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACTgAAAAABXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -3,-6: ind: -3,-6 @@ -393,7 +394,7 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: IAAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABfgAAAAAATQAAAAADHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABTQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADHwAAAAABHwAAAAACLwAAAAACLwAAAAADLwAAAAABHwAAAAADHwAAAAADLwAAAAAAHwAAAAABHwAAAAADLwAAAAADLwAAAAACLwAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAACcAAAAAABcAAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAXQAAAAACcAAAAAACcAAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAABXQAAAAABcAAAAAABcAAAAAADfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAAATQAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAAAcAAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADcAAAAAACcAAAAAABcAAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAADcAAAAAACfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAADfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAcAAAAAACcAAAAAADcAAAAAADfgAAAAAAcAAAAAADcQAAAAADcQAAAAACcQAAAAACcAAAAAACfgAAAAAAXQAAAAAC + tiles: IAAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABfgAAAAAATQAAAAADHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADHwAAAAABHwAAAAACLwAAAAACLwAAAAADLwAAAAABHwAAAAADHwAAAAADLwAAAAAAHwAAAAABHwAAAAADLwAAAAADLwAAAAACLwAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAACcAAAAAABcAAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAXQAAAAACcAAAAAACcAAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAABXQAAAAABcAAAAAABcAAAAAADfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAAATQAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAAAcAAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADcAAAAAACcAAAAAABcAAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAADcAAAAAACfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAADfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAcAAAAAACcAAAAAADcAAAAAADfgAAAAAAcAAAAAADcQAAAAADcQAAAAACcQAAAAACcAAAAAACfgAAAAAAXQAAAAAC version: 6 -4,-3: ind: -4,-3 @@ -409,19 +410,19 @@ entities: version: 6 -5,-6: ind: -5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: YgAAAAAAYgAAAAADXQAAAAABXQAAAAADXQAAAAABHwAAAAABHwAAAAACHwAAAAADXQAAAAABXQAAAAACfgAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAACYgAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAXQAAAAADYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACXQAAAAABXQAAAAACXQAAAAACLwAAAAABHwAAAAACHwAAAAABLwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAXQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAADYgAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAHwAAAAABNAAAAAAAHwAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACYgAAAAAAYgAAAAAAXQAAAAADXQAAAAACLwAAAAAAHwAAAAADNAAAAAACHwAAAAADLwAAAAACXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAADLwAAAAAAHwAAAAADNAAAAAAAHwAAAAABLwAAAAABXQAAAAAAfgAAAAAAHwAAAAABXwAAAAABHwAAAAABHwAAAAAAXwAAAAABYgAAAAABYgAAAAADXQAAAAACXQAAAAACLwAAAAAAHwAAAAABNAAAAAADHwAAAAABLwAAAAAAXQAAAAADfgAAAAAAHwAAAAABXwAAAAAAHwAAAAADHwAAAAACXwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAAANAAAAAAAHwAAAAACXQAAAAABXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAABfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAggAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAggAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABggAAAAAAXQAAAAAA + tiles: YgAAAAAAYgAAAAADXQAAAAABXQAAAAADXQAAAAABHwAAAAABHwAAAAACHwAAAAADXQAAAAABXQAAAAACfgAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAACYgAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAADYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACXQAAAAABXQAAAAACXQAAAAACLwAAAAABHwAAAAACHwAAAAABLwAAAAACMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAADYgAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAHwAAAAABMQAAAAAAHwAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACYgAAAAAAYgAAAAAAXQAAAAADXQAAAAACLwAAAAAAHwAAAAADMQAAAAAAHwAAAAADLwAAAAACXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAADLwAAAAAAHwAAAAADMQAAAAAAHwAAAAABLwAAAAABXQAAAAAAfgAAAAAAHwAAAAABXwAAAAABHwAAAAABHwAAAAAAXwAAAAABYgAAAAABYgAAAAADXQAAAAACXQAAAAACLwAAAAAAHwAAAAABMQAAAAAAHwAAAAABLwAAAAAAXQAAAAADfgAAAAAAHwAAAAABXwAAAAAAHwAAAAADHwAAAAACXwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAAAMQAAAAAAHwAAAAACXQAAAAABXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAABfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAggAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAggAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABggAAAAAAXQAAAAAA version: 6 -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA version: 6 -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA version: 6 -3,-2: ind: -3,-2 @@ -433,7 +434,7 @@ entities: version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -445,11 +446,11 @@ entities: version: 6 -4,0: ind: -4,0 - tiles: bAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAABHAAAAAADcAAAAAADdAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACHAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAegAAAAADAgAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAegAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAFQAAAAAEAgAAAAAAegAAAAABAgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAXQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAANAAAAAAD + tiles: bAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAABHAAAAAADcAAAAAADdAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACHAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAegAAAAADAgAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAegAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAFQAAAAAEAgAAAAAAegAAAAABAgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAXQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAMQAAAAAA version: 6 -3,0: ind: -3,0 - tiles: dAAAAAACdAAAAAADdAAAAAADfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAADcAAAAAABfgAAAAAAcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAegAAAAADegAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAAAHAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAegAAAAABegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAABbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACXQAAAAAAXQAAAAADNAAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAXQAAAAABNAAAAAAANAAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAXQAAAAAANAAAAAABfgAAAAAANAAAAAAANAAAAAACNAAAAAAANAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAANAAAAAADNAAAAAAANAAAAAACNAAAAAABNAAAAAABfgAAAAAAFQAAAAAAegAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: dAAAAAACdAAAAAADdAAAAAADfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAegAAAAADegAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAAAHAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAegAAAAABegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAABbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACXQAAAAAAXQAAAAADMQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAXQAAAAABMQAAAAAAMQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAXQAAAAAAMQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAFQAAAAAAegAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -5,-1: ind: -5,-1 @@ -473,15 +474,15 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: NAAAAAABNAAAAAADNAAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAegAAAAAAfgAAAAAAFQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANAAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAFQAAAAAFegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAAAHwAAAAAAYgAAAAABfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: MQAAAAAAMQAAAAAAMQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAegAAAAAAfgAAAAAAFQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAFQAAAAAFegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAAAHwAAAAAAYgAAAAABfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHAAAAAAAHQAAAAAAHQAAAAACHAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHAAAAAAAHQAAAAAAHQAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHAAAAAAAHQAAAAAAHQAAAAACHAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHAAAAAAAHQAAAAAAHQAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: XQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAQgAAAAAAUAAAAAAARQAAAAAALAAAAAAALAAAAAAARQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADTQAAAAABXQAAAAABXQAAAAAALwAAAAAALwAAAAAALwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAgQAAAAAAHwAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAALAAAAAAALAAAAAAAfQAAAAAAUwAAAAAAUwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAADEQAAAAAAHwAAAAABXQAAAAABXQAAAAABfgAAAAAAfQAAAAAALAAAAAAALAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAHwAAAAAAEgAAAAADHwAAAAADTgAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEgAAAAABHwAAAAACEgAAAAACHwAAAAACXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEgAAAAABHwAAAAADEgAAAAADHwAAAAACXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEgAAAAACHwAAAAADEQAAAAAAHwAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAHwAAAAABEQAAAAAAHwAAAAAAXQAAAAAATQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAHwAAAAADEgAAAAABHwAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEgAAAAAAHwAAAAABEgAAAAABHwAAAAACTgAAAAAAXQAAAAABXQAAAAABTgAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEgAAAAACHwAAAAAAEgAAAAACHwAAAAAA + tiles: XQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAQgAAAAAAUAAAAAAARQAAAAAALAAAAAAALAAAAAAARQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADTQAAAAABXQAAAAABXQAAAAAALwAAAAAALwAAAAAALwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAgQAAAAAAHwAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAALAAAAAAALAAAAAAALAAAAAAAUwAAAAAAUwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAADEQAAAAAAHwAAAAABXQAAAAABXQAAAAABfgAAAAAAfQAAAAAALAAAAAAALAAAAAAALAAAAAAAfQAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAHwAAAAAAEgAAAAADHwAAAAADTgAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEgAAAAABHwAAAAACEgAAAAACHwAAAAACXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEgAAAAABHwAAAAADEgAAAAADHwAAAAACXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEgAAAAACHwAAAAADEQAAAAAAHwAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAHwAAAAABEQAAAAAAHwAAAAAAXQAAAAAATQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAHwAAAAADEgAAAAABHwAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEgAAAAAAHwAAAAABEgAAAAABHwAAAAACTgAAAAAAXQAAAAABXQAAAAABTgAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEgAAAAACHwAAAAAAEgAAAAACHwAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -509,7 +510,7 @@ entities: version: 6 3,-7: ind: 3,-7 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-7: ind: 2,-7 @@ -525,27 +526,27 @@ entities: version: 6 2,-8: ind: 2,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 3,-8: ind: 3,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABNAAAAAADNAAAAAABNAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABNAAAAAABNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAABHwAAAAACYgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAYgAAAAABHwAAAAACYgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAFQAAAAACegAAAAAAegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAADFQAAAAAAfgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADFQAAAAAEfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAFQAAAAACegAAAAAAegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAADFQAAAAAAfgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADFQAAAAAEfgAAAAAA version: 6 3,1: ind: 3,1 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAfgAAAAAAegAAAAAAFQAAAAAAegAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAfgAAAAAAegAAAAAAFQAAAAAAegAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 @@ -553,7 +554,7 @@ entities: version: 6 -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 1,-8: ind: 1,-8 @@ -565,19 +566,19 @@ entities: version: 6 -5,1: ind: -5,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,1: ind: -6,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAA version: 6 -5,-7: ind: -5,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -4,-8: ind: -4,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFQAAAAAGfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAegAAAAAAfgAAAAAAegAAAAABegAAAAADAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAegAAAAACFQAAAAADfgAAAAAAegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAFgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFQAAAAAGfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAegAAAAAAfgAAAAAAegAAAAABegAAAAADAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAegAAAAACFQAAAAADfgAAAAAAegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAFgAAAAAA version: 6 -3,-8: ind: -3,-8 @@ -593,11 +594,11 @@ entities: version: 6 -2,-8: ind: -2,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAADFQAAAAABegAAAAADegAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFQAAAAACegAAAAABegAAAAACFQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAAAfgAAAAAAegAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAABFQAAAAACegAAAAACegAAAAACegAAAAACegAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAADFQAAAAABegAAAAADegAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFQAAAAACegAAAAABegAAAAACFQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAAAfgAAAAAAegAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAABFQAAAAACegAAAAACegAAAAACegAAAAACegAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-9: ind: -3,-9 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 6,-4: ind: 6,-4 @@ -609,11 +610,11 @@ entities: version: 6 6,-5: ind: 6,-5 - tiles: XQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAXQAAAAABHwAAAAADXQAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAACXQAAAAAAHwAAAAADXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAHwAAAAACXQAAAAABHwAAAAADXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABXQAAAAAAHwAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAABXQAAAAAAHwAAAAACXQAAAAABXQAAAAAAXQAAAAAAHwAAAAABOAAAAAAAHwAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADHwAAAAADXQAAAAADfgAAAAAAXQAAAAADHwAAAAABOAAAAAAAHwAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAAAfgAAAAAAXQAAAAABHwAAAAACOAAAAAAAHwAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABHwAAAAABXQAAAAADfgAAAAAAXQAAAAABHwAAAAADOAAAAAAAHwAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAABHwAAAAAAXQAAAAADXQAAAAACXQAAAAADHwAAAAAAOAAAAAAAHwAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACHwAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAXQAAAAABHwAAAAADXQAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHwAAAAACXQAAAAAAHwAAAAADXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAHwAAAAACXQAAAAABHwAAAAADXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABXQAAAAAAHwAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAHwAAAAACXQAAAAABXQAAAAAAXQAAAAAAHwAAAAABOAAAAAAAHwAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADHwAAAAADXQAAAAADfgAAAAAAXQAAAAADHwAAAAABOAAAAAAAHwAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAAAfgAAAAAAXQAAAAABHwAAAAACOAAAAAAAHwAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABHwAAAAABXQAAAAADfgAAAAAAXQAAAAABHwAAAAADOAAAAAAAHwAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAABHwAAAAAAXQAAAAADXQAAAAACXQAAAAADHwAAAAAAOAAAAAAAHwAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 6,-6: ind: 6,-6 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAXQAAAAADXQAAAAADXQAAAAAAOAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAOAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAOAAAAAAAXQAAAAADOAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAACXQAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAXQAAAAADXQAAAAADXQAAAAAAOAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAOAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAOAAAAAAAXQAAAAADOAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAACXQAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 5,-6: ind: 5,-6 @@ -621,19 +622,19 @@ entities: version: 6 6,-7: ind: 6,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-7: ind: 5,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA version: 6 2,2: ind: 2,2 - tiles: fgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAegAAAAADbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAegAAAAADbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAFQAAAAAAegAAAAADegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAAAFQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAFQAAAAAAegAAAAADegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAAAFQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 @@ -645,15 +646,15 @@ entities: version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-7: ind: 4,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA version: 6 -7,-1: ind: -7,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-8: ind: 0,-8 @@ -760,9 +761,6 @@ entities: 1888: 58,-67 1889: 59,-67 1890: 59,-66 - 1917: 61,-63 - 1918: 62,-63 - 1919: 63,-63 2240: 104,-21 2241: 105,-21 2242: 106,-21 @@ -848,9 +846,6 @@ entities: 7294: 45,-63 7295: 46,-67 7296: 43,-63 - 7421: 36,9 - 7422: 37,9 - 7423: 38,9 7623: -63,-47 7803: -48,-39 7804: -47,-39 @@ -908,6 +903,9 @@ entities: 12376: 73,-1 12377: 74,-1 12378: 75,-1 + 13526: 35,18 + 13527: 36,18 + 13528: 37,18 - node: cleanable: True color: '#FFFFFFFF' @@ -992,6 +990,12 @@ entities: 11006: 73,-8 11036: 85,-7 11037: 84,-7 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Box + decals: + 13588: -68,-17 - node: cleanable: True color: '#96DAFFFF' @@ -1472,11 +1476,6 @@ entities: id: BrickTileSteelBox decals: 2857: -36,-59 - - node: - color: '#9FED58B2' - id: BrickTileSteelCornerNe - decals: - 7420: 34,15 - node: color: '#FF5C5C99' id: BrickTileSteelCornerNe @@ -1517,11 +1516,6 @@ entities: id: BrickTileSteelCornerNw decals: 11101: 50,7 - - node: - color: '#9FED58B2' - id: BrickTileSteelCornerSe - decals: - 7411: 38,9 - node: color: '#FF5C5C99' id: BrickTileSteelCornerSe @@ -1644,13 +1638,6 @@ entities: decals: 10674: 55,-20 10677: 56,-19 - - node: - color: '#9FED58B2' - id: BrickTileSteelLineE - decals: - 7412: 38,10 - 7413: 38,14 - 7416: 34,14 - node: color: '#FF5C5C99' id: BrickTileSteelLineE @@ -1663,6 +1650,12 @@ entities: 10686: 57,-24 10687: 57,-25 10691: 52,-19 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 13388: -7,5 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -1719,6 +1712,13 @@ entities: 10668: 55,-18 10669: 56,-18 10670: 57,-18 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 13377: -6,4 + 13378: -5,4 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1769,6 +1769,8 @@ entities: 12474: 124,-40 12475: 127,-40 12476: 128,-40 + 13531: 30,18 + 13533: 32,18 - node: zIndex: 1 color: '#FFFFFFFF' @@ -1777,14 +1779,6 @@ entities: 11102: 51,7 11103: 52,7 11104: 53,7 - - node: - color: '#9FED58B2' - id: BrickTileSteelLineS - decals: - 7401: 34,9 - 7402: 35,9 - 7403: 36,9 - 7404: 37,9 - node: color: '#FF5C5C99' id: BrickTileSteelLineS @@ -1795,6 +1789,14 @@ entities: 10656: 48,-26 10671: 56,-21 10690: 56,-26 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 13385: -6,6 + 13386: -5,6 + 13387: -4,6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1854,16 +1856,6 @@ entities: 11093: 53,2 11094: 52,2 11095: 51,2 - - node: - color: '#9FED58B2' - id: BrickTileSteelLineW - decals: - 7405: 33,10 - 7406: 33,11 - 7407: 33,12 - 7408: 33,13 - 7409: 33,14 - 7410: 33,15 - node: color: '#FF5C5C99' id: BrickTileSteelLineW @@ -1888,6 +1880,7 @@ entities: 8097: -56,-32 8098: -56,-35 8099: -56,-34 + 13389: -3,5 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -2066,6 +2059,11 @@ entities: id: BrickTileWhiteCornerSe decals: 10272: 1,-73 + - node: + color: '#C6FF91FF' + id: BrickTileWhiteCornerSe + decals: + 13546: 34,15 - node: color: '#DE3A3A7F' id: BrickTileWhiteCornerSe @@ -2124,6 +2122,11 @@ entities: id: BrickTileWhiteCornerSw decals: 10271: -1,-73 + - node: + color: '#C6FF91FF' + id: BrickTileWhiteCornerSw + decals: + 13548: 37,15 - node: color: '#DE3A3A7F' id: BrickTileWhiteCornerSw @@ -2260,6 +2263,16 @@ entities: id: BrickTileWhiteLineE decals: 10299: -13,18 + - node: + zIndex: -1 + color: '#55391AFF' + id: BrickTileWhiteLineE + decals: + 13371: 37,-10 + 13372: 37,-11 + 13373: 37,-12 + 13374: 37,-13 + 13375: 37,-14 - node: color: '#8BDA8EFF' id: BrickTileWhiteLineE @@ -2281,6 +2294,15 @@ entities: 10269: 1,-71 10270: 1,-72 10276: 1,-70 + - node: + color: '#C6FF91FF' + id: BrickTileWhiteLineE + decals: + 13534: 38,14 + 13535: 38,13 + 13536: 38,12 + 13537: 38,11 + 13538: 38,10 - node: color: '#DE3A3A7F' id: BrickTileWhiteLineE @@ -2288,6 +2310,15 @@ entities: 10406: 61,10 10407: 61,9 10408: 61,8 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 13445: 31,10 + 13446: 31,11 + 13447: 31,12 + 13448: 31,13 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -2328,6 +2359,18 @@ entities: decals: 12278: 64,-16 12279: 62,-16 + - node: + color: '#C6FF91FF' + id: BrickTileWhiteLineN + decals: + 13544: 35,15 + 13545: 36,15 + 13550: 33,9 + 13551: 34,9 + 13552: 35,9 + 13553: 36,9 + 13554: 37,9 + 13555: 38,9 - node: color: '#DE3A3A7F' id: BrickTileWhiteLineN @@ -2396,6 +2439,12 @@ entities: 12281: 62,-20 12282: 63,-20 12283: 64,-20 + - node: + color: '#C6FF91FF' + id: BrickTileWhiteLineS + decals: + 13547: 33,15 + 13549: 38,15 - node: color: '#DE3A3A7F' id: BrickTileWhiteLineS @@ -2452,6 +2501,16 @@ entities: id: BrickTileWhiteLineW decals: 10279: -60,-25 + - node: + zIndex: -1 + color: '#55391AFF' + id: BrickTileWhiteLineW + decals: + 13366: 32,-13 + 13367: 32,-12 + 13368: 32,-11 + 13369: 32,-10 + 13370: 32,-14 - node: color: '#8BDA8EFF' id: BrickTileWhiteLineW @@ -2470,6 +2529,15 @@ entities: 10267: -1,-72 10268: -1,-71 10275: -1,-70 + - node: + color: '#C6FF91FF' + id: BrickTileWhiteLineW + decals: + 13539: 33,14 + 13540: 33,13 + 13541: 33,12 + 13542: 33,11 + 13543: 33,10 - node: color: '#DE3A3A7F' id: BrickTileWhiteLineW @@ -2485,6 +2553,15 @@ entities: 10531: 59,9 10752: 56,14 11999: 77,5 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 13462: 27,10 + 13463: 27,11 + 13464: 27,12 + 13465: 27,13 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -2507,11 +2584,21 @@ entities: 9660: 5,-24 9663: 5,-20 9665: 5,-17 + - node: + color: '#C6FF91FF' + id: BushCThree + decals: + 13559: 29,21 - node: color: '#FFFFFFFF' id: BushCThree decals: 9758: -14.984233,-17.743088 + - node: + color: '#C6FF91FF' + id: BushCTwo + decals: + 13556: 30,21 - node: color: '#FFFFFFFF' id: BushCTwo @@ -2595,19 +2682,8 @@ entities: 9578: 2.1369486,-28.282742 - node: color: '#FFFFFFFF' - id: Bushh3 - decals: - 9095: 49,-38 - - node: - color: '#FED83DFF' id: Bushi1 decals: - 9142: 58.292236,-35.89525 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 7597: 35.957897,3.9893675 9579: 2.4650736,-28.626492 9587: 2.1056986,-29.298367 9588: 3.1994486,-30.063992 @@ -2628,11 +2704,6 @@ entities: 9830: 4.978717,-59.257614 9831: 4.994342,-58.77324 9832: 5.588092,-59.05449 - - node: - color: '#FED83DFF' - id: Bushi2 - decals: - 9148: 51.996716,-42.904697 - node: color: '#FFFFFFFF' id: Bushi2 @@ -2646,13 +2717,6 @@ entities: 9761: -4.1202064,-12.743088 9762: -3.7764564,-13.039963 9763: -4.0733314,-13.211838 - - node: - color: '#FED83DFF' - id: Bushi3 - decals: - 9143: 48.675743,-35.836475 - 9144: 47.894493,-36.180225 - 9145: 47.175743,-35.88335 - node: color: '#FFFFFFFF' id: Bushi3 @@ -2682,12 +2746,6 @@ entities: id: Bushj1 decals: 9706: -0.8086827,-27.004267 - - node: - color: '#FED83DFF' - id: Bushj2 - decals: - 9138: 51.13956,-35.968464 - 9150: 58.83523,-36.920322 - node: color: '#FFFFFFFF' id: Bushj2 @@ -2699,71 +2757,32 @@ entities: id: Bushj3 decals: 9704: -0.6533332,-28.644892 - - node: - color: '#FED83DFF' - id: Bushk2 - decals: - 9137: 55.23331,-36.76534 - node: color: '#FFFFFFFF' id: Bushl1 decals: - 3: -4.345141,5.065511 9615: 2.8088236,-28.914371 - - node: - color: '#FFFFFFFF' - id: Bushl3 - decals: - 3402: -79.66552,-43.28641 - 3403: -73.98027,-37.06336 - node: color: '#FFFFFFFF' id: Bushm1 decals: - 3401: -79.087395,-42.802036 - 5019: 27,-68 9616: 2.2306986,-27.992496 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 3399: -73.9884,-38.446636 - 3400: -79.681145,-42.44266 - 5020: -27,-69 7109: -84,2 - node: color: '#9C2020FF' id: Bushn1 decals: 9824: 9.913091,-53.8693 - - node: - color: '#FED83DFF' - id: Bushn1 - decals: - 9139: 56.467686,-42.999714 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Caution decals: 8241: 36,20 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 7391: 34,12 - 7392: 34,11 - 7393: 35,11 - 7394: 35,12 - 7395: 36,12 - 7396: 36,11 - 7397: 37,11 - 7398: 37,12 - 7399: 38,12 - 7400: 38,11 - 13224: 37,13 - 13225: 38,13 - 13226: 36,13 - node: color: '#55391AFF' id: CheckerNESW @@ -3637,8 +3656,6 @@ entities: 7301: 44,-63 7302: 46,-63 7303: 48,-63 - 7424: 34,14 - 7425: 34,9 7578: 31,14 7626: -23,-92 7664: -37,-13 @@ -3657,7 +3674,6 @@ entities: 8202: 52,-66 8203: 57,-62 8204: 58,-62 - 8355: 6,-2 8356: 29,-3 8357: 38,-84 8362: -62,-77 @@ -3747,12 +3763,87 @@ entities: 12462: 109,-41 12463: 109,-42 12464: 109,-43 + 13241: 45,-85 + 13242: 46,-85 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 13587: -68,-16 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Delivery decals: 8242: 39,20 + - node: + zIndex: 10 + color: '#DE3A3AFF' + id: DeliveryGreyscale + decals: + 13516: 55,-24 + 13517: 55,-25 + 13518: 55,-26 + 13519: 57,-24 + 13520: 57,-25 + 13521: 57,-26 + 13522: 61,13 + 13523: 62,13 + - node: + zIndex: 10 + color: '#FF0000FF' + id: DeliveryGreyscale + decals: + 13506: 75,7 + 13507: 75,6 + 13508: 61,13 + 13509: 62,13 + 13510: 55,-26 + 13511: 55,-25 + 13512: 55,-24 + 13513: 57,-24 + 13514: 57,-25 + 13515: 57,-26 + 13524: 62,13 + 13525: 61,13 + - node: + color: '#FFA500FF' + id: DeliveryGreyscale + decals: + 13492: 73,5 + 13493: 73,6 + 13494: 73,7 + 13495: 73,5 + 13496: 73,6 + - node: + color: '#FFFF00FF' + id: DeliveryGreyscale + decals: + 13497: 73,5 + 13498: 73,6 + 13499: 73,7 + - node: + zIndex: 1 + color: '#FFFF00FF' + id: DeliveryGreyscale + decals: + 13500: 73,7 + 13501: 73,6 + - node: + zIndex: 2 + color: '#FFFF00FF' + id: DeliveryGreyscale + decals: + 13502: 73,5 + - node: + zIndex: 10 + color: '#FFFF00FF' + id: DeliveryGreyscale + decals: + 13503: 73,6 + 13504: 73,7 + 13505: 73,5 - node: color: '#FFFFFFFF' id: DerelictSignBottom1 @@ -4036,7 +4127,6 @@ entities: id: Dirt decals: 4101: 27,24 - 4102: 28,24 4103: 27,25 4104: 27,24 4105: 26,24 @@ -4048,14 +4138,10 @@ entities: 4111: 26,24 4112: 25,24 4113: 25,24 - 4114: 28,24 4115: 26,21 4116: 27,21 - 4117: 27,22 4118: 27,21 - 4119: 26,20 4120: 31,24 - 4121: 31,18 4122: 33,18 - node: cleanable: True @@ -4618,7 +4704,6 @@ entities: 6469: -23,14 6470: -16,14 6471: 25,17 - 6472: 31,20 6473: 42,24 6474: 41,14 - node: @@ -4672,7 +4757,6 @@ entities: 4822: 41,-20 4823: 36,-20 4824: 42,25 - 4825: 31,21 4826: 59,-26 4827: 68,-19 4828: 67,-18 @@ -4839,9 +4923,6 @@ entities: 7857: 31,11 7858: 31,10 7859: 30,9 - 7860: 34,13 - 7861: 35,11 - 7862: 37,9 7863: 23,3 7873: 43,27 7874: 44,28 @@ -4905,7 +4986,6 @@ entities: 8244: 34,23 8245: 35,22 8246: 36,20 - 8247: 38,20 8248: 38,22 8251: -28,-103 8252: -22,-102 @@ -5224,7 +5304,6 @@ entities: 4642: 12,0 4643: 1,15 4644: -1,11 - 4645: 3,2 4647: -29,-8 4648: -28,-21 4649: -33,-32 @@ -5773,7 +5852,6 @@ entities: 4635: -31,-93 4636: -20,-90 4637: -10,-80 - 4638: 5,-73 4639: 18,-75 4711: 16,-90 4712: 64,-58 @@ -5855,10 +5933,6 @@ entities: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 3389: -74,-41 - 3390: -80,-42 - 4247: -43,15 - 7592: 31,-12 9743: -5.9589643,-19.07209 9746: -8.949599,-14.026374 - node: @@ -5866,47 +5940,23 @@ entities: id: Flowersbr1 decals: 1977: 47,-73 - 4248: -47,13 9747: -9.074599,-13.073249 9749: -7.2216344,-19.164963 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 7588: 32,12 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 7587: 32,14 9744: -10.961599,-19.00959 9745: -9.980849,-14.010749 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 5021: -26,-69 - 7593: 31,-13 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 5018: 26,-69 7582: 27,5 - 7596: 36.832897,3.9268675 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 0: -6,5 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 3387: -79,-44 - 3388: -74,-38 - 4246: -48,16 - 5017: -27,-68 9687: -0.8008158,-27.874275 - node: color: '#FFFFFFFF' @@ -5918,15 +5968,11 @@ entities: id: Flowersy3 decals: 1976: 47,-74 - 7586: 32,13 - 7595: 35.114147,3.9112425 9689: -0.09769082,-28.92115 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 7580: 28,0 - 7594: 31,-14 9684: -0.8320658,-27.280525 9685: -0.44144082,-27.561775 9686: -0.16019082,-28.374275 @@ -6079,105 +6125,42 @@ entities: 7326: 46,-65 7327: 44,-65 - node: - color: '#FED83DFF' - id: Grassa4 - decals: - 9135: 47,-37 - - node: - color: '#FED83DFF' - id: Grassa5 + color: '#C6FF91FF' + id: Grassb1 decals: - 9121: 54,-40 - 9130: 58,-42 - 9131: 55,-43 + 13567: 28.882263,20.020931 - node: - color: '#FED83DFF' + color: '#C6FF91FF' id: Grassb4 decals: - 9129: 58,-37 - - node: - color: '#FED83DFF' - id: Grassb5 - decals: - 9133: 51,-38 - 9134: 47,-38 - 9154: 50.939972,-37.31808 - 9159: 59.064972,-42.06808 - - node: - color: '#FED83DFF' - id: Grassc1 - decals: - 9108: 58,-37 - 9109: 56,-36 - 9110: 55,-36 - 9111: 56,-37 - 9114: 58,-41 - 9136: 48,-37 - 9152: 51.064972,-36.81808 - 9153: 51.971222,-36.927456 - 9157: 46.939972,-37.989956 - 9158: 58.939972,-42.03683 + 13566: 30.038513,20.114681 - node: color: '#FFFFFFFF' id: Grassc1 decals: 9678: 1.6461339,-23.185373 - node: - color: '#FED83DFF' + color: '#C6FF91FF' id: Grassc2 decals: - 9117: 53,-42 + 13563: 29.101013,20.052181 + 13564: 29.929138,19.099056 - node: color: '#FFFFFFFF' id: Grassc2 decals: 9679: 1.2242589,-23.763498 9680: 0.2086339,-22.997873 - - node: - color: '#FED83DFF' - id: Grassc3 - decals: - 9118: 47,-42 - 9119: 49,-40 - - node: - color: '#FED83DFF' - id: Grassc4 - decals: - 9115: 56,-43 - 9116: 59,-43 - 9127: 59,-37 - 9128: 58,-36 - node: color: '#FFFFFFFF' id: Grassc4 decals: 9677: 0.5523839,-23.607248 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 3397: -74,-39 - 4227: -43,14 - 4228: -47,13 - 4235: -49,16 - 4236: -46,16 - 4243: -42,14 - 4244: -46,13 - 4286: -44,14 - 5015: -26,-69 - 7591: 31,-13 - node: color: '#FFFFFFFF' id: Grassd2 decals: 1974: 47,-73 - 3391: -80,-44 - 3398: -74,-40 - 3408: -78,-43 - 3409: -81,-44 - 4225: -42,15 - 4226: -48,16 - 4242: -45,15 7108: -85,2 9739: -3.974589,-19.97834 9740: -8.865214,-19.10334 @@ -6186,19 +6169,7 @@ entities: color: '#FFFFFFFF' id: Grassd3 decals: - 2: -4,5 3393: -79,-42 - 3394: -80,-43 - 3395: -74,-40 - 3410: -81,-43 - 3411: -78,-44 - 3412: -78,-42 - 3413: -78,-43 - 4233: -46,12 - 4234: -47,16 - 4240: -45,15 - 4241: -42,14 - 5016: -27,-68 7104: -85,2 7105: -84,1 7106: -85,0 @@ -6209,57 +6180,33 @@ entities: color: '#FFFFFFFF' id: Grasse1 decals: - 4245: -46,13 - 7579: 28,0 7581: 27,5 - 7583: 32,13 - 7589: 31,-12 9670: 1,-23 9738: 0.16603589,-20.993965 - node: - color: '#FED83DFF' + color: '#C6FF91FF' id: Grasse2 decals: - 9124: 51,-36 - 9126: 52,-36 + 13565: 29.147888,19.099056 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 4231: -43,15 - 4232: -47,14 - 4239: -45,14 - 5013: 26,-69 7103: -85,1 9671: 2,-24 9737: -1.1777141,-20.993965 - node: - color: '#FED83DFF' + color: '#C6FF91FF' id: Grasse3 decals: - 9122: 47,-43 - 9123: 53,-43 + 13568: 30.038513,19.177181 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1: -5,5 1975: 47,-75 - 3392: -79,-43 - 3396: -74,-37 - 3407: -81,-42 - 3414: -81,-44 - 4229: -46,15 - 4230: -44,15 - 4237: -46,16 - 4238: -45,14 - 5012: 27,-68 - 5014: -27,-69 7102: -84,2 7107: -84,1 - 7584: 32,12 - 7585: 32,14 - 7590: 31,-14 9666: 0,-23 9667: 1,-24 9672: 2,-23 @@ -6661,6 +6608,12 @@ entities: 12452: 115,-39 12453: 122,-39 12454: 129,-39 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 13585: 86,-54 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -6671,6 +6624,7 @@ entities: 6624: 12,-85 12455: 129,-41 12456: 122,-41 + 13586: 81,-47 - node: color: '#000000FF' id: MarkupSquare @@ -7033,7 +6987,6 @@ entities: 189: 14,0 190: -13,0 191: -14,-1 - 201: 30,-12 202: 30,-16 203: 30,-22 210: 30,-28 @@ -7074,7 +7027,6 @@ entities: 411: 29,-26 412: 30,-20 413: 29,-20 - 414: 30,-14 415: 29,-14 472: 33,-42 473: 32,-42 @@ -7412,7 +7364,6 @@ entities: 196: -14,1 197: -13,0 206: 30,-20 - 207: 30,-14 208: 30,-26 234: 75,-32 235: 69,-32 @@ -7451,7 +7402,6 @@ entities: 393: 29,-22 394: 30,-16 395: 29,-16 - 396: 30,-12 397: 29,-12 484: 32,-34 485: 32,-38 @@ -7583,6 +7533,16 @@ entities: 7754: 31,-32 7772: -13,1 12051: 45,-29 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 13415: -75,-37 + 13416: -75,-38 + 13417: -75,-39 + 13418: -75,-40 + 13419: -75,-41 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE @@ -8032,6 +7992,16 @@ entities: 11553: 48,-32 11630: 47,-33 11631: 47,-32 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 13410: -73,-41 + 13411: -73,-40 + 13412: -73,-39 + 13413: -73,-38 + 13414: -73,-37 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW @@ -8274,12 +8244,20 @@ entities: id: MiniTileSteelCornerNe decals: 12750: -35,-58 + 13449: 31,14 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: 1500: -29,-75 3439: -72,-43 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: MiniTileSteelCornerNw + decals: + 13451: 27,14 + 13454: 26,9 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw @@ -8322,16 +8300,23 @@ entities: decals: 7693: -30,-12 - node: - color: '#9FED58B2' + zIndex: -1 + color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: - 7417: 34,13 + 13394: -28,-70 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: 1505: -30,-77 3626: -44,-59 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: MiniTileSteelInnerNw + decals: + 13399: 28,-70 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw @@ -8376,6 +8361,11 @@ entities: 12781: -42,-80 12782: -42,-81 12783: -42,-82 + 13363: 30,-12 + 13364: 30,-13 + 13376: 30,-14 + 13392: -28,-69 + 13393: -28,-68 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE @@ -8394,6 +8384,15 @@ entities: 12747: -38,-58 12748: -37,-58 12749: -36,-58 + 13379: -6,4 + 13380: -5,4 + 13381: -4,4 + 13390: -26,-70 + 13391: -27,-70 + 13395: 26,-70 + 13396: 27,-70 + 13452: 28,14 + 13453: 29,14 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN @@ -8415,6 +8414,13 @@ entities: 12784: -43,-82 12785: -44,-82 12786: -45,-82 + 13382: -6,6 + 13383: -5,6 + 13384: -4,6 + 13458: 31,9 + 13459: 30,9 + 13460: 29,9 + 13461: 28,9 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS @@ -8451,6 +8457,21 @@ entities: 12772: -45,-78 12773: -45,-79 12774: -45,-80 + 13397: 28,-69 + 13398: 28,-68 + 13400: -77,-42 + 13401: -77,-43 + 13402: -77,-44 + 13403: -77,-45 + 13404: -77,-41 + 13405: -73,-41 + 13406: -73,-40 + 13407: -73,-39 + 13408: -73,-38 + 13409: -73,-37 + 13455: 26,8 + 13456: 26,7 + 13457: 26,6 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW @@ -8716,6 +8737,7 @@ entities: 12652: -56,-24 12664: -56,-13 12715: -52,-32 + 13450: 27,14 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe @@ -8766,7 +8788,6 @@ entities: 5948: -28,-34 5950: -30,-35 6135: -7,-73 - 9867: 3,-1 12443: 112,-43 12457: 130,-41 - node: @@ -8951,9 +8972,9 @@ entities: 1573: 43,-61 1606: 42,-55 1687: 59,-71 - 1849: 61,-63 1944: 48,-85 2475: 47,-52 + 13596: 61,-63 - node: color: '#F98AFF9E' id: MiniTileWhiteCornerSw @@ -9604,7 +9625,6 @@ entities: color: '#9FED5896' id: MiniTileWhiteLineE decals: - 5270: 3,2 5493: 83,-25 5494: 83,-30 5495: 83,-36 @@ -9631,7 +9651,6 @@ entities: 5097: 30,-17 5098: 30,-16 5099: 30,-15 - 5100: 30,-12 5101: 30,-11 5107: 28,-7 5108: 28,-6 @@ -9731,8 +9750,6 @@ entities: 7614: -63,-48 7615: -63,-50 7695: -28,-12 - 9865: 3,1 - 9866: 3,0 9870: 1,-2 9871: 1,-3 9872: 1,-4 @@ -10760,7 +10777,6 @@ entities: 7737: 27,-72 7738: 25,-72 7765: 13,-1 - 9868: 2,-1 9952: -30,-45 9953: -29,-45 9954: -28,-45 @@ -11014,8 +11030,6 @@ entities: 1833: 59,-61 1835: 52,-61 1836: 53,-61 - 1850: 62,-63 - 1851: 63,-63 1852: 64,-63 1853: 65,-63 1938: 54,-85 @@ -11049,6 +11063,8 @@ entities: 9924: 58,-57 9925: 59,-57 11668: 38,-34 + 13597: 63,-63 + 13598: 62,-63 - node: color: '#F98AFF9E' id: MiniTileWhiteLineS @@ -12102,11 +12118,6 @@ entities: 1971: 50,-64 1972: 50,-65 1973: 50,-66 - - node: - color: '#FED83DFF' - id: Rock01 - decals: - 9161: 50.798992,-39.643646 - node: color: '#FFFFFFFF' id: Rock03 @@ -12118,34 +12129,12 @@ entities: id: Rock04 decals: 9733: -0.8705876,-16.03638 - - node: - color: '#FED83DFF' - id: Rock05 - decals: - 9160: 50.033367,-36.081146 - node: color: '#FFFFFFFF' id: Rock05 decals: - 9092: 55,-39 9730: -1.9486489,-15.997948 9732: -0.9876058,-17.107323 - - node: - color: '#FFFFFFFF' - id: Rock06 - decals: - 2008: 54,-42 - - node: - color: '#FFFFFFFF' - id: Rock07 - decals: - 2009: 48,-40 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Rock07 - decals: - 2010: 57,-38 - node: cleanable: True color: '#FFFFFFFF' @@ -12228,6 +12217,15 @@ entities: decals: 9258: 3,-8 9259: -3,-7 + 13483: 65,-8 + 13484: 65,-9 + 13485: 65,-10 + 13486: 68,-1 + 13487: 69,-1 + 13488: 70,-1 + 13489: 40,-4 + 13490: 40,-5 + 13491: 40,-6 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale @@ -12312,6 +12310,14 @@ entities: id: VentSmall decals: 12087: 48.715736,20.748272 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: WarnBox + decals: + 13467: 19,19 + 13468: 102,-79 + 13469: 94,-79 - node: color: '#FFFFFFFF' id: WarnBox @@ -12335,6 +12341,18 @@ entities: 12467: 132,-41 13223: 39,22 13227: 37,22 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnBox + decals: + 13470: 94,-79 + 13471: 102,-79 + 13472: 96,-75 + 13473: 100,-75 + 13474: 98,-67 + 13475: 96,-87 + 13476: 101,-91 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -12385,11 +12403,6 @@ entities: id: WarnCornerGreyscaleSE decals: 4928: -43,-49 - - node: - color: '#9FED58B2' - id: WarnCornerGreyscaleSW - decals: - 7418: 33,9 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -12417,6 +12430,8 @@ entities: 9276: -16,-49 9284: -23,-49 12303: 64,-17 + 13579: 82,-50 + 13584: 84,-53 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -12461,10 +12476,15 @@ entities: 9251: -2,-7 9252: 4,-8 9253: 2,-8 - 9903: 24,-31 - 9904: 25,-31 9948: -28,-42 9949: -27,-42 + 13234: -26,-42 + 13235: 27,-28 + 13236: 27,-29 + 13237: 27,-30 + 13238: 3,-74 + 13239: 4,-74 + 13240: 5,-74 - node: color: '#EFB34196' id: WarnFullGreyscale @@ -12555,7 +12575,6 @@ entities: color: '#9FED5896' id: WarnLineGreyscaleE decals: - 5187: 30,-14 5696: 45,-39 5697: 45,-40 5767: 29,-72 @@ -12760,11 +12779,6 @@ entities: 7733: 3,-75 9962: -28,-43 9963: -27,-43 - - node: - color: '#9FED58B2' - id: WarnLineGreyscaleN - decals: - 7419: 33,15 - node: color: '#A4610696' id: WarnLineGreyscaleN @@ -13200,6 +13214,9 @@ entities: 10399: 62,9 10400: 62,8 10401: 62,7 + 13578: 84,-51 + 13580: 82,-49 + 13581: 82,-48 - node: color: '#FFFFFFFF' id: WarnLineW @@ -13215,6 +13232,8 @@ entities: 10499: 64,13 10500: 65,13 10501: 66,13 + 13582: 84,-55 + 13583: 85,-55 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -13243,9 +13262,7 @@ entities: 3856: 28,-74 3870: 0,-94 3882: -1,-99 - 4090: 28,22 4863: -52,-48 - 4907: 5,-72 4913: -3,-72 4996: -38,-68 7461: 34,1 @@ -13303,9 +13320,7 @@ entities: 3855: 27,-74 3879: -4,-94 3886: -3,-99 - 4092: 25,22 4870: -55,-48 - 4911: 3,-72 4915: -5,-72 7457: 32,1 9231: 16,16 @@ -13372,9 +13387,7 @@ entities: 3859: 28,-77 3873: 0,-97 3883: -1,-100 - 4098: 28,19 4865: -52,-50 - 4908: 5,-73 4918: -3,-73 4998: -38,-71 9479: 18,-43 @@ -13434,9 +13447,7 @@ entities: 3860: 27,-77 3876: -4,-97 3885: -3,-100 - 4095: 25,19 4868: -55,-50 - 4910: 3,-73 4916: -5,-73 7436: 24,0 7440: 26,-1 @@ -13708,8 +13719,6 @@ entities: 3858: 28,-76 3871: 0,-95 3872: 0,-96 - 4099: 28,20 - 4100: 28,21 4864: -52,-49 4997: -38,-70 7472: 34,0 @@ -13738,6 +13747,17 @@ entities: 8896: 46,-75 8897: 46,-74 8898: 46,-73 + - node: + zIndex: -1 + color: '#55391AFF' + id: WoodTrimThinLineEWhite + decals: + 13420: 27,0 + 13421: 27,1 + 13422: 27,2 + 13423: 27,3 + 13424: 27,4 + 13425: 27,-1 - node: color: '#612620FF' id: WoodTrimThinLineEWhite @@ -13807,13 +13827,10 @@ entities: 3584: -22,8 3880: -3,-94 3881: -1,-94 - 4091: 27,22 4871: -54,-48 4872: -53,-48 - 4912: 4,-72 4914: -4,-72 7387: 34,-11 - 7390: 25,19 7443: 26,4 7444: 27,4 7445: 28,4 @@ -13968,11 +13985,8 @@ entities: 3874: -1,-97 3875: -3,-97 3884: -2,-100 - 4096: 26,19 - 4097: 27,19 4866: -53,-50 4867: -54,-50 - 4909: 4,-73 4917: -4,-73 4999: -39,-71 5000: -40,-71 @@ -14168,8 +14182,6 @@ entities: 3862: 27,-75 3877: -4,-96 3878: -4,-95 - 4093: 25,21 - 4094: 25,20 4869: -55,-49 7433: 24,3 7434: 24,2 @@ -14223,6 +14235,17 @@ entities: 12600: -31,4 12601: -31,3 12602: -31,2 + - node: + zIndex: -1 + color: '#612620FF' + id: WoodTrimThinLineWWhite + decals: + 13426: 29,4 + 13427: 29,3 + 13428: 29,2 + 13429: 29,1 + 13430: 29,0 + 13431: 29,-1 - node: color: '#612620FF' id: WoodTrimThinLineWWhite @@ -14265,6 +14288,22 @@ entities: 6985: -67.90258,4.371772 6986: -67.682434,4.0965834 6987: -68.25116,4.298388 + - node: + cleanable: True + color: '#FF0000FF' + id: beepsky + decals: + 13595: 73.41197,1.3520765 + - node: + color: '#1B8003FF' + id: biohazard + decals: + 13594: 38.006824,20.05238 + - node: + color: '#4A3519FF' + id: biohazard + decals: + 13592: 39.66014,19.349255 - node: color: '#FFFFFFFF' id: body @@ -14376,17 +14415,6 @@ entities: decals: 13148: -6,-53 13173: 0,-44 - - node: - color: '#FED83DFF' - id: bushsnowa1 - decals: - 9141: 50.35831,-37.718464 - 9149: 58.777966,-43.123447 - - node: - color: '#FED83DFF' - id: bushsnowa2 - decals: - 9140: 46.905186,-42.76534 - node: color: '#7C0000FF' id: dot @@ -14401,10 +14429,15 @@ entities: 7175: 100.89427,-50.233192 7176: 100.56615,-49.592567 - node: - color: '#2D7230FF' + color: '#FFFFFFFF' id: grasssnow decals: - 4261: -47,15 + 13251: 58.998257,-36.607292 + 13252: 58.373257,-36.232292 + 13253: 58.092007,-35.794792 + 13254: 59.42013,-36.013542 + 13334: -47.058346,14.976929 + 13335: -45.98022,14.008179 - node: cleanable: True color: '#3D8C40FF' @@ -14412,6 +14445,11 @@ entities: decals: 6759: -49,-75 6760: -49,-74 + - node: + color: '#FFFFFFFF' + id: grasssnow01 + decals: + 13303: -3.9073434,5.067854 - node: cleanable: True color: '#3D8C40FF' @@ -14425,35 +14463,55 @@ entities: id: grasssnow02 decals: 9727: -6.8250265,-27.860851 + 13250: 56.10763,-36.919792 - node: - cleanable: True - color: '#2D7230FF' + zIndex: 1 + color: '#FFFFFFFF' + id: grasssnow02 + decals: + 13479: 32.165813,14.059746 + - node: + color: '#FFFFFFFF' id: grasssnow03 decals: - 4268: -48,15 - 4269: -50,15 + 13246: 50.798416,-37.138542 + 13274: 54.413727,-38.925987 + 13275: 51.038727,-43.082237 + 13276: 49.74123,-42.207237 + 13277: 47.24123,-37.113487 + 13278: 53.64316,-38.974014 + 13279: 55.989513,-39.90519 + 13280: 52.739513,-39.577065 + 13281: 52.79771,-42.985783 + 13282: 55.125835,-43.001408 + 13283: 48.298042,-42.204533 + 13319: 26.86017,-67.959236 - node: - cleanable: True - color: '#2D7230FF' - id: grasssnow05 + color: '#FFFFFFFF' + id: grasssnow04 decals: - 4256: -45,16 - 4260: -45,12 - 4272: -47,17 - 4273: -50,15 + 13302: -4.8760934,5.192854 + 13318: 26.907045,-67.91236 + 13328: -26.988277,-68.78894 + 13329: -26.910152,-68.492065 + 13330: -26.910152,-68.35144 + 13341: -46.902096,17.101929 - node: cleanable: True color: '#3D8C40FF' id: grasssnow05 decals: 6786: -56,-72 + - node: + color: '#FFFFFFFF' + id: grasssnow05 + decals: + 13245: 54.767384,-40.044792 - node: color: '#2D7230FF' id: grasssnow07 decals: - 4252: -45,13 4257: -44,13 - 4258: -45,12 - node: cleanable: True color: '#3D8C40FF' @@ -14463,10 +14521,12 @@ entities: 6781: -56,-69 6788: -56,-74 - node: - color: '#2D7230FF' - id: grasssnow08 + color: '#FFFFFFFF' + id: grasssnow07 decals: - 4255: -47,12 + 13346: -45.99903,10.94142 + 13347: -47.81153,14.94142 + 13348: -47.49903,12.09767 - node: cleanable: True color: '#3D8C40FF' @@ -14479,12 +14539,7 @@ entities: id: grasssnow08 decals: 9726: -8.1375265,-26.032726 - - node: - color: '#2D7230FF' - id: grasssnow09 - decals: - 4251: -45,13 - 4271: -47,17 + 13312: 31.003109,-13.982994 - node: cleanable: True color: '#3D8C40FF' @@ -14492,32 +14547,52 @@ entities: decals: 6762: -52,-76 - node: - color: '#2D7230FF' + color: '#FFFFFFFF' + id: grasssnow09 + decals: + 13304: -4.1729684,5.099104 + - node: + color: '#FFFFFFFF' id: grasssnow10 decals: - 4250: -46,14 - 4259: -45,13 - 4264: -52,15 - 4265: -51,16 - 4267: -48,15 - 4270: -51,15 + 13247: 46.988186,-38.310417 + 13248: 51.94131,-35.997917 + 13271: 56.24185,-36.019737 + 13272: 55.038727,-35.879112 + 13273: 55.351227,-37.144737 + 13291: -74.04257,-39.939026 + 13297: -80.54396,-43.368786 + 13298: -78.278336,-43.63441 + 13299: -80.372086,-42.13441 + 13301: -5.8292184,4.989729 + 13317: 26.875795,-68.78736 + 13325: -25.988277,-68.85144 + 13326: -26.816402,-67.992065 + 13336: -46.82397,14.258179 + 13337: -46.16772,15.133179 + 13338: -46.26147,15.898804 + 13339: -51.089596,15.211304 + 13340: -50.91772,16.914429 + 13345: -46.71778,12.300795 + 13349: -42.18653,14.25392 + 13350: -43.31153,14.91017 + 13351: -50.68653,16.050795 + 13352: -48.452156,16.75392 - node: - color: '#2D7230FF' - id: grasssnow11 + zIndex: 1 + color: '#FFFFFFFF' + id: grasssnow10 decals: - 4266: -52,16 + 13477: 32.040813,12.215996 + 13478: 32.040813,13.200371 - node: color: '#FFFFFFFF' id: grasssnow11 decals: 9728: -8.0281515,-27.032726 - - node: - color: '#2D7230FF' - id: grasssnow12 - decals: - 4249: -47,12 - 4253: -48,13 - 4254: -48,14 + 13314: 30.940609,-13.889244 + 13343: -49.59663,17.7261 + 13344: -48.56538,17.710476 - node: cleanable: True color: '#3D8C40FF' @@ -14529,11 +14604,11 @@ entities: 6779: -54,-71 6780: -54,-70 - node: - color: '#2D7230FF' - id: grasssnow13 + color: '#FFFFFFFF' + id: grasssnow12 decals: - 4262: -52,16 - 4263: -51,17 + 13320: 26.032045,-68.927986 + 13327: -26.894527,-68.88269 - node: cleanable: True color: '#3D8C40FF' @@ -14541,12 +14616,38 @@ entities: decals: 6755: -48,-76 6761: -51,-76 + - node: + color: '#FFFFFFFF' + id: grasssnow13 + decals: + 13249: 54.76388,-36.060417 + 13342: -52.058346,16.055054 - node: color: '#FFFFFFFF' id: grasssnowa1 decals: 9697: -7.1601906,-26.035517 9702: -8.981459,-25.941767 + 13269: 59.03018,-41.826042 + 13333: -25.863277,-68.82019 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: grasssnowa1 + decals: + 13480: 31.962688,12.215996 + - node: + color: '#FFFFFFFF' + id: grasssnowa2 + decals: + 13264: 49.478325,-36.888542 + 13270: 47.19245,-41.154167 + 13287: 57.960415,-41.89806 + 13306: -4.7198434,5.052229 + 13315: 30.971859,-13.701744 + 13316: 25.98517,-68.927986 + 13321: 26.907045,-68.75611 + 13359: 35.888832,3.9046407 - node: color: '#9C2020FF' id: grasssnowa3 @@ -14557,6 +14658,31 @@ entities: id: grasssnowa3 decals: 9700: -7.950208,-27.879267 + 13243: 52.164677,-40.076042 + 13256: 57.748257,-36.247917 + 13288: -74.01132,-37.345276 + 13293: -73.96445,-40.8609 + 13300: -80.66896,-43.368786 + 13331: -26.988277,-68.054565 + - node: + color: '#FFFFFFFF' + id: grasssnowb1 + decals: + 13260: 50.5857,-42.747917 + 13290: -74.02695,-39.189026 + 13322: 26.92267,-68.00611 + 13323: 26.119932,-68.90043 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: grasssnowb1 + decals: + 13482: 31.947063,13.872246 + - node: + color: '#FFFFFFFF' + id: grasssnowb2 + decals: + 13307: -4.0479684,5.052229 - node: color: '#9C2020FF' id: grasssnowb3 @@ -14567,16 +14693,59 @@ entities: id: grasssnowb3 decals: 9701: -8.918959,-26.863642 + 13324: 26.932432,-68.80668 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: grasssnowb3 + decals: + 13481: 31.962688,13.012871 - node: color: '#9C2020FF' id: grasssnowc1 decals: 9835: 13.951408,-61.985287 + - node: + color: '#FFFFFFFF' + id: grasssnowc1 + decals: + 13257: 57.98263,-41.091667 + 13265: 49.447075,-35.872917 + 13266: 47.228325,-35.888542 + 13267: 56.764557,-42.747917 + 13296: -78.26436,-42.025036 + 13308: 30.987484,-12.029869 + 13332: -26.753902,-68.867065 + - node: + color: '#FFFFFFFF' + id: grasssnowc2 + decals: + 13258: 55.57638,-39.997917 + 13261: 49.36695,-42.826042 + 13289: -73.98007,-38.282776 + 13292: -73.9332,-40.376526 + 13309: 30.971859,-12.967369 + 13357: -46.983406,13.03517 + 13358: 36.779457,3.9671407 - node: color: '#FFFFFFFF' id: grasssnowc3 decals: 9699: -8.872084,-27.863642 + 13255: 58.95138,-37.029167 + 13259: 57.810757,-42.982292 + 13262: 51.05445,-36.107292 + 13284: 55.882847,-38.93933 + 13285: 55.42672,-36.40406 + 13286: 52.942345,-38.89806 + 13295: -79.23311,-43.94691 + 13305: -5.5948434,5.052229 + 13353: -50.28028,16.09767 + 13354: -49.358406,17.113295 + 13355: -45.87403,12.238295 + 13356: -42.21778,14.488295 + 13360: 35.216957,4.0765157 + 13361: 27.977097,0.043170214 - node: color: '#FFFFFFFF' id: heart @@ -14599,6 +14768,11 @@ entities: decals: 9026: -38.01308,-102.9533 9027: -42.01308,-102.968925 + - node: + color: '#FFFF00FF' + id: radiation + decals: + 13590: -5.96743,-6.9954977 - node: cleanable: True color: '#FF0000FF' @@ -14635,6 +14809,11 @@ entities: id: safe decals: 12384: 1.9940939,-52.00569 + - node: + color: '#FFFFFFFF' + id: shotgun + decals: + 13589: -73.21916,-1.8953784 - node: cleanable: True color: '#A91409CC' @@ -14782,8 +14961,7 @@ entities: 0,0: 0: 65535 0,-1: - 0: 62259 - 1: 8 + 0: 62395 -1,0: 0: 65262 0,1: @@ -14801,7 +14979,7 @@ entities: 0,4: 0: 45759 1,0: - 0: 61678 + 0: 62702 1,1: 0: 65295 1,2: @@ -14811,10 +14989,9 @@ entities: 1,4: 0: 61627 1,-1: - 0: 58880 - 1: 15 + 0: 61183 2,0: - 0: 64187 + 0: 63675 2,1: 0: 47887 2,2: @@ -14822,8 +14999,7 @@ entities: 2,3: 0: 65520 2,-1: - 0: 45952 - 1: 15 + 0: 45875 2,4: 0: 61951 3,0: @@ -14859,8 +15035,7 @@ entities: 0: 2192 1: 8192 0,-2: - 0: 13119 - 1: 34816 + 0: 47935 -1,-2: 0: 34984 1: 8192 @@ -14873,8 +15048,7 @@ entities: 1: 240 0: 57344 1,-2: - 1: 61440 - 0: 238 + 0: 4334 1,-5: 0: 26471 2,-4: @@ -14885,7 +15059,7 @@ entities: 0: 12288 2,-2: 0: 51 - 1: 63624 + 1: 2184 2,-5: 0: 65535 3,-4: @@ -14919,11 +15093,13 @@ entities: -4,2: 0: 1905 -5,2: - 0: 7489 + 0: 7233 + 7: 256 -4,3: 0: 3959 -5,3: - 0: 65485 + 0: 65484 + 7: 1 -4,4: 0: 61158 -3,0: @@ -15005,7 +15181,7 @@ entities: -4,6: 1: 60177 -4,7: - 1: 140 + 1: 174 -3,6: 1: 4880 0: 140 @@ -15035,7 +15211,7 @@ entities: 0,7: 1: 65296 0,8: - 1: 15 + 1: 31 1,5: 0: 65535 1,6: @@ -15121,7 +15297,7 @@ entities: 0: 8743 3: 2184 5,4: - 0: 26190 + 0: 61006 6,1: 0: 56783 6,2: @@ -15131,7 +15307,7 @@ entities: 3: 819 0: 2248 6,4: - 0: 61695 + 0: 26343 7,1: 0: 65519 7,2: @@ -15139,26 +15315,26 @@ entities: 7,3: 0: 20479 7,4: - 0: 56543 + 0: 65535 8,0: 0: 65535 8,1: 0: 65535 8,2: - 0: 65522 + 0: 65530 8,3: 0: 61439 4,7: - 1: 14 + 1: 46 5,7: 1: 227 5,5: - 0: 1124 + 0: 1252 1: 24576 5,6: 1: 57894 6,5: - 0: 20479 + 0: 62566 6,6: 0: 33023 6,7: @@ -15167,15 +15343,15 @@ entities: 6,8: 1: 20093 7,5: - 0: 52701 + 0: 53503 7,6: 0: 61663 7,7: - 0: 4095 + 0: 1791 7,8: 0: 3822 8,4: - 0: 32754 + 0: 20216 8,6: 0: 55536 8,7: @@ -15185,7 +15361,7 @@ entities: 9,1: 0: 62395 9,2: - 0: 30576 + 0: 30577 9,3: 0: 30583 9,-1: @@ -15223,11 +15399,11 @@ entities: 12,3: 0: 65521 8,5: - 0: 61154 + 0: 61166 8,8: 0: 28278 9,4: - 0: 4080 + 0: 3056 9,5: 0: 65535 9,6: @@ -15243,7 +15419,7 @@ entities: 10,8: 0: 2 11,5: - 0: 30583 + 0: 30567 11,6: 0: 4103 1: 34816 @@ -15307,20 +15483,21 @@ entities: 3,-6: 0: 7645 5,-8: - 0: 7448 - 1: 32768 + 0: 4376 + 1: 52224 5,-7: 0: 273 - 1: 3080 + 1: 3276 5,-6: 0: 4095 5,-9: 0: 47629 6,-8: - 0: 13119 - 1: 17408 + 0: 60943 + 1: 4352 6,-7: - 1: 16663 + 1: 16689 + 0: 14 6,-9: 0: 65290 6,-6: @@ -15364,7 +15541,7 @@ entities: 11,-6: 0: 45759 11,-9: - 0: 65339 + 0: 65331 12,-8: 0: 62351 12,-7: @@ -15408,8 +15585,7 @@ entities: 15,4: 0: 68 16,0: - 0: 45126 - 4: 32 + 0: 45158 16,1: 0: 45247 16,2: @@ -15435,8 +15611,7 @@ entities: 15,-2: 0: 56719 15,-5: - 0: 65533 - 5: 2 + 0: 65535 16,-4: 0: 45827 16,-3: @@ -15446,7 +15621,7 @@ entities: 16,-1: 0: 10103 12,-9: - 0: 65295 + 0: 65294 13,-8: 0: 61567 13,-7: @@ -15549,7 +15724,7 @@ entities: 19,1: 0: 36591 19,3: - 1: 497 + 1: 2545 19,2: 1: 4368 20,0: @@ -15586,7 +15761,7 @@ entities: 0: 9011 1: 32776 23,-2: - 1: 13107 + 1: 13171 23,-1: 1: 4403 22,0: @@ -15598,7 +15773,7 @@ entities: 21,1: 1: 8828 21,2: - 1: 802 + 1: 1826 22,1: 1: 1 16,-9: @@ -15682,16 +15857,16 @@ entities: 19,-10: 0: 26479 20,-13: - 0: 60936 + 0: 61160 21,-12: - 0: 30583 + 0: 26231 21,-11: 0: 65508 21,-10: 0: 239 1: 49152 21,-13: - 0: 63247 + 0: 63359 22,-12: 0: 65335 22,-11: @@ -15758,7 +15933,7 @@ entities: 12,-11: 0: 65520 11,-11: - 0: 48051 + 0: 47923 12,-10: 0: 65535 11,-10: @@ -16261,7 +16436,7 @@ entities: 22,-15: 1: 57617 22,-14: - 0: 65248 + 0: 61408 23,-15: 1: 6284 23,-14: @@ -16322,28 +16497,27 @@ entities: 16,-22: 1: 30169 8,-24: - 6: 1 - 7: 4352 + 4: 4353 1: 17476 8,-25: - 6: 4096 + 4: 4096 1: 17476 - 8: 17 + 9: 17 7,-24: - 6: 12 - 7: 52224 + 4: 19468 + 5: 32768 1: 4369 8,-23: - 6: 272 + 4: 272 1: 17476 7,-23: - 6: 3264 + 4: 3264 1: 4369 8,-22: - 6: 17 + 4: 17 1: 21572 7,-22: - 6: 204 + 4: 204 1: 61713 9,-24: 0: 65535 @@ -16392,8 +16566,8 @@ entities: 1: 34952 7,-25: 1: 4369 - 6: 49152 - 8: 204 + 4: 49152 + 9: 204 0,-24: 0: 52509 0,-25: @@ -16460,7 +16634,7 @@ entities: 0,-16: 0: 65523 1,-19: - 0: 47615 + 0: 48127 1,-18: 0: 11 1: 7936 @@ -16486,7 +16660,7 @@ entities: 1: 4410 0: 49284 17,-25: - 1: 8928 + 1: 8936 0: 32768 17,-22: 1: 57898 @@ -16697,7 +16871,7 @@ entities: -6,-29: 1: 13107 -5,-28: - 1: 4096 + 1: 4112 -5,-27: 1: 817 -9,-24: @@ -17083,7 +17257,7 @@ entities: 0: 13360 -15,-24: 1: 4369 - 0: 49288 + 0: 51336 -15,-23: 1: 4368 0: 3276 @@ -17184,7 +17358,7 @@ entities: -20,-19: 1: 55135 -21,-19: - 1: 19456 + 1: 19968 -20,-18: 1: 85 0: 32768 @@ -17262,12 +17436,14 @@ entities: -18,-12: 0: 62235 -20,-24: - 1: 136 + 1: 32904 -20,-25: 1: 34952 -19,-24: 1: 7440 0: 49856 + -20,-21: + 1: 8 -19,-23: 1: 10801 0: 33920 @@ -17321,6 +17497,8 @@ entities: 0: 36795 -17,-8: 0: 61213 + -22,-15: + 1: 8 -12,-7: 0: 65295 -13,-7: @@ -17524,11 +17702,12 @@ entities: 0: 13 1: 58112 -16,4: - 1: 14 + 1: 46 -15,1: 0: 65473 -15,2: - 0: 56792 + 0: 52696 + 6: 4096 -15,3: 0: 13 1: 64256 @@ -17755,19 +17934,18 @@ entities: -7,5: 1: 247 -6,5: - 1: 3638 + 1: 11830 -7,-11: - 0: 46071 - 1: 16384 + 0: 63479 -7,-10: - 0: 3 - 1: 43772 + 0: 7 + 1: 43768 -6,-11: 0: 3 1: 8192 -6,-10: - 1: 13107 - 0: 34816 + 0: 34819 + 1: 13104 -5,-11: 0: 61686 1: 8 @@ -17786,7 +17964,7 @@ entities: 0: 65512 -3,-14: 0: 4368 - 9: 3264 + 8: 3264 -3,-13: 0: 56593 -3,-12: @@ -17804,7 +17982,7 @@ entities: -1,-15: 0: 65278 -1,-14: - 8: 816 + 9: 816 0: 2184 -1,-13: 0: 30583 @@ -17913,7 +18091,7 @@ entities: 12,-28: 1: 64175 12,-29: - 1: 48688 + 1: 48689 11,-28: 1: 52430 0: 13056 @@ -17927,7 +18105,7 @@ entities: 11,-26: 0: 65535 13,-28: - 1: 60386 + 1: 60390 13,-27: 1: 2548 13,-26: @@ -17935,11 +18113,13 @@ entities: 13,-29: 1: 12288 14,-28: - 1: 4096 + 1: 12288 14,-27: 1: 60785 14,-26: 1: 60620 + 15,-25: + 1: 1 8,-28: 1: 13177 8,-29: @@ -17951,10 +18131,10 @@ entities: 7,-27: 1: 65527 8,-26: - 9: 272 + 8: 272 1: 17476 7,-26: - 9: 3264 + 8: 3264 1: 4369 9,-28: 0: 30464 @@ -17965,7 +18145,7 @@ entities: 9,-26: 0: 65535 9,-29: - 1: 36848 + 1: 36849 10,-28: 0: 65280 1: 4 @@ -17975,7 +18155,7 @@ entities: 10,-26: 0: 65535 10,-29: - 1: 20464 + 1: 20468 11,-29: 1: 61424 4,-29: @@ -17989,7 +18169,7 @@ entities: -16,-28: 1: 36631 -17,-28: - 1: 4080 + 1: 4082 0: 16384 -16,-27: 1: 61440 @@ -18026,6 +18206,8 @@ entities: 0: 61695 -13,5: 0: 119 + -24,-5: + 1: 34956 -24,-7: 1: 32768 -24,-6: @@ -18035,15 +18217,13 @@ entities: -23,-6: 1: 4356 0: 58368 - -24,-5: - 1: 34952 -23,-5: 1: 58369 0: 4 -24,-4: 1: 52360 -23,-8: - 1: 57344 + 1: 61440 -23,-4: 1: 31467 -22,-6: @@ -18059,10 +18239,15 @@ entities: 12,8: 1: 1 13,5: - 0: 4915 + 0: 4913 + 6: 2 1: 16384 13,6: 1: 61986 + 13,7: + 1: 4 + -22,-17: + 1: 2048 -24,0: 0: 8956 -25,0: @@ -18075,7 +18260,7 @@ entities: -23,3: 1: 19592 -23,4: - 1: 17476 + 1: 17988 0: 128 -22,0: 0: 61182 @@ -18122,6 +18307,8 @@ entities: 0: 8789 -19,5: 1: 1 + -19,6: + 1: 256 -18,4: 1: 15 -23,5: @@ -18138,24 +18325,24 @@ entities: 1: 18180 0: 74 -22,7: - 1: 50244 + 1: 50276 -22,8: 1: 8 -21,8: - 1: 15 + 1: 79 -20,-26: - 1: 32768 + 1: 49152 -19,-26: 1: 14882 0: 33920 -19,-25: 0: 57824 1: 3584 - -19,-28: - 1: 11776 -19,-27: - 1: 8738 + 1: 12834 0: 2184 + -19,-28: + 1: 11776 -18,-28: 1: 36608 0: 4096 @@ -18175,7 +18362,7 @@ entities: -16,-30: 1: 16384 -15,-32: - 1: 62576 + 1: 62577 -15,-31: 1: 185 0: 40960 @@ -18183,7 +18370,7 @@ entities: 0: 175 1: 4096 -14,-32: - 1: 61440 + 1: 61952 -14,-31: 1: 79 0: 12288 @@ -18212,7 +18399,7 @@ entities: -11,-30: 0: 41615 -11,-33: - 1: 61440 + 1: 62464 -10,-32: 1: 2463 -10,-31: @@ -18231,7 +18418,7 @@ entities: -9,-33: 1: 61440 -8,-32: - 1: 8960 + 1: 41728 -8,-31: 1: 60094 -8,-30: @@ -18239,7 +18426,7 @@ entities: -24,-3: 1: 20308 -25,-3: - 1: 3200 + 1: 3712 -24,-2: 1: 36036 -23,-3: @@ -18253,6 +18440,8 @@ entities: 0: 65295 -21,-3: 0: 30583 + -7,-32: + 1: 4096 -7,-31: 1: 58112 -7,-30: @@ -18260,7 +18449,7 @@ entities: -6,-31: 1: 4096 -6,-30: - 1: 8753 + 1: 8817 25,-16: 3: 17 1: 18572 @@ -18289,7 +18478,7 @@ entities: 0: 13075 1: 34952 27,-17: - 1: 8820 + 1: 8828 28,-14: 1: 4096 28,-13: @@ -18334,9 +18523,9 @@ entities: 26,-21: 1: 22001 27,-20: - 1: 29764 + 1: 31812 27,-19: - 1: 29218 + 1: 61986 27,-21: 1: 17522 27,-18: @@ -18344,7 +18533,7 @@ entities: 24,-24: 1: 79 24,-25: - 1: 7936 + 1: 7952 23,-24: 1: 996 24,-23: @@ -18362,18 +18551,20 @@ entities: 25,-22: 3: 12407 25,-25: - 1: 28928 + 1: 61696 26,-24: - 1: 18176 + 1: 20224 26,-23: 1: 35044 26,-22: 1: 2280 + 27,-23: + 1: 256 27,-22: 1: 8960 20,-25: 0: 12288 - 1: 35056 + 1: 35058 21,-24: 1: 4368 21,-23: @@ -18390,6 +18581,8 @@ entities: 1: 19456 23,-25: 1: 49152 + 21,-25: + 1: 4096 8,9: 1: 63088 7,9: @@ -18401,9 +18594,13 @@ entities: 9,9: 1: 63616 11,9: - 1: 3 + 1: 35 + 5,8: + 1: 8 6,9: 1: 196 + 19,-26: + 1: 4096 16,4: 1: 2176 33,-11: @@ -18472,10 +18669,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 + - 0 + - 0 - 0 - 0 - 0 @@ -18489,11 +18686,11 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.6852 - - 81.57766 - 0 - 0 - 0 + - 6666.982 + - 0 - 0 - 0 - 0 @@ -18504,8 +18701,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 - - 0 + - 21.824806 + - 82.102844 - 0 - 0 - 0 @@ -18519,11 +18716,11 @@ entities: - volume: 2500 temperature: 293.15 moles: + - 21.6852 + - 81.57766 - 0 - 0 - 0 - - 6666.982 - - 0 - 0 - 0 - 0 @@ -18534,8 +18731,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 + - 6666.982 - 0 - 0 - 0 @@ -18549,7 +18746,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 - 6666.982 - 0 - 0 @@ -18561,6 +18757,7 @@ entities: - 0 - 0 - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -18738,12 +18935,29 @@ entities: - type: ContainedSolution containerName: tank container: 59 + - uid: 15531 + components: + - type: MetaData + name: solution - food + - type: Transform + parent: 15460 + - type: Solution + solution: + maxVol: 10 + name: food + reagents: + - data: [] + ReagentId: Fiber + Quantity: 10 + - type: ContainedSolution + containerName: food + container: 15460 - uid: 40666 components: - type: MetaData name: NT-SEC "Overseer" - type: Transform - pos: 62.594864,18.048992 + pos: 61.51674,18.486492 parent: 1 - type: MapGrid chunks: @@ -18973,7 +19187,7 @@ entities: - type: MetaData name: Shedevrolet - type: Transform - pos: 108.55085,-20.050259 + pos: 107.5196,-19.534634 parent: 1 - type: MapGrid chunks: @@ -19025,11 +19239,11 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAEAAAAAAAfgAAAAAAHwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAEAAAAAAAHwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAEAAAAAAAfgAAAAAAHwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAEAAAAAAAHwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAHAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAGgAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAFwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAGgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAGgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAGgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAHAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAHAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAHAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAGgAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAFwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAGgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAGgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAGgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAHAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAHAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAHAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 @@ -19526,7 +19740,8 @@ entities: 0: 52428 -2,-2: 1: 4369 - 0: 52416 + 0: 36032 + 2: 16384 -2,-5: 1: 12032 -1,-4: @@ -20006,12 +20221,14 @@ entities: 0: 16384 1: 32768 1,-3: - 1: 64563 + 1: 62515 + 2: 2048 0: 8 1,-2: 1: 30579 1,-1: - 1: 1904 + 1: 1392 + 3: 512 1,-4: 1: 8192 0: 16384 @@ -20050,6 +20267,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -20775,6 +21022,8 @@ entities: devices: - 24400 - 24644 + - 42053 + - 28716 - uid: 157 components: - type: Transform @@ -20791,7 +21040,6 @@ entities: - 19362 - 19493 - 19492 - - 19558 - 19560 - 19559 - 19357 @@ -21104,8 +21352,8 @@ entities: - uid: 173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-26.5 + rot: 1.5707963267948966 rad + pos: -50.5,-19.5 parent: 2 - type: DeviceList devices: @@ -21951,14 +22199,12 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,19.5 + pos: 24.5,19.5 parent: 2 - type: DeviceList devices: - 19488 - 19613 - - 1041 - - 19612 - 19513 - uid: 231 components: @@ -21984,17 +22230,6 @@ entities: - 19158 - 19176 - 19177 - - uid: 233 - components: - - type: Transform - pos: 26.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 19489 - - 19612 - - 1037 - - 19614 - uid: 234 components: - type: Transform @@ -22227,12 +22462,13 @@ entities: - 19633 - 19634 - 19635 - - 19650 - 1044 - - 24810 - 24477 - - 24809 - 24813 + - 26538 + - 26540 + - 42386 + - 42385 - uid: 249 components: - type: Transform @@ -22357,8 +22593,12 @@ entities: - 1063 - 24731 - 24493 - - 19655 - 19217 + - 42384 + - 26906 + - 42382 + - 42383 + - 12373 - uid: 257 components: - type: Transform @@ -23075,6 +23315,20 @@ entities: - 41818 - 41822 - 41678 + - uid: 42374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 42387 + - 42373 + - 31144 + - 42382 + - 19489 + - 42381 - proto: AirAlarmAssembly entities: - uid: 302 @@ -23340,11 +23594,6 @@ entities: - type: Transform pos: -45.5,-93.5 parent: 2 - - uid: 347 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - uid: 348 components: - type: Transform @@ -23378,11 +23627,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-73.5 parent: 2 - - uid: 354 - components: - - type: Transform - pos: 88.5,-52.5 - parent: 2 - uid: 355 components: - type: Transform @@ -23447,11 +23691,6 @@ entities: - type: Transform pos: 32.5,33.5 parent: 2 - - uid: 367 - components: - - type: Transform - pos: -15.5,8.5 - parent: 2 - uid: 368 components: - type: Transform @@ -23469,12 +23708,6 @@ entities: - type: Transform pos: 3.5,-39.5 parent: 2 - - uid: 371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,19.5 - parent: 2 - proto: AirlockArmoryGlassLocked entities: - uid: 372 @@ -23503,6 +23736,13 @@ entities: - type: Transform pos: 3.5,-35.5 parent: 2 +- proto: AirlockAssemblyCentralCommand + entities: + - uid: 42102 + components: + - type: Transform + pos: -56.5,-93.5 + parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: - uid: 376 @@ -23795,6 +24035,12 @@ entities: parent: 2 - proto: AirlockCommandLocked entities: + - uid: 367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,8.5 + parent: 2 - uid: 420 components: - type: Transform @@ -25260,11 +25506,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,9.5 parent: 2 - - uid: 641 - components: - - type: Transform - pos: 29.5,24.5 - parent: 2 - uid: 642 components: - type: Transform @@ -25364,6 +25605,16 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-37.5 parent: 2 + - uid: 690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,17.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + access: + - - Hydroponics - proto: AirlockHeadOfPersonnelLocked entities: - uid: 660 @@ -25408,24 +25659,39 @@ entities: parent: 2 - proto: AirlockHydroponicsLocked entities: - - uid: 666 + - uid: 19891 components: - type: Transform - pos: 33.5,20.5 + rot: 3.141592653589793 rad + pos: 35.5,16.5 parent: 2 -- proto: AirlockJanitorLocked - entities: - - uid: 667 + - uid: 28552 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,2.5 + pos: 34.5,19.5 parent: 2 +- proto: AirlockJanitorLocked + entities: - uid: 668 components: - type: Transform pos: -7.5,-73.5 parent: 2 + - uid: 31747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 2 - proto: AirlockLawyerLocked entities: - uid: 669 @@ -25434,6 +25700,21 @@ entities: rot: 3.141592653589793 rad pos: -20.5,2.5 parent: 2 +- proto: AirlockMaint + entities: + - uid: 33533 + components: + - type: MetaData + name: Сад + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + access: + - - Hydroponics + - - Kitchen - proto: AirlockMaintAtmoLocked entities: - uid: 670 @@ -25532,6 +25813,11 @@ entities: - type: Transform pos: -53.5,-94.5 parent: 2 + - uid: 38507 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 - proto: AirlockMaintGlassLocked entities: - uid: 685 @@ -25559,19 +25845,13 @@ entities: parent: 2 - proto: AirlockMaintHydroLocked entities: - - uid: 689 + - uid: 26904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,16.5 + pos: 38.5,17.5 parent: 2 - proto: AirlockMaintKitchenLocked entities: - - uid: 690 - components: - - type: Transform - pos: 30.5,15.5 - parent: 2 - uid: 691 components: - type: Transform @@ -25933,6 +26213,17 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-77.5 parent: 2 + - uid: 27990 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 29715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,-53.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 754 @@ -26604,6 +26895,14 @@ entities: - type: Transform pos: -62.5,-67.5 parent: 2 +- proto: AirlockSecurity + entities: + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,19.5 + parent: 2 - proto: AirlockSecurityGlass entities: - uid: 866 @@ -27024,6 +27323,20 @@ entities: parent: 86 - type: Physics canCollide: False + - uid: 42088 + components: + - type: Transform + parent: 41840 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42089 + components: + - type: Transform + parent: 41840 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AirSensor entities: - uid: 933 @@ -27677,15 +27990,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,17.5 parent: 2 - - uid: 1037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 233 - uid: 1038 components: - type: Transform @@ -27707,15 +28011,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-82.5 parent: 2 - - uid: 1041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 230 - uid: 1042 components: - type: Transform @@ -28192,6 +28487,14 @@ entities: - type: DeviceNetwork deviceLists: - 300 + - uid: 12373 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 256 - uid: 40670 components: - type: Transform @@ -28225,6 +28528,15 @@ entities: - type: DeviceNetwork deviceLists: - 41670 + - uid: 42387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 42374 - proto: AltarBananium entities: - uid: 1098 @@ -28467,7 +28779,7 @@ entities: name: Тех тоннели СВ - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,18.5 + pos: 24.5,18.5 parent: 2 - uid: 1136 components: @@ -29090,14 +29402,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,10.5 parent: 2 - - uid: 1216 - components: - - type: MetaData - name: Тех тоннели С - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,7.5 - parent: 2 - uid: 1217 components: - type: MetaData @@ -29154,13 +29458,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-116.5 parent: 2 - - uid: 1224 - components: - - type: MetaData - name: Гидропоника - - type: Transform - pos: 34.5,16.5 - parent: 2 - uid: 1225 components: - type: MetaData @@ -29208,14 +29505,6 @@ entities: rot: 1.5707963267948966 rad pos: 80.5,-47.5 parent: 2 - - uid: 1231 - components: - - type: MetaData - name: Офис адвоката - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,23.5 - parent: 2 - uid: 1232 components: - type: MetaData @@ -29299,12 +29588,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-117.5 parent: 2 - - uid: 1243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-2.5 - parent: 2 - uid: 1244 components: - type: MetaData @@ -29609,12 +29892,6 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,22.5 parent: 2 - - uid: 1292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,21.5 - parent: 2 - uid: 1293 components: - type: Transform @@ -29643,6 +29920,35 @@ entities: - type: Transform pos: -17.5,8.5 parent: 2 + - uid: 5507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,6.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,-2.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,16.5 + parent: 2 + - uid: 11685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,3.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 - uid: 40672 components: - type: Transform @@ -29669,14 +29975,6 @@ entities: parent: 41669 - proto: APCConstructed entities: - - uid: 1298 - components: - - type: MetaData - name: Тех тоннели СЗ - - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,2.5 - parent: 2 - uid: 1299 components: - type: MetaData @@ -29748,17 +30046,15 @@ entities: parent: 2 - proto: ArrivalsShuttleTimer entities: - - uid: 1309 + - uid: 42559 components: - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,-37.5 + pos: 90.5,-24.5 parent: 2 - - uid: 1310 + - uid: 42560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,-25.5 + pos: 97.5,-38.5 parent: 2 - proto: ArtistCircuitBoard entities: @@ -29913,10 +30209,8 @@ entities: - uid: 1346 components: - type: Transform - parent: 1345 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 16.471539,18.571913 + parent: 2 - proto: AsteroidRockQuartz entities: - uid: 1349 @@ -30055,11 +30349,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1384 - components: - - type: Transform - pos: 56.458767,15.144732 - parent: 2 - proto: AtmosDeviceFanDirectional entities: - uid: 1385 @@ -30611,6 +30900,36 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-96.5 parent: 2 + - uid: 1770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-93.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-93.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-92.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-92.5 + parent: 2 + - uid: 42820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-93.5 + parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 1473 @@ -32122,39 +32441,12 @@ entities: parent: 2 - proto: AtmosFixPlasmaMarker entities: - - uid: 1770 - components: - - type: Transform - pos: 30.5,-93.5 - parent: 2 - uid: 1771 components: - type: Transform + rot: 1.5707963267948966 rad pos: 31.5,-92.5 parent: 2 - - uid: 1772 - components: - - type: Transform - pos: 32.5,-93.5 - parent: 2 - - uid: 1773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-92.5 - parent: 2 - - uid: 1774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-93.5 - parent: 2 - - uid: 1775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-92.5 - parent: 2 - proto: Autolathe entities: - uid: 1776 @@ -32368,8 +32660,7 @@ entities: - uid: 1819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.53142,0.4770832 + pos: -74.47151,0.5565684 parent: 2 - uid: 1820 components: @@ -32672,11 +32963,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-25.5 parent: 2 - - uid: 1874 - components: - - type: Transform - pos: 44.5,19.5 - parent: 2 - uid: 1875 components: - type: Transform @@ -32830,6 +33116,11 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-40.5 parent: 2 + - uid: 37537 + components: + - type: Transform + pos: -56.5,-93.5 + parent: 2 - proto: BarricadeDirectional entities: - uid: 1903 @@ -33205,6 +33496,18 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-23.5 parent: 2 +- proto: BaseFlatpack + entities: + - uid: 42079 + components: + - type: MetaData + desc: Упаковка, при помощи которой можно создать портативный генератор С.У.П.Е.Р.П.А.К.М.А.Н.. + name: упакованный портативный генератор С.У.П.Е.Р.П.А.К.М.А.Н. + - type: Transform + pos: 6.488968,-9.506165 + parent: 41669 + - type: Flatpack + entity: PortableGeneratorSuperPacman - proto: BaseGasCondenser entities: - uid: 1968 @@ -33237,11 +33540,6 @@ entities: - type: Transform pos: -68.27095,-63.076958 parent: 2 - - uid: 1973 - components: - - type: Transform - pos: 35.93333,15.667838 - parent: 2 - uid: 1974 components: - type: Transform @@ -33612,11 +33910,6 @@ entities: - type: Transform pos: -5.5,-8.5 parent: 40828 - - uid: 41682 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 41669 - proto: BedsheetMime entities: - uid: 2055 @@ -33636,6 +33929,11 @@ entities: - type: Transform pos: -13.5,9.5 parent: 2 + - uid: 42097 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 41669 - proto: BedsheetOrange entities: - uid: 2058 @@ -33920,6 +34218,22 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 + - uid: 30785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-41.5 + parent: 2 + - uid: 30788 + components: + - type: Transform + pos: 58.5,-36.5 + parent: 2 + - uid: 32168 + components: + - type: Transform + pos: 48.5,-37.5 + parent: 2 - proto: Bible entities: - uid: 14 @@ -33956,10 +34270,10 @@ entities: - type: Transform pos: 87.5,-3.5 parent: 2 - - uid: 2110 + - uid: 13351 components: - type: Transform - pos: 35.5,23.5 + pos: 33.5,21.5 parent: 2 - proto: BiomassReclaimer entities: @@ -34559,59 +34873,58 @@ entities: - type: Transform pos: 3.5,-5.5 parent: 40828 - - uid: 40849 + - uid: 42069 components: - type: Transform - pos: -4.5,-0.5 + rot: 3.141592653589793 rad + pos: 5.5,-2.5 parent: 40828 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 41326: - - DoorStatus: InputA - 41327: - - DoorStatus: InputA - - uid: 40850 + 40857: + - DoorStatus: Close + 40858: + - DoorStatus: Close + - uid: 42070 components: + - type: MetaData + name: кнопка капитана - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-2.5 + pos: -4.5,-0.5 parent: 40828 - type: DeviceLinkSource linkedPorts: - 41328: + 42072: - DoorStatus: InputA - 41327: - - DoorStatus: InputB - - uid: 40851 + - uid: 42071 components: + - type: MetaData + name: кнопка гсб - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-2.5 + pos: -4.5,-2.5 parent: 40828 - type: DeviceLinkSource linkedPorts: - 41328: + 42072: - DoorStatus: InputB - - uid: 40852 + - uid: 42073 components: - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 40828 + - type: WirelessNetworkConnection + range: 2000 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource + range: 3000 linkedPorts: - 41326: - - DoorStatus: InputB - 41164: - - DoorStatus: Trigger - 41166: - - DoorStatus: Trigger - 41167: - - DoorStatus: Trigger - 41168: - - DoorStatus: Trigger - 41169: - - DoorStatus: Trigger - 41165: + 19786: - DoorStatus: Trigger - proto: BlastDoorOpen entities: @@ -34720,18 +35033,38 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-3.5 parent: 2 + - type: Door + performCollisionCheck: False - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 2227: + - DoorStatus: Open + 2233: + - DoorStatus: Open - uid: 2227 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-4.5 parent: 2 + - type: Door + performCollisionCheck: False - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 2226: + - DoorStatus: Open + 2233: + - DoorStatus: Open - uid: 2228 components: - type: Transform @@ -34746,9 +35079,19 @@ entities: rot: 3.141592653589793 rad pos: 65.5,-8.5 parent: 2 + - type: Door + performCollisionCheck: False - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 2234: + - DoorStatus: Open + 2232: + - DoorStatus: Open - uid: 2230 components: - type: Transform @@ -34757,6 +35100,14 @@ entities: - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 2235: + - DoorStatus: Open + 2231: + - DoorStatus: Open - uid: 2231 components: - type: Transform @@ -34765,33 +35116,77 @@ entities: - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 2235: + - DoorStatus: Open + 2230: + - DoorStatus: Open + 2232: + - DoorStatus: Open + 2229: + - DoorStatus: Open + 2234: + - DoorStatus: Open - uid: 2232 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-7.5 parent: 2 + - type: Door + performCollisionCheck: False - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 2229: + - DoorStatus: Open + 2234: + - DoorStatus: Open - uid: 2233 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-5.5 parent: 2 + - type: Door + performCollisionCheck: False - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 2227: + - DoorStatus: Open + 2226: + - DoorStatus: Open - uid: 2234 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-9.5 parent: 2 + - type: Door + performCollisionCheck: False - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 2229: + - DoorStatus: Open + 2232: + - DoorStatus: Open - uid: 2235 components: - type: Transform @@ -34800,6 +35195,14 @@ entities: - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 2230: + - DoorStatus: Open + 2231: + - DoorStatus: Open - uid: 2236 components: - type: Transform @@ -34816,6 +35219,12 @@ entities: - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2238: + - DoorStatus: Open - uid: 2238 components: - type: Transform @@ -34824,6 +35233,12 @@ entities: - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2237: + - DoorStatus: Open - uid: 2239 components: - type: Transform @@ -34832,6 +35247,12 @@ entities: - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2240: + - DoorStatus: Open - uid: 2240 components: - type: Transform @@ -34840,6 +35261,12 @@ entities: - type: AccessReader access: - - Armory + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2239: + - DoorStatus: Open - uid: 2241 components: - type: Transform @@ -34885,40 +35312,33 @@ entities: - type: AccessReader access: - - Armory - - uid: 40853 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 40828 - - uid: 40854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 40828 - - uid: 40855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 40828 - - uid: 40856 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 40828 - uid: 40857 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,16.5 parent: 40828 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 40858 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,16.5 parent: 40828 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 41326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-84.5 + parent: 2 + - uid: 41327 + components: + - type: Transform + pos: 46.5,-84.5 + parent: 2 - uid: 41683 components: - type: Transform @@ -35203,6 +35623,149 @@ entities: В кафе раздаются победные фанфары: Океания победила Евразию. Уинстон тоже одерживает победу — над собой. Он любит Старшего Брата. + - uid: 32207 + components: + - type: MetaData + name: Пневмохимия + - type: Transform + pos: 39.02535,-52.404026 + parent: 2 + - type: Paper + content: >- + Газы + + + | ИМЯ | УДЕЛЬНАЯ ТЕПЛОЕМКОСТЬ | + + |----------------|---------------------------| + + | кислород | 20 | + + | азот | 30 | + + | углекислый газ| 30 | + + | плазма | 200 | + + | тритий | 10 | + + | водяной пар | 40 | + + | аммиак | 20 | + + | оксид азота | 40 | + + | фрезон | 600 | + + + Правила реакций + + + - Реакции происходят каждые 0.5с + + - Все реакции требуют как минимум 0.01моль каждого задействованного газа + + - Реакции с более высоким приоритетом происходят первыми в течение тика + + + Реакция горения плазмы + + - Происходит только выше 373.15K + + - Скорость горения изменяется от 100°C до 1370°C + + - Соотношение плазма:кислород от 5:7 до 5:2 с изменением температуры от 100°C до 1370°C + + - Выделяет 160кДж на моль сгоревшей плазмы + + - Сгоревший кислород утилизируется + + - Ниже 1:96 плазма:кислород, превращает плазму в тритий + + - Между 1:96 и 3:96 плазма превращается в смесь CO2 и трития + + - Пропорция превращаемой в тритий плазмы увеличивается от 0% до 100% при изменении соотношения кислород:плазма от 3:96 до 1:96 + + - Выше 3:96 плазма превращается в CO2 + + - Приоритет: -2 + + + Реакция производства фрезона + + - Происходит только ниже 73.15K + + - Потребляет тритий и кислород в соотношении 1:50 тритий:кислород + + - Азот требуется как катализатор, не потребляется + + - Потребляет 1/50 доступной смеси тритий-кислород + + - Преобразует весь потребленный газ в азот и фрезон + + - При низких температурах образует больше азота и меньше фрезона + + - При недостатке азота замедляется + + - Процент азота уменьшается от 10% кислорода при 73.15K до 3.16% при 23.15K + + - Приоритет: 2 + + + Реакция горения трития + + - Происходит только выше 373.15K + + - Если кислорода меньше трития или энергия смеси ниже 143кДж, то тритий горит, образуя воду + + - Выделяет 284кДж на моль + + - Иначе сжигает кислород в пар, горит 10% трития + + - Выделяет 2840кДж на моль сгоревшего кислорода + + - Приоритет: -1 + + + Реакция охлаждения фрезоном + + - Происходит только выше 23.15K + + - Скорость увеличивается от 23.15K до 373.15K + + - Потребляет 1/20 фрезона и 5 раз больше азота + + - Преобразует газ в закись азота + + - Образует 600кДж холода на моль фрезона + + - При высоких температурах создает холод более эффективно + + - Приоритет: 1 + + + Реакция аммиака и кислорода + + - Происходит только выше 323.15K + + - Скорость реакции: + reaction_speed = аммиак * (аммиак / общий_газ)^2 * (кислород / общий_газ)^2 / 5 + - Сжигает кислород и аммиак со скоростью реакции + + - Преобразует газ в смесь 1:3 закиси азота и водяного пара + + - Приоритет: 2 + + + Разложение оксида азота + + - Происходит только выше 850K + + - Потребляет половину оксида азота + + - Образует 1моль азота и 0.5моль кислорода на 1моль газа + + - Приоритет: 0 - proto: BookBSS entities: - uid: 2272 @@ -35324,11 +35887,6 @@ entities: - type: Transform pos: -29.62345,-5.3396664 parent: 2 - - uid: 2285 - components: - - type: Transform - pos: 4.520339,-73.45359 - parent: 2 - uid: 2286 components: - type: Transform @@ -35354,11 +35912,6 @@ entities: - type: Transform pos: 72.5,-37.5 parent: 2 - - uid: 2290 - components: - - type: Transform - pos: 24.5,22.5 - parent: 2 - uid: 2291 components: - type: Transform @@ -35414,11 +35967,6 @@ entities: - type: Transform pos: -51.5,-47.5 parent: 2 - - uid: 2302 - components: - - type: Transform - pos: 4.5,-71.5 - parent: 2 - uid: 2303 components: - type: Transform @@ -35531,21 +36079,11 @@ entities: - type: Transform pos: 72.5,-39.5 parent: 2 - - uid: 2325 - components: - - type: Transform - pos: 5.5,-71.5 - parent: 2 - uid: 2326 components: - type: Transform pos: 29.5,-73.5 parent: 2 - - uid: 2327 - components: - - type: Transform - pos: 24.5,21.5 - parent: 2 - uid: 2328 components: - type: Transform @@ -35681,6 +36219,11 @@ entities: - type: Transform pos: -15.5,-54.5 parent: 2 + - uid: 2357 + components: + - type: Transform + pos: -67.5,-15.5 + parent: 2 - proto: BorgHypo entities: - uid: 2350 @@ -35721,14 +36264,6 @@ entities: - type: Transform pos: 39.485535,-35.582695 parent: 2 -- proto: BorgModuleSyndicateWeapon - entities: - - uid: 2357 - components: - - type: Transform - parent: 2356 - - type: Physics - canCollide: False - proto: BorgModuleTreatment entities: - uid: 2358 @@ -35736,19 +36271,12 @@ entities: - type: Transform pos: 38.516785,-35.57139 parent: 2 -- proto: BowImprovised - entities: - - uid: 2359 - components: - - type: Transform - pos: 87.424194,-51.558376 - parent: 2 - proto: BoxAgrichem entities: - uid: 2360 components: - type: Transform - pos: -12.938774,-11.480915 + pos: -13.087654,-11.263999 parent: 2 - proto: BoxBeaker entities: @@ -35886,7 +36414,7 @@ entities: - uid: 2383 components: - type: Transform - pos: 52.479095,-1.3634124 + pos: 52.490124,-1.4176376 parent: 2 - proto: BoxFlare entities: @@ -35959,16 +36487,6 @@ entities: rot: 3.141592653589793 rad pos: 24.373444,-75.74954 parent: 2 - - uid: 2394 - components: - - type: Transform - pos: 28.668644,21.70553 - parent: 2 - - uid: 2395 - components: - - type: Transform - pos: 28.637394,21.64303 - parent: 2 - uid: 2396 components: - type: Transform @@ -35988,6 +36506,187 @@ entities: - type: Transform pos: 47.527016,-1.4603112 parent: 2 + - uid: 42105 + components: + - type: MetaData + name: держатель для карт + - type: Transform + pos: -67.63749,-9.236169 + parent: 2 + - type: Storage + grid: + - 0,2,0,2 + - 1,0,1,0 + - 1,4,1,4 + - 2,2,2,2 + - 3,0,3,0 + - 3,4,3,4 + - 4,2,4,2 + - 5,0,5,0 + - 5,4,5,4 + - 6,2,6,2 + - 7,0,7,0 + - 7,4,7,4 + - 8,2,8,2 + - 9,0,9,0 + - 9,4,9,4 + - 10,2,10,2 + - 11,0,11,0 + - 11,4,11,4 + - 12,2,12,2 + missingComponents: + - StorageFill + - uid: 42106 + components: + - type: MetaData + name: держатель для карт + - type: Transform + pos: -67.74276,-9.260199 + parent: 2 + - type: Storage + grid: + - 0,2,0,2 + - 1,0,1,0 + - 1,4,1,4 + - 2,2,2,2 + - 3,0,3,0 + - 3,4,3,4 + - 4,2,4,2 + - 5,0,5,0 + - 5,4,5,4 + - 6,2,6,2 + - 7,0,7,0 + - 7,4,7,4 + - 8,2,8,2 + - 9,0,9,0 + - 9,4,9,4 + - 10,2,10,2 + - 11,0,11,0 + - 11,4,11,4 + - 12,2,12,2 + missingComponents: + - StorageFill + - uid: 42107 + components: + - type: MetaData + name: держатель для карт + - type: Transform + pos: -67.6615,-9.284351 + parent: 2 + - type: Storage + grid: + - 0,2,0,2 + - 1,0,1,0 + - 1,4,1,4 + - 2,2,2,2 + - 3,0,3,0 + - 3,4,3,4 + - 4,2,4,2 + - 5,0,5,0 + - 5,4,5,4 + - 6,2,6,2 + - 7,0,7,0 + - 7,4,7,4 + - 8,2,8,2 + - 9,0,9,0 + - 9,4,9,4 + - 10,2,10,2 + - 11,0,11,0 + - 11,4,11,4 + - 12,2,12,2 + missingComponents: + - StorageFill + - uid: 42198 + components: + - type: MetaData + desc: Удобный держатель для карт. NanoTresen беспокоит ваше удобство. Честно! + name: держатель для карт + - type: Transform + pos: -67.62931,-9.256274 + parent: 2 + - type: Storage + grid: + - 0,2,0,2 + - 1,0,1,0 + - 1,4,1,4 + - 2,2,2,2 + - 3,0,3,0 + - 3,4,3,4 + - 4,2,4,2 + - 5,0,5,0 + - 5,4,5,4 + - 6,2,6,2 + - 7,0,7,0 + - 7,4,7,4 + - 8,2,8,2 + - 9,0,9,0 + - 9,4,9,4 + - 10,2,10,2 + - 11,0,11,0 + - 11,4,11,4 + - 12,2,12,2 + missingComponents: + - StorageFill + - uid: 42199 + components: + - type: MetaData + name: держатель для карт + - type: Transform + pos: -67.63749,-9.236169 + parent: 2 + - type: Storage + grid: + - 0,2,0,2 + - 1,0,1,0 + - 1,4,1,4 + - 2,2,2,2 + - 3,0,3,0 + - 3,4,3,4 + - 4,2,4,2 + - 5,0,5,0 + - 5,4,5,4 + - 6,2,6,2 + - 7,0,7,0 + - 7,4,7,4 + - 8,2,8,2 + - 9,0,9,0 + - 9,4,9,4 + - 10,2,10,2 + - 11,0,11,0 + - 11,4,11,4 + - 12,2,12,2 + missingComponents: + - StorageFill + - uid: 42200 + components: + - type: MetaData + name: держатель для карт + - type: Transform + pos: -67.6615,-9.284351 + parent: 2 + - type: Storage + grid: + - 0,2,0,2 + - 1,0,1,0 + - 1,4,1,4 + - 2,2,2,2 + - 3,0,3,0 + - 3,4,3,4 + - 4,2,4,2 + - 5,0,5,0 + - 5,4,5,4 + - 6,2,6,2 + - 7,0,7,0 + - 7,4,7,4 + - 8,2,8,2 + - 9,0,9,0 + - 9,4,9,4 + - 10,2,10,2 + - 11,0,11,0 + - 11,4,11,4 + - 12,2,12,2 + missingComponents: + - StorageFill - proto: BoxFolderBlue entities: - uid: 2399 @@ -36023,6 +36722,408 @@ entities: - type: Transform pos: -15.46695,5.6062393 parent: 2 +- proto: BoxFolderCentCom + entities: + - uid: 42108 + components: + - type: MetaData + desc: Однажды NanoTrasen проиграла патент на трусы. За доказательством посмотрите под комбинезон. + name: колода карт (36 шт.) + - type: Transform + pos: -67.57977,-9.481076 + parent: 2 + - type: Storage + grid: + - 0,0,8,3 + storedItems: + 42109: + position: 0,0 + _rotation: South + 42117: + position: 1,0 + _rotation: South + 42116: + position: 2,0 + _rotation: South + 42115: + position: 3,0 + _rotation: South + 42114: + position: 4,0 + _rotation: South + 42113: + position: 5,0 + _rotation: South + 42112: + position: 6,0 + _rotation: South + 42111: + position: 7,0 + _rotation: South + 42110: + position: 8,0 + _rotation: South + 42118: + position: 0,1 + _rotation: South + 42125: + position: 1,1 + _rotation: South + 42124: + position: 2,1 + _rotation: South + 42123: + position: 3,1 + _rotation: South + 42122: + position: 4,1 + _rotation: South + 42121: + position: 5,1 + _rotation: South + 42120: + position: 6,1 + _rotation: South + 42119: + position: 7,1 + _rotation: South + 42126: + position: 8,1 + _rotation: South + 42127: + position: 0,2 + _rotation: South + 42135: + position: 1,2 + _rotation: South + 42134: + position: 2,2 + _rotation: South + 42133: + position: 3,2 + _rotation: South + 42132: + position: 4,2 + _rotation: South + 42131: + position: 5,2 + _rotation: South + 42130: + position: 6,2 + _rotation: South + 42129: + position: 7,2 + _rotation: South + 42128: + position: 8,2 + _rotation: South + 42136: + position: 0,3 + _rotation: South + 42144: + position: 1,3 + _rotation: South + 42143: + position: 2,3 + _rotation: South + 42142: + position: 3,3 + _rotation: South + 42141: + position: 4,3 + _rotation: South + 42140: + position: 5,3 + _rotation: South + 42139: + position: 6,3 + _rotation: South + 42138: + position: 7,3 + _rotation: South + 42137: + position: 8,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 42109 + - 42117 + - 42116 + - 42115 + - 42114 + - 42113 + - 42112 + - 42111 + - 42110 + - 42118 + - 42125 + - 42124 + - 42123 + - 42122 + - 42121 + - 42120 + - 42119 + - 42126 + - 42127 + - 42135 + - 42134 + - 42133 + - 42132 + - 42131 + - 42130 + - 42129 + - 42128 + - 42136 + - 42144 + - 42143 + - 42142 + - 42141 + - 42140 + - 42139 + - 42138 + - 42137 + - type: Dumpable + delayPerItem: 0 + soundDump: !type:SoundCollectionSpecifier + collection: storageRustle + missingComponents: + - StorageFill + - uid: 42145 + components: + - type: MetaData + desc: Однажды NanoTrasen проиграла патент на трусы. За доказательством посмотрите под комбинезон. + name: колода карт (52 шт.) + - type: Transform + pos: -67.599,-9.409351 + parent: 2 + - type: Storage + grid: + - 0,0,12,3 + storedItems: + 42150: + position: 12,0 + _rotation: South + 42161: + position: 0,0 + _rotation: South + 42160: + position: 1,0 + _rotation: South + 42159: + position: 2,0 + _rotation: South + 42158: + position: 3,0 + _rotation: South + 42157: + position: 4,0 + _rotation: South + 42156: + position: 5,0 + _rotation: South + 42155: + position: 6,0 + _rotation: South + 42147: + position: 7,0 + _rotation: South + 42154: + position: 8,0 + _rotation: South + 42153: + position: 9,0 + _rotation: South + 42152: + position: 10,0 + _rotation: South + 42151: + position: 11,0 + _rotation: South + 42162: + position: 12,1 + _rotation: South + 42173: + position: 0,1 + _rotation: South + 42172: + position: 1,1 + _rotation: South + 42171: + position: 2,1 + _rotation: South + 42170: + position: 3,1 + _rotation: South + 42169: + position: 4,1 + _rotation: South + 42168: + position: 5,1 + _rotation: South + 42167: + position: 6,1 + _rotation: South + 42148: + position: 7,1 + _rotation: South + 42166: + position: 8,1 + _rotation: South + 42165: + position: 9,1 + _rotation: South + 42164: + position: 10,1 + _rotation: South + 42163: + position: 11,1 + _rotation: South + 42185: + position: 0,2 + _rotation: South + 42184: + position: 1,2 + _rotation: South + 42183: + position: 2,2 + _rotation: South + 42182: + position: 3,2 + _rotation: South + 42181: + position: 4,2 + _rotation: South + 42180: + position: 5,2 + _rotation: South + 42179: + position: 6,2 + _rotation: South + 42146: + position: 7,2 + _rotation: South + 42178: + position: 8,2 + _rotation: South + 42177: + position: 9,2 + _rotation: South + 42176: + position: 10,2 + _rotation: South + 42175: + position: 11,2 + _rotation: South + 42174: + position: 12,2 + _rotation: South + 42197: + position: 0,3 + _rotation: South + 42196: + position: 1,3 + _rotation: South + 42195: + position: 2,3 + _rotation: South + 42194: + position: 3,3 + _rotation: South + 42193: + position: 4,3 + _rotation: South + 42192: + position: 5,3 + _rotation: South + 42191: + position: 6,3 + _rotation: South + 42149: + position: 7,3 + _rotation: South + 42190: + position: 8,3 + _rotation: South + 42189: + position: 9,3 + _rotation: South + 42188: + position: 10,3 + _rotation: South + 42187: + position: 11,3 + _rotation: South + 42186: + position: 12,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 42150 + - 42161 + - 42160 + - 42159 + - 42158 + - 42157 + - 42156 + - 42155 + - 42147 + - 42154 + - 42153 + - 42152 + - 42151 + - 42162 + - 42173 + - 42172 + - 42171 + - 42170 + - 42169 + - 42168 + - 42167 + - 42148 + - 42166 + - 42165 + - 42164 + - 42163 + - 42185 + - 42184 + - 42183 + - 42182 + - 42181 + - 42180 + - 42179 + - 42146 + - 42178 + - 42177 + - 42176 + - 42175 + - 42174 + - 42197 + - 42196 + - 42195 + - 42194 + - 42193 + - 42192 + - 42191 + - 42149 + - 42190 + - 42189 + - 42188 + - 42187 + - 42186 + - type: Dumpable + delayPerItem: 0 + soundDump: !type:SoundCollectionSpecifier + collection: storageRustle + missingComponents: + - StorageFill - proto: BoxFolderGreen entities: - uid: 2405 @@ -36172,6 +37273,13 @@ entities: - type: Transform pos: -11.478622,10.836695 parent: 2 +- proto: BoxForensicPad + entities: + - uid: 42450 + components: + - type: Transform + pos: 41.65592,-26.244795 + parent: 2 - proto: BoxHandcuff entities: - uid: 2431 @@ -36197,16 +37305,15 @@ entities: - type: InsideEntityStorage - proto: BoxingBell entities: - - uid: 2432 + - uid: 2433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-82.5 + pos: 82.5,-3.5 parent: 2 - - uid: 2433 + - uid: 30784 components: - type: Transform - pos: 82.5,-3.5 + pos: -35.5,-100.5 parent: 2 - proto: BoxLatexGloves entities: @@ -36302,12 +37409,6 @@ entities: parent: 2 - proto: BoxMouthSwab entities: - - uid: 2446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.61387,15.57678 - parent: 2 - uid: 2447 components: - type: Transform @@ -36318,6 +37419,11 @@ entities: - type: Transform pos: -11.47884,-35.379707 parent: 2 + - uid: 8468 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 - proto: BoxMRE entities: - uid: 2450 @@ -36463,6 +37569,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 16516 + components: + - type: Transform + parent: 16307 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxShotgunIncendiary entities: - uid: 2472 @@ -36517,6 +37630,13 @@ entities: - type: Transform pos: 62.492535,-2.3247187 parent: 2 +- proto: BoxTrashbag + entities: + - uid: 33501 + components: + - type: Transform + pos: 9.538317,0.6497593 + parent: 2 - proto: BrbSign entities: - uid: 2496 @@ -36657,6 +37777,41 @@ entities: - type: Transform pos: 53.5,-12.5 parent: 2 + - uid: 12788 + components: + - type: MetaData + desc: Это таймер показывающий время до прибытия ОБР. + name: таймер прибытия обр + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,12.5 + parent: 2 + - type: AccessReader + access: + - - CentralCommand + - type: SignalTimer + delay: 2405 + missingComponents: + - ApcPowerReceiver + - uid: 19786 + components: + - type: MetaData + desc: Это таймер показывающий время до прибытия ОБР. + name: таймер прибытия ОБР + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,18.5 + parent: 2 + - type: AccessReader + access: + - - CentralCommand + - type: SignalTimer + delay: 2405 + - type: DeviceLinkSink + invokeCounter: 1 + - type: ActiveSignalTimer + missingComponents: + - ApcPowerReceiver - proto: BrokenBottle entities: - uid: 2511 @@ -36739,6 +37894,11 @@ entities: parent: 2 - proto: Bucket entities: + - uid: 2359 + components: + - type: Transform + pos: 9.453653,-2.3906138 + parent: 2 - uid: 2543 components: - type: Transform @@ -36749,21 +37909,6 @@ entities: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 2545 - components: - - type: Transform - pos: 9.50214,-1.450314 - parent: 2 - - uid: 2546 - components: - - type: Transform - pos: 34.23893,10.1593075 - parent: 2 - - uid: 2547 - components: - - type: Transform - pos: 9.330265,-1.340939 - parent: 2 - uid: 2548 components: - type: Transform @@ -36811,6 +37956,27 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 8471 + components: + - type: Transform + pos: 34.843952,15.288294 + parent: 2 + - uid: 31171 + components: + - type: Transform + pos: 9.391153,-2.1718638 + parent: 2 + - uid: 38480 + components: + - type: Transform + pos: 31.544445,18.626484 + parent: 2 + - uid: 42036 + components: + - type: Transform + parent: 32193 + - type: Physics + canCollide: False - proto: BurnAutoInjector entities: - uid: 2570 @@ -36854,6 +38020,12 @@ entities: rot: 1.5707963267948966 rad pos: -0.5232277,3.4956818 parent: 40666 + - uid: 42094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5284271,2.5788574 + parent: 41669 - proto: ButtonFrameCautionSecurity entities: - uid: 2591 @@ -36903,6 +38075,18 @@ entities: rot: 1.5707963267948966 rad pos: 3.517624,-6.217499 parent: 40828 +- proto: ButtonFrameExit + entities: + - uid: 41328 + components: + - type: Transform + pos: 43.5,-84.5 + parent: 2 + - uid: 41393 + components: + - type: Transform + pos: 42.5,-84.5 + parent: 2 - proto: ButtonFrameGrey entities: - uid: 2598 @@ -36919,12 +38103,6 @@ entities: parent: 2 - proto: ButtonFrameJanitor entities: - - uid: 2600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 2 - uid: 2601 components: - type: Transform @@ -36937,12 +38115,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-45.5 parent: 2 - - uid: 2603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-45.5 - parent: 2 - uid: 2604 components: - type: Transform @@ -36966,8 +38138,24 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-6.5 parent: 2 + - uid: 31196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.1,-50.5 + parent: 2 + - uid: 42064 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 - proto: CableApcExtension entities: + - uid: 1298 + components: + - type: Transform + pos: -66.5,3.5 + parent: 2 - uid: 2608 components: - type: Transform @@ -37198,11 +38386,6 @@ entities: - type: Transform pos: 17.5,-99.5 parent: 2 - - uid: 2654 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - uid: 2655 components: - type: Transform @@ -37363,11 +38546,6 @@ entities: - type: Transform pos: 50.5,-88.5 parent: 2 - - uid: 2687 - components: - - type: Transform - pos: 30.5,17.5 - parent: 2 - uid: 2688 components: - type: Transform @@ -39171,7 +40349,7 @@ entities: - uid: 3048 components: - type: Transform - pos: 6.5,-0.5 + pos: 8.5,-3.5 parent: 2 - uid: 3049 components: @@ -41228,11 +42406,6 @@ entities: - type: Transform pos: 30.5,14.5 parent: 2 - - uid: 3460 - components: - - type: Transform - pos: 34.5,15.5 - parent: 2 - uid: 3461 components: - type: Transform @@ -41246,12 +42419,12 @@ entities: - uid: 3463 components: - type: Transform - pos: 34.5,14.5 + pos: 33.5,14.5 parent: 2 - uid: 3464 components: - type: Transform - pos: 34.5,16.5 + pos: 33.5,16.5 parent: 2 - uid: 3465 components: @@ -41348,40 +42521,10 @@ entities: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 3484 - components: - - type: Transform - pos: 26.5,16.5 - parent: 2 - - uid: 3485 - components: - - type: Transform - pos: 27.5,16.5 - parent: 2 - - uid: 3486 - components: - - type: Transform - pos: 28.5,16.5 - parent: 2 - - uid: 3487 - components: - - type: Transform - pos: 29.5,16.5 - parent: 2 - - uid: 3488 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - uid: 3489 components: - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 3490 - components: - - type: Transform - pos: 32.5,17.5 + pos: 33.5,15.5 parent: 2 - uid: 3491 components: @@ -41403,16 +42546,6 @@ entities: - type: Transform pos: 37.5,17.5 parent: 2 - - uid: 3495 - components: - - type: Transform - pos: 38.5,17.5 - parent: 2 - - uid: 3496 - components: - - type: Transform - pos: 39.5,17.5 - parent: 2 - uid: 3497 components: - type: Transform @@ -49298,31 +50431,6 @@ entities: - type: Transform pos: -66.5,-77.5 parent: 2 - - uid: 5074 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - - uid: 5075 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 5076 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 5077 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 5078 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - uid: 5079 components: - type: Transform @@ -49643,11 +50751,6 @@ entities: - type: Transform pos: 26.5,24.5 parent: 2 - - uid: 5143 - components: - - type: Transform - pos: 25.5,24.5 - parent: 2 - uid: 5144 components: - type: Transform @@ -51463,11 +52566,6 @@ entities: - type: Transform pos: -38.5,15.5 parent: 2 - - uid: 5507 - components: - - type: Transform - pos: -38.5,7.5 - parent: 2 - uid: 5508 components: - type: Transform @@ -52741,7 +53839,7 @@ entities: - uid: 5762 components: - type: Transform - pos: 84.5,-45.5 + pos: 26.5,16.5 parent: 2 - uid: 5763 components: @@ -53861,7 +54959,7 @@ entities: - uid: 5986 components: - type: Transform - pos: 86.5,-52.5 + pos: 85.5,-51.5 parent: 2 - uid: 5987 components: @@ -54008,11 +55106,6 @@ entities: - type: Transform pos: 87.5,-52.5 parent: 2 - - uid: 6016 - components: - - type: Transform - pos: 84.5,-52.5 - parent: 2 - uid: 6017 components: - type: Transform @@ -54358,16 +55451,6 @@ entities: - type: Transform pos: 36.5,34.5 parent: 2 - - uid: 6086 - components: - - type: Transform - pos: 24.5,24.5 - parent: 2 - - uid: 6087 - components: - - type: Transform - pos: 24.5,23.5 - parent: 2 - uid: 6088 components: - type: Transform @@ -54528,11 +55611,6 @@ entities: - type: Transform pos: -71.5,10.5 parent: 2 - - uid: 6120 - components: - - type: Transform - pos: -65.5,2.5 - parent: 2 - uid: 6121 components: - type: Transform @@ -54541,23 +55619,13 @@ entities: - uid: 6122 components: - type: Transform - pos: -66.5,2.5 - parent: 2 - - uid: 6123 - components: - - type: Transform - pos: -67.5,4.5 + pos: -67.5,2.5 parent: 2 - uid: 6124 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 6125 - components: - - type: Transform - pos: -67.5,2.5 - parent: 2 - uid: 6126 components: - type: Transform @@ -55401,7 +56469,7 @@ entities: - uid: 6294 components: - type: Transform - pos: 84.5,-48.5 + pos: 26.5,19.5 parent: 2 - uid: 6295 components: @@ -56313,16 +57381,6 @@ entities: - type: Transform pos: -79.5,-9.5 parent: 2 - - uid: 6477 - components: - - type: Transform - pos: -83.5,-2.5 - parent: 2 - - uid: 6478 - components: - - type: Transform - pos: -83.5,-1.5 - parent: 2 - uid: 6479 components: - type: Transform @@ -56486,7 +57544,7 @@ entities: - uid: 6511 components: - type: Transform - pos: -83.5,-3.5 + pos: -82.5,-1.5 parent: 2 - uid: 6512 components: @@ -56748,15 +57806,10 @@ entities: - type: Transform pos: -81.5,-4.5 parent: 2 - - uid: 6564 - components: - - type: Transform - pos: -81.5,-3.5 - parent: 2 - uid: 6565 components: - type: Transform - pos: -80.5,-3.5 + pos: -68.5,3.5 parent: 2 - uid: 6566 components: @@ -56873,11 +57926,6 @@ entities: - type: Transform pos: -81.5,-17.5 parent: 2 - - uid: 6589 - components: - - type: Transform - pos: -80.5,-17.5 - parent: 2 - uid: 6590 components: - type: Transform @@ -58878,11 +59926,6 @@ entities: - type: Transform pos: 47.5,-17.5 parent: 2 - - uid: 6990 - components: - - type: Transform - pos: 44.5,21.5 - parent: 2 - uid: 6991 components: - type: Transform @@ -61926,7 +62969,7 @@ entities: - uid: 7599 components: - type: Transform - pos: 25.5,-30.5 + pos: 26.5,-29.5 parent: 2 - uid: 7600 components: @@ -62328,11 +63371,6 @@ entities: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 7680 - components: - - type: Transform - pos: 43.5,21.5 - parent: 2 - uid: 7681 components: - type: Transform @@ -62818,6 +63856,131 @@ entities: - type: Transform pos: -13.5,6.5 parent: 2 + - uid: 7874 + components: + - type: Transform + pos: -64.5,3.5 + parent: 2 + - uid: 11480 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 11651 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 11675 + components: + - type: Transform + pos: 85.5,-46.5 + parent: 2 + - uid: 11686 + components: + - type: Transform + pos: -82.5,-2.5 + parent: 2 + - uid: 12376 + components: + - type: Transform + pos: 85.5,-52.5 + parent: 2 + - uid: 13350 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 13357 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 14513 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - uid: 15309 + components: + - type: Transform + pos: 85.5,-50.5 + parent: 2 + - uid: 16798 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 27820 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 28780 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 2 + - uid: 29115 + components: + - type: Transform + pos: 85.5,-49.5 + parent: 2 + - uid: 32901 + components: + - type: Transform + pos: -63.5,3.5 + parent: 2 + - uid: 33487 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 33768 + components: + - type: Transform + pos: 84.5,-49.5 + parent: 2 + - uid: 35734 + components: + - type: Transform + pos: 85.5,-47.5 + parent: 2 + - uid: 38738 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 38984 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 38985 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 38986 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 38987 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - uid: 39805 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 - uid: 40675 components: - type: Transform @@ -62898,6 +64061,26 @@ entities: - type: Transform pos: -3.5,1.5 parent: 40666 + - uid: 40853 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 40854 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 40855 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 40856 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 - uid: 40889 components: - type: Transform @@ -63203,6 +64386,36 @@ entities: - type: Transform pos: -5.5,-4.5 parent: 40828 + - uid: 41094 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 41295 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 41296 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 41382 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 41383 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 41413 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 - uid: 41705 components: - type: Transform @@ -63413,6 +64626,81 @@ entities: - type: Transform pos: 6.5,-9.5 parent: 41669 + - uid: 42209 + components: + - type: Transform + pos: -55.5,-87.5 + parent: 2 + - uid: 42210 + components: + - type: Transform + pos: -55.5,-88.5 + parent: 2 + - uid: 42211 + components: + - type: Transform + pos: -55.5,-89.5 + parent: 2 + - uid: 42212 + components: + - type: Transform + pos: -55.5,-90.5 + parent: 2 + - uid: 42213 + components: + - type: Transform + pos: -56.5,-90.5 + parent: 2 + - uid: 42214 + components: + - type: Transform + pos: -57.5,-90.5 + parent: 2 + - uid: 42369 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 42401 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 42402 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 42424 + components: + - type: Transform + pos: -80.5,-4.5 + parent: 2 + - uid: 42425 + components: + - type: Transform + pos: -84.5,-1.5 + parent: 2 + - uid: 42426 + components: + - type: Transform + pos: -84.5,-2.5 + parent: 2 + - uid: 42427 + components: + - type: Transform + pos: -84.5,-3.5 + parent: 2 + - uid: 42428 + components: + - type: Transform + pos: -79.5,-20.5 + parent: 2 + - uid: 42429 + components: + - type: Transform + pos: -78.5,-20.5 + parent: 2 - proto: CableApcStack entities: - uid: 7778 @@ -63465,15 +64753,10 @@ entities: - type: Transform pos: 21.5,19.5 parent: 2 - - uid: 7788 - components: - - type: Transform - pos: -68.49457,-15.588883 - parent: 2 - uid: 7789 components: - type: Transform - pos: -68.49457,-15.588883 + pos: -68.4788,-15.541781 parent: 2 - uid: 7790 components: @@ -63667,6 +64950,11 @@ entities: parent: 2 - proto: CableHV entities: + - uid: 6123 + components: + - type: Transform + pos: -68.5,3.5 + parent: 2 - uid: 7823 components: - type: Transform @@ -63922,11 +65210,6 @@ entities: - type: Transform pos: 34.5,5.5 parent: 2 - - uid: 7874 - components: - - type: Transform - pos: -67.5,4.5 - parent: 2 - uid: 7875 components: - type: Transform @@ -66837,81 +68120,6 @@ entities: - type: Transform pos: 40.5,17.5 parent: 2 - - uid: 8457 - components: - - type: Transform - pos: 39.5,17.5 - parent: 2 - - uid: 8458 - components: - - type: Transform - pos: 38.5,17.5 - parent: 2 - - uid: 8459 - components: - - type: Transform - pos: 37.5,17.5 - parent: 2 - - uid: 8460 - components: - - type: Transform - pos: 36.5,17.5 - parent: 2 - - uid: 8461 - components: - - type: Transform - pos: 35.5,17.5 - parent: 2 - - uid: 8462 - components: - - type: Transform - pos: 34.5,17.5 - parent: 2 - - uid: 8463 - components: - - type: Transform - pos: 33.5,17.5 - parent: 2 - - uid: 8464 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 - - uid: 8465 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 8466 - components: - - type: Transform - pos: 30.5,17.5 - parent: 2 - - uid: 8467 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - - uid: 8468 - components: - - type: Transform - pos: 29.5,16.5 - parent: 2 - - uid: 8469 - components: - - type: Transform - pos: 28.5,16.5 - parent: 2 - - uid: 8470 - components: - - type: Transform - pos: 27.5,16.5 - parent: 2 - - uid: 8471 - components: - - type: Transform - pos: 26.5,16.5 - parent: 2 - uid: 8472 components: - type: Transform @@ -75067,6 +76275,66 @@ entities: - type: Transform pos: 44.5,14.5 parent: 2 + - uid: 17871 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 19890 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 26547 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 26550 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 26552 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 26553 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 26554 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 26871 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 27649 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 29720 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 31856 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 32796 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 - uid: 40691 components: - type: Transform @@ -75707,6 +76975,111 @@ entities: - type: Transform pos: 1.5,-7.5 parent: 41669 + - uid: 42338 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 42339 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 + - uid: 42340 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 42341 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 42342 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 42343 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 42344 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 42345 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 42346 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - uid: 42347 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 42348 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 42349 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 42350 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 42351 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - uid: 42352 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 42353 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 42354 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 + - uid: 42355 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - uid: 42356 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 42357 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 42358 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 - proto: CableHVStack entities: - uid: 10103 @@ -75724,16 +77097,6 @@ entities: - type: Transform pos: 108.49322,-22.496582 parent: 2 - - uid: 10106 - components: - - type: Transform - pos: -68.57269,-15.354508 - parent: 2 - - uid: 10107 - components: - - type: Transform - pos: -68.57269,-15.354508 - parent: 2 - uid: 10108 components: - type: Transform @@ -75764,6 +77127,11 @@ entities: - type: Transform pos: -56.5,-87.5 parent: 2 + - uid: 35778 + components: + - type: Transform + pos: -68.49442,-15.338656 + parent: 2 - uid: 41043 components: - type: Transform @@ -75771,6 +77139,111 @@ entities: parent: 40828 - proto: CableMV entities: + - uid: 1216 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -82.5,-3.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + pos: -64.5,3.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 8460 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + pos: -66.5,3.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 - uid: 10114 components: - type: Transform @@ -75936,11 +77409,6 @@ entities: - type: Transform pos: 109.5,-49.5 parent: 2 - - uid: 10147 - components: - - type: Transform - pos: 82.5,-44.5 - parent: 2 - uid: 10148 components: - type: Transform @@ -78321,31 +79789,6 @@ entities: - type: Transform pos: 25.5,16.5 parent: 2 - - uid: 10624 - components: - - type: Transform - pos: 26.5,16.5 - parent: 2 - - uid: 10625 - components: - - type: Transform - pos: 27.5,16.5 - parent: 2 - - uid: 10626 - components: - - type: Transform - pos: 28.5,16.5 - parent: 2 - - uid: 10627 - components: - - type: Transform - pos: 29.5,16.5 - parent: 2 - - uid: 10628 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - uid: 10629 components: - type: Transform @@ -82601,11 +84044,6 @@ entities: - type: Transform pos: -44.5,10.5 parent: 2 - - uid: 11480 - components: - - type: Transform - pos: -38.5,7.5 - parent: 2 - uid: 11481 components: - type: Transform @@ -82791,26 +84229,11 @@ entities: - type: Transform pos: 73.5,-54.5 parent: 2 - - uid: 11518 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 - uid: 11519 components: - type: Transform pos: 33.5,17.5 parent: 2 - - uid: 11520 - components: - - type: Transform - pos: 30.5,17.5 - parent: 2 - - uid: 11521 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - uid: 11522 components: - type: Transform @@ -83059,7 +84482,7 @@ entities: - uid: 11571 components: - type: Transform - pos: 34.5,16.5 + pos: 41.5,24.5 parent: 2 - uid: 11572 components: @@ -83456,16 +84879,6 @@ entities: - type: Transform pos: -50.5,-69.5 parent: 2 - - uid: 11651 - components: - - type: Transform - pos: 84.5,-44.5 - parent: 2 - - uid: 11652 - components: - - type: Transform - pos: 83.5,-44.5 - parent: 2 - uid: 11653 components: - type: Transform @@ -83541,11 +84954,6 @@ entities: - type: Transform pos: 19.5,20.5 parent: 2 - - uid: 11668 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - uid: 11669 components: - type: Transform @@ -83566,21 +84974,11 @@ entities: - type: Transform pos: -55.5,-102.5 parent: 2 - - uid: 11673 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - uid: 11674 components: - type: Transform pos: 82.5,-46.5 parent: 2 - - uid: 11675 - components: - - type: Transform - pos: 82.5,-45.5 - parent: 2 - uid: 11676 components: - type: Transform @@ -83626,31 +85024,16 @@ entities: - type: Transform pos: -65.5,3.5 parent: 2 - - uid: 11685 - components: - - type: Transform - pos: -65.5,2.5 - parent: 2 - - uid: 11686 - components: - - type: Transform - pos: -66.5,2.5 - parent: 2 - uid: 11687 components: - type: Transform - pos: -67.5,2.5 + pos: -82.5,-2.5 parent: 2 - uid: 11688 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 11689 - components: - - type: Transform - pos: -67.5,4.5 - parent: 2 - uid: 11690 components: - type: Transform @@ -83886,26 +85269,6 @@ entities: - type: Transform pos: 68.5,-47.5 parent: 2 - - uid: 11737 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 11738 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 11739 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 11740 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - uid: 11741 components: - type: Transform @@ -84506,16 +85869,6 @@ entities: - type: Transform pos: -83.5,-4.5 parent: 2 - - uid: 11861 - components: - - type: Transform - pos: -83.5,-3.5 - parent: 2 - - uid: 11862 - components: - - type: Transform - pos: -83.5,-2.5 - parent: 2 - uid: 11863 components: - type: Transform @@ -85031,21 +86384,6 @@ entities: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 11966 - components: - - type: Transform - pos: 25.5,24.5 - parent: 2 - - uid: 11967 - components: - - type: Transform - pos: 24.5,24.5 - parent: 2 - - uid: 11968 - components: - - type: Transform - pos: 24.5,23.5 - parent: 2 - uid: 11969 components: - type: Transform @@ -85404,7 +86742,7 @@ entities: - uid: 12040 components: - type: Transform - pos: 31.5,21.5 + pos: 41.5,22.5 parent: 2 - uid: 12041 components: @@ -87044,32 +88382,17 @@ entities: - uid: 12368 components: - type: Transform - pos: 35.5,17.5 + pos: 33.5,21.5 parent: 2 - uid: 12369 components: - type: Transform - pos: 36.5,17.5 - parent: 2 - - uid: 12370 - components: - - type: Transform - pos: 37.5,17.5 - parent: 2 - - uid: 12371 - components: - - type: Transform - pos: 38.5,17.5 + pos: 33.5,20.5 parent: 2 - uid: 12372 components: - type: Transform - pos: 39.5,17.5 - parent: 2 - - uid: 12373 - components: - - type: Transform - pos: 40.5,17.5 + pos: 85.5,-45.5 parent: 2 - uid: 12374 components: @@ -87081,16 +88404,6 @@ entities: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 12376 - components: - - type: Transform - pos: 44.5,21.5 - parent: 2 - - uid: 12377 - components: - - type: Transform - pos: 43.5,21.5 - parent: 2 - uid: 12378 components: - type: Transform @@ -87481,6 +88794,106 @@ entities: - type: Transform pos: -17.5,8.5 parent: 2 + - uid: 13709 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 16621 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 16637 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 19612 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 20330 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 22601 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 22894 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 22896 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 26555 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 26557 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 27084 + components: + - type: Transform + pos: 85.5,-46.5 + parent: 2 + - uid: 27991 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 33084 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 33323 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 38477 + components: + - type: Transform + pos: 45.5,22.5 + parent: 2 + - uid: 39515 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 39517 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 39549 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 39885 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 39886 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 - uid: 40718 components: - type: Transform @@ -87596,27 +89009,42 @@ entities: - type: Transform pos: 6.5,-10.5 parent: 41669 -- proto: CableMVStack - entities: - - uid: 12456 + - uid: 42051 components: - type: Transform - pos: 40.48218,-35.398537 + pos: 28.5,17.5 parent: 2 - - uid: 12457 + - uid: 42323 components: - type: Transform - pos: 108.50016,-22.41325 + pos: 27.5,17.5 parent: 2 - - uid: 12458 + - uid: 42368 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 42423 components: - type: Transform - pos: -68.54144,-15.463883 + pos: -63.5,3.5 parent: 2 - - uid: 12459 +- proto: CableMVStack + entities: + - uid: 10106 components: - type: Transform - pos: -68.54144,-15.463883 + pos: -68.49442,-15.448031 + parent: 2 + - uid: 12456 + components: + - type: Transform + pos: 40.48218,-35.398537 + parent: 2 + - uid: 12457 + components: + - type: Transform + pos: 108.50016,-22.41325 parent: 2 - uid: 12460 components: @@ -87661,6 +89089,17 @@ entities: - type: Transform pos: -54.547993,-69.60477 parent: 2 + - uid: 39010 + components: + - type: Transform + pos: 45.40271,20.479858 + parent: 2 + - uid: 39011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.52771,20.526733 + parent: 2 - proto: CableMVStack10 entities: - uid: 12467 @@ -87950,26 +89389,6 @@ entities: - type: Transform pos: 34.23963,-71.58065 parent: 2 - - uid: 12515 - components: - - type: Transform - pos: 31.505058,30.534025 - parent: 2 - - uid: 12516 - components: - - type: Transform - pos: -68.4574,-48.880016 - parent: 2 - - uid: 12517 - components: - - type: Transform - pos: -76.313,-42.024582 - parent: 2 - - uid: 12518 - components: - - type: Transform - pos: 58.031216,-49.43383 - parent: 2 - uid: 12519 components: - type: Transform @@ -87992,8 +89411,7 @@ entities: - uid: 12522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.4335,-7.465089 + pos: -76.45111,-8.388763 parent: 2 - uid: 12523 components: @@ -89479,39 +90897,33 @@ entities: - type: Transform pos: 7.5,-42.5 parent: 2 -- proto: CarvedPumpkin - entities: - - uid: 12787 - components: - - type: Transform - pos: -78.281494,-41.086143 - parent: 2 -- proto: CarvedPumpkinLarge +- proto: CarvedPumpkinSmall entities: - - uid: 12788 + - uid: 12791 components: - type: Transform - pos: -31.484411,-98.339386 + pos: 94.46736,-20.29567 parent: 2 -- proto: CarvedPumpkinSmall +- proto: Catwalk entities: - - uid: 12789 + - uid: 6477 components: - type: Transform - pos: 50.829235,-54.189037 + rot: 3.141592653589793 rad + pos: -81.5,-20.5 parent: 2 - - uid: 12790 + - uid: 6478 components: - type: Transform - pos: 61.57672,-37.85955 + rot: 3.141592653589793 rad + pos: -80.5,-20.5 parent: 2 - - uid: 12791 + - uid: 11862 components: - type: Transform - pos: 94.46736,-20.29567 + rot: 3.141592653589793 rad + pos: -82.5,-20.5 parent: 2 -- proto: Catwalk - entities: - uid: 12792 components: - type: Transform @@ -92468,62 +93880,12 @@ entities: - type: Transform pos: 23.5,16.5 parent: 2 - - uid: 13348 - components: - - type: Transform - pos: 26.5,16.5 - parent: 2 - - uid: 13349 - components: - - type: Transform - pos: 27.5,16.5 - parent: 2 - - uid: 13350 - components: - - type: Transform - pos: 28.5,16.5 - parent: 2 - - uid: 13351 - components: - - type: Transform - pos: 29.5,16.5 - parent: 2 - - uid: 13352 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - uid: 13353 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-95.5 parent: 2 - - uid: 13354 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 13355 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 - - uid: 13356 - components: - - type: Transform - pos: 33.5,17.5 - parent: 2 - - uid: 13357 - components: - - type: Transform - pos: 35.5,17.5 - parent: 2 - - uid: 13358 - components: - - type: Transform - pos: 36.5,17.5 - parent: 2 - uid: 13359 components: - type: Transform @@ -94465,31 +95827,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-101.5 parent: 2 - - uid: 13708 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - - uid: 13709 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 13710 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 13711 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 13712 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - uid: 13713 components: - type: Transform @@ -98925,18 +100262,6 @@ entities: rot: 1.5707963267948966 rad pos: -79.5,-20.5 parent: 2 - - uid: 14513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-20.5 - parent: 2 - - uid: 14514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-20.5 - parent: 2 - uid: 14515 components: - type: Transform @@ -100361,6 +101686,66 @@ entities: - type: Transform pos: 69.5,-15.5 parent: 2 + - uid: 15199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-49.5 + parent: 2 + - uid: 15359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-51.5 + parent: 2 + - uid: 27366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-49.5 + parent: 2 + - uid: 32591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-48.5 + parent: 2 + - uid: 32730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-52.5 + parent: 2 + - uid: 38988 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 38990 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 38991 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 38992 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 38993 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 38994 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 - uid: 41063 components: - type: Transform @@ -100528,6 +101913,23 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-12.5 parent: 41669 + - uid: 42390 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - uid: 42392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,22.5 + parent: 2 + - uid: 42393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,23.5 + parent: 2 - proto: Cautery entities: - uid: 14763 @@ -100927,78 +102329,6 @@ entities: - type: Transform pos: 38.5,-59.5 parent: 2 - - uid: 14833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-86.5 - parent: 2 - - uid: 14834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-87.5 - parent: 2 - - uid: 14835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-88.5 - parent: 2 - - uid: 14836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-85.5 - parent: 2 - - uid: 14837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-84.5 - parent: 2 - - uid: 14838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-83.5 - parent: 2 - - uid: 14839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-88.5 - parent: 2 - - uid: 14840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-87.5 - parent: 2 - - uid: 14841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-86.5 - parent: 2 - - uid: 14842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-85.5 - parent: 2 - - uid: 14843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-84.5 - parent: 2 - - uid: 14844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-83.5 - parent: 2 - uid: 14845 components: - type: Transform @@ -101092,26 +102422,6 @@ entities: rot: -1.5707963267948966 rad pos: 88.5,-24.5 parent: 2 - - uid: 14861 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 14862 - components: - - type: Transform - pos: 27.5,25.5 - parent: 2 - - uid: 14863 - components: - - type: Transform - pos: 26.5,25.5 - parent: 2 - - uid: 14864 - components: - - type: Transform - pos: 27.5,21.5 - parent: 2 - uid: 14865 components: - type: Transform @@ -101437,6 +102747,12 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-38.5 parent: 2 + - uid: 42391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,23.5 + parent: 2 - proto: ChairBrass entities: - uid: 14921 @@ -101447,12 +102763,6 @@ entities: parent: 2 - proto: ChairCarp entities: - - uid: 14922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,19.5 - parent: 2 - uid: 14923 components: - type: Transform @@ -101988,8 +103298,25 @@ entities: rot: 3.141592653589793 rad pos: -16.01374,4.5388403 parent: 2 + - uid: 27000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.738335,-46.96547 + parent: 2 - proto: ChairOfficeLight entities: + - uid: 11652 + components: + - type: Transform + pos: 35.535645,22.780052 + parent: 2 + - uid: 13712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.42192,23.15841 + parent: 2 - uid: 15015 components: - type: Transform @@ -102454,6 +103781,30 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,0.5 parent: 41669 + - uid: 42098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 40666 + - uid: 42099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 40666 + - uid: 42100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 40666 + - uid: 42101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 40666 - proto: ChairRitual entities: - uid: 15079 @@ -102587,18 +103938,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-0.5 parent: 2 - - uid: 15101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-48.5 - parent: 2 - - uid: 15102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-47.5 - parent: 2 - uid: 15103 components: - type: Transform @@ -102629,12 +103968,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-95.5 parent: 2 - - uid: 15108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-46.5 - parent: 2 - uid: 15109 components: - type: Transform @@ -102965,6 +104298,11 @@ entities: parent: 2 - proto: ChemMaster entities: + - uid: 1973 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 - uid: 15154 components: - type: Transform @@ -102997,12 +104335,6 @@ entities: - type: Transform pos: -59.52525,-9.469836 parent: 2 - - uid: 15159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.469124,-46.61436 - parent: 2 - uid: 15160 components: - type: Transform @@ -103138,11 +104470,11 @@ entities: parent: 2 - proto: CleanerDispenser entities: - - uid: 15181 + - uid: 18548 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-1.5 + pos: 7.5,-4.5 parent: 2 - proto: CloningConsoleComputerCircuitboard entities: @@ -103328,11 +104660,6 @@ entities: ent: null - proto: ClosetEmergencyFilledRandom entities: - - uid: 15199 - components: - - type: Transform - pos: 28.5,17.5 - parent: 2 - uid: 15200 components: - type: Transform @@ -103566,11 +104893,6 @@ entities: - type: Transform pos: -30.5,-27.5 parent: 2 - - uid: 15243 - components: - - type: Transform - pos: 36.5,18.5 - parent: 2 - uid: 15244 components: - type: Transform @@ -103724,11 +105046,16 @@ entities: - type: Transform pos: 1.5,-5.5 parent: 2 - - uid: 41094 + - uid: 24867 components: - type: Transform - pos: 0.5,-0.5 - parent: 40828 + pos: 39.5,18.5 + parent: 2 + - uid: 27752 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - uid: 15271 @@ -104006,11 +105333,6 @@ entities: - 0 - 0 - 0 - - uid: 15309 - components: - - type: Transform - pos: 31.5,16.5 - parent: 2 - uid: 15310 components: - type: Transform @@ -104189,6 +105511,11 @@ entities: - type: Transform pos: 1.5,-4.5 parent: 2 + - uid: 42335 + components: + - type: Transform + pos: 59.5,-63.5 + parent: 2 - proto: ClosetJanitor entities: - uid: 2552 @@ -104230,10 +105557,26 @@ entities: ent: null - proto: ClosetJanitorFilled entities: - - uid: 15342 + - uid: 2600 components: - type: Transform - pos: 9.5,0.5 + pos: 3.5,-2.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12459 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2603 + components: + - type: Transform + pos: 4.5,-2.5 parent: 2 - type: EntityStorage air: @@ -104241,8 +105584,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -104259,11 +105602,18 @@ entities: showEnts: False occludes: True ents: - - 15343 + - 15460 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null +- proto: ClosetL3Filled + entities: + - uid: 31223 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 - proto: ClosetL3Janitor entities: - uid: 15344 @@ -104303,29 +105653,6 @@ entities: ent: null - proto: ClosetL3JanitorFilled entities: - - uid: 15347 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 15348 components: - type: Transform @@ -104349,6 +105676,11 @@ entities: - 0 - 0 - 0 + - uid: 42038 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 - proto: ClosetL3ScienceFilled entities: - uid: 15349 @@ -104407,29 +105739,6 @@ entities: - type: Transform pos: 72.5,-35.5 parent: 2 - - uid: 15359 - components: - - type: Transform - pos: 24.5,20.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1462 - moles: - - 1.8959498 - - 7.1323833 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetMaintenance entities: - uid: 15360 @@ -104485,8 +105794,8 @@ entities: immutable: False temperature: 293.14755 moles: - - 1.8968438 - - 7.1357465 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -104503,24 +105812,14 @@ entities: showEnts: False occludes: True ents: - - 15367 - 15366 + - 15367 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: ClosetMaintenanceFilledRandom entities: - - uid: 15368 - components: - - type: Transform - pos: 86.5,-49.5 - parent: 2 - - uid: 15369 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - uid: 15370 components: - type: Transform @@ -104837,6 +106136,24 @@ entities: - type: Transform pos: 88.5,-44.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 15408 components: - type: Transform @@ -105054,6 +106371,24 @@ entities: - type: Transform pos: 31.5,34.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 15437 components: - type: Transform @@ -105117,6 +106452,21 @@ entities: - type: Transform pos: 5.5,-44.5 parent: 2 + - uid: 38503 + components: + - type: Transform + pos: 83.5,-55.5 + parent: 2 + - uid: 38506 + components: + - type: Transform + pos: 83.5,-44.5 + parent: 2 + - uid: 38995 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 - proto: ClosetRadiationSuitFilled entities: - uid: 15446 @@ -105191,11 +106541,6 @@ entities: - type: Transform pos: -37.5,9.5 parent: 2 - - uid: 15460 - components: - - type: Transform - pos: -70.5,-15.5 - parent: 2 - uid: 15461 components: - type: Transform @@ -105378,7 +106723,7 @@ entities: - uid: 15477 components: - type: Transform - pos: 38.70636,-52.47543 + pos: 38.447224,-52.54465 parent: 2 - proto: ClothingBackpackDuffelBrigmedic entities: @@ -105415,20 +106760,41 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingBackpackDuffelSalvage +- proto: ClothingBackpackDuffelMedical entities: - - uid: 15481 + - uid: 15482 components: + - type: MetaData + desc: Я ХИРУРГ!! Я ХИРУРГ!! Я ХИРУРГ!! + name: вещмешок хирурга - type: Transform - pos: -6.442077,-88.38824 + pos: -51.519703,-19.919035 parent: 2 -- proto: ClothingBackpackDuffelSurgeryFilled + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null +- proto: ClothingBackpackDuffelSalvage entities: - - uid: 15482 + - uid: 15481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.36667,-20.160236 + pos: -6.442077,-88.38824 parent: 2 - proto: ClothingBackpackElectropack entities: @@ -105471,6 +106837,15 @@ entities: component: Armor title: null - type: InsideEntityStorage +- proto: ClothingBackpackSatchelHolding + entities: + - uid: 41611 + components: + - type: Transform + parent: 41096 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingBackpackSatchelSecurity entities: - uid: 15485 @@ -105503,12 +106878,21 @@ entities: - type: Transform pos: -7.4948072,-6.3184457 parent: 2 +- proto: ClothingBeltChefFilled + entities: + - uid: 10624 + components: + - type: Transform + parent: 10147 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingBeltJanitorFilled entities: - - uid: 15496 + - uid: 26706 components: - type: Transform - pos: 9.508253,-1.3463131 + pos: 9.491198,-1.4308739 parent: 2 - proto: ClothingBeltMercWebbing entities: @@ -105538,29 +106922,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingBeltQuiver - entities: - - uid: 15498 - components: - - type: Transform - pos: 85.92138,-54.27365 - parent: 2 - - type: Storage - storedItems: - 15499: - position: 0,0 - _rotation: South - 15500: - position: 1,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 15499 - - 15500 - proto: ClothingBeltSecurityWebbingFilled entities: - uid: 15486 @@ -105586,6 +106947,13 @@ entities: - type: Transform pos: 53.503906,-48.454685 parent: 2 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 42444 + components: + - type: Transform + pos: 42.533928,-66.05011 + parent: 2 - proto: ClothingBeltUtilityFilled entities: - uid: 15506 @@ -105740,15 +107108,6 @@ entities: - type: Transform pos: -51.48703,13.008251 parent: 2 -- proto: ClothingHandsChameleon - entities: - - uid: 15531 - components: - - type: Transform - parent: 15530 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHandsGlovesAerostatic entities: - uid: 15487 @@ -105770,7 +107129,7 @@ entities: - uid: 15537 components: - type: Transform - pos: -19.795681,-88.34186 + pos: -35.27367,-107.39688 parent: 2 - proto: ClothingHandsGlovesBoxingRed entities: @@ -105797,7 +107156,7 @@ entities: - uid: 15541 components: - type: Transform - pos: -23.998806,-83.88873 + pos: -35.570545,-107.24063 parent: 2 - proto: ClothingHandsGlovesColorBlack entities: @@ -105826,6 +107185,13 @@ entities: - type: Transform pos: 42.4707,-11.231414 parent: 2 + - uid: 19761 + components: + - type: Transform + parent: 15530 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHandsGlovesColorGreen entities: - uid: 15547 @@ -105954,7 +107320,7 @@ entities: - uid: 15566 components: - type: Transform - pos: -38.50782,-118.46541 + pos: 104.46875,-58.292244 parent: 2 - uid: 15567 components: @@ -106015,6 +107381,13 @@ entities: - type: Transform pos: 29.493355,32.536114 parent: 2 +- proto: ClothingHandsGlovesJanitor + entities: + - uid: 42046 + components: + - type: Transform + pos: 9.479004,-1.481143 + parent: 2 - proto: ClothingHandsGlovesLatex entities: - uid: 15577 @@ -106038,11 +107411,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15579 - components: - - type: Transform - pos: 36.493587,23.528145 - parent: 2 - proto: ClothingHandsGlovesNitrile entities: - uid: 15580 @@ -106089,6 +107457,23 @@ entities: - type: Transform pos: -18.340637,-81.438866 parent: 2 +- proto: ClothingHeadFishCap + entities: + - uid: 15460 + components: + - type: Transform + parent: 2603 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 15531 + - type: InsideEntityStorage - proto: ClothingHeadHatBeretBrigmedic entities: - uid: 15585 @@ -106164,6 +107549,13 @@ entities: parent: 2 - proto: ClothingHeadHatChef entities: + - uid: 10628 + components: + - type: Transform + parent: 10147 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 15600 components: - type: Transform @@ -106445,15 +107837,6 @@ entities: - type: Transform pos: -23.84134,10.642219 parent: 2 -- proto: ClothingHeadHatTacticalMaidHeadband - entities: - - uid: 15343 - components: - - type: Transform - parent: 15342 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHeadHatTrucker entities: - uid: 15644 @@ -106469,13 +107852,6 @@ entities: parent: 15645 - type: Physics canCollide: False -- proto: ClothingHeadHatWatermelon - entities: - - uid: 15648 - components: - - type: Transform - pos: 44.5,21.5 - parent: 2 - proto: ClothingHeadHatWelding entities: - uid: 15649 @@ -106521,6 +107897,13 @@ entities: rot: -1.5707963267948966 rad pos: -15.529953,-51.742363 parent: 2 +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 42321 + components: + - type: Transform + pos: -70.497986,-17.31991 + parent: 2 - proto: ClothingHeadHatWeldingMaskPainted entities: - uid: 15657 @@ -106536,11 +107919,6 @@ entities: parent: 5 - type: Physics canCollide: False - - uid: 15658 - components: - - type: Transform - pos: -1.4852774,27.497887 - parent: 2 - uid: 15659 components: - type: Transform @@ -106584,13 +107962,6 @@ entities: canCollide: False - type: ActionsContainer - type: InsideEntityStorage -- proto: ClothingHeadHelmetBone - entities: - - uid: 15664 - components: - - type: Transform - pos: 58.083214,-41.490364 - parent: 2 - proto: ClothingHeadHelmetERTLeader entities: - uid: 41098 @@ -106686,10 +108057,10 @@ entities: parent: 2 - proto: ClothingHeadMirror entities: - - uid: 15691 + - uid: 15727 components: - type: Transform - pos: 103.67162,-50.371166 + pos: 103.51619,-50.380367 parent: 2 - proto: ClothingHeadRastaHat entities: @@ -106814,11 +108185,6 @@ entities: - type: InsideEntityStorage - proto: ClothingMaskGas entities: - - uid: 15705 - components: - - type: Transform - pos: -78.5,-26.5 - parent: 2 - uid: 15706 components: - type: Transform @@ -106841,6 +108207,11 @@ entities: parent: 2 - proto: ClothingMaskGasAtmos entities: + - uid: 12370 + components: + - type: Transform + pos: -78.49537,-26.51778 + parent: 2 - uid: 15710 components: - type: Transform @@ -107006,11 +108377,15 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15723 +- proto: ClothingNeckCloakPan + entities: + - uid: 11518 components: - type: Transform - pos: 47.534107,27.442936 - parent: 2 + parent: 10147 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingNeckCloakPirateCap entities: - uid: 15724 @@ -107018,15 +108393,6 @@ entities: - type: Transform pos: 10.469885,-22.367643 parent: 2 -- proto: ClothingNeckCloakTrans - entities: - - uid: 15726 - components: - - type: Transform - parent: 15725 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingNeckDeForestPin entities: - uid: 15728 @@ -107044,7 +108410,7 @@ entities: - uid: 15730 components: - type: Transform - pos: 28.708607,21.1283 + pos: -27.596199,17.326561 parent: 2 - proto: ClothingNeckEarthPin entities: @@ -107221,6 +108587,11 @@ entities: - type: InsideEntityStorage - proto: ClothingNeckScarfStripedLightBlue entities: + - uid: 14841 + components: + - type: Transform + pos: -17.455568,-87.48417 + parent: 2 - uid: 15760 components: - type: Transform @@ -107299,6 +108670,13 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterApronChef entities: + - uid: 10627 + components: + - type: Transform + parent: 10147 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 15767 components: - type: Transform @@ -107337,6 +108715,13 @@ entities: - type: Transform pos: 65.52086,-19.44498 parent: 2 +- proto: ClothingOuterArmorPodWars + entities: + - uid: 15772 + components: + - type: Transform + pos: -84.510376,-23.47834 + parent: 2 - type: GroupExamine group: - hoverMessage: "" @@ -107352,27 +108737,16 @@ entities: - message: >- Обеспечивает следующую защиту: - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]80%[/color]. + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]50%[/color]. - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]80%[/color]. + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]50%[/color]. - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]80%[/color]. + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]40%[/color]. - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color]. - - - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]100%[/color]. - - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]25%[/color]. priority: 0 component: Armor title: null -- proto: ClothingOuterArmorPodWars - entities: - - uid: 15772 - components: - - type: Transform - pos: -84.510376,-23.47834 - parent: 2 - proto: ClothingOuterArmorReflective entities: - uid: 15773 @@ -107553,7 +108927,7 @@ entities: - uid: 15789 components: - type: Transform - parent: 15788 + parent: 16158 - type: Physics canCollide: False - type: InsideEntityStorage @@ -107581,17 +108955,11 @@ entities: - type: Transform pos: -57.54903,-40.19077 parent: 2 - - uid: 15795 + - uid: 16064 components: - type: Transform - pos: -17.401802,-86.49495 + pos: 28.49426,29.54523 parent: 2 - - uid: 15797 - components: - - type: Transform - parent: 15796 - - type: Physics - canCollide: False - proto: ClothingOuterHardsuitBrigmedic entities: - uid: 2483 @@ -107817,6 +109185,17 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSanta + entities: + - uid: 19762 + components: + - type: Transform + parent: 15639 + - type: Physics + canCollide: False + - type: Geiger + isEnabled: True + - type: RadiationReceiver - proto: ClothingOuterHardsuitVoidParamed entities: - uid: 15697 @@ -107863,9 +109242,8 @@ entities: - uid: 15641 components: - type: Transform - parent: 15639 - - type: Physics - canCollide: False + pos: -55.42729,-91.17707 + parent: 2 - proto: ClothingOuterStraightjacket entities: - uid: 26982 @@ -107945,6 +109323,94 @@ entities: - type: Transform pos: 10.522854,-18.440525 parent: 2 +- proto: ClothingOuterWinterChef + entities: + - uid: 10626 + components: + - type: Transform + parent: 10147 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterCoat + entities: + - uid: 14838 + components: + - type: Transform + pos: -17.408693,-88.124794 + parent: 2 +- proto: ClothingOuterWinterColorOrange + entities: + - uid: 12518 + components: + - type: Transform + parent: 39438 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15795 + components: + - type: Transform + parent: 19721 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16161 + components: + - type: Transform + parent: 19724 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27970 + components: + - type: Transform + parent: 30659 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30790 + components: + - type: Transform + parent: 39436 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30791 + components: + - type: Transform + parent: 39437 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30792 + components: + - type: Transform + parent: 39439 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30793 + components: + - type: Transform + parent: 39440 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30794 + components: + - type: Transform + parent: 39441 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterColorWhite + entities: + - uid: 14837 + components: + - type: Transform + pos: -17.580568,-88.42167 + parent: 2 - proto: ClothingOuterWinterMusician entities: - uid: 15361 @@ -107954,6 +109420,15 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterWinterViro + entities: + - uid: 14835 + components: + - type: MetaData + name: 'зелёная зимняя куртка ' + - type: Transform + pos: -17.283693,-88.406044 + parent: 2 - proto: ClothingOuterWizard entities: - uid: 15662 @@ -108091,6 +109566,22 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingShoesBootsWinter + entities: + - uid: 14839 + components: + - type: Transform + pos: -17.518068,-85.312294 + parent: 2 +- proto: ClothingShoesChef + entities: + - uid: 10625 + components: + - type: Transform + parent: 10147 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingShoesClownBanana entities: - uid: 15826 @@ -108114,6 +109605,15 @@ entities: - type: Transform pos: -34.5189,-83.39491 parent: 2 +- proto: ClothingShoesGaloshes + entities: + - uid: 12459 + components: + - type: Transform + parent: 2600 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingShoeSlippersDuck entities: - uid: 15828 @@ -108139,6 +109639,28 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingShoesSkates + entities: + - uid: 14840 + components: + - type: Transform + pos: -24.248991,-83.76542 + parent: 2 + - uid: 14842 + components: + - type: Transform + pos: -19.748991,-88.23417 + parent: 2 + - uid: 14844 + components: + - type: Transform + pos: -17.533693,-84.39042 + parent: 2 + - uid: 30783 + components: + - type: Transform + pos: -17.486818,-84.73417 + parent: 2 - proto: ClothingShoesSwat entities: - uid: 15834 @@ -108245,13 +109767,6 @@ entities: - type: Transform pos: -16.223269,-29.239569 parent: 2 -- proto: ClothingUniformJumpskirtOfLife - entities: - - uid: 15849 - components: - - type: Transform - pos: 103.35912,-50.496166 - parent: 2 - proto: ClothingUniformJumpskirtPerformer entities: - uid: 15363 @@ -108609,6 +110124,41 @@ entities: rot: 3.141592653589793 rad pos: -35.5,19.5 parent: 2 + - uid: 42297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-31.5 + parent: 2 + - uid: 42298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 2 + - uid: 42299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-39.5 + parent: 2 + - uid: 42300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-30.5 + parent: 2 + - uid: 42301 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 42302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 2 - proto: CockroachTimedSpawner entities: - uid: 15891 @@ -108631,11 +110181,6 @@ entities: - type: Transform pos: 63.5,-48.5 parent: 2 - - uid: 15895 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - uid: 15896 components: - type: Transform @@ -108651,6 +110196,11 @@ entities: - type: Transform pos: 44.5,10.5 parent: 2 + - uid: 33349 + components: + - type: Transform + pos: -13.5,-95.5 + parent: 2 - proto: CognizineChemistryBottle entities: - uid: 15900 @@ -108674,6 +110224,20 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-48.5 parent: 2 + - uid: 42086 + components: + - type: Transform + parent: 41840 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42090 + components: + - type: Transform + parent: 41840 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ComfyChair entities: - uid: 15902 @@ -108866,18 +110430,6 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,10.5 parent: 2 - - uid: 15934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 2 - - uid: 15935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 2 - uid: 15936 components: - type: Transform @@ -108900,16 +110452,6 @@ entities: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 15940 - components: - - type: Transform - pos: 2.5,1.5 - parent: 2 - - uid: 15941 - components: - - type: Transform - pos: 3.5,1.5 - parent: 2 - uid: 15942 components: - type: Transform @@ -109252,6 +110794,12 @@ entities: parent: 2 - proto: ComputerFrame entities: + - uid: 15500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,-55.5 + parent: 2 - uid: 15996 components: - type: Transform @@ -109287,6 +110835,18 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-51.5 parent: 2 + - uid: 26563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-46.5 + parent: 2 + - uid: 29295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-47.5 + parent: 2 - proto: ComputerId entities: - uid: 16002 @@ -109478,11 +111038,17 @@ entities: - type: Transform pos: -40.5,-46.5 parent: 2 + - type: AccessReader + access: + - - ResearchDirector - uid: 16029 components: - type: Transform pos: -38.5,-61.5 parent: 2 + - type: AccessReader + access: + - - ResearchDirector - uid: 16030 components: - type: Transform @@ -109491,12 +111057,6 @@ entities: parent: 2 - proto: ComputerRoboticsControl entities: - - uid: 16031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,21.5 - parent: 2 - uid: 16032 components: - type: Transform @@ -109699,6 +111259,12 @@ entities: parent: 2 - proto: ComputerTelevision entities: + - uid: 15797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,4.5 + parent: 2 - uid: 16062 components: - type: Transform @@ -109711,11 +111277,6 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-71.5 parent: 2 - - uid: 16064 - components: - - type: Transform - pos: -31.5,4.5 - parent: 2 - uid: 16065 components: - type: Transform @@ -109748,6 +111309,24 @@ entities: - type: Transform pos: 59.5,-66.5 parent: 2 + - uid: 42501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-57.5 + parent: 2 + - uid: 42502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-57.5 + parent: 2 + - uid: 42503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-61.5 + parent: 2 - proto: ConvertAltarSpawner entities: - uid: 16071 @@ -109757,6 +111336,22 @@ entities: parent: 2 - proto: ConveyorBelt entities: + - uid: 2110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-50.5 + parent: 2 + - uid: 15159 + components: + - type: Transform + pos: 81.5,-49.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + pos: 83.5,-51.5 + parent: 2 - uid: 16072 components: - type: Transform @@ -110207,15 +111802,57 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-98.5 parent: 2 + - uid: 27149 + components: + - type: Transform + pos: 81.5,-48.5 + parent: 2 + - uid: 27753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-53.5 + parent: 2 + - uid: 32476 + components: + - type: Transform + pos: 81.5,-47.5 + parent: 2 + - uid: 32683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-53.5 + parent: 2 + - uid: 32738 + components: + - type: Transform + pos: 83.5,-50.5 + parent: 2 + - uid: 32804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-50.5 + parent: 2 + - uid: 33748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-53.5 + parent: 2 + - uid: 38502 + components: + - type: Transform + pos: 83.5,-52.5 + parent: 2 - proto: CorporateCircuitBoard entities: - uid: 1347 components: - type: Transform - parent: 1345 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 17.441696,22.583607 + parent: 2 - proto: CounterMetalFrame entities: - uid: 16148 @@ -110265,6 +111902,13 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,23.5 parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 42442 + components: + - type: Transform + pos: -51.5,-73.5 + parent: 2 - proto: CrateBodyBags entities: - uid: 16156 @@ -110281,75 +111925,6 @@ entities: parent: 2 - proto: CrateCoffin entities: - - uid: 15725 - components: - - type: Transform - pos: 31.5,27.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8977377 - - 7.139109 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15727 - - 15726 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 15788 - components: - - type: Transform - pos: 33.5,-73.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15789 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 16158 components: - type: Transform @@ -110361,8 +111936,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -110379,16 +111954,11 @@ entities: showEnts: False occludes: True ents: - - 16159 + - 15789 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 16161 - components: - - type: Transform - pos: -30.5,-98.5 - parent: 2 - uid: 16162 components: - type: Transform @@ -110440,6 +112010,11 @@ entities: parent: 2 - proto: CrateEmptySpawner entities: + - uid: 15499 + components: + - type: Transform + pos: 82.5,-44.5 + parent: 2 - uid: 16167 components: - type: Transform @@ -110585,6 +112160,11 @@ entities: - type: Transform pos: 68.5,-15.5 parent: 2 + - uid: 42366 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 - proto: CrateEngineering entities: - uid: 16196 @@ -110606,8 +112186,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -110624,6 +112204,13 @@ entities: showEnts: False occludes: True ents: + - 41698 + - 41697 + - 41702 + - 41701 + - 42082 + - 42081 + - 42080 - 41700 - 41692 - 41696 @@ -110632,10 +112219,6 @@ entities: - 41695 - 41694 - 41693 - - 41698 - - 41697 - - 41702 - - 41701 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -110678,8 +112261,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -110874,31 +112457,13 @@ entities: - 0 - 0 - 0 -- proto: CrateFunDartsSet - entities: - - uid: 16223 + - uid: 18875 components: - type: Transform - pos: 87.5,-55.5 + pos: 31.5,16.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 +- proto: CrateFunDartsSet + entities: - uid: 16224 components: - type: Transform @@ -111023,8 +112588,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8978093 + - 7.139378 - 0 - 0 - 0 @@ -111166,6 +112731,77 @@ entities: showEnts: False occludes: True ent: null + - uid: 15648 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateHydroSecure + entities: + - uid: 3485 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3486 + - 3487 + - 3488 + - 5074 + - 5075 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateMedical entities: - uid: 16234 @@ -111294,12 +112930,19 @@ entities: - type: Transform pos: -51.5,-33.5 parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 27122 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 - proto: CrateNPCCow entities: - - uid: 16244 + - uid: 13352 components: - type: Transform - pos: 26.5,8.5 + pos: 29.5,21.5 parent: 2 - type: EntityStorage open: True @@ -111316,7 +112959,6 @@ entities: - -0.4,0.29 mask: - Impassable - - TableLayer - HighImpassable - LowImpassable layer: @@ -111402,7 +113044,7 @@ entities: - uid: 2112 components: - type: Transform - pos: 35.5,7.5 + pos: 36.5,6.5 parent: 2 - type: EntityStorage air: @@ -111410,8 +113052,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -111428,36 +113070,38 @@ entities: showEnts: False occludes: True ents: - - 2127 - - 2138 - - 2125 - - 2124 - - 2135 - - 2116 - - 2114 - - 2113 - - 2115 - - 2123 - - 2134 - - 2136 - - 2133 - - 2137 - - 2132 - - 2129 - - 2131 - - 2128 - - 2126 - - 2130 - - 2122 - - 2121 - - 2120 - - 2119 - - 2118 - 2117 + - 2118 + - 2119 + - 2120 + - 2121 + - 2122 + - 2130 + - 2126 + - 2128 + - 2131 + - 2129 + - 2132 + - 2137 + - 2133 + - 2136 + - 2134 + - 2123 + - 2115 + - 2113 + - 2114 + - 2116 + - 2135 + - 2124 + - 2125 + - 2138 + - 2127 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null + - type: Pullable + prevFixedRotation: True - uid: 2449 components: - type: Transform @@ -111786,14 +113430,35 @@ entities: - type: Transform pos: -85.5,-11.5 parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14755 moles: - - 1.8856695 - - 7.0937095 - 0 - 0 - 0 @@ -111804,6 +113469,12 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - uid: 16263 components: - type: Transform @@ -111937,10 +113608,20 @@ entities: parent: 2 - proto: CrateStoneGrave entities: + - uid: 16031 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 - uid: 16269 components: - type: Transform - pos: 28.5,29.5 + pos: 30.5,30.5 + parent: 2 + - uid: 16305 + components: + - type: Transform + pos: 32.5,30.5 parent: 2 - proto: CrateSurgery entities: @@ -111951,11 +113632,6 @@ entities: parent: 2 - proto: CrateTrashCart entities: - - uid: 16271 - components: - - type: Transform - pos: 24.5,17.5 - parent: 2 - uid: 16272 components: - type: Transform @@ -112101,15 +113777,20 @@ entities: showEnts: False occludes: True ent: null - - uid: 16285 + - uid: 16286 components: - type: Transform - pos: 8.5,-1.5 + pos: -9.5,-71.5 parent: 2 - - uid: 16286 + - uid: 34154 components: - type: Transform - pos: -9.5,-71.5 + pos: 5.5,0.5 + parent: 2 + - uid: 34155 + components: + - type: Transform + pos: 5.5,1.5 parent: 2 - proto: CrateWeaponSecure entities: @@ -112384,23 +114065,6 @@ entities: showEnts: False occludes: True ent: null -- proto: CrateWoodenGrave - entities: - - uid: 16305 - components: - - type: Transform - pos: 29.5,27.5 - parent: 2 - - uid: 16306 - components: - - type: Transform - pos: 32.5,30.5 - parent: 2 - - uid: 16307 - components: - - type: Transform - pos: 30.5,30.5 - parent: 2 - proto: CrayonBox entities: - uid: 1316 @@ -112489,12 +114153,12 @@ entities: - type: SingletonDeviceNetServer active: False available: False -- proto: CrewMonitoringServerMachineCircuitboard +- proto: CriminalRecordsComputerCircuitboard entities: - - uid: 16319 + - uid: 15664 components: - type: Transform - pos: 39.494335,-42.41867 + pos: 39.550476,-42.471924 parent: 2 - proto: Crowbar entities: @@ -112557,11 +114221,6 @@ entities: - type: Transform pos: -81.5,-11.5 parent: 2 - - uid: 16330 - components: - - type: Transform - pos: 34.454247,19.572659 - parent: 2 - uid: 16331 components: - type: Transform @@ -113352,15 +115011,11 @@ entities: parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - - uid: 16425 + - uid: 37703 components: - type: Transform - pos: 7.5,0.5 + pos: 7.5,-1.5 parent: 2 - - type: NavMapBeacon - text: Убор. - - type: WarpPoint - location: Сервис - уборщики - proto: DefaultStationBeaconKitchen entities: - uid: 16426 @@ -113431,6 +115086,20 @@ entities: text: Генохранилище - type: WarpPoint location: Генохранилище +- proto: DefaultStationBeaconMorgue + entities: + - uid: 42440 + components: + - type: Transform + pos: -56.5,-33.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 16425 + components: + - type: Transform + pos: 80.5,-5.5 + parent: 2 - proto: DefaultStationBeaconPowerBank entities: - uid: 16433 @@ -113530,16 +115199,6 @@ entities: - type: Transform pos: 59.5,-2.5 parent: 2 - - uid: 16443 - components: - - type: Transform - pos: 80.5,-5.5 - parent: 2 - - type: NavMapBeacon - text: Перма - - type: WarpPoint - location: Перма - - type: BombingTarget - proto: DefaultStationBeaconSecurityCheckpoint entities: - uid: 16444 @@ -113582,6 +115241,13 @@ entities: text: Офис репортёра - type: WarpPoint location: Офис репортёра +- proto: DefaultStationBeaconSingularity + entities: + - uid: 42446 + components: + - type: Transform + pos: 61.5,-61.5 + parent: 2 - proto: DefaultStationBeaconSolars entities: - uid: 16448 @@ -113713,6 +115379,13 @@ entities: text: Хранилище - type: WarpPoint location: Хранилище +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 42447 + components: + - type: Transform + pos: 48.5,-24.5 + parent: 2 - proto: DefibrillatorCabinetFilled entities: - uid: 16461 @@ -113876,12 +115549,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.29453,13.542628 parent: 2 - - uid: 16490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.53712,-49.442993 - parent: 2 - proto: DiseaseDiagnoser entities: - uid: 16491 @@ -114027,27 +115694,54 @@ entities: rot: 3.141592653589793 rad pos: -11.551215,-41.331028 parent: 2 -- proto: DisgustingSweptSoup +- proto: DisposalBend entities: - - uid: 16516 + - uid: 6087 components: - - type: MetaData - name: котёл для зелий - type: Transform - pos: 28.448263,28.692951 + rot: -1.5707963267948966 rad + pos: 30.5,24.5 parent: 2 -- proto: DisposalBend - entities: - - uid: 16517 + - uid: 13355 components: - type: Transform - pos: 11.5,-3.5 + rot: 1.5707963267948966 rad + pos: 26.5,24.5 parent: 2 - - uid: 16518 + - uid: 13358 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-33.5 + pos: 26.5,16.5 + parent: 2 + - uid: 14514 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 15243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,25.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - uid: 15941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - uid: 16517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 parent: 2 - uid: 16519 components: @@ -114067,12 +115761,6 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,-8.5 parent: 2 - - uid: 16522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-38.5 - parent: 2 - uid: 16523 components: - type: Transform @@ -114111,14 +115799,7 @@ entities: - uid: 16529 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 2 - - uid: 16530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-44.5 + pos: 3.5,-3.5 parent: 2 - uid: 16531 components: @@ -114444,18 +116125,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,7.5 parent: 2 - - uid: 16587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,17.5 - parent: 2 - - uid: 16588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,16.5 - parent: 2 - uid: 16589 components: - type: Transform @@ -114639,12 +116308,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-17.5 parent: 2 - - uid: 16621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,1.5 - parent: 2 - uid: 16622 components: - type: Transform @@ -114730,12 +116393,6 @@ entities: - type: Transform pos: -21.5,-76.5 parent: 2 - - uid: 16637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,14.5 - parent: 2 - uid: 16638 components: - type: Transform @@ -114836,7 +116493,8 @@ entities: - uid: 16655 components: - type: Transform - pos: -25.5,-44.5 + rot: 1.5707963267948966 rad + pos: -25.5,-42.5 parent: 2 - uid: 16656 components: @@ -115521,6 +117179,104 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,0.5 parent: 2 + - uid: 16855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-43.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,17.5 + parent: 2 + - uid: 17708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-38.5 + parent: 2 + - uid: 17762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 2 + - uid: 40602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-42.5 + parent: 2 + - uid: 41976 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - uid: 41982 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 2 + - uid: 41983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-32.5 + parent: 2 + - uid: 41996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-41.5 + parent: 2 + - uid: 42003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-73.5 + parent: 2 + - uid: 42008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-75.5 + parent: 2 + - uid: 42009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-75.5 + parent: 2 + - uid: 42399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,12.5 + parent: 2 + - uid: 42400 + components: + - type: Transform + pos: -41.5,12.5 + parent: 2 + - uid: 42403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,8.5 + parent: 2 + - uid: 42421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,1.5 + parent: 2 + - uid: 42422 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 - proto: DisposalJunction entities: - uid: 16775 @@ -115652,11 +117408,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-77.5 parent: 2 - - uid: 16798 - components: - - type: Transform - pos: 33.5,11.5 - parent: 2 - uid: 16799 components: - type: Transform @@ -115702,8 +117453,35 @@ entities: - type: Transform pos: 44.5,-13.5 parent: 2 + - uid: 17334 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 41977 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 2 + - uid: 41997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-41.5 + parent: 2 + - uid: 42004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-73.5 + parent: 2 - proto: DisposalJunctionFlipped entities: + - uid: 15705 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 - uid: 16807 components: - type: Transform @@ -115953,8 +117731,112 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,1.5 parent: 2 + - uid: 41972 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 41973 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 41989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 2 + - uid: 41998 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 42002 + components: + - type: Transform + pos: 3.5,-73.5 + parent: 2 +- proto: DisposalMachineFrame + entities: + - uid: 13708 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 - proto: DisposalPipe entities: + - uid: 1041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,18.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,22.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,12.5 + parent: 2 + - uid: 11966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,23.5 + parent: 2 + - uid: 11968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,24.5 + parent: 2 + - uid: 13348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,20.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,25.5 + parent: 2 + - uid: 16490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2 + - uid: 16518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-29.5 + parent: 2 + - uid: 16530 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 16587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,25.5 + parent: 2 - uid: 16851 components: - type: Transform @@ -115970,19 +117852,13 @@ entities: - uid: 16853 components: - type: Transform - pos: 25.5,-32.5 + rot: 3.141592653589793 rad + pos: 24.5,-28.5 parent: 2 - uid: 16854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-38.5 - parent: 2 - - uid: 16855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-42.5 + pos: -24.5,-39.5 parent: 2 - uid: 16856 components: @@ -116053,15 +117929,11 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,10.5 parent: 2 - - uid: 16868 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 2 - uid: 16869 components: - type: Transform - pos: 25.5,-30.5 + rot: 3.141592653589793 rad + pos: 24.5,-26.5 parent: 2 - uid: 16870 components: @@ -116076,7 +117948,8 @@ entities: - uid: 16872 components: - type: Transform - pos: 25.5,-31.5 + rot: 3.141592653589793 rad + pos: 24.5,-27.5 parent: 2 - uid: 16873 components: @@ -116144,65 +118017,17 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-3.5 parent: 2 - - uid: 16885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 2 - uid: 16886 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-3.5 parent: 2 - - uid: 16887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 2 - - uid: 16888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 2 - - uid: 16889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 2 - - uid: 16890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 2 - uid: 16891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 2 - - uid: 16892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 2 - - uid: 16893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 2 - - uid: 16894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 parent: 2 - uid: 16895 components: @@ -116237,8 +118062,7 @@ entities: - uid: 16900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-38.5 + pos: -24.5,-40.5 parent: 2 - uid: 16901 components: @@ -116297,12 +118121,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,8.5 parent: 2 - - uid: 16911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,9.5 - parent: 2 - uid: 16912 components: - type: Transform @@ -118713,79 +120531,37 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,17.5 + pos: 38.5,25.5 parent: 2 - uid: 17329 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,17.5 + pos: 37.5,25.5 parent: 2 - uid: 17330 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,17.5 + pos: 36.5,25.5 parent: 2 - uid: 17331 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,17.5 + pos: 35.5,25.5 parent: 2 - uid: 17332 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,17.5 + pos: 34.5,25.5 parent: 2 - uid: 17333 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,17.5 - parent: 2 - - uid: 17334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 2 - - uid: 17335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,17.5 - parent: 2 - - uid: 17336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,17.5 - parent: 2 - - uid: 17337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,16.5 - parent: 2 - - uid: 17338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,16.5 - parent: 2 - - uid: 17339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,16.5 - parent: 2 - - uid: 17340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,16.5 + pos: 33.5,25.5 parent: 2 - uid: 17341 components: @@ -120699,12 +122475,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 - - uid: 17672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,13.5 - parent: 2 - uid: 17673 components: - type: Transform @@ -120854,12 +122624,6 @@ entities: - type: Transform pos: 34.5,1.5 parent: 2 - - uid: 17699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 2 - uid: 17700 components: - type: Transform @@ -120908,12 +122672,6 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,-65.5 parent: 2 - - uid: 17708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-38.5 - parent: 2 - uid: 17709 components: - type: Transform @@ -121199,29 +122957,11 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-25.5 parent: 2 - - uid: 17759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-26.5 - parent: 2 - - uid: 17760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-27.5 - parent: 2 - uid: 17761 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 17762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-33.5 - parent: 2 - uid: 17763 components: - type: Transform @@ -121436,18 +123176,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-27.5 parent: 2 - - uid: 17801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-41.5 - parent: 2 - - uid: 17802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-43.5 - parent: 2 - uid: 17803 components: - type: Transform @@ -121723,11 +123451,6 @@ entities: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 17851 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 2 - uid: 17852 components: - type: Transform @@ -121841,11 +123564,6 @@ entities: rot: 3.141592653589793 rad pos: 41.5,24.5 parent: 2 - - uid: 17871 - components: - - type: Transform - pos: 41.5,25.5 - parent: 2 - uid: 17872 components: - type: Transform @@ -124135,12 +125853,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-67.5 parent: 2 - - uid: 18276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-40.5 - parent: 2 - uid: 18277 components: - type: Transform @@ -124159,12 +125871,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-67.5 parent: 2 - - uid: 18280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-67.5 - parent: 2 - uid: 18281 components: - type: Transform @@ -125194,6 +126900,65 @@ entities: rot: 3.141592653589793 rad pos: -16.5,1.5 parent: 2 + - uid: 18479 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - uid: 19650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,24.5 + parent: 2 + - uid: 31149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,19.5 + parent: 2 + - uid: 33760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - uid: 36032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-31.5 + parent: 2 + - uid: 37427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,9.5 + parent: 2 + - uid: 38483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,17.5 + parent: 2 + - uid: 38573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,9.5 + parent: 2 + - uid: 38574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,9.5 + parent: 2 + - uid: 40264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-30.5 + parent: 2 - uid: 41151 components: - type: Transform @@ -125254,6 +127019,288 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-5.5 parent: 40828 + - uid: 41974 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 41975 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 41981 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 41984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-32.5 + parent: 2 + - uid: 41985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-32.5 + parent: 2 + - uid: 41986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-32.5 + parent: 2 + - uid: 41987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-31.5 + parent: 2 + - uid: 41988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-30.5 + parent: 2 + - uid: 41994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-43.5 + parent: 2 + - uid: 42005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-74.5 + parent: 2 + - uid: 42006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-75.5 + parent: 2 + - uid: 42007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-75.5 + parent: 2 + - uid: 42010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-74.5 + parent: 2 + - uid: 42011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-73.5 + parent: 2 + - uid: 42012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-72.5 + parent: 2 + - uid: 42013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-71.5 + parent: 2 + - uid: 42014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-70.5 + parent: 2 + - uid: 42015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-69.5 + parent: 2 + - uid: 42016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-68.5 + parent: 2 + - uid: 42030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 42031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 42032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 42033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 2 + - uid: 42034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + - uid: 42035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 + - uid: 42359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,25.5 + parent: 2 + - uid: 42360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,25.5 + parent: 2 + - uid: 42394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,12.5 + parent: 2 + - uid: 42395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,12.5 + parent: 2 + - uid: 42396 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 + - uid: 42397 + components: + - type: Transform + pos: -45.5,10.5 + parent: 2 + - uid: 42398 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - uid: 42404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,8.5 + parent: 2 + - uid: 42405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,8.5 + parent: 2 + - uid: 42406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 2 + - uid: 42407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 2 + - uid: 42408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,8.5 + parent: 2 + - uid: 42409 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 42410 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 42411 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - uid: 42412 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 42413 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - uid: 42414 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 42415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,1.5 + parent: 2 + - uid: 42416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,1.5 + parent: 2 + - uid: 42417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,1.5 + parent: 2 + - uid: 42418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,1.5 + parent: 2 + - uid: 42419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,1.5 + parent: 2 + - uid: 42420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,1.5 + parent: 2 - proto: DisposalPipeBroken entities: - uid: 18464 @@ -125263,6 +127310,32 @@ entities: parent: 2 - proto: DisposalRouter entities: + - uid: 16885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - type: DisposalRouter + tags: + - mst + - uid: 17802 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - type: DisposalRouter + tags: + - med + - uid: 18280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-67.5 + parent: 2 + - type: DisposalRouter + tags: + - snab - uid: 18465 components: - type: Transform @@ -125324,8 +127397,125 @@ entities: - type: DisposalRouter tags: - personal + - uid: 19792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-32.5 + parent: 2 + - type: DisposalRouter + tags: + - brig +- proto: DisposalTagger + entities: + - uid: 2325 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 2 + - type: DisposalTagger + tag: med + - uid: 15934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - type: DisposalTagger + tag: snab + - uid: 15940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - type: DisposalTagger + tag: brig + - uid: 16522 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 2 + - type: DisposalTagger + tag: mst + - uid: 17801 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 2 + - type: DisposalTagger + tag: snab + - uid: 32795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - type: DisposalTagger + tag: med + - uid: 40218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 2 + - type: DisposalTagger + tag: snab + - uid: 40527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-27.5 + parent: 2 + - type: DisposalTagger + tag: mst + - uid: 40528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 2 + - type: DisposalTagger + tag: med + - uid: 41995 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 2 + - type: DisposalTagger + tag: brig + - uid: 42000 + components: + - type: Transform + pos: 4.5,-72.5 + parent: 2 + - type: DisposalTagger + tag: mst + - uid: 42001 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 2 + - type: DisposalTagger + tag: brig - proto: DisposalTrunk entities: + - uid: 2302 + components: + - type: Transform + pos: 5.5,-71.5 + parent: 2 + - uid: 11689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,11.5 + parent: 2 + - uid: 18276 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 - uid: 18472 components: - type: Transform @@ -125354,23 +127544,6 @@ entities: - type: Transform pos: 59.5,11.5 parent: 2 - - uid: 18477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-28.5 - parent: 2 - - uid: 18478 - components: - - type: Transform - pos: 25.5,-28.5 - parent: 2 - - uid: 18479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-39.5 - parent: 2 - uid: 18480 components: - type: Transform @@ -125694,12 +127867,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-79.5 parent: 2 - - uid: 18535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,14.5 - parent: 2 - uid: 18536 components: - type: Transform @@ -125768,12 +127935,6 @@ entities: - type: Transform pos: -45.5,-13.5 parent: 2 - - uid: 18548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-1.5 - parent: 2 - uid: 18549 components: - type: Transform @@ -125928,6 +128089,28 @@ entities: rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 2 + - uid: 27887 + components: + - type: Transform + pos: 4.5,-71.5 + parent: 2 + - uid: 32794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - uid: 33219 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 2 + - uid: 33559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 - uid: 41161 components: - type: Transform @@ -125939,8 +128122,70 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 40828 + - uid: 41970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 41971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 41978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-27.5 + parent: 2 + - uid: 41979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + - uid: 41980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 2 + - uid: 41993 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - uid: 42052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 - proto: DisposalUnit entities: + - uid: 2285 + components: + - type: MetaData + desc: Теперь и лифт для сверхбыстрого перемещения. Вау. + name: пневматический лифт + - type: Transform + pos: 4.5,-71.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: 37.5,9.5 + parent: 2 + - uid: 15935 + components: + - type: MetaData + desc: Теперь и лифт для сверхбыстрого перемещения. Вау. + name: пневматический лифт + - type: Transform + pos: 3.5,-0.5 + parent: 2 - uid: 18576 components: - type: Transform @@ -125952,7 +128197,7 @@ entities: desc: Теперь и лифт для сверхбыстрого перемещения. Вау. name: пневматический лифт - type: Transform - pos: 24.5,-28.5 + pos: 25.5,-28.5 parent: 2 - uid: 18578 components: @@ -125965,7 +128210,7 @@ entities: desc: Теперь и лифт для сверхбыстрого перемещения. Вау. name: пневматический лифт - type: Transform - pos: 25.5,-28.5 + pos: 25.5,-29.5 parent: 2 - uid: 18580 components: @@ -125998,11 +128243,6 @@ entities: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 18585 - components: - - type: Transform - pos: 34.5,14.5 - parent: 2 - uid: 18586 components: - type: Transform @@ -126316,11 +128556,6 @@ entities: - type: Transform pos: -22.5,-91.5 parent: 2 - - uid: 18648 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 2 - uid: 18649 components: - type: Transform @@ -126408,13 +128643,71 @@ entities: - type: Transform pos: 64.5,-5.5 parent: 2 + - uid: 28648 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 29368 + components: + - type: MetaData + desc: Теперь и лифт для сверхбыстрого перемещения. Вау. + name: пневматический лифт + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 29372 + components: + - type: MetaData + desc: Теперь и лифт для сверхбыстрого перемещения. Вау. + name: пневматический лифт + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 31280 + components: + - type: MetaData + desc: Теперь и лифт для сверхбыстрого перемещения. Вау. + name: пневматический лифт + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 32587 + components: + - type: MetaData + desc: Теперь и лифт для сверхбыстрого перемещения. Вау. + name: пневматический лифт + - type: Transform + pos: 3.5,-71.5 + parent: 2 + - uid: 39880 + components: + - type: MetaData + desc: Теперь и лифт для сверхбыстрого перемещения. Вау. + name: пневматический лифт + - type: Transform + pos: 5.5,-71.5 + parent: 2 - uid: 41163 components: - type: Transform pos: 0.5,-4.5 parent: 40828 + - uid: 41992 + components: + - type: MetaData + desc: Теперь и лифт для сверхбыстрого перемещения. Вау. + name: пневматический лифт + - type: Transform + pos: -25.5,-39.5 + parent: 2 - proto: DisposalYJunction entities: + - uid: 12371 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 - uid: 18664 components: - type: Transform @@ -126460,11 +128753,6 @@ entities: - type: Transform pos: -52.5,-27.5 parent: 2 - - uid: 18672 - components: - - type: Transform - pos: 40.5,17.5 - parent: 2 - uid: 18673 components: - type: Transform @@ -127455,12 +129743,12 @@ entities: - uid: 18861 components: - type: Transform - pos: -20.154627,-87.82055 + pos: -35.359737,-106.590935 parent: 2 - uid: 18862 components: - type: Transform - pos: -23.498377,-84.367424 + pos: -35.578487,-106.403435 parent: 2 - uid: 18863 components: @@ -127542,13 +129830,6 @@ entities: - type: Transform pos: 33.513348,-71.052895 parent: 2 -- proto: EggplantSeeds - entities: - - uid: 18875 - components: - - type: Transform - pos: 44.5912,22.40593 - parent: 2 - proto: EggSpider entities: - uid: 18876 @@ -128042,6 +130323,20 @@ entities: parent: 86 - type: Physics canCollide: False + - uid: 42091 + components: + - type: Transform + parent: 41840 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42092 + components: + - type: Transform + parent: 41840 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: EmergencyOxygenTankFilled entities: - uid: 69 @@ -128116,6 +130411,23 @@ entities: - type: Transform pos: 56.5,-65.5 parent: 2 + - uid: 42498 + components: + - type: Transform + pos: 74.5,-54.5 + parent: 2 + - uid: 42499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-64.5 + parent: 2 + - uid: 42500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-64.5 + parent: 2 - proto: EncryptionKeyCentCom entities: - uid: 41782 @@ -128227,6 +130539,31 @@ entities: parent: 2 - type: SpawnOnTrigger proto: SpaceMedipen + - uid: 27103 + components: + - type: MetaData + name: одноразовый маркер спавна лута по сигналу + - type: Transform + pos: 6.5,-63.5 + parent: 2 + - type: SpawnOnTrigger + proto: LootSpawnerContrabandHigh + - uid: 38568 + components: + - type: MetaData + name: одноразовый маркер спавна РПГ-7 по сигналу + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - type: SpawnOnTrigger + proto: WeaponLauncherRocket + - uid: 42202 + components: + - type: Transform + pos: -85.5,-9.5 + parent: 2 + - type: SpawnOnTrigger + proto: BorgModuleSyndicateWeapon - proto: ERTSpawnerLeader entities: - uid: 41165 @@ -128750,6 +131087,13 @@ entities: parent: 2 - type: FaxMachine name: Офис Капитана +- proto: FigureSpawner + entities: + - uid: 42337 + components: + - type: Transform + pos: -29.5,13.5 + parent: 2 - proto: filingCabinet entities: - uid: 19055 @@ -128759,11 +131103,6 @@ entities: parent: 2 - proto: filingCabinetDrawer entities: - - uid: 19056 - components: - - type: Transform - pos: -68.5,-50.5 - parent: 2 - uid: 19057 components: - type: Transform @@ -128821,11 +131160,6 @@ entities: - type: Transform pos: 26.5,-74.5 parent: 2 - - uid: 19068 - components: - - type: Transform - pos: 28.5,19.5 - parent: 2 - uid: 19069 components: - type: Transform @@ -129247,7 +131581,6 @@ entities: - 19362 - 19493 - 19492 - - 19558 - 19560 - 19559 - 19357 @@ -130719,6 +133052,12 @@ entities: parent: 2 - proto: FirelockGlass entities: + - uid: 667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 - uid: 19243 components: - type: Transform @@ -132317,7 +134656,7 @@ entities: - type: DeviceNetwork deviceLists: - 249 - - 233 + - 42374 - uid: 19490 components: - type: Transform @@ -132731,12 +135070,6 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-40.5 parent: 2 - - uid: 19558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,2.5 - parent: 2 - uid: 19559 components: - type: Transform @@ -133055,16 +135388,6 @@ entities: - type: DeviceNetwork deviceLists: - 293 - - uid: 19612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 230 - - 233 - uid: 19613 components: - type: Transform @@ -133074,15 +135397,6 @@ entities: - type: DeviceNetwork deviceLists: - 230 - - uid: 19614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 233 - uid: 19615 components: - type: Transform @@ -133406,15 +135720,6 @@ entities: - type: DeviceNetwork deviceLists: - 251 - - uid: 19650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 248 - uid: 19651 components: - type: Transform @@ -133449,14 +135754,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,26.5 parent: 2 - - uid: 19655 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 256 - uid: 19656 components: - type: Transform @@ -133941,6 +136238,14 @@ entities: - type: DeviceNetwork deviceLists: - 300 + - uid: 26906 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 256 - uid: 41171 components: - type: Transform @@ -134004,6 +136309,61 @@ entities: - type: DeviceNetwork deviceLists: - 41170 + - uid: 42381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 42374 + - uid: 42382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 256 + - 42374 + - uid: 42383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 256 + - uid: 42384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 256 + - uid: 42385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 248 + - uid: 42386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 248 - proto: Fireplace entities: - uid: 19712 @@ -134198,8 +136558,21 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 32468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: FloorTileItemAstroIce entities: + - uid: 15725 + components: + - type: Transform + pos: 30.63586,27.717701 + parent: 2 - uid: 19741 components: - type: Transform @@ -134250,6 +136623,11 @@ entities: - type: Transform pos: -14.242958,-31.5476 parent: 2 + - uid: 28815 + components: + - type: Transform + pos: 30.35461,27.577076 + parent: 2 - proto: FloorTileItemGrayConcrete entities: - uid: 19751 @@ -134311,18 +136689,6 @@ entities: rot: 3.141592653589793 rad pos: -54.18401,-69.873634 parent: 2 -- proto: FloorTileItemSteel - entities: - - uid: 19761 - components: - - type: Transform - pos: -69.14034,-17.311636 - parent: 2 - - uid: 19762 - components: - - type: Transform - pos: -67.85909,-16.702261 - parent: 2 - proto: FloorTileItemWoodLargeLight entities: - uid: 19763 @@ -134379,109 +136745,147 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-26.5 parent: 2 -- proto: FloraRockSolid01 +- proto: FloraTreeConifer01 entities: - - uid: 19773 + - uid: 19780 components: - type: Transform - pos: 59.574043,-37.210567 + pos: -45.65528,13.332045 parent: 2 -- proto: FloraRockSolid02 +- proto: FloraTreeConifer02 entities: - - uid: 19774 + - uid: 27143 components: - type: Transform - pos: 47.49115,-40.398067 + pos: -78.18613,-43.122658 parent: 2 -- proto: FloraTree01 - entities: - - uid: 19775 + - uid: 30786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.02616,13.667983 + pos: 59.393745,-35.994534 parent: 2 - - uid: 19776 + - uid: 30787 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.21366,16.511734 + pos: 57.166035,-36.243633 parent: 2 - - uid: 19777 + - uid: 31768 components: - type: Transform - pos: 49.566105,-38.618214 + pos: 52.322285,-42.681133 parent: 2 - - uid: 19778 + - uid: 31769 components: - type: Transform - pos: 56.17899,-39.220024 + pos: 54.666035,-42.72801 parent: 2 -- proto: FloraTree02 +- proto: FloraTreeConifer03 entities: + - uid: 16319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.713978,-38.70188 + parent: 2 + - uid: 19773 + components: + - type: Transform + pos: 52.6429,-38.931133 + parent: 2 + - uid: 19775 + components: + - type: Transform + pos: -44.09278,14.988295 + parent: 2 - uid: 19779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.837837,14.902358 + pos: -49.045906,16.644545 parent: 2 -- proto: FloraTree03 - entities: - - uid: 19780 + - uid: 19783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.166916,14.574233 + pos: -41.87403,14.550795 parent: 2 -- proto: FloraTree04 + - uid: 19941 + components: + - type: Transform + pos: -79.7955,-42.325783 + parent: 2 + - uid: 27840 + components: + - type: Transform + pos: 48.924995,-36.869534 + parent: 2 +- proto: FloraTreeSnow01 entities: - - uid: 19781 + - uid: 12789 + components: + - type: Transform + pos: 47.8304,-41.524883 + parent: 2 + - uid: 19787 components: - type: Transform - pos: 51.25721,-42.532524 + pos: 47.564774,-37.368633 parent: 2 -- proto: FloraTree05 +- proto: FloraTreeSnow02 entities: - - uid: 19782 + - uid: 27960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.259712,16.933609 + pos: -79.70175,-43.607033 parent: 2 -- proto: FloraTreeLarge06 + - uid: 27961 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 28039 + components: + - type: Transform + pos: 48.877274,-42.493633 + parent: 2 + - uid: 30789 + components: + - type: Transform + pos: 57.603535,-41.82176 + parent: 2 +- proto: FloraTreeSnow03 entities: - - uid: 19783 + - uid: 19774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.994087,16.652359 + pos: 56.46291,-42.556133 parent: 2 -- proto: FloraTreeStump + - uid: 27962 + components: + - type: Transform + pos: -46.5,14.5 + parent: 2 +- proto: FloraTreeSnow04 entities: - - uid: 19784 + - uid: 19777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.75992,-38.149433 + pos: 50.19274,-41.88426 parent: 2 - - uid: 19785 + - uid: 19778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.16617,-38.336933 + pos: 58.984715,-42.087383 parent: 2 - - uid: 19786 + - uid: 27994 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.25992,-38.47756 + pos: -47.5,16.5 parent: 2 -- proto: FloraTreeStumpConifer +- proto: FloraTreeSnow05 entities: - - uid: 19787 + - uid: 19781 components: - type: Transform - pos: 49.939617,-39.62802 + pos: 50.478535,-36.181133 parent: 2 - proto: FoamCrossbow entities: @@ -134507,11 +136911,6 @@ entities: - type: Transform pos: -1.5,-67.5 parent: 2 - - uid: 19792 - components: - - type: Transform - pos: 22.5,-30.5 - parent: 2 - uid: 19793 components: - type: Transform @@ -134570,8 +136969,8 @@ entities: - uid: 19804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-41.5 + rot: 3.141592653589793 rad + pos: -23.5,-41.5 parent: 2 - uid: 19805 components: @@ -134619,11 +137018,6 @@ entities: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 19814 - components: - - type: Transform - pos: -23.5,-41.5 - parent: 2 - uid: 19815 components: - type: Transform @@ -134694,6 +137088,18 @@ entities: - type: Transform pos: 2.5,-12.5 parent: 2 + - uid: 37100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-40.5 + parent: 2 + - uid: 40222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-30.5 + parent: 2 - proto: FoamedIronMetal entities: - uid: 19829 @@ -135262,30 +137668,55 @@ entities: parent: 2 - proto: FoodDonkpocketDank entities: - - uid: 19889 + - uid: 3486 components: - type: Transform - pos: 32.471024,10.833689 - parent: 2 - - uid: 19890 + parent: 3485 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3487 components: - type: Transform - pos: 46.301174,21.661882 - parent: 2 - - uid: 19891 + parent: 3485 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3488 + components: + - type: Transform + parent: 3485 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5074 + components: + - type: Transform + parent: 3485 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5075 + components: + - type: Transform + parent: 3485 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16223 components: - type: Transform - pos: 46.53555,21.583757 + pos: -76.80971,-9.070961 parent: 2 - - uid: 19892 + - uid: 19889 components: - type: Transform - pos: 46.332424,21.349382 + pos: 32.471024,10.833689 parent: 2 - - uid: 19893 + - uid: 29638 components: - type: Transform - pos: 46.676174,21.411882 + pos: -76.80971,-8.820961 parent: 2 - proto: FoodDonkpocketWarm entities: @@ -135345,6 +137776,11 @@ entities: canCollide: False - proto: FoodFrozenPopsicleBerry entities: + - uid: 14836 + components: + - type: Transform + pos: -20.281591,-87.73417 + parent: 2 - uid: 18767 components: - type: Transform @@ -135367,6 +137803,11 @@ entities: parent: 18760 - type: Physics canCollide: False + - uid: 19784 + components: + - type: Transform + pos: -23.500341,-84.062294 + parent: 2 - uid: 19901 components: - type: Transform @@ -135398,6 +137839,11 @@ entities: parent: 18760 - type: Physics canCollide: False + - uid: 27142 + components: + - type: Transform + pos: 29.44836,29.965895 + parent: 2 - proto: FoodFrozenSnowconeBase entities: - uid: 18773 @@ -135406,6 +137852,11 @@ entities: parent: 18760 - type: Physics canCollide: False + - uid: 27141 + components: + - type: Transform + pos: 32.684616,29.5224 + parent: 2 - proto: FoodFrozenSnowconeBerry entities: - uid: 18774 @@ -135738,7 +138189,7 @@ entities: - uid: 19938 components: - type: Transform - pos: 49.67742,-100.15202 + pos: 49.877975,-99.745964 parent: 2 - uid: 19939 components: @@ -135759,13 +138210,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodSoupEyeball - entities: - - uid: 19941 - components: - - type: Transform - pos: 29.473808,30.5809 - parent: 2 - proto: FoodTartMime entities: - uid: 15631 @@ -135868,52378 +138312,51273 @@ entities: - type: Transform pos: 6.5824738,-48.315525 parent: 2 -- proto: GasAnalyzer +- proto: GarlandsOff entities: - - uid: 19956 + - uid: 1309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.483376,-19.439384 + pos: 86.5,-19.5 parent: 2 - - uid: 19957 + - uid: 1310 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.65291,-54.3892 - parent: 2 - - uid: 19958 - components: - - type: Transform - pos: -76.5,-27.5 + pos: -29.5,-46.5 parent: 2 - - uid: 19959 + - uid: 1774 components: - type: Transform - pos: 95.45756,-84.44403 + pos: 48.5,-80.5 parent: 2 -- proto: GasCanisterBrokenBase - entities: - - uid: 19960 + - uid: 27602 components: - type: Transform - pos: -68.5,-20.5 + pos: 10.5,26.5 parent: 2 - - uid: 19961 + - uid: 27603 components: - type: Transform - pos: 31.5,21.5 + pos: 0.5,20.5 parent: 2 - - uid: 19962 + - uid: 27775 components: - type: Transform - pos: -67.5,9.5 + pos: 9.5,26.5 parent: 2 - - uid: 19963 + - uid: 28017 components: - type: Transform - pos: -23.5,-96.5 + pos: -19.5,-3.5 parent: 2 - - uid: 19964 + - uid: 42455 components: - type: Transform - pos: -46.5,-69.5 + pos: 100.5,-25.5 parent: 2 -- proto: GasFilterFlipped - entities: - - uid: 19965 + - uid: 42456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-21.5 + pos: 24.5,-30.5 parent: 2 - - uid: 19966 + - uid: 42458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-54.5 + pos: -5.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FFAA00FF' -- proto: GasMinerCarbonDioxide - entities: - - uid: 19967 + - uid: 42459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-89.5 + pos: -4.5,7.5 parent: 2 -- proto: GasMinerNitrogenStationLarge - entities: - - uid: 19968 + - uid: 42460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-101.5 + pos: -2.5,7.5 parent: 2 - - type: GasMiner - spawnAmount: 800 - - uid: 19969 + - uid: 42468 components: - type: Transform - pos: -9.5,-53.5 + pos: 8.5,26.5 parent: 2 -- proto: GasMinerOxygenStationLarge - entities: - - uid: 19970 + - uid: 42469 components: - type: Transform - pos: 31.5,-98.5 + pos: -8.5,26.5 parent: 2 - - type: GasMiner - spawnAmount: 800 - - uid: 19971 + - uid: 42470 components: - type: Transform - pos: -2.5,-54.5 + pos: -7.5,26.5 parent: 2 -- proto: GasMinerPlasma - entities: - - uid: 19972 + - uid: 42471 components: - type: Transform - pos: 31.5,-92.5 + pos: -5.5,27.5 parent: 2 - - type: GasMiner - spawnAmount: 25 -- proto: GasMinerWaterVapor - entities: - - uid: 19973 + - uid: 42472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-86.5 + pos: -4.5,27.5 parent: 2 -- proto: GasMixer - entities: - - uid: 19974 + - uid: 42473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-56.5 + pos: -2.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#00FF00FF' - - uid: 19975 + - uid: 42474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-89.5 + pos: -1.5,28.5 parent: 2 - - uid: 19976 + - uid: 42475 components: - type: Transform - pos: 36.5,-103.5 + pos: -0.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 19977 + - uid: 42476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-25.5 + pos: 0.5,28.5 parent: 2 - - type: GasMixer - inletTwoConcentration: 0.20999998 - inletOneConcentration: 0.79 - - uid: 19978 + - uid: 42477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-48.5 + pos: 1.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' -- proto: GasMixerFlipped - entities: - - uid: 19979 + - uid: 42478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-83.5 + pos: 2.5,28.5 parent: 2 - - type: GasMixer - inletTwoConcentration: 0.20999998 - inletOneConcentration: 0.79 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19980 + - uid: 42479 components: - type: Transform - pos: -5.5,-51.5 + pos: 3.5,28.5 parent: 2 -- proto: GasOutletInjector - entities: - - uid: 19981 + - uid: 42480 components: - type: Transform - pos: -1.5,-18.5 + pos: 5.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19982 + - uid: 42481 components: - type: Transform - pos: -0.5,-18.5 + pos: 6.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19983 + - uid: 42482 components: - type: Transform - pos: 0.5,-18.5 + pos: 0.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19984 + - uid: 42483 components: - type: Transform - pos: 1.5,-18.5 + pos: -7.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19985 + - uid: 42484 components: - type: Transform - pos: 2.5,-18.5 + pos: -6.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19986 + - uid: 42485 components: - type: Transform - pos: -7.5,-14.5 + pos: -17.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19987 + - uid: 42486 components: - type: Transform - pos: -6.5,-14.5 + pos: -15.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19988 + - uid: 42487 components: - type: Transform - pos: -1.5,-16.5 + pos: -21.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19989 + - uid: 42488 components: - type: Transform - pos: -5.5,-14.5 + pos: -13.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19990 + - uid: 42489 components: - type: Transform - pos: -0.5,-16.5 + pos: 46.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19991 + - uid: 42490 components: - type: Transform - pos: -4.5,-14.5 + pos: 51.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19992 + - uid: 42491 components: - type: Transform - pos: -4.5,-16.5 + pos: 52.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19993 + - uid: 42492 components: - type: Transform - pos: -5.5,-16.5 + pos: 56.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19994 + - uid: 42493 components: - type: Transform - pos: -6.5,-16.5 + pos: 58.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19995 + - uid: 42494 components: - type: Transform - pos: -7.5,-16.5 + pos: 62.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19996 + - uid: 42495 components: - type: Transform - pos: -8.5,-16.5 + pos: 64.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19997 + - uid: 42496 components: - type: Transform - pos: -9.5,-16.5 + pos: 56.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19998 + - uid: 42497 components: - type: Transform - pos: -72.5,-77.5 + pos: 55.5,11.5 parent: 2 - - uid: 19999 + - uid: 42504 components: - type: Transform - pos: 2.5,-16.5 + rot: -1.5707963267948966 rad + pos: 45.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20000 + - uid: 42505 components: - type: Transform - pos: 0.5,-16.5 + rot: -1.5707963267948966 rad + pos: 45.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20001 + - uid: 42506 components: - type: Transform - pos: -9.5,-14.5 + rot: 1.5707963267948966 rad + pos: 30.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20002 + - uid: 42507 components: - type: Transform - pos: -8.5,-14.5 + pos: 31.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20003 + - uid: 42508 components: - type: Transform - pos: -16.5,-13.5 + pos: 25.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20004 + - uid: 42509 components: - type: Transform - pos: -12.5,-13.5 + rot: -1.5707963267948966 rad + pos: -45.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20005 + - uid: 42510 components: - type: Transform - pos: -15.5,-13.5 + pos: 49.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20006 + - uid: 42511 components: - type: Transform - pos: -13.5,-13.5 + pos: 50.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20007 + - uid: 42512 components: - type: Transform - pos: 1.5,-16.5 + pos: 51.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20008 + - uid: 42513 components: - type: Transform - pos: -14.5,-13.5 + pos: 55.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20009 + - uid: 42514 components: - type: Transform - pos: -16.5,-15.5 + pos: 56.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20010 + - uid: 42515 components: - type: Transform - pos: -15.5,-15.5 + pos: 57.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20011 + - uid: 42516 components: - type: Transform - pos: -14.5,-15.5 + rot: -1.5707963267948966 rad + pos: 46.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20012 + - uid: 42517 components: - type: Transform - pos: -13.5,-15.5 + rot: -1.5707963267948966 rad + pos: 46.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20013 + - uid: 42518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,6.5 + rot: -1.5707963267948966 rad + pos: 46.5,-37.5 parent: 2 - - uid: 20014 + - uid: 42519 components: - type: Transform - pos: -12.5,-15.5 + rot: -1.5707963267948966 rad + pos: 46.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20015 + - uid: 42520 components: - type: Transform - pos: -4.5,-12.5 + rot: -1.5707963267948966 rad + pos: 46.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20016 + - uid: 42521 components: - type: Transform - pos: -5.5,-12.5 + rot: -1.5707963267948966 rad + pos: 46.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20017 + - uid: 42522 components: - type: Transform - pos: -6.5,-12.5 + rot: 3.141592653589793 rad + pos: 67.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20018 + - uid: 42523 components: - type: Transform - pos: -7.5,-12.5 + rot: 3.141592653589793 rad + pos: 68.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20019 + - uid: 42524 components: - type: Transform - pos: -8.5,-12.5 + rot: 3.141592653589793 rad + pos: 69.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20020 + - uid: 42525 components: - type: Transform - pos: -9.5,-12.5 + rot: 3.141592653589793 rad + pos: 65.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20021 + - uid: 42526 components: - type: Transform - pos: -12.5,-11.5 + rot: 3.141592653589793 rad + pos: 66.5,-30.5 parent: 2 - - uid: 20022 + - uid: 42527 components: - type: Transform - pos: -13.5,-11.5 + rot: 3.141592653589793 rad + pos: 67.5,-30.5 parent: 2 - - uid: 20023 + - uid: 42528 components: - type: Transform - pos: -14.5,-11.5 + rot: 3.141592653589793 rad + pos: 74.5,-30.5 parent: 2 - - uid: 20024 + - uid: 42529 components: - type: Transform - pos: -15.5,-11.5 + rot: 3.141592653589793 rad + pos: 75.5,-30.5 parent: 2 - - uid: 20025 + - uid: 42530 components: - type: Transform - pos: -16.5,-11.5 + rot: 3.141592653589793 rad + pos: 76.5,-30.5 parent: 2 - - uid: 20026 + - uid: 42531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,6.5 + rot: 1.5707963267948966 rad + pos: 84.5,-27.5 parent: 2 -- proto: GasPassiveGate - entities: - - uid: 20027 + - uid: 42532 components: - type: Transform - pos: -17.5,-15.5 + rot: 1.5707963267948966 rad + pos: 84.5,-28.5 parent: 2 - - uid: 20028 + - uid: 42533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-53.5 + rot: 1.5707963267948966 rad + pos: 84.5,-29.5 parent: 2 - - uid: 20029 + - uid: 42534 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-53.5 + pos: 84.5,-30.5 parent: 2 -- proto: GasPassiveVent - entities: - - uid: 20030 + - uid: 42535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-98.5 + pos: 86.5,-37.5 parent: 2 - - uid: 20031 + - uid: 42536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-108.5 + pos: 87.5,-37.5 parent: 2 - - uid: 20032 + - uid: 42537 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-77.5 + pos: 88.5,-37.5 parent: 2 - - uid: 20033 + - uid: 42538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-108.5 + rot: 1.5707963267948966 rad + pos: 84.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20034 + - uid: 42539 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-101.5 + pos: 84.5,-33.5 parent: 2 - - uid: 20035 + - uid: 42540 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-56.5 + pos: 84.5,-34.5 parent: 2 - - uid: 20036 + - uid: 42541 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-92.5 + pos: 84.5,-35.5 parent: 2 - - uid: 20037 + - uid: 42542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-89.5 + pos: 93.5,-37.5 parent: 2 - - uid: 20038 + - uid: 42543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-86.5 + pos: 94.5,-37.5 parent: 2 - - uid: 20039 + - uid: 42544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-85.5 + pos: 95.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20040 + - uid: 42545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-58.5 + pos: 96.5,-37.5 parent: 2 - - uid: 20041 + - uid: 42546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-108.5 + pos: 100.5,-37.5 parent: 2 - - uid: 20042 + - uid: 42547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-108.5 + pos: 101.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20043 + - uid: 42548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-95.5 + pos: 102.5,-37.5 parent: 2 - - uid: 20044 + - uid: 42549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-88.5 + pos: 101.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20045 + - uid: 42550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-87.5 + pos: 102.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20046 + - uid: 42551 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-77.5 + pos: 93.5,-25.5 parent: 2 - - uid: 20047 + - uid: 42552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-73.5 + pos: 94.5,-25.5 parent: 2 - - uid: 20048 + - uid: 42553 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-15.5 + pos: 95.5,-25.5 parent: 2 - - uid: 20049 + - uid: 42554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-53.5 + pos: 96.5,-25.5 parent: 2 - - uid: 20050 + - uid: 42555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-53.5 + pos: 86.5,-25.5 parent: 2 - - uid: 20051 + - uid: 42556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-54.5 + pos: 87.5,-25.5 parent: 2 - - uid: 20052 + - uid: 42557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-54.5 + pos: 88.5,-25.5 parent: 2 - - uid: 20053 + - uid: 42558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-74.5 + pos: 87.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40734 + - uid: 42561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 40666 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41178 + pos: 88.5,-19.5 + parent: 2 + - uid: 42562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 40828 - - uid: 41783 + pos: 93.5,-19.5 + parent: 2 + - uid: 42563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 41669 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeBend - entities: - - uid: 20054 + pos: 94.5,-19.5 + parent: 2 + - uid: 42564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-4.5 + pos: 95.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20055 + - uid: 42565 components: - type: Transform - pos: 42.5,4.5 + pos: 96.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20056 + - uid: 42566 components: - type: Transform - pos: 43.5,-10.5 + pos: 100.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20057 + - uid: 42567 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-25.5 + pos: 101.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20058 + - uid: 42568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-12.5 + pos: 102.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20059 + - uid: 42569 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,-19.5 + pos: 46.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20060 + - uid: 42570 components: - type: Transform - pos: 63.5,15.5 + rot: -1.5707963267948966 rad + pos: 46.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20061 + - uid: 42571 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-12.5 + pos: 46.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20062 + - uid: 42572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-23.5 + rot: 3.141592653589793 rad + pos: 48.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20063 + - uid: 42573 components: - type: Transform - pos: 62.5,5.5 + rot: 3.141592653589793 rad + pos: 50.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20064 + - uid: 42574 components: - type: Transform - pos: 48.5,-23.5 + rot: 1.5707963267948966 rad + pos: 39.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20065 + - uid: 42575 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,14.5 + pos: 39.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20066 + - uid: 42576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-1.5 + pos: -20.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20067 + - uid: 42577 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,10.5 + pos: -20.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20068 + - uid: 42578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-18.5 + pos: -21.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20069 + - uid: 42579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 + pos: -21.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20070 + - uid: 42580 components: - type: Transform - pos: -43.5,-81.5 + pos: -22.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20071 + - uid: 42581 components: - type: Transform - pos: 33.5,-5.5 + pos: -22.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20072 + - uid: 42582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,6.5 + pos: -23.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20073 + - uid: 42583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-69.5 + pos: -23.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20074 + - uid: 42584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-100.5 + pos: -24.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20075 + - uid: 42585 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-108.5 + pos: -24.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20076 + - uid: 42586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-100.5 + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20077 + - uid: 42587 components: - type: Transform - pos: 31.5,14.5 + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20078 + - uid: 42588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,14.5 + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20079 + - uid: 42589 components: - type: Transform - pos: -48.5,-12.5 + rot: -1.5707963267948966 rad + pos: -26.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20080 + - uid: 42590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-80.5 + rot: -1.5707963267948966 rad + pos: -26.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20081 + - uid: 42591 components: - type: Transform - pos: 62.5,-60.5 + rot: -1.5707963267948966 rad + pos: -26.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20082 + - uid: 42592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-55.5 + rot: -1.5707963267948966 rad + pos: -26.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#00FF00FF' - - uid: 20083 + - uid: 42593 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-69.5 + pos: -26.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20084 + - uid: 42594 components: - type: Transform - pos: 35.5,-46.5 + rot: -1.5707963267948966 rad + pos: -26.5,-24.5 parent: 2 - - uid: 20085 + - uid: 42595 components: - type: Transform - pos: 39.5,-49.5 + rot: -1.5707963267948966 rad + pos: -26.5,-28.5 parent: 2 - - uid: 20086 + - uid: 42596 components: - type: Transform - pos: 35.5,-48.5 + rot: -1.5707963267948966 rad + pos: -26.5,-29.5 parent: 2 - - uid: 20087 + - uid: 42597 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-20.5 + rot: -1.5707963267948966 rad + pos: -26.5,-30.5 parent: 2 - - uid: 20088 + - uid: 42598 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-21.5 + pos: -26.5,-31.5 parent: 2 - - uid: 20089 + - uid: 42599 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-103.5 + pos: -26.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20090 + - uid: 42600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-86.5 + rot: -1.5707963267948966 rad + pos: -29.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 20091 + - uid: 42601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-87.5 + rot: -1.5707963267948966 rad + pos: -29.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 20092 + - uid: 42602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-91.5 + rot: -1.5707963267948966 rad + pos: -29.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20093 + - uid: 42603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-38.5 + rot: -1.5707963267948966 rad + pos: -29.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20094 + - uid: 42604 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-83.5 + pos: -29.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20095 + - uid: 42605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-77.5 + rot: -1.5707963267948966 rad + pos: -29.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20096 + - uid: 42606 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-77.5 + pos: -29.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20097 + - uid: 42607 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-79.5 + pos: -29.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20098 + - uid: 42608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-79.5 + rot: -1.5707963267948966 rad + pos: -29.5,-50.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20099 + - uid: 42609 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-68.5 + pos: 30.5,-50.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20100 + - uid: 42610 components: - type: Transform - pos: 53.5,-69.5 + rot: -1.5707963267948966 rad + pos: -26.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20101 + - uid: 42611 components: - type: Transform - pos: 56.5,-68.5 + rot: -1.5707963267948966 rad + pos: -26.5,-55.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20102 + - uid: 42612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-56.5 + rot: -1.5707963267948966 rad + pos: -26.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20103 + - uid: 42613 components: - type: Transform - pos: 50.5,-56.5 + rot: -1.5707963267948966 rad + pos: -26.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20104 + - uid: 42614 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-58.5 + pos: -26.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20105 + - uid: 42615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-58.5 + rot: -1.5707963267948966 rad + pos: -26.5,-62.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20106 + - uid: 42616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-29.5 + rot: -1.5707963267948966 rad + pos: -26.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20107 + - uid: 42617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-40.5 + rot: -1.5707963267948966 rad + pos: -26.5,-64.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20108 + - uid: 42619 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,-41.5 + pos: -23.5,-68.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20109 + - uid: 42620 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,-39.5 + pos: -22.5,-68.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20110 + - uid: 42621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-21.5 + rot: 3.141592653589793 rad + pos: -21.5,-68.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20111 + - uid: 42622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-23.5 + rot: 3.141592653589793 rad + pos: -17.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20112 + - uid: 42623 components: - type: Transform - pos: 102.5,-41.5 + rot: 3.141592653589793 rad + pos: -16.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20113 + - uid: 42624 components: - type: Transform - pos: 102.5,-23.5 + rot: 3.141592653589793 rad + pos: -15.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20114 + - uid: 42625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-33.5 + rot: 3.141592653589793 rad + pos: -12.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20115 + - uid: 42626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-31.5 + rot: 3.141592653589793 rad + pos: -11.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20116 + - uid: 42627 components: - type: Transform - pos: 30.5,-9.5 + rot: 3.141592653589793 rad + pos: -10.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20117 + - uid: 42628 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-9.5 + pos: 11.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20118 + - uid: 42629 components: - type: Transform - pos: 29.5,-7.5 + rot: 3.141592653589793 rad + pos: 12.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20119 + - uid: 42630 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-7.5 + pos: 13.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20120 + - uid: 42631 components: - type: Transform - pos: 28.5,-4.5 + rot: 3.141592653589793 rad + pos: 16.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20121 + - uid: 42632 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-4.5 + pos: 17.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20122 + - uid: 42633 components: - type: Transform - pos: 28.5,-10.5 + rot: 3.141592653589793 rad + pos: 18.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20123 + - uid: 42634 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-10.5 + pos: 22.5,-68.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20124 + - uid: 42635 components: - type: Transform - pos: 27.5,-8.5 + rot: 3.141592653589793 rad + pos: 23.5,-68.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20125 + - uid: 42636 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-8.5 + pos: 24.5,-68.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20126 + - uid: 42637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-6.5 + rot: 1.5707963267948966 rad + pos: 27.5,-64.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20127 + - uid: 42638 components: - type: Transform - pos: 25.5,-5.5 + rot: 1.5707963267948966 rad + pos: 27.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20128 + - uid: 42639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-5.5 + rot: 1.5707963267948966 rad + pos: 27.5,-62.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20129 + - uid: 42640 components: - type: Transform - pos: 24.5,-4.5 + rot: 1.5707963267948966 rad + pos: 27.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20130 + - uid: 42641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-4.5 + rot: 1.5707963267948966 rad + pos: 27.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20131 + - uid: 42642 components: - type: Transform - pos: 23.5,-3.5 + rot: 1.5707963267948966 rad + pos: 27.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20132 + - uid: 42643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-3.5 + rot: 1.5707963267948966 rad + pos: 27.5,-55.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20133 + - uid: 42644 components: - type: Transform - pos: 22.5,-2.5 + rot: 1.5707963267948966 rad + pos: 27.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20134 + - uid: 42645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-2.5 + rot: 1.5707963267948966 rad + pos: 30.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20135 + - uid: 42646 components: - type: Transform - pos: 20.5,-1.5 + rot: 1.5707963267948966 rad + pos: 30.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20136 + - uid: 42647 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-1.5 + pos: 12.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20137 + - uid: 42648 components: - type: Transform - pos: 18.5,-0.5 + pos: 29.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20138 + - uid: 42649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-2.5 + rot: -1.5707963267948966 rad + pos: 30.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20139 + - uid: 42650 components: - type: Transform - pos: 24.5,-1.5 + rot: 1.5707963267948966 rad + pos: 35.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20140 + - uid: 42651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-1.5 + rot: 1.5707963267948966 rad + pos: 35.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20141 + - uid: 42652 components: - type: Transform - pos: 22.5,-0.5 + rot: 1.5707963267948966 rad + pos: 35.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20142 + - uid: 42653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-0.5 + rot: 1.5707963267948966 rad + pos: 35.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20143 + - uid: 42654 components: - type: Transform - pos: 20.5,0.5 + pos: 41.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20144 + - uid: 42655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,0.5 + pos: 46.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20145 + - uid: 42656 components: - type: Transform - pos: 18.5,1.5 + pos: 49.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20146 + - uid: 42657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-0.5 + pos: 50.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20147 + - uid: 42658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,1.5 + rot: -1.5707963267948966 rad + pos: 49.5,-62.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20148 + - uid: 42659 components: - type: Transform - pos: 13.5,4.5 + rot: -1.5707963267948966 rad + pos: 49.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20149 + - uid: 42660 components: - type: Transform - pos: 11.5,3.5 + rot: -1.5707963267948966 rad + pos: 49.5,-65.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20150 + - uid: 42661 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,0.5 + pos: 49.5,-66.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20151 + - uid: 42662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 + rot: 3.141592653589793 rad + pos: 55.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20152 + - uid: 42663 components: - type: Transform - pos: 4.5,8.5 + rot: 3.141592653589793 rad + pos: 56.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20153 + - uid: 42664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 + rot: 3.141592653589793 rad + pos: 57.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20154 + - uid: 42665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,21.5 + rot: 3.141592653589793 rad + pos: 43.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20155 + - uid: 42666 components: - type: Transform - pos: 8.5,21.5 + rot: 3.141592653589793 rad + pos: 44.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20156 + - uid: 42667 components: - type: Transform - pos: 9.5,22.5 + rot: 1.5707963267948966 rad + pos: 58.5,-75.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20157 + - uid: 42668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,14.5 + rot: 1.5707963267948966 rad + pos: 58.5,-76.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20158 + - uid: 42669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-53.5 + rot: 1.5707963267948966 rad + pos: 56.5,-88.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20159 + - uid: 42670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-55.5 + rot: 1.5707963267948966 rad + pos: 56.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20160 + - uid: 42671 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-55.5 + pos: 56.5,-90.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20161 + - uid: 42672 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-53.5 + pos: 56.5,-91.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20162 + - uid: 42673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-69.5 + pos: 50.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20163 + - uid: 42674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-69.5 + pos: 51.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20164 + - uid: 42675 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-71.5 + pos: 56.5,-99.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20165 + - uid: 42676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-69.5 + rot: -1.5707963267948966 rad + pos: 56.5,-98.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20166 + - uid: 42677 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-73.5 + pos: 56.5,-97.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20167 + - uid: 42678 components: - type: Transform - pos: 33.5,-62.5 + rot: -1.5707963267948966 rad + pos: 56.5,-96.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20168 + - uid: 42679 components: - type: Transform - pos: 36.5,-61.5 + rot: 3.141592653589793 rad + pos: 26.5,-72.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20169 + - uid: 42680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-73.5 + rot: 3.141592653589793 rad + pos: 27.5,-72.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20170 + - uid: 42681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-77.5 + parent: 2 + - uid: 42682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-77.5 + parent: 2 + - uid: 42683 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-71.5 + pos: 2.5,-78.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20171 + - uid: 42684 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-73.5 + pos: 2.5,-79.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20172 + - uid: 42685 + components: + - type: Transform + pos: 11.5,-85.5 + parent: 2 + - uid: 42686 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-76.5 + pos: -3.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20173 + - uid: 42687 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-74.5 + pos: -3.5,-90.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20174 + - uid: 42688 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-76.5 + rot: -1.5707963267948966 rad + pos: -3.5,-91.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20175 + - uid: 42689 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-74.5 + pos: -7.5,-82.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20176 + - uid: 42690 components: - type: Transform - pos: -11.5,-73.5 + rot: 3.141592653589793 rad + pos: -54.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20177 + - uid: 42691 components: - type: Transform - pos: -9.5,-71.5 + rot: 3.141592653589793 rad + pos: -56.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20178 + - uid: 42692 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-88.5 + pos: -56.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20179 + - uid: 42693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-90.5 + rot: 3.141592653589793 rad + pos: -54.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20180 + - uid: 42694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-81.5 + rot: 3.141592653589793 rad + pos: -65.5,-67.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20181 + - uid: 42695 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-71.5 + pos: -64.5,-67.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20182 + - uid: 42696 components: - type: Transform - pos: -20.5,-69.5 + rot: 3.141592653589793 rad + pos: -63.5,-67.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20183 + - uid: 42697 components: - type: Transform - pos: -25.5,-71.5 + rot: 3.141592653589793 rad + pos: -40.5,-60.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20184 + - uid: 42698 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-82.5 + pos: -39.5,-60.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20185 + - uid: 42699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-93.5 + rot: 3.141592653589793 rad + pos: -38.5,-60.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20186 + - uid: 42700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-74.5 + rot: 3.141592653589793 rad + pos: -41.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20187 + - uid: 42701 components: - type: Transform - pos: -29.5,-55.5 + rot: 3.141592653589793 rad + pos: -41.5,-65.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20188 + - uid: 42702 components: - type: Transform - pos: -27.5,-53.5 + rot: 3.141592653589793 rad + pos: -39.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20189 + - uid: 42703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-53.5 + pos: -39.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20190 + - uid: 42704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-55.5 + rot: 1.5707963267948966 rad + pos: -41.5,-52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20191 + - uid: 42705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-33.5 + rot: 1.5707963267948966 rad + pos: -41.5,-53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20192 + - uid: 42706 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-31.5 + pos: -41.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20193 + - uid: 42707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-10.5 + pos: -40.5,-50.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20194 + - uid: 42708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-8.5 + pos: -39.5,-50.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20195 + - uid: 42709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-6.5 + pos: -38.5,-50.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20196 + - uid: 42710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-5.5 + pos: -38.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20197 + - uid: 42711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-4.5 + pos: -37.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20198 + - uid: 42712 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 42713 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-3.5 + pos: -41.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20199 + - uid: 42714 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-2.5 + pos: -45.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20200 + - uid: 42715 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-1.5 + pos: -45.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20201 + - uid: 42716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-0.5 + rot: 3.141592653589793 rad + pos: -48.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20202 + - uid: 42717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 + rot: 3.141592653589793 rad + pos: -47.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20203 + - uid: 42718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-2.5 + rot: 3.141592653589793 rad + pos: -46.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20204 + - uid: 42719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-3.5 + rot: 3.141592653589793 rad + pos: -44.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20205 + - uid: 42720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-4.5 + rot: 3.141592653589793 rad + pos: -41.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20206 + - uid: 42721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-8.5 + rot: 3.141592653589793 rad + pos: -44.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20207 + - uid: 42722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 + rot: 3.141592653589793 rad + pos: -43.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20208 + - uid: 42723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-7.5 + rot: 3.141592653589793 rad + pos: -37.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20209 + - uid: 42724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-4.5 + rot: 3.141592653589793 rad + pos: -36.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20210 + - uid: 42725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-1.5 + pos: -33.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20211 + - uid: 42726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-2.5 + rot: 1.5707963267948966 rad + pos: -33.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20212 + - uid: 42727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-4.5 + rot: 1.5707963267948966 rad + pos: -39.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20213 + - uid: 42728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-9.5 + pos: -37.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20214 + - uid: 42729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 + pos: -36.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20215 + - uid: 42730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,1.5 + pos: -35.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20216 + - uid: 42731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,4.5 + pos: -47.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20217 + - uid: 42732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,3.5 + pos: -55.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20218 + - uid: 42733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,3.5 + pos: -54.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20219 + - uid: 42734 components: - type: Transform - pos: -26.5,0.5 + pos: -53.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20220 + - uid: 42735 components: - type: Transform - pos: -25.5,1.5 + pos: -55.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20221 + - uid: 42736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,1.5 + pos: -54.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20222 + - uid: 42737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,0.5 + pos: -53.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20223 + - uid: 42738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,10.5 + pos: -49.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20224 + - uid: 42739 components: - type: Transform - pos: -30.5,10.5 + pos: -48.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20225 + - uid: 42740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-47.5 + pos: -47.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20226 + - uid: 42741 components: - type: Transform - pos: -40.5,-48.5 + pos: -46.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20227 + - uid: 42742 components: - type: Transform - pos: -39.5,-52.5 + pos: -45.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20228 + - uid: 42743 components: - type: Transform - pos: -38.5,-64.5 + rot: -1.5707963267948966 rad + pos: -40.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20229 + - uid: 42744 components: - type: Transform - pos: -35.5,-25.5 + rot: -1.5707963267948966 rad + pos: -40.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20230 + - uid: 42745 components: - type: Transform - pos: -37.5,-27.5 + rot: -1.5707963267948966 rad + pos: -40.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20231 + - uid: 42746 components: - type: Transform - pos: -40.5,-14.5 + rot: -1.5707963267948966 rad + pos: -56.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20232 + - uid: 42747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-14.5 + rot: -1.5707963267948966 rad + pos: -56.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20233 + - uid: 42748 components: - type: Transform - pos: -42.5,-16.5 + rot: -1.5707963267948966 rad + pos: -56.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20234 + - uid: 42749 components: - type: Transform - pos: -47.5,-39.5 + rot: -1.5707963267948966 rad + pos: -56.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20235 + - uid: 42750 components: - type: Transform - pos: -46.5,-38.5 + rot: 3.141592653589793 rad + pos: -51.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20236 + - uid: 42751 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-27.5 + pos: -48.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20237 + - uid: 42752 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-29.5 + rot: 1.5707963267948966 rad + pos: -45.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20238 + - uid: 42753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-33.5 + rot: 1.5707963267948966 rad + pos: -45.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20239 + - uid: 42754 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-33.5 + pos: -47.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20240 + - uid: 42755 components: - type: Transform - pos: -51.5,-19.5 + pos: -40.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20241 + - uid: 42756 components: - type: Transform - pos: -35.5,-8.5 + pos: -39.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20242 + - uid: 42757 components: - type: Transform - pos: -74.5,-38.5 + pos: -38.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20243 + - uid: 42758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-38.5 + pos: -80.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20244 + - uid: 42759 components: - type: Transform - pos: -67.5,-37.5 + pos: -79.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20245 + - uid: 42760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-37.5 + pos: -78.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20246 + - uid: 42761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-35.5 + parent: 2 + - uid: 42762 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,-51.5 + pos: -80.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20247 + - uid: 42763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-59.5 + rot: 3.141592653589793 rad + pos: -79.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20248 + - uid: 42764 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,-59.5 + pos: -78.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20249 + - uid: 42765 components: - type: Transform - pos: 40.5,-52.5 + rot: 3.141592653589793 rad + pos: -80.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20250 + - uid: 42766 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-52.5 + pos: -79.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20251 + - uid: 42767 components: - type: Transform - pos: -43.5,2.5 + rot: 3.141592653589793 rad + pos: -78.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20252 + - uid: 42768 components: - type: Transform - pos: -41.5,4.5 + rot: 3.141592653589793 rad + pos: -80.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20253 + - uid: 42769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,2.5 + rot: 3.141592653589793 rad + pos: -79.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20254 + - uid: 42770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,4.5 + rot: 3.141592653589793 rad + pos: -78.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20255 + - uid: 42771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-1.5 + rot: 3.141592653589793 rad + pos: -74.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20256 + - uid: 42772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-0.5 + rot: 3.141592653589793 rad + pos: -73.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20257 + - uid: 42773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-0.5 + rot: 3.141592653589793 rad + pos: -72.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20258 + - uid: 42774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-88.5 + rot: 3.141592653589793 rad + pos: -67.5,-46.5 parent: 2 - - uid: 20259 + - uid: 42775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-89.5 + rot: 3.141592653589793 rad + pos: -66.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20260 + - uid: 42776 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-94.5 + pos: -65.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20261 + - uid: 42777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-94.5 + rot: 3.141592653589793 rad + pos: -64.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20262 + - uid: 42778 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-92.5 + pos: -63.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20263 + - uid: 42779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-10.5 + rot: 1.5707963267948966 rad + pos: -63.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20264 + - uid: 42780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-101.5 + pos: -54.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20265 + - uid: 42781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-99.5 + pos: -53.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20266 + - uid: 42782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-96.5 + pos: -52.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20267 + - uid: 42783 components: - type: Transform - pos: -7.5,-96.5 + pos: -51.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20268 + - uid: 42784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-98.5 + pos: -53.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20269 + - uid: 42785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-99.5 + pos: -52.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20270 + - uid: 42786 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-98.5 + pos: -33.5,-81.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20271 + - uid: 42787 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-39.5 + pos: -23.5,-90.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20272 + - uid: 42788 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-96.5 + pos: -22.5,-90.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20273 + - uid: 42789 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,-95.5 + pos: -0.5,-92.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20274 + - uid: 42790 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-103.5 + pos: 0.5,-92.5 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20275 + - uid: 42791 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-103.5 + pos: 4.5,-99.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20276 + - uid: 42792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-91.5 + rot: 1.5707963267948966 rad + pos: 4.5,-100.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20277 + - uid: 42793 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-89.5 + pos: 4.5,-101.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20278 + - uid: 42794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-94.5 + pos: 6.5,-104.5 parent: 2 - - uid: 20279 + - uid: 42795 components: - type: Transform - pos: -54.5,-32.5 + pos: 7.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20280 + - uid: 42796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-89.5 + pos: 12.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20281 + - uid: 42797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-87.5 + pos: 13.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20282 + - uid: 42798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-88.5 + pos: 14.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20283 + - uid: 42799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-89.5 + pos: 17.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20284 + - uid: 42800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-88.5 + rot: -1.5707963267948966 rad + pos: 18.5,-91.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20285 + - uid: 42801 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-75.5 + pos: 18.5,-92.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20286 + - uid: 42802 components: - type: Transform - pos: -76.5,-15.5 + rot: -1.5707963267948966 rad + pos: 18.5,-93.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20287 + - uid: 42803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-88.5 + rot: -1.5707963267948966 rad + pos: 18.5,-94.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20288 + - uid: 42804 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,11.5 + pos: 18.5,-95.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20289 + - uid: 42805 components: - type: Transform rot: 3.141592653589793 rad - pos: -72.5,-78.5 + pos: 16.5,-95.5 parent: 2 - - uid: 20290 + - uid: 42806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,9.5 + rot: 3.141592653589793 rad + pos: 17.5,-95.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20291 + - uid: 42807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-73.5 + rot: 3.141592653589793 rad + pos: 16.5,-101.5 parent: 2 - - uid: 20292 + - uid: 42808 components: - type: Transform - pos: -71.5,-26.5 + rot: 3.141592653589793 rad + pos: 17.5,-101.5 parent: 2 - - uid: 20293 + - uid: 42809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-25.5 + rot: 3.141592653589793 rad + pos: 18.5,-101.5 parent: 2 - - uid: 20294 + - uid: 42810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-38.5 + rot: 3.141592653589793 rad + pos: 40.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20295 + - uid: 42811 components: - type: Transform - pos: -59.5,-29.5 + rot: 3.141592653589793 rad + pos: 41.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20296 + - uid: 42812 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,-29.5 + pos: 42.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20297 + - uid: 42813 components: - type: Transform - pos: -68.5,-22.5 + rot: 3.141592653589793 rad + pos: 43.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20298 + - uid: 42814 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-22.5 + pos: 44.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20299 + - uid: 42815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-18.5 + rot: 3.141592653589793 rad + pos: 37.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20300 + - uid: 42816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-18.5 + rot: 3.141592653589793 rad + pos: 38.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20301 + - uid: 42817 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,-13.5 + pos: 35.5,-103.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20302 + - uid: 42818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-13.5 + rot: 1.5707963267948966 rad + pos: 35.5,-102.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20303 + - uid: 42819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-15.5 + rot: 1.5707963267948966 rad + pos: 35.5,-101.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20304 + - uid: 42821 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,-5.5 + pos: 35.5,-99.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20305 + - uid: 42822 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-25.5 + rot: 1.5707963267948966 rad + pos: 35.5,-98.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20306 + - uid: 42823 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-26.5 + rot: 1.5707963267948966 rad + pos: 35.5,-97.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20307 + - uid: 42824 components: - type: Transform - pos: -77.5,-14.5 + rot: 1.5707963267948966 rad + pos: 35.5,-96.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20308 + - uid: 42825 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-14.5 + rot: 1.5707963267948966 rad + pos: 35.5,-95.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20309 + - uid: 42826 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,6.5 + pos: 35.5,-93.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20310 + - uid: 42827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,6.5 + rot: 1.5707963267948966 rad + pos: 35.5,-92.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20311 + - uid: 42828 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,7.5 + pos: 35.5,-91.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20312 + - uid: 42829 components: - type: Transform - pos: -56.5,7.5 + rot: 1.5707963267948966 rad + pos: 35.5,-90.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20313 + - uid: 42830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,5.5 + rot: 1.5707963267948966 rad + pos: 35.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20314 + - uid: 42831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,5.5 + rot: 1.5707963267948966 rad + pos: 35.5,-87.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20315 + - uid: 42832 components: - type: Transform - pos: -49.5,9.5 + rot: 1.5707963267948966 rad + pos: 35.5,-86.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20316 + - uid: 42833 components: - type: Transform - pos: -71.5,-5.5 + rot: 1.5707963267948966 rad + pos: 35.5,-85.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20317 + - uid: 42834 components: - type: Transform - rot: 3.141592653589793 rad - pos: 95.5,-83.5 + rot: 1.5707963267948966 rad + pos: 44.5,-87.5 parent: 2 - - uid: 20318 + - uid: 42835 components: - type: Transform - pos: 100.5,-87.5 + rot: 1.5707963267948966 rad + pos: 44.5,-86.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20319 + - uid: 42836 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,-87.5 + pos: 44.5,-85.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20320 + - uid: 42837 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-90.5 + pos: 61.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20321 + - uid: 42838 components: - type: Transform - pos: 100.5,-82.5 + pos: 62.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20322 + - uid: 42839 components: - type: Transform - pos: 101.5,-79.5 + pos: 63.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20323 + - uid: 42840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 95.5,-79.5 + rot: -1.5707963267948966 rad + pos: 68.5,-55.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20324 + - uid: 42841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-16.5 + rot: -1.5707963267948966 rad + pos: 68.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20325 + - uid: 42842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-39.5 + rot: -1.5707963267948966 rad + pos: 68.5,-62.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20326 + - uid: 42843 components: - type: Transform - pos: 37.5,21.5 + rot: -1.5707963267948966 rad + pos: 68.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20327 + - uid: 42844 components: - type: Transform - pos: 39.5,23.5 + rot: 3.141592653589793 rad + pos: 13.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20328 + - uid: 42845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,23.5 + rot: 3.141592653589793 rad + pos: 14.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20329 + - uid: 42846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,12.5 + rot: 3.141592653589793 rad + pos: 15.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20330 + - uid: 42847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,17.5 + rot: 3.141592653589793 rad + pos: 20.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20331 + - uid: 42848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,17.5 + rot: 3.141592653589793 rad + pos: -14.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20332 + - uid: 42849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-55.5 + rot: 3.141592653589793 rad + pos: -13.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FFAA00FF' - - uid: 20333 + - uid: 42850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-23.5 + rot: 3.141592653589793 rad + pos: -12.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20334 + - uid: 42851 components: - type: Transform - pos: 45.5,-8.5 + rot: 3.141592653589793 rad + pos: -11.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20335 + - uid: 42852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-10.5 + rot: 3.141592653589793 rad + pos: 21.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20336 + - uid: 42853 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-70.5 + pos: 21.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20337 + - uid: 42854 components: - type: Transform - pos: 102.5,-39.5 + rot: 3.141592653589793 rad + pos: 22.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20338 + - uid: 42855 components: - type: Transform - pos: -3.5,-13.5 + rot: 3.141592653589793 rad + pos: 22.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20339 + - uid: 42856 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-16.5 + pos: 23.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20340 + - uid: 42857 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-19.5 + pos: 23.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20341 + - uid: 42858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-19.5 + rot: 3.141592653589793 rad + pos: 24.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20342 + - uid: 42859 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-15.5 + pos: 24.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20343 + - uid: 42860 components: - type: Transform - pos: -2.5,-15.5 + rot: 3.141592653589793 rad + pos: 25.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20344 + - uid: 42861 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-17.5 + pos: 25.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20345 + - uid: 42862 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-13.5 + pos: 27.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20346 + - uid: 42863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-12.5 + rot: 1.5707963267948966 rad + pos: 27.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20347 + - uid: 42864 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-20.5 + pos: 27.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20348 + - uid: 42865 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-24.5 + pos: 27.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20349 + - uid: 42866 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-25.5 + pos: 27.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20350 + - uid: 42867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-25.5 + rot: 1.5707963267948966 rad + pos: 27.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20351 + - uid: 42868 components: - type: Transform - pos: 49.5,-22.5 + rot: 1.5707963267948966 rad + pos: 27.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20352 + - uid: 42869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-13.5 + rot: 1.5707963267948966 rad + pos: 27.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20353 + - uid: 42870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-15.5 + rot: 1.5707963267948966 rad + pos: 27.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20354 + - uid: 42871 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,15.5 + pos: 31.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20355 + - uid: 42872 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,13.5 + pos: 31.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20356 + - uid: 42873 components: - type: Transform - pos: 58.5,0.5 + rot: 1.5707963267948966 rad + pos: 31.5,-64.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20357 + - uid: 42874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,0.5 + rot: 1.5707963267948966 rad + pos: 31.5,-65.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20358 + - uid: 42875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-5.5 + rot: 1.5707963267948966 rad + pos: 42.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20359 + - uid: 42876 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-1.5 + pos: 42.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20360 + - uid: 42877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-1.5 + pos: 46.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20361 + - uid: 42878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-1.5 + pos: 46.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20362 + - uid: 42879 components: - type: Transform rot: -1.5707963267948966 rad - pos: 84.5,-7.5 + pos: 90.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20363 + - uid: 42880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-10.5 + rot: -1.5707963267948966 rad + pos: 90.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20364 + - uid: 42881 components: - type: Transform rot: -1.5707963267948966 rad - pos: 76.5,-11.5 + pos: 90.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20365 + - uid: 42882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-11.5 + rot: -1.5707963267948966 rad + pos: 90.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20366 + - uid: 42883 components: - type: Transform rot: -1.5707963267948966 rad - pos: 81.5,-10.5 + pos: 90.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20367 + - uid: 42884 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,-2.5 + pos: -51.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20368 + - uid: 42885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,-3.5 + rot: 3.141592653589793 rad + pos: -64.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20369 + - uid: 42886 components: - type: Transform - pos: 84.5,-8.5 + rot: 3.141592653589793 rad + pos: -63.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20370 + - uid: 42887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-9.5 + rot: 3.141592653589793 rad + pos: -62.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20371 + - uid: 42888 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,4.5 + pos: -75.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20372 + - uid: 42889 components: - type: Transform - pos: 52.5,15.5 + rot: 1.5707963267948966 rad + pos: -75.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20373 + - uid: 42890 components: - type: Transform - pos: 51.5,14.5 + rot: 1.5707963267948966 rad + pos: -75.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20374 + - uid: 42891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,5.5 + rot: 1.5707963267948966 rad + pos: -75.5,3.5 parent: 2 - - uid: 20375 + - uid: 42892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,5.5 + rot: 1.5707963267948966 rad + pos: -75.5,4.5 parent: 2 - - uid: 20376 + - uid: 42893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-54.5 + rot: 1.5707963267948966 rad + pos: -77.5,4.5 parent: 2 - - uid: 20377 + - uid: 42894 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-54.5 + pos: -77.5,3.5 parent: 2 - - uid: 20378 + - uid: 42895 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-51.5 + pos: -77.5,2.5 parent: 2 - - uid: 20379 + - uid: 42896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-51.5 + rot: 1.5707963267948966 rad + pos: -77.5,1.5 parent: 2 - - uid: 20380 + - uid: 42897 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-51.5 + rot: 1.5707963267948966 rad + pos: -77.5,0.5 parent: 2 - - uid: 20381 + - uid: 42898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-48.5 + pos: 49.5,-80.5 parent: 2 - - uid: 20382 + - uid: 42899 + components: + - type: Transform + pos: 50.5,-80.5 + parent: 2 + - uid: 42900 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-48.5 + pos: 47.5,-81.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20383 + - uid: 42901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,3.5 + rot: -1.5707963267948966 rad + pos: 47.5,-82.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20384 + - uid: 42902 components: - type: Transform rot: -1.5707963267948966 rad - pos: 79.5,3.5 + pos: 44.5,-78.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20385 + - uid: 42903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-9.5 + rot: -1.5707963267948966 rad + pos: 44.5,-79.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20386 + - uid: 42904 components: - type: Transform - pos: -5.5,-55.5 + rot: 3.141592653589793 rad + pos: 38.5,-81.5 parent: 2 - - uid: 20387 + - uid: 42905 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-55.5 + pos: 40.5,-81.5 parent: 2 - - uid: 20388 + - uid: 42906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 + rot: 3.141592653589793 rad + pos: -39.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20389 + - uid: 42907 components: - type: Transform - pos: -4.5,-5.5 + rot: -1.5707963267948966 rad + pos: -41.5,-68.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20390 + - uid: 42908 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-6.5 + rot: -1.5707963267948966 rad + pos: -41.5,-69.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20391 + - uid: 42909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 + rot: -1.5707963267948966 rad + pos: -41.5,-74.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20392 + - uid: 42910 components: - type: Transform - pos: 5.5,-7.5 + rot: -1.5707963267948966 rad + pos: -41.5,-72.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20393 + - uid: 42911 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-8.5 + pos: -45.5,-65.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20394 + - uid: 42912 components: - type: Transform - pos: -0.5,0.5 + rot: 3.141592653589793 rad + pos: -47.5,-65.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20395 + - uid: 42913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + rot: 3.141592653589793 rad + pos: -2.5,-100.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20396 + - uid: 42914 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,0.5 + pos: -41.5,-67.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20397 + - uid: 42915 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,0.5 + pos: -1.5,-100.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20398 + - uid: 42916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-57.5 + rot: 3.141592653589793 rad + pos: -0.5,-100.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20399 +- proto: GasAnalyzer + entities: + - uid: 19956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-56.5 + rot: -1.5707963267948966 rad + pos: -34.483376,-19.439384 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20400 + - uid: 19957 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-56.5 + pos: -51.65291,-54.3892 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20401 + - uid: 19958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-20.5 + pos: -76.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20402 + - uid: 19959 components: - type: Transform - pos: 6.5,-20.5 + pos: 95.45756,-84.44403 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20403 +- proto: GasCanisterBrokenBase + entities: + - uid: 19960 components: - type: Transform - pos: 2.5,-14.5 + pos: -68.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20404 + - uid: 19962 components: - type: Transform - pos: -16.5,-46.5 + pos: -67.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20405 + - uid: 19963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-54.5 + pos: -23.5,-96.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20406 + - uid: 19964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-43.5 + pos: -46.5,-69.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20407 +- proto: GasFilterFlipped + entities: + - uid: 19965 components: - type: Transform rot: 1.5707963267948966 rad - pos: 112.5,-40.5 + pos: -36.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20408 + - uid: 19966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 112.5,-42.5 + rot: 1.5707963267948966 rad + pos: -48.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20409 + color: '#FFAA00FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 19967 components: - type: Transform - pos: 127.5,-38.5 + rot: 3.141592653589793 rad + pos: 31.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20410 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 19968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,-40.5 + rot: 1.5707963267948966 rad + pos: 31.5,-101.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20411 + - type: GasMiner + spawnAmount: 800 + - uid: 19969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 110.5,-40.5 + pos: -9.5,-53.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20412 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 19970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 110.5,-38.5 + pos: 31.5,-98.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20413 + - type: GasMiner + spawnAmount: 800 + - uid: 19971 components: - type: Transform - pos: 18.5,-41.5 + pos: -2.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20414 +- proto: GasMinerPlasma + entities: + - uid: 19972 components: - type: Transform - pos: 10.5,-39.5 + pos: 31.5,-92.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20415 + - type: GasMiner + spawnAmount: 1 + maxExternalPressure: 1 +- proto: GasMinerWaterVapor + entities: + - uid: 19973 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-41.5 + pos: 31.5,-86.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20416 +- proto: GasMixer + entities: + - uid: 19974 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-40.5 + pos: -47.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20417 + color: '#00FF00FF' + - uid: 19975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-26.5 + rot: -1.5707963267948966 rad + pos: -47.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20418 + - uid: 19976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 + pos: 36.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20419 + color: '#17E8E2FF' + - uid: 19977 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-32.5 + pos: -72.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20420 + - type: GasMixer + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 + - uid: 19978 components: - type: Transform - pos: 11.5,-15.5 + rot: 1.5707963267948966 rad + pos: -3.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20421 + color: '#2A6478FF' +- proto: GasMixerFlipped + entities: + - uid: 19979 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-29.5 + pos: 96.5,-83.5 parent: 2 + - type: GasMixer + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20422 + color: '#0000FFFF' + - uid: 19980 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-44.5 + pos: -5.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20423 +- proto: GasOutletInjector + entities: + - uid: 19981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-53.5 + pos: -1.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20424 + color: '#00FFFFFF' + - uid: 19982 components: - type: Transform - pos: -7.5,-38.5 + pos: -0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20425 + color: '#00FFFFFF' + - uid: 19983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-39.5 + pos: 0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20426 + color: '#00FFFFFF' + - uid: 19984 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-38.5 + pos: 1.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20427 + color: '#00FFFFFF' + - uid: 19985 components: - type: Transform - pos: -14.5,-31.5 + pos: 2.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20428 + color: '#00FFFFFF' + - uid: 19986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-31.5 + pos: -7.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20429 + color: '#00FFFFFF' + - uid: 19987 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-29.5 + pos: -6.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20430 + color: '#00FFFFFF' + - uid: 19988 components: - type: Transform - pos: -10.5,-24.5 + pos: -1.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20431 + color: '#00FFFFFF' + - uid: 19989 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-24.5 + pos: -5.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20432 + color: '#00FFFFFF' + - uid: 19990 components: - type: Transform - pos: -5.5,-32.5 + pos: -0.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20433 + color: '#00FFFFFF' + - uid: 19991 components: - type: Transform - pos: -2.5,-35.5 + pos: -4.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20434 + color: '#00FFFFFF' + - uid: 19992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-13.5 + pos: -4.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20435 + color: '#00FFFFFF' + - uid: 19993 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-13.5 + pos: -5.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20436 + color: '#00FFFFFF' + - uid: 19994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-14.5 + pos: -6.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20437 + color: '#00FFFFFF' + - uid: 19995 components: - type: Transform - pos: -1.5,-11.5 + pos: -7.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20438 + color: '#00FFFFFF' + - uid: 19996 components: - type: Transform - pos: -10.5,-10.5 + pos: -8.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20439 + color: '#00FFFFFF' + - uid: 19997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-10.5 + pos: -9.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20440 + color: '#00FFFFFF' + - uid: 19998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-11.5 + pos: -72.5,-77.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20441 + - uid: 19999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 + pos: 2.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20442 + color: '#00FFFFFF' + - uid: 20000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-28.5 + pos: 0.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20443 + color: '#00FFFFFF' + - uid: 20001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-24.5 + pos: -9.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20444 + color: '#00FFFFFF' + - uid: 20002 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-36.5 + pos: -8.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20445 + color: '#00FFFFFF' + - uid: 20003 components: - type: Transform - pos: -3.5,-36.5 + pos: -16.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20446 + color: '#00FFFFFF' + - uid: 20004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-40.5 + pos: -12.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20447 + color: '#00FFFFFF' + - uid: 20005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-60.5 + pos: -15.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20448 + color: '#00FFFFFF' + - uid: 20006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-61.5 + pos: -13.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20449 + color: '#00FFFFFF' + - uid: 20007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-60.5 + pos: 1.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20450 + color: '#00FFFFFF' + - uid: 20008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-33.5 + pos: -14.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20451 + color: '#00FFFFFF' + - uid: 20009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-20.5 + pos: -16.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20452 + color: '#00FFFFFF' + - uid: 20010 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-21.5 + pos: -15.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20453 + color: '#00FFFFFF' + - uid: 20011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-21.5 + pos: -14.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20454 + color: '#00FFFFFF' + - uid: 20012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-39.5 + pos: -13.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20455 + color: '#00FFFFFF' + - uid: 20013 components: - type: Transform - pos: -10.5,-39.5 + rot: 1.5707963267948966 rad + pos: 78.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20456 + - uid: 20014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,2.5 + pos: -12.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20457 + color: '#00FFFFFF' + - uid: 20015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,6.5 + pos: -4.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20458 + color: '#00FFFFFF' + - uid: 20016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,13.5 + pos: -5.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20459 + color: '#00FFFFFF' + - uid: 20017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,13.5 + pos: -6.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20460 + color: '#00FFFFFF' + - uid: 20018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,13.5 + pos: -7.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20461 + color: '#00FFFFFF' + - uid: 20019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,11.5 + pos: -8.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20462 + color: '#00FFFFFF' + - uid: 20020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,11.5 + pos: -9.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20463 + color: '#00FFFFFF' + - uid: 20021 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,9.5 + pos: -12.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20464 + - uid: 20022 components: - type: Transform - pos: 14.5,9.5 + pos: -13.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20465 + - uid: 20023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,8.5 + pos: -14.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20466 + - uid: 20024 components: - type: Transform - pos: 16.5,8.5 + pos: -15.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20467 + - uid: 20025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,4.5 + pos: -16.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20468 + - uid: 20026 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,19.5 + pos: 80.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20469 +- proto: GasPassiveGate + entities: + - uid: 20027 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - uid: 20028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-53.5 + parent: 2 + - uid: 20029 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,19.5 + pos: -4.5,-53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20470 +- proto: GasPassiveVent + entities: + - uid: 20030 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,22.5 + pos: 32.5,-98.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20471 + - uid: 20031 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,4.5 + pos: 43.5,-108.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20472 + - uid: 20032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,6.5 + rot: 3.141592653589793 rad + pos: -60.5,-77.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20473 + - uid: 20033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,6.5 + rot: 3.141592653589793 rad + pos: 36.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20474 + color: '#17E8E2FF' + - uid: 20034 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,9.5 + pos: 32.5,-101.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20475 + - uid: 20035 components: - type: Transform - pos: -21.5,4.5 + rot: 1.5707963267948966 rad + pos: -57.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 40735 + - uid: 20036 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 40666 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41179 + pos: 32.5,-92.5 + parent: 2 + - uid: 20037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 40828 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41180 + pos: 32.5,-89.5 + parent: 2 + - uid: 20038 components: - type: Transform - pos: 6.5,-8.5 - parent: 40828 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41181 + rot: 1.5707963267948966 rad + pos: 32.5,-86.5 + parent: 2 + - uid: 20039 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 40828 + pos: 34.5,-85.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41182 + - uid: 20040 components: - type: Transform - pos: 4.5,-9.5 - parent: 40828 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41183 + rot: 1.5707963267948966 rad + pos: -57.5,-58.5 + parent: 2 + - uid: 20041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 40828 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41184 + rot: 3.141592653589793 rad + pos: 41.5,-108.5 + parent: 2 + - uid: 20042 components: - type: Transform - pos: 1.5,-1.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: 38.5,-108.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41784 + - uid: 20043 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,0.5 - parent: 41669 + pos: 32.5,-95.5 + parent: 2 + - uid: 20044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-88.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41785 + color: '#FEF101FF' + - uid: 20045 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 41669 + pos: 59.5,-87.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41786 + color: '#FEF101FF' + - uid: 20046 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-11.5 - parent: 41669 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41787 + pos: -62.5,-77.5 + parent: 2 + - uid: 20047 components: - type: Transform - pos: 3.5,-8.5 - parent: 41669 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41788 + rot: -1.5707963267948966 rad + pos: -35.5,-73.5 + parent: 2 + - uid: 20048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 41669 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41789 + rot: 3.141592653589793 rad + pos: -82.5,-15.5 + parent: 2 + - uid: 20049 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 41669 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPipeBroken - entities: - - uid: 20476 + pos: -3.5,-53.5 + parent: 2 + - uid: 20050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-43.5 + pos: -8.5,-53.5 parent: 2 -- proto: GasPipeFourway - entities: - - uid: 20477 + - uid: 20051 components: - type: Transform - pos: 62.5,-7.5 + rot: -1.5707963267948966 rad + pos: -3.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20478 + - uid: 20052 components: - type: Transform - pos: 56.5,4.5 + rot: 1.5707963267948966 rad + pos: -8.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20479 + - uid: 20053 components: - type: Transform - pos: 51.5,-15.5 + rot: -1.5707963267948966 rad + pos: 102.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20480 + - uid: 40734 components: - type: Transform - pos: 42.5,-5.5 - parent: 2 + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 40666 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20481 - components: - - type: Transform - pos: 52.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20482 + - uid: 41178 components: - type: Transform - pos: 51.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20483 + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 40828 + - uid: 41783 components: - type: Transform - pos: 43.5,-24.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 41669 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20484 +- proto: GasPipeBend + entities: + - uid: 20054 components: - type: Transform - pos: 45.5,-23.5 + rot: -1.5707963267948966 rad + pos: 49.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20485 + - uid: 20055 components: - type: Transform - pos: 56.5,-18.5 + pos: 42.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20486 + color: '#FF0000FF' + - uid: 20056 components: - type: Transform - pos: 51.5,-19.5 + pos: 43.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20487 + - uid: 20057 components: - type: Transform - pos: -16.5,-16.5 + rot: 3.141592653589793 rad + pos: 38.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20488 + color: '#FF0000FF' + - uid: 20058 components: - type: Transform - pos: 26.5,3.5 + rot: 1.5707963267948966 rad + pos: 63.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20489 + - uid: 20059 components: - type: Transform - pos: 64.5,-33.5 + rot: -1.5707963267948966 rad + pos: 63.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20490 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 2 - - uid: 20491 + - uid: 20060 components: - type: Transform - pos: 50.5,-58.5 + pos: 63.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20492 + - uid: 20061 components: - type: Transform - pos: 43.5,-33.5 + rot: -1.5707963267948966 rad + pos: 64.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20493 + - uid: 20062 components: - type: Transform - pos: 45.5,-31.5 + rot: -1.5707963267948966 rad + pos: 49.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20494 + color: '#FF0000FF' + - uid: 20063 components: - type: Transform - pos: -0.5,3.5 + pos: 62.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20495 + - uid: 20064 components: - type: Transform - pos: 1.5,4.5 + pos: 48.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20496 + - uid: 20065 components: - type: Transform - pos: 1.5,16.5 + rot: 1.5707963267948966 rad + pos: 56.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20497 + - uid: 20066 components: - type: Transform - pos: -0.5,14.5 + rot: -1.5707963267948966 rad + pos: 44.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20498 + - uid: 20067 components: - type: Transform - pos: 30.5,-61.5 + rot: 3.141592653589793 rad + pos: -8.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20499 + color: '#0000FFFF' + - uid: 20068 components: - type: Transform - pos: -42.5,-44.5 + rot: 3.141592653589793 rad + pos: 49.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20500 + - uid: 20069 components: - type: Transform - pos: -40.5,-27.5 + rot: 1.5707963267948966 rad + pos: -17.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20501 + color: '#00FFFFFF' + - uid: 20070 components: - type: Transform - pos: -49.5,-27.5 + pos: -43.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20502 + - uid: 20071 components: - type: Transform - pos: 46.5,-97.5 + pos: 33.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20503 + - uid: 20072 components: - type: Transform - pos: 31.5,1.5 + rot: -1.5707963267948966 rad + pos: 27.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20504 + color: '#FF0000FF' + - uid: 20073 components: - type: Transform - pos: 98.5,-83.5 + rot: 1.5707963267948966 rad + pos: 44.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20505 + - uid: 20074 components: - type: Transform - pos: 97.5,-78.5 + rot: -1.5707963267948966 rad + pos: 36.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20506 + color: '#17E8E2FF' + - uid: 20075 components: - type: Transform - pos: 97.5,-71.5 + rot: 3.141592653589793 rad + pos: 37.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20507 + color: '#0000FFFF' + - uid: 20076 components: - type: Transform - pos: 99.5,-67.5 + rot: 1.5707963267948966 rad + pos: 35.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20508 + color: '#17E8E2FF' + - uid: 20077 components: - type: Transform - pos: 42.5,-1.5 + pos: 31.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20509 + color: '#0000FFFF' + - uid: 20078 components: - type: Transform - pos: -12.5,-17.5 + rot: 1.5707963267948966 rad + pos: 23.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20510 + color: '#0000FFFF' + - uid: 20079 components: - type: Transform - pos: 43.5,7.5 + pos: -48.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20511 + - uid: 20080 components: - type: Transform - pos: 7.5,3.5 + rot: 3.141592653589793 rad + pos: -35.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20512 + - uid: 20081 components: - type: Transform - pos: -65.5,-44.5 + pos: 62.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20513 + - uid: 20082 components: - type: Transform - pos: 30.5,10.5 + rot: 1.5707963267948966 rad + pos: -47.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20514 + color: '#00FF00FF' + - uid: 20083 components: - type: Transform - pos: 74.5,4.5 + rot: -1.5707963267948966 rad + pos: 28.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20515 + - uid: 20084 components: - type: Transform - pos: 52.5,-13.5 + pos: 35.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20516 + - uid: 20085 components: - type: Transform - pos: -13.5,-43.5 + pos: 39.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20517 + - uid: 20086 components: - type: Transform - pos: 57.5,5.5 + pos: 35.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20518 + - uid: 20087 components: - type: Transform - pos: -11.5,-33.5 + rot: 3.141592653589793 rad + pos: -38.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20519 + - uid: 20088 components: - type: Transform - pos: -10.5,-32.5 + rot: -1.5707963267948966 rad + pos: -35.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20520 + - uid: 20089 components: - type: Transform - pos: -3.5,-39.5 + rot: -1.5707963267948966 rad + pos: 46.5,-103.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41185 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41186 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 40828 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41187 + - uid: 20090 components: - type: Transform - pos: 1.5,-6.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: 42.5,-86.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPipeHalf - entities: - - uid: 20521 + color: '#947507FF' + - uid: 20091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-44.5 + rot: 3.141592653589793 rad + pos: 41.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20522 + color: '#947507FF' + - uid: 20092 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-44.5 + pos: 55.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' -- proto: GasPipeStraight - entities: - - uid: 20523 + color: '#FEF101FF' + - uid: 20093 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-1.5 + pos: 65.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20524 + - uid: 20094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-15.5 + rot: -1.5707963267948966 rad + pos: 55.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20525 + - uid: 20095 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-0.5 + pos: 45.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20527 + - uid: 20096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,2.5 + rot: -1.5707963267948966 rad + pos: 48.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20528 + color: '#FF0000FF' + - uid: 20097 components: - type: Transform - pos: 45.5,-25.5 + rot: -1.5707963267948966 rad + pos: 50.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20529 + - uid: 20098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-13.5 + rot: 1.5707963267948966 rad + pos: 46.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20530 + - uid: 20099 components: - type: Transform - pos: 42.5,-3.5 + rot: 1.5707963267948966 rad + pos: 43.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20531 + - uid: 20100 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-15.5 + pos: 53.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20532 + - uid: 20101 components: - type: Transform - pos: 44.5,2.5 + pos: 56.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20533 + - uid: 20102 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-18.5 + pos: 51.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20534 + - uid: 20103 components: - type: Transform - pos: 63.5,-14.5 + pos: 50.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20535 + - uid: 20104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-4.5 + rot: -1.5707963267948966 rad + pos: 62.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20536 + color: '#FF0000FF' + - uid: 20105 components: - type: Transform - pos: 42.5,-2.5 + rot: 3.141592653589793 rad + pos: 43.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20537 + - uid: 20106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-25.5 + rot: 1.5707963267948966 rad + pos: 73.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20538 + - uid: 20107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-25.5 + rot: 3.141592653589793 rad + pos: 78.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20539 + color: '#0000FFFF' + - uid: 20108 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-20.5 + pos: 81.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20540 + - uid: 20109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-4.5 + rot: 3.141592653589793 rad + pos: 83.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20541 + - uid: 20110 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,15.5 + pos: 83.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20542 + - uid: 20112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,7.5 + pos: 102.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20543 + - uid: 20113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,4.5 + pos: 102.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20544 + - uid: 20114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-21.5 + rot: 1.5707963267948966 rad + pos: 27.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20545 + - uid: 20115 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,9.5 + pos: 26.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20546 + - uid: 20116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,6.5 + pos: 30.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20547 + - uid: 20117 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,9.5 + pos: 29.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20548 + color: '#0000FFFF' + - uid: 20118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,9.5 + pos: 29.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20549 + - uid: 20119 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,12.5 + pos: 28.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20550 + color: '#0000FFFF' + - uid: 20120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,11.5 + pos: 28.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20551 + color: '#0000FFFF' + - uid: 20121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-22.5 + rot: 3.141592653589793 rad + pos: 27.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20552 + color: '#0000FFFF' + - uid: 20122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-22.5 + pos: 28.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20553 + - uid: 20123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-22.5 + rot: 3.141592653589793 rad + pos: 27.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20554 + - uid: 20124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-22.5 + pos: 27.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20555 + - uid: 20125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-22.5 + rot: 3.141592653589793 rad + pos: 26.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20556 + - uid: 20126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,15.5 + rot: 3.141592653589793 rad + pos: 25.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20557 + - uid: 20127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,2.5 + pos: 25.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20558 + - uid: 20128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-3.5 + rot: 3.141592653589793 rad + pos: 24.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20559 + color: '#FF0000FF' + - uid: 20129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-1.5 + pos: 24.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20560 + - uid: 20130 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,2.5 + pos: 23.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20561 + color: '#FF0000FF' + - uid: 20131 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,2.5 + pos: 23.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20562 + - uid: 20132 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,10.5 + pos: 22.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20564 + - uid: 20133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,8.5 + pos: 22.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20565 + color: '#FF0000FF' + - uid: 20134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,8.5 + rot: 3.141592653589793 rad + pos: 20.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20566 + color: '#FF0000FF' + - uid: 20135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,1.5 + pos: 20.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20567 + - uid: 20136 components: - type: Transform - pos: 44.5,1.5 + rot: 3.141592653589793 rad + pos: 18.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20568 + - uid: 20137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-5.5 + pos: 18.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20569 + - uid: 20138 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-16.5 + pos: 24.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20570 + color: '#0000FFFF' + - uid: 20139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-17.5 + pos: 24.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20571 + - uid: 20140 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-14.5 + pos: 22.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20572 + - uid: 20141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 + pos: 22.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20573 + color: '#0000FFFF' + - uid: 20142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-18.5 + rot: 3.141592653589793 rad + pos: 20.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20574 + - uid: 20143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-19.5 + pos: 20.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20575 + color: '#0000FFFF' + - uid: 20144 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-12.5 + pos: 18.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20576 + - uid: 20145 components: - type: Transform - pos: 44.5,-0.5 + pos: 18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20577 + color: '#0000FFFF' + - uid: 20146 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-17.5 + pos: 11.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20578 + - uid: 20147 components: - type: Transform - pos: 63.5,-13.5 + rot: 3.141592653589793 rad + pos: 13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20579 + color: '#0000FFFF' + - uid: 20148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,5.5 + pos: 13.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20580 + color: '#0000FFFF' + - uid: 20149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,5.5 + pos: 11.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20581 + - uid: 20151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-13.5 + rot: -1.5707963267948966 rad + pos: 4.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20582 + - uid: 20152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-8.5 + pos: 4.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20583 + - uid: 20153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 + rot: -1.5707963267948966 rad + pos: -5.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20584 + - uid: 20154 components: - type: Transform - pos: 45.5,-10.5 + rot: 1.5707963267948966 rad + pos: -6.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20585 + - uid: 20155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,2.5 + pos: 8.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20586 + - uid: 20156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,1.5 + pos: 9.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20587 + color: '#FF0000FF' + - uid: 20157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,1.5 + rot: 3.141592653589793 rad + pos: 9.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20588 + color: '#FF0000FF' + - uid: 20158 components: - type: Transform - pos: 45.5,-22.5 + rot: -1.5707963267948966 rad + pos: 31.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20589 + - uid: 20159 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,10.5 + pos: 33.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20590 + - uid: 20160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-15.5 + rot: 1.5707963267948966 rad + pos: 30.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20591 + color: '#FF0000FF' + - uid: 20161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-4.5 + rot: 1.5707963267948966 rad + pos: 28.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20592 + - uid: 20162 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-4.5 + pos: 30.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20593 + color: '#FF0000FF' + - uid: 20163 components: - type: Transform - pos: 45.5,-19.5 + rot: 1.5707963267948966 rad + pos: 29.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20594 + color: '#FF0000FF' + - uid: 20164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,7.5 + rot: -1.5707963267948966 rad + pos: 29.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20595 + color: '#FF0000FF' + - uid: 20165 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-4.5 + pos: 21.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20596 + - uid: 20166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-20.5 + rot: -1.5707963267948966 rad + pos: 23.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20597 + - uid: 20167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-19.5 + pos: 33.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20598 + color: '#0000FFFF' + - uid: 20168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-19.5 + pos: 36.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20599 + - uid: 20169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,3.5 + rot: -1.5707963267948966 rad + pos: 27.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20600 + color: '#0000FFFF' + - uid: 20170 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,5.5 + pos: 10.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20601 + color: '#0000FFFF' + - uid: 20171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-16.5 + rot: 1.5707963267948966 rad + pos: 12.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20602 + color: '#FF0000FF' + - uid: 20172 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-19.5 + pos: 12.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20603 + - uid: 20173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,4.5 + rot: -1.5707963267948966 rad + pos: 10.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20604 + - uid: 20174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,4.5 + rot: 3.141592653589793 rad + pos: -11.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20605 + color: '#FF0000FF' + - uid: 20175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,5.5 + rot: 3.141592653589793 rad + pos: -9.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20606 + color: '#0000FFFF' + - uid: 20176 components: - type: Transform - pos: 57.5,1.5 + pos: -11.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20607 + - uid: 20177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,7.5 + pos: -9.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20608 + - uid: 20178 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-12.5 + pos: 1.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20609 + - uid: 20179 components: - type: Transform - pos: 45.5,-14.5 + rot: 1.5707963267948966 rad + pos: -1.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20610 + - uid: 20180 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-7.5 + pos: -4.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20611 + - uid: 20181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,4.5 + rot: 3.141592653589793 rad + pos: -20.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20612 - components: - - type: Transform - pos: 51.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20613 + - uid: 20182 components: - type: Transform - pos: 45.5,-20.5 + pos: -20.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20614 + - uid: 20183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,1.5 + pos: -25.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20615 + color: '#FF0000FF' + - uid: 20184 components: - type: Transform - pos: 45.5,-16.5 + rot: 3.141592653589793 rad + pos: -23.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20616 + - uid: 20185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,5.5 + rot: -1.5707963267948966 rad + pos: -32.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20617 + color: '#FF0000FF' + - uid: 20186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,7.5 + rot: -1.5707963267948966 rad + pos: -28.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20618 + color: '#FF0000FF' + - uid: 20187 components: - type: Transform - pos: 63.5,-18.5 + pos: -29.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20619 + - uid: 20188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-9.5 + pos: -27.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20620 + - uid: 20189 components: - type: Transform - pos: 43.5,9.5 + rot: 3.141592653589793 rad + pos: -32.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20621 + - uid: 20190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,14.5 + rot: 3.141592653589793 rad + pos: -30.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20622 + color: '#FF0000FF' + - uid: 20191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,14.5 + rot: -1.5707963267948966 rad + pos: -27.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20623 + - uid: 20192 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-13.5 + pos: -32.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20624 + - uid: 20193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-15.5 + rot: -1.5707963267948966 rad + pos: -26.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20625 + - uid: 20194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,5.5 + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20626 + - uid: 20195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,11.5 + rot: -1.5707963267948966 rad + pos: -24.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20627 + color: '#FF0000FF' + - uid: 20196 components: - type: Transform - pos: 63.5,-17.5 + rot: -1.5707963267948966 rad + pos: -23.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20628 + - uid: 20197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-24.5 + rot: -1.5707963267948966 rad + pos: -22.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20629 + color: '#FF0000FF' + - uid: 20198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-18.5 + rot: -1.5707963267948966 rad + pos: -21.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20630 + - uid: 20199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-19.5 + rot: -1.5707963267948966 rad + pos: -19.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20631 + - uid: 20200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,15.5 + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20632 + color: '#FF0000FF' + - uid: 20201 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,14.5 + pos: -17.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20633 + - uid: 20202 components: - type: Transform - pos: 42.5,-4.5 + rot: 1.5707963267948966 rad + pos: -19.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20634 + - uid: 20203 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,-18.5 + pos: -21.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20635 + color: '#FF0000FF' + - uid: 20204 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,13.5 + pos: -22.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20637 + color: '#FF0000FF' + - uid: 20205 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,15.5 + pos: -23.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20638 + - uid: 20206 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-23.5 + pos: -26.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20640 + - uid: 20207 components: - type: Transform - pos: 52.5,-20.5 + rot: 1.5707963267948966 rad + pos: -29.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20641 + - uid: 20208 components: - type: Transform - pos: 51.5,-17.5 + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20642 + color: '#0000FFFF' + - uid: 20209 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,15.5 + pos: -27.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20643 + color: '#0000FFFF' + - uid: 20210 components: - type: Transform - pos: 45.5,-15.5 + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20644 + - uid: 20211 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-0.5 + pos: -23.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20645 + - uid: 20212 components: - type: Transform - pos: 57.5,8.5 + rot: -1.5707963267948966 rad + pos: -26.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20646 + color: '#0000FFFF' + - uid: 20213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-2.5 + rot: -1.5707963267948966 rad + pos: -28.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20647 + - uid: 20214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-14.5 + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20648 + - uid: 20215 components: - type: Transform - pos: 45.5,-21.5 + rot: -1.5707963267948966 rad + pos: -13.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20649 + - uid: 20216 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,12.5 + rot: 1.5707963267948966 rad + pos: -11.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20650 + - uid: 20217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-36.5 + pos: -10.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20651 + color: '#FF0000FF' + - uid: 20218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-16.5 + rot: 1.5707963267948966 rad + pos: -13.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20652 + - uid: 20219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,14.5 + pos: -26.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20653 + - uid: 20220 components: - type: Transform - pos: 57.5,13.5 + pos: -25.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20654 + - uid: 20221 components: - type: Transform - pos: 42.5,-9.5 + rot: 3.141592653589793 rad + pos: -29.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20655 + - uid: 20222 components: - type: Transform - pos: 56.5,5.5 + rot: 3.141592653589793 rad + pos: -30.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20656 + - uid: 20223 components: - type: Transform - pos: 57.5,4.5 + rot: 1.5707963267948966 rad + pos: -29.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20657 + - uid: 20224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-18.5 + pos: -30.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20658 + - uid: 20225 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-19.5 + pos: -37.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20660 + - uid: 20226 components: - type: Transform - pos: 56.5,-19.5 + pos: -40.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20661 + - uid: 20227 components: - type: Transform - pos: 48.5,-24.5 + pos: -39.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20662 + color: '#FF0000FF' + - uid: 20228 components: - type: Transform - pos: 56.5,10.5 + pos: -38.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20663 + - uid: 20229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,8.5 + pos: -35.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20664 + - uid: 20230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-18.5 + pos: -37.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20665 + color: '#FF0000FF' + - uid: 20231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,3.5 + pos: -40.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20666 + - uid: 20232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,6.5 + rot: 3.141592653589793 rad + pos: -41.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20667 + - uid: 20233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-13.5 + pos: -42.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20668 + - uid: 20234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-25.5 + pos: -47.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20669 + color: '#0000FFFF' + - uid: 20235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-15.5 + pos: -46.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20670 + - uid: 20236 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,-8.5 + pos: -51.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20671 + - uid: 20237 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20672 - components: - - type: Transform - pos: 56.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20673 - components: - - type: Transform - pos: 56.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,5.5 + pos: -53.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20675 + - uid: 20238 components: - type: Transform - pos: -47.5,-22.5 + rot: -1.5707963267948966 rad + pos: -50.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20676 + - uid: 20239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,0.5 + rot: 3.141592653589793 rad + pos: -49.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20677 + - uid: 20240 components: - type: Transform - pos: 44.5,5.5 + pos: -51.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20678 + - uid: 20241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-6.5 + pos: -35.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20679 + - uid: 20242 components: - type: Transform - pos: -2.5,-16.5 + pos: -74.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20680 + color: '#0000FFFF' + - uid: 20243 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-15.5 + pos: -72.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20681 + - uid: 20244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-2.5 + pos: -67.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20682 + color: '#FF0000FF' + - uid: 20245 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-39.5 + pos: -64.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20683 + - uid: 20246 components: - type: Transform - pos: 26.5,5.5 + rot: 3.141592653589793 rad + pos: 40.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20684 + - uid: 20247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-2.5 + rot: -1.5707963267948966 rad + pos: 45.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-98.5 - parent: 2 - - uid: 20686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-98.5 - parent: 2 - - uid: 20687 + - uid: 20248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-101.5 + rot: 3.141592653589793 rad + pos: 40.5,-59.5 parent: 2 - - uid: 20688 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-15.5 + pos: 40.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20689 + color: '#0000FFFF' + - uid: 20250 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-10.5 + pos: 39.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20690 + color: '#0000FFFF' + - uid: 20251 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-11.5 + pos: -43.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20691 + color: '#0000FFFF' + - uid: 20252 components: - type: Transform - pos: 27.5,7.5 + pos: -41.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20692 + - uid: 20253 components: - type: Transform - pos: 27.5,8.5 + rot: 1.5707963267948966 rad + pos: -49.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20693 + color: '#0000FFFF' + - uid: 20254 components: - type: Transform - pos: 27.5,9.5 + rot: 1.5707963267948966 rad + pos: -50.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20694 + - uid: 20255 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,1.5 + pos: -49.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20695 + - uid: 20256 components: - type: Transform - pos: 27.5,11.5 + rot: -1.5707963267948966 rad + pos: -50.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20696 + - uid: 20257 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,12.5 + pos: -54.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20697 + - uid: 20258 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,12.5 + pos: -47.5,-88.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20698 + - uid: 20259 components: - type: Transform - pos: 31.5,4.5 + rot: 1.5707963267948966 rad + pos: -49.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20699 + - uid: 20260 components: - type: Transform - pos: 31.5,5.5 + rot: 3.141592653589793 rad + pos: -49.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20700 + - uid: 20261 components: - type: Transform - pos: 31.5,6.5 + rot: -1.5707963267948966 rad + pos: -39.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20701 + - uid: 20262 components: - type: Transform - pos: 31.5,-0.5 + rot: 1.5707963267948966 rad + pos: -39.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20702 + - uid: 20263 components: - type: Transform - pos: 26.5,-0.5 + rot: 3.141592653589793 rad + pos: 42.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20703 + - uid: 20264 components: - type: Transform - pos: 31.5,0.5 + rot: 3.141592653589793 rad + pos: 6.5,-101.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20704 + - uid: 20265 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-1.5 + pos: 8.5,-99.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20705 + - uid: 20266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-2.5 + rot: 3.141592653589793 rad + pos: -8.5,-96.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20706 + - uid: 20267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-2.5 + pos: -7.5,-96.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20707 + - uid: 20268 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-4.5 + pos: -13.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20708 + color: '#0000FFFF' + - uid: 20269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-4.5 + rot: -1.5707963267948966 rad + pos: -6.5,-99.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20709 + - uid: 20270 components: - type: Transform - pos: -62.5,-65.5 + rot: -1.5707963267948966 rad + pos: -7.5,-98.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20710 + - uid: 20271 components: - type: Transform - pos: -62.5,-66.5 + rot: 3.141592653589793 rad + pos: 64.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20711 + color: '#FF0000FF' + - uid: 20272 components: - type: Transform - pos: -62.5,-67.5 + rot: 3.141592653589793 rad + pos: 45.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20712 + color: '#FF0000FF' + - uid: 20273 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,-76.5 + pos: 40.5,-95.5 parent: 2 - - uid: 20713 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20274 components: - type: Transform - pos: 43.5,-72.5 + rot: 3.141592653589793 rad + pos: 35.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20714 + color: '#17E8E2FF' + - uid: 20275 components: - type: Transform - pos: 44.5,-70.5 + rot: 1.5707963267948966 rad + pos: 37.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20715 + - uid: 20276 components: - type: Transform - pos: 31.5,8.5 + rot: -1.5707963267948966 rad + pos: 57.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20716 + color: '#FEF101FF' + - uid: 20277 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-39.5 + pos: 57.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20717 + color: '#FEF101FF' + - uid: 20278 components: - type: Transform - pos: -54.5,-35.5 + rot: 1.5707963267948966 rad + pos: 52.5,-94.5 + parent: 2 + - uid: 20279 + components: + - type: Transform + pos: -54.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20718 + - uid: 20280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-95.5 + rot: -1.5707963267948966 rad + pos: 58.5,-89.5 parent: 2 - - uid: 20719 + - type: AtmosPipeColor + color: '#FEF101FF' + - uid: 20281 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-98.5 + pos: 57.5,-87.5 parent: 2 - - uid: 20720 + - type: AtmosPipeColor + color: '#FEF101FF' + - uid: 20282 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-97.5 + pos: 57.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20721 + color: '#FEF101FF' + - uid: 20283 components: - type: Transform - pos: 45.5,-88.5 + rot: -1.5707963267948966 rad + pos: 56.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20722 + color: '#FEF101FF' + - uid: 20284 components: - type: Transform - pos: 45.5,-89.5 + rot: 1.5707963267948966 rad + pos: 56.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20723 + color: '#FEF101FF' + - uid: 20285 components: - type: Transform - pos: 45.5,-90.5 + rot: -1.5707963267948966 rad + pos: 44.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20724 + color: '#0000FFFF' + - uid: 20286 components: - type: Transform - pos: 45.5,-91.5 + pos: -76.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20725 + color: '#0000FFFF' + - uid: 20287 components: - type: Transform - pos: 45.5,-92.5 + rot: 1.5707963267948966 rad + pos: 58.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20726 + color: '#FEF101FF' + - uid: 20288 components: - type: Transform - pos: 45.5,-93.5 + rot: -1.5707963267948966 rad + pos: 33.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20727 + color: '#0000FFFF' + - uid: 20289 components: - type: Transform - pos: 45.5,-94.5 + rot: 3.141592653589793 rad + pos: -72.5,-78.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20728 + - uid: 20290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-87.5 + rot: 1.5707963267948966 rad + pos: -53.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20729 + - uid: 20291 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-86.5 + pos: -38.5,-73.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20730 + - uid: 20292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-68.5 + pos: -71.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20731 + - uid: 20293 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-69.5 + pos: -71.5,-25.5 + parent: 2 + - uid: 20294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20732 + - uid: 20295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,14.5 + pos: -59.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20733 + - uid: 20296 components: - type: Transform - pos: 26.5,1.5 + rot: 3.141592653589793 rad + pos: -68.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20734 + color: '#0000FFFF' + - uid: 20297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 + pos: -68.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20735 + - uid: 20298 components: - type: Transform - pos: 31.5,9.5 + rot: 3.141592653589793 rad + pos: -73.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20736 + - uid: 20299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20300 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,14.5 + pos: -72.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20737 + - uid: 20301 components: - type: Transform - pos: 31.5,10.5 + rot: 1.5707963267948966 rad + pos: -72.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20738 + - uid: 20302 components: - type: Transform - pos: 31.5,12.5 + rot: -1.5707963267948966 rad + pos: -71.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20739 + - uid: 20303 components: - type: Transform - pos: -54.5,-37.5 + rot: 3.141592653589793 rad + pos: -79.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20740 + color: '#0000FFFF' + - uid: 20304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-13.5 + pos: -79.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20741 + - uid: 20305 components: - type: Transform - pos: -54.5,-36.5 + rot: 3.141592653589793 rad + pos: -76.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20742 + - uid: 20307 components: - type: Transform - pos: 37.5,-104.5 + pos: -77.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20743 + color: '#FF0000FF' + - uid: 20308 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-104.5 + pos: -78.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20744 + color: '#FF0000FF' + - uid: 20309 components: - type: Transform - pos: 43.5,-69.5 + rot: 1.5707963267948966 rad + pos: -78.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20745 + - uid: 20310 components: - type: Transform - pos: 43.5,-70.5 + rot: -1.5707963267948966 rad + pos: -73.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20746 + - uid: 20311 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,-87.5 + pos: -73.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20747 + color: '#FF0000FF' + - uid: 20312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-15.5 + pos: -56.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20748 + - uid: 20313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-85.5 + rot: 3.141592653589793 rad + pos: -56.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 20749 + color: '#FF0000FF' + - uid: 20314 components: - type: Transform - pos: -17.5,-13.5 + rot: -1.5707963267948966 rad + pos: -53.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20750 + color: '#FF0000FF' + - uid: 20315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-20.5 + pos: -49.5,9.5 parent: 2 - - uid: 20751 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20316 components: - type: Transform - pos: 65.5,-35.5 + pos: -71.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20752 + - uid: 20317 components: - type: Transform - pos: 31.5,-43.5 + rot: 3.141592653589793 rad + pos: 95.5,-83.5 + parent: 2 + - uid: 20318 + components: + - type: Transform + pos: 100.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20753 + - uid: 20319 components: - type: Transform - pos: 65.5,-32.5 + rot: 1.5707963267948966 rad + pos: 96.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20754 + - uid: 20320 components: - type: Transform - pos: 64.5,-34.5 + rot: 3.141592653589793 rad + pos: 97.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20755 + - uid: 20321 components: - type: Transform - pos: 65.5,-37.5 + pos: 100.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20756 + color: '#FF0000FF' + - uid: 20322 components: - type: Transform - pos: 65.5,-33.5 + pos: 101.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20757 + - uid: 20323 components: - type: Transform - pos: 65.5,-36.5 + rot: 1.5707963267948966 rad + pos: 95.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20758 + - uid: 20324 components: - type: Transform - pos: 65.5,-34.5 + rot: 3.141592653589793 rad + pos: -54.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20759 + - uid: 20325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-58.5 + rot: 3.141592653589793 rad + pos: -56.5,-39.5 parent: 2 - - uid: 20760 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-58.5 + pos: 37.5,21.5 parent: 2 - - uid: 20761 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-56.5 + pos: 39.5,23.5 parent: 2 - - uid: 20762 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20328 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-56.5 + pos: 33.5,23.5 parent: 2 - - uid: 20763 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20329 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-88.5 + pos: 34.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20764 + color: '#0000FFFF' + - uid: 20331 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-88.5 + pos: 33.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20765 + - uid: 20332 components: - type: Transform - pos: -27.5,-68.5 + rot: -1.5707963267948966 rad + pos: -48.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20766 + color: '#FFAA00FF' + - uid: 20333 components: - type: Transform - pos: -27.5,-67.5 + rot: 1.5707963267948966 rad + pos: 40.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20767 + - uid: 20334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-67.5 + pos: 45.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20768 + - uid: 20335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-69.5 + rot: 1.5707963267948966 rad + pos: -27.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20769 + color: '#FF0000FF' + - uid: 20336 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-68.5 + pos: -29.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20770 + color: '#FF0000FF' + - uid: 20337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-48.5 + pos: 102.5,-39.5 parent: 2 - - uid: 20771 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-49.5 + pos: -3.5,-13.5 parent: 2 - - uid: 20772 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 20339 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,-48.5 - parent: 2 - - uid: 20773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-47.5 + pos: -17.5,-16.5 parent: 2 - - uid: 20774 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 20340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-47.5 + rot: 3.141592653589793 rad + pos: -4.5,-19.5 parent: 2 - - uid: 20775 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 20341 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-47.5 + pos: -16.5,-19.5 parent: 2 - - uid: 20776 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 20342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-47.5 + rot: 3.141592653589793 rad + pos: -10.5,-15.5 parent: 2 - - uid: 20777 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 20343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-47.5 + pos: -2.5,-15.5 parent: 2 - - uid: 20778 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 20344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-49.5 + rot: 3.141592653589793 rad + pos: -2.5,-17.5 parent: 2 - - uid: 20779 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 20345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-49.5 + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 parent: 2 - - uid: 20780 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 20346 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-49.5 + pos: -12.5,-12.5 parent: 2 - - uid: 20781 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 20347 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-86.5 + pos: -47.5,-20.5 parent: 2 - - uid: 20782 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20348 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-86.5 + pos: 41.5,-24.5 parent: 2 - - uid: 20783 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20349 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-86.5 + pos: -49.5,-25.5 parent: 2 - - uid: 20784 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-89.5 + rot: -1.5707963267948966 rad + pos: 41.5,-25.5 parent: 2 - - uid: 20785 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20351 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-89.5 + pos: 49.5,-22.5 parent: 2 - - uid: 20786 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-89.5 + rot: -1.5707963267948966 rad + pos: 56.5,-13.5 parent: 2 - - uid: 20787 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-92.5 + rot: -1.5707963267948966 rad + pos: 58.5,-15.5 parent: 2 - - uid: 20788 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20354 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-92.5 + pos: 57.5,15.5 parent: 2 - - uid: 20789 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20355 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-92.5 + pos: 27.5,13.5 parent: 2 - - uid: 20790 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-104.5 + pos: 58.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 20791 + color: '#FF0000FF' + - uid: 20357 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-106.5 + pos: 57.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20792 + color: '#FF0000FF' + - uid: 20358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-103.5 + rot: -1.5707963267948966 rad + pos: 50.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20793 + color: '#FF0000FF' + - uid: 20359 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-101.5 + pos: 62.5,-1.5 parent: 2 - - uid: 20794 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-101.5 + rot: 3.141592653589793 rad + pos: 77.5,-1.5 parent: 2 - - uid: 20795 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-95.5 + rot: -1.5707963267948966 rad + pos: 85.5,-1.5 parent: 2 - - uid: 20796 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-95.5 + rot: -1.5707963267948966 rad + pos: 84.5,-7.5 parent: 2 - - uid: 20797 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-88.5 + rot: 1.5707963267948966 rad + pos: 76.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20798 + - uid: 20364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-106.5 + rot: -1.5707963267948966 rad + pos: 76.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20799 + color: '#0000FFFF' + - uid: 20365 components: - type: Transform - pos: 35.5,-102.5 + rot: 1.5707963267948966 rad + pos: 72.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20800 + color: '#0000FFFF' + - uid: 20366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-87.5 + rot: -1.5707963267948966 rad + pos: 81.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20801 + - uid: 20367 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,-92.5 + pos: 74.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20802 + - uid: 20368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-93.5 + rot: -1.5707963267948966 rad + pos: 87.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20803 + color: '#FF0000FF' + - uid: 20369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-94.5 + pos: 84.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20804 + color: '#FF0000FF' + - uid: 20370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-95.5 + rot: -1.5707963267948966 rad + pos: 70.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20805 + - uid: 20371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-96.5 + rot: 1.5707963267948966 rad + pos: 53.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20806 + - uid: 20372 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-98.5 + pos: 52.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20807 + - uid: 20373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-99.5 + pos: 51.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20808 + color: '#FF0000FF' + - uid: 20374 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,-100.5 + pos: 77.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20809 + - uid: 20375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-101.5 + rot: -1.5707963267948966 rad + pos: 81.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20810 + - uid: 20376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-102.5 + rot: -1.5707963267948966 rad + pos: -6.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20811 + - uid: 20377 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-103.5 + pos: -6.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20812 + - uid: 20378 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-103.5 + pos: -7.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20813 + - uid: 20379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-103.5 + rot: -1.5707963267948966 rad + pos: -1.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20814 + - uid: 20380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-103.5 + rot: 3.141592653589793 rad + pos: -3.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20815 + - uid: 20381 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-103.5 + pos: -5.5,-48.5 + parent: 2 + - uid: 20382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20816 + color: '#2A6478FF' + - uid: 20383 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-103.5 + pos: 68.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20817 + color: '#FF0000FF' + - uid: 20384 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-85.5 + pos: 79.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20818 + - uid: 20385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-91.5 + rot: 1.5707963267948966 rad + pos: 52.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20819 + - uid: 20386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-90.5 + pos: -5.5,-55.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20820 + - uid: 20387 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,-89.5 + pos: -7.5,-55.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20821 + - uid: 20388 components: - type: Transform - pos: 35.5,-101.5 + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20822 + color: '#FF0000FF' + - uid: 20389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-105.5 + pos: -4.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20823 + color: '#FF0000FF' + - uid: 20390 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,-85.5 + pos: -4.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20824 + color: '#FF0000FF' + - uid: 20391 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-85.5 + pos: 0.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20825 + color: '#0000FFFF' + - uid: 20392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-85.5 + pos: 5.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20826 + color: '#0000FFFF' + - uid: 20393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-85.5 + rot: 3.141592653589793 rad + pos: 5.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20827 + color: '#0000FFFF' + - uid: 20394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-85.5 + pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20828 + - uid: 20395 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-107.5 + rot: 1.5707963267948966 rad + pos: 1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20829 + color: '#0000FFFF' + - uid: 20396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-105.5 + rot: -1.5707963267948966 rad + pos: 2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20830 + color: '#0000FFFF' + - uid: 20397 components: - type: Transform - pos: 52.5,-97.5 + rot: 3.141592653589793 rad + pos: -1.5,0.5 parent: 2 - - uid: 20831 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-107.5 + rot: -1.5707963267948966 rad + pos: 53.5,-57.5 parent: 2 - - uid: 20832 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-106.5 + rot: 1.5707963267948966 rad + pos: 53.5,-56.5 parent: 2 - - uid: 20833 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-105.5 + rot: -1.5707963267948966 rad + pos: 56.5,-56.5 parent: 2 - - uid: 20834 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20401 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-104.5 + pos: 5.5,-20.5 parent: 2 - - uid: 20835 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 20402 components: - type: Transform - pos: 43.5,-107.5 + pos: 6.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#A505FAFF' - - uid: 20836 + color: '#2A6478FF' + - uid: 20403 components: - type: Transform - pos: 43.5,-106.5 + pos: 2.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#A505FAFF' - - uid: 20837 + color: '#2A6478FF' + - uid: 20404 components: - type: Transform - pos: 43.5,-105.5 + pos: -16.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#A505FAFF' - - uid: 20838 + color: '#2A6478FF' + - uid: 20405 components: - type: Transform - pos: 43.5,-104.5 + rot: -1.5707963267948966 rad + pos: 18.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#A505FAFF' - - uid: 20839 + color: '#2A6478FF' + - uid: 20406 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-96.5 + pos: -14.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20840 + color: '#2A6478FF' + - uid: 20407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-91.5 + rot: 1.5707963267948966 rad + pos: 112.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 20841 + color: '#FF0000FF' + - uid: 20408 components: - type: Transform - pos: 52.5,-96.5 + rot: -1.5707963267948966 rad + pos: 112.5,-42.5 parent: 2 - - uid: 20842 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-56.5 + pos: 127.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#00FF00FF' - - uid: 20843 + color: '#0000FFFF' + - uid: 20410 components: - type: Transform - pos: 64.5,-36.5 + rot: -1.5707963267948966 rad + pos: 128.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20844 + - uid: 20411 components: - type: Transform - pos: 64.5,-35.5 + rot: -1.5707963267948966 rad + pos: 110.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20845 + color: '#0000FFFF' + - uid: 20412 components: - type: Transform - pos: 64.5,-38.5 + rot: 1.5707963267948966 rad + pos: 110.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20846 + color: '#0000FFFF' + - uid: 20413 components: - type: Transform - pos: 64.5,-37.5 + pos: 18.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20847 + color: '#B7410EFF' + - uid: 20414 components: - type: Transform - pos: 45.5,-84.5 + pos: 10.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20848 + color: '#B7410EFF' + - uid: 20415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-83.5 + rot: 3.141592653589793 rad + pos: 10.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20849 + color: '#B7410EFF' + - uid: 20416 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-83.5 + pos: 18.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20850 + color: '#2A6478FF' + - uid: 20417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-83.5 + rot: 3.141592653589793 rad + pos: 18.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20851 + color: '#2A6478FF' + - uid: 20418 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-83.5 + pos: 19.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20852 + color: '#2A6478FF' + - uid: 20419 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-83.5 + pos: 16.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20853 + color: '#B7410EFF' + - uid: 20420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-83.5 + pos: 11.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20854 + color: '#B7410EFF' + - uid: 20421 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-83.5 + pos: 1.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20855 + color: '#B7410EFF' + - uid: 20422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-83.5 + rot: 3.141592653589793 rad + pos: -16.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20856 + color: '#B7410EFF' + - uid: 20423 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-83.5 + pos: -16.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20857 + color: '#2A6478FF' + - uid: 20424 components: - type: Transform - pos: 46.5,-84.5 + pos: -7.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20858 + color: '#2A6478FF' + - uid: 20425 components: - type: Transform - pos: 46.5,-83.5 + rot: 3.141592653589793 rad + pos: -7.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20859 + color: '#2A6478FF' + - uid: 20426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-82.5 + rot: 3.141592653589793 rad + pos: -10.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20860 + color: '#2A6478FF' + - uid: 20427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-82.5 + pos: -14.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20861 + color: '#2A6478FF' + - uid: 20428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-82.5 + rot: 1.5707963267948966 rad + pos: -18.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20862 + color: '#2A6478FF' + - uid: 20429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-82.5 + rot: 3.141592653589793 rad + pos: -18.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20863 + color: '#2A6478FF' + - uid: 20430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-82.5 + pos: -10.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20864 + color: '#2A6478FF' + - uid: 20431 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,-81.5 + pos: -15.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20865 + color: '#2A6478FF' + - uid: 20432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-80.5 + pos: -5.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20866 + color: '#2A6478FF' + - uid: 20433 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-82.5 + pos: -2.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20867 + color: '#2A6478FF' + - uid: 20434 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-81.5 + rot: -1.5707963267948966 rad + pos: -10.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20868 + color: '#2A6478FF' + - uid: 20435 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-80.5 + pos: -3.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20869 + color: '#2A6478FF' + - uid: 20436 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-79.5 + pos: -1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20870 + color: '#2A6478FF' + - uid: 20437 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-78.5 + pos: -1.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20871 + color: '#2A6478FF' + - uid: 20438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-77.5 + pos: -10.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20872 + color: '#2A6478FF' + - uid: 20439 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-77.5 + pos: -17.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20873 + color: '#2A6478FF' + - uid: 20440 components: - type: Transform - pos: 48.5,-76.5 + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20874 + color: '#2A6478FF' + - uid: 20441 components: - type: Transform - pos: 48.5,-75.5 + rot: 1.5707963267948966 rad + pos: -18.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20875 + color: '#2A6478FF' + - uid: 20442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-79.5 + rot: 3.141592653589793 rad + pos: -5.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20876 + color: '#2A6478FF' + - uid: 20443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-79.5 + rot: 1.5707963267948966 rad + pos: -5.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20877 + color: '#2A6478FF' + - uid: 20444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-79.5 + rot: 3.141592653589793 rad + pos: -4.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20878 + color: '#B7410EFF' + - uid: 20445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-78.5 + pos: -3.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20879 + color: '#B7410EFF' + - uid: 20446 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-77.5 + rot: -1.5707963267948966 rad + pos: -3.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20880 + color: '#B7410EFF' + - uid: 20447 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-76.5 + rot: -1.5707963267948966 rad + pos: 14.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20881 + color: '#2A6478FF' + - uid: 20448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-75.5 + rot: -1.5707963267948966 rad + pos: 6.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20882 + color: '#2A6478FF' + - uid: 20449 components: - type: Transform - pos: 48.5,-74.5 + rot: 1.5707963267948966 rad + pos: 13.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20883 + color: '#2A6478FF' + - uid: 20450 components: - type: Transform - pos: 48.5,-73.5 + rot: 1.5707963267948966 rad + pos: -18.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20884 + color: '#B7410EFF' + - uid: 20451 components: - type: Transform - pos: 50.5,-73.5 + rot: 1.5707963267948966 rad + pos: -11.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20885 + color: '#B7410EFF' + - uid: 20452 components: - type: Transform - pos: 50.5,-72.5 + rot: 3.141592653589793 rad + pos: -3.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20886 + color: '#B7410EFF' + - uid: 20453 components: - type: Transform - pos: 50.5,-71.5 + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20887 + color: '#B7410EFF' + - uid: 20454 components: - type: Transform - pos: 50.5,-70.5 + rot: 3.141592653589793 rad + pos: -11.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20888 + color: '#B7410EFF' + - uid: 20455 components: - type: Transform - pos: 48.5,-69.5 + pos: -10.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20889 + color: '#B7410EFF' + - uid: 20456 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-71.5 + pos: 23.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20890 + - uid: 20457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-70.5 + rot: 1.5707963267948966 rad + pos: 35.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20891 + - uid: 20458 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-68.5 + pos: 28.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20892 + - uid: 20459 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-68.5 + pos: 14.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20893 + - uid: 20460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-68.5 + rot: 3.141592653589793 rad + pos: 10.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20894 + - uid: 20461 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-68.5 + pos: 15.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20895 + color: '#0000FFFF' + - uid: 20462 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-69.5 + pos: 12.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20896 + - uid: 20463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-69.5 + rot: 3.141592653589793 rad + pos: 12.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20897 + - uid: 20464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-69.5 + pos: 14.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20898 + - uid: 20465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-69.5 + rot: 3.141592653589793 rad + pos: 14.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20899 + - uid: 20466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-69.5 + pos: 16.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20900 + - uid: 20467 components: - type: Transform - pos: 53.5,-70.5 + rot: 3.141592653589793 rad + pos: 16.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20901 + - uid: 20468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-68.5 + rot: -1.5707963267948966 rad + pos: 18.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20902 + - uid: 20469 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-68.5 + pos: -13.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20903 + - uid: 20470 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-68.5 + pos: -8.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20904 + - uid: 20471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-68.5 + rot: 3.141592653589793 rad + pos: -17.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20905 + - uid: 20472 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-68.5 + pos: -17.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20906 + - uid: 20473 components: - type: Transform - pos: 56.5,-69.5 + rot: -1.5707963267948966 rad + pos: -15.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20907 + - uid: 20474 components: - type: Transform - pos: 56.5,-70.5 + rot: 1.5707963267948966 rad + pos: -15.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20908 + - uid: 20475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-67.5 + pos: -21.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20909 + color: '#0000FFFF' + - uid: 23666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-66.5 + pos: 33.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20910 + - uid: 23830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-65.5 + rot: -1.5707963267948966 rad + pos: 36.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20911 + - uid: 26541 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,-64.5 + pos: 33.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20912 + - uid: 40735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-63.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 40666 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20913 + - uid: 41179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-62.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20914 + color: '#0000FFFF' + - uid: 41180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-61.5 - parent: 2 + pos: 6.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20915 + color: '#0000FFFF' + - uid: 41181 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-60.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20916 + - uid: 41182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-68.5 - parent: 2 + pos: 4.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20917 + color: '#FF0000FF' + - uid: 41183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-67.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 40828 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20918 + color: '#FF0000FF' + - uid: 41184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-66.5 - parent: 2 + pos: 1.5,-1.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20919 + - uid: 41784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-65.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 41669 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20920 + color: '#FF0000FF' + - uid: 41785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-64.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 41669 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20921 + color: '#FF0000FF' + - uid: 41786 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-63.5 - parent: 2 + pos: 4.5,-11.5 + parent: 41669 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20922 + color: '#FF0000FF' + - uid: 41787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-62.5 - parent: 2 + pos: 3.5,-8.5 + parent: 41669 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20923 + - uid: 41788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-61.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 41669 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20924 + - uid: 41789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-59.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 41669 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20925 + - uid: 42055 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-58.5 + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20926 + - uid: 42059 components: - type: Transform - pos: 50.5,-59.5 + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20927 + color: '#0000FFFF' + - uid: 42060 components: - type: Transform - pos: 50.5,-57.5 + pos: 9.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20928 + color: '#0000FFFF' +- proto: GasPipeBroken + entities: + - uid: 20476 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-58.5 + pos: 2.5,-43.5 + parent: 2 +- proto: GasPipeFourway + entities: + - uid: 20477 + components: + - type: Transform + pos: 62.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20929 + - uid: 20478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-58.5 + pos: 56.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20930 + color: '#0000FFFF' + - uid: 20479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-58.5 + pos: 51.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20931 + - uid: 20480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-58.5 + pos: 42.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20932 + - uid: 20481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-58.5 + pos: 52.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20933 + color: '#0000FFFF' + - uid: 20482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-58.5 + pos: 51.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20934 + color: '#0000FFFF' + - uid: 20483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-58.5 + pos: 43.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20935 + - uid: 20484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-58.5 + pos: 45.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20936 + color: '#0000FFFF' + - uid: 20485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-58.5 + pos: 56.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20937 + color: '#0000FFFF' + - uid: 20486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-58.5 + pos: 51.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20938 + - uid: 20487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-60.5 + pos: -16.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20939 + color: '#00FFFFFF' + - uid: 20488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-60.5 + pos: 26.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20940 + color: '#FF0000FF' + - uid: 20489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-60.5 + pos: 64.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20941 + color: '#FF0000FF' + - uid: 20490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-60.5 + pos: -37.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20942 + - uid: 20491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-60.5 + pos: 50.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20943 + color: '#FF0000FF' + - uid: 20492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-60.5 + pos: 43.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20944 + color: '#FF0000FF' + - uid: 20493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-60.5 + pos: 45.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20945 + - uid: 20494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-60.5 + pos: -0.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20946 + color: '#FF0000FF' + - uid: 20495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-60.5 + pos: 1.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20947 + - uid: 20496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-60.5 + pos: 1.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20948 + - uid: 20497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-57.5 + pos: -0.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20949 + color: '#FF0000FF' + - uid: 20498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-57.5 + pos: 30.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20950 + color: '#FF0000FF' + - uid: 20499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-57.5 + pos: -42.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20951 + - uid: 20500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-57.5 + pos: -40.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20952 + color: '#FF0000FF' + - uid: 20501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-57.5 + pos: -49.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20953 + color: '#FF0000FF' + - uid: 20502 components: - type: Transform - pos: 45.5,-56.5 + pos: 46.5,-97.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20954 + - uid: 20503 components: - type: Transform - pos: 45.5,-55.5 + pos: 31.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20955 + - uid: 20504 components: - type: Transform - pos: 45.5,-54.5 + pos: 98.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20956 + - uid: 20505 components: - type: Transform - pos: 45.5,-53.5 + pos: 97.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20957 + color: '#FF0000FF' + - uid: 20506 components: - type: Transform - pos: 45.5,-52.5 + pos: 97.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20958 + color: '#FF0000FF' + - uid: 20507 components: - type: Transform - pos: 45.5,-51.5 + pos: 99.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20959 + - uid: 20508 components: - type: Transform - pos: 45.5,-50.5 + pos: 42.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20960 + color: '#FF0000FF' + - uid: 20509 components: - type: Transform - pos: 45.5,-49.5 + pos: -12.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20961 + color: '#00FFFFFF' + - uid: 20510 components: - type: Transform - pos: 45.5,-47.5 + pos: 43.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20962 + - uid: 20511 components: - type: Transform - pos: 45.5,-46.5 + pos: 7.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20963 + color: '#FF0000FF' + - uid: 20512 components: - type: Transform - pos: 45.5,-45.5 + pos: -65.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20964 + - uid: 20513 components: - type: Transform - pos: 45.5,-44.5 + pos: 30.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20965 + color: '#FF0000FF' + - uid: 20514 components: - type: Transform - pos: 45.5,-43.5 + pos: 74.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20966 + - uid: 20515 components: - type: Transform - pos: 45.5,-42.5 + pos: 52.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20967 + - uid: 20516 components: - type: Transform - pos: 43.5,-57.5 + pos: -13.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20968 + color: '#2A6478FF' + - uid: 20517 components: - type: Transform - pos: 43.5,-56.5 + pos: 57.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20969 + - uid: 20518 components: - type: Transform - pos: 43.5,-55.5 + pos: -11.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20970 + color: '#B7410EFF' + - uid: 20519 components: - type: Transform - pos: 43.5,-54.5 + pos: -10.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20971 + color: '#2A6478FF' + - uid: 20520 components: - type: Transform - pos: 43.5,-53.5 + pos: -3.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20972 + color: '#B7410EFF' + - uid: 26537 components: - type: Transform - pos: 43.5,-52.5 + pos: 36.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20973 + - uid: 41185 components: - type: Transform - pos: 43.5,-50.5 - parent: 2 + pos: 1.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20974 + color: '#0000FFFF' + - uid: 41186 components: - type: Transform - pos: 43.5,-49.5 - parent: 2 + pos: 0.5,-9.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20975 + - uid: 41187 components: - type: Transform - pos: 43.5,-48.5 - parent: 2 + pos: 1.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20976 + color: '#0000FFFF' +- proto: GasPipeHalf + entities: + - uid: 20521 components: - type: Transform - pos: 43.5,-47.5 + rot: -1.5707963267948966 rad + pos: 1.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20977 + color: '#B7410EFF' + - uid: 20522 components: - type: Transform - pos: 43.5,-46.5 + rot: 1.5707963267948966 rad + pos: 2.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20978 + color: '#B7410EFF' +- proto: GasPipeStraight + entities: + - uid: 14862 components: - type: Transform - pos: 43.5,-45.5 + rot: 3.141592653589793 rad + pos: 36.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20979 + - uid: 14863 components: - type: Transform - pos: 43.5,-44.5 + rot: 3.141592653589793 rad + pos: 36.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20980 + - uid: 15895 components: - type: Transform - pos: 43.5,-43.5 + rot: 3.141592653589793 rad + pos: 36.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20981 + - uid: 17672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-58.5 + rot: 3.141592653589793 rad + pos: 29.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20982 + color: '#0000FFFF' + - uid: 20523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-58.5 + rot: 3.141592653589793 rad + pos: 43.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20983 + color: '#0000FFFF' + - uid: 20524 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-58.5 + pos: 45.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20984 + - uid: 20525 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-58.5 + pos: 44.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20985 + color: '#0000FFFF' + - uid: 20526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-58.5 + rot: 3.141592653589793 rad + pos: 42.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20986 + - uid: 20527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-58.5 + pos: 42.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20987 + color: '#0000FFFF' + - uid: 20528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-48.5 + pos: 45.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20988 + - uid: 20529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-48.5 + rot: 3.141592653589793 rad + pos: 61.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20989 + - uid: 20530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-48.5 + pos: 42.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20990 + color: '#FF0000FF' + - uid: 20531 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-40.5 + pos: 61.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20991 + - uid: 20532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-39.5 + pos: 44.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20992 + color: '#FF0000FF' + - uid: 20533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-38.5 + rot: 1.5707963267948966 rad + pos: 57.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20993 + - uid: 20534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-37.5 + pos: 63.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20994 + color: '#FF0000FF' + - uid: 20535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-36.5 + rot: 1.5707963267948966 rad + pos: 44.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20995 + - uid: 20536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-35.5 + pos: 42.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20996 + color: '#FF0000FF' + - uid: 20537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-34.5 + rot: -1.5707963267948966 rad + pos: 40.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20997 + color: '#FF0000FF' + - uid: 20538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-41.5 + rot: -1.5707963267948966 rad + pos: 39.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20998 + - uid: 20539 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-40.5 + pos: 43.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20999 + - uid: 20540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-39.5 + rot: -1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21000 + - uid: 20542 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-38.5 + pos: 57.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21001 + - uid: 20543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-37.5 + rot: 1.5707963267948966 rad + pos: 41.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21002 + - uid: 20544 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-36.5 + pos: 43.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21003 + - uid: 20545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20546 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-35.5 + pos: 56.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21004 + color: '#0000FFFF' + - uid: 20547 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-34.5 + pos: 57.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21005 + - uid: 20548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-33.5 + rot: 1.5707963267948966 rad + pos: 55.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21006 + color: '#0000FFFF' + - uid: 20549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-33.5 + rot: 3.141592653589793 rad + pos: 57.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21007 + - uid: 20550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-33.5 + rot: 1.5707963267948966 rad + pos: 55.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21008 + - uid: 20551 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-33.5 + pos: 46.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21009 + - uid: 20552 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-33.5 + pos: 48.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21010 + - uid: 20553 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-33.5 + pos: 47.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21011 + - uid: 20554 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-33.5 + pos: 45.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21012 + - uid: 20555 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-33.5 + pos: 44.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21013 + - uid: 20556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-33.5 + rot: 1.5707963267948966 rad + pos: 62.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21014 + - uid: 20557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-33.5 + rot: 3.141592653589793 rad + pos: 42.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21015 + - uid: 20558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-33.5 + rot: 1.5707963267948966 rad + pos: 42.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21016 + color: '#0000FFFF' + - uid: 20559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-33.5 + rot: 1.5707963267948966 rad + pos: 43.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21017 + - uid: 20560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-33.5 + rot: 3.141592653589793 rad + pos: 56.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21018 + color: '#0000FFFF' + - uid: 20561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-33.5 + rot: 3.141592653589793 rad + pos: 57.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21019 + - uid: 20562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20563 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-33.5 + pos: 58.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21020 + - uid: 20564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-32.5 + rot: -1.5707963267948966 rad + pos: 58.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21021 + color: '#0000FFFF' + - uid: 20565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-31.5 + rot: -1.5707963267948966 rad + pos: 59.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21022 + color: '#0000FFFF' + - uid: 20566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-30.5 + rot: 1.5707963267948966 rad + pos: 41.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21023 + - uid: 20567 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-29.5 + pos: 44.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21024 + - uid: 20568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-28.5 + rot: -1.5707963267948966 rad + pos: 43.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21025 + - uid: 20569 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-26.5 + pos: 51.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21026 + - uid: 20570 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-30.5 + pos: 61.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21027 + - uid: 20571 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-29.5 + pos: 61.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21028 + - uid: 20572 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-28.5 + rot: 1.5707963267948966 rad + pos: -11.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21029 + color: '#00FFFFFF' + - uid: 20573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-27.5 + rot: 1.5707963267948966 rad + pos: 58.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21030 + - uid: 20574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-26.5 + rot: 1.5707963267948966 rad + pos: 60.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21031 + color: '#FF0000FF' + - uid: 20575 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-32.5 + pos: 61.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21032 + - uid: 20576 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20577 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-33.5 + pos: 43.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21033 + color: '#FF0000FF' + - uid: 20578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-31.5 + pos: 63.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21034 + color: '#FF0000FF' + - uid: 20579 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-31.5 + pos: 59.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21035 + color: '#FF0000FF' + - uid: 20580 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-31.5 + pos: 58.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21036 + color: '#FF0000FF' + - uid: 20581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-31.5 + rot: 3.141592653589793 rad + pos: 43.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21037 + color: '#FF0000FF' + - uid: 20582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-31.5 + rot: -1.5707963267948966 rad + pos: 44.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21038 + - uid: 20583 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-31.5 + pos: 54.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21039 + - uid: 20584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-31.5 + pos: 45.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21040 + - uid: 20585 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-31.5 + pos: 41.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21041 + - uid: 20586 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-31.5 + pos: 44.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21042 + - uid: 20587 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-31.5 + pos: 45.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21043 + - uid: 20588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-31.5 + pos: 45.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21044 + - uid: 20589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-31.5 + rot: -1.5707963267948966 rad + pos: 59.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21045 + color: '#FF0000FF' + - uid: 20590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-31.5 + rot: 3.141592653589793 rad + pos: 52.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21046 + - uid: 20591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 + rot: -1.5707963267948966 rad + pos: 46.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21047 + - uid: 20592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-31.5 + rot: -1.5707963267948966 rad + pos: 47.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21048 + - uid: 20593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-31.5 + pos: 45.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21049 + - uid: 20594 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-31.5 + pos: 44.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21050 + - uid: 20595 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-31.5 + pos: 45.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21051 + - uid: 20596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-33.5 + rot: 3.141592653589793 rad + pos: 51.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21052 + - uid: 20597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-33.5 + rot: -1.5707963267948966 rad + pos: 52.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21053 + - uid: 20598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-33.5 + rot: -1.5707963267948966 rad + pos: 53.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21054 + - uid: 20599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-33.5 + rot: 3.141592653589793 rad + pos: 57.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21055 + - uid: 20600 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-33.5 + pos: 60.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21056 + - uid: 20601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-33.5 + rot: 3.141592653589793 rad + pos: 52.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21057 + color: '#0000FFFF' + - uid: 20602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-33.5 + rot: -1.5707963267948966 rad + pos: 62.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21058 + - uid: 20603 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-33.5 + pos: 59.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21059 + color: '#0000FFFF' + - uid: 20604 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-33.5 + pos: 58.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21060 + color: '#0000FFFF' + - uid: 20605 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-33.5 + pos: 61.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21061 + - uid: 20606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-33.5 + pos: 57.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21062 + - uid: 20607 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-33.5 + pos: 45.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21063 + color: '#0000FFFF' + - uid: 20608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-33.5 + rot: 3.141592653589793 rad + pos: 43.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21064 + - uid: 20609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-33.5 + pos: 45.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21065 + color: '#0000FFFF' + - uid: 20610 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-33.5 + pos: 44.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21066 + - uid: 20611 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-31.5 + pos: 45.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21067 + - uid: 20612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-31.5 + pos: 51.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21068 + color: '#FF0000FF' + - uid: 20613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-31.5 + pos: 45.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21069 + - uid: 20614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-31.5 + rot: 3.141592653589793 rad + pos: 56.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21070 + - uid: 20615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-31.5 + pos: 45.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21071 + - uid: 20616 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-31.5 + pos: 41.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21072 + - uid: 20617 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,-31.5 + pos: 46.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21073 + - uid: 20618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-31.5 + pos: 63.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21074 + color: '#FF0000FF' + - uid: 20619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-31.5 + rot: 3.141592653589793 rad + pos: 45.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21075 + - uid: 20620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-31.5 + pos: 43.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21076 + - uid: 20621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-31.5 + rot: -1.5707963267948966 rad + pos: 60.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21077 + - uid: 20622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-31.5 + rot: 3.141592653589793 rad + pos: 59.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21078 + color: '#FF0000FF' + - uid: 20623 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,-31.5 + pos: 49.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21079 + - uid: 20624 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-32.5 + rot: 1.5707963267948966 rad + pos: 46.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21080 + - uid: 20625 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-31.5 + rot: 1.5707963267948966 rad + pos: 56.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21081 + - uid: 20626 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-30.5 + pos: 56.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21082 + color: '#0000FFFF' + - uid: 20627 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-29.5 + pos: 63.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21083 + - uid: 20628 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-28.5 + pos: 45.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21084 + color: '#0000FFFF' + - uid: 20629 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-30.5 + pos: 43.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21085 + color: '#FF0000FF' + - uid: 20630 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-29.5 + rot: 1.5707963267948966 rad + pos: 61.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21086 + color: '#FF0000FF' + - uid: 20631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-28.5 + rot: 1.5707963267948966 rad + pos: 49.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21087 + - uid: 20632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-16.5 + rot: 1.5707963267948966 rad + pos: 49.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21088 + - uid: 20633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,3.5 + pos: 42.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21089 + - uid: 20634 components: - type: Transform - pos: 28.5,-29.5 + rot: 1.5707963267948966 rad + pos: 59.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21090 + color: '#0000FFFF' + - uid: 20635 components: - type: Transform - pos: 28.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21091 - components: - - type: Transform - pos: 45.5,-12.5 + rot: 1.5707963267948966 rad + pos: 46.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21092 + - uid: 20636 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-7.5 + pos: 56.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21093 + - uid: 20637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-5.5 + rot: 1.5707963267948966 rad + pos: 60.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21094 + color: '#FF0000FF' + - uid: 20638 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-6.5 + rot: 1.5707963267948966 rad + pos: 57.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21095 + - uid: 20639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-33.5 + rot: 3.141592653589793 rad + pos: 43.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21096 + - uid: 20640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-33.5 + pos: 52.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21097 + color: '#0000FFFF' + - uid: 20641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-33.5 + pos: 51.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21098 + - uid: 20642 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-33.5 + pos: 58.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21099 + - uid: 20643 components: - type: Transform - pos: 28.5,-31.5 + pos: 45.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21100 + color: '#0000FFFF' + - uid: 20644 components: - type: Transform - pos: 28.5,-32.5 + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21101 + color: '#0000FFFF' + - uid: 20645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-7.5 + pos: 57.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21102 + - uid: 20646 components: - type: Transform - pos: 43.5,6.5 + rot: 3.141592653589793 rad + pos: 43.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21103 + - uid: 20647 components: - type: Transform - pos: 43.5,8.5 + rot: 3.141592653589793 rad + pos: 43.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20648 + components: + - type: Transform + pos: 45.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21104 + - uid: 20649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-18.5 + rot: 3.141592653589793 rad + pos: 56.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21105 + - uid: 20650 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-18.5 + pos: 27.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21106 + - uid: 20651 components: - type: Transform - pos: 52.5,-19.5 + rot: 3.141592653589793 rad + pos: 61.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21107 + - uid: 20652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-23.5 + rot: -1.5707963267948966 rad + pos: 59.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21108 + - uid: 20653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-23.5 + pos: 57.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21109 + color: '#FF0000FF' + - uid: 20654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-18.5 + pos: 42.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21110 + color: '#FF0000FF' + - uid: 20655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-18.5 + pos: 56.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21111 + - uid: 20656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-19.5 + pos: 57.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21112 + - uid: 20657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-19.5 + rot: 1.5707963267948966 rad + pos: 60.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21113 + color: '#0000FFFF' + - uid: 20658 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-19.5 + pos: 56.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21114 + - uid: 20659 components: - type: Transform - pos: 63.5,-15.5 + rot: 1.5707963267948966 rad + pos: 59.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21115 + - uid: 20660 components: - type: Transform - pos: 44.5,4.5 + pos: 56.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21116 + color: '#0000FFFF' + - uid: 20661 components: - type: Transform - pos: 43.5,3.5 + pos: 48.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21117 + - uid: 20662 components: - type: Transform - pos: 43.5,0.5 + pos: 56.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21118 + - uid: 20663 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,-31.5 + pos: 57.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21119 + - uid: 20664 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,-31.5 + pos: 55.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21120 + - uid: 20665 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,-31.5 + pos: 45.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21121 + color: '#FF0000FF' + - uid: 20666 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,-31.5 + pos: 45.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21122 + color: '#FF0000FF' + - uid: 20667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-30.5 + rot: 1.5707963267948966 rad + pos: 46.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21123 + - uid: 20668 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-29.5 + pos: 43.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21124 + color: '#FF0000FF' + - uid: 20669 components: - type: Transform - pos: 73.5,-32.5 + rot: 1.5707963267948966 rad + pos: 44.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21125 + - uid: 20670 components: - type: Transform - pos: 73.5,-31.5 + rot: 3.141592653589793 rad + pos: 42.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21126 + - uid: 20671 components: - type: Transform - pos: 73.5,-30.5 + rot: 3.141592653589793 rad + pos: 42.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21127 + - uid: 20672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-33.5 + pos: 56.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21128 + color: '#0000FFFF' + - uid: 20673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-33.5 + pos: 56.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21129 + color: '#0000FFFF' + - uid: 20674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-33.5 + rot: 1.5707963267948966 rad + pos: 42.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21130 + color: '#0000FFFF' + - uid: 20675 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-32.5 + pos: -47.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21131 + - uid: 20676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-33.5 + rot: 1.5707963267948966 rad + pos: 45.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21132 + color: '#FF0000FF' + - uid: 20677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-34.5 + pos: 44.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21133 + color: '#FF0000FF' + - uid: 20678 components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,-35.5 + pos: 42.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21134 + color: '#FF0000FF' + - uid: 20679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-36.5 + pos: -2.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21135 + color: '#00FFFFFF' + - uid: 20680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-37.5 + rot: 1.5707963267948966 rad + pos: 47.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21136 + color: '#FF0000FF' + - uid: 20681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-38.5 + rot: 1.5707963267948966 rad + pos: -39.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21137 + - uid: 20682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-39.5 + rot: 1.5707963267948966 rad + pos: -53.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21138 + - uid: 20683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-33.5 + pos: 26.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21139 + - uid: 20684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-33.5 + rot: 1.5707963267948966 rad + pos: -40.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21140 + color: '#0000FFFF' + - uid: 20685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-33.5 + rot: 1.5707963267948966 rad + pos: 34.5,-98.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21141 + - uid: 20686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-33.5 + rot: 1.5707963267948966 rad + pos: 35.5,-98.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21142 + - uid: 20687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-33.5 + rot: 1.5707963267948966 rad + pos: 35.5,-101.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21143 + - uid: 20688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-33.5 + rot: 1.5707963267948966 rad + pos: -43.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21144 + - uid: 20689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-33.5 + rot: 3.141592653589793 rad + pos: 35.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21145 + - uid: 20690 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,-34.5 + pos: 35.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21146 + - uid: 20691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-35.5 + pos: 27.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21147 + - uid: 20692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-37.5 + pos: 27.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21148 + - uid: 20693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-38.5 + pos: 27.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21149 + - uid: 20694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-39.5 + rot: -1.5707963267948966 rad + pos: 28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21150 + color: '#0000FFFF' + - uid: 20695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-40.5 + pos: 27.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21151 + - uid: 20696 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-41.5 + pos: 26.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21152 + - uid: 20697 components: - type: Transform rot: 1.5707963267948966 rad - pos: 83.5,-41.5 + pos: 25.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21153 + - uid: 20698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-41.5 + pos: 31.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21154 + color: '#0000FFFF' + - uid: 20699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-41.5 + pos: 31.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21155 + color: '#0000FFFF' + - uid: 20700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-41.5 + pos: 31.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21156 + color: '#0000FFFF' + - uid: 20701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-41.5 + pos: 31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21157 + color: '#0000FFFF' + - uid: 20702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-41.5 + pos: 26.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21158 + - uid: 20703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 91.5,-41.5 + pos: 31.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21159 + color: '#0000FFFF' + - uid: 20704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 92.5,-41.5 + rot: 3.141592653589793 rad + pos: -20.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21160 + - uid: 20705 components: - type: Transform rot: 1.5707963267948966 rad - pos: 93.5,-41.5 + pos: -42.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21161 + color: '#0000FFFF' + - uid: 20706 components: - type: Transform rot: 1.5707963267948966 rad - pos: 94.5,-41.5 + pos: -41.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21162 + color: '#0000FFFF' + - uid: 20707 components: - type: Transform rot: 1.5707963267948966 rad - pos: 95.5,-41.5 + pos: -39.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21163 + - uid: 20708 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,-41.5 + pos: -40.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21164 + - uid: 20709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 97.5,-41.5 + pos: -62.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21165 + color: '#0000FFFF' + - uid: 20710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 98.5,-41.5 + pos: -62.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21166 + color: '#0000FFFF' + - uid: 20711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 99.5,-41.5 + pos: -62.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21167 + color: '#0000FFFF' + - uid: 20712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 100.5,-41.5 + rot: 3.141592653589793 rad + pos: -60.5,-76.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21168 + - uid: 20713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 101.5,-41.5 + pos: 43.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21169 + - uid: 20714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 101.5,-39.5 + pos: 44.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21170 + - uid: 20715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 100.5,-39.5 + pos: 31.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21171 + - uid: 20716 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,-39.5 + pos: -54.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21172 + - uid: 20717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 98.5,-39.5 + pos: -54.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21173 + color: '#FF0000FF' + - uid: 20718 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,-39.5 + pos: 34.5,-95.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21174 + - uid: 20719 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,-39.5 + pos: 33.5,-98.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21175 + - uid: 20720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 95.5,-39.5 + rot: -1.5707963267948966 rad + pos: 49.5,-97.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21176 + - uid: 20721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,-39.5 + pos: 45.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21177 + color: '#FF0000FF' + - uid: 20722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-39.5 + pos: 45.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21178 + color: '#FF0000FF' + - uid: 20723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 92.5,-39.5 + pos: 45.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21179 + color: '#FF0000FF' + - uid: 20724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 91.5,-39.5 + pos: 45.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21180 + color: '#FF0000FF' + - uid: 20725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-39.5 + pos: 45.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21181 + color: '#FF0000FF' + - uid: 20726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-39.5 + pos: 45.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21182 + color: '#FF0000FF' + - uid: 20727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-39.5 + pos: 45.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21183 + color: '#FF0000FF' + - uid: 20728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-39.5 + rot: -1.5707963267948966 rad + pos: 49.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21184 + color: '#FF0000FF' + - uid: 20729 components: - type: Transform rot: 1.5707963267948966 rad - pos: 85.5,-39.5 + pos: 49.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21185 + - uid: 20730 components: - type: Transform rot: 1.5707963267948966 rad - pos: 84.5,-39.5 + pos: 44.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21186 + color: '#FF0000FF' + - uid: 20731 components: - type: Transform - pos: 83.5,-38.5 + rot: -1.5707963267948966 rad + pos: 45.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21187 + - uid: 20732 components: - type: Transform - pos: 83.5,-37.5 + rot: -1.5707963267948966 rad + pos: 24.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21188 + - uid: 20733 components: - type: Transform - pos: 83.5,-36.5 + pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21189 + color: '#FF0000FF' + - uid: 20734 components: - type: Transform - pos: 83.5,-35.5 + rot: -1.5707963267948966 rad + pos: 30.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21190 + - uid: 20735 components: - type: Transform - pos: 83.5,-34.5 + pos: 31.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21191 + - uid: 20736 components: - type: Transform - pos: 83.5,-33.5 + rot: -1.5707963267948966 rad + pos: 25.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21192 + - uid: 20737 components: - type: Transform - pos: 83.5,-32.5 + pos: 31.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21193 + - uid: 20738 components: - type: Transform - pos: 83.5,-30.5 + pos: 31.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21194 + - uid: 20739 components: - type: Transform - pos: 83.5,-29.5 + pos: -54.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21195 + color: '#FF0000FF' + - uid: 20740 components: - type: Transform - pos: 83.5,-27.5 + rot: 1.5707963267948966 rad + pos: 47.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21196 + - uid: 20741 components: - type: Transform - pos: 83.5,-26.5 + pos: -54.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21197 + color: '#FF0000FF' + - uid: 20742 components: - type: Transform - pos: 83.5,-25.5 + pos: 37.5,-104.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21198 + - uid: 20743 components: - type: Transform - pos: 83.5,-24.5 + rot: 3.141592653589793 rad + pos: 36.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21199 + color: '#17E8E2FF' + - uid: 20744 components: - type: Transform - pos: 83.5,-23.5 + pos: 43.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21200 + color: '#FF0000FF' + - uid: 20745 components: - type: Transform - pos: 83.5,-22.5 + pos: 43.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21201 + color: '#FF0000FF' + - uid: 20746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-21.5 + rot: 1.5707963267948966 rad + pos: 58.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21202 + color: '#FEF101FF' + - uid: 20747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-21.5 + rot: 1.5707963267948966 rad + pos: -41.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21203 + color: '#FF0000FF' + - uid: 20748 components: - type: Transform rot: -1.5707963267948966 rad - pos: 87.5,-21.5 + pos: 38.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21204 + color: '#FF1212FF' + - uid: 20749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-21.5 + pos: -17.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21205 + color: '#00FFFFFF' + - uid: 20750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-21.5 + rot: 1.5707963267948966 rad + pos: -36.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21206 + - uid: 20751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-21.5 + pos: 65.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21207 + - uid: 20752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-21.5 + pos: 31.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21208 + - uid: 20753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 92.5,-21.5 + pos: 65.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21209 + - uid: 20754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-21.5 + pos: 64.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21210 + color: '#FF0000FF' + - uid: 20755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-21.5 + pos: 65.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21211 + - uid: 20756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-21.5 + pos: 65.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21212 + - uid: 20757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-21.5 + pos: 65.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21213 + - uid: 20758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-21.5 + pos: 65.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21214 + - uid: 20759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-21.5 + rot: 1.5707963267948966 rad + pos: -56.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21215 + - uid: 20760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-21.5 + rot: 1.5707963267948966 rad + pos: -54.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21216 + - uid: 20761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-21.5 + rot: 1.5707963267948966 rad + pos: -54.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21217 + - uid: 20762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-21.5 + rot: 1.5707963267948966 rad + pos: -56.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21218 + - uid: 20763 components: - type: Transform rot: -1.5707963267948966 rad - pos: 82.5,-23.5 + pos: 10.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21219 + - uid: 20764 components: - type: Transform rot: -1.5707963267948966 rad - pos: 83.5,-23.5 + pos: 9.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21220 + - uid: 20765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-23.5 + pos: -27.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21221 + color: '#0000FFFF' + - uid: 20766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-23.5 + pos: -27.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21222 + color: '#0000FFFF' + - uid: 20767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,-23.5 + rot: 3.141592653589793 rad + pos: 28.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21223 + color: '#0000FFFF' + - uid: 20768 components: - type: Transform rot: -1.5707963267948966 rad - pos: 87.5,-23.5 + pos: -26.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21224 + color: '#0000FFFF' + - uid: 20769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-23.5 + rot: 3.141592653589793 rad + pos: 28.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21225 + color: '#0000FFFF' + - uid: 20770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-23.5 + rot: 3.141592653589793 rad + pos: 40.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21226 + - uid: 20771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-23.5 + rot: 3.141592653589793 rad + pos: 40.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21227 + - uid: 20772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 92.5,-23.5 + rot: 3.141592653589793 rad + pos: 42.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21228 + - uid: 20773 components: - type: Transform rot: -1.5707963267948966 rad - pos: 93.5,-23.5 + pos: 39.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21229 + - uid: 20774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 94.5,-23.5 + pos: 38.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21230 + - uid: 20775 components: - type: Transform rot: -1.5707963267948966 rad - pos: 95.5,-23.5 + pos: 37.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21231 + - uid: 20776 components: - type: Transform rot: -1.5707963267948966 rad - pos: 96.5,-23.5 + pos: 36.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21232 + - uid: 20777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-23.5 + rot: 1.5707963267948966 rad + pos: 41.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21233 + - uid: 20778 components: - type: Transform rot: -1.5707963267948966 rad - pos: 98.5,-23.5 + pos: 38.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21234 + - uid: 20779 components: - type: Transform rot: -1.5707963267948966 rad - pos: 99.5,-23.5 + pos: 37.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21235 + - uid: 20780 components: - type: Transform rot: -1.5707963267948966 rad - pos: 100.5,-23.5 + pos: 36.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21236 + - uid: 20781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-23.5 + rot: 1.5707963267948966 rad + pos: 33.5,-86.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21237 + - uid: 20782 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-32.5 + rot: 1.5707963267948966 rad + pos: 34.5,-86.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21238 + - uid: 20783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-31.5 + rot: 1.5707963267948966 rad + pos: 35.5,-86.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21239 + - uid: 20784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-30.5 + rot: 1.5707963267948966 rad + pos: 33.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21240 + - uid: 20785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-29.5 + rot: 1.5707963267948966 rad + pos: 34.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21241 + - uid: 20786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-28.5 + rot: 1.5707963267948966 rad + pos: 35.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21242 + - uid: 20787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-27.5 + rot: 1.5707963267948966 rad + pos: 33.5,-92.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21243 + - uid: 20788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-26.5 + rot: 1.5707963267948966 rad + pos: 34.5,-92.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21244 + - uid: 20789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-25.5 + rot: 1.5707963267948966 rad + pos: 35.5,-92.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21245 + - uid: 20790 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,-24.5 + pos: 38.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21246 + color: '#947507FF' + - uid: 20791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-31.5 + rot: 3.141592653589793 rad + pos: 37.5,-106.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21247 + - uid: 20792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-31.5 + rot: 1.5707963267948966 rad + pos: 38.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21248 + - uid: 20793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-31.5 + rot: 1.5707963267948966 rad + pos: 33.5,-101.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21249 + - uid: 20794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-31.5 + rot: 1.5707963267948966 rad + pos: 34.5,-101.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21250 + - uid: 20795 components: - type: Transform - pos: 86.5,-40.5 + rot: 1.5707963267948966 rad + pos: 33.5,-95.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21251 + - uid: 20796 components: - type: Transform - pos: 86.5,-41.5 + rot: 1.5707963267948966 rad + pos: 35.5,-95.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21252 + - uid: 20797 components: - type: Transform rot: 3.141592653589793 rad - pos: 88.5,-22.5 + pos: 46.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21253 + color: '#0000FFFF' + - uid: 20798 components: - type: Transform rot: 3.141592653589793 rad - pos: 88.5,-21.5 + pos: 36.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21254 + color: '#17E8E2FF' + - uid: 20799 components: - type: Transform - pos: 28.5,-28.5 + pos: 35.5,-102.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21255 + color: '#17E8E2FF' + - uid: 20800 components: - type: Transform - pos: 28.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21256 - components: - - type: Transform - pos: 28.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21257 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21258 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21259 - components: - - type: Transform - pos: 30.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21260 - components: - - type: Transform - pos: 30.5,-29.5 + rot: 3.141592653589793 rad + pos: 46.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21261 + - uid: 20801 components: - type: Transform - pos: 30.5,-28.5 + rot: 3.141592653589793 rad + pos: 46.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21262 + - uid: 20802 components: - type: Transform - pos: 30.5,-27.5 + rot: 3.141592653589793 rad + pos: 46.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21263 + - uid: 20803 components: - type: Transform - pos: 30.5,-26.5 + rot: 3.141592653589793 rad + pos: 46.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21264 + - uid: 20804 components: - type: Transform - pos: 30.5,-25.5 + rot: 3.141592653589793 rad + pos: 46.5,-95.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21265 + - uid: 20805 components: - type: Transform - pos: 30.5,-24.5 + rot: 3.141592653589793 rad + pos: 46.5,-96.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21266 + - uid: 20806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-31.5 + rot: 3.141592653589793 rad + pos: 46.5,-98.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21267 + - uid: 20807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-31.5 + rot: 3.141592653589793 rad + pos: 46.5,-99.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21268 + - uid: 20808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-31.5 + rot: 3.141592653589793 rad + pos: 46.5,-100.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21269 + - uid: 20809 components: - type: Transform - pos: 26.5,-32.5 + rot: 3.141592653589793 rad + pos: 46.5,-101.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21270 + - uid: 20810 components: - type: Transform - pos: 26.5,-33.5 + rot: 3.141592653589793 rad + pos: 46.5,-102.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21271 + - uid: 20811 components: - type: Transform - pos: 26.5,-34.5 + rot: 1.5707963267948966 rad + pos: 45.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21272 - components: - - type: Transform - pos: 27.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21273 + - uid: 20812 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-31.5 + pos: 44.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21274 + - uid: 20813 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-31.5 + pos: 43.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21275 + - uid: 20814 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-31.5 + pos: 42.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21276 + - uid: 20815 components: - type: Transform - pos: 31.5,-32.5 + rot: 1.5707963267948966 rad + pos: 41.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21277 + - uid: 20816 components: - type: Transform - pos: 31.5,-33.5 + rot: 1.5707963267948966 rad + pos: 40.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21278 + - uid: 20817 components: - type: Transform - pos: 31.5,-34.5 + rot: -1.5707963267948966 rad + pos: 35.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21279 + color: '#FF0000FF' + - uid: 20818 components: - type: Transform - pos: 31.5,-35.5 + rot: 3.141592653589793 rad + pos: 46.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21280 + - uid: 20819 components: - type: Transform - pos: 31.5,-37.5 + rot: 3.141592653589793 rad + pos: 46.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21281 + - uid: 20820 components: - type: Transform - pos: 31.5,-38.5 + rot: 3.141592653589793 rad + pos: 46.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21282 + - uid: 20821 components: - type: Transform - pos: 31.5,-39.5 + pos: 35.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21283 + color: '#17E8E2FF' + - uid: 20822 components: - type: Transform - pos: 31.5,-40.5 + rot: 3.141592653589793 rad + pos: 37.5,-105.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21284 + - uid: 20823 components: - type: Transform - pos: 31.5,-41.5 + rot: 3.141592653589793 rad + pos: 46.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21285 - components: - - type: Transform - pos: 33.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21286 + - uid: 20824 components: - type: Transform - pos: 33.5,-35.5 + rot: 1.5707963267948966 rad + pos: 44.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21287 + - uid: 20825 components: - type: Transform - pos: 33.5,-36.5 + rot: 1.5707963267948966 rad + pos: 37.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21288 + - uid: 20826 components: - type: Transform - pos: 33.5,-37.5 + rot: -1.5707963267948966 rad + pos: 42.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21289 + - uid: 20827 components: - type: Transform - pos: 33.5,-39.5 + rot: -1.5707963267948966 rad + pos: 40.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21290 + - uid: 20828 components: - type: Transform - pos: 33.5,-40.5 + rot: 3.141592653589793 rad + pos: 36.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21291 + color: '#17E8E2FF' + - uid: 20829 components: - type: Transform - pos: 33.5,-41.5 + rot: 3.141592653589793 rad + pos: 36.5,-105.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21292 + color: '#17E8E2FF' + - uid: 20830 components: - type: Transform - pos: 33.5,-42.5 + pos: 52.5,-97.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21293 + - uid: 20831 components: - type: Transform - pos: 28.5,-23.5 + rot: 3.141592653589793 rad + pos: 41.5,-107.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21294 + - uid: 20832 components: - type: Transform - pos: 28.5,-22.5 + rot: 3.141592653589793 rad + pos: 41.5,-106.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21295 + - uid: 20833 components: - type: Transform - pos: 30.5,-20.5 + rot: 3.141592653589793 rad + pos: 41.5,-105.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21296 + - uid: 20834 components: - type: Transform - pos: 30.5,-21.5 + rot: 3.141592653589793 rad + pos: 41.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21297 + - uid: 20835 components: - type: Transform - pos: 30.5,-22.5 + pos: 43.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21298 + color: '#A505FAFF' + - uid: 20836 components: - type: Transform - pos: 30.5,-23.5 + pos: 43.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21299 + color: '#A505FAFF' + - uid: 20837 components: - type: Transform - pos: 28.5,-20.5 + pos: 43.5,-105.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21300 + color: '#A505FAFF' + - uid: 20838 components: - type: Transform - pos: 28.5,-19.5 + pos: 43.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21301 + color: '#A505FAFF' + - uid: 20839 components: - type: Transform - pos: 30.5,-18.5 + rot: 3.141592653589793 rad + pos: 55.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21302 + color: '#FEF101FF' + - uid: 20840 components: - type: Transform - pos: 30.5,-17.5 + rot: -1.5707963267948966 rad + pos: 56.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21303 + color: '#FEF101FF' + - uid: 20841 components: - type: Transform - pos: 30.5,-16.5 + pos: 52.5,-96.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21304 + - uid: 20842 components: - type: Transform - pos: 30.5,-15.5 + rot: -1.5707963267948966 rad + pos: -48.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21305 + color: '#00FF00FF' + - uid: 20843 components: - type: Transform - pos: 28.5,-14.5 + pos: 64.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21306 + - uid: 20844 components: - type: Transform - pos: 28.5,-15.5 + pos: 64.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21307 + - uid: 20845 components: - type: Transform - pos: 28.5,-16.5 + pos: 64.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21308 + - uid: 20846 components: - type: Transform - pos: 28.5,-17.5 + pos: 64.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21309 + - uid: 20847 components: - type: Transform - pos: 28.5,-18.5 + pos: 45.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21310 + - uid: 20848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-13.5 + rot: -1.5707963267948966 rad + pos: 46.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21311 + - uid: 20849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-13.5 + rot: -1.5707963267948966 rad + pos: 47.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21313 + - uid: 20850 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-10.5 + pos: 48.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21317 + color: '#FF0000FF' + - uid: 20851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-11.5 + rot: -1.5707963267948966 rad + pos: 49.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21318 + color: '#FF0000FF' + - uid: 20852 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-1.5 + pos: 50.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21319 + - uid: 20853 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-2.5 + pos: 51.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21320 + - uid: 20854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-9.5 + rot: -1.5707963267948966 rad + pos: 52.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21321 + - uid: 20855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-11.5 + rot: -1.5707963267948966 rad + pos: 53.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21322 + - uid: 20856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-12.5 + rot: -1.5707963267948966 rad + pos: 54.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21323 + - uid: 20857 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-8.5 + pos: 46.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21324 + - uid: 20858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 + pos: 46.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21325 + - uid: 20859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-5.5 + rot: -1.5707963267948966 rad + pos: 47.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21326 + - uid: 20860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-3.5 + rot: -1.5707963267948966 rad + pos: 48.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21327 + - uid: 20861 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-2.5 + pos: 49.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21328 + - uid: 20862 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,14.5 + pos: 50.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21329 + - uid: 20863 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,14.5 + pos: 51.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21330 + - uid: 20864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-2.5 + rot: 3.141592653589793 rad + pos: 46.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21331 + - uid: 20865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-2.5 + rot: 3.141592653589793 rad + pos: 46.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21332 + - uid: 20866 components: - type: Transform - pos: 26.5,-5.5 + rot: 3.141592653589793 rad + pos: 45.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21333 + - uid: 20867 components: - type: Transform - pos: 26.5,-4.5 + rot: 3.141592653589793 rad + pos: 45.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21334 + - uid: 20868 components: - type: Transform - pos: 26.5,-3.5 + rot: 3.141592653589793 rad + pos: 45.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21335 + - uid: 20869 components: - type: Transform - pos: 26.5,-2.5 + rot: 3.141592653589793 rad + pos: 45.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21336 + - uid: 20870 components: - type: Transform - pos: 26.5,-1.5 + rot: 3.141592653589793 rad + pos: 45.5,-78.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21337 + - uid: 20871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-0.5 + rot: 1.5707963267948966 rad + pos: 46.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21338 + color: '#FF0000FF' + - uid: 20872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-1.5 + rot: 1.5707963267948966 rad + pos: 47.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21339 + color: '#FF0000FF' + - uid: 20873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 + pos: 48.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21340 + - uid: 20874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-0.5 + pos: 48.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21341 + - uid: 20875 components: - type: Transform - pos: 15.5,0.5 + rot: -1.5707963267948966 rad + pos: 47.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21342 + color: '#0000FFFF' + - uid: 20876 components: - type: Transform - pos: 15.5,1.5 + rot: -1.5707963267948966 rad + pos: 48.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21343 + color: '#0000FFFF' + - uid: 20877 components: - type: Transform - pos: 15.5,2.5 + rot: -1.5707963267948966 rad + pos: 49.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21344 + color: '#0000FFFF' + - uid: 20878 components: - type: Transform - pos: 15.5,3.5 + rot: 3.141592653589793 rad + pos: 50.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21345 + color: '#0000FFFF' + - uid: 20879 components: - type: Transform - pos: 15.5,4.5 + rot: 3.141592653589793 rad + pos: 50.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21346 + color: '#0000FFFF' + - uid: 20880 components: - type: Transform - pos: 15.5,5.5 + rot: 3.141592653589793 rad + pos: 50.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21347 + color: '#0000FFFF' + - uid: 20881 components: - type: Transform - pos: 17.5,2.5 + rot: 3.141592653589793 rad + pos: 50.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21348 + - uid: 20882 components: - type: Transform - pos: 17.5,3.5 + pos: 48.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21349 + color: '#FF0000FF' + - uid: 20883 components: - type: Transform - pos: 17.5,5.5 + pos: 48.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21350 + color: '#FF0000FF' + - uid: 20884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,1.5 + pos: 50.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21351 + - uid: 20885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,1.5 + pos: 50.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21352 + - uid: 20886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,1.5 + pos: 50.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21353 + - uid: 20887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 + pos: 50.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21354 + color: '#0000FFFF' + - uid: 20888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 + pos: 48.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21355 + - uid: 20889 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,0.5 + pos: 48.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21356 + - uid: 20890 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,1.5 + pos: 48.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21357 + - uid: 20891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,2.5 + rot: -1.5707963267948966 rad + pos: 47.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21358 + - uid: 20892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,3.5 + rot: -1.5707963267948966 rad + pos: 46.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21359 + color: '#FF0000FF' + - uid: 20893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,4.5 + rot: -1.5707963267948966 rad + pos: 45.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21360 + color: '#FF0000FF' + - uid: 20894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 + rot: -1.5707963267948966 rad + pos: 49.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21361 + color: '#FF0000FF' + - uid: 20895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,4.5 + pos: 49.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21362 + - uid: 20896 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,4.5 + pos: 48.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21363 + - uid: 20897 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,4.5 + pos: 47.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21364 + - uid: 20898 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,4.5 + pos: 46.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21365 + - uid: 20899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,4.5 + pos: 52.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21366 + - uid: 20900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 + pos: 53.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21367 + - uid: 20901 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,3.5 + pos: 51.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21368 + - uid: 20902 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,3.5 + pos: 52.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21369 + - uid: 20903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,3.5 + pos: 53.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21370 + - uid: 20904 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,3.5 + pos: 54.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21371 + - uid: 20905 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,3.5 + pos: 55.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21372 + - uid: 20906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,3.5 + pos: 56.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21373 + - uid: 20907 components: - type: Transform - pos: 7.5,2.5 + pos: 56.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21374 + - uid: 20908 components: - type: Transform - pos: 7.5,1.5 + rot: 3.141592653589793 rad + pos: 50.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21375 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21376 - components: - - type: Transform - pos: 8.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21377 + - uid: 20909 components: - type: Transform - pos: 8.5,1.5 + rot: 3.141592653589793 rad + pos: 50.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21378 + color: '#FF0000FF' + - uid: 20910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,3.5 + rot: 3.141592653589793 rad + pos: 50.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21379 + - uid: 20911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 + rot: 3.141592653589793 rad + pos: 50.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21380 + - uid: 20912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 + rot: 3.141592653589793 rad + pos: 50.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21381 + - uid: 20913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 + rot: 3.141592653589793 rad + pos: 50.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21382 + - uid: 20914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 + rot: 3.141592653589793 rad + pos: 50.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21383 + color: '#FF0000FF' + - uid: 20915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,4.5 + rot: 3.141592653589793 rad + pos: 50.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21384 + color: '#FF0000FF' + - uid: 20916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 + rot: 3.141592653589793 rad + pos: 51.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21385 + - uid: 20917 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,4.5 + pos: 51.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21386 + color: '#0000FFFF' + - uid: 20918 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,5.5 + pos: 51.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21387 + color: '#0000FFFF' + - uid: 20919 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,6.5 + pos: 51.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21388 + color: '#0000FFFF' + - uid: 20920 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,7.5 + pos: 51.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21389 + color: '#0000FFFF' + - uid: 20921 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,8.5 + pos: 51.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21390 + color: '#0000FFFF' + - uid: 20922 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,5.5 + pos: 51.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21391 + - uid: 20923 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,6.5 + pos: 51.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21392 + - uid: 20924 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,7.5 + pos: 51.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21393 + - uid: 20925 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,3.5 + pos: 51.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21394 + - uid: 20926 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,2.5 + pos: 50.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21395 + color: '#FF0000FF' + - uid: 20927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,2.5 + pos: 50.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21396 + - uid: 20928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,8.5 + rot: 1.5707963267948966 rad + pos: 51.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21397 + color: '#FF0000FF' + - uid: 20929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,8.5 + rot: 1.5707963267948966 rad + pos: 52.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21398 + color: '#FF0000FF' + - uid: 20930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,9.5 + rot: 1.5707963267948966 rad + pos: 53.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21399 + - uid: 20931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,9.5 + rot: 1.5707963267948966 rad + pos: 54.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21400 + - uid: 20932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 + rot: 1.5707963267948966 rad + pos: 55.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21401 + - uid: 20933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,9.5 + rot: 1.5707963267948966 rad + pos: 56.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21402 + - uid: 20934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,10.5 + rot: 1.5707963267948966 rad + pos: 57.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21403 + - uid: 20935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,7.5 + rot: 1.5707963267948966 rad + pos: 58.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21404 + color: '#FF0000FF' + - uid: 20936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 + rot: 1.5707963267948966 rad + pos: 60.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21405 + color: '#FF0000FF' + - uid: 20937 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,3.5 + pos: 61.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21406 + - uid: 20938 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,4.5 + pos: 52.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21407 + - uid: 20939 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,4.5 + pos: 53.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21408 + - uid: 20940 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,4.5 + pos: 54.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21409 + - uid: 20941 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,4.5 + pos: 55.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21410 + - uid: 20942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,4.5 + rot: 1.5707963267948966 rad + pos: 56.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21411 + color: '#0000FFFF' + - uid: 20943 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,5.5 + rot: 1.5707963267948966 rad + pos: 57.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21412 + color: '#0000FFFF' + - uid: 20944 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,6.5 + rot: 1.5707963267948966 rad + pos: 58.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21413 + color: '#0000FFFF' + - uid: 20945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,7.5 + rot: 1.5707963267948966 rad + pos: 59.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21414 + color: '#0000FFFF' + - uid: 20946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,5.5 + rot: 1.5707963267948966 rad + pos: 60.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21415 + - uid: 20947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,6.5 + rot: 1.5707963267948966 rad + pos: 61.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21416 + - uid: 20948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,7.5 + rot: 1.5707963267948966 rad + pos: 50.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21417 + - uid: 20949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,8.5 + rot: 1.5707963267948966 rad + pos: 49.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21418 + - uid: 20950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,9.5 + rot: 1.5707963267948966 rad + pos: 48.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21419 + - uid: 20951 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,3.5 + pos: 47.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21420 + color: '#0000FFFF' + - uid: 20952 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,3.5 + pos: 46.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21421 + color: '#0000FFFF' + - uid: 20953 components: - type: Transform - pos: -4.5,2.5 + pos: 45.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21422 + color: '#0000FFFF' + - uid: 20954 components: - type: Transform - pos: -4.5,1.5 + pos: 45.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21423 + color: '#0000FFFF' + - uid: 20955 components: - type: Transform - pos: -5.5,3.5 + pos: 45.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21424 + - uid: 20956 components: - type: Transform - pos: -5.5,2.5 + pos: 45.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21425 + - uid: 20957 components: - type: Transform - pos: -5.5,1.5 + pos: 45.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21426 + - uid: 20958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,0.5 + pos: 45.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21427 + - uid: 20959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,0.5 + pos: 45.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21428 + - uid: 20960 components: - type: Transform - pos: -0.5,11.5 + pos: 45.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21429 + color: '#0000FFFF' + - uid: 20961 components: - type: Transform - pos: -0.5,12.5 + pos: 45.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21430 + color: '#0000FFFF' + - uid: 20962 components: - type: Transform - pos: -0.5,13.5 + pos: 45.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21431 + color: '#0000FFFF' + - uid: 20963 components: - type: Transform - pos: -0.5,15.5 + pos: 45.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21432 + color: '#0000FFFF' + - uid: 20964 components: - type: Transform - pos: -0.5,16.5 + pos: 45.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21433 + color: '#0000FFFF' + - uid: 20965 components: - type: Transform - pos: -0.5,17.5 + pos: 45.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21434 - components: + color: '#0000FFFF' + - uid: 20966 + components: - type: Transform - pos: 1.5,10.5 + pos: 45.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21435 + - uid: 20967 components: - type: Transform - pos: 1.5,11.5 + pos: 43.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21436 + color: '#FF0000FF' + - uid: 20968 components: - type: Transform - pos: 1.5,13.5 + pos: 43.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21437 + color: '#FF0000FF' + - uid: 20969 components: - type: Transform - pos: 1.5,14.5 + pos: 43.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21438 + color: '#FF0000FF' + - uid: 20970 components: - type: Transform - pos: 1.5,15.5 + pos: 43.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21439 + color: '#FF0000FF' + - uid: 20971 components: - type: Transform - pos: 1.5,17.5 + pos: 43.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21440 + color: '#FF0000FF' + - uid: 20972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,16.5 + pos: 43.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21441 + color: '#FF0000FF' + - uid: 20973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,16.5 + pos: 43.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21442 + color: '#FF0000FF' + - uid: 20974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,14.5 + pos: 43.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21443 + - uid: 20975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,14.5 + pos: 43.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21444 + - uid: 20976 + components: + - type: Transform + pos: 43.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20977 + components: + - type: Transform + pos: 43.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20978 + components: + - type: Transform + pos: 43.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20979 + components: + - type: Transform + pos: 43.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20980 + components: + - type: Transform + pos: 43.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20981 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,14.5 + pos: 44.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21445 + - uid: 20982 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,14.5 + pos: 45.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21446 + - uid: 20983 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,14.5 + pos: 46.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21447 + - uid: 20984 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,14.5 + pos: 47.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21448 + - uid: 20985 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,14.5 + pos: 48.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21449 + - uid: 20986 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,16.5 + pos: 49.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21450 + - uid: 20988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,16.5 + rot: -1.5707963267948966 rad + pos: 47.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21451 + - uid: 20989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,16.5 + rot: -1.5707963267948966 rad + pos: 48.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21452 + - uid: 20990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,16.5 + rot: 3.141592653589793 rad + pos: 45.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21453 + - uid: 20991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,16.5 + rot: 3.141592653589793 rad + pos: 45.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21454 + - uid: 20992 components: - type: Transform - pos: 1.5,18.5 + rot: 3.141592653589793 rad + pos: 45.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21455 + - uid: 20993 components: - type: Transform - pos: 1.5,19.5 + rot: 3.141592653589793 rad + pos: 45.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21456 + - uid: 20994 components: - type: Transform - pos: 1.5,20.5 + rot: 3.141592653589793 rad + pos: 45.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21457 + - uid: 20995 components: - type: Transform - pos: -0.5,18.5 + rot: 3.141592653589793 rad + pos: 45.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21458 + color: '#0000FFFF' + - uid: 20996 components: - type: Transform - pos: -0.5,19.5 + rot: 3.141592653589793 rad + pos: 45.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21459 + color: '#0000FFFF' + - uid: 20997 components: - type: Transform - pos: -0.5,20.5 + rot: 3.141592653589793 rad + pos: 43.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21460 + - uid: 20998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,21.5 + rot: 3.141592653589793 rad + pos: 43.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21461 + color: '#FF0000FF' + - uid: 20999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,21.5 + rot: 3.141592653589793 rad + pos: 43.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21462 + color: '#FF0000FF' + - uid: 21000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,21.5 + rot: 3.141592653589793 rad + pos: 43.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21463 + color: '#FF0000FF' + - uid: 21001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,21.5 + rot: 3.141592653589793 rad + pos: 43.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21464 + color: '#FF0000FF' + - uid: 21002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,21.5 + rot: 3.141592653589793 rad + pos: 43.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21465 + color: '#FF0000FF' + - uid: 21003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,21.5 + rot: 3.141592653589793 rad + pos: 43.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21466 + color: '#FF0000FF' + - uid: 21004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,21.5 + rot: 3.141592653589793 rad + pos: 43.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21467 + color: '#FF0000FF' + - uid: 21005 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,21.5 + pos: 44.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21468 + color: '#FF0000FF' + - uid: 21006 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,21.5 + pos: 45.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21469 + color: '#FF0000FF' + - uid: 21007 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,21.5 + pos: 46.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21470 + color: '#FF0000FF' + - uid: 21008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,21.5 + rot: -1.5707963267948966 rad + pos: 47.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21471 + - uid: 21009 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,22.5 + pos: 48.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21472 + - uid: 21010 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,22.5 + pos: 49.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21473 + - uid: 21011 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,22.5 + pos: 51.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21474 + - uid: 21012 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,22.5 + pos: 52.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21475 + - uid: 21013 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,22.5 + pos: 42.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21476 + - uid: 21014 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,22.5 + pos: 41.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21477 + - uid: 21015 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,22.5 + pos: 40.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21478 + - uid: 21016 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,22.5 + pos: 38.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21479 + - uid: 21017 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,22.5 + pos: 37.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21480 + - uid: 21018 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,22.5 + pos: 36.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21481 + - uid: 21019 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,22.5 + pos: 35.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21482 + - uid: 21020 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,21.5 + pos: 43.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21483 + - uid: 21021 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,20.5 + pos: 43.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21484 + - uid: 21022 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,18.5 + pos: 43.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21485 + - uid: 21023 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,17.5 + pos: 43.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21486 + - uid: 21024 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,16.5 + pos: 43.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21487 + - uid: 21025 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,15.5 + pos: 43.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21488 + - uid: 21026 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,19.5 + pos: 45.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21489 + - uid: 21027 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,18.5 + pos: 45.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21490 + - uid: 21028 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,17.5 + pos: 45.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21491 + - uid: 21029 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,16.5 + pos: 45.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21492 + - uid: 21030 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,15.5 + pos: 45.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21493 + - uid: 21031 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,14.5 + pos: 45.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21494 + - uid: 21032 components: - type: Transform - pos: 31.5,-44.5 + rot: 3.141592653589793 rad + pos: 45.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21495 + - uid: 21033 components: - type: Transform - pos: 31.5,-45.5 + rot: 1.5707963267948966 rad + pos: 46.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21496 + - uid: 21034 components: - type: Transform - pos: 31.5,-46.5 + rot: 1.5707963267948966 rad + pos: 47.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21497 + - uid: 21035 components: - type: Transform - pos: 31.5,-47.5 + rot: 1.5707963267948966 rad + pos: 48.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21498 + - uid: 21036 components: - type: Transform - pos: 31.5,-48.5 + rot: 1.5707963267948966 rad + pos: 49.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21499 + - uid: 21037 components: - type: Transform - pos: 31.5,-49.5 + rot: 1.5707963267948966 rad + pos: 50.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21500 + - uid: 21038 components: - type: Transform - pos: 31.5,-50.5 + rot: 1.5707963267948966 rad + pos: 51.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21501 + - uid: 21039 components: - type: Transform - pos: 33.5,-43.5 + rot: 1.5707963267948966 rad + pos: 52.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21502 + color: '#0000FFFF' + - uid: 21040 components: - type: Transform - pos: 33.5,-44.5 + rot: 1.5707963267948966 rad + pos: 53.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21503 + color: '#0000FFFF' + - uid: 21041 components: - type: Transform - pos: 33.5,-45.5 + rot: 1.5707963267948966 rad + pos: 54.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21504 + color: '#0000FFFF' + - uid: 21042 components: - type: Transform - pos: 33.5,-46.5 + rot: 1.5707963267948966 rad + pos: 55.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21505 + color: '#0000FFFF' + - uid: 21043 components: - type: Transform - pos: 33.5,-47.5 + rot: 1.5707963267948966 rad + pos: 44.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21506 + color: '#0000FFFF' + - uid: 21044 components: - type: Transform - pos: 33.5,-49.5 + rot: 1.5707963267948966 rad + pos: 43.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21507 + color: '#0000FFFF' + - uid: 21045 components: - type: Transform - pos: 33.5,-50.5 + rot: 1.5707963267948966 rad + pos: 41.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21508 + color: '#0000FFFF' + - uid: 21046 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-53.5 + pos: 40.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21509 + - uid: 21047 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-53.5 + pos: 39.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21510 + - uid: 21048 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-55.5 + pos: 38.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21511 + - uid: 21052 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-55.5 + pos: 54.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21512 + - uid: 21053 components: - type: Transform - pos: 33.5,-54.5 + rot: 1.5707963267948966 rad + pos: 55.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21513 + - uid: 21054 components: - type: Transform - pos: 33.5,-53.5 + rot: 1.5707963267948966 rad + pos: 56.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21514 + - uid: 21055 components: - type: Transform - pos: 33.5,-52.5 + rot: 1.5707963267948966 rad + pos: 57.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21515 + - uid: 21056 components: - type: Transform - pos: 33.5,-51.5 + rot: 1.5707963267948966 rad + pos: 58.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21516 + - uid: 21057 components: - type: Transform - pos: 31.5,-52.5 + rot: 1.5707963267948966 rad + pos: 59.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21517 + color: '#FF0000FF' + - uid: 21058 components: - type: Transform - pos: 31.5,-51.5 + rot: 1.5707963267948966 rad + pos: 60.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21518 + color: '#FF0000FF' + - uid: 21059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-60.5 + rot: 1.5707963267948966 rad + pos: 61.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21519 + - uid: 21060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-59.5 + rot: 1.5707963267948966 rad + pos: 62.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21520 + - uid: 21061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-58.5 + rot: 1.5707963267948966 rad + pos: 63.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21521 + - uid: 21062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-57.5 + rot: 1.5707963267948966 rad + pos: 65.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21522 + - uid: 21063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-56.5 + rot: 1.5707963267948966 rad + pos: 66.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21523 + - uid: 21064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-58.5 + rot: 1.5707963267948966 rad + pos: 67.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21524 + - uid: 21067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-57.5 + rot: 1.5707963267948966 rad + pos: 58.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21525 + - uid: 21068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-56.5 + rot: 1.5707963267948966 rad + pos: 59.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21526 + - uid: 21069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-55.5 + rot: 1.5707963267948966 rad + pos: 60.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21527 + - uid: 21070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-54.5 + rot: 1.5707963267948966 rad + pos: 61.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21528 + - uid: 21071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-60.5 + rot: 1.5707963267948966 rad + pos: 62.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21529 + - uid: 21072 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-61.5 + rot: 1.5707963267948966 rad + pos: 63.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21530 + - uid: 21073 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-63.5 + rot: 1.5707963267948966 rad + pos: 64.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21531 + - uid: 21074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-64.5 + rot: 1.5707963267948966 rad + pos: 66.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21532 + - uid: 21075 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-65.5 + rot: 1.5707963267948966 rad + pos: 67.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21533 + - uid: 21076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-66.5 + rot: 1.5707963267948966 rad + pos: 69.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21534 + - uid: 21077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21079 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-62.5 + pos: 64.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21535 + - uid: 21080 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-63.5 + pos: 64.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21536 + - uid: 21081 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-64.5 + pos: 64.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21537 + - uid: 21082 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-65.5 + pos: 64.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21538 + - uid: 21083 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-66.5 + pos: 64.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21539 + - uid: 21084 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-67.5 + pos: 68.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21540 + color: '#0000FFFF' + - uid: 21085 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-68.5 + pos: 68.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21541 + color: '#0000FFFF' + - uid: 21086 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-72.5 + pos: 68.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21542 + - uid: 21088 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-70.5 + pos: 42.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21543 + color: '#FF0000FF' + - uid: 21089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-69.5 + pos: 28.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21544 + color: '#FF0000FF' + - uid: 21090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-69.5 + pos: 28.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21545 + color: '#FF0000FF' + - uid: 21091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-69.5 + pos: 45.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21546 + - uid: 21092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-69.5 + rot: 3.141592653589793 rad + pos: 43.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21547 + - uid: 21093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-69.5 + rot: 3.141592653589793 rad + pos: 43.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21548 + - uid: 21094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-71.5 + rot: 3.141592653589793 rad + pos: 43.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21549 + color: '#0000FFFF' + - uid: 21095 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-71.5 + pos: 32.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21550 + - uid: 21096 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-71.5 + pos: 31.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21551 + - uid: 21097 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-71.5 + pos: 30.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21552 + - uid: 21098 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-71.5 + pos: 29.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21553 + - uid: 21099 components: - type: Transform - pos: 29.5,-70.5 + pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21554 + - uid: 21100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-73.5 + pos: 28.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21555 + - uid: 21101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-73.5 + rot: 1.5707963267948966 rad + pos: 43.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21556 + - uid: 21102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-62.5 + pos: 43.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21557 + - uid: 21103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-62.5 + pos: 43.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21558 + - uid: 21104 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-62.5 + pos: 54.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21559 + - uid: 21105 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-62.5 + pos: 53.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21560 + - uid: 21106 components: - type: Transform - pos: 33.5,-63.5 + pos: 52.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21561 + - uid: 21107 components: - type: Transform - pos: 33.5,-64.5 + rot: 1.5707963267948966 rad + pos: 46.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21562 + - uid: 21108 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-61.5 + pos: 47.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21563 + color: '#0000FFFF' + - uid: 21109 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-61.5 + pos: 51.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21564 + color: '#0000FFFF' + - uid: 21110 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-61.5 + pos: 50.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21565 + color: '#0000FFFF' + - uid: 21111 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-61.5 + pos: 58.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21566 + - uid: 21112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-61.5 + rot: -1.5707963267948966 rad + pos: 54.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21567 + - uid: 21113 components: - type: Transform - pos: 36.5,-62.5 + rot: -1.5707963267948966 rad + pos: 55.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21568 + - uid: 21114 components: - type: Transform - pos: 36.5,-63.5 + pos: 63.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21569 + - uid: 21115 components: - type: Transform - pos: 36.5,-64.5 + pos: 44.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21570 + - uid: 21116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-70.5 + pos: 43.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21571 + - uid: 21117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-71.5 + pos: 43.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21572 + - uid: 21118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-72.5 + rot: 1.5707963267948966 rad + pos: 73.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21573 + - uid: 21119 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-73.5 + pos: 74.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21574 + color: '#0000FFFF' + - uid: 21120 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-73.5 + pos: 75.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21575 + color: '#0000FFFF' + - uid: 21121 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-73.5 + pos: 76.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21576 + color: '#0000FFFF' + - uid: 21122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-73.5 + rot: 3.141592653589793 rad + pos: 77.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21577 + color: '#0000FFFF' + - uid: 21123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-73.5 + rot: 3.141592653589793 rad + pos: 77.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21578 + color: '#0000FFFF' + - uid: 21124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-73.5 + pos: 73.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21579 + - uid: 21125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-73.5 + pos: 73.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21580 + - uid: 21126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-73.5 + pos: 73.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21581 + - uid: 21127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-71.5 + rot: -1.5707963267948966 rad + pos: 69.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21582 + color: '#FF0000FF' + - uid: 21128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-71.5 + rot: -1.5707963267948966 rad + pos: 70.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21583 + color: '#FF0000FF' + - uid: 21129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-71.5 + rot: -1.5707963267948966 rad + pos: 71.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21584 + color: '#FF0000FF' + - uid: 21130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-71.5 + rot: 3.141592653589793 rad + pos: 78.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21585 + - uid: 21131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-71.5 + rot: 3.141592653589793 rad + pos: 78.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21586 + - uid: 21132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-71.5 + rot: 3.141592653589793 rad + pos: 78.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21587 + - uid: 21133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-71.5 + rot: 3.141592653589793 rad + pos: 78.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21588 + - uid: 21134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-71.5 + rot: 3.141592653589793 rad + pos: 78.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21589 + - uid: 21135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-71.5 + rot: 3.141592653589793 rad + pos: 78.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21590 + - uid: 21136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-71.5 + rot: 3.141592653589793 rad + pos: 78.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21591 + - uid: 21137 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-73.5 + pos: 78.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21592 + - uid: 21138 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-72.5 + rot: -1.5707963267948966 rad + pos: 74.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21593 + color: '#FF0000FF' + - uid: 21139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-74.5 + rot: -1.5707963267948966 rad + pos: 75.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21594 + - uid: 21140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-75.5 + rot: -1.5707963267948966 rad + pos: 76.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21595 + - uid: 21141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-76.5 + rot: -1.5707963267948966 rad + pos: 77.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21596 + - uid: 21142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-76.5 + rot: -1.5707963267948966 rad + pos: 78.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21597 + - uid: 21143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-76.5 + rot: -1.5707963267948966 rad + pos: 79.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21598 + - uid: 21144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-76.5 + rot: -1.5707963267948966 rad + pos: 80.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21599 + - uid: 21145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-76.5 + rot: 3.141592653589793 rad + pos: 81.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21600 + - uid: 21146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-76.5 + rot: 3.141592653589793 rad + pos: 81.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21601 + - uid: 21147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-76.5 + rot: 3.141592653589793 rad + pos: 81.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21602 + - uid: 21148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-76.5 + rot: 3.141592653589793 rad + pos: 81.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21603 + - uid: 21149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-76.5 + rot: 3.141592653589793 rad + pos: 81.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21604 + - uid: 21150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21151 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-76.5 + pos: 82.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21605 + - uid: 21152 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-76.5 + pos: 83.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21606 + - uid: 21153 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-76.5 + pos: 84.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21607 + - uid: 21154 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-76.5 + pos: 85.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21608 + - uid: 21155 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-76.5 + pos: 86.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21609 + - uid: 21156 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-76.5 + pos: 89.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21610 + - uid: 21157 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-76.5 + pos: 90.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21611 + - uid: 21158 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-76.5 + pos: 91.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21612 + - uid: 21159 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-76.5 + pos: 92.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21613 + - uid: 21160 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-76.5 + pos: 93.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21614 + - uid: 21161 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-76.5 + pos: 94.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21615 + - uid: 21162 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-76.5 + pos: 95.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21616 + - uid: 21163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-75.5 + rot: 1.5707963267948966 rad + pos: 96.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21617 + - uid: 21164 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-74.5 + rot: 1.5707963267948966 rad + pos: 97.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21618 + - uid: 21165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-73.5 + rot: 1.5707963267948966 rad + pos: 98.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21619 + color: '#FF0000FF' + - uid: 21166 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-74.5 + pos: 99.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21620 + color: '#FF0000FF' + - uid: 21167 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-74.5 + pos: 100.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21621 + color: '#FF0000FF' + - uid: 21168 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-74.5 + pos: 101.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21622 + color: '#FF0000FF' + - uid: 21169 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-74.5 + pos: 101.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21623 + - uid: 21170 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-74.5 + pos: 100.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21624 + - uid: 21171 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-74.5 + pos: 99.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21625 + - uid: 21172 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-74.5 + pos: 98.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21626 + - uid: 21173 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-74.5 + pos: 97.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21627 + - uid: 21174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-74.5 + pos: 96.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21628 + - uid: 21175 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-74.5 + pos: 95.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21629 + - uid: 21176 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-74.5 + pos: 94.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21630 + - uid: 21177 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-74.5 + pos: 93.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21631 + - uid: 21178 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-74.5 + pos: 92.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21632 + - uid: 21179 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-74.5 + pos: 91.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21633 + - uid: 21180 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-74.5 + pos: 90.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21634 + - uid: 21181 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-74.5 + pos: 89.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21635 + - uid: 21182 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-74.5 + pos: 88.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21636 + - uid: 21183 components: - type: Transform - pos: -9.5,-72.5 + rot: 1.5707963267948966 rad + pos: 87.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21637 + - uid: 21184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-71.5 + rot: 1.5707963267948966 rad + pos: 85.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21638 + - uid: 21185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-71.5 + rot: 1.5707963267948966 rad + pos: 84.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21639 + - uid: 21186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-71.5 + pos: 83.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21640 + - uid: 21187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-71.5 + pos: 83.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21641 + - uid: 21188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-71.5 + pos: 83.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21642 + - uid: 21189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-71.5 + pos: 83.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21643 + - uid: 21190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-71.5 + pos: 83.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21644 + - uid: 21191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-71.5 + pos: 83.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21645 + - uid: 21192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-71.5 + pos: 83.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21646 + - uid: 21193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-73.5 + pos: 83.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21647 + color: '#0000FFFF' + - uid: 21194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-73.5 + pos: 83.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21648 + color: '#0000FFFF' + - uid: 21195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-73.5 + pos: 83.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21649 + color: '#0000FFFF' + - uid: 21196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-73.5 + pos: 83.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21650 + color: '#0000FFFF' + - uid: 21197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-73.5 + pos: 83.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21651 + color: '#0000FFFF' + - uid: 21198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-73.5 + pos: 83.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21652 + color: '#0000FFFF' + - uid: 21199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-73.5 + pos: 83.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21653 + color: '#0000FFFF' + - uid: 21200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-73.5 + pos: 83.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21654 + color: '#0000FFFF' + - uid: 21201 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-73.5 + pos: 84.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21655 + color: '#0000FFFF' + - uid: 21202 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-73.5 + pos: 85.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21656 + color: '#0000FFFF' + - uid: 21203 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-73.5 + pos: 87.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21657 + color: '#0000FFFF' + - uid: 21204 components: - type: Transform - pos: 1.5,-77.5 + rot: -1.5707963267948966 rad + pos: 88.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21658 + color: '#0000FFFF' + - uid: 21205 components: - type: Transform - pos: 1.5,-78.5 + rot: -1.5707963267948966 rad + pos: 89.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21659 + color: '#0000FFFF' + - uid: 21206 components: - type: Transform - pos: 1.5,-79.5 + rot: -1.5707963267948966 rad + pos: 90.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21660 + color: '#0000FFFF' + - uid: 21207 components: - type: Transform - pos: 1.5,-82.5 + rot: -1.5707963267948966 rad + pos: 91.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21661 + color: '#0000FFFF' + - uid: 21208 components: - type: Transform - pos: -0.5,-81.5 + rot: -1.5707963267948966 rad + pos: 92.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21662 + - uid: 21209 components: - type: Transform - pos: -0.5,-80.5 + rot: -1.5707963267948966 rad + pos: 93.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21663 + - uid: 21210 components: - type: Transform - pos: -0.5,-78.5 + rot: -1.5707963267948966 rad + pos: 94.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21664 + - uid: 21211 components: - type: Transform - pos: -0.5,-77.5 + rot: -1.5707963267948966 rad + pos: 95.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21665 + - uid: 21212 components: - type: Transform - pos: -0.5,-76.5 + rot: -1.5707963267948966 rad + pos: 96.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21666 + - uid: 21213 components: - type: Transform - pos: -0.5,-75.5 + rot: -1.5707963267948966 rad + pos: 97.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21667 + - uid: 21214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-82.5 + rot: -1.5707963267948966 rad + pos: 98.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21668 + - uid: 21215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-82.5 + rot: -1.5707963267948966 rad + pos: 99.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21669 + - uid: 21216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-82.5 + rot: -1.5707963267948966 rad + pos: 100.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21670 + - uid: 21217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-82.5 + rot: -1.5707963267948966 rad + pos: 101.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21671 + - uid: 21218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-82.5 + rot: -1.5707963267948966 rad + pos: 82.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21672 + color: '#FF0000FF' + - uid: 21219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-80.5 + rot: -1.5707963267948966 rad + pos: 83.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21673 + - uid: 21220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-80.5 + rot: -1.5707963267948966 rad + pos: 84.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21674 + - uid: 21221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-80.5 + rot: -1.5707963267948966 rad + pos: 85.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21675 + - uid: 21222 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-82.5 + pos: 86.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21676 + color: '#FF0000FF' + - uid: 21223 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-82.5 + pos: 87.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21677 + color: '#FF0000FF' + - uid: 21224 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-82.5 + pos: 89.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21678 + color: '#FF0000FF' + - uid: 21225 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-82.5 + pos: 90.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21679 + color: '#FF0000FF' + - uid: 21226 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-82.5 + pos: 91.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21680 + color: '#FF0000FF' + - uid: 21227 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-80.5 + pos: 92.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21681 + - uid: 21228 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-80.5 + pos: 93.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21682 + - uid: 21229 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-80.5 + pos: 94.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21683 + - uid: 21230 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-80.5 + pos: 95.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21684 + - uid: 21231 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-80.5 + pos: 96.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21685 + - uid: 21232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-83.5 + rot: -1.5707963267948966 rad + pos: 97.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21686 + - uid: 21233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-84.5 + rot: -1.5707963267948966 rad + pos: 98.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21687 + - uid: 21234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-85.5 + rot: -1.5707963267948966 rad + pos: 99.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21688 + - uid: 21235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-83.5 + rot: -1.5707963267948966 rad + pos: 100.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21689 + color: '#FF0000FF' + - uid: 21236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-84.5 + rot: -1.5707963267948966 rad + pos: 101.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21690 + color: '#FF0000FF' + - uid: 21237 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-85.5 + pos: 81.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21691 + color: '#FF0000FF' + - uid: 21238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-79.5 + rot: 3.141592653589793 rad + pos: 81.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21692 + color: '#FF0000FF' + - uid: 21239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-79.5 + rot: 3.141592653589793 rad + pos: 81.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21693 + color: '#FF0000FF' + - uid: 21240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-79.5 + rot: 3.141592653589793 rad + pos: 81.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21694 + color: '#FF0000FF' + - uid: 21241 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-86.5 + pos: 81.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21695 + - uid: 21242 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-87.5 + pos: 81.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21696 + color: '#FF0000FF' + - uid: 21243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-87.5 + rot: 3.141592653589793 rad + pos: 81.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21697 + - uid: 21244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-87.5 + rot: 3.141592653589793 rad + pos: 81.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21698 + - uid: 21245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-87.5 + rot: 3.141592653589793 rad + pos: 81.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21699 + - uid: 21246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-87.5 + rot: -1.5707963267948966 rad + pos: 79.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21700 + color: '#0000FFFF' + - uid: 21247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-87.5 + rot: -1.5707963267948966 rad + pos: 80.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21701 + color: '#0000FFFF' + - uid: 21248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-87.5 + rot: -1.5707963267948966 rad + pos: 81.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21702 + color: '#0000FFFF' + - uid: 21249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-86.5 + rot: -1.5707963267948966 rad + pos: 82.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21703 + - uid: 21250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-86.5 + pos: 86.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21704 + - uid: 21251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-86.5 + pos: 86.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21705 + - uid: 21252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-86.5 + rot: 3.141592653589793 rad + pos: 88.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21706 + color: '#FF0000FF' + - uid: 21253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-86.5 + rot: 3.141592653589793 rad + pos: 88.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21707 + color: '#FF0000FF' + - uid: 21254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-86.5 + pos: 28.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21708 + color: '#FF0000FF' + - uid: 21255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-86.5 + pos: 28.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21709 + color: '#FF0000FF' + - uid: 21256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-87.5 + pos: 28.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21710 + - uid: 21257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-87.5 + pos: 28.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21711 + - uid: 21258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-87.5 + pos: 28.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21712 + - uid: 21259 components: - type: Transform - pos: -8.5,-87.5 + pos: 30.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21713 + - uid: 21260 components: - type: Transform - pos: -8.5,-88.5 + pos: 30.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21714 + - uid: 21261 components: - type: Transform - pos: -8.5,-89.5 + pos: 30.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21715 + - uid: 21262 components: - type: Transform - pos: -8.5,-90.5 + pos: 30.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21716 + - uid: 21263 components: - type: Transform - pos: -8.5,-91.5 + pos: 30.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21717 + - uid: 21264 components: - type: Transform - pos: -8.5,-92.5 + pos: 30.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21718 + - uid: 21265 components: - type: Transform - pos: -8.5,-93.5 + pos: 30.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21719 + - uid: 21266 components: - type: Transform - pos: -6.5,-93.5 + rot: -1.5707963267948966 rad + pos: 32.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21720 + color: '#0000FFFF' + - uid: 21267 components: - type: Transform - pos: -6.5,-92.5 + rot: -1.5707963267948966 rad + pos: 33.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21721 + color: '#0000FFFF' + - uid: 21268 components: - type: Transform - pos: -6.5,-91.5 + rot: -1.5707963267948966 rad + pos: 34.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21722 + color: '#0000FFFF' + - uid: 21269 components: - type: Transform - pos: -6.5,-90.5 + pos: 26.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21723 + color: '#0000FFFF' + - uid: 21270 components: - type: Transform - pos: -6.5,-89.5 + pos: 26.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21724 + color: '#0000FFFF' + - uid: 21271 components: - type: Transform - pos: -6.5,-88.5 + pos: 26.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21272 + components: + - type: Transform + pos: 27.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21725 + - uid: 21273 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-90.5 + pos: 27.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21726 + - uid: 21274 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-90.5 + pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21727 + - uid: 21275 components: - type: Transform - pos: -0.5,-89.5 + rot: 1.5707963267948966 rad + pos: 29.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21728 + - uid: 21276 components: - type: Transform - pos: -0.5,-88.5 + pos: 31.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21729 + - uid: 21277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-90.5 + pos: 31.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21730 + - uid: 21278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-90.5 + pos: 31.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21731 + - uid: 21279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-90.5 + pos: 31.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21732 + - uid: 21280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-90.5 + pos: 31.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21733 + - uid: 21281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-92.5 + pos: 31.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21734 + - uid: 21282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-93.5 + pos: 31.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21735 + - uid: 21283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-94.5 + pos: 31.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21736 + - uid: 21284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-94.5 + pos: 31.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21737 + color: '#0000FFFF' + - uid: 21285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-93.5 + pos: 33.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21738 + - uid: 21286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-92.5 + pos: 33.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21739 + - uid: 21287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-91.5 + pos: 33.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21740 + - uid: 21288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-90.5 + pos: 33.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21741 + - uid: 21289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-89.5 + pos: 33.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21742 + - uid: 21290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-88.5 + pos: 33.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21743 + - uid: 21291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-88.5 + pos: 33.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21744 + - uid: 21292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-88.5 + pos: 33.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21745 + - uid: 21293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-88.5 + pos: 28.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21746 + - uid: 21294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-88.5 + pos: 28.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21747 + - uid: 21295 components: - type: Transform - pos: -1.5,-91.5 + pos: 30.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21748 + - uid: 21296 components: - type: Transform - pos: -1.5,-92.5 + pos: 30.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21749 + - uid: 21297 components: - type: Transform - pos: -1.5,-93.5 + pos: 30.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21750 + - uid: 21298 components: - type: Transform - pos: -1.5,-94.5 + pos: 30.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21754 + - uid: 21299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-81.5 + pos: 28.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21755 + - uid: 21300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-81.5 + pos: 28.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21756 + - uid: 21301 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-70.5 + pos: 30.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21757 - components: - - type: Transform - pos: -25.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21758 + - uid: 21302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-69.5 + pos: 30.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21759 + - uid: 21303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-69.5 + pos: 30.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21760 + - uid: 21304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-69.5 + pos: 30.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21761 + - uid: 21305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-71.5 + pos: 28.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21762 + - uid: 21306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-71.5 + pos: 28.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21763 + - uid: 21307 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-69.5 + pos: 28.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21764 + - uid: 21308 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-68.5 + pos: 28.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21765 + - uid: 21309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-67.5 + pos: 28.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21766 + - uid: 21310 components: - type: Transform - pos: -23.5,-71.5 + rot: 1.5707963267948966 rad + pos: 29.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21767 + color: '#FF0000FF' + - uid: 21311 components: - type: Transform - pos: -23.5,-72.5 + rot: 1.5707963267948966 rad + pos: 30.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21768 + color: '#FF0000FF' + - uid: 21312 components: - type: Transform - pos: -23.5,-73.5 + rot: 1.5707963267948966 rad + pos: 31.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21769 + - uid: 21314 components: - type: Transform - pos: -23.5,-74.5 + rot: 3.141592653589793 rad + pos: 30.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21770 + - uid: 21315 components: - type: Transform - pos: -23.5,-75.5 + rot: 3.141592653589793 rad + pos: 30.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21771 + - uid: 21316 components: - type: Transform - pos: -23.5,-77.5 + rot: 3.141592653589793 rad + pos: 30.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21772 + - uid: 21317 components: - type: Transform - pos: -23.5,-78.5 + rot: 3.141592653589793 rad + pos: 30.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21773 + - uid: 21318 components: - type: Transform - pos: -23.5,-79.5 + rot: -1.5707963267948966 rad + pos: 19.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21774 + color: '#FF0000FF' + - uid: 21319 components: - type: Transform - pos: -25.5,-74.5 + rot: -1.5707963267948966 rad + pos: 21.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21775 + - uid: 21320 components: - type: Transform - pos: -25.5,-75.5 + rot: 3.141592653589793 rad + pos: 27.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21776 + - uid: 21321 components: - type: Transform - pos: -25.5,-76.5 + rot: 3.141592653589793 rad + pos: 28.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21777 + - uid: 21322 components: - type: Transform - pos: -25.5,-78.5 + rot: 3.141592653589793 rad + pos: 28.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21778 + - uid: 21323 components: - type: Transform - pos: -25.5,-79.5 + rot: 3.141592653589793 rad + pos: 29.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21779 + color: '#0000FFFF' + - uid: 21324 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-80.5 + pos: 28.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21780 + - uid: 21325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-81.5 + rot: 3.141592653589793 rad + pos: 28.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21781 + - uid: 21326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-81.5 + rot: 3.141592653589793 rad + pos: 27.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21782 + - uid: 21327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-81.5 + rot: -1.5707963267948966 rad + pos: 28.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21783 + - uid: 21328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-81.5 + rot: -1.5707963267948966 rad + pos: 26.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21784 + - uid: 21329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-81.5 + rot: -1.5707963267948966 rad + pos: 28.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21785 + - uid: 21330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-81.5 + pos: 26.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21786 + - uid: 21331 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-81.5 + pos: 25.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21787 - components: - - type: Transform - pos: -25.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-82.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-82.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-82.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-82.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-82.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21793 + - uid: 21332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-80.5 + pos: 26.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21794 + - uid: 21333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-80.5 + pos: 26.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21795 + - uid: 21334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-80.5 + pos: 26.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21796 + - uid: 21335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-80.5 + pos: 26.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21797 + - uid: 21336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-80.5 + pos: 26.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21798 + - uid: 21337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-80.5 + rot: -1.5707963267948966 rad + pos: 21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21799 + color: '#0000FFFF' + - uid: 21338 components: - type: Transform - pos: -32.5,-81.5 + rot: -1.5707963267948966 rad + pos: 23.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21800 + color: '#0000FFFF' + - uid: 21339 components: - type: Transform - pos: -32.5,-82.5 + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21801 + - uid: 21340 components: - type: Transform - pos: -32.5,-83.5 + rot: 1.5707963267948966 rad + pos: 17.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21802 + - uid: 21341 components: - type: Transform - pos: -32.5,-84.5 + pos: 15.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21803 + - uid: 21342 components: - type: Transform - pos: -32.5,-85.5 + pos: 15.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21804 + - uid: 21343 components: - type: Transform - pos: -32.5,-86.5 + pos: 15.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21805 + - uid: 21344 components: - type: Transform - pos: -32.5,-88.5 + pos: 15.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21806 + - uid: 21345 components: - type: Transform - pos: -32.5,-89.5 + pos: 15.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21807 + - uid: 21346 components: - type: Transform - pos: -32.5,-90.5 + pos: 15.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21808 - components: - - type: Transform - pos: -31.5,-83.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21809 - components: - - type: Transform - pos: -31.5,-84.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21810 + - uid: 21347 components: - type: Transform - pos: -31.5,-85.5 + pos: 17.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21811 + - uid: 21348 components: - type: Transform - pos: -31.5,-87.5 + pos: 17.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21812 + - uid: 21349 components: - type: Transform - pos: -31.5,-88.5 + pos: 17.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21813 + - uid: 21350 components: - type: Transform - pos: -31.5,-89.5 + rot: -1.5707963267948966 rad + pos: 16.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21814 + - uid: 21351 components: - type: Transform - pos: -31.5,-90.5 + rot: -1.5707963267948966 rad + pos: 15.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21815 + - uid: 21352 components: - type: Transform - pos: -31.5,-82.5 + rot: -1.5707963267948966 rad + pos: 14.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21816 + - uid: 21353 components: - type: Transform - pos: -32.5,-92.5 + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21817 + - uid: 21354 components: - type: Transform - pos: -32.5,-91.5 + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21818 - components: - - type: Transform - pos: -31.5,-91.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21819 - components: - - type: Transform - pos: -27.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21820 + - uid: 21355 components: - type: Transform - pos: -27.5,-71.5 + rot: 3.141592653589793 rad + pos: 11.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21821 + color: '#FF0000FF' + - uid: 21356 components: - type: Transform - pos: -28.5,-72.5 + rot: 3.141592653589793 rad + pos: 11.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21822 + - uid: 21357 components: - type: Transform - pos: -28.5,-73.5 + rot: 3.141592653589793 rad + pos: 11.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21823 + - uid: 21358 components: - type: Transform - pos: -27.5,-72.5 + rot: 3.141592653589793 rad + pos: 13.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21824 + - uid: 21359 components: - type: Transform - pos: -27.5,-73.5 + rot: 1.5707963267948966 rad + pos: 12.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21826 + - uid: 21360 components: - type: Transform - pos: -27.5,-66.5 + rot: 1.5707963267948966 rad + pos: 11.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21827 + - uid: 21361 components: - type: Transform - pos: -27.5,-65.5 + rot: 1.5707963267948966 rad + pos: 10.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21828 + - uid: 21362 components: - type: Transform - pos: -27.5,-64.5 + rot: 1.5707963267948966 rad + pos: 9.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21829 + - uid: 21363 components: - type: Transform - pos: -27.5,-63.5 + rot: 1.5707963267948966 rad + pos: 7.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21830 + - uid: 21364 components: - type: Transform - pos: -27.5,-62.5 + rot: 1.5707963267948966 rad + pos: 6.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21831 + - uid: 21365 components: - type: Transform - pos: -27.5,-61.5 + rot: 1.5707963267948966 rad + pos: 5.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21832 + - uid: 21366 components: - type: Transform - pos: -27.5,-60.5 + rot: 1.5707963267948966 rad + pos: 4.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21833 + - uid: 21367 components: - type: Transform - pos: -27.5,-58.5 + rot: 1.5707963267948966 rad + pos: 4.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21834 + color: '#FF0000FF' + - uid: 21368 components: - type: Transform - pos: -27.5,-57.5 + rot: 1.5707963267948966 rad + pos: 5.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21835 + color: '#FF0000FF' + - uid: 21369 components: - type: Transform - pos: -27.5,-56.5 + rot: 1.5707963267948966 rad + pos: 6.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21836 + color: '#FF0000FF' + - uid: 21370 components: - type: Transform - pos: -29.5,-56.5 + rot: 1.5707963267948966 rad + pos: 8.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21837 + - uid: 21371 components: - type: Transform - pos: -29.5,-57.5 + rot: 1.5707963267948966 rad + pos: 9.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21838 + - uid: 21372 components: - type: Transform - pos: -29.5,-58.5 + rot: 1.5707963267948966 rad + pos: 10.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21839 + - uid: 21373 components: - type: Transform - pos: -29.5,-59.5 + pos: 7.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21840 + - uid: 21374 components: - type: Transform - pos: -29.5,-60.5 + pos: 7.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21841 + - uid: 21375 components: - type: Transform - pos: -29.5,-62.5 + pos: 8.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21842 + color: '#0000FFFF' + - uid: 21376 components: - type: Transform - pos: -29.5,-63.5 + pos: 8.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21843 + color: '#0000FFFF' + - uid: 21378 components: - type: Transform - pos: -29.5,-64.5 + rot: -1.5707963267948966 rad + pos: 0.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21844 + - uid: 21379 components: - type: Transform - pos: -29.5,-65.5 + rot: -1.5707963267948966 rad + pos: 1.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21845 + - uid: 21380 components: - type: Transform - pos: -29.5,-66.5 + rot: -1.5707963267948966 rad + pos: 2.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21846 + - uid: 21381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-53.5 + rot: -1.5707963267948966 rad + pos: 3.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21847 + color: '#FF0000FF' + - uid: 21382 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-53.5 + pos: 3.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21848 + - uid: 21383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-53.5 + rot: -1.5707963267948966 rad + pos: 0.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21849 + - uid: 21384 components: - type: Transform - pos: -27.5,-54.5 + rot: -1.5707963267948966 rad + pos: -0.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21850 + - uid: 21385 components: - type: Transform - pos: -27.5,-55.5 + rot: 3.141592653589793 rad + pos: -0.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21851 + color: '#FF0000FF' + - uid: 21386 components: - type: Transform - pos: -30.5,-53.5 + rot: 3.141592653589793 rad + pos: -0.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21852 + - uid: 21387 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-48.5 + pos: -0.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21853 + - uid: 21388 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-47.5 + pos: -0.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21854 + - uid: 21389 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-48.5 + pos: -0.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21855 + color: '#FF0000FF' + - uid: 21390 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-49.5 + pos: 1.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21856 + - uid: 21391 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-50.5 + pos: 1.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21857 + - uid: 21392 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-51.5 + pos: 1.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21858 + - uid: 21393 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-52.5 + pos: 1.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21859 + - uid: 21394 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-50.5 + pos: 1.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21860 + color: '#0000FFFF' + - uid: 21395 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-51.5 + pos: -0.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21861 + - uid: 21396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-52.5 + rot: -1.5707963267948966 rad + pos: 3.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21862 + color: '#0000FFFF' + - uid: 21397 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-46.5 + rot: -1.5707963267948966 rad + pos: 2.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21863 + - uid: 21398 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-46.5 + rot: -1.5707963267948966 rad + pos: 3.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21864 + - uid: 21399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-45.5 + rot: -1.5707963267948966 rad + pos: 2.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21865 + - uid: 21400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-44.5 + rot: -1.5707963267948966 rad + pos: 1.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21866 + - uid: 21401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-43.5 + rot: -1.5707963267948966 rad + pos: 0.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21867 + - uid: 21402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-44.5 + rot: 3.141592653589793 rad + pos: 4.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21868 + color: '#FF0000FF' + - uid: 21403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-44.5 + rot: 3.141592653589793 rad + pos: 4.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21870 + - uid: 21404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-42.5 + rot: 3.141592653589793 rad + pos: 1.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21871 + color: '#0000FFFF' + - uid: 21405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-42.5 + rot: 1.5707963267948966 rad + pos: -3.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21872 + - uid: 21406 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-43.5 + rot: 1.5707963267948966 rad + pos: -1.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21873 + - uid: 21407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-42.5 + rot: 1.5707963267948966 rad + pos: -2.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21874 + - uid: 21408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-41.5 + rot: 1.5707963267948966 rad + pos: -3.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21875 + - uid: 21409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-40.5 + rot: 1.5707963267948966 rad + pos: -4.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21876 + - uid: 21410 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-41.5 + pos: -2.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21877 + - uid: 21411 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-40.5 + pos: -2.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21878 + - uid: 21412 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-39.5 + pos: -2.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21879 + color: '#FF0000FF' + - uid: 21413 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-38.5 + pos: -2.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21880 + color: '#FF0000FF' + - uid: 21414 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-37.5 + pos: -6.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21881 + - uid: 21415 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-36.5 + pos: -6.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21882 + - uid: 21416 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-35.5 + pos: -6.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21883 + - uid: 21417 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-34.5 + pos: -6.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21884 + - uid: 21418 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-33.5 + pos: -6.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21885 + - uid: 21419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-32.5 + rot: 1.5707963267948966 rad + pos: -5.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21886 + color: '#FF0000FF' + - uid: 21420 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-39.5 + rot: 1.5707963267948966 rad + pos: -6.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21887 + - uid: 21421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-38.5 + pos: -4.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21888 + - uid: 21422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-37.5 + pos: -4.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21889 + - uid: 21423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-36.5 + pos: -5.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21890 + color: '#0000FFFF' + - uid: 21424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-35.5 + pos: -5.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21891 + color: '#0000FFFF' + - uid: 21425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-34.5 + pos: -5.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21892 + color: '#0000FFFF' + - uid: 21426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-31.5 + rot: -1.5707963267948966 rad + pos: -6.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21893 + - uid: 21427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-31.5 + rot: -1.5707963267948966 rad + pos: -7.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21894 + - uid: 21428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-33.5 + pos: -0.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21895 + - uid: 21429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-33.5 + pos: -0.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21896 + - uid: 21430 components: - type: Transform - pos: -27.5,-32.5 + pos: -0.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21897 + - uid: 21431 components: - type: Transform - pos: -27.5,-31.5 + pos: -0.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21898 + - uid: 21432 components: - type: Transform - pos: -27.5,-30.5 + pos: -0.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21899 + - uid: 21433 components: - type: Transform - pos: -27.5,-29.5 + pos: -0.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21900 + - uid: 21434 components: - type: Transform - pos: -27.5,-28.5 + pos: 1.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21901 + color: '#0000FFFF' + - uid: 21435 components: - type: Transform - pos: -27.5,-27.5 + pos: 1.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21902 + color: '#0000FFFF' + - uid: 21436 components: - type: Transform - pos: -27.5,-26.5 + pos: 1.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21903 + color: '#0000FFFF' + - uid: 21437 components: - type: Transform - pos: -27.5,-24.5 + pos: 1.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21904 + color: '#0000FFFF' + - uid: 21438 components: - type: Transform - pos: -27.5,-23.5 + pos: 1.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21905 + color: '#0000FFFF' + - uid: 21439 components: - type: Transform - pos: -27.5,-22.5 + pos: 1.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21906 + color: '#0000FFFF' + - uid: 21440 components: - type: Transform - pos: -27.5,-21.5 + rot: 1.5707963267948966 rad + pos: 2.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21907 + color: '#0000FFFF' + - uid: 21441 components: - type: Transform - pos: -27.5,-20.5 + rot: 1.5707963267948966 rad + pos: 3.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21908 + color: '#0000FFFF' + - uid: 21442 components: - type: Transform - pos: -27.5,-18.5 + rot: 1.5707963267948966 rad + pos: 0.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21909 + - uid: 21443 components: - type: Transform - pos: -27.5,-17.5 + rot: 1.5707963267948966 rad + pos: 1.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21910 + - uid: 21444 components: - type: Transform - pos: -27.5,-16.5 + rot: 1.5707963267948966 rad + pos: 2.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21911 + - uid: 21445 components: - type: Transform - pos: -27.5,-15.5 + rot: 1.5707963267948966 rad + pos: 3.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21912 + - uid: 21446 components: - type: Transform - pos: -27.5,-14.5 + rot: 1.5707963267948966 rad + pos: -1.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21913 + - uid: 21447 components: - type: Transform - pos: -27.5,-12.5 + rot: 1.5707963267948966 rad + pos: -2.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21914 + - uid: 21448 components: - type: Transform - pos: -27.5,-11.5 + rot: 1.5707963267948966 rad + pos: -3.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21915 + - uid: 21449 components: - type: Transform - pos: -29.5,-11.5 + rot: 1.5707963267948966 rad + pos: 0.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21916 + - uid: 21450 components: - type: Transform - pos: -29.5,-12.5 + rot: 1.5707963267948966 rad + pos: -0.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21917 + - uid: 21451 components: - type: Transform - pos: -29.5,-13.5 + rot: 1.5707963267948966 rad + pos: -1.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21918 + - uid: 21452 components: - type: Transform - pos: -29.5,-14.5 + rot: 1.5707963267948966 rad + pos: -2.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21919 + - uid: 21453 components: - type: Transform - pos: -29.5,-16.5 + rot: 1.5707963267948966 rad + pos: -3.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21920 + - uid: 21454 components: - type: Transform - pos: -29.5,-17.5 + pos: 1.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21921 + - uid: 21455 components: - type: Transform - pos: -29.5,-18.5 + pos: 1.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21922 + - uid: 21456 components: - type: Transform - pos: -29.5,-19.5 + pos: 1.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21923 + - uid: 21457 components: - type: Transform - pos: -29.5,-20.5 + pos: -0.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21924 + color: '#FF0000FF' + - uid: 21458 components: - type: Transform - pos: -29.5,-22.5 + pos: -0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21459 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21925 + - uid: 21461 components: - type: Transform - pos: -29.5,-23.5 + rot: -1.5707963267948966 rad + pos: 4.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21926 + - uid: 21462 components: - type: Transform - pos: -29.5,-24.5 + rot: -1.5707963267948966 rad + pos: 5.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21927 + - uid: 21463 components: - type: Transform - pos: -29.5,-25.5 + rot: -1.5707963267948966 rad + pos: 6.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21928 + - uid: 21464 components: - type: Transform - pos: -29.5,-26.5 + rot: -1.5707963267948966 rad + pos: 0.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21929 + - uid: 21465 components: - type: Transform - pos: -29.5,-28.5 + rot: -1.5707963267948966 rad + pos: -0.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21930 + - uid: 21466 components: - type: Transform - pos: -29.5,-29.5 + rot: -1.5707963267948966 rad + pos: -1.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21931 + - uid: 21467 components: - type: Transform - pos: -29.5,-30.5 + rot: -1.5707963267948966 rad + pos: -3.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21932 + - uid: 21468 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-42.5 + pos: -4.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21933 + color: '#0000FFFF' + - uid: 21469 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-42.5 + pos: -5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21934 + - uid: 21471 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-42.5 + pos: -2.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21935 + - uid: 21472 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-42.5 + pos: -3.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21936 + - uid: 21473 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-42.5 + pos: -4.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21937 + - uid: 21474 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-42.5 + pos: -5.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21938 + - uid: 21475 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-42.5 + pos: 1.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21939 + - uid: 21476 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-42.5 + pos: 2.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21940 + - uid: 21477 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-44.5 + pos: 3.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21941 + color: '#FF0000FF' + - uid: 21478 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-44.5 + pos: 4.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21942 + color: '#FF0000FF' + - uid: 21479 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-44.5 + pos: 5.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21943 + color: '#FF0000FF' + - uid: 21480 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-44.5 + pos: 6.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21944 + color: '#FF0000FF' + - uid: 21481 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-44.5 + pos: 8.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21945 + color: '#FF0000FF' + - uid: 21482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-44.5 + rot: 3.141592653589793 rad + pos: 9.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21946 + color: '#FF0000FF' + - uid: 21483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-44.5 + rot: 3.141592653589793 rad + pos: 9.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21947 + color: '#FF0000FF' + - uid: 21484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-44.5 + rot: 3.141592653589793 rad + pos: 9.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21948 + color: '#FF0000FF' + - uid: 21485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-44.5 + rot: 3.141592653589793 rad + pos: 9.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21949 + color: '#FF0000FF' + - uid: 21486 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-10.5 + pos: 9.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21950 + color: '#FF0000FF' + - uid: 21487 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-8.5 + pos: 9.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21951 + color: '#FF0000FF' + - uid: 21488 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-6.5 + pos: 8.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21952 + - uid: 21489 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-5.5 + pos: 8.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21953 + - uid: 21490 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,-3.5 + pos: 8.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21954 + - uid: 21491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-2.5 + rot: 3.141592653589793 rad + pos: 8.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21955 + - uid: 21492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-2.5 + rot: 3.141592653589793 rad + pos: 8.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21956 + - uid: 21493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 + rot: 3.141592653589793 rad + pos: 8.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21957 + - uid: 21494 components: - type: Transform - pos: -21.5,-0.5 + pos: 31.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21958 + - uid: 21495 components: - type: Transform - pos: -21.5,0.5 + pos: 31.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21959 + - uid: 21496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,1.5 + pos: 31.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21960 + - uid: 21497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,1.5 + pos: 31.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21961 + - uid: 21498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,1.5 + pos: 31.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21962 + - uid: 21499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,1.5 + pos: 31.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21963 + - uid: 21500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,1.5 + pos: 31.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21964 + - uid: 21501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 + pos: 33.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21965 + - uid: 21502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 + pos: 33.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21966 + - uid: 21503 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-7.5 + pos: 33.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21967 + - uid: 21504 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-9.5 + pos: 33.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21968 + - uid: 21505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,4.5 + pos: 33.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21969 + color: '#FF0000FF' + - uid: 21506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 + pos: 33.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21970 + - uid: 21507 components: - type: Transform - pos: -13.5,2.5 + pos: 33.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21971 + color: '#FF0000FF' + - uid: 21508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,3.5 + rot: 1.5707963267948966 rad + pos: 30.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21972 + - uid: 21509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,2.5 + rot: 1.5707963267948966 rad + pos: 29.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21973 + color: '#0000FFFF' + - uid: 21510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,1.5 + rot: 1.5707963267948966 rad + pos: 31.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21974 + - uid: 21511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,0.5 + rot: 1.5707963267948966 rad + pos: 32.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21975 + - uid: 21512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 + pos: 33.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21976 + - uid: 21513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-0.5 + pos: 33.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21977 + - uid: 21514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 + pos: 33.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21978 + - uid: 21515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 + pos: 33.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21979 + color: '#FF0000FF' + - uid: 21516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,4.5 + pos: 31.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21980 + - uid: 21517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,4.5 + pos: 31.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21981 + - uid: 21518 components: - type: Transform - pos: -25.5,-5.5 + rot: 3.141592653589793 rad + pos: 30.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21982 + - uid: 21519 components: - type: Transform - pos: -25.5,-4.5 + rot: 3.141592653589793 rad + pos: 30.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21983 + - uid: 21520 components: - type: Transform - pos: -25.5,-3.5 + rot: 3.141592653589793 rad + pos: 30.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21984 + - uid: 21521 components: - type: Transform - pos: -25.5,-2.5 + rot: 3.141592653589793 rad + pos: 30.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21985 + - uid: 21522 components: - type: Transform - pos: -25.5,-1.5 + rot: 3.141592653589793 rad + pos: 30.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21986 + - uid: 21523 components: - type: Transform - pos: -26.5,-1.5 + rot: 3.141592653589793 rad + pos: 28.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21987 + - uid: 21524 components: - type: Transform - pos: -26.5,-0.5 + rot: 3.141592653589793 rad + pos: 28.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21988 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21989 - components: - - type: Transform - pos: -25.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21992 + - uid: 21525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,1.5 + rot: 3.141592653589793 rad + pos: 28.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21993 + color: '#0000FFFF' + - uid: 21526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,0.5 + rot: 3.141592653589793 rad + pos: 28.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21994 + - uid: 21527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,0.5 + rot: 3.141592653589793 rad + pos: 28.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21995 + - uid: 21528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,0.5 + rot: 3.141592653589793 rad + pos: 28.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21996 + - uid: 21529 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,1.5 + pos: 28.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21997 + - uid: 21530 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,2.5 + pos: 28.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21998 + - uid: 21531 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,3.5 + pos: 28.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21999 + - uid: 21532 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,5.5 + pos: 28.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22000 + - uid: 21533 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,6.5 + pos: 28.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22001 + - uid: 21534 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,2.5 + pos: 30.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22002 + - uid: 21535 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,3.5 + pos: 30.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22003 + - uid: 21536 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,4.5 + pos: 30.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22004 + - uid: 21537 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,5.5 + pos: 30.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22005 + - uid: 21538 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,7.5 + pos: 30.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22006 + - uid: 21539 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,8.5 + pos: 30.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22007 + - uid: 21540 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,9.5 + pos: 30.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22008 + - uid: 21541 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,7.5 + pos: 23.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22009 + color: '#FF0000FF' + - uid: 21542 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,8.5 + pos: 21.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22010 + - uid: 21543 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,9.5 + rot: 1.5707963267948966 rad + pos: 22.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22013 + - uid: 21544 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-45.5 + rot: 1.5707963267948966 rad + pos: 23.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22014 + color: '#0000FFFF' + - uid: 21545 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-46.5 + rot: 1.5707963267948966 rad + pos: 24.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22015 + color: '#0000FFFF' + - uid: 21546 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-45.5 + rot: 1.5707963267948966 rad + pos: 25.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22016 + - uid: 21547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-46.5 + rot: 1.5707963267948966 rad + pos: 26.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22017 + - uid: 21548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-47.5 + rot: 1.5707963267948966 rad + pos: 24.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22018 + color: '#FF0000FF' + - uid: 21549 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-47.5 + pos: 25.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22019 + - uid: 21550 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-47.5 + pos: 26.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22020 + - uid: 21551 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-47.5 + pos: 27.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22021 + - uid: 21552 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-47.5 + pos: 28.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22022 + - uid: 21553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-47.5 + pos: 29.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22023 + - uid: 21554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-47.5 + rot: -1.5707963267948966 rad + pos: 22.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22024 + - uid: 21555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-49.5 + rot: -1.5707963267948966 rad + pos: 21.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22025 + - uid: 21556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-48.5 + rot: 1.5707963267948966 rad + pos: 29.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22026 + - uid: 21557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-50.5 + rot: 1.5707963267948966 rad + pos: 30.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22027 + color: '#0000FFFF' + - uid: 21558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-51.5 + rot: 1.5707963267948966 rad + pos: 31.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22028 + color: '#0000FFFF' + - uid: 21559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-52.5 + rot: 1.5707963267948966 rad + pos: 32.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22029 + color: '#0000FFFF' + - uid: 21560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-53.5 + pos: 33.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22030 + color: '#0000FFFF' + - uid: 21561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-54.5 + pos: 33.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22031 + color: '#0000FFFF' + - uid: 21562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-55.5 + rot: 1.5707963267948966 rad + pos: 31.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22032 + - uid: 21563 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-56.5 + rot: 1.5707963267948966 rad + pos: 32.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22033 + - uid: 21564 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-57.5 + rot: 1.5707963267948966 rad + pos: 33.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22034 + - uid: 21565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-58.5 + rot: 1.5707963267948966 rad + pos: 34.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22035 + - uid: 21566 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-60.5 + rot: 1.5707963267948966 rad + pos: 35.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22036 + - uid: 21567 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-61.5 + pos: 36.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22037 + - uid: 21568 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-62.5 + pos: 36.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22038 + - uid: 21569 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-63.5 + pos: 36.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22039 + - uid: 21570 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,-63.5 + pos: 27.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22040 + - uid: 21571 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,-62.5 + pos: 27.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22041 + - uid: 21572 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,-61.5 + pos: 27.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22042 + - uid: 21573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-60.5 + rot: 1.5707963267948966 rad + pos: 20.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22043 + color: '#FF0000FF' + - uid: 21574 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-59.5 + rot: 1.5707963267948966 rad + pos: 19.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22044 + color: '#FF0000FF' + - uid: 21575 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-58.5 + rot: 1.5707963267948966 rad + pos: 18.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22045 + color: '#FF0000FF' + - uid: 21576 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-55.5 + rot: 1.5707963267948966 rad + pos: 17.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22046 + color: '#FF0000FF' + - uid: 21577 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-54.5 + rot: 1.5707963267948966 rad + pos: 16.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22047 + color: '#FF0000FF' + - uid: 21578 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-53.5 + rot: 1.5707963267948966 rad + pos: 15.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22048 + color: '#FF0000FF' + - uid: 21579 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-51.5 + rot: 1.5707963267948966 rad + pos: 14.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22049 + color: '#FF0000FF' + - uid: 21580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-50.5 + rot: 1.5707963267948966 rad + pos: 13.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22050 + color: '#FF0000FF' + - uid: 21581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-49.5 + rot: 1.5707963267948966 rad + pos: 20.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22051 + - uid: 21582 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-59.5 + pos: 19.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22052 + color: '#0000FFFF' + - uid: 21583 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-59.5 + pos: 18.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22053 + color: '#0000FFFF' + - uid: 21584 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-59.5 + pos: 17.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22054 + color: '#0000FFFF' + - uid: 21585 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-59.5 + pos: 16.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22055 + color: '#0000FFFF' + - uid: 21586 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-59.5 + pos: 15.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22056 + color: '#0000FFFF' + - uid: 21587 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-57.5 + pos: 14.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22057 + - uid: 21588 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-57.5 + pos: 13.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22058 + - uid: 21589 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-57.5 + pos: 12.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22059 + - uid: 21590 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-57.5 + pos: 11.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22060 + - uid: 21591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-57.5 + rot: 3.141592653589793 rad + pos: 10.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22061 + - uid: 21592 components: - type: Transform - pos: -44.5,-64.5 + rot: 3.141592653589793 rad + pos: 10.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22062 + color: '#0000FFFF' + - uid: 21593 components: - type: Transform - pos: -44.5,-65.5 + rot: 3.141592653589793 rad + pos: 12.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22063 + - uid: 21594 components: - type: Transform - pos: -44.5,-68.5 + rot: 3.141592653589793 rad + pos: 12.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22064 + - uid: 21595 components: - type: Transform - pos: -44.5,-69.5 + rot: 1.5707963267948966 rad + pos: 11.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22065 + - uid: 21596 components: - type: Transform - pos: -44.5,-70.5 + rot: 1.5707963267948966 rad + pos: 10.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22066 + - uid: 21597 components: - type: Transform - pos: -44.5,-71.5 + rot: 1.5707963267948966 rad + pos: 9.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22067 + - uid: 21598 components: - type: Transform - pos: -42.5,-72.5 + rot: 1.5707963267948966 rad + pos: 7.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22068 + color: '#FF0000FF' + - uid: 21599 components: - type: Transform - pos: -42.5,-71.5 + rot: 1.5707963267948966 rad + pos: 6.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22069 + color: '#FF0000FF' + - uid: 21600 components: - type: Transform - pos: -42.5,-70.5 + rot: 1.5707963267948966 rad + pos: 5.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22070 + color: '#FF0000FF' + - uid: 21601 components: - type: Transform - pos: -42.5,-68.5 + rot: 1.5707963267948966 rad + pos: 4.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22071 + color: '#FF0000FF' + - uid: 21602 components: - type: Transform - pos: -42.5,-67.5 + rot: 1.5707963267948966 rad + pos: 3.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22072 + color: '#FF0000FF' + - uid: 21603 components: - type: Transform - pos: -42.5,-66.5 + rot: 1.5707963267948966 rad + pos: 2.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22073 + color: '#FF0000FF' + - uid: 21604 components: - type: Transform - pos: -42.5,-65.5 + rot: 1.5707963267948966 rad + pos: 0.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22074 + color: '#FF0000FF' + - uid: 21605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-52.5 + rot: 1.5707963267948966 rad + pos: -0.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22075 + color: '#FF0000FF' + - uid: 21606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-52.5 + rot: 1.5707963267948966 rad + pos: -1.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22076 + color: '#FF0000FF' + - uid: 21607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-52.5 + rot: 1.5707963267948966 rad + pos: -2.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22077 + color: '#FF0000FF' + - uid: 21608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-52.5 + rot: 1.5707963267948966 rad + pos: -3.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22078 + color: '#FF0000FF' + - uid: 21609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-48.5 + rot: 1.5707963267948966 rad + pos: -4.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22079 + - uid: 21610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-48.5 + rot: 1.5707963267948966 rad + pos: -5.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22080 + - uid: 21611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-48.5 + rot: 1.5707963267948966 rad + pos: -6.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22081 + - uid: 21612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-48.5 + rot: 1.5707963267948966 rad + pos: -7.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22082 + - uid: 21613 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-58.5 + rot: 1.5707963267948966 rad + pos: -8.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22083 + - uid: 21614 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-57.5 + rot: 1.5707963267948966 rad + pos: -9.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22084 + - uid: 21615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-56.5 + rot: 1.5707963267948966 rad + pos: -10.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22085 + - uid: 21616 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-55.5 + pos: -11.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22086 + - uid: 21617 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-54.5 + pos: -11.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22087 + - uid: 21618 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-53.5 + pos: -9.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22088 + color: '#0000FFFF' + - uid: 21619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-56.5 + rot: 1.5707963267948966 rad + pos: -8.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22089 + - uid: 21620 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-55.5 + rot: 1.5707963267948966 rad + pos: -6.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22090 + - uid: 21621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-57.5 + rot: 1.5707963267948966 rad + pos: -5.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22091 + - uid: 21622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-59.5 + rot: 1.5707963267948966 rad + pos: -4.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22092 + color: '#0000FFFF' + - uid: 21623 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-64.5 + pos: -3.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22093 + - uid: 21624 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-64.5 + pos: -2.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22094 + - uid: 21625 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-64.5 + pos: -1.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22095 + - uid: 21626 components: - type: Transform - pos: -36.5,-63.5 + rot: 1.5707963267948966 rad + pos: 0.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22096 + color: '#0000FFFF' + - uid: 21627 components: - type: Transform - pos: -36.5,-62.5 + rot: 1.5707963267948966 rad + pos: 1.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22097 + color: '#0000FFFF' + - uid: 21628 components: - type: Transform - pos: -36.5,-61.5 + rot: 1.5707963267948966 rad + pos: 2.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22098 + color: '#0000FFFF' + - uid: 21629 components: - type: Transform - pos: -36.5,-60.5 + rot: 1.5707963267948966 rad + pos: 3.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22099 + color: '#0000FFFF' + - uid: 21630 components: - type: Transform - pos: -36.5,-64.5 + rot: 1.5707963267948966 rad + pos: 4.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22100 + color: '#0000FFFF' + - uid: 21631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-64.5 + rot: 1.5707963267948966 rad + pos: 5.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22101 + - uid: 21632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21636 + components: + - type: Transform + pos: -9.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21637 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-64.5 + pos: -10.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22102 + - uid: 21638 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-64.5 + pos: -11.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22103 + - uid: 21639 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-64.5 + pos: -12.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22104 + - uid: 21640 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-64.5 + pos: -13.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22105 + - uid: 21641 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-64.5 + pos: -14.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22106 + - uid: 21642 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-64.5 + pos: -15.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22107 + - uid: 21643 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-66.5 + pos: -16.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22108 + color: '#0000FFFF' + - uid: 21644 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-66.5 + pos: -18.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22109 + color: '#0000FFFF' + - uid: 21645 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-66.5 + pos: -19.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22110 + color: '#0000FFFF' + - uid: 21646 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-66.5 + pos: -12.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22111 + - uid: 21647 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,-66.5 + pos: -13.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22112 + - uid: 21648 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-73.5 + rot: -1.5707963267948966 rad + pos: -14.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22113 + - uid: 21649 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-74.5 + rot: -1.5707963267948966 rad + pos: -16.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22114 + - uid: 21650 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-76.5 + rot: -1.5707963267948966 rad + pos: -17.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22115 + - uid: 21651 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-77.5 + rot: -1.5707963267948966 rad + pos: -18.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22116 + - uid: 21652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-78.5 + rot: -1.5707963267948966 rad + pos: -19.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22117 + - uid: 21653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-75.5 + rot: -1.5707963267948966 rad + pos: -20.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22118 + color: '#FF0000FF' + - uid: 21654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-76.5 + rot: -1.5707963267948966 rad + pos: -22.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22119 + color: '#FF0000FF' + - uid: 21655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-77.5 + rot: -1.5707963267948966 rad + pos: -23.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22120 + color: '#FF0000FF' + - uid: 21656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-78.5 + rot: -1.5707963267948966 rad + pos: -24.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22121 + color: '#FF0000FF' + - uid: 21657 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-79.5 + pos: 1.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22122 + - uid: 21658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-80.5 + pos: 1.5,-78.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22123 + - uid: 21659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-81.5 + pos: 1.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22124 + - uid: 21660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-81.5 + pos: 1.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22125 + - uid: 21661 components: - type: Transform - pos: -42.5,-79.5 + pos: -0.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22126 + - uid: 21662 components: - type: Transform - pos: -42.5,-80.5 + pos: -0.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22127 + - uid: 21663 components: - type: Transform - pos: -42.5,-81.5 + pos: -0.5,-78.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22128 + - uid: 21664 components: - type: Transform - pos: -42.5,-82.5 + pos: -0.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22129 + - uid: 21665 components: - type: Transform - pos: -42.5,-83.5 + pos: -0.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22130 + - uid: 21666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-72.5 + pos: -0.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22131 + color: '#0000FFFF' + - uid: 21667 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-72.5 + pos: 0.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22132 + color: '#0000FFFF' + - uid: 21668 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-72.5 + pos: 1.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22133 + color: '#0000FFFF' + - uid: 21669 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-72.5 + pos: 2.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22134 + color: '#0000FFFF' + - uid: 21670 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-74.5 + pos: 3.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22135 + - uid: 21671 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-74.5 + pos: 4.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22136 + - uid: 21672 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-67.5 + pos: 2.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22137 + - uid: 21673 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-67.5 + pos: 3.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22138 + - uid: 21674 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-67.5 + pos: 4.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22139 + - uid: 21675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-67.5 + rot: -1.5707963267948966 rad + pos: 6.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22140 + color: '#0000FFFF' + - uid: 21676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-67.5 + rot: -1.5707963267948966 rad + pos: 7.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22146 + color: '#0000FFFF' + - uid: 21677 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-64.5 + pos: 8.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22147 + - uid: 21678 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,-64.5 + pos: 9.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22148 + - uid: 21679 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,-64.5 + pos: 10.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22149 + - uid: 21680 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,-66.5 + pos: 6.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22150 + - uid: 21681 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,-66.5 + pos: 7.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22151 + - uid: 21682 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22152 - components: - - type: Transform - pos: -50.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22153 - components: - - type: Transform - pos: -50.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22154 - components: - - type: Transform - pos: -48.5,-67.5 + pos: 8.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22155 + - uid: 21683 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-64.5 + rot: -1.5707963267948966 rad + pos: 9.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22156 + - uid: 21684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-63.5 + rot: -1.5707963267948966 rad + pos: 10.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22157 + - uid: 21685 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,-62.5 + pos: 1.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22158 + - uid: 21686 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,-61.5 + pos: 1.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22159 + - uid: 21687 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,-60.5 + pos: 1.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22161 + - uid: 21688 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-62.5 + pos: -0.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22162 + - uid: 21689 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-61.5 + pos: -0.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22163 + - uid: 21690 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-60.5 + pos: -0.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22164 + - uid: 21691 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,-66.5 + pos: -1.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22165 + color: '#0000FFFF' + - uid: 21692 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,-66.5 + pos: -2.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22166 + color: '#0000FFFF' + - uid: 21693 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-66.5 + pos: -3.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22167 + color: '#0000FFFF' + - uid: 21694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-66.5 + rot: 3.141592653589793 rad + pos: 1.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22168 + - uid: 21695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-66.5 + rot: 3.141592653589793 rad + pos: -0.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22169 + color: '#0000FFFF' + - uid: 21696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-66.5 + rot: 1.5707963267948966 rad + pos: 0.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22170 + - uid: 21697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-66.5 + rot: 1.5707963267948966 rad + pos: -0.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22171 + - uid: 21698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-66.5 + rot: 1.5707963267948966 rad + pos: -1.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22172 + - uid: 21699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-66.5 + rot: 1.5707963267948966 rad + pos: -2.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22173 + - uid: 21700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-66.5 + rot: 1.5707963267948966 rad + pos: -3.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22174 + - uid: 21701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-66.5 + rot: 1.5707963267948966 rad + pos: -4.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22176 + - uid: 21702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-64.5 + rot: 1.5707963267948966 rad + pos: -1.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22177 + - uid: 21703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-64.5 + rot: 1.5707963267948966 rad + pos: -2.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22178 + - uid: 21704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-64.5 + rot: 1.5707963267948966 rad + pos: -3.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22179 + - uid: 21705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-64.5 + rot: 1.5707963267948966 rad + pos: -4.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22180 + - uid: 21706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-64.5 + rot: 1.5707963267948966 rad + pos: -5.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22181 + - uid: 21707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-64.5 + rot: 1.5707963267948966 rad + pos: -6.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22182 + - uid: 21708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-64.5 + rot: 1.5707963267948966 rad + pos: -7.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22183 + - uid: 21709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-64.5 + rot: 1.5707963267948966 rad + pos: -5.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22184 + color: '#FF0000FF' + - uid: 21710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-64.5 + rot: 1.5707963267948966 rad + pos: -7.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22185 + color: '#FF0000FF' + - uid: 21711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-64.5 + rot: 1.5707963267948966 rad + pos: -8.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22186 + color: '#FF0000FF' + - uid: 21712 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-42.5 + pos: -8.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22187 + - uid: 21713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-41.5 + pos: -8.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22188 + - uid: 21714 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-40.5 + pos: -8.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22189 + - uid: 21715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-39.5 + pos: -8.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22190 + - uid: 21716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-37.5 + pos: -8.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22191 + - uid: 21717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-36.5 + pos: -8.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22192 + - uid: 21718 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-35.5 + pos: -8.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22193 + - uid: 21719 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-41.5 + pos: -6.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22194 + - uid: 21720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-40.5 + pos: -6.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22195 + - uid: 21721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-39.5 + pos: -6.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22196 + - uid: 21722 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-37.5 + pos: -6.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22197 + - uid: 21723 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-36.5 + pos: -6.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22198 + - uid: 21724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-35.5 + pos: -6.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22199 + - uid: 21725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-38.5 + pos: 0.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22200 + color: '#0000FFFF' + - uid: 21726 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-38.5 + pos: 1.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22201 + color: '#0000FFFF' + - uid: 21727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-38.5 + pos: -0.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22202 + color: '#0000FFFF' + - uid: 21728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-38.5 + pos: -0.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22203 + color: '#0000FFFF' + - uid: 21729 components: - type: Transform - pos: -40.5,-34.5 + rot: -1.5707963267948966 rad + pos: 2.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22204 + color: '#0000FFFF' + - uid: 21730 components: - type: Transform - pos: -40.5,-32.5 + rot: -1.5707963267948966 rad + pos: 3.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22205 + color: '#0000FFFF' + - uid: 21731 components: - type: Transform - pos: -40.5,-31.5 + rot: -1.5707963267948966 rad + pos: 4.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22206 + color: '#0000FFFF' + - uid: 21732 components: - type: Transform - pos: -40.5,-30.5 + rot: -1.5707963267948966 rad + pos: 5.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22207 + color: '#0000FFFF' + - uid: 21733 components: - type: Transform - pos: -40.5,-29.5 + rot: 3.141592653589793 rad + pos: 6.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22208 + color: '#0000FFFF' + - uid: 21734 components: - type: Transform - pos: -40.5,-28.5 + rot: 3.141592653589793 rad + pos: 6.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22209 + color: '#0000FFFF' + - uid: 21735 components: - type: Transform - pos: -42.5,-33.5 + rot: 3.141592653589793 rad + pos: 6.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22210 + - uid: 21736 components: - type: Transform - pos: -42.5,-32.5 + rot: 3.141592653589793 rad + pos: 8.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22211 + color: '#FF0000FF' + - uid: 21737 components: - type: Transform - pos: -42.5,-31.5 + rot: 3.141592653589793 rad + pos: 8.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22212 + color: '#FF0000FF' + - uid: 21738 components: - type: Transform - pos: -42.5,-30.5 + rot: 3.141592653589793 rad + pos: 8.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22213 + color: '#FF0000FF' + - uid: 21739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-27.5 + rot: 3.141592653589793 rad + pos: 8.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22214 + - uid: 21740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-27.5 + rot: 3.141592653589793 rad + pos: 8.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22215 + - uid: 21741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-27.5 + rot: 3.141592653589793 rad + pos: 8.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22216 + - uid: 21742 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-27.5 + pos: 6.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22217 + - uid: 21743 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-27.5 + pos: 5.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22218 + - uid: 21744 components: - type: Transform - pos: -37.5,-28.5 + rot: 1.5707963267948966 rad + pos: 4.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22219 + - uid: 21745 components: - type: Transform - pos: -37.5,-29.5 + rot: 1.5707963267948966 rad + pos: 3.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22220 + - uid: 21746 components: - type: Transform - pos: -37.5,-30.5 + rot: 1.5707963267948966 rad + pos: 2.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22221 + - uid: 21747 components: - type: Transform - pos: -35.5,-30.5 + pos: -1.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22222 + - uid: 21748 components: - type: Transform - pos: -35.5,-29.5 + pos: -1.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22223 + - uid: 21749 components: - type: Transform - pos: -35.5,-28.5 + pos: -1.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22224 + - uid: 21750 components: - type: Transform - pos: -35.5,-27.5 + pos: -1.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22225 + - uid: 21751 components: - type: Transform - pos: -35.5,-26.5 + rot: -1.5707963267948966 rad + pos: 0.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22226 + color: '#FF0000FF' + - uid: 21752 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-25.5 + pos: -0.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22227 + color: '#FF0000FF' + - uid: 21753 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-25.5 + pos: -1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22228 + color: '#FF0000FF' + - uid: 21754 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-25.5 + pos: -2.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22229 + color: '#FF0000FF' + - uid: 21755 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-25.5 + pos: -3.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22230 + color: '#FF0000FF' + - uid: 21756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-25.5 + rot: 3.141592653589793 rad + pos: -20.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22231 + - uid: 21757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-25.5 + pos: -25.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22232 + color: '#FF0000FF' + - uid: 21758 components: - type: Transform - pos: -42.5,-28.5 + rot: -1.5707963267948966 rad + pos: -21.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22233 + - uid: 21759 components: - type: Transform - pos: -42.5,-27.5 + rot: -1.5707963267948966 rad + pos: -22.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22234 + - uid: 21760 components: - type: Transform - pos: -42.5,-26.5 + rot: -1.5707963267948966 rad + pos: -24.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22235 + - uid: 21761 components: - type: Transform - pos: -40.5,-26.5 + rot: 1.5707963267948966 rad + pos: -26.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22236 + - uid: 21762 components: - type: Transform - pos: -40.5,-25.5 + rot: 1.5707963267948966 rad + pos: -27.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22237 + - uid: 21763 components: - type: Transform - pos: -40.5,-24.5 + rot: 3.141592653589793 rad + pos: -29.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22238 + - uid: 21764 components: - type: Transform - pos: -40.5,-23.5 + rot: 3.141592653589793 rad + pos: -29.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22239 + - uid: 21765 components: - type: Transform - pos: -42.5,-24.5 + rot: 3.141592653589793 rad + pos: -29.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22240 + color: '#FF0000FF' + - uid: 21766 components: - type: Transform - pos: -42.5,-23.5 + pos: -23.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22241 + - uid: 21767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-29.5 + pos: -23.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22242 + - uid: 21768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-29.5 + pos: -23.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22243 + - uid: 21769 components: - type: Transform - pos: -45.5,-30.5 + pos: -23.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22244 + - uid: 21770 components: - type: Transform - pos: -45.5,-31.5 + pos: -23.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22245 + - uid: 21771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-22.5 + pos: -23.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22246 + - uid: 21772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-22.5 + pos: -23.5,-78.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22247 + - uid: 21773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-22.5 + pos: -23.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22248 + color: '#0000FFFF' + - uid: 21774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-19.5 + pos: -25.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22249 + - uid: 21775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-18.5 + pos: -25.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22250 + - uid: 21776 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-17.5 + pos: -25.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22251 + - uid: 21777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-17.5 + pos: -25.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22252 + color: '#FF0000FF' + - uid: 21778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-18.5 + pos: -25.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22253 + color: '#FF0000FF' + - uid: 21779 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,-19.5 + pos: -23.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22254 + - uid: 21780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-20.5 + rot: 1.5707963267948966 rad + pos: -24.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22255 + - uid: 21781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-21.5 + rot: 1.5707963267948966 rad + pos: -25.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22256 + - uid: 21782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-14.5 + rot: 1.5707963267948966 rad + pos: -26.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22257 + - uid: 21783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-13.5 + rot: 1.5707963267948966 rad + pos: -27.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22258 + - uid: 21784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-12.5 + rot: 1.5707963267948966 rad + pos: -28.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22259 + - uid: 21785 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-11.5 + rot: 1.5707963267948966 rad + pos: -29.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22260 + - uid: 21786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-10.5 + rot: 1.5707963267948966 rad + pos: -30.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22262 + - uid: 21787 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-10.5 + pos: -25.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22263 + - uid: 21788 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-11.5 + rot: 1.5707963267948966 rad + pos: -22.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22264 + color: '#0000FFFF' + - uid: 21789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-12.5 + rot: 1.5707963267948966 rad + pos: -21.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22265 + color: '#0000FFFF' + - uid: 21790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-13.5 + rot: 1.5707963267948966 rad + pos: -20.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22266 + color: '#0000FFFF' + - uid: 21791 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-7.5 + pos: -19.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22267 + - uid: 21792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-15.5 + rot: 1.5707963267948966 rad + pos: -18.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22268 + - uid: 21793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-16.5 + rot: 1.5707963267948966 rad + pos: -26.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22269 + - uid: 21794 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-7.5 + pos: -27.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22270 + color: '#FF0000FF' + - uid: 21795 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-7.5 + pos: -28.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22271 + color: '#FF0000FF' + - uid: 21796 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-7.5 + pos: -29.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22272 + color: '#FF0000FF' + - uid: 21797 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-7.5 + pos: -30.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22273 + color: '#FF0000FF' + - uid: 21798 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-29.5 + pos: -31.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22274 + color: '#FF0000FF' + - uid: 21799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-29.5 + pos: -32.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22275 + color: '#FF0000FF' + - uid: 21800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-29.5 + pos: -32.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22276 + color: '#FF0000FF' + - uid: 21801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-29.5 + pos: -32.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22277 + color: '#FF0000FF' + - uid: 21802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-27.5 + pos: -32.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22278 + - uid: 21803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-27.5 + pos: -32.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22279 + - uid: 21804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-27.5 + pos: -32.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22280 + - uid: 21805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-27.5 + pos: -32.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22281 + - uid: 21806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-27.5 + pos: -32.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22282 + - uid: 21807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-32.5 + pos: -32.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22283 + color: '#FF0000FF' + - uid: 21808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-31.5 + pos: -31.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22284 + - uid: 21809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-30.5 + pos: -31.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22285 + - uid: 21810 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-32.5 + pos: -31.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22286 + color: '#0000FFFF' + - uid: 21811 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-31.5 + pos: -31.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22287 + color: '#0000FFFF' + - uid: 21812 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-30.5 + pos: -31.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22288 + color: '#0000FFFF' + - uid: 21813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-29.5 + pos: -31.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22289 + color: '#0000FFFF' + - uid: 21814 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-28.5 + pos: -31.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22290 + color: '#0000FFFF' + - uid: 21815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-28.5 + pos: -31.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22291 + - uid: 21816 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-27.5 + pos: -32.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22292 + color: '#FF0000FF' + - uid: 21817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-26.5 + pos: -32.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22293 + color: '#FF0000FF' + - uid: 21818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-25.5 + pos: -31.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22294 + - uid: 21819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-26.5 + pos: -27.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22295 + color: '#0000FFFF' + - uid: 21820 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-26.5 + pos: -27.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22296 + color: '#0000FFFF' + - uid: 21821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-25.5 + pos: -28.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22297 + - uid: 21822 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-24.5 + pos: -28.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22298 + - uid: 21823 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-23.5 + pos: -27.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22299 + color: '#0000FFFF' + - uid: 21824 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-22.5 + pos: -27.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22300 + color: '#0000FFFF' + - uid: 21825 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-21.5 + rot: -1.5707963267948966 rad + pos: -29.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22301 + - uid: 21826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-20.5 + pos: -27.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22302 + color: '#0000FFFF' + - uid: 21827 components: - type: Transform - pos: -53.5,-28.5 + pos: -27.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22303 + - uid: 21828 components: - type: Transform - pos: -53.5,-27.5 + pos: -27.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22304 + - uid: 21829 components: - type: Transform - pos: -53.5,-26.5 + pos: -27.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22305 + - uid: 21830 components: - type: Transform - pos: -53.5,-25.5 + pos: -27.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22306 + - uid: 21831 components: - type: Transform - pos: -53.5,-23.5 + pos: -27.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22307 + - uid: 21832 components: - type: Transform - pos: -53.5,-22.5 + pos: -27.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22308 + - uid: 21833 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-7.5 + pos: -27.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22309 + color: '#0000FFFF' + - uid: 21834 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-8.5 + pos: -27.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22310 + - uid: 21835 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-6.5 + pos: -27.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22311 + - uid: 21836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-8.5 + pos: -29.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22312 + - uid: 21837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 + pos: -29.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22313 + - uid: 21838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-8.5 + pos: -29.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22314 + - uid: 21839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 + pos: -29.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22315 + - uid: 21840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 + pos: -29.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22316 + - uid: 21841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-9.5 + pos: -29.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22317 + - uid: 21842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-10.5 + pos: -29.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22318 + - uid: 21843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-44.5 + pos: -29.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22319 + color: '#FF0000FF' + - uid: 21844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-42.5 + pos: -29.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22320 + - uid: 21845 components: - type: Transform - pos: -47.5,-43.5 + pos: -29.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22321 + - uid: 21847 components: - type: Transform - pos: -47.5,-42.5 + rot: -1.5707963267948966 rad + pos: -31.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22322 + - uid: 21848 components: - type: Transform - pos: -47.5,-41.5 + rot: 1.5707963267948966 rad + pos: -28.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22323 + - uid: 21849 components: - type: Transform - pos: -47.5,-40.5 + pos: -27.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22324 + - uid: 21850 components: - type: Transform - pos: -46.5,-41.5 + pos: -27.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22325 + color: '#0000FFFF' + - uid: 21851 components: - type: Transform - pos: -46.5,-39.5 + pos: -30.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22326 + - uid: 21852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-38.5 + rot: 3.141592653589793 rad + pos: -30.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22327 + - uid: 21853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-38.5 + rot: 3.141592653589793 rad + pos: -30.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22328 + - uid: 21854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-39.5 + rot: 3.141592653589793 rad + pos: -32.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22329 + - uid: 21855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-39.5 + rot: 3.141592653589793 rad + pos: -32.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22330 + - uid: 21856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-39.5 + rot: 3.141592653589793 rad + pos: -32.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22331 + - uid: 21857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22332 + - uid: 21858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22333 + - uid: 21859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-44.5 + rot: 3.141592653589793 rad + pos: -30.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22334 + color: '#FF0000FF' + - uid: 21860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-44.5 + rot: 3.141592653589793 rad + pos: -30.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22335 + color: '#FF0000FF' + - uid: 21861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-44.5 + rot: 3.141592653589793 rad + pos: -30.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22336 + - uid: 21863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-44.5 + rot: 3.141592653589793 rad + pos: -30.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22337 + - uid: 21868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-44.5 + rot: -1.5707963267948966 rad + pos: -34.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22338 + - uid: 21869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-44.5 + rot: -1.5707963267948966 rad + pos: -34.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22339 + - uid: 21873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22340 + - uid: 21874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22341 + - uid: 21875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22342 + - uid: 21876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-44.5 + rot: 3.141592653589793 rad + pos: -30.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22343 + - uid: 21879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22344 + - uid: 21880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22345 + - uid: 21881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22346 + - uid: 21882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22347 + - uid: 21883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22348 + - uid: 21884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22349 + - uid: 21885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-44.5 + rot: 3.141592653589793 rad + pos: -32.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22350 + - uid: 21886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-42.5 + rot: 3.141592653589793 rad + pos: -30.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22351 + - uid: 21887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-42.5 + rot: 3.141592653589793 rad + pos: -30.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22352 + - uid: 21888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-42.5 + rot: 3.141592653589793 rad + pos: -30.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22353 + - uid: 21889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-42.5 + rot: 3.141592653589793 rad + pos: -30.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22354 + - uid: 21890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-42.5 + rot: 3.141592653589793 rad + pos: -30.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22355 + - uid: 21891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-42.5 + rot: 3.141592653589793 rad + pos: -30.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22356 + - uid: 21892 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,-42.5 + pos: -31.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22357 + color: '#0000FFFF' + - uid: 21893 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,-42.5 + pos: -30.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22358 + color: '#0000FFFF' + - uid: 21894 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-42.5 + pos: -29.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22359 + - uid: 21895 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-42.5 + pos: -28.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22360 + - uid: 21896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-42.5 + pos: -27.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22361 + - uid: 21897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-42.5 + pos: -27.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22362 + - uid: 21898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-42.5 + pos: -27.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22363 + - uid: 21899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-42.5 + pos: -27.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22364 + - uid: 21900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-42.5 + pos: -27.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22365 + - uid: 21901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-42.5 + pos: -27.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22366 + - uid: 21902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-42.5 + pos: -27.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22367 + - uid: 21903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-42.5 + pos: -27.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22368 + - uid: 21904 components: - type: Transform - pos: -72.5,-41.5 + pos: -27.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22369 + - uid: 21905 components: - type: Transform - pos: -72.5,-40.5 + pos: -27.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22370 + - uid: 21906 components: - type: Transform - pos: -72.5,-39.5 + pos: -27.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22371 + - uid: 21907 components: - type: Transform - pos: -74.5,-39.5 + pos: -27.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22372 + color: '#FF0000FF' + - uid: 21908 components: - type: Transform - pos: -74.5,-40.5 + pos: -27.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22373 + color: '#FF0000FF' + - uid: 21909 components: - type: Transform - pos: -74.5,-41.5 + pos: -27.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22374 + color: '#FF0000FF' + - uid: 21910 components: - type: Transform - pos: -74.5,-42.5 + pos: -27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22375 + color: '#FF0000FF' + - uid: 21911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-44.5 + pos: -27.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22376 + color: '#FF0000FF' + - uid: 21912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-44.5 + pos: -27.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22377 + color: '#FF0000FF' + - uid: 21913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-44.5 + pos: -27.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22378 + color: '#FF0000FF' + - uid: 21914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-44.5 + pos: -27.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21915 + components: + - type: Transform + pos: -29.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22379 + - uid: 21916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-42.5 + pos: -29.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22380 + color: '#0000FFFF' + - uid: 21917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-42.5 + pos: -29.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22381 + color: '#0000FFFF' + - uid: 21918 components: - type: Transform - pos: -72.5,-44.5 + pos: -29.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22382 + color: '#0000FFFF' + - uid: 21919 components: - type: Transform - pos: -72.5,-46.5 + pos: -29.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22383 + color: '#0000FFFF' + - uid: 21920 components: - type: Transform - pos: -72.5,-47.5 + pos: -29.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22384 + color: '#0000FFFF' + - uid: 21921 components: - type: Transform - pos: -72.5,-48.5 + pos: -29.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22385 + color: '#0000FFFF' + - uid: 21922 components: - type: Transform - pos: -72.5,-49.5 + pos: -29.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22386 + color: '#0000FFFF' + - uid: 21923 components: - type: Transform - pos: -74.5,-46.5 + pos: -29.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22387 + - uid: 21924 components: - type: Transform - pos: -74.5,-47.5 + pos: -29.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22388 + - uid: 21925 components: - type: Transform - pos: -74.5,-48.5 + pos: -29.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22389 + - uid: 21926 components: - type: Transform - pos: -74.5,-49.5 + pos: -29.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22390 + - uid: 21927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-43.5 + pos: -29.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22391 + - uid: 21928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-42.5 + pos: -29.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22392 + - uid: 21929 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-41.5 + pos: -29.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22393 + - uid: 21930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-40.5 + pos: -29.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22394 + - uid: 21931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-39.5 + pos: -29.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22395 + - uid: 21932 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-41.5 + rot: -1.5707963267948966 rad + pos: -35.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22396 + - uid: 21933 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-40.5 + rot: -1.5707963267948966 rad + pos: -36.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22397 + - uid: 21934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-39.5 + rot: -1.5707963267948966 rad + pos: -38.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22398 + - uid: 21935 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-38.5 + rot: -1.5707963267948966 rad + pos: -39.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22399 + - uid: 21936 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-51.5 + pos: -41.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22400 + - uid: 21937 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-51.5 + pos: -42.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22401 + - uid: 21938 components: - type: Transform - pos: 45.5,-58.5 + rot: -1.5707963267948966 rad + pos: -43.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22402 + color: '#FF0000FF' + - uid: 21939 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-59.5 + pos: -45.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22403 + color: '#FF0000FF' + - uid: 21940 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-59.5 + pos: -45.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22404 + - uid: 21941 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-59.5 + pos: -44.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22405 + - uid: 21942 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-59.5 + pos: -43.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22406 + - uid: 21943 components: - type: Transform - pos: 40.5,-58.5 + rot: -1.5707963267948966 rad + pos: -41.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22407 + - uid: 21944 components: - type: Transform - pos: 40.5,-57.5 + rot: -1.5707963267948966 rad + pos: -40.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22408 + - uid: 21945 components: - type: Transform - pos: 40.5,-56.5 + rot: -1.5707963267948966 rad + pos: -39.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22409 + - uid: 21946 components: - type: Transform - pos: 40.5,-55.5 + rot: -1.5707963267948966 rad + pos: -38.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22410 + - uid: 21947 components: - type: Transform - pos: 40.5,-54.5 + rot: -1.5707963267948966 rad + pos: -37.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22411 + - uid: 21948 components: - type: Transform - pos: 40.5,-53.5 + rot: -1.5707963267948966 rad + pos: -36.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22412 + - uid: 21949 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-51.5 + pos: -29.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22413 + - uid: 21950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 103.5,-21.5 + rot: 3.141592653589793 rad + pos: -28.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22414 + - uid: 21951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 104.5,-21.5 + rot: 3.141592653589793 rad + pos: -27.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22415 + - uid: 21952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 105.5,-21.5 + rot: 3.141592653589793 rad + pos: -27.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22416 + - uid: 21953 components: - type: Transform - pos: -43.5,-5.5 + rot: 3.141592653589793 rad + pos: -26.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22417 + - uid: 21954 components: - type: Transform - pos: -43.5,-4.5 + rot: 1.5707963267948966 rad + pos: -25.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22418 + - uid: 21955 components: - type: Transform - pos: -43.5,-3.5 + rot: 1.5707963267948966 rad + pos: -24.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22419 + - uid: 21956 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-39.5 + pos: -22.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22420 + - uid: 21957 components: - type: Transform - pos: -43.5,-1.5 + pos: -21.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22421 + - uid: 21958 components: - type: Transform - pos: -43.5,-0.5 + pos: -21.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22422 + - uid: 21959 components: - type: Transform - pos: -43.5,0.5 + rot: -1.5707963267948966 rad + pos: -20.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22423 + - uid: 21960 components: - type: Transform - pos: -43.5,1.5 + rot: -1.5707963267948966 rad + pos: -19.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22424 + - uid: 21961 components: - type: Transform - pos: -41.5,3.5 + rot: -1.5707963267948966 rad + pos: -18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22425 + color: '#0000FFFF' + - uid: 21962 components: - type: Transform - pos: -41.5,2.5 + rot: -1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22426 + color: '#0000FFFF' + - uid: 21963 components: - type: Transform - pos: -41.5,1.5 + rot: -1.5707963267948966 rad + pos: -14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22427 + color: '#0000FFFF' + - uid: 21964 components: - type: Transform - pos: -41.5,0.5 + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22428 + - uid: 21965 components: - type: Transform - pos: -41.5,-0.5 + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22429 + - uid: 21966 components: - type: Transform - pos: -41.5,-1.5 + rot: 3.141592653589793 rad + pos: -25.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22430 + - uid: 21967 components: - type: Transform - pos: -41.5,-2.5 + rot: 3.141592653589793 rad + pos: -26.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22431 + - uid: 21968 components: - type: Transform - pos: -41.5,-3.5 + rot: 1.5707963267948966 rad + pos: -9.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22432 + color: '#0000FFFF' + - uid: 21969 components: - type: Transform - pos: -41.5,-5.5 + rot: 1.5707963267948966 rad + pos: -9.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22433 + - uid: 21970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,4.5 + pos: -13.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22434 + color: '#0000FFFF' + - uid: 21971 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,4.5 + pos: -12.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22435 + color: '#0000FFFF' + - uid: 21972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,4.5 + rot: 3.141592653589793 rad + pos: -10.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22436 + - uid: 21973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,4.5 + rot: 3.141592653589793 rad + pos: -10.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22437 + - uid: 21974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,4.5 + rot: 3.141592653589793 rad + pos: -10.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22438 + - uid: 21975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,4.5 + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22439 + - uid: 21976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,4.5 + rot: 1.5707963267948966 rad + pos: -13.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22440 + - uid: 21977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,2.5 + rot: 1.5707963267948966 rad + pos: -8.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22441 + color: '#FF0000FF' + - uid: 21978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,2.5 + rot: 1.5707963267948966 rad + pos: -7.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22442 + - uid: 21979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,2.5 + rot: 1.5707963267948966 rad + pos: -8.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22443 + - uid: 21980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,2.5 + rot: 1.5707963267948966 rad + pos: -10.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22444 + - uid: 21981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,2.5 + pos: -25.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22445 + color: '#FF0000FF' + - uid: 21982 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,3.5 + pos: -25.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22446 + - uid: 21983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,2.5 + pos: -25.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22447 + - uid: 21984 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,1.5 + pos: -25.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22448 + - uid: 21985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,1.5 + pos: -25.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22449 + color: '#FF0000FF' + - uid: 21986 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,0.5 + pos: -26.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22450 + color: '#0000FFFF' + - uid: 21987 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,0.5 + pos: -26.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22451 + - uid: 21988 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-0.5 + pos: -25.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22452 + color: '#FF0000FF' + - uid: 21989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-0.5 + pos: -25.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22453 + - uid: 21990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-0.5 + rot: -1.5707963267948966 rad + pos: -26.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22454 + - uid: 21991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-0.5 + rot: -1.5707963267948966 rad + pos: -27.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22455 + - uid: 21992 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-90.5 + rot: -1.5707963267948966 rad + pos: -28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22456 + color: '#FF0000FF' + - uid: 21993 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-91.5 + rot: -1.5707963267948966 rad + pos: -29.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22457 + - uid: 21994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-92.5 + rot: -1.5707963267948966 rad + pos: -28.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22458 + - uid: 21995 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-93.5 + rot: -1.5707963267948966 rad + pos: -27.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22459 + - uid: 21996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-94.5 + rot: 3.141592653589793 rad + pos: -30.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22460 + - uid: 21997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-94.5 + rot: 3.141592653589793 rad + pos: -30.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22461 + - uid: 21998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-94.5 + rot: 3.141592653589793 rad + pos: -30.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22462 + - uid: 21999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-94.5 + rot: 3.141592653589793 rad + pos: -30.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22463 + - uid: 22000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-94.5 + rot: 3.141592653589793 rad + pos: -30.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22464 + - uid: 22001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-94.5 + rot: 3.141592653589793 rad + pos: -29.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22465 + color: '#FF0000FF' + - uid: 22002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-94.5 + rot: 3.141592653589793 rad + pos: -29.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22466 + color: '#FF0000FF' + - uid: 22003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-94.5 + rot: 3.141592653589793 rad + pos: -29.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22467 + color: '#FF0000FF' + - uid: 22004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-94.5 + rot: 3.141592653589793 rad + pos: -29.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22468 + color: '#FF0000FF' + - uid: 22005 components: - type: Transform - pos: -39.5,-93.5 + rot: 3.141592653589793 rad + pos: -29.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22469 + color: '#FF0000FF' + - uid: 22006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-92.5 + rot: 3.141592653589793 rad + pos: -29.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22470 + color: '#FF0000FF' + - uid: 22007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-92.5 + rot: 3.141592653589793 rad + pos: -29.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22471 + color: '#FF0000FF' + - uid: 22008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-92.5 + rot: 3.141592653589793 rad + pos: -30.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22472 + - uid: 22009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-92.5 + rot: 3.141592653589793 rad + pos: -30.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22473 + - uid: 22010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-92.5 + rot: 3.141592653589793 rad + pos: -30.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22474 + - uid: 22011 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-92.5 + pos: -28.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22475 + color: '#FF0000FF' + - uid: 22012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-92.5 + rot: 3.141592653589793 rad + pos: -44.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22476 + color: '#FF0000FF' + - uid: 22013 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-96.5 + pos: -44.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22477 + color: '#FF0000FF' + - uid: 22014 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-97.5 + pos: -44.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22478 + color: '#FF0000FF' + - uid: 22015 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-98.5 + pos: -42.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22479 + - uid: 22016 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-99.5 + pos: -42.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22480 + - uid: 22017 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-100.5 + pos: -42.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22481 + - uid: 22018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-96.5 + rot: 1.5707963267948966 rad + pos: -43.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22482 + - uid: 22019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-97.5 + rot: 1.5707963267948966 rad + pos: -42.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22483 + - uid: 22020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-98.5 + rot: 1.5707963267948966 rad + pos: -41.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22484 + - uid: 22021 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-101.5 + pos: -40.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22485 + color: '#FF0000FF' + - uid: 22022 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-101.5 + pos: -39.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22486 + color: '#FF0000FF' + - uid: 22023 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-101.5 + pos: -38.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22487 + color: '#FF0000FF' + - uid: 22024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-101.5 + rot: 3.141592653589793 rad + pos: -44.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22488 + color: '#FF0000FF' + - uid: 22025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-101.5 + rot: -1.5707963267948966 rad + pos: -41.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22489 + - uid: 22026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-101.5 + rot: 3.141592653589793 rad + pos: -44.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22490 + color: '#FF0000FF' + - uid: 22027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-101.5 + rot: 3.141592653589793 rad + pos: -44.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22491 + color: '#FF0000FF' + - uid: 22028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-99.5 + rot: 3.141592653589793 rad + pos: -44.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22492 + - uid: 22029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-99.5 + rot: 3.141592653589793 rad + pos: -44.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22493 + - uid: 22030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-99.5 + rot: 3.141592653589793 rad + pos: -44.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22494 + - uid: 22031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-99.5 + rot: 3.141592653589793 rad + pos: -44.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22495 + - uid: 22032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-99.5 + rot: 3.141592653589793 rad + pos: -44.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22496 + - uid: 22033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-39.5 + rot: 3.141592653589793 rad + pos: -44.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22497 + - uid: 22034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-88.5 + rot: 3.141592653589793 rad + pos: -44.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22498 + - uid: 22035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-88.5 + rot: 3.141592653589793 rad + pos: -44.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22499 + - uid: 22036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-88.5 + rot: 3.141592653589793 rad + pos: -44.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22500 + - uid: 22037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-88.5 + rot: 3.141592653589793 rad + pos: -44.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22501 + - uid: 22038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-88.5 + rot: 3.141592653589793 rad + pos: -44.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22502 + - uid: 22039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-90.5 + rot: 3.141592653589793 rad + pos: -42.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22503 + - uid: 22040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-90.5 + rot: 3.141592653589793 rad + pos: -42.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22504 + - uid: 22041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-90.5 + rot: 3.141592653589793 rad + pos: -42.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22505 + - uid: 22042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-90.5 + rot: 3.141592653589793 rad + pos: -42.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22506 + - uid: 22043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-90.5 + rot: 3.141592653589793 rad + pos: -42.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22507 + - uid: 22044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-90.5 + rot: 3.141592653589793 rad + pos: -42.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22508 + - uid: 22045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-90.5 + rot: 3.141592653589793 rad + pos: -42.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22509 + - uid: 22046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-90.5 + rot: 3.141592653589793 rad + pos: -42.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22510 + - uid: 22047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-90.5 + rot: 3.141592653589793 rad + pos: -42.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22511 + - uid: 22048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-97.5 + rot: 3.141592653589793 rad + pos: -42.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22512 + - uid: 22049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-97.5 + rot: 3.141592653589793 rad + pos: -42.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22513 + - uid: 22050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-86.5 + rot: 3.141592653589793 rad + pos: -42.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22514 + - uid: 22051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-94.5 + rot: 1.5707963267948966 rad + pos: -42.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22515 + - uid: 22052 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-95.5 + rot: 1.5707963267948966 rad + pos: -41.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22516 + color: '#FF0000FF' + - uid: 22053 components: - type: Transform - pos: -7.5,-97.5 + rot: 1.5707963267948966 rad + pos: -40.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22517 + color: '#FF0000FF' + - uid: 22054 components: - type: Transform - pos: -6.5,-96.5 + rot: 1.5707963267948966 rad + pos: -38.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22518 + - uid: 22055 components: - type: Transform - pos: -6.5,-97.5 + rot: 1.5707963267948966 rad + pos: -37.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22519 + - uid: 22056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-98.5 + rot: 1.5707963267948966 rad + pos: -41.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22520 + - uid: 22057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-98.5 + rot: 1.5707963267948966 rad + pos: -40.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22521 + - uid: 22058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-98.5 + rot: 1.5707963267948966 rad + pos: -39.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22522 + - uid: 22059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-98.5 + rot: 1.5707963267948966 rad + pos: -38.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22523 + - uid: 22060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-98.5 + rot: 1.5707963267948966 rad + pos: -36.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22524 + - uid: 22061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-99.5 + pos: -44.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22525 + - uid: 22062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-99.5 + pos: -44.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22526 + - uid: 22063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-99.5 + pos: -44.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22527 + - uid: 22064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-99.5 + pos: -44.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22528 + - uid: 22065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-98.5 + pos: -44.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22529 + - uid: 22066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-86.5 + pos: -44.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22530 + - uid: 22067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-87.5 + pos: -42.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22531 + color: '#0000FFFF' + - uid: 22068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-87.5 + pos: -42.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22532 + color: '#0000FFFF' + - uid: 22069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-87.5 + pos: -42.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22533 + color: '#0000FFFF' + - uid: 22070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-96.5 + pos: -42.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22534 + color: '#0000FFFF' + - uid: 22071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-96.5 + pos: -42.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22535 + color: '#0000FFFF' + - uid: 22072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-96.5 + pos: -42.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22536 + color: '#0000FFFF' + - uid: 22073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-96.5 + pos: -42.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22537 + color: '#0000FFFF' + - uid: 22074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-95.5 + rot: -1.5707963267948966 rad + pos: -43.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22538 + - uid: 22079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-95.5 + rot: -1.5707963267948966 rad + pos: -46.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22539 + - uid: 22080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-95.5 + rot: -1.5707963267948966 rad + pos: -47.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22540 + - uid: 22081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-95.5 + rot: -1.5707963267948966 rad + pos: -48.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22541 + - uid: 22082 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-107.5 + pos: -39.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22542 + color: '#FF0000FF' + - uid: 22083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-86.5 + rot: 3.141592653589793 rad + pos: -39.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22543 + color: '#FF0000FF' + - uid: 22084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-96.5 + rot: 3.141592653589793 rad + pos: -39.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22544 + - uid: 22085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-32.5 + rot: 3.141592653589793 rad + pos: -39.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22545 + - uid: 22086 components: - type: Transform - pos: 43.5,-71.5 + rot: 3.141592653589793 rad + pos: -39.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22546 + - uid: 22087 components: - type: Transform - pos: 43.5,-73.5 + rot: 3.141592653589793 rad + pos: -39.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22547 + - uid: 22088 components: - type: Transform - pos: 44.5,-71.5 + rot: 3.141592653589793 rad + pos: -37.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22548 + - uid: 22089 components: - type: Transform - pos: 44.5,-72.5 + rot: 3.141592653589793 rad + pos: -37.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22549 + - uid: 22090 components: - type: Transform - pos: 44.5,-73.5 + rot: -1.5707963267948966 rad + pos: -35.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22550 + - uid: 22091 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,14.5 + pos: -35.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22551 + - uid: 22093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,14.5 + rot: 1.5707963267948966 rad + pos: -40.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22552 + - uid: 22094 components: - type: Transform - pos: 26.5,0.5 + rot: 1.5707963267948966 rad + pos: -39.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22553 + color: '#0000FFFF' + - uid: 22095 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-9.5 + pos: -36.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22554 + - uid: 22096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,3.5 + pos: -36.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22555 + - uid: 22097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,3.5 + pos: -36.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22556 + - uid: 22098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,1.5 + pos: -36.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22557 + - uid: 22099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,3.5 + pos: -36.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22558 + - uid: 22100 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,3.5 + pos: -43.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22559 + color: '#0000FFFF' + - uid: 22101 components: - type: Transform - pos: 44.5,-74.5 + rot: -1.5707963267948966 rad + pos: -44.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22560 + - uid: 22102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,3.5 + pos: -45.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22561 + color: '#0000FFFF' + - uid: 22103 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,3.5 + pos: -46.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22562 + color: '#0000FFFF' + - uid: 22104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,2.5 + rot: -1.5707963267948966 rad + pos: -47.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22563 + color: '#0000FFFF' + - uid: 22105 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,1.5 + pos: -48.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22564 + - uid: 22106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-39.5 + rot: -1.5707963267948966 rad + pos: -49.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22565 + - uid: 22107 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,1.5 + pos: -45.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22566 + color: '#FF0000FF' + - uid: 22108 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,1.5 + pos: -46.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22567 + color: '#FF0000FF' + - uid: 22109 components: - type: Transform - pos: -54.5,-33.5 + rot: -1.5707963267948966 rad + pos: -47.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22568 + - uid: 22110 components: - type: Transform - pos: -50.5,-68.5 + rot: -1.5707963267948966 rad + pos: -49.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22569 + color: '#FF0000FF' + - uid: 22111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22112 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-3.5 + pos: -44.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22570 + - uid: 22113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,11.5 + rot: 3.141592653589793 rad + pos: -44.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22571 + color: '#FF0000FF' + - uid: 22114 components: - type: Transform - pos: 26.5,4.5 + rot: 3.141592653589793 rad + pos: -44.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22572 + - uid: 22115 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-76.5 + pos: -44.5,-77.5 parent: 2 - - uid: 22573 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22116 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,-33.5 + pos: -44.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22574 + - uid: 22118 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,-32.5 + pos: -42.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22575 + - uid: 22119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,1.5 + rot: 3.141592653589793 rad + pos: -42.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22576 + - uid: 22120 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-6.5 + pos: -42.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22577 + - uid: 22122 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-5.5 + pos: -44.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22578 + - uid: 22123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,3.5 + rot: 1.5707963267948966 rad + pos: -45.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22579 + - uid: 22124 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,0.5 + rot: 1.5707963267948966 rad + pos: -46.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22580 + - uid: 22125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,1.5 + pos: -42.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22581 + - uid: 22126 components: - type: Transform - pos: 31.5,3.5 + pos: -42.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22582 + - uid: 22127 components: - type: Transform - pos: 31.5,2.5 + pos: -42.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22583 + - uid: 22128 components: - type: Transform - pos: -46.5,-9.5 + pos: -42.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22584 + color: '#0000FFFF' + - uid: 22129 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-0.5 + pos: -42.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22585 + - uid: 22131 components: - type: Transform - pos: -48.5,-68.5 + rot: 1.5707963267948966 rad + pos: -42.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22586 + - uid: 22132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-11.5 + rot: 1.5707963267948966 rad + pos: -41.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22587 + color: '#FF0000FF' + - uid: 22133 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-10.5 + rot: 1.5707963267948966 rad + pos: -40.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22588 + color: '#FF0000FF' + - uid: 22134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-9.5 + rot: 1.5707963267948966 rad + pos: -41.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22589 + - uid: 22135 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-5.5 + pos: -40.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22590 + - uid: 22136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 + rot: 1.5707963267948966 rad + pos: -43.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22591 + color: '#FF0000FF' + - uid: 22137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,1.5 + rot: 1.5707963267948966 rad + pos: -42.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22592 + color: '#FF0000FF' + - uid: 22138 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-38.5 + pos: -41.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22593 + - uid: 22139 components: - type: Transform - pos: 31.5,-1.5 + rot: 1.5707963267948966 rad + pos: -40.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22594 + color: '#FF0000FF' + - uid: 22140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-4.5 + rot: 1.5707963267948966 rad + pos: -39.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22595 + - uid: 22141 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-2.5 + rot: 1.5707963267948966 rad + pos: -38.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22596 + - uid: 22142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-78.5 + rot: 1.5707963267948966 rad + pos: -41.5,-69.5 parent: 2 - - uid: 22597 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-78.5 + rot: 1.5707963267948966 rad + pos: -40.5,-69.5 parent: 2 - - uid: 22598 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22144 components: - type: Transform - pos: -62.5,-68.5 + rot: 1.5707963267948966 rad + pos: -39.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22599 + - uid: 22145 components: - type: Transform - pos: -63.5,-68.5 + rot: 1.5707963267948966 rad + pos: -38.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22600 + color: '#0000FFFF' + - uid: 22146 components: - type: Transform - pos: -63.5,-69.5 + rot: -1.5707963267948966 rad + pos: -52.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22601 + color: '#0000FFFF' + - uid: 22147 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,10.5 + pos: -53.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22602 + color: '#0000FFFF' + - uid: 22148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-8.5 + rot: -1.5707963267948966 rad + pos: -54.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22603 + color: '#0000FFFF' + - uid: 22149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,10.5 + pos: -54.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22604 + - uid: 22150 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,10.5 + pos: -53.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22605 + - uid: 22151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-38.5 + rot: -1.5707963267948966 rad + pos: -51.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22606 + - uid: 22152 components: - type: Transform - pos: -54.5,-34.5 + pos: -50.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22607 + color: '#0000FFFF' + - uid: 22153 components: - type: Transform - pos: -62.5,-69.5 + pos: -50.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22608 + - uid: 22154 components: - type: Transform - pos: -63.5,-67.5 + pos: -48.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22609 + - uid: 22155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,10.5 + rot: 3.141592653589793 rad + pos: -52.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22610 + - uid: 22156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-15.5 + rot: 3.141592653589793 rad + pos: -52.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22611 + - uid: 22157 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-8.5 + pos: -52.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22612 + color: '#FF0000FF' + - uid: 22158 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-6.5 + pos: -52.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22613 + - uid: 22161 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-4.5 + pos: -51.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22614 + - uid: 22162 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-7.5 + pos: -51.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22615 + - uid: 22163 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-95.5 + pos: -51.5,-60.5 parent: 2 - - uid: 22616 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22164 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-93.5 + pos: -55.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 22617 + color: '#FF0000FF' + - uid: 22165 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,-93.5 + pos: -56.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 22618 + color: '#FF0000FF' + - uid: 22166 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-93.5 + pos: -57.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 22619 + color: '#FF0000FF' + - uid: 22167 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-93.5 + pos: -58.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 22620 + color: '#FF0000FF' + - uid: 22168 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-93.5 + pos: -59.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 22621 + color: '#FF0000FF' + - uid: 22169 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-92.5 + pos: -60.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 22622 + color: '#FF0000FF' + - uid: 22170 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,-92.5 + pos: -61.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 22623 + color: '#FF0000FF' + - uid: 22171 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-92.5 + pos: -62.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 22624 + color: '#FF0000FF' + - uid: 22172 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-92.5 + pos: -65.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 22625 + color: '#FF0000FF' + - uid: 22173 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-92.5 + pos: -66.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 22626 + color: '#FF0000FF' + - uid: 22174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,11.5 + rot: -1.5707963267948966 rad + pos: -67.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22627 + - uid: 22175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-13.5 + rot: -1.5707963267948966 rad + pos: -67.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22628 + - uid: 22176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-73.5 + rot: -1.5707963267948966 rad + pos: -66.5,-64.5 parent: 2 - - uid: 22629 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-73.5 + rot: -1.5707963267948966 rad + pos: -65.5,-64.5 parent: 2 - - uid: 22630 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-38.5 + rot: -1.5707963267948966 rad + pos: -64.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22631 + color: '#0000FFFF' + - uid: 22179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-38.5 + rot: -1.5707963267948966 rad + pos: -63.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22632 + color: '#0000FFFF' + - uid: 22180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-38.5 + rot: -1.5707963267948966 rad + pos: -60.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22633 + - uid: 22181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-38.5 + rot: -1.5707963267948966 rad + pos: -59.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22634 + - uid: 22182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-38.5 + rot: -1.5707963267948966 rad + pos: -58.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22635 + - uid: 22183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-38.5 + rot: -1.5707963267948966 rad + pos: -57.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22636 + - uid: 22184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-37.5 + rot: -1.5707963267948966 rad + pos: -56.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22637 + - uid: 22185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-36.5 + rot: -1.5707963267948966 rad + pos: -55.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22638 + - uid: 22186 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-35.5 + pos: -42.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22639 + - uid: 22187 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-34.5 + pos: -42.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22640 + - uid: 22188 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-33.5 + pos: -42.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22641 + - uid: 22189 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-32.5 + pos: -42.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22642 + - uid: 22190 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-31.5 + pos: -42.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22643 + - uid: 22191 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-30.5 + pos: -42.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22644 + - uid: 22192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-29.5 + rot: 3.141592653589793 rad + pos: -42.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22645 + - uid: 22193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-29.5 + rot: 3.141592653589793 rad + pos: -40.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22646 + color: '#FF0000FF' + - uid: 22194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-29.5 + rot: 3.141592653589793 rad + pos: -40.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22647 + color: '#FF0000FF' + - uid: 22195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-29.5 + rot: 3.141592653589793 rad + pos: -40.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22648 + color: '#FF0000FF' + - uid: 22196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-29.5 + rot: 3.141592653589793 rad + pos: -40.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22649 + color: '#FF0000FF' + - uid: 22197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-29.5 + rot: 3.141592653589793 rad + pos: -40.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22650 + color: '#FF0000FF' + - uid: 22198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-29.5 + rot: 3.141592653589793 rad + pos: -40.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22651 + color: '#FF0000FF' + - uid: 22199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-29.5 + rot: 1.5707963267948966 rad + pos: -39.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22652 + color: '#FF0000FF' + - uid: 22200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-28.5 + rot: 1.5707963267948966 rad + pos: -38.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22653 + color: '#FF0000FF' + - uid: 22201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-27.5 + rot: 1.5707963267948966 rad + pos: -37.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22654 + color: '#FF0000FF' + - uid: 22202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-26.5 + rot: 1.5707963267948966 rad + pos: -36.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22203 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22204 + components: + - type: Transform + pos: -40.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22205 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22206 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22207 + components: + - type: Transform + pos: -40.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22208 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22209 + components: + - type: Transform + pos: -42.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22655 + - uid: 22210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-25.5 + pos: -42.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22656 + - uid: 22211 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-24.5 + pos: -42.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22657 + - uid: 22212 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-23.5 + pos: -42.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22658 + - uid: 22213 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,-22.5 + pos: -41.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22659 + color: '#FF0000FF' + - uid: 22214 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,-22.5 + pos: -42.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22660 + color: '#FF0000FF' + - uid: 22215 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,-22.5 + pos: -43.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22661 + color: '#FF0000FF' + - uid: 22216 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,-22.5 + pos: -39.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22662 + color: '#FF0000FF' + - uid: 22217 components: - type: Transform - pos: -73.5,-21.5 + rot: 1.5707963267948966 rad + pos: -38.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22663 + color: '#FF0000FF' + - uid: 22218 components: - type: Transform - pos: -73.5,-20.5 + pos: -37.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22219 + components: + - type: Transform + pos: -37.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22220 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22221 + components: + - type: Transform + pos: -35.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22664 + - uid: 22222 components: - type: Transform - pos: -73.5,-19.5 + pos: -35.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22665 + - uid: 22223 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-17.5 + pos: -35.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22666 + - uid: 22224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-16.5 + pos: -35.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22667 + - uid: 22225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-15.5 + pos: -35.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22668 + - uid: 22226 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-14.5 + rot: -1.5707963267948966 rad + pos: -36.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22669 + - uid: 22227 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-12.5 + rot: -1.5707963267948966 rad + pos: -37.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22670 + - uid: 22228 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-11.5 + rot: -1.5707963267948966 rad + pos: -38.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22671 + - uid: 22229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-10.5 + rot: -1.5707963267948966 rad + pos: -39.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22672 + - uid: 22230 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-9.5 + rot: -1.5707963267948966 rad + pos: -40.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22673 + - uid: 22231 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-8.5 + rot: -1.5707963267948966 rad + pos: -41.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22674 + - uid: 22232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-7.5 + pos: -42.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22675 + - uid: 22233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-6.5 + pos: -42.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22676 + - uid: 22234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-5.5 + pos: -42.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22677 + - uid: 22235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-5.5 + pos: -40.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22236 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22237 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22238 + components: + - type: Transform + pos: -40.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22239 + components: + - type: Transform + pos: -42.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22678 + - uid: 22240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-5.5 + pos: -42.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22679 + - uid: 22241 components: - type: Transform rot: -1.5707963267948966 rad - pos: -75.5,-5.5 + pos: -43.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22680 + - uid: 22242 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-5.5 + pos: -44.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22681 + - uid: 22243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-5.5 + pos: -45.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22682 + - uid: 22244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-5.5 + pos: -45.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22683 + - uid: 22245 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-6.5 + rot: 1.5707963267948966 rad + pos: -40.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22684 + - uid: 22246 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-7.5 + rot: 1.5707963267948966 rad + pos: -39.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22685 + - uid: 22247 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-8.5 + pos: -40.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22686 + color: '#FF0000FF' + - uid: 22248 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-9.5 + pos: -40.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22687 + color: '#FF0000FF' + - uid: 22249 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-10.5 + pos: -40.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22688 + color: '#FF0000FF' + - uid: 22250 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-11.5 + pos: -40.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22689 + color: '#FF0000FF' + - uid: 22251 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-12.5 + pos: -42.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22690 + - uid: 22252 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-13.5 + pos: -42.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22691 + - uid: 22253 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-14.5 + pos: -42.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22692 + - uid: 22254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-15.5 + rot: 3.141592653589793 rad + pos: -42.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22693 + - uid: 22255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-15.5 + rot: 3.141592653589793 rad + pos: -42.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22694 + - uid: 22256 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-16.5 + pos: -43.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22695 + - uid: 22257 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-17.5 + pos: -43.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22696 + - uid: 22258 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-18.5 + pos: -43.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22697 + - uid: 22259 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-19.5 + pos: -43.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22698 + - uid: 22260 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-20.5 + pos: -43.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22699 + - uid: 22261 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-21.5 + pos: -41.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22700 + color: '#FF0000FF' + - uid: 22262 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-22.5 + pos: -41.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22701 + color: '#FF0000FF' + - uid: 22263 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-23.5 + pos: -41.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22702 + color: '#FF0000FF' + - uid: 22264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-26.5 + rot: 3.141592653589793 rad + pos: -41.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22703 + - uid: 22265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-26.5 + rot: 3.141592653589793 rad + pos: -41.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22704 + - uid: 22266 components: - type: Transform rot: 1.5707963267948966 rad - pos: -76.5,-26.5 + pos: -39.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22705 + color: '#0000FFFF' + - uid: 22267 components: - type: Transform - pos: -77.5,-25.5 + rot: 3.141592653589793 rad + pos: -43.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22706 + - uid: 22269 components: - type: Transform rot: 1.5707963267948966 rad - pos: -74.5,-25.5 + pos: -42.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22707 + - uid: 22270 components: - type: Transform rot: 1.5707963267948966 rad - pos: -75.5,-25.5 + pos: -41.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22708 + - uid: 22271 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-24.5 + rot: 1.5707963267948966 rad + pos: -40.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22709 + - uid: 22272 components: - type: Transform - pos: -77.5,-24.5 + rot: 1.5707963267948966 rad + pos: -38.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22710 + color: '#0000FFFF' + - uid: 22273 components: - type: Transform - pos: -77.5,-23.5 + rot: 1.5707963267948966 rad + pos: -46.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22711 + color: '#0000FFFF' + - uid: 22274 components: - type: Transform - pos: -77.5,-22.5 + rot: 1.5707963267948966 rad + pos: -48.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22712 + color: '#0000FFFF' + - uid: 22275 components: - type: Transform - pos: -77.5,-21.5 + rot: 1.5707963267948966 rad + pos: -49.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22713 + color: '#0000FFFF' + - uid: 22276 components: - type: Transform - pos: -77.5,-20.5 + rot: 1.5707963267948966 rad + pos: -52.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22714 + color: '#0000FFFF' + - uid: 22277 components: - type: Transform - pos: -77.5,-19.5 + rot: 1.5707963267948966 rad + pos: -50.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22715 + - uid: 22278 components: - type: Transform - pos: -77.5,-18.5 + rot: 1.5707963267948966 rad + pos: -48.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22716 + - uid: 22279 components: - type: Transform - pos: -77.5,-17.5 + rot: 1.5707963267948966 rad + pos: -47.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22717 + - uid: 22280 components: - type: Transform - pos: -77.5,-16.5 + rot: 1.5707963267948966 rad + pos: -46.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22718 + - uid: 22281 components: - type: Transform - pos: -77.5,-15.5 + rot: 1.5707963267948966 rad + pos: -45.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22719 + - uid: 22282 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-13.5 + pos: -50.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22720 + color: '#0000FFFF' + - uid: 22283 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-12.5 + pos: -50.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22721 + color: '#0000FFFF' + - uid: 22284 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-11.5 + pos: -50.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22722 + color: '#0000FFFF' + - uid: 22285 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-10.5 + pos: -49.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22723 + - uid: 22286 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-9.5 + pos: -49.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22724 + - uid: 22287 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-8.5 + pos: -49.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22725 + - uid: 22288 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-7.5 + pos: -49.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22726 + - uid: 22289 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-6.5 + pos: -49.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22727 + - uid: 22290 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-5.5 + pos: -47.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22728 + color: '#0000FFFF' + - uid: 22291 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-4.5 + pos: -47.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22729 + color: '#0000FFFF' + - uid: 22292 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-3.5 + pos: -47.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22730 + color: '#0000FFFF' + - uid: 22293 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-2.5 + pos: -47.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22731 + color: '#0000FFFF' + - uid: 22294 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-1.5 + pos: -49.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22732 + - uid: 22295 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-0.5 + pos: -51.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22733 + - uid: 22296 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,0.5 + pos: -51.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22734 + - uid: 22297 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,1.5 + pos: -51.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22735 + - uid: 22298 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,2.5 + pos: -51.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22736 + - uid: 22299 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,3.5 + pos: -51.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22737 + - uid: 22300 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,4.5 + pos: -51.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22738 + - uid: 22301 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,5.5 + pos: -51.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22739 + - uid: 22302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,6.5 + pos: -53.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22740 + color: '#0000FFFF' + - uid: 22303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,6.5 + pos: -53.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22741 + color: '#0000FFFF' + - uid: 22304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,6.5 + pos: -53.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22742 + color: '#0000FFFF' + - uid: 22305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,6.5 + pos: -53.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22743 + color: '#0000FFFF' + - uid: 22306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,7.5 + pos: -53.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22744 + color: '#0000FFFF' + - uid: 22307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,7.5 + pos: -53.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22745 + color: '#0000FFFF' + - uid: 22308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,7.5 + rot: 3.141592653589793 rad + pos: -41.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22746 + - uid: 22309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,7.5 + rot: 3.141592653589793 rad + pos: -43.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22747 + color: '#0000FFFF' + - uid: 22310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,7.5 + rot: 3.141592653589793 rad + pos: -43.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22748 + color: '#0000FFFF' + - uid: 22311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,7.5 + rot: -1.5707963267948966 rad + pos: -40.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22749 + - uid: 22312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,7.5 + rot: -1.5707963267948966 rad + pos: -39.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22750 + - uid: 22313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,7.5 + rot: -1.5707963267948966 rad + pos: -38.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22751 + - uid: 22314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,7.5 + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22752 + - uid: 22315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,7.5 + rot: -1.5707963267948966 rad + pos: -36.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22753 + - uid: 22316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,7.5 + rot: 3.141592653589793 rad + pos: -35.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22754 + - uid: 22317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,7.5 + rot: 3.141592653589793 rad + pos: -35.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22755 + - uid: 22318 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,7.5 + pos: -46.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22756 + color: '#0000FFFF' + - uid: 22319 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,7.5 + pos: -47.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22757 + - uid: 22320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,7.5 + pos: -47.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22758 + color: '#0000FFFF' + - uid: 22321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,7.5 + pos: -47.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22759 + color: '#0000FFFF' + - uid: 22322 components: - type: Transform - pos: -56.5,6.5 + pos: -47.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22760 + color: '#0000FFFF' + - uid: 22323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,5.5 + pos: -47.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22761 + color: '#0000FFFF' + - uid: 22324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,5.5 + pos: -46.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22762 + - uid: 22325 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,6.5 + pos: -46.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22763 + - uid: 22326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,7.5 + rot: -1.5707963267948966 rad + pos: -47.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22764 + - uid: 22327 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,8.5 + rot: -1.5707963267948966 rad + pos: -48.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22765 + - uid: 22328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,9.5 + rot: -1.5707963267948966 rad + pos: -48.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22766 + color: '#0000FFFF' + - uid: 22329 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,9.5 + pos: -50.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22767 + color: '#0000FFFF' + - uid: 22330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,9.5 + pos: -51.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22768 + color: '#0000FFFF' + - uid: 22331 components: - type: Transform - pos: -49.5,8.5 + rot: 1.5707963267948966 rad + pos: -48.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22769 + color: '#0000FFFF' + - uid: 22332 components: - type: Transform - pos: -49.5,7.5 + rot: 1.5707963267948966 rad + pos: -49.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22770 + color: '#0000FFFF' + - uid: 22333 components: - type: Transform - pos: -49.5,6.5 + rot: 1.5707963267948966 rad + pos: -50.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22771 + color: '#0000FFFF' + - uid: 22334 components: - type: Transform - pos: -49.5,5.5 + rot: 1.5707963267948966 rad + pos: -51.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22772 + color: '#0000FFFF' + - uid: 22335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-83.5 + rot: 1.5707963267948966 rad + pos: -52.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22773 + - uid: 22336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-83.5 + rot: 1.5707963267948966 rad + pos: -53.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22774 + - uid: 22337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-83.5 + rot: 1.5707963267948966 rad + pos: -54.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22775 + - uid: 22338 components: - type: Transform - pos: 98.5,-85.5 + rot: 1.5707963267948966 rad + pos: -55.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22776 + - uid: 22339 components: - type: Transform - pos: 98.5,-86.5 + rot: 1.5707963267948966 rad + pos: -56.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22777 + - uid: 22340 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,-87.5 + pos: -58.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22778 + - uid: 22341 components: - type: Transform - pos: 100.5,-88.5 + rot: 1.5707963267948966 rad + pos: -59.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22779 + - uid: 22342 components: - type: Transform - pos: 96.5,-88.5 + rot: 1.5707963267948966 rad + pos: -60.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22780 + - uid: 22343 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,-87.5 + pos: -61.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22781 + - uid: 22344 components: - type: Transform - pos: 97.5,-87.5 + rot: 1.5707963267948966 rad + pos: -62.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22782 + color: '#0000FFFF' + - uid: 22345 components: - type: Transform - pos: 97.5,-88.5 + rot: 1.5707963267948966 rad + pos: -63.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22783 + color: '#0000FFFF' + - uid: 22346 components: - type: Transform - pos: 97.5,-89.5 + rot: 1.5707963267948966 rad + pos: -66.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22784 + color: '#0000FFFF' + - uid: 22347 components: - type: Transform - pos: 97.5,-85.5 + rot: 1.5707963267948966 rad + pos: -67.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22785 + color: '#0000FFFF' + - uid: 22348 components: - type: Transform - pos: 97.5,-84.5 + rot: 1.5707963267948966 rad + pos: -68.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22786 + color: '#0000FFFF' + - uid: 22349 components: - type: Transform - pos: 97.5,-83.5 + rot: 1.5707963267948966 rad + pos: -69.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22787 + color: '#0000FFFF' + - uid: 22350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-82.5 + rot: 1.5707963267948966 rad + pos: -69.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22788 + - uid: 22351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-82.5 + rot: 1.5707963267948966 rad + pos: -68.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22789 + - uid: 22352 components: - type: Transform - pos: 98.5,-82.5 + rot: 1.5707963267948966 rad + pos: -65.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22790 + color: '#FF0000FF' + - uid: 22353 components: - type: Transform - pos: 98.5,-81.5 + rot: 1.5707963267948966 rad + pos: -64.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22791 + color: '#FF0000FF' + - uid: 22354 components: - type: Transform - pos: 98.5,-80.5 + rot: 1.5707963267948966 rad + pos: -63.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22792 + color: '#FF0000FF' + - uid: 22355 components: - type: Transform - pos: 97.5,-81.5 + rot: 1.5707963267948966 rad + pos: -62.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22793 + - uid: 22356 components: - type: Transform - pos: 97.5,-80.5 + rot: 1.5707963267948966 rad + pos: -60.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22794 + - uid: 22357 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,-79.5 + pos: -59.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22795 + color: '#FF0000FF' + - uid: 22358 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,-79.5 + pos: -58.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22796 + color: '#FF0000FF' + - uid: 22359 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,-79.5 + pos: -57.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22797 + color: '#FF0000FF' + - uid: 22360 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,-78.5 + pos: -56.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22798 + - uid: 22361 components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,-78.5 + pos: -54.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22799 + - uid: 22362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,-78.5 + pos: -53.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22800 + - uid: 22363 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,-78.5 + pos: -52.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22801 + - uid: 22364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-79.5 + rot: 1.5707963267948966 rad + pos: -51.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22802 + - uid: 22365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-78.5 + rot: 1.5707963267948966 rad + pos: -50.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22368 + components: + - type: Transform + pos: -72.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22369 + components: + - type: Transform + pos: -72.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22370 + components: + - type: Transform + pos: -72.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22371 + components: + - type: Transform + pos: -74.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22803 + - uid: 22372 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-77.5 + pos: -74.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22804 + - uid: 22373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-76.5 + pos: -74.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22805 + - uid: 22374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-74.5 + pos: -74.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22806 + - uid: 22375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-73.5 + rot: 1.5707963267948966 rad + pos: -73.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22807 + - uid: 22376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-77.5 + rot: 1.5707963267948966 rad + pos: -72.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22808 + - uid: 22380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-76.5 + rot: 1.5707963267948966 rad + pos: -71.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22809 + - uid: 22381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-73.5 + pos: -72.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22810 + - uid: 22382 components: - type: Transform - pos: 97.5,-72.5 + pos: -72.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22811 + - uid: 22383 components: - type: Transform - pos: 97.5,-69.5 + pos: -72.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22812 + - uid: 22384 components: - type: Transform - pos: 97.5,-68.5 + pos: -72.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22813 + - uid: 22385 components: - type: Transform - pos: 97.5,-67.5 + pos: -72.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22814 + - uid: 22386 components: - type: Transform - pos: 99.5,-72.5 + pos: -74.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22815 + - uid: 22387 components: - type: Transform - pos: 99.5,-71.5 + pos: -74.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22816 + - uid: 22388 components: - type: Transform - pos: 99.5,-70.5 + pos: -74.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22817 + - uid: 22389 components: - type: Transform - pos: 99.5,-69.5 + pos: -74.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22818 + - uid: 22390 components: - type: Transform rot: 3.141592653589793 rad - pos: 99.5,-68.5 + pos: -64.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22819 + - uid: 22391 components: - type: Transform - pos: 99.5,-66.5 + rot: 3.141592653589793 rad + pos: -64.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22820 + - uid: 22392 components: - type: Transform - pos: 99.5,-65.5 + rot: 3.141592653589793 rad + pos: -64.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22821 + - uid: 22393 components: - type: Transform - pos: 97.5,-66.5 + rot: 3.141592653589793 rad + pos: -64.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22822 + color: '#0000FFFF' + - uid: 22394 components: - type: Transform - pos: 97.5,-65.5 + rot: 3.141592653589793 rad + pos: -64.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22823 + color: '#0000FFFF' + - uid: 22395 components: - type: Transform - pos: 97.5,-64.5 + rot: 3.141592653589793 rad + pos: -67.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22824 + - uid: 22396 components: - type: Transform - pos: 99.5,-64.5 + rot: 3.141592653589793 rad + pos: -67.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22825 + color: '#FF0000FF' + - uid: 22397 components: - type: Transform rot: 3.141592653589793 rad - pos: 97.5,-70.5 + pos: -67.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22826 + - uid: 22398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-71.5 + rot: 3.141592653589793 rad + pos: -67.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22827 + - uid: 22399 components: - type: Transform rot: -1.5707963267948966 rad - pos: 95.5,-71.5 + pos: 42.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22828 + - uid: 22400 components: - type: Transform rot: -1.5707963267948966 rad - pos: 94.5,-71.5 + pos: 41.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22829 + - uid: 22401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-71.5 + pos: 45.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22830 + color: '#0000FFFF' + - uid: 22402 components: - type: Transform rot: -1.5707963267948966 rad - pos: 100.5,-67.5 + pos: 44.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22831 + - uid: 22403 components: - type: Transform rot: -1.5707963267948966 rad - pos: 101.5,-67.5 + pos: 43.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22832 + - uid: 22404 components: - type: Transform rot: -1.5707963267948966 rad - pos: 102.5,-67.5 + pos: 42.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22833 + - uid: 22405 components: - type: Transform rot: -1.5707963267948966 rad - pos: 100.5,-71.5 + pos: 41.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22834 + color: '#0000FFFF' + - uid: 22406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-71.5 + pos: 40.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22835 + color: '#0000FFFF' + - uid: 22407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-71.5 + pos: 40.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22836 + color: '#0000FFFF' + - uid: 22408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-67.5 + pos: 40.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22837 + - uid: 22409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-67.5 + pos: 40.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22838 + - uid: 22410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-67.5 + pos: 40.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22839 + - uid: 22411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-67.5 + pos: 40.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22840 + - uid: 22412 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-3.5 + pos: 39.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22841 + - uid: 22413 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-15.5 + pos: 103.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22842 + color: '#0000FFFF' + - uid: 22414 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-15.5 + pos: 104.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22843 + color: '#0000FFFF' + - uid: 22415 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-16.5 + pos: 105.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22844 + - uid: 22416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-16.5 + pos: -43.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22845 + - uid: 22417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-16.5 + pos: -43.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22846 + - uid: 22418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-16.5 + pos: -43.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22847 + - uid: 22419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-15.5 + rot: 1.5707963267948966 rad + pos: -49.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22848 + - uid: 22420 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-14.5 + pos: -43.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22849 + - uid: 22421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-13.5 + pos: -43.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22850 + - uid: 22422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-14.5 + pos: -43.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22851 + color: '#0000FFFF' + - uid: 22423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-13.5 + pos: -43.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22852 + color: '#0000FFFF' + - uid: 22424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-12.5 + pos: -41.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22853 + - uid: 22425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-11.5 + pos: -41.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22854 + - uid: 22426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-10.5 + pos: -41.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22855 + - uid: 22427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-16.5 + pos: -41.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22856 + color: '#FF0000FF' + - uid: 22428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-16.5 + pos: -41.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22857 + color: '#FF0000FF' + - uid: 22429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-16.5 + pos: -41.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22858 + color: '#FF0000FF' + - uid: 22430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-16.5 + pos: -41.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22859 + color: '#FF0000FF' + - uid: 22431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-16.5 + pos: -41.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22860 + color: '#FF0000FF' + - uid: 22432 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-15.5 + pos: -41.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22861 + color: '#FF0000FF' + - uid: 22433 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-15.5 + pos: -42.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22862 + - uid: 22434 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-15.5 + pos: -43.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22863 + - uid: 22435 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-15.5 + pos: -44.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22864 + - uid: 22436 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,-15.5 + pos: -45.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22865 + - uid: 22437 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,-15.5 + pos: -46.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22866 + - uid: 22438 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-33.5 + pos: -47.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22868 + - uid: 22439 components: - type: Transform - pos: 34.5,13.5 + rot: -1.5707963267948966 rad + pos: -48.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22869 + color: '#FF0000FF' + - uid: 22440 components: - type: Transform - pos: 34.5,14.5 + rot: -1.5707963267948966 rad + pos: -44.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22870 + - uid: 22441 components: - type: Transform - pos: 34.5,15.5 + rot: -1.5707963267948966 rad + pos: -45.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22871 + - uid: 22442 components: - type: Transform - pos: 34.5,16.5 + rot: -1.5707963267948966 rad + pos: -46.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22872 + - uid: 22443 components: - type: Transform - pos: 34.5,17.5 + rot: -1.5707963267948966 rad + pos: -47.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22873 + - uid: 22444 components: - type: Transform - pos: 34.5,18.5 + rot: -1.5707963267948966 rad + pos: -48.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22874 + - uid: 22445 components: - type: Transform - pos: 34.5,19.5 + rot: 3.141592653589793 rad + pos: -50.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22875 + color: '#FF0000FF' + - uid: 22446 components: - type: Transform - pos: 34.5,20.5 + rot: 3.141592653589793 rad + pos: -50.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22876 + color: '#FF0000FF' + - uid: 22447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,21.5 + rot: 3.141592653589793 rad + pos: -50.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22877 + color: '#FF0000FF' + - uid: 22448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,21.5 + rot: 3.141592653589793 rad + pos: -49.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22878 + - uid: 22449 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,21.5 + pos: -50.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22879 + - uid: 22450 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,22.5 + pos: -49.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22880 + color: '#0000FFFF' + - uid: 22451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 + rot: 3.141592653589793 rad + pos: -49.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22881 + color: '#0000FFFF' + - uid: 22452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,23.5 + rot: 1.5707963267948966 rad + pos: -51.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22882 + - uid: 22453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,23.5 + rot: 1.5707963267948966 rad + pos: -52.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22883 + - uid: 22454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,23.5 + rot: 1.5707963267948966 rad + pos: -53.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22884 + - uid: 22455 components: - type: Transform - pos: 33.5,22.5 + rot: 3.141592653589793 rad + pos: -49.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22885 + color: '#0000FFFF' + - uid: 22456 components: - type: Transform - pos: 33.5,21.5 + rot: 3.141592653589793 rad + pos: -49.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22886 + color: '#0000FFFF' + - uid: 22457 components: - type: Transform - pos: 33.5,20.5 + rot: 3.141592653589793 rad + pos: -49.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22887 + color: '#0000FFFF' + - uid: 22458 components: - type: Transform - pos: 33.5,19.5 + rot: 3.141592653589793 rad + pos: -49.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22888 + color: '#0000FFFF' + - uid: 22459 components: - type: Transform - pos: 33.5,18.5 + rot: 1.5707963267948966 rad + pos: -48.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22889 + color: '#0000FFFF' + - uid: 22460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,11.5 + rot: 1.5707963267948966 rad + pos: -47.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22890 + color: '#0000FFFF' + - uid: 22461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,12.5 + rot: 1.5707963267948966 rad + pos: -46.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22891 + color: '#0000FFFF' + - uid: 22462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,13.5 + rot: 1.5707963267948966 rad + pos: -45.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22892 + color: '#0000FFFF' + - uid: 22463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,14.5 + rot: 1.5707963267948966 rad + pos: -44.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22893 + color: '#0000FFFF' + - uid: 22464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,15.5 + rot: 1.5707963267948966 rad + pos: -43.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22894 + color: '#0000FFFF' + - uid: 22465 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,16.5 + rot: 1.5707963267948966 rad + pos: -42.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22895 + color: '#0000FFFF' + - uid: 22466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,17.5 + rot: 1.5707963267948966 rad + pos: -41.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22896 + color: '#0000FFFF' + - uid: 22467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,17.5 + rot: 1.5707963267948966 rad + pos: -40.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22897 + color: '#0000FFFF' + - uid: 22468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-81.5 + pos: -39.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22898 + - uid: 22469 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-81.5 + pos: -38.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22899 + - uid: 22470 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-81.5 + pos: -37.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22900 + - uid: 22471 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-80.5 + pos: -36.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22901 + color: '#0000FFFF' + - uid: 22472 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-80.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-84.5 + pos: -35.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22903 + - uid: 22473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-54.5 + rot: -1.5707963267948966 rad + pos: -34.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FFAA00FF' - - uid: 22904 + color: '#0000FFFF' + - uid: 22474 components: - type: Transform - pos: -43.5,-84.5 + rot: -1.5707963267948966 rad + pos: -33.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22905 + color: '#0000FFFF' + - uid: 22475 components: - type: Transform - pos: -43.5,-83.5 + rot: -1.5707963267948966 rad + pos: -32.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22906 + color: '#0000FFFF' + - uid: 22476 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,-85.5 + pos: 6.5,-96.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22907 + - uid: 22477 components: - type: Transform - pos: -43.5,-82.5 + rot: 3.141592653589793 rad + pos: 6.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22908 + color: '#0000FFFF' + - uid: 22478 components: - type: Transform - pos: -43.5,-85.5 + rot: 3.141592653589793 rad + pos: 6.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22909 + color: '#0000FFFF' + - uid: 22479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-41.5 + rot: 3.141592653589793 rad + pos: 6.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22910 + color: '#0000FFFF' + - uid: 22480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,1.5 + rot: 3.141592653589793 rad + pos: 6.5,-100.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22911 + - uid: 22481 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,0.5 + pos: 8.5,-96.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22912 + - uid: 22482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-19.5 + rot: 3.141592653589793 rad + pos: 8.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22913 + color: '#FF0000FF' + - uid: 22483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-19.5 + rot: 3.141592653589793 rad + pos: 8.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22914 + color: '#FF0000FF' + - uid: 22484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 + rot: 1.5707963267948966 rad + pos: 7.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22915 + color: '#0000FFFF' + - uid: 22485 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-18.5 + rot: 1.5707963267948966 rad + pos: 9.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22916 + color: '#0000FFFF' + - uid: 22486 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-17.5 + pos: 10.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22917 + color: '#0000FFFF' + - uid: 22487 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-17.5 + pos: 11.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22918 + color: '#0000FFFF' + - uid: 22488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-23.5 + rot: 1.5707963267948966 rad + pos: 12.5,-101.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22919 + - uid: 22489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-17.5 + rot: 1.5707963267948966 rad + pos: 13.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22920 + color: '#0000FFFF' + - uid: 22490 components: - type: Transform - pos: -3.5,-14.5 + rot: 1.5707963267948966 rad + pos: 14.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22921 + color: '#0000FFFF' + - uid: 22491 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-7.5 + pos: 10.5,-99.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22923 + - uid: 22492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-99.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22924 + - uid: 22493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-17.5 + rot: 1.5707963267948966 rad + pos: 12.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22925 + color: '#FF0000FF' + - uid: 22494 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-24.5 + pos: 13.5,-99.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22926 + - uid: 22495 components: - type: Transform - pos: -47.5,-23.5 + rot: 1.5707963267948966 rad + pos: 14.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22927 + color: '#FF0000FF' + - uid: 22496 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-45.5 + rot: 1.5707963267948966 rad + pos: 65.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22928 + - uid: 22497 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-45.5 + rot: -1.5707963267948966 rad + pos: 11.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22929 + color: '#FF0000FF' + - uid: 22498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-15.5 + rot: -1.5707963267948966 rad + pos: 12.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22930 + - uid: 22499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-7.5 + rot: -1.5707963267948966 rad + pos: 13.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22931 + - uid: 22500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-19.5 + rot: -1.5707963267948966 rad + pos: 14.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22932 + - uid: 22501 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-23.5 + pos: 15.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22933 + color: '#FF0000FF' + - uid: 22502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-11.5 + rot: -1.5707963267948966 rad + pos: 7.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22934 + - uid: 22503 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-13.5 + pos: 8.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22935 + - uid: 22504 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-13.5 + pos: 9.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22936 + - uid: 22505 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-13.5 + pos: 10.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22937 + - uid: 22506 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-15.5 + pos: 11.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22938 + color: '#0000FFFF' + - uid: 22507 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-15.5 + pos: 12.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22939 + color: '#0000FFFF' + - uid: 22508 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-15.5 + pos: 13.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22940 + color: '#0000FFFF' + - uid: 22509 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-15.5 + pos: 14.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22941 + color: '#0000FFFF' + - uid: 22510 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-15.5 + pos: 15.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22942 + color: '#0000FFFF' + - uid: 22511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-17.5 + rot: 1.5707963267948966 rad + pos: 48.5,-97.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22943 + - uid: 22512 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-15.5 + pos: 47.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22944 + color: '#0000FFFF' + - uid: 22513 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-73.5 + pos: 47.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22945 + color: '#0000FFFF' + - uid: 22514 components: - type: Transform - pos: 58.5,-11.5 + rot: 3.141592653589793 rad + pos: -6.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22946 + - uid: 22515 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-10.5 + pos: -8.5,-95.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22947 + - uid: 22516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-9.5 + pos: -7.5,-97.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22948 + - uid: 22517 components: - type: Transform - pos: 58.5,-14.5 + pos: -6.5,-96.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22949 + - uid: 22518 components: - type: Transform - pos: 58.5,-12.5 + pos: -6.5,-97.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22950 + - uid: 22519 components: - type: Transform - pos: 58.5,-13.5 + rot: -1.5707963267948966 rad + pos: -8.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22951 + color: '#0000FFFF' + - uid: 22520 components: - type: Transform - pos: 58.5,-9.5 + rot: -1.5707963267948966 rad + pos: -9.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22952 + color: '#0000FFFF' + - uid: 22521 components: - type: Transform - pos: 58.5,-8.5 + rot: -1.5707963267948966 rad + pos: -10.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22953 + color: '#0000FFFF' + - uid: 22522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-9.5 + rot: -1.5707963267948966 rad + pos: -11.5,-98.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22954 + - uid: 22523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-9.5 + rot: -1.5707963267948966 rad + pos: -12.5,-98.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22955 + - uid: 22524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-9.5 + rot: -1.5707963267948966 rad + pos: -7.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22956 + color: '#FF0000FF' + - uid: 22525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-7.5 + rot: -1.5707963267948966 rad + pos: -8.5,-99.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22957 + - uid: 22526 components: - type: Transform - pos: -23.5,-70.5 + rot: -1.5707963267948966 rad + pos: -9.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22958 + color: '#FF0000FF' + - uid: 22527 components: - type: Transform - pos: 58.5,-6.5 + rot: -1.5707963267948966 rad + pos: -10.5,-99.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22959 + - uid: 22528 components: - type: Transform - pos: 58.5,-4.5 + rot: 3.141592653589793 rad + pos: -6.5,-98.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22960 + - uid: 22529 components: - type: Transform - pos: 58.5,-3.5 + rot: 3.141592653589793 rad + pos: 45.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22961 + - uid: 22530 components: - type: Transform - pos: 58.5,-5.5 + rot: 1.5707963267948966 rad + pos: 46.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22962 + - uid: 22531 components: - type: Transform - pos: 58.5,-1.5 + rot: 1.5707963267948966 rad + pos: 47.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22963 + - uid: 22532 components: - type: Transform - pos: 58.5,-0.5 + rot: 1.5707963267948966 rad + pos: 48.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22964 + - uid: 22533 components: - type: Transform - pos: 56.5,-8.5 + rot: 1.5707963267948966 rad + pos: 49.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22965 + color: '#FF0000FF' + - uid: 22534 components: - type: Transform - pos: 56.5,-7.5 + rot: 1.5707963267948966 rad + pos: 48.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22966 + color: '#FF0000FF' + - uid: 22535 components: - type: Transform - pos: 56.5,-5.5 + rot: 1.5707963267948966 rad + pos: 47.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22967 + color: '#FF0000FF' + - uid: 22536 components: - type: Transform - pos: -47.5,-21.5 + rot: 1.5707963267948966 rad + pos: 46.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22968 + color: '#FF0000FF' + - uid: 22537 components: - type: Transform - pos: 56.5,-4.5 + rot: 1.5707963267948966 rad + pos: 41.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22969 + color: '#FF0000FF' + - uid: 22538 components: - type: Transform - pos: 56.5,-3.5 + rot: 1.5707963267948966 rad + pos: 42.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22970 + color: '#FF0000FF' + - uid: 22539 components: - type: Transform - pos: 56.5,-2.5 + rot: 1.5707963267948966 rad + pos: 43.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22971 + color: '#FF0000FF' + - uid: 22540 components: - type: Transform - pos: 56.5,-1.5 + rot: 1.5707963267948966 rad + pos: 44.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22972 + color: '#FF0000FF' + - uid: 22541 components: - type: Transform - pos: 56.5,-6.5 + rot: 3.141592653589793 rad + pos: 37.5,-107.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22973 + - uid: 22542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-0.5 + rot: 1.5707963267948966 rad + pos: 48.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22974 + - uid: 22543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,0.5 + rot: -1.5707963267948966 rad + pos: 50.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22975 + color: '#FF0000FF' + - uid: 22544 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,-2.5 + pos: -55.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22976 + - uid: 22545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-2.5 + pos: 43.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22977 + - uid: 22546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-2.5 + pos: 43.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22978 + - uid: 22547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,10.5 + pos: 44.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22979 + color: '#0000FFFF' + - uid: 22548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,14.5 + pos: 44.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22980 + - uid: 22549 components: - type: Transform - pos: 57.5,14.5 + pos: 44.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22981 + color: '#0000FFFF' + - uid: 22550 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-5.5 + pos: 30.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22982 + color: '#0000FFFF' + - uid: 22551 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-5.5 + pos: 27.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22983 + color: '#0000FFFF' + - uid: 22552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-5.5 + pos: 26.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22984 + - uid: 22553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-5.5 + rot: 3.141592653589793 rad + pos: 35.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22985 + - uid: 22554 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-5.5 + pos: 34.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22986 + - uid: 22555 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-5.5 + pos: 32.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22987 + - uid: 22556 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,-4.5 + pos: 35.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22988 - components: - - type: Transform - pos: 64.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22989 + - uid: 22557 components: - type: Transform - pos: 64.5,-7.5 + rot: -1.5707963267948966 rad + pos: 29.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22990 + color: '#FF0000FF' + - uid: 22558 components: - type: Transform - pos: 64.5,-6.5 + rot: -1.5707963267948966 rad + pos: 28.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22991 + color: '#FF0000FF' + - uid: 22559 components: - type: Transform - pos: 64.5,-5.5 + pos: 44.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22992 - components: - - type: Transform - pos: 62.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22993 + - uid: 22560 components: - type: Transform - pos: 62.5,-4.5 + rot: -1.5707963267948966 rad + pos: 31.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22994 + - uid: 22561 components: - type: Transform - pos: 62.5,-3.5 + rot: -1.5707963267948966 rad + pos: 27.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22995 + - uid: 22562 components: - type: Transform - pos: 62.5,-2.5 + rot: 3.141592653589793 rad + pos: 35.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22996 + - uid: 22563 components: - type: Transform - pos: 62.5,-5.5 + rot: -1.5707963267948966 rad + pos: 33.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22997 + color: '#0000FFFF' + - uid: 22564 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,-1.5 + pos: -52.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22998 + color: '#0000FFFF' + - uid: 22565 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-7.5 + pos: 32.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22999 + color: '#0000FFFF' + - uid: 22566 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,-7.5 + pos: 34.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23000 + color: '#0000FFFF' + - uid: 22567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-7.5 + pos: -54.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23001 + - uid: 22568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-7.5 + pos: -50.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23002 + color: '#0000FFFF' + - uid: 22569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-7.5 + rot: 3.141592653589793 rad + pos: 35.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23003 + - uid: 22570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 + rot: 1.5707963267948966 rad + pos: 32.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23004 + - uid: 22571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-9.5 + pos: 26.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23005 + color: '#FF0000FF' + - uid: 22572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-9.5 + rot: 3.141592653589793 rad + pos: -62.5,-76.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23006 + - uid: 22573 components: - type: Transform - pos: 77.5,-0.5 + rot: 3.141592653589793 rad + pos: -45.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23007 + - uid: 22574 components: - type: Transform - pos: 81.5,-0.5 + rot: 3.141592653589793 rad + pos: -45.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23008 + - uid: 22575 components: - type: Transform - pos: 85.5,-0.5 + rot: -1.5707963267948966 rad + pos: 27.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23009 + - uid: 22576 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-6.5 + pos: 35.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23010 + color: '#FF0000FF' + - uid: 22577 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-5.5 + pos: 35.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23011 + color: '#FF0000FF' + - uid: 22578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-4.5 + rot: -1.5707963267948966 rad + pos: 33.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23012 + color: '#FF0000FF' + - uid: 22579 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-3.5 + pos: 35.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23013 + color: '#FF0000FF' + - uid: 22580 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,-1.5 + pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23014 + - uid: 22581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-1.5 + pos: 31.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23015 + - uid: 22582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-1.5 + pos: 31.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23016 + - uid: 22583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-1.5 + pos: -46.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23017 + color: '#FF0000FF' + - uid: 22584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-1.5 + rot: 3.141592653589793 rad + pos: 35.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23018 + color: '#FF0000FF' + - uid: 22585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-7.5 + pos: -48.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23019 + color: '#FF0000FF' + - uid: 22586 components: - type: Transform - pos: 81.5,-8.5 + rot: 3.141592653589793 rad + pos: 33.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23020 + - uid: 22587 components: - type: Transform - pos: 81.5,-9.5 + rot: 3.141592653589793 rad + pos: 33.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23021 + - uid: 22588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-10.5 + rot: 3.141592653589793 rad + pos: 33.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23022 + - uid: 22589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-10.5 + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23023 + - uid: 22590 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,-10.5 + pos: 29.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23024 + - uid: 22591 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,-10.5 + pos: 30.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23025 + - uid: 22592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-11.5 + rot: 1.5707963267948966 rad + pos: -49.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23026 + color: '#FF0000FF' + - uid: 22593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-11.5 + pos: 31.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23027 + - uid: 22594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-2.5 + rot: 3.141592653589793 rad + pos: 35.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23028 + color: '#FF0000FF' + - uid: 22595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-2.5 + rot: 3.141592653589793 rad + pos: 35.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23029 + color: '#FF0000FF' + - uid: 22596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-2.5 + rot: -1.5707963267948966 rad + pos: -69.5,-78.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23030 + - uid: 22597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-2.5 + rot: -1.5707963267948966 rad + pos: -71.5,-78.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23031 + - uid: 22598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-2.5 + pos: -62.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23032 + - uid: 22599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-2.5 + pos: -63.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23033 + color: '#FF0000FF' + - uid: 22600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-2.5 + pos: -63.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23034 + color: '#FF0000FF' + - uid: 22602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-3.5 + rot: 3.141592653589793 rad + pos: 35.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23035 + - uid: 22603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-3.5 + rot: -1.5707963267948966 rad + pos: 29.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23036 + - uid: 22604 components: - type: Transform - pos: 77.5,-11.5 + rot: -1.5707963267948966 rad + pos: 28.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23037 + - uid: 22605 components: - type: Transform - pos: 77.5,-10.5 + rot: 1.5707963267948966 rad + pos: -53.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23038 + - uid: 22606 components: - type: Transform - pos: 77.5,-9.5 + pos: -54.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23039 + - uid: 22607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-8.5 + pos: -62.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23040 + color: '#0000FFFF' + - uid: 22608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-8.5 + pos: -63.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23041 + - uid: 22609 components: - type: Transform rot: -1.5707963267948966 rad - pos: 80.5,-8.5 + pos: 32.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23042 + - uid: 22610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-8.5 + rot: 1.5707963267948966 rad + pos: -42.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23043 + - uid: 22611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-8.5 + rot: 3.141592653589793 rad + pos: 33.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23044 + color: '#0000FFFF' + - uid: 22612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-8.5 + rot: 3.141592653589793 rad + pos: 33.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23045 + color: '#0000FFFF' + - uid: 22613 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-7.5 + pos: 31.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23046 + color: '#0000FFFF' + - uid: 22614 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-5.5 + pos: 33.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23047 + color: '#0000FFFF' + - uid: 22615 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-4.5 + pos: 52.5,-95.5 + parent: 2 + - uid: 22616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23048 + color: '#03FCD3FF' + - uid: 22617 components: - type: Transform - pos: 79.5,-1.5 + rot: -1.5707963267948966 rad + pos: 57.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23049 + color: '#03FCD3FF' + - uid: 22618 components: - type: Transform - pos: 79.5,-2.5 + rot: -1.5707963267948966 rad + pos: 56.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23050 + color: '#03FCD3FF' + - uid: 22619 components: - type: Transform - pos: 83.5,-1.5 + rot: -1.5707963267948966 rad + pos: 55.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23051 + color: '#03FCD3FF' + - uid: 22620 components: - type: Transform - pos: 83.5,-2.5 + rot: -1.5707963267948966 rad + pos: 54.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23052 + color: '#03FCD3FF' + - uid: 22621 components: - type: Transform - pos: 87.5,-1.5 + rot: -1.5707963267948966 rad + pos: 58.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23053 + color: '#03FCD3FF' + - uid: 22622 components: - type: Transform - pos: 87.5,-2.5 + rot: -1.5707963267948966 rad + pos: 57.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23054 + color: '#03FCD3FF' + - uid: 22623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-3.5 + rot: -1.5707963267948966 rad + pos: 56.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23055 + color: '#03FCD3FF' + - uid: 22624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-3.5 + rot: -1.5707963267948966 rad + pos: 55.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23056 + color: '#03FCD3FF' + - uid: 22625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-3.5 + rot: -1.5707963267948966 rad + pos: 54.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23057 + color: '#03FCD3FF' + - uid: 22626 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-3.5 + pos: 56.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23058 + - uid: 22627 components: - type: Transform - pos: -8.5,11.5 + rot: 1.5707963267948966 rad + pos: 48.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23059 + - uid: 22628 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-3.5 + pos: -37.5,-73.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23060 + - uid: 22629 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,-3.5 + pos: -36.5,-73.5 + parent: 2 + - uid: 22630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23061 + - uid: 22631 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-3.5 + pos: -52.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23062 + - uid: 22632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-9.5 + rot: 1.5707963267948966 rad + pos: -63.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23063 + - uid: 22633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-8.5 + rot: 1.5707963267948966 rad + pos: -62.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23064 + - uid: 22634 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-6.5 + rot: 1.5707963267948966 rad + pos: -61.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23065 + - uid: 22635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-5.5 + rot: 1.5707963267948966 rad + pos: -60.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23066 + - uid: 22636 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-5.5 + pos: -59.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23067 + color: '#0000FFFF' + - uid: 22637 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-4.5 + pos: -59.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23068 + color: '#0000FFFF' + - uid: 22638 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,-4.5 + pos: -59.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23069 + - uid: 22639 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,-3.5 + pos: -59.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23070 + - uid: 22640 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-3.5 + pos: -59.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23071 + color: '#0000FFFF' + - uid: 22641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-7.5 + rot: 3.141592653589793 rad + pos: -59.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23072 + - uid: 22642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-7.5 + rot: 3.141592653589793 rad + pos: -59.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23073 + - uid: 22643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-7.5 + rot: 3.141592653589793 rad + pos: -59.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23074 + - uid: 22644 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.5,-7.5 + pos: -60.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23075 + - uid: 22645 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,-7.5 + pos: -61.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23076 + - uid: 22646 components: - type: Transform rot: -1.5707963267948966 rad - pos: 76.5,-7.5 + pos: -62.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23077 + - uid: 22647 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,-7.5 + pos: -63.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23078 + - uid: 22648 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,-7.5 + pos: -64.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23079 + - uid: 22649 components: - type: Transform rot: -1.5707963267948966 rad - pos: 79.5,-7.5 + pos: -65.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23080 + - uid: 22650 components: - type: Transform rot: -1.5707963267948966 rad - pos: 80.5,-7.5 + pos: -66.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23081 + - uid: 22651 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,-6.5 + pos: -67.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23082 + color: '#0000FFFF' + - uid: 22652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-6.5 + rot: 3.141592653589793 rad + pos: -68.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23083 + color: '#0000FFFF' + - uid: 22653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-6.5 + rot: 3.141592653589793 rad + pos: -68.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23084 + color: '#0000FFFF' + - uid: 22654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-6.5 + rot: 3.141592653589793 rad + pos: -68.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23085 + color: '#0000FFFF' + - uid: 22655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-6.5 + rot: 3.141592653589793 rad + pos: -68.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23086 + color: '#0000FFFF' + - uid: 22656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-6.5 + rot: 3.141592653589793 rad + pos: -68.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23087 + color: '#0000FFFF' + - uid: 22657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-6.5 + rot: 3.141592653589793 rad + pos: -68.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23088 + color: '#0000FFFF' + - uid: 22658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-6.5 + rot: 1.5707963267948966 rad + pos: -69.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23089 + color: '#0000FFFF' + - uid: 22659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-13.5 + rot: 1.5707963267948966 rad + pos: -70.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23090 + - uid: 22660 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,4.5 + pos: -71.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23091 + - uid: 22661 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,11.5 + pos: -72.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23092 + color: '#0000FFFF' + - uid: 22662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,11.5 + pos: -73.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23093 + color: '#0000FFFF' + - uid: 22663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,11.5 + pos: -73.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23094 + color: '#0000FFFF' + - uid: 22664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,9.5 + pos: -73.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23095 + - uid: 22665 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,10.5 + pos: -72.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23096 + - uid: 22666 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,11.5 + pos: -72.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23097 + - uid: 22667 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,12.5 + pos: -72.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23098 + - uid: 22668 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,13.5 + pos: -72.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23099 + - uid: 22669 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,12.5 + pos: -71.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23100 + color: '#0000FFFF' + - uid: 22670 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,13.5 + pos: -71.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23101 + color: '#0000FFFF' + - uid: 22671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,15.5 + rot: 3.141592653589793 rad + pos: -71.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23102 + - uid: 22672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,14.5 + rot: 3.141592653589793 rad + pos: -71.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23103 + color: '#0000FFFF' + - uid: 22673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,15.5 + rot: 3.141592653589793 rad + pos: -71.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23104 + - uid: 22674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,4.5 + rot: 3.141592653589793 rad + pos: -71.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23105 + - uid: 22675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-54.5 + rot: 3.141592653589793 rad + pos: -71.5,-6.5 parent: 2 - - uid: 23106 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22676 components: - type: Transform - pos: -6.5,-55.5 + rot: -1.5707963267948966 rad + pos: -72.5,-5.5 parent: 2 - - uid: 23107 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22677 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-50.5 + rot: -1.5707963267948966 rad + pos: -73.5,-5.5 parent: 2 - - uid: 23108 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-50.5 + rot: -1.5707963267948966 rad + pos: -74.5,-5.5 parent: 2 - - uid: 23109 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-49.5 + rot: -1.5707963267948966 rad + pos: -75.5,-5.5 parent: 2 - - uid: 23110 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-48.5 + rot: -1.5707963267948966 rad + pos: -76.5,-5.5 parent: 2 - - uid: 23111 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-48.5 + rot: -1.5707963267948966 rad + pos: -77.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23112 + color: '#0000FFFF' + - uid: 22682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-46.5 + rot: -1.5707963267948966 rad + pos: -78.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23113 + color: '#0000FFFF' + - uid: 22683 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-45.5 + pos: -79.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23114 + color: '#0000FFFF' + - uid: 22684 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-47.5 + pos: -79.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23115 + color: '#0000FFFF' + - uid: 22685 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-46.5 + pos: -79.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23116 + color: '#0000FFFF' + - uid: 22686 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-45.5 + pos: -79.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23117 + color: '#0000FFFF' + - uid: 22687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,4.5 + rot: 3.141592653589793 rad + pos: -79.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23118 + - uid: 22688 components: - type: Transform - pos: 74.5,2.5 + rot: 3.141592653589793 rad + pos: -79.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23119 + - uid: 22689 components: - type: Transform - pos: 74.5,3.5 + rot: 3.141592653589793 rad + pos: -79.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23120 + - uid: 22690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,4.5 + rot: 3.141592653589793 rad + pos: -79.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23121 + - uid: 22691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,4.5 + rot: 3.141592653589793 rad + pos: -79.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23122 + - uid: 22692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,4.5 + rot: 1.5707963267948966 rad + pos: -78.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23123 - components: - - type: Transform - pos: 55.5,-95.5 - parent: 2 - - uid: 23124 + - uid: 22693 components: - type: Transform - pos: 54.5,-95.5 + rot: 1.5707963267948966 rad + pos: -77.5,-15.5 parent: 2 - - uid: 23125 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22694 components: - type: Transform - pos: 53.5,-95.5 + rot: 3.141592653589793 rad + pos: -76.5,-16.5 parent: 2 - - uid: 23126 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22695 components: - type: Transform - pos: 52.5,14.5 + rot: 3.141592653589793 rad + pos: -76.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23127 + - uid: 22696 components: - type: Transform - pos: 70.5,-0.5 + rot: 3.141592653589793 rad + pos: -76.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23128 + - uid: 22697 components: - type: Transform - pos: 70.5,-1.5 + rot: 3.141592653589793 rad + pos: -76.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23129 + - uid: 22698 components: - type: Transform - pos: 70.5,0.5 + rot: 3.141592653589793 rad + pos: -76.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23130 + - uid: 22699 components: - type: Transform - pos: 70.5,2.5 + rot: 3.141592653589793 rad + pos: -76.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23131 + - uid: 22700 components: - type: Transform - pos: 70.5,3.5 + rot: 3.141592653589793 rad + pos: -76.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23132 + - uid: 22701 components: - type: Transform - pos: 70.5,1.5 + rot: 3.141592653589793 rad + pos: -76.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23133 + - uid: 22702 components: - type: Transform - pos: 68.5,1.5 + rot: 1.5707963267948966 rad + pos: -74.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23134 + - uid: 22703 components: - type: Transform - pos: 68.5,-0.5 + rot: 1.5707963267948966 rad + pos: -75.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23135 + - uid: 22704 components: - type: Transform - pos: 68.5,0.5 + rot: 1.5707963267948966 rad + pos: -76.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23136 + - uid: 22705 components: - type: Transform - pos: 68.5,-2.5 + pos: -77.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23137 + - uid: 22706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,3.5 + rot: 1.5707963267948966 rad + pos: -74.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23138 + color: '#0000FFFF' + - uid: 22707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,3.5 + rot: 1.5707963267948966 rad + pos: -75.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23139 + color: '#0000FFFF' + - uid: 22708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,3.5 + rot: 3.141592653589793 rad + pos: -76.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23140 + color: '#0000FFFF' + - uid: 22709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,3.5 + pos: -77.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23141 + - uid: 22710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,3.5 + pos: -77.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23142 + - uid: 22711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,4.5 + pos: -77.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23143 + - uid: 22712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,3.5 + pos: -77.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23144 + - uid: 22713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,3.5 + pos: -77.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23145 + - uid: 22714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,3.5 + pos: -77.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23146 + - uid: 22715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,3.5 + pos: -77.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23147 + - uid: 22716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-13.5 + pos: -77.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23148 + color: '#FF0000FF' + - uid: 22717 components: - type: Transform - pos: 51.5,-14.5 + pos: -77.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23149 + - uid: 22718 components: - type: Transform - pos: 51.5,-12.5 + pos: -77.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23150 + - uid: 22719 components: - type: Transform - pos: 51.5,-11.5 + rot: 3.141592653589793 rad + pos: -78.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23151 + - uid: 22720 components: - type: Transform - pos: 51.5,-10.5 + rot: 3.141592653589793 rad + pos: -78.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23152 + - uid: 22721 components: - type: Transform - pos: 51.5,-13.5 + rot: 3.141592653589793 rad + pos: -78.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23153 + - uid: 22722 components: - type: Transform - pos: 52.5,-12.5 + rot: 3.141592653589793 rad + pos: -78.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23154 + color: '#FF0000FF' + - uid: 22723 components: - type: Transform - pos: 52.5,-11.5 + rot: 3.141592653589793 rad + pos: -78.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23155 + color: '#FF0000FF' + - uid: 22724 components: - type: Transform - pos: 52.5,-10.5 + rot: 3.141592653589793 rad + pos: -78.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23156 + color: '#FF0000FF' + - uid: 22725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,4.5 + rot: 3.141592653589793 rad + pos: -78.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23157 + color: '#FF0000FF' + - uid: 22726 components: - type: Transform - pos: -4.5,-24.5 + rot: 3.141592653589793 rad + pos: -78.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23158 + color: '#FF0000FF' + - uid: 22727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-55.5 + rot: 3.141592653589793 rad + pos: -78.5,-5.5 parent: 2 - - uid: 23159 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 + rot: 3.141592653589793 rad + pos: -78.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23160 + - uid: 22729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 + rot: 3.141592653589793 rad + pos: -78.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23161 + - uid: 22730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 + rot: 3.141592653589793 rad + pos: -78.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23162 + - uid: 22731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 + rot: 3.141592653589793 rad + pos: -78.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23163 + - uid: 22732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 + rot: 3.141592653589793 rad + pos: -78.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23164 + - uid: 22733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-6.5 + rot: 3.141592653589793 rad + pos: -78.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23165 + - uid: 22734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 + rot: 3.141592653589793 rad + pos: -78.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23166 + - uid: 22735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-6.5 + rot: 3.141592653589793 rad + pos: -78.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23167 + - uid: 22736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-6.5 + rot: 3.141592653589793 rad + pos: -78.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23168 + - uid: 22737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 + rot: 3.141592653589793 rad + pos: -78.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23169 + color: '#FF0000FF' + - uid: 22738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 + rot: 3.141592653589793 rad + pos: -78.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23170 + color: '#FF0000FF' + - uid: 22739 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-7.5 + pos: -77.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23171 + color: '#FF0000FF' + - uid: 22740 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-7.5 + pos: -76.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23172 + color: '#FF0000FF' + - uid: 22741 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-7.5 + pos: -75.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23173 + color: '#FF0000FF' + - uid: 22742 components: - type: Transform - pos: 0.5,-6.5 + rot: 1.5707963267948966 rad + pos: -74.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23174 + color: '#FF0000FF' + - uid: 22743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 + rot: 1.5707963267948966 rad + pos: -72.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23175 + color: '#FF0000FF' + - uid: 22744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 + rot: 1.5707963267948966 rad + pos: -71.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23176 + color: '#FF0000FF' + - uid: 22745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 + rot: 1.5707963267948966 rad + pos: -70.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23177 + color: '#FF0000FF' + - uid: 22746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 + rot: 1.5707963267948966 rad + pos: -69.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23178 + color: '#FF0000FF' + - uid: 22747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-4.5 + rot: 1.5707963267948966 rad + pos: -68.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23179 + - uid: 22748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-3.5 + rot: 1.5707963267948966 rad + pos: -67.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23180 + - uid: 22749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 + rot: 1.5707963267948966 rad + pos: -66.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23181 + - uid: 22750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-1.5 + rot: 1.5707963267948966 rad + pos: -65.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23182 + - uid: 22751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 + rot: 1.5707963267948966 rad + pos: -64.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23183 + - uid: 22752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 + rot: 1.5707963267948966 rad + pos: -63.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23184 + color: '#FF0000FF' + - uid: 22753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 + rot: 1.5707963267948966 rad + pos: -62.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23185 + color: '#FF0000FF' + - uid: 22754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 + rot: 1.5707963267948966 rad + pos: -61.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23186 + color: '#FF0000FF' + - uid: 22755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-1.5 + rot: 1.5707963267948966 rad + pos: -60.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23187 + color: '#FF0000FF' + - uid: 22756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 + rot: 1.5707963267948966 rad + pos: -59.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23188 + color: '#FF0000FF' + - uid: 22757 components: - type: Transform - pos: -1.5,1.5 + rot: 1.5707963267948966 rad + pos: -58.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23189 + - uid: 22758 components: - type: Transform - pos: -1.5,2.5 + rot: 1.5707963267948966 rad + pos: -57.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23190 + - uid: 22759 components: - type: Transform - pos: 2.5,1.5 + pos: -56.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23191 + color: '#FF0000FF' + - uid: 22760 components: - type: Transform - pos: 2.5,2.5 + rot: -1.5707963267948966 rad + pos: -55.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23192 + color: '#FF0000FF' + - uid: 22761 components: - type: Transform - pos: 2.5,3.5 + rot: -1.5707963267948966 rad + pos: -54.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23193 + color: '#FF0000FF' + - uid: 22762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-36.5 + rot: 3.141592653589793 rad + pos: -53.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23194 + color: '#FF0000FF' + - uid: 22763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-36.5 + rot: 3.141592653589793 rad + pos: -53.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23195 + color: '#FF0000FF' + - uid: 22764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-36.5 + rot: 3.141592653589793 rad + pos: -53.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23196 + color: '#FF0000FF' + - uid: 22765 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-38.5 + pos: -52.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23197 + - uid: 22766 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-38.5 + pos: -51.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23198 + - uid: 22767 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-38.5 + pos: -50.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23199 + - uid: 22768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-38.5 + pos: -49.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23200 + - uid: 22769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-38.5 + pos: -49.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23201 + - uid: 22770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-38.5 + pos: -49.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23202 + - uid: 22771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-57.5 + pos: -49.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23203 + - uid: 22772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-56.5 + rot: -1.5707963267948966 rad + pos: 97.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23204 + color: '#0000FFFF' + - uid: 22773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-56.5 + rot: -1.5707963267948966 rad + pos: 99.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23205 + - uid: 22774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-56.5 + rot: -1.5707963267948966 rad + pos: 100.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23206 + - uid: 22775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-57.5 + pos: 98.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23207 + - uid: 22776 components: - type: Transform - pos: 0.5,-47.5 + pos: 98.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23208 + color: '#0000FFFF' + - uid: 22777 components: - type: Transform - pos: 0.5,-46.5 + rot: 1.5707963267948966 rad + pos: 99.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23209 + color: '#0000FFFF' + - uid: 22778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 + pos: 100.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23210 + color: '#0000FFFF' + - uid: 22779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-32.5 + pos: 96.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23211 + color: '#0000FFFF' + - uid: 22780 components: - type: Transform - pos: -16.5,-42.5 + rot: 1.5707963267948966 rad + pos: 97.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23212 + color: '#0000FFFF' + - uid: 22781 components: - type: Transform - pos: -16.5,-43.5 + pos: 97.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23213 + color: '#FF0000FF' + - uid: 22782 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-14.5 + pos: 97.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23214 + color: '#FF0000FF' + - uid: 22783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-16.5 + pos: 97.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23215 + color: '#FF0000FF' + - uid: 22784 components: - type: Transform - pos: 5.5,-18.5 + pos: 97.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23216 + color: '#FF0000FF' + - uid: 22785 components: - type: Transform - pos: 6.5,-22.5 + pos: 97.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23217 + color: '#FF0000FF' + - uid: 22786 components: - type: Transform - pos: 6.5,-23.5 + pos: 97.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23218 + color: '#FF0000FF' + - uid: 22787 components: - type: Transform - pos: 6.5,-25.5 + rot: -1.5707963267948966 rad + pos: 98.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23219 + color: '#FF0000FF' + - uid: 22788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-29.5 + rot: -1.5707963267948966 rad + pos: 99.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23220 + color: '#FF0000FF' + - uid: 22789 components: - type: Transform - pos: 6.5,-27.5 + pos: 98.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23221 + color: '#0000FFFF' + - uid: 22790 components: - type: Transform - pos: 6.5,-28.5 + pos: 98.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23222 + color: '#0000FFFF' + - uid: 22791 components: - type: Transform - pos: 6.5,-29.5 + pos: 98.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23223 + color: '#0000FFFF' + - uid: 22792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-32.5 + pos: 97.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23224 + color: '#FF0000FF' + - uid: 22793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-32.5 + pos: 97.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23225 + color: '#FF0000FF' + - uid: 22794 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-44.5 + pos: 100.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23226 + color: '#0000FFFF' + - uid: 22795 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-44.5 + pos: 97.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23227 + color: '#0000FFFF' + - uid: 22796 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-44.5 + pos: 96.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23228 + color: '#0000FFFF' + - uid: 22797 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-44.5 + pos: 96.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23229 + color: '#FF0000FF' + - uid: 22798 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-44.5 + pos: 98.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23230 + color: '#FF0000FF' + - uid: 22799 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-44.5 + pos: 99.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23231 + color: '#FF0000FF' + - uid: 22800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-43.5 + rot: 1.5707963267948966 rad + pos: 100.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23232 + color: '#FF0000FF' + - uid: 22801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-43.5 + rot: 3.141592653589793 rad + pos: 97.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23233 + color: '#FF0000FF' + - uid: 22802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-43.5 + rot: 3.141592653589793 rad + pos: 99.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23234 + color: '#0000FFFF' + - uid: 22803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-43.5 + rot: 3.141592653589793 rad + pos: 99.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23235 + color: '#0000FFFF' + - uid: 22804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-43.5 + rot: 3.141592653589793 rad + pos: 99.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23236 + color: '#0000FFFF' + - uid: 22805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-43.5 + rot: 3.141592653589793 rad + pos: 99.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23237 + color: '#0000FFFF' + - uid: 22806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-43.5 + rot: 3.141592653589793 rad + pos: 99.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23238 + color: '#0000FFFF' + - uid: 22807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-43.5 + rot: 3.141592653589793 rad + pos: 97.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23239 + color: '#FF0000FF' + - uid: 22808 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-38.5 + pos: 97.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23240 + color: '#FF0000FF' + - uid: 22809 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-39.5 + pos: 97.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23241 + color: '#FF0000FF' + - uid: 22810 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-41.5 + pos: 97.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23242 + color: '#FF0000FF' + - uid: 22811 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-42.5 + pos: 97.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23243 + color: '#FF0000FF' + - uid: 22812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-43.5 + pos: 97.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23244 + color: '#FF0000FF' + - uid: 22813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-54.5 + pos: 97.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23245 + color: '#FF0000FF' + - uid: 22814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-43.5 + pos: 99.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23246 + color: '#0000FFFF' + - uid: 22815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-43.5 + pos: 99.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23247 + color: '#0000FFFF' + - uid: 22816 components: - type: Transform - pos: 0.5,-45.5 + pos: 99.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23248 + color: '#0000FFFF' + - uid: 22817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-43.5 + pos: 99.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23249 + color: '#0000FFFF' + - uid: 22818 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-42.5 + pos: 99.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23250 + color: '#0000FFFF' + - uid: 22819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-41.5 + pos: 99.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23251 + color: '#0000FFFF' + - uid: 22820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-35.5 + pos: 99.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23252 + color: '#0000FFFF' + - uid: 22821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-44.5 + pos: 97.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23253 + color: '#FF0000FF' + - uid: 22822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-44.5 + pos: 97.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23254 + color: '#FF0000FF' + - uid: 22823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-44.5 + pos: 97.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23255 + color: '#FF0000FF' + - uid: 22824 components: - type: Transform - pos: 5.5,-43.5 + pos: 99.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23256 + color: '#0000FFFF' + - uid: 22825 components: - type: Transform - pos: 5.5,-42.5 + rot: 3.141592653589793 rad + pos: 97.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23257 + color: '#FF0000FF' + - uid: 22826 components: - type: Transform - pos: 5.5,-41.5 + rot: -1.5707963267948966 rad + pos: 96.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23258 + color: '#FF0000FF' + - uid: 22827 components: - type: Transform - pos: 0.5,-48.5 + rot: -1.5707963267948966 rad + pos: 95.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23259 + color: '#FF0000FF' + - uid: 22828 components: - type: Transform - pos: 0.5,-49.5 + rot: -1.5707963267948966 rad + pos: 94.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23260 + color: '#FF0000FF' + - uid: 22829 components: - type: Transform - pos: 0.5,-50.5 + rot: -1.5707963267948966 rad + pos: 99.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23261 + color: '#FF0000FF' + - uid: 22830 components: - type: Transform - pos: 0.5,-51.5 + rot: -1.5707963267948966 rad + pos: 100.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23262 + color: '#0000FFFF' + - uid: 22831 components: - type: Transform - pos: 0.5,-52.5 + rot: -1.5707963267948966 rad + pos: 101.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23263 + color: '#0000FFFF' + - uid: 22832 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-27.5 + pos: 102.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23264 + color: '#0000FFFF' + - uid: 22833 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-27.5 + pos: 100.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23265 + color: '#FF0000FF' + - uid: 22834 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-29.5 + pos: 101.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23266 + color: '#FF0000FF' + - uid: 22835 components: - type: Transform - pos: 18.5,-42.5 + rot: -1.5707963267948966 rad + pos: 102.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23267 + color: '#FF0000FF' + - uid: 22836 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-29.5 + pos: 97.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23268 + color: '#0000FFFF' + - uid: 22837 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-24.5 + rot: -1.5707963267948966 rad + pos: 96.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23269 + color: '#0000FFFF' + - uid: 22838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-22.5 + rot: -1.5707963267948966 rad + pos: 95.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23270 + color: '#0000FFFF' + - uid: 22839 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-54.5 + pos: 94.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23271 + color: '#0000FFFF' + - uid: 22840 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-20.5 + pos: 31.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23272 + color: '#0000FFFF' + - uid: 22841 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-19.5 + rot: 1.5707963267948966 rad + pos: -44.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23273 + color: '#FF0000FF' + - uid: 22842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-52.5 + rot: 1.5707963267948966 rad + pos: -45.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23274 + color: '#FF0000FF' + - uid: 22843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-17.5 + rot: 1.5707963267948966 rad + pos: -44.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23275 + color: '#0000FFFF' + - uid: 22844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-16.5 + rot: 1.5707963267948966 rad + pos: -45.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23276 + color: '#0000FFFF' + - uid: 22845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-15.5 + rot: 1.5707963267948966 rad + pos: -46.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23277 + color: '#0000FFFF' + - uid: 22846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-15.5 + rot: 1.5707963267948966 rad + pos: -47.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23278 + color: '#0000FFFF' + - uid: 22847 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-16.5 + pos: -48.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23279 + color: '#0000FFFF' + - uid: 22848 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-17.5 + pos: -48.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23280 + color: '#0000FFFF' + - uid: 22849 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-18.5 + pos: -48.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23281 + color: '#0000FFFF' + - uid: 22850 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-19.5 + pos: -46.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23282 + color: '#FF0000FF' + - uid: 22851 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-20.5 + pos: -46.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23283 + color: '#FF0000FF' + - uid: 22852 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-21.5 + pos: -46.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23284 + color: '#FF0000FF' + - uid: 22853 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-22.5 + pos: -46.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23285 + color: '#FF0000FF' + - uid: 22854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-44.5 + rot: 3.141592653589793 rad + pos: -46.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23286 + color: '#FF0000FF' + - uid: 22855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-25.5 + rot: 1.5707963267948966 rad + pos: -49.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23287 + color: '#0000FFFF' + - uid: 22856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-26.5 + rot: 1.5707963267948966 rad + pos: -50.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23288 + color: '#0000FFFF' + - uid: 22857 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-31.5 + rot: 1.5707963267948966 rad + pos: -51.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23289 + color: '#0000FFFF' + - uid: 22858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-31.5 + rot: 1.5707963267948966 rad + pos: -52.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23290 + color: '#0000FFFF' + - uid: 22859 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-32.5 + pos: -53.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23292 - components: - - type: Transform - pos: -16.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23293 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23294 - components: - - type: Transform - pos: -13.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23295 - components: - - type: Transform - pos: -13.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23296 + color: '#0000FFFF' + - uid: 22860 components: - type: Transform - pos: -13.5,-47.5 + rot: 3.141592653589793 rad + pos: -54.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23297 + color: '#0000FFFF' + - uid: 22861 components: - type: Transform - pos: -14.5,-33.5 + rot: -1.5707963267948966 rad + pos: -47.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23298 + color: '#FF0000FF' + - uid: 22862 components: - type: Transform - pos: -12.5,-45.5 + rot: -1.5707963267948966 rad + pos: -48.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23299 + color: '#FF0000FF' + - uid: 22863 components: - type: Transform - pos: -12.5,-46.5 + rot: -1.5707963267948966 rad + pos: -49.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23300 + color: '#FF0000FF' + - uid: 22864 components: - type: Transform - pos: -12.5,-47.5 + rot: -1.5707963267948966 rad + pos: -50.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23301 + color: '#FF0000FF' + - uid: 22865 components: - type: Transform - pos: -12.5,-48.5 + rot: -1.5707963267948966 rad + pos: -51.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23302 + color: '#FF0000FF' + - uid: 22866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,6.5 + rot: -1.5707963267948966 rad + pos: -47.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23303 + - uid: 22867 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,5.5 + pos: -55.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23304 + color: '#0000FFFF' + - uid: 22868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,5.5 + pos: 34.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23305 + color: '#0000FFFF' + - uid: 22869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-7.5 + pos: 34.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23306 + color: '#0000FFFF' + - uid: 22870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-7.5 + pos: 34.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23307 + color: '#0000FFFF' + - uid: 22871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-9.5 + pos: 34.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23308 + - uid: 22872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-9.5 + pos: 34.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23309 + - uid: 22873 components: - type: Transform - pos: 79.5,-0.5 + pos: 34.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23310 + color: '#0000FFFF' + - uid: 22874 components: - type: Transform - pos: 83.5,-0.5 + pos: 34.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23311 + color: '#0000FFFF' + - uid: 22875 components: - type: Transform - pos: 87.5,-0.5 + pos: 34.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23312 + color: '#0000FFFF' + - uid: 22876 components: - type: Transform rot: 1.5707963267948966 rad - pos: 111.5,-42.5 + pos: 35.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23313 + color: '#0000FFFF' + - uid: 22877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 113.5,-40.5 + rot: 1.5707963267948966 rad + pos: 36.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23314 + color: '#0000FFFF' + - uid: 22878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 114.5,-40.5 + rot: 3.141592653589793 rad + pos: 39.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23315 + - uid: 22879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 115.5,-40.5 + rot: 3.141592653589793 rad + pos: 39.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23316 + - uid: 22880 components: - type: Transform rot: -1.5707963267948966 rad - pos: 116.5,-40.5 + pos: 38.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23317 + - uid: 22881 components: - type: Transform rot: -1.5707963267948966 rad - pos: 121.5,-40.5 + pos: 37.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23318 + - uid: 22882 components: - type: Transform rot: -1.5707963267948966 rad - pos: 118.5,-40.5 + pos: 35.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23319 + - uid: 22883 components: - type: Transform rot: -1.5707963267948966 rad - pos: 119.5,-40.5 + pos: 34.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23320 + - uid: 22884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 120.5,-40.5 + pos: 33.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23321 + - uid: 22885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 124.5,-40.5 + pos: 33.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23322 + - uid: 22886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 122.5,-40.5 + pos: 33.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23323 + - uid: 22887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 123.5,-40.5 + pos: 33.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23324 + - uid: 22888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 123.5,-38.5 + pos: 33.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23325 + color: '#FF0000FF' + - uid: 22889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 125.5,-40.5 + rot: 3.141592653589793 rad + pos: 30.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23326 + - uid: 22890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 126.5,-40.5 + rot: 3.141592653589793 rad + pos: 30.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23327 + - uid: 22891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 127.5,-40.5 + rot: 3.141592653589793 rad + pos: 30.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23328 + - uid: 22892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 120.5,-38.5 + rot: 3.141592653589793 rad + pos: 30.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23329 + color: '#FF0000FF' + - uid: 22893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 115.5,-38.5 + rot: 3.141592653589793 rad + pos: 30.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23330 + color: '#FF0000FF' + - uid: 22895 components: - type: Transform rot: -1.5707963267948966 rad - pos: 126.5,-38.5 + pos: 32.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23331 + color: '#FF0000FF' + - uid: 22897 components: - type: Transform rot: -1.5707963267948966 rad - pos: 125.5,-38.5 + pos: -32.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23332 + - uid: 22898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 124.5,-38.5 + pos: -33.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23333 + - uid: 22899 components: - type: Transform rot: -1.5707963267948966 rad - pos: 121.5,-38.5 + pos: -34.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23334 + - uid: 22900 components: - type: Transform rot: -1.5707963267948966 rad - pos: 122.5,-38.5 + pos: -33.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23335 + color: '#FF0000FF' + - uid: 22901 components: - type: Transform rot: -1.5707963267948966 rad - pos: 119.5,-38.5 + pos: -34.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23336 + color: '#FF0000FF' + - uid: 22902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 118.5,-38.5 + rot: 3.141592653589793 rad + pos: -42.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23337 + - uid: 22903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 117.5,-38.5 + rot: 1.5707963267948966 rad + pos: -47.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23338 + color: '#FFAA00FF' + - uid: 22904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 114.5,-38.5 + pos: -43.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23339 + color: '#FF0000FF' + - uid: 22905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 113.5,-38.5 + pos: -43.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23340 + color: '#FF0000FF' + - uid: 22906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 112.5,-38.5 + rot: 3.141592653589793 rad + pos: -42.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23341 + - uid: 22907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 111.5,-38.5 + pos: -43.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23342 + color: '#FF0000FF' + - uid: 22908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 110.5,-42.5 + pos: -43.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23343 + - uid: 22909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 109.5,-42.5 + rot: 1.5707963267948966 rad + pos: 88.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23344 + - uid: 22910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 108.5,-42.5 + rot: 1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23345 + color: '#0000FFFF' + - uid: 22911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 106.5,-42.5 + rot: 3.141592653589793 rad + pos: -16.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23346 + - uid: 22912 components: - type: Transform rot: -1.5707963267948966 rad - pos: 105.5,-42.5 + pos: 3.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23347 + color: '#00FFFFFF' + - uid: 22913 components: - type: Transform rot: -1.5707963267948966 rad - pos: 104.5,-42.5 + pos: -2.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23348 + color: '#00FFFFFF' + - uid: 22914 components: - type: Transform rot: -1.5707963267948966 rad - pos: 103.5,-42.5 + pos: -3.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23349 + color: '#00FFFFFF' + - uid: 22915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-40.5 + rot: 3.141592653589793 rad + pos: -4.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23350 + color: '#00FFFFFF' + - uid: 22916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-40.5 + rot: 1.5707963267948966 rad + pos: -10.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23351 + color: '#00FFFFFF' + - uid: 22917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 106.5,-40.5 + rot: 1.5707963267948966 rad + pos: -11.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23352 + color: '#00FFFFFF' + - uid: 22918 components: - type: Transform rot: -1.5707963267948966 rad - pos: 107.5,-40.5 + pos: 43.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23353 + - uid: 22919 components: - type: Transform rot: -1.5707963267948966 rad - pos: 108.5,-40.5 + pos: 3.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23354 + color: '#00FFFFFF' + - uid: 22920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 109.5,-40.5 + pos: -3.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23355 + color: '#00FFFFFF' + - uid: 22921 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,10.5 + pos: 46.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23356 + color: '#FF0000FF' + - uid: 22922 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-20.5 + pos: 42.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23357 + - uid: 22923 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23358 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23359 - components: - - type: Transform - pos: 9.5,-37.5 + pos: 50.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23360 + color: '#FF0000FF' + - uid: 22924 components: - type: Transform - pos: 9.5,-38.5 + rot: 3.141592653589793 rad + pos: 52.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23361 + color: '#0000FFFF' + - uid: 22925 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-39.5 + pos: 42.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23362 + color: '#FF0000FF' + - uid: 22926 components: - type: Transform - pos: 10.5,-40.5 + pos: -47.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23363 + color: '#0000FFFF' + - uid: 22927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-41.5 + rot: 3.141592653589793 rad + pos: -72.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23364 + color: '#FF0000FF' + - uid: 22928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-41.5 + rot: 3.141592653589793 rad + pos: -74.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23365 + color: '#0000FFFF' + - uid: 22929 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-41.5 + pos: 49.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23366 + color: '#FF0000FF' + - uid: 22930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-41.5 + pos: 45.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23367 + color: '#FF0000FF' + - uid: 22931 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-41.5 + pos: 50.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23368 + color: '#FF0000FF' + - uid: 22932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-41.5 + rot: -1.5707963267948966 rad + pos: 41.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23369 + color: '#0000FFFF' + - uid: 22933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-41.5 + rot: 3.141592653589793 rad + pos: 56.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23370 + color: '#0000FFFF' + - uid: 22934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-40.5 + rot: -1.5707963267948966 rad + pos: 53.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23371 + color: '#0000FFFF' + - uid: 22935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-40.5 + rot: -1.5707963267948966 rad + pos: 54.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23372 + color: '#0000FFFF' + - uid: 22936 components: - type: Transform - pos: 9.5,-41.5 + rot: -1.5707963267948966 rad + pos: 55.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23373 + color: '#0000FFFF' + - uid: 22937 components: - type: Transform - pos: 9.5,-42.5 + rot: -1.5707963267948966 rad + pos: 52.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23374 + color: '#FF0000FF' + - uid: 22938 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-40.5 + pos: 53.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23375 + color: '#FF0000FF' + - uid: 22939 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-40.5 + pos: 55.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23376 + color: '#FF0000FF' + - uid: 22940 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-40.5 + pos: 56.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23377 + color: '#FF0000FF' + - uid: 22941 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-40.5 + pos: 54.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23378 + color: '#FF0000FF' + - uid: 22942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-40.5 + rot: 3.141592653589793 rad + pos: 45.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23379 + color: '#0000FFFF' + - uid: 22943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-40.5 + rot: 1.5707963267948966 rad + pos: 57.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23380 + color: '#FF0000FF' + - uid: 22944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-40.5 + rot: 1.5707963267948966 rad + pos: -21.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23381 + color: '#FF0000FF' + - uid: 22945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-40.5 + pos: 58.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23382 + color: '#FF0000FF' + - uid: 22946 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-39.5 + pos: 56.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23383 + color: '#0000FFFF' + - uid: 22947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-38.5 + rot: 1.5707963267948966 rad + pos: 57.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23384 + color: '#0000FFFF' + - uid: 22948 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-37.5 + pos: 58.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23385 + color: '#FF0000FF' + - uid: 22949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-39.5 + pos: 58.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23386 + color: '#FF0000FF' + - uid: 22950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-39.5 + pos: 58.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23387 + color: '#FF0000FF' + - uid: 22951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-18.5 + pos: 58.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23388 + color: '#FF0000FF' + - uid: 22952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-18.5 + pos: 58.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23389 + color: '#FF0000FF' + - uid: 22953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-25.5 + rot: 1.5707963267948966 rad + pos: 58.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23390 + color: '#0000FFFF' + - uid: 22954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-21.5 + rot: 1.5707963267948966 rad + pos: 59.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23391 + color: '#0000FFFF' + - uid: 22955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-21.5 + rot: 1.5707963267948966 rad + pos: 62.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23392 + color: '#0000FFFF' + - uid: 22956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-28.5 + rot: 1.5707963267948966 rad + pos: 59.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23393 + color: '#FF0000FF' + - uid: 22957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-29.5 + pos: -23.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23394 + color: '#0000FFFF' + - uid: 22958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-29.5 + pos: 58.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23395 + color: '#FF0000FF' + - uid: 22959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-29.5 + pos: 58.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23396 + color: '#FF0000FF' + - uid: 22960 components: - type: Transform - pos: 19.5,-28.5 + pos: 58.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23397 + color: '#FF0000FF' + - uid: 22961 components: - type: Transform - pos: 19.5,-27.5 + pos: 58.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23398 + color: '#FF0000FF' + - uid: 22962 components: - type: Transform - pos: 14.5,-30.5 + pos: 58.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23399 + color: '#FF0000FF' + - uid: 22963 components: - type: Transform - pos: 14.5,-32.5 + pos: 58.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23400 + color: '#FF0000FF' + - uid: 22964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-32.5 + pos: 56.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23401 + color: '#0000FFFF' + - uid: 22965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-32.5 + pos: 56.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23402 + color: '#0000FFFF' + - uid: 22966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-32.5 + pos: 56.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23403 + color: '#0000FFFF' + - uid: 22967 components: - type: Transform - pos: 11.5,-17.5 + pos: -47.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23404 + color: '#0000FFFF' + - uid: 22968 components: - type: Transform - pos: 11.5,-18.5 + pos: 56.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23405 + color: '#0000FFFF' + - uid: 22969 components: - type: Transform - pos: 11.5,-21.5 + pos: 56.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23406 + color: '#0000FFFF' + - uid: 22970 components: - type: Transform - pos: 11.5,-22.5 + pos: 56.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23407 + color: '#0000FFFF' + - uid: 22971 components: - type: Transform - pos: 11.5,-20.5 + pos: 56.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23408 + color: '#0000FFFF' + - uid: 22972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-16.5 + pos: 56.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23409 + color: '#0000FFFF' + - uid: 22973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-24.5 + rot: -1.5707963267948966 rad + pos: 55.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23410 + color: '#0000FFFF' + - uid: 22974 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-25.5 + pos: 56.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23411 + color: '#0000FFFF' + - uid: 22975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-26.5 + rot: -1.5707963267948966 rad + pos: 57.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23412 + color: '#FF0000FF' + - uid: 22976 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-27.5 + pos: 56.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23413 + color: '#FF0000FF' + - uid: 22977 components: - type: Transform - pos: -4.5,-25.5 + rot: -1.5707963267948966 rad + pos: 55.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23414 + color: '#FF0000FF' + - uid: 22979 components: - type: Transform - pos: -4.5,-26.5 + rot: 1.5707963267948966 rad + pos: 57.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23415 + color: '#0000FFFF' + - uid: 22980 components: - type: Transform - pos: -4.5,-27.5 + pos: 57.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23416 + color: '#FF0000FF' + - uid: 22981 components: - type: Transform - pos: -4.5,-28.5 + rot: -1.5707963267948966 rad + pos: 46.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23417 + color: '#FF0000FF' + - uid: 22982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-29.5 + rot: -1.5707963267948966 rad + pos: 47.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23418 + color: '#FF0000FF' + - uid: 22983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-29.5 + rot: -1.5707963267948966 rad + pos: 45.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23419 + color: '#FF0000FF' + - uid: 22984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-29.5 + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23420 + color: '#FF0000FF' + - uid: 22985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 + rot: -1.5707963267948966 rad + pos: 49.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23421 + color: '#FF0000FF' + - uid: 22986 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-30.5 + rot: -1.5707963267948966 rad + pos: 44.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23422 + color: '#FF0000FF' + - uid: 22987 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-31.5 + pos: 50.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23423 + color: '#FF0000FF' + - uid: 22988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-32.5 + pos: 64.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23424 + color: '#0000FFFF' + - uid: 22989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 + pos: 64.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23425 + color: '#0000FFFF' + - uid: 22990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-32.5 + pos: 64.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23426 + color: '#0000FFFF' + - uid: 22991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-32.5 + pos: 64.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23427 + color: '#0000FFFF' + - uid: 22992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-33.5 + pos: 62.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23428 + color: '#FF0000FF' + - uid: 22993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-33.5 + pos: 62.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23429 + color: '#FF0000FF' + - uid: 22994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-33.5 + pos: 62.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23430 + color: '#FF0000FF' + - uid: 22995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-33.5 + pos: 62.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23431 + color: '#FF0000FF' + - uid: 22996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-33.5 + pos: 62.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23432 + color: '#FF0000FF' + - uid: 22997 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-33.5 + pos: 63.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23433 + color: '#FF0000FF' + - uid: 22998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-32.5 + rot: -1.5707963267948966 rad + pos: 64.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23434 + color: '#FF0000FF' + - uid: 22999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-32.5 + rot: -1.5707963267948966 rad + pos: 63.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23435 + color: '#FF0000FF' + - uid: 23000 components: - type: Transform - pos: -2.5,-44.5 + rot: -1.5707963267948966 rad + pos: 66.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23436 + color: '#FF0000FF' + - uid: 23001 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-44.5 + pos: 65.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23437 + color: '#FF0000FF' + - uid: 23002 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-44.5 + pos: 67.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23438 + color: '#FF0000FF' + - uid: 23003 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-44.5 + pos: 65.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23439 + color: '#0000FFFF' + - uid: 23004 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-44.5 + pos: 67.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23440 + color: '#0000FFFF' + - uid: 23005 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-44.5 + pos: 66.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23441 + color: '#0000FFFF' + - uid: 23006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-44.5 + pos: 77.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23442 + color: '#0000FFFF' + - uid: 23007 components: - type: Transform - pos: -16.5,-40.5 + pos: 81.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23443 + color: '#0000FFFF' + - uid: 23008 components: - type: Transform - pos: -16.5,-39.5 + pos: 85.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23444 + color: '#0000FFFF' + - uid: 23009 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-50.5 + pos: 82.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23445 + color: '#0000FFFF' + - uid: 23010 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-51.5 + pos: 82.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23446 + color: '#0000FFFF' + - uid: 23011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-49.5 + rot: 3.141592653589793 rad + pos: 82.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23448 + color: '#0000FFFF' + - uid: 23012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-49.5 + rot: 3.141592653589793 rad + pos: 82.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23449 + color: '#0000FFFF' + - uid: 23013 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-49.5 + pos: 78.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23450 + color: '#0000FFFF' + - uid: 23014 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-49.5 + pos: 79.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23451 + color: '#0000FFFF' + - uid: 23015 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-49.5 + pos: 80.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23452 + color: '#0000FFFF' + - uid: 23016 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-49.5 + pos: 83.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23453 + color: '#0000FFFF' + - uid: 23017 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-53.5 + pos: 84.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23454 + color: '#0000FFFF' + - uid: 23018 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-51.5 + pos: 83.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23457 + color: '#0000FFFF' + - uid: 23019 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-50.5 + pos: 81.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23458 + color: '#0000FFFF' + - uid: 23020 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-49.5 + pos: 81.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23459 + color: '#0000FFFF' + - uid: 23021 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-47.5 + rot: -1.5707963267948966 rad + pos: 80.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23460 + color: '#0000FFFF' + - uid: 23022 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-48.5 + pos: 79.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23461 + color: '#0000FFFF' + - uid: 23023 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-48.5 + pos: 78.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23462 + color: '#0000FFFF' + - uid: 23024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-49.5 + rot: -1.5707963267948966 rad + pos: 77.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23463 + color: '#0000FFFF' + - uid: 23025 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-50.5 + rot: -1.5707963267948966 rad + pos: 74.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23464 + color: '#0000FFFF' + - uid: 23026 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-33.5 + rot: -1.5707963267948966 rad + pos: 73.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23465 + color: '#0000FFFF' + - uid: 23027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-34.5 + rot: 1.5707963267948966 rad + pos: 81.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23466 + color: '#0000FFFF' + - uid: 23028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-35.5 + rot: 1.5707963267948966 rad + pos: 80.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23467 + color: '#0000FFFF' + - uid: 23029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-37.5 + rot: 1.5707963267948966 rad + pos: 79.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23468 + color: '#0000FFFF' + - uid: 23030 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-38.5 + pos: 78.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23469 + color: '#0000FFFF' + - uid: 23031 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-38.5 + pos: 77.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23470 + color: '#0000FFFF' + - uid: 23032 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-31.5 + pos: 76.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23471 + color: '#0000FFFF' + - uid: 23033 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-31.5 + pos: 75.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23472 + color: '#0000FFFF' + - uid: 23034 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-31.5 + pos: 75.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23473 + color: '#FF0000FF' + - uid: 23035 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-32.5 + pos: 76.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23474 + color: '#FF0000FF' + - uid: 23036 components: - type: Transform - pos: -14.5,-34.5 + pos: 77.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23475 + color: '#FF0000FF' + - uid: 23037 components: - type: Transform - pos: -14.5,-35.5 + pos: 77.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23476 + color: '#FF0000FF' + - uid: 23038 components: - type: Transform - pos: -14.5,-37.5 + pos: 77.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23477 + color: '#FF0000FF' + - uid: 23039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-40.5 + rot: -1.5707963267948966 rad + pos: 78.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23478 + color: '#FF0000FF' + - uid: 23040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-40.5 + rot: -1.5707963267948966 rad + pos: 79.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23479 + color: '#FF0000FF' + - uid: 23041 components: - type: Transform - pos: -10.5,-31.5 + rot: -1.5707963267948966 rad + pos: 80.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23480 + color: '#FF0000FF' + - uid: 23042 components: - type: Transform - pos: -10.5,-30.5 + rot: -1.5707963267948966 rad + pos: 81.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23481 + color: '#FF0000FF' + - uid: 23043 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-29.5 + pos: 82.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23482 + color: '#FF0000FF' + - uid: 23044 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-29.5 + pos: 83.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23483 + color: '#FF0000FF' + - uid: 23045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-29.5 + rot: 3.141592653589793 rad + pos: 77.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23484 + color: '#FF0000FF' + - uid: 23046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-29.5 + rot: 3.141592653589793 rad + pos: 77.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23485 + color: '#FF0000FF' + - uid: 23047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-29.5 + rot: 3.141592653589793 rad + pos: 77.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23486 + color: '#FF0000FF' + - uid: 23048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-29.5 + pos: 79.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23487 + color: '#FF0000FF' + - uid: 23049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-29.5 + pos: 79.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23488 + color: '#FF0000FF' + - uid: 23050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-28.5 + pos: 83.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23489 + color: '#FF0000FF' + - uid: 23051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-27.5 + pos: 83.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23490 + color: '#FF0000FF' + - uid: 23052 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-26.5 + pos: 87.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23491 + color: '#FF0000FF' + - uid: 23053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-25.5 + pos: 87.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23492 + color: '#FF0000FF' + - uid: 23054 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-24.5 + pos: 84.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23493 + color: '#FF0000FF' + - uid: 23055 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-24.5 + pos: 85.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23494 + color: '#FF0000FF' + - uid: 23056 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-24.5 + pos: 86.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23495 + color: '#FF0000FF' + - uid: 23057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-24.5 + rot: 1.5707963267948966 rad + pos: 82.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23496 + color: '#FF0000FF' + - uid: 23058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-21.5 + pos: -8.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23497 + color: '#0000FFFF' + - uid: 23059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-20.5 + rot: 1.5707963267948966 rad + pos: 81.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23498 + color: '#FF0000FF' + - uid: 23060 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-22.5 + pos: 80.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23499 + color: '#FF0000FF' + - uid: 23061 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-22.5 + pos: 78.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23500 + color: '#FF0000FF' + - uid: 23062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-23.5 + rot: -1.5707963267948966 rad + pos: 68.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23501 + color: '#0000FFFF' + - uid: 23063 components: - type: Transform - pos: -5.5,-33.5 + rot: 3.141592653589793 rad + pos: 70.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23502 + color: '#0000FFFF' + - uid: 23064 components: - type: Transform - pos: -5.5,-34.5 + rot: 3.141592653589793 rad + pos: 70.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23503 + color: '#0000FFFF' + - uid: 23065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-35.5 + rot: 3.141592653589793 rad + pos: 70.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23504 + color: '#0000FFFF' + - uid: 23066 components: - type: Transform - pos: -2.5,-36.5 + rot: 3.141592653589793 rad + pos: 68.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23505 + color: '#FF0000FF' + - uid: 23067 components: - type: Transform - pos: -2.5,-37.5 + rot: 3.141592653589793 rad + pos: 68.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23506 + color: '#FF0000FF' + - uid: 23068 components: - type: Transform - pos: -2.5,-38.5 + rot: 3.141592653589793 rad + pos: 70.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23507 + color: '#0000FFFF' + - uid: 23069 components: - type: Transform - pos: -2.5,-39.5 + rot: 3.141592653589793 rad + pos: 70.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23508 + color: '#0000FFFF' + - uid: 23070 components: - type: Transform - pos: -2.5,-40.5 + rot: 3.141592653589793 rad + pos: 68.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23509 + color: '#FF0000FF' + - uid: 23071 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-14.5 + pos: 71.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23510 + color: '#0000FFFF' + - uid: 23072 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-14.5 + pos: 72.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23511 + color: '#0000FFFF' + - uid: 23073 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-14.5 + pos: 73.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23512 + color: '#0000FFFF' + - uid: 23074 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-13.5 + rot: -1.5707963267948966 rad + pos: 74.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23513 + color: '#0000FFFF' + - uid: 23075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 + rot: -1.5707963267948966 rad + pos: 75.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23514 + color: '#0000FFFF' + - uid: 23076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 + rot: -1.5707963267948966 rad + pos: 76.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23515 + color: '#0000FFFF' + - uid: 23077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 + rot: -1.5707963267948966 rad + pos: 77.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23516 + color: '#0000FFFF' + - uid: 23078 components: - type: Transform - pos: -3.5,-12.5 + rot: -1.5707963267948966 rad + pos: 78.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23517 + color: '#0000FFFF' + - uid: 23079 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-11.5 + pos: 79.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23518 + color: '#0000FFFF' + - uid: 23080 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-11.5 + pos: 80.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23519 + color: '#0000FFFF' + - uid: 23081 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-11.5 + pos: 69.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23520 + color: '#FF0000FF' + - uid: 23082 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-11.5 + pos: 70.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23521 + color: '#FF0000FF' + - uid: 23083 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-11.5 + pos: 72.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23522 + color: '#FF0000FF' + - uid: 23084 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-10.5 + pos: 73.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23523 + color: '#FF0000FF' + - uid: 23085 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-10.5 + pos: 74.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23524 + color: '#FF0000FF' + - uid: 23086 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-10.5 + pos: 75.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23525 + color: '#FF0000FF' + - uid: 23087 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-10.5 + pos: 76.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23526 + color: '#FF0000FF' + - uid: 23088 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-10.5 + pos: 71.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23527 + color: '#FF0000FF' + - uid: 23089 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-10.5 + pos: 50.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23528 + color: '#0000FFFF' + - uid: 23090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-12.5 + rot: 1.5707963267948966 rad + pos: 55.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23529 + color: '#0000FFFF' + - uid: 23091 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-13.5 + rot: 1.5707963267948966 rad + pos: 54.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23530 + color: '#FF0000FF' + - uid: 23092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-14.5 + rot: 1.5707963267948966 rad + pos: 52.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23531 + color: '#FF0000FF' + - uid: 23093 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-15.5 + rot: 1.5707963267948966 rad + pos: 53.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23532 + color: '#FF0000FF' + - uid: 23094 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-16.5 + rot: 1.5707963267948966 rad + pos: 53.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23533 + color: '#0000FFFF' + - uid: 23095 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-17.5 + pos: 52.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23534 + color: '#0000FFFF' + - uid: 23096 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-18.5 + pos: 52.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23535 + color: '#0000FFFF' + - uid: 23097 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-19.5 + pos: 52.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23536 + color: '#0000FFFF' + - uid: 23098 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-20.5 + pos: 52.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23537 + color: '#0000FFFF' + - uid: 23099 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23538 - components: - - type: Transform - pos: -10.5,-12.5 + pos: 51.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23539 + color: '#FF0000FF' + - uid: 23100 components: - type: Transform - pos: 9.5,-20.5 + rot: 3.141592653589793 rad + pos: 51.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23540 + color: '#FF0000FF' + - uid: 23101 components: - type: Transform - pos: 9.5,-19.5 + rot: -1.5707963267948966 rad + pos: 51.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23541 + color: '#0000FFFF' + - uid: 23102 components: - type: Transform - pos: 9.5,-18.5 + rot: -1.5707963267948966 rad + pos: 50.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23542 + color: '#FF0000FF' + - uid: 23103 components: - type: Transform - pos: 9.5,-17.5 + rot: -1.5707963267948966 rad + pos: 50.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23543 + color: '#0000FFFF' + - uid: 23104 components: - type: Transform - pos: 9.5,-16.5 + rot: 1.5707963267948966 rad + pos: 54.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23544 + color: '#0000FFFF' + - uid: 23105 components: - type: Transform - pos: 9.5,-15.5 + rot: 1.5707963267948966 rad + pos: -4.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23545 + - uid: 23106 components: - type: Transform - pos: 9.5,-14.5 + pos: -6.5,-55.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23546 + - uid: 23107 components: - type: Transform - pos: 9.5,-13.5 + rot: 3.141592653589793 rad + pos: -3.5,-50.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23547 + - uid: 23108 components: - type: Transform - pos: 9.5,-22.5 + rot: 3.141592653589793 rad + pos: -5.5,-50.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23548 + - uid: 23109 components: - type: Transform - pos: 9.5,-23.5 + rot: 3.141592653589793 rad + pos: -5.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23549 + - uid: 23110 components: - type: Transform - pos: 9.5,-24.5 + rot: 1.5707963267948966 rad + pos: -4.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23550 + - uid: 23111 components: - type: Transform - pos: 9.5,-25.5 + rot: 3.141592653589793 rad + pos: -1.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23551 + color: '#B7410EFF' + - uid: 23112 components: - type: Transform - pos: 9.5,-26.5 + rot: 3.141592653589793 rad + pos: -1.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23552 + color: '#B7410EFF' + - uid: 23113 components: - type: Transform - pos: 9.5,-27.5 + rot: 3.141592653589793 rad + pos: -1.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23553 + color: '#B7410EFF' + - uid: 23114 components: - type: Transform - pos: 9.5,-28.5 + rot: 3.141592653589793 rad + pos: -2.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 23554 + - uid: 23115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-29.5 + rot: 3.141592653589793 rad + pos: -2.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 23555 + - uid: 23116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-29.5 + rot: 3.141592653589793 rad + pos: -2.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 23556 + - uid: 23117 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-29.5 + pos: 75.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23557 + color: '#0000FFFF' + - uid: 23118 components: - type: Transform - pos: -5.5,-27.5 + pos: 74.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23558 + color: '#0000FFFF' + - uid: 23119 components: - type: Transform - pos: -5.5,-26.5 + pos: 74.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23559 + color: '#0000FFFF' + - uid: 23120 components: - type: Transform - pos: -5.5,-25.5 + rot: -1.5707963267948966 rad + pos: 73.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23560 + color: '#0000FFFF' + - uid: 23121 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-24.5 + pos: 72.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23561 + color: '#0000FFFF' + - uid: 23122 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-24.5 + pos: 71.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23562 + color: '#0000FFFF' + - uid: 23123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 + pos: 55.5,-95.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23563 + - uid: 23124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 + pos: 54.5,-95.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23564 + - uid: 23125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 + pos: 53.5,-95.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23565 + - uid: 23126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 + pos: 52.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23566 + color: '#0000FFFF' + - uid: 23127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-24.5 + pos: 70.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23567 + color: '#0000FFFF' + - uid: 23128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 + pos: 70.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23568 + color: '#0000FFFF' + - uid: 23129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-24.5 + pos: 70.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23569 + color: '#0000FFFF' + - uid: 23130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 + pos: 70.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23570 + color: '#0000FFFF' + - uid: 23131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-35.5 + pos: 70.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23571 + color: '#0000FFFF' + - uid: 23132 components: - type: Transform - pos: -3.5,-37.5 + pos: 70.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23572 + color: '#0000FFFF' + - uid: 23133 components: - type: Transform - pos: -3.5,-38.5 + pos: 68.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23573 + color: '#FF0000FF' + - uid: 23134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-39.5 + pos: 68.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23574 + color: '#FF0000FF' + - uid: 23135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 + pos: 68.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23575 + color: '#FF0000FF' + - uid: 23136 components: - type: Transform - pos: 0.5,-44.5 + pos: 68.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23576 + color: '#FF0000FF' + - uid: 23137 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-54.5 + pos: 69.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23577 + color: '#FF0000FF' + - uid: 23138 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-54.5 + pos: 70.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23578 + color: '#FF0000FF' + - uid: 23139 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-54.5 + pos: 71.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23579 + color: '#FF0000FF' + - uid: 23140 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-54.5 + pos: 72.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23580 + color: '#FF0000FF' + - uid: 23141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-54.5 + pos: 73.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23581 + color: '#FF0000FF' + - uid: 23142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-54.5 + rot: 3.141592653589793 rad + pos: 75.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23582 + color: '#FF0000FF' + - uid: 23143 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-54.5 + pos: 76.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23583 + color: '#FF0000FF' + - uid: 23144 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-54.5 + pos: 77.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23584 + color: '#FF0000FF' + - uid: 23145 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-54.5 + pos: 74.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23585 + color: '#FF0000FF' + - uid: 23146 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-54.5 + pos: 78.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23586 + color: '#FF0000FF' + - uid: 23147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-54.5 + rot: 1.5707963267948966 rad + pos: 51.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23587 + color: '#0000FFFF' + - uid: 23148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-54.5 + pos: 51.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23588 + color: '#FF0000FF' + - uid: 23149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-54.5 + pos: 51.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23589 + color: '#FF0000FF' + - uid: 23150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-55.5 + pos: 51.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23590 + color: '#FF0000FF' + - uid: 23151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-56.5 + pos: 51.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23591 + color: '#FF0000FF' + - uid: 23152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-57.5 + pos: 51.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23592 + color: '#FF0000FF' + - uid: 23153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-58.5 + pos: 52.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23593 + color: '#0000FFFF' + - uid: 23154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-59.5 + pos: 52.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23594 + color: '#0000FFFF' + - uid: 23155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-55.5 + pos: 52.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23595 + color: '#0000FFFF' + - uid: 23156 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-56.5 + rot: 1.5707963267948966 rad + pos: 76.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23596 + color: '#0000FFFF' + - uid: 23157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-57.5 + pos: -4.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23597 + color: '#B7410EFF' + - uid: 23158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-58.5 + rot: -1.5707963267948966 rad + pos: -6.5,-55.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23598 + - uid: 23159 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-59.5 + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23599 + color: '#FF0000FF' + - uid: 23160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-60.5 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23600 + color: '#FF0000FF' + - uid: 23161 components: - type: Transform - pos: -3.5,-17.5 + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23601 + color: '#FF0000FF' + - uid: 23162 components: - type: Transform - pos: -3.5,-18.5 + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23602 + color: '#FF0000FF' + - uid: 23163 components: - type: Transform - pos: -3.5,-19.5 + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23603 + color: '#FF0000FF' + - uid: 23164 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-21.5 + pos: 0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23604 + color: '#FF0000FF' + - uid: 23165 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-21.5 + pos: -0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23605 + color: '#FF0000FF' + - uid: 23166 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-21.5 + pos: -2.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23606 + color: '#FF0000FF' + - uid: 23167 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-21.5 + pos: -3.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23607 + color: '#FF0000FF' + - uid: 23168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23608 + color: '#0000FFFF' + - uid: 23169 components: - type: Transform - pos: -10.5,-17.5 + rot: 1.5707963267948966 rad + pos: -3.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23609 + color: '#0000FFFF' + - uid: 23170 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-23.5 + pos: -2.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23610 + color: '#0000FFFF' + - uid: 23171 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-23.5 + pos: -1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23611 + color: '#0000FFFF' + - uid: 23172 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-23.5 + pos: -0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23612 + color: '#0000FFFF' + - uid: 23173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-23.5 + pos: 0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23613 + color: '#0000FFFF' + - uid: 23174 components: - type: Transform - pos: -11.5,-21.5 + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23614 + color: '#0000FFFF' + - uid: 23175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-25.5 + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23615 + color: '#0000FFFF' + - uid: 23176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-26.5 + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23616 + color: '#0000FFFF' + - uid: 23177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-27.5 + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23617 + color: '#0000FFFF' + - uid: 23178 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-29.5 + pos: -0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23618 + color: '#FF0000FF' + - uid: 23179 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-30.5 + pos: -0.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23619 + color: '#FF0000FF' + - uid: 23180 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-31.5 + pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23620 + color: '#FF0000FF' + - uid: 23181 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-32.5 + pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23621 + color: '#FF0000FF' + - uid: 23182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-28.5 + rot: 3.141592653589793 rad + pos: -0.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23622 + color: '#FF0000FF' + - uid: 23183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-28.5 + rot: 3.141592653589793 rad + pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23623 + color: '#0000FFFF' + - uid: 23184 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-24.5 + pos: 1.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23624 + color: '#0000FFFF' + - uid: 23185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-33.5 + rot: 3.141592653589793 rad + pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23625 + color: '#0000FFFF' + - uid: 23186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-38.5 + rot: 3.141592653589793 rad + pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23626 + color: '#0000FFFF' + - uid: 23187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 + rot: 3.141592653589793 rad + pos: 1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23627 + color: '#0000FFFF' + - uid: 23188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 + pos: -1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23628 + color: '#FF0000FF' + - uid: 23189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-33.5 + pos: -1.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23629 + color: '#FF0000FF' + - uid: 23190 components: - type: Transform - pos: -16.5,-37.5 + pos: 2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23630 + color: '#0000FFFF' + - uid: 23191 components: - type: Transform - pos: -16.5,-36.5 + pos: 2.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23631 + color: '#0000FFFF' + - uid: 23192 components: - type: Transform - pos: -16.5,-35.5 + pos: 2.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23632 + color: '#0000FFFF' + - uid: 23193 components: - type: Transform - pos: -16.5,-34.5 + rot: 1.5707963267948966 rad + pos: 28.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23633 + color: '#0000FFFF' + - uid: 23194 components: - type: Transform - pos: -10.5,-18.5 + rot: 1.5707963267948966 rad + pos: 29.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23634 + color: '#0000FFFF' + - uid: 23195 components: - type: Transform - pos: -10.5,-19.5 + rot: 1.5707963267948966 rad + pos: 30.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23635 + color: '#0000FFFF' + - uid: 23196 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-20.5 + pos: 27.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23636 + color: '#FF0000FF' + - uid: 23197 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-20.5 + pos: 28.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23637 + color: '#FF0000FF' + - uid: 23198 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-20.5 + pos: 29.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23638 + color: '#FF0000FF' + - uid: 23199 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-20.5 + pos: 30.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23639 + color: '#FF0000FF' + - uid: 23200 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-20.5 + pos: 31.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23640 + color: '#FF0000FF' + - uid: 23201 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-20.5 + pos: 32.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23641 + color: '#FF0000FF' + - uid: 23202 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-34.5 + pos: 59.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23642 + color: '#FF0000FF' + - uid: 23203 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-35.5 + pos: 59.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23643 + color: '#FF0000FF' + - uid: 23204 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-36.5 + rot: 1.5707963267948966 rad + pos: 55.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23644 + color: '#0000FFFF' + - uid: 23205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-37.5 + rot: 1.5707963267948966 rad + pos: 54.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23645 + color: '#0000FFFF' + - uid: 23206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-38.5 + rot: 1.5707963267948966 rad + pos: 52.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23646 + color: '#0000FFFF' + - uid: 23207 components: - type: Transform - pos: -0.5,-45.5 + pos: 0.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23647 + color: '#2A6478FF' + - uid: 23208 components: - type: Transform - pos: -0.5,-46.5 + pos: 0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23648 + color: '#2A6478FF' + - uid: 23209 components: - type: Transform - pos: -0.5,-47.5 + rot: -1.5707963267948966 rad + pos: 11.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 23649 + - uid: 23210 components: - type: Transform - pos: -0.5,-48.5 + rot: -1.5707963267948966 rad + pos: 12.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 23650 + - uid: 23211 components: - type: Transform - pos: -0.5,-49.5 + pos: -16.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 23651 + - uid: 23212 components: - type: Transform - pos: -0.5,-50.5 + pos: -16.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 23652 + - uid: 23213 components: - type: Transform - pos: -0.5,-51.5 + rot: 3.141592653589793 rad + pos: 6.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 23653 + - uid: 23214 components: - type: Transform - pos: -0.5,-52.5 + rot: 3.141592653589793 rad + pos: 6.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 23654 + - uid: 23215 components: - type: Transform - pos: -0.5,-53.5 + pos: 5.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23655 + color: '#2A6478FF' + - uid: 23216 components: - type: Transform - pos: -0.5,-54.5 + pos: 6.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23656 + color: '#2A6478FF' + - uid: 23217 components: - type: Transform - pos: -0.5,-55.5 + pos: 6.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23657 + color: '#2A6478FF' + - uid: 23218 components: - type: Transform - pos: -0.5,-56.5 + pos: 6.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 23219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 23658 + - uid: 23220 components: - type: Transform - pos: -8.5,12.5 + pos: 6.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23659 + color: '#2A6478FF' + - uid: 23221 components: - type: Transform - pos: -8.5,13.5 + pos: 6.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23660 + color: '#2A6478FF' + - uid: 23222 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 23223 components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,-74.5 + pos: 8.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23661 + color: '#B7410EFF' + - uid: 23224 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,-74.5 + pos: 10.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23662 + color: '#B7410EFF' + - uid: 23225 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,-74.5 + pos: -7.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23663 + color: '#B7410EFF' + - uid: 23226 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-74.5 + pos: -6.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23664 + color: '#B7410EFF' + - uid: 23227 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,10.5 + pos: -5.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23665 + color: '#B7410EFF' + - uid: 23228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,11.5 + rot: 1.5707963267948966 rad + pos: -4.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23666 + color: '#B7410EFF' + - uid: 23229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,12.5 + rot: 1.5707963267948966 rad + pos: -3.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23667 + color: '#B7410EFF' + - uid: 23230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,13.5 + rot: 1.5707963267948966 rad + pos: -2.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23668 + color: '#B7410EFF' + - uid: 23231 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,10.5 + pos: -5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23669 + color: '#2A6478FF' + - uid: 23232 components: - type: Transform - pos: 23.5,7.5 + rot: -1.5707963267948966 rad + pos: -6.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23670 + color: '#2A6478FF' + - uid: 23233 components: - type: Transform - pos: 23.5,6.5 + rot: -1.5707963267948966 rad + pos: -7.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23671 + color: '#2A6478FF' + - uid: 23234 components: - type: Transform - pos: 23.5,5.5 + rot: -1.5707963267948966 rad + pos: -8.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23672 + color: '#2A6478FF' + - uid: 23235 components: - type: Transform - pos: 23.5,4.5 + rot: -1.5707963267948966 rad + pos: -9.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23673 + color: '#2A6478FF' + - uid: 23236 components: - type: Transform - pos: 23.5,3.5 + rot: -1.5707963267948966 rad + pos: -10.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23674 + color: '#2A6478FF' + - uid: 23237 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,2.5 + pos: -11.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23675 + color: '#2A6478FF' + - uid: 23238 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,2.5 + pos: -12.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23676 + color: '#2A6478FF' + - uid: 23239 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,4.5 + pos: -14.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23677 + color: '#2A6478FF' + - uid: 23240 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,5.5 + pos: -14.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23678 + color: '#2A6478FF' + - uid: 23241 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,4.5 + pos: -14.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23679 + color: '#2A6478FF' + - uid: 23242 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,5.5 + pos: -14.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23680 + color: '#2A6478FF' + - uid: 23243 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,6.5 + pos: -3.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23681 + color: '#2A6478FF' + - uid: 23244 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-7.5 + pos: 17.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23682 + color: '#2A6478FF' + - uid: 23245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-7.5 + rot: 1.5707963267948966 rad + pos: -1.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23683 + color: '#2A6478FF' + - uid: 23246 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,13.5 + pos: -0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23684 + color: '#2A6478FF' + - uid: 23247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,13.5 + pos: 0.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23685 + color: '#2A6478FF' + - uid: 23248 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,13.5 + pos: 3.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23686 + color: '#2A6478FF' + - uid: 23249 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,12.5 + pos: 4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23687 + color: '#2A6478FF' + - uid: 23250 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,13.5 + pos: 4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23688 + color: '#2A6478FF' + - uid: 23251 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,11.5 + pos: -4.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23689 + color: '#2A6478FF' + - uid: 23252 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,11.5 + pos: 0.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23690 + color: '#B7410EFF' + - uid: 23253 components: - type: Transform - pos: 12.5,10.5 + rot: 1.5707963267948966 rad + pos: 3.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23691 + color: '#B7410EFF' + - uid: 23254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,9.5 + rot: 1.5707963267948966 rad + pos: 4.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23692 + color: '#B7410EFF' + - uid: 23255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,8.5 + pos: 5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23693 + color: '#B7410EFF' + - uid: 23256 components: - type: Transform - pos: 16.5,7.5 + pos: 5.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23694 + color: '#B7410EFF' + - uid: 23257 components: - type: Transform - pos: 16.5,6.5 + pos: 5.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23695 + color: '#B7410EFF' + - uid: 23258 components: - type: Transform - pos: 16.5,5.5 + pos: 0.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23696 + color: '#2A6478FF' + - uid: 23259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,19.5 + pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23697 + color: '#2A6478FF' + - uid: 23260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,19.5 + pos: 0.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23698 + color: '#2A6478FF' + - uid: 23261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 + pos: 0.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23699 + color: '#2A6478FF' + - uid: 23262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,19.5 + pos: 0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23700 + color: '#2A6478FF' + - uid: 23263 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,19.5 + pos: 13.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23701 + color: '#B7410EFF' + - uid: 23264 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,19.5 + pos: 14.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23702 + color: '#B7410EFF' + - uid: 23265 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,19.5 + pos: 13.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23703 + color: '#2A6478FF' + - uid: 23266 + components: + - type: Transform + pos: 18.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23267 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,19.5 + pos: 16.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23704 + color: '#2A6478FF' + - uid: 23268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,20.5 + rot: 3.141592653589793 rad + pos: 18.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23705 + color: '#2A6478FF' + - uid: 23269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,20.5 + rot: 3.141592653589793 rad + pos: 18.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23706 + color: '#2A6478FF' + - uid: 23270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,20.5 + rot: -1.5707963267948966 rad + pos: 16.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23707 + color: '#2A6478FF' + - uid: 23271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,20.5 + rot: 3.141592653589793 rad + pos: 18.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23708 + color: '#2A6478FF' + - uid: 23272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,20.5 + rot: 3.141592653589793 rad + pos: 18.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23709 + color: '#2A6478FF' + - uid: 23273 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,22.5 + pos: -12.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23710 + color: '#B7410EFF' + - uid: 23274 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,23.5 + pos: 18.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23711 + color: '#2A6478FF' + - uid: 23275 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,24.5 + pos: 18.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23712 + color: '#2A6478FF' + - uid: 23276 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,25.5 + pos: 18.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23713 + color: '#2A6478FF' + - uid: 23277 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,22.5 + pos: 16.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23714 + color: '#B7410EFF' + - uid: 23278 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,23.5 + pos: 16.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23715 + color: '#B7410EFF' + - uid: 23279 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,25.5 + pos: 16.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23716 + color: '#B7410EFF' + - uid: 23280 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,23.5 + pos: 16.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23717 + color: '#B7410EFF' + - uid: 23281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,19.5 + rot: 3.141592653589793 rad + pos: 16.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23718 + color: '#B7410EFF' + - uid: 23282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,19.5 + rot: 3.141592653589793 rad + pos: 16.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23719 + color: '#B7410EFF' + - uid: 23283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,19.5 + rot: 3.141592653589793 rad + pos: 16.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23720 + color: '#B7410EFF' + - uid: 23284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23285 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,19.5 + pos: -8.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23721 + color: '#B7410EFF' + - uid: 23286 components: - type: Transform - pos: -8.5,20.5 + rot: 3.141592653589793 rad + pos: 16.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23722 + color: '#B7410EFF' + - uid: 23287 components: - type: Transform - pos: -8.5,21.5 + rot: 3.141592653589793 rad + pos: 16.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23723 + color: '#B7410EFF' + - uid: 23288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,22.5 + rot: 3.141592653589793 rad + pos: 14.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23724 + color: '#2A6478FF' + - uid: 23289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-25.5 + rot: 3.141592653589793 rad + pos: 16.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23725 + color: '#B7410EFF' + - uid: 23290 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-25.5 + pos: -12.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23726 + color: '#2A6478FF' + - uid: 23291 components: - type: Transform - pos: -48.5,-24.5 + rot: 1.5707963267948966 rad + pos: -12.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23727 + color: '#B7410EFF' + - uid: 23292 components: - type: Transform - pos: -48.5,-23.5 + pos: -16.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23728 + color: '#B7410EFF' + - uid: 23293 components: - type: Transform - pos: -48.5,-22.5 + pos: -13.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23729 + color: '#2A6478FF' + - uid: 23294 components: - type: Transform - pos: -48.5,-21.5 + pos: -13.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23730 + color: '#2A6478FF' + - uid: 23295 components: - type: Transform - pos: -48.5,-20.5 + pos: -13.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23731 + color: '#2A6478FF' + - uid: 23296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-21.5 + pos: -13.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23732 + color: '#2A6478FF' + - uid: 23297 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-47.5 + pos: -14.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23733 + color: '#2A6478FF' + - uid: 23298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-46.5 + pos: -12.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23734 + color: '#B7410EFF' + - uid: 23299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-45.5 + pos: -12.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23735 + color: '#B7410EFF' + - uid: 23300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-49.5 + pos: -12.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23736 + color: '#B7410EFF' + - uid: 23301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-49.5 + pos: -12.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23737 + color: '#B7410EFF' + - uid: 23302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-49.5 + rot: 1.5707963267948966 rad + pos: 46.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23738 + - uid: 23303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-49.5 + rot: 1.5707963267948966 rad + pos: 55.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23739 + - uid: 23304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-48.5 + rot: 1.5707963267948966 rad + pos: 54.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23740 + - uid: 23305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-47.5 + rot: -1.5707963267948966 rad + pos: 60.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23741 + - uid: 23306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-46.5 + rot: -1.5707963267948966 rad + pos: 61.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23742 + - uid: 23307 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-45.5 + rot: -1.5707963267948966 rad + pos: 60.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23743 + color: '#0000FFFF' + - uid: 23308 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-44.5 + rot: -1.5707963267948966 rad + pos: 61.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23744 + color: '#0000FFFF' + - uid: 23309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-43.5 + pos: 79.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23745 + - uid: 23310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-54.5 + pos: 83.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23746 + - uid: 23311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-54.5 + pos: 87.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23747 + - uid: 23312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,2.5 + rot: 1.5707963267948966 rad + pos: 111.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23748 + - uid: 23313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,3.5 + rot: -1.5707963267948966 rad + pos: 113.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23749 + - uid: 23314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,4.5 + rot: -1.5707963267948966 rad + pos: 114.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23750 + color: '#FF0000FF' + - uid: 23315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,3.5 + rot: -1.5707963267948966 rad + pos: 115.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23751 + color: '#FF0000FF' + - uid: 23316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,2.5 + rot: -1.5707963267948966 rad + pos: 116.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23752 + color: '#FF0000FF' + - uid: 23317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,1.5 + rot: -1.5707963267948966 rad + pos: 121.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23753 + - uid: 23318 components: - type: Transform - pos: -17.5,5.5 + rot: -1.5707963267948966 rad + pos: 118.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23754 + - uid: 23319 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,6.5 + pos: 119.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23755 + - uid: 23320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,7.5 + rot: -1.5707963267948966 rad + pos: 120.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23756 + - uid: 23321 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,8.5 + rot: -1.5707963267948966 rad + pos: 124.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23757 + - uid: 23322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-0.5 + rot: -1.5707963267948966 rad + pos: 122.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23758 + - uid: 23323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,0.5 + rot: -1.5707963267948966 rad + pos: 123.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23759 + - uid: 23324 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,1.5 + rot: -1.5707963267948966 rad + pos: 123.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23760 + color: '#0000FFFF' + - uid: 23325 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,2.5 + rot: -1.5707963267948966 rad + pos: 125.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23761 + - uid: 23326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,3.5 + rot: -1.5707963267948966 rad + pos: 126.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23762 + - uid: 23327 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,4.5 + rot: -1.5707963267948966 rad + pos: 127.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23763 + - uid: 23328 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,5.5 + rot: -1.5707963267948966 rad + pos: 120.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23764 + color: '#0000FFFF' + - uid: 23329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,6.5 + rot: -1.5707963267948966 rad + pos: 115.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23765 + color: '#0000FFFF' + - uid: 23330 components: - type: Transform - pos: -21.5,2.5 + rot: -1.5707963267948966 rad + pos: 126.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23766 + - uid: 23331 components: - type: Transform - pos: -21.5,3.5 + rot: -1.5707963267948966 rad + pos: 125.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23767 + - uid: 23332 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,4.5 + pos: 124.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 40736 + - uid: 23333 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 40666 + rot: -1.5707963267948966 rad + pos: 121.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40737 + color: '#0000FFFF' + - uid: 23334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 40666 + rot: -1.5707963267948966 rad + pos: 122.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40738 + color: '#0000FFFF' + - uid: 23335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 40666 + rot: -1.5707963267948966 rad + pos: 119.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40739 + color: '#0000FFFF' + - uid: 23336 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 40666 + pos: 118.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40740 + color: '#0000FFFF' + - uid: 23337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 40666 + rot: -1.5707963267948966 rad + pos: 117.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40741 + color: '#0000FFFF' + - uid: 23338 components: - type: Transform - pos: -1.5,-1.5 - parent: 40666 + rot: -1.5707963267948966 rad + pos: 114.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41188 + color: '#0000FFFF' + - uid: 23339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 40828 - - uid: 41189 + rot: -1.5707963267948966 rad + pos: 113.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 40828 - - uid: 41190 + rot: -1.5707963267948966 rad + pos: 112.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 40828 - - uid: 41191 + rot: -1.5707963267948966 rad + pos: 111.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23342 components: - type: Transform - pos: 1.5,-10.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: 110.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41192 + color: '#FF0000FF' + - uid: 23343 components: - type: Transform - pos: 1.5,-9.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: 109.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41193 + color: '#FF0000FF' + - uid: 23344 components: - type: Transform - pos: 0.5,-10.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: 108.5,-42.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41194 + - uid: 23345 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 40828 + pos: 106.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41195 + color: '#FF0000FF' + - uid: 23346 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 40828 + pos: 105.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41196 + color: '#FF0000FF' + - uid: 23347 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 40828 + pos: 104.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41197 + color: '#FF0000FF' + - uid: 23348 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 40828 + pos: 103.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,-40.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41198 + - uid: 23350 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 40828 + pos: 104.5,-40.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41199 + - uid: 23351 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 40828 + pos: 106.5,-40.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41200 + - uid: 23352 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 40828 + pos: 107.5,-40.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41201 + - uid: 23353 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 40828 + pos: 108.5,-40.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41202 + - uid: 23354 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 40828 + pos: 109.5,-40.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41203 + - uid: 23355 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 40828 + pos: -7.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41204 + color: '#0000FFFF' + - uid: 23356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: -46.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41205 + color: '#0000FFFF' + - uid: 23357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: 15.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41206 + color: '#B7410EFF' + - uid: 23358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 40828 + pos: 6.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41207 + color: '#2A6478FF' + - uid: 23359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 40828 + pos: 9.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41208 + color: '#B7410EFF' + - uid: 23360 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23361 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 40828 + pos: 8.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41209 + color: '#B7410EFF' + - uid: 23362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-10.5 - parent: 40828 + pos: 10.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41210 + color: '#B7410EFF' + - uid: 23363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-11.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41211 + color: '#B7410EFF' + - uid: 23364 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 40828 + pos: 12.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41212 + color: '#B7410EFF' + - uid: 23365 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 40828 + pos: 13.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41213 + color: '#B7410EFF' + - uid: 23366 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 40828 + pos: 14.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41214 + color: '#B7410EFF' + - uid: 23367 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 40828 + pos: 15.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41215 + color: '#B7410EFF' + - uid: 23368 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 40828 + pos: 16.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41216 + color: '#B7410EFF' + - uid: 23369 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 40828 + pos: 17.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41217 + color: '#B7410EFF' + - uid: 23370 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 40828 + pos: 7.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41218 + color: '#2A6478FF' + - uid: 23371 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 40828 + pos: 8.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41219 + color: '#2A6478FF' + - uid: 23372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 40828 + pos: 9.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41220 + color: '#2A6478FF' + - uid: 23373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 40828 + pos: 9.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41221 + color: '#2A6478FF' + - uid: 23374 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 40828 + pos: 10.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41222 + color: '#2A6478FF' + - uid: 23375 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 40828 + pos: 11.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41223 + color: '#2A6478FF' + - uid: 23376 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 40828 + pos: 12.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41224 + color: '#2A6478FF' + - uid: 23377 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 40828 + pos: 13.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41225 + color: '#2A6478FF' + - uid: 23378 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 40828 + pos: 14.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41226 + color: '#2A6478FF' + - uid: 23379 components: - type: Transform - pos: 1.5,-5.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41227 + color: '#2A6478FF' + - uid: 23380 components: - type: Transform - pos: 1.5,-4.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: 16.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41228 + color: '#2A6478FF' + - uid: 23381 components: - type: Transform - pos: 1.5,-3.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: 17.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41229 + color: '#2A6478FF' + - uid: 23382 components: - type: Transform - pos: 1.5,-2.5 - parent: 40828 + rot: 3.141592653589793 rad + pos: 18.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41230 + color: '#2A6478FF' + - uid: 23383 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 40828 + pos: 18.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41231 + color: '#2A6478FF' + - uid: 23384 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 40828 + pos: 18.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41232 + color: '#2A6478FF' + - uid: 23385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: 2.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41790 + color: '#2A6478FF' + - uid: 23386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 41669 + rot: 1.5707963267948966 rad + pos: 3.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41791 + color: '#2A6478FF' + - uid: 23387 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 41669 + pos: 17.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41792 + color: '#2A6478FF' + - uid: 23388 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 41669 + pos: 16.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41793 + color: '#2A6478FF' + - uid: 23389 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 41669 + pos: 18.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41794 + color: '#2A6478FF' + - uid: 23390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-10.5 - parent: 41669 + rot: -1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41795 + color: '#2A6478FF' + - uid: 23391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 23392 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-9.5 - parent: 41669 + pos: 16.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41796 + color: '#B7410EFF' + - uid: 23393 components: - type: Transform - pos: 3.5,-0.5 - parent: 41669 + rot: 3.141592653589793 rad + pos: 16.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41797 + color: '#B7410EFF' + - uid: 23394 components: - type: Transform - pos: 3.5,0.5 - parent: 41669 + rot: 1.5707963267948966 rad + pos: 17.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41798 + color: '#2A6478FF' + - uid: 23395 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 41669 + rot: 1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41799 + color: '#2A6478FF' + - uid: 23396 components: - type: Transform - pos: 2.5,-7.5 - parent: 41669 + pos: 19.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41800 + color: '#2A6478FF' + - uid: 23397 components: - type: Transform - pos: 2.5,-6.5 - parent: 41669 + pos: 19.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41801 + color: '#2A6478FF' + - uid: 23398 components: - type: Transform - pos: 3.5,-3.5 - parent: 41669 + pos: 14.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41802 + color: '#2A6478FF' + - uid: 23399 components: - type: Transform - pos: 3.5,-1.5 - parent: 41669 + pos: 14.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41803 + color: '#2A6478FF' + - uid: 23400 components: - type: Transform - pos: 4.5,-6.5 - parent: 41669 + rot: -1.5707963267948966 rad + pos: 15.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41804 + color: '#B7410EFF' + - uid: 23401 components: - type: Transform - pos: 4.5,-1.5 - parent: 41669 + rot: -1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41805 + color: '#B7410EFF' + - uid: 23402 components: - type: Transform - pos: 4.5,-9.5 - parent: 41669 + rot: -1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41806 + color: '#B7410EFF' + - uid: 23403 components: - type: Transform - pos: 4.5,-3.5 - parent: 41669 + pos: 11.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41807 + color: '#B7410EFF' + - uid: 23404 components: - type: Transform - pos: 4.5,-8.5 - parent: 41669 + pos: 11.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41808 + color: '#B7410EFF' + - uid: 23405 components: - type: Transform - pos: 4.5,-0.5 - parent: 41669 + pos: 11.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeTJunction - entities: - - uid: 23768 + color: '#B7410EFF' + - uid: 23406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,0.5 + pos: 11.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23769 + color: '#B7410EFF' + - uid: 23407 components: - type: Transform - pos: 59.5,15.5 + pos: 11.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23770 + color: '#B7410EFF' + - uid: 23408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,1.5 + rot: 3.141592653589793 rad + pos: 11.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23771 + color: '#B7410EFF' + - uid: 23409 components: - type: Transform - pos: 58.5,14.5 + rot: 3.141592653589793 rad + pos: 11.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23772 + color: '#B7410EFF' + - uid: 23410 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-14.5 + pos: 11.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23773 + color: '#B7410EFF' + - uid: 23411 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,3.5 + pos: 11.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23774 + color: '#B7410EFF' + - uid: 23412 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-0.5 + pos: 12.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23775 + color: '#B7410EFF' + - uid: 23413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-11.5 + pos: -4.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23776 + color: '#B7410EFF' + - uid: 23414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,5.5 + pos: -4.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23777 + color: '#B7410EFF' + - uid: 23415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-7.5 + pos: -4.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23778 + color: '#B7410EFF' + - uid: 23416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-14.5 + pos: -4.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23779 + color: '#B7410EFF' + - uid: 23417 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,7.5 + pos: -2.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23780 + color: '#B7410EFF' + - uid: 23418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-18.5 + rot: 1.5707963267948966 rad + pos: -1.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23781 + color: '#B7410EFF' + - uid: 23419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,6.5 + rot: 1.5707963267948966 rad + pos: -0.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23782 + color: '#B7410EFF' + - uid: 23420 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,10.5 + pos: 0.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23783 + color: '#B7410EFF' + - uid: 23421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,9.5 + rot: 3.141592653589793 rad + pos: -4.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23784 + color: '#B7410EFF' + - uid: 23422 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-9.5 + pos: -4.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23785 + color: '#B7410EFF' + - uid: 23423 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-15.5 + pos: -9.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23786 + color: '#2A6478FF' + - uid: 23424 components: - type: Transform - pos: 57.5,-19.5 + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23787 + color: '#2A6478FF' + - uid: 23425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-9.5 + rot: 1.5707963267948966 rad + pos: -7.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23788 + color: '#2A6478FF' + - uid: 23426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-18.5 + rot: 1.5707963267948966 rad + pos: -8.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23789 + color: '#2A6478FF' + - uid: 23427 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-4.5 + pos: -10.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23790 + color: '#B7410EFF' + - uid: 23428 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-22.5 + pos: -9.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23791 + color: '#B7410EFF' + - uid: 23429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-58.5 + rot: 1.5707963267948966 rad + pos: -8.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23792 + color: '#B7410EFF' + - uid: 23430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-36.5 + rot: 1.5707963267948966 rad + pos: -7.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23793 + color: '#B7410EFF' + - uid: 23431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-3.5 + rot: 1.5707963267948966 rad + pos: -6.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23794 + color: '#B7410EFF' + - uid: 23432 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-7.5 + pos: -5.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23795 + color: '#B7410EFF' + - uid: 23433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-13.5 + rot: 3.141592653589793 rad + pos: -4.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23796 + color: '#B7410EFF' + - uid: 23434 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,8.5 + pos: -11.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23797 + color: '#2A6478FF' + - uid: 23435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,1.5 + pos: -2.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23798 + color: '#2A6478FF' + - uid: 23436 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-18.5 + pos: -10.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23799 + color: '#B7410EFF' + - uid: 23437 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-16.5 + pos: -9.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23800 + color: '#B7410EFF' + - uid: 23438 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-15.5 + rot: -1.5707963267948966 rad + pos: -11.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23801 + color: '#B7410EFF' + - uid: 23439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-15.5 + rot: -1.5707963267948966 rad + pos: -13.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23802 + color: '#B7410EFF' + - uid: 23440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-15.5 + rot: -1.5707963267948966 rad + pos: -14.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23803 + color: '#B7410EFF' + - uid: 23441 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-15.5 + rot: -1.5707963267948966 rad + pos: -15.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23804 + color: '#B7410EFF' + - uid: 23442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-15.5 + pos: -16.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23805 + color: '#B7410EFF' + - uid: 23443 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-17.5 + pos: -16.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23806 + color: '#B7410EFF' + - uid: 23444 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-17.5 + pos: -12.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23807 + color: '#B7410EFF' + - uid: 23445 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-17.5 + pos: -12.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23808 + color: '#B7410EFF' + - uid: 23446 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-17.5 + rot: -1.5707963267948966 rad + pos: -13.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23809 + color: '#B7410EFF' + - uid: 23447 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-17.5 + rot: -1.5707963267948966 rad + pos: -14.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23810 + color: '#B7410EFF' + - uid: 23448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 + rot: -1.5707963267948966 rad + pos: -15.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23811 + color: '#B7410EFF' + - uid: 23449 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-13.5 + rot: -1.5707963267948966 rad + pos: -16.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23812 + color: '#B7410EFF' + - uid: 23450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,4.5 + rot: -1.5707963267948966 rad + pos: -17.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23813 + color: '#B7410EFF' + - uid: 23451 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,2.5 + pos: -18.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23814 + color: '#B7410EFF' + - uid: 23452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,3.5 + rot: -1.5707963267948966 rad + pos: -19.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23815 + color: '#B7410EFF' + - uid: 23453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-41.5 + rot: -1.5707963267948966 rad + pos: -18.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23816 + color: '#2A6478FF' + - uid: 23454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-15.5 + rot: -1.5707963267948966 rad + pos: -17.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23817 + color: '#2A6478FF' + - uid: 23455 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-15.5 + pos: -16.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23818 + color: '#2A6478FF' + - uid: 23456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,6.5 + rot: 3.141592653589793 rad + pos: -16.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23819 + color: '#2A6478FF' + - uid: 23457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,6.5 + rot: 3.141592653589793 rad + pos: -16.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23820 + color: '#2A6478FF' + - uid: 23458 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,22.5 + pos: -16.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23821 + color: '#2A6478FF' + - uid: 23459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-71.5 + rot: 3.141592653589793 rad + pos: -16.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23822 + color: '#2A6478FF' + - uid: 23460 components: - type: Transform - pos: -24.5,-5.5 + rot: -1.5707963267948966 rad + pos: -14.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23823 + color: '#2A6478FF' + - uid: 23461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,1.5 + rot: -1.5707963267948966 rad + pos: -15.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23824 + color: '#2A6478FF' + - uid: 23462 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-1.5 + pos: -13.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23825 + color: '#2A6478FF' + - uid: 23463 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,3.5 + pos: -13.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23827 + color: '#2A6478FF' + - uid: 23464 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-8.5 + pos: -10.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23828 + color: '#2A6478FF' + - uid: 23465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-11.5 + rot: 3.141592653589793 rad + pos: -10.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23829 + color: '#2A6478FF' + - uid: 23466 components: - type: Transform - pos: -50.5,-38.5 + rot: 3.141592653589793 rad + pos: -10.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23830 + color: '#2A6478FF' + - uid: 23467 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,10.5 + pos: -10.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23831 + color: '#2A6478FF' + - uid: 23468 components: - type: Transform - pos: 34.5,10.5 + rot: 1.5707963267948966 rad + pos: -9.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23832 + color: '#2A6478FF' + - uid: 23469 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,7.5 + pos: -8.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23833 + color: '#2A6478FF' + - uid: 23470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,2.5 + rot: 1.5707963267948966 rad + pos: -17.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23834 + color: '#2A6478FF' + - uid: 23471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,4.5 + rot: 1.5707963267948966 rad + pos: -16.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23835 + color: '#2A6478FF' + - uid: 23472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-0.5 + rot: 1.5707963267948966 rad + pos: -15.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23836 + color: '#2A6478FF' + - uid: 23473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,2.5 + rot: 1.5707963267948966 rad + pos: -13.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23837 + color: '#2A6478FF' + - uid: 23474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 + pos: -14.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23838 + color: '#2A6478FF' + - uid: 23475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,21.5 + pos: -14.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23839 + color: '#2A6478FF' + - uid: 23476 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,21.5 + pos: -14.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23840 + color: '#2A6478FF' + - uid: 23477 components: - type: Transform - pos: 0.5,22.5 + rot: 1.5707963267948966 rad + pos: -16.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23841 + color: '#2A6478FF' + - uid: 23478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,22.5 + rot: 1.5707963267948966 rad + pos: -15.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23842 + color: '#2A6478FF' + - uid: 23479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,11.5 + pos: -10.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23843 + color: '#2A6478FF' + - uid: 23480 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-14.5 + pos: -10.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23844 + color: '#2A6478FF' + - uid: 23481 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-14.5 + rot: -1.5707963267948966 rad + pos: -12.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23845 + color: '#2A6478FF' + - uid: 23482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,19.5 + rot: -1.5707963267948966 rad + pos: -11.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23846 + color: '#2A6478FF' + - uid: 23483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,20.5 + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23847 + color: '#2A6478FF' + - uid: 23484 components: - type: Transform - pos: 10.5,14.5 + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23848 + color: '#2A6478FF' + - uid: 23485 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-73.5 + rot: -1.5707963267948966 rad + pos: -15.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23849 + color: '#2A6478FF' + - uid: 23486 components: - type: Transform - pos: -17.5,-71.5 + rot: -1.5707963267948966 rad + pos: -16.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23850 - components: - - type: Transform - pos: 36.5,-98.5 - parent: 2 - - uid: 23851 + color: '#2A6478FF' + - uid: 23487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,10.5 + rot: -1.5707963267948966 rad + pos: -17.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23852 + color: '#2A6478FF' + - uid: 23488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,12.5 + rot: 3.141592653589793 rad + pos: -10.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23853 + color: '#2A6478FF' + - uid: 23489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-15.5 + rot: 3.141592653589793 rad + pos: -10.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23854 + color: '#2A6478FF' + - uid: 23490 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-16.5 + pos: -10.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23855 + color: '#2A6478FF' + - uid: 23491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,13.5 + rot: 3.141592653589793 rad + pos: -10.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23856 + color: '#2A6478FF' + - uid: 23492 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,11.5 + pos: -11.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23857 + color: '#2A6478FF' + - uid: 23493 components: - type: Transform - pos: 36.5,-101.5 + rot: 1.5707963267948966 rad + pos: -12.5,-24.5 parent: 2 - - uid: 23858 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 23494 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-87.5 + pos: -13.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23859 + color: '#2A6478FF' + - uid: 23495 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-95.5 + pos: -14.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23860 + color: '#2A6478FF' + - uid: 23496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-86.5 + rot: 3.141592653589793 rad + pos: -15.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23861 + color: '#2A6478FF' + - uid: 23497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 + rot: 3.141592653589793 rad + pos: -15.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-20.5 - parent: 2 - - uid: 23863 + color: '#2A6478FF' + - uid: 23498 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 2 - - uid: 23864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-92.5 + pos: -16.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23865 + color: '#2A6478FF' + - uid: 23499 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-57.5 + pos: -17.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23866 + color: '#2A6478FF' + - uid: 23500 components: - type: Transform rot: 3.141592653589793 rad - pos: 102.5,-21.5 + pos: -15.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23867 + color: '#2A6478FF' + - uid: 23501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-51.5 + pos: -5.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23868 + color: '#2A6478FF' + - uid: 23502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-33.5 + pos: -5.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23869 + color: '#2A6478FF' + - uid: 23503 components: - type: Transform - pos: 70.5,-31.5 + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23870 + color: '#2A6478FF' + - uid: 23504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 + pos: -2.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23871 + color: '#2A6478FF' + - uid: 23505 components: - type: Transform - pos: 65.5,-31.5 + pos: -2.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23872 + color: '#2A6478FF' + - uid: 23506 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-14.5 + pos: -2.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23873 + color: '#2A6478FF' + - uid: 23507 components: - type: Transform - pos: 27.5,-69.5 + pos: -2.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23874 + color: '#2A6478FF' + - uid: 23508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-69.5 + pos: -2.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23875 + color: '#2A6478FF' + - uid: 23509 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-47.5 - parent: 2 - - uid: 23876 - components: - - type: Transform - pos: 40.5,-47.5 - parent: 2 - - uid: 23877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-47.5 - parent: 2 - - uid: 23878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-49.5 - parent: 2 - - uid: 23879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-87.5 + pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 23880 + color: '#2A6478FF' + - uid: 23510 components: - type: Transform - pos: 41.5,-85.5 + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23881 + color: '#2A6478FF' + - uid: 23511 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-85.5 + pos: -0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23882 + color: '#2A6478FF' + - uid: 23512 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-33.5 + pos: -1.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23883 + color: '#2A6478FF' + - uid: 23513 components: - type: Transform - pos: 42.5,-31.5 + rot: 3.141592653589793 rad + pos: -1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23884 + color: '#2A6478FF' + - uid: 23514 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-94.5 + pos: -2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23885 + color: '#2A6478FF' + - uid: 23515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-95.5 + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23886 + color: '#2A6478FF' + - uid: 23516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-83.5 + pos: -3.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23887 + color: '#2A6478FF' + - uid: 23517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-82.5 + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23888 + color: '#2A6478FF' + - uid: 23518 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-74.5 + pos: -6.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23889 + color: '#2A6478FF' + - uid: 23519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-72.5 + rot: -1.5707963267948966 rad + pos: -7.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23890 + color: '#2A6478FF' + - uid: 23520 components: - type: Transform - pos: 48.5,-68.5 + rot: -1.5707963267948966 rad + pos: -8.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23891 + color: '#2A6478FF' + - uid: 23521 components: - type: Transform - pos: 50.5,-69.5 + rot: -1.5707963267948966 rad + pos: -9.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23892 + color: '#2A6478FF' + - uid: 23522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-69.5 + rot: -1.5707963267948966 rad + pos: -11.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23893 + color: '#2A6478FF' + - uid: 23523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-68.5 + rot: -1.5707963267948966 rad + pos: -12.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23894 + color: '#2A6478FF' + - uid: 23524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-60.5 + rot: -1.5707963267948966 rad + pos: -13.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23895 + color: '#2A6478FF' + - uid: 23525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-48.5 + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23896 + color: '#2A6478FF' + - uid: 23526 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-41.5 + pos: -15.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23897 + color: '#2A6478FF' + - uid: 23527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-42.5 + rot: -1.5707963267948966 rad + pos: -16.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23898 + color: '#2A6478FF' + - uid: 23528 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,-33.5 + pos: -18.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23899 + color: '#2A6478FF' + - uid: 23529 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-33.5 + pos: -18.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23900 + color: '#2A6478FF' + - uid: 23530 components: - type: Transform - pos: 33.5,-33.5 + rot: 3.141592653589793 rad + pos: -18.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23901 + color: '#2A6478FF' + - uid: 23531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-27.5 + rot: 3.141592653589793 rad + pos: -18.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23902 + color: '#2A6478FF' + - uid: 23532 components: - type: Transform - pos: 37.5,-31.5 + rot: 3.141592653589793 rad + pos: -18.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23903 + color: '#2A6478FF' + - uid: 23533 components: - type: Transform - pos: 56.5,-31.5 + rot: 3.141592653589793 rad + pos: -18.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23904 + color: '#2A6478FF' + - uid: 23534 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-31.5 + pos: -18.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23905 + color: '#2A6478FF' + - uid: 23535 components: - type: Transform - pos: 78.5,-31.5 + rot: 3.141592653589793 rad + pos: -18.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23906 + color: '#2A6478FF' + - uid: 23536 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-31.5 + pos: -18.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23907 + color: '#2A6478FF' + - uid: 23537 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,-33.5 + pos: -18.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23908 + color: '#2A6478FF' + - uid: 23538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-36.5 + pos: -10.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23909 + color: '#2A6478FF' + - uid: 23539 components: - type: Transform - pos: 86.5,-39.5 + pos: 9.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23910 + color: '#2A6478FF' + - uid: 23540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-31.5 + pos: 9.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23911 + color: '#2A6478FF' + - uid: 23541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-28.5 + pos: 9.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23912 + color: '#2A6478FF' + - uid: 23542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-23.5 + pos: 9.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23913 + color: '#2A6478FF' + - uid: 23543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-21.5 + pos: 9.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23914 + color: '#2A6478FF' + - uid: 23544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-33.5 + pos: 9.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23915 + color: '#2A6478FF' + - uid: 23545 components: - type: Transform - pos: 31.5,-31.5 + pos: 9.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23916 + color: '#2A6478FF' + - uid: 23546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-33.5 + pos: 9.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23917 + color: '#2A6478FF' + - uid: 23547 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-31.5 + pos: 9.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23918 + color: '#2A6478FF' + - uid: 23548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-21.5 + pos: 9.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23919 + color: '#2A6478FF' + - uid: 23549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-19.5 + pos: 9.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23920 + color: '#2A6478FF' + - uid: 23550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-14.5 + pos: 9.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23921 + color: '#2A6478FF' + - uid: 23551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-13.5 + pos: 9.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23922 + color: '#2A6478FF' + - uid: 23552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-6.5 + pos: 9.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23923 + color: '#2A6478FF' + - uid: 23553 components: - type: Transform - pos: 27.5,-2.5 + pos: 9.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23924 + color: '#2A6478FF' + - uid: 23554 components: - type: Transform - pos: 19.5,0.5 + rot: -1.5707963267948966 rad + pos: 12.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23925 + color: '#2A6478FF' + - uid: 23555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,1.5 + rot: -1.5707963267948966 rad + pos: 11.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23926 + color: '#2A6478FF' + - uid: 23556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-0.5 + rot: -1.5707963267948966 rad + pos: 10.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23927 + color: '#2A6478FF' + - uid: 23557 components: - type: Transform - pos: 8.5,4.5 + pos: -5.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23928 + color: '#2A6478FF' + - uid: 23558 components: - type: Transform - pos: -25.5,-69.5 + pos: -5.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23929 + color: '#2A6478FF' + - uid: 23559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,8.5 + pos: -5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23930 + color: '#2A6478FF' + - uid: 23560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,9.5 + rot: -1.5707963267948966 rad + pos: -4.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23931 + color: '#2A6478FF' + - uid: 23561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,3.5 + rot: -1.5707963267948966 rad + pos: -3.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23932 + color: '#2A6478FF' + - uid: 23562 components: - type: Transform - pos: -5.5,4.5 + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23933 + color: '#2A6478FF' + - uid: 23563 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,4.5 + rot: -1.5707963267948966 rad + pos: -1.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23934 + color: '#2A6478FF' + - uid: 23564 components: - type: Transform - pos: -4.5,3.5 + rot: -1.5707963267948966 rad + pos: -0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23935 + color: '#2A6478FF' + - uid: 23565 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,12.5 + pos: 0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23936 + color: '#2A6478FF' + - uid: 23566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 + rot: -1.5707963267948966 rad + pos: 1.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23937 + color: '#2A6478FF' + - uid: 23567 components: - type: Transform - pos: -0.5,22.5 + rot: -1.5707963267948966 rad + pos: 2.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23938 + color: '#2A6478FF' + - uid: 23568 components: - type: Transform - pos: 1.5,21.5 + rot: -1.5707963267948966 rad + pos: 4.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23939 + color: '#2A6478FF' + - uid: 23569 components: - type: Transform - pos: 7.5,21.5 + rot: -1.5707963267948966 rad + pos: 5.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23940 + color: '#2A6478FF' + - uid: 23570 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,22.5 + pos: -4.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23941 + color: '#B7410EFF' + - uid: 23571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-48.5 + pos: -3.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23942 + color: '#B7410EFF' + - uid: 23572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-42.5 + pos: -3.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23943 + color: '#B7410EFF' + - uid: 23573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-59.5 + rot: -1.5707963267948966 rad + pos: -2.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23944 + color: '#B7410EFF' + - uid: 23574 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-62.5 + pos: -3.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23945 + color: '#B7410EFF' + - uid: 23575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-71.5 + pos: 0.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23946 + color: '#2A6478FF' + - uid: 23576 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-71.5 + pos: 15.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23947 + color: '#2A6478FF' + - uid: 23577 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-76.5 + rot: -1.5707963267948966 rad + pos: 13.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23948 + color: '#2A6478FF' + - uid: 23578 components: - type: Transform - pos: 1.5,-76.5 + rot: -1.5707963267948966 rad + pos: 12.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23949 + color: '#2A6478FF' + - uid: 23579 components: - type: Transform - pos: -7.5,-74.5 + rot: -1.5707963267948966 rad + pos: 11.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23950 + color: '#2A6478FF' + - uid: 23580 components: - type: Transform - pos: -0.5,-74.5 + rot: -1.5707963267948966 rad + pos: 10.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23951 + color: '#2A6478FF' + - uid: 23581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-80.5 + rot: -1.5707963267948966 rad + pos: 9.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23952 + color: '#2A6478FF' + - uid: 23582 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-81.5 + pos: 8.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23953 + color: '#2A6478FF' + - uid: 23583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-82.5 + rot: -1.5707963267948966 rad + pos: 7.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23954 + color: '#2A6478FF' + - uid: 23584 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-79.5 + pos: 5.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23955 + color: '#2A6478FF' + - uid: 23585 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-80.5 + rot: -1.5707963267948966 rad + pos: 4.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23956 + color: '#2A6478FF' + - uid: 23586 components: - type: Transform - pos: 5.5,-82.5 + rot: -1.5707963267948966 rad + pos: 3.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23957 + color: '#2A6478FF' + - uid: 23587 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-86.5 + pos: 2.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23958 + color: '#2A6478FF' + - uid: 23588 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-87.5 + pos: 1.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23959 + color: '#2A6478FF' + - uid: 23589 components: - type: Transform - pos: -6.5,-87.5 + rot: 3.141592653589793 rad + pos: 14.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23960 + color: '#2A6478FF' + - uid: 23590 components: - type: Transform - pos: -8.5,-86.5 + rot: 3.141592653589793 rad + pos: 14.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23961 + color: '#2A6478FF' + - uid: 23591 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-90.5 + pos: 14.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23962 + color: '#2A6478FF' + - uid: 23592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-91.5 + rot: 3.141592653589793 rad + pos: 14.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23963 + color: '#2A6478FF' + - uid: 23593 components: - type: Transform - pos: 7.5,-88.5 + rot: 3.141592653589793 rad + pos: 14.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23964 + color: '#2A6478FF' + - uid: 23594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-73.5 + rot: 3.141592653589793 rad + pos: 6.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23965 + color: '#2A6478FF' + - uid: 23595 components: - type: Transform - pos: -23.5,-69.5 + rot: 3.141592653589793 rad + pos: 6.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23966 + color: '#2A6478FF' + - uid: 23596 components: - type: Transform - pos: -29.5,-53.5 + rot: 3.141592653589793 rad + pos: 6.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23967 + color: '#2A6478FF' + - uid: 23597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-76.5 + rot: 3.141592653589793 rad + pos: 6.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23968 + color: '#2A6478FF' + - uid: 23598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-77.5 + rot: 3.141592653589793 rad + pos: 6.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23969 + color: '#2A6478FF' + - uid: 23599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-80.5 + rot: 3.141592653589793 rad + pos: 6.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23970 + color: '#2A6478FF' + - uid: 23600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-81.5 + pos: -3.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23971 + color: '#B7410EFF' + - uid: 23601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-86.5 + pos: -3.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23972 + color: '#B7410EFF' + - uid: 23602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-87.5 + pos: -3.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23973 + color: '#B7410EFF' + - uid: 23603 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-59.5 + pos: -2.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23974 + color: '#B7410EFF' + - uid: 23604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-61.5 + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23975 + color: '#B7410EFF' + - uid: 23605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-47.5 + rot: -1.5707963267948966 rad + pos: -0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23976 + color: '#B7410EFF' + - uid: 23606 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-49.5 + pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23977 + color: '#B7410EFF' + - uid: 23607 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-42.5 + pos: 1.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23978 + color: '#B7410EFF' + - uid: 23608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-44.5 + pos: -10.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23979 + color: '#B7410EFF' + - uid: 23609 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-45.5 + pos: -15.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23980 + color: '#B7410EFF' + - uid: 23610 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-42.5 + rot: 1.5707963267948966 rad + pos: -14.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23981 + color: '#B7410EFF' + - uid: 23611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-19.5 + rot: 1.5707963267948966 rad + pos: -13.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23982 + color: '#B7410EFF' + - uid: 23612 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-21.5 + pos: -12.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23983 + color: '#B7410EFF' + - uid: 23613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-31.5 + pos: -11.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23984 + color: '#B7410EFF' + - uid: 23614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-33.5 + rot: 3.141592653589793 rad + pos: -11.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23985 + color: '#B7410EFF' + - uid: 23615 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-42.5 + pos: -11.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23986 + color: '#B7410EFF' + - uid: 23616 components: - type: Transform - pos: -44.5,-42.5 + rot: 3.141592653589793 rad + pos: -11.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23987 + color: '#B7410EFF' + - uid: 23617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-6.5 + rot: 3.141592653589793 rad + pos: -11.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23988 + color: '#B7410EFF' + - uid: 23618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 + rot: 3.141592653589793 rad + pos: -11.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23989 + color: '#B7410EFF' + - uid: 23619 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-7.5 + pos: -11.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23990 + color: '#B7410EFF' + - uid: 23620 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-1.5 + pos: -11.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23991 + color: '#B7410EFF' + - uid: 23621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,6.5 + rot: 1.5707963267948966 rad + pos: -13.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23992 + color: '#B7410EFF' + - uid: 23622 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,4.5 + pos: -12.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23993 + color: '#B7410EFF' + - uid: 23623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-43.5 + rot: 3.141592653589793 rad + pos: -11.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23994 + color: '#B7410EFF' + - uid: 23624 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-48.5 + pos: -17.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23995 + color: '#B7410EFF' + - uid: 23625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-48.5 + rot: 1.5707963267948966 rad + pos: -15.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23996 + color: '#B7410EFF' + - uid: 23626 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-47.5 + pos: -13.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23997 + color: '#B7410EFF' + - uid: 23627 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-59.5 + pos: -14.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23998 + color: '#B7410EFF' + - uid: 23628 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-57.5 + pos: -15.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23999 + color: '#B7410EFF' + - uid: 23629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-56.5 + pos: -16.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24000 + color: '#B7410EFF' + - uid: 23630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-52.5 + pos: -16.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24001 + color: '#B7410EFF' + - uid: 23631 components: - type: Transform - pos: -43.5,-59.5 + pos: -16.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24002 + color: '#B7410EFF' + - uid: 23632 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-59.5 + pos: -16.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24003 + color: '#B7410EFF' + - uid: 23633 components: - type: Transform - pos: -36.5,-59.5 + pos: -10.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24004 + color: '#B7410EFF' + - uid: 23634 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-57.5 + pos: -10.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24005 + color: '#B7410EFF' + - uid: 23635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-66.5 + rot: 1.5707963267948966 rad + pos: -9.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24006 + color: '#B7410EFF' + - uid: 23636 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-67.5 + pos: -8.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24007 + color: '#B7410EFF' + - uid: 23637 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-74.5 + pos: -7.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24008 + color: '#B7410EFF' + - uid: 23638 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-69.5 + pos: -6.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24009 + color: '#B7410EFF' + - uid: 23639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-64.5 + rot: 1.5707963267948966 rad + pos: -5.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24010 + color: '#B7410EFF' + - uid: 23640 components: - type: Transform - pos: -50.5,-64.5 + rot: 1.5707963267948966 rad + pos: -4.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24011 + color: '#B7410EFF' + - uid: 23641 components: - type: Transform - pos: -48.5,-66.5 + rot: 3.141592653589793 rad + pos: -11.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24012 + color: '#B7410EFF' + - uid: 23642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-73.5 + rot: 3.141592653589793 rad + pos: -11.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24013 + color: '#B7410EFF' + - uid: 23643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-75.5 + rot: 3.141592653589793 rad + pos: -11.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24014 + color: '#B7410EFF' + - uid: 23644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-72.5 + rot: 3.141592653589793 rad + pos: -11.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24015 + color: '#B7410EFF' + - uid: 23645 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,-66.5 + pos: -11.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24016 + color: '#B7410EFF' + - uid: 23646 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-64.5 + pos: -0.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24017 + color: '#B7410EFF' + - uid: 23647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-65.5 + pos: -0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24018 + color: '#B7410EFF' + - uid: 23648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-65.5 + pos: -0.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24019 + color: '#B7410EFF' + - uid: 23649 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-66.5 + pos: -0.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24020 + color: '#B7410EFF' + - uid: 23650 components: - type: Transform - pos: -61.5,-64.5 + pos: -0.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24021 + color: '#B7410EFF' + - uid: 23651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-43.5 + pos: -0.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24022 + color: '#B7410EFF' + - uid: 23652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-38.5 + pos: -0.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24023 + color: '#B7410EFF' + - uid: 23653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-38.5 + pos: -0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24024 + color: '#B7410EFF' + - uid: 23654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-33.5 + pos: -0.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24025 + color: '#B7410EFF' + - uid: 23655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-29.5 + pos: -0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24026 + color: '#B7410EFF' + - uid: 23656 components: - type: Transform - pos: -44.5,-27.5 + pos: -0.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24027 + color: '#B7410EFF' + - uid: 23657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-25.5 + pos: -0.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24028 + color: '#B7410EFF' + - uid: 23658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-34.5 + pos: -8.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24029 + - uid: 23659 components: - type: Transform - pos: -45.5,-29.5 + pos: -8.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24030 + - uid: 23660 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-22.5 + pos: 98.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24031 + color: '#FF0000FF' + - uid: 23661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-20.5 + rot: 1.5707963267948966 rad + pos: 99.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24032 + - uid: 23662 components: - type: Transform - pos: -41.5,-22.5 + rot: 1.5707963267948966 rad + pos: 100.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24033 + color: '#FF0000FF' + - uid: 23663 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-9.5 + pos: 101.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24034 + color: '#FF0000FF' + - uid: 23664 components: - type: Transform - pos: -50.5,-29.5 + rot: 1.5707963267948966 rad + pos: 31.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24035 + color: '#FF0000FF' + - uid: 23669 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-29.5 + pos: 23.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24036 + color: '#FF0000FF' + - uid: 23670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-44.5 + pos: 23.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24037 + color: '#FF0000FF' + - uid: 23671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-42.5 + pos: 23.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24038 + - uid: 23672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-29.5 + pos: 23.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24039 + color: '#FF0000FF' + - uid: 23673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-24.5 + pos: 23.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24040 + color: '#FF0000FF' + - uid: 23674 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-6.5 + pos: 24.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24042 + - uid: 23675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-8.5 + rot: -1.5707963267948966 rad + pos: 25.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24043 + - uid: 23676 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-44.5 + pos: 30.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24044 + color: '#FF0000FF' + - uid: 23677 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,-44.5 + pos: 30.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24045 + color: '#FF0000FF' + - uid: 23678 components: - type: Transform - pos: -66.5,-42.5 + rot: 3.141592653589793 rad + pos: 35.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24046 + - uid: 23679 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-42.5 + pos: 35.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24047 + - uid: 23680 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-54.5 + pos: 36.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24048 + - uid: 23681 components: - type: Transform - pos: -55.5,-42.5 + rot: -1.5707963267948966 rad + pos: 34.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24049 + - uid: 23682 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-25.5 + pos: 33.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24050 + - uid: 23683 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,-42.5 + pos: 11.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24051 + - uid: 23684 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-95.5 + pos: 12.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24052 + - uid: 23685 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-95.5 + pos: 13.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24053 + color: '#FF0000FF' + - uid: 23686 components: - type: Transform - pos: 8.5,-101.5 + rot: 3.141592653589793 rad + pos: 15.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24054 + - uid: 23687 components: - type: Transform - pos: 9.5,-99.5 + rot: 3.141592653589793 rad + pos: 15.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24055 + color: '#0000FFFF' + - uid: 23688 components: - type: Transform - pos: 8.5,-88.5 + rot: 1.5707963267948966 rad + pos: 14.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24056 + color: '#0000FFFF' + - uid: 23689 components: - type: Transform - pos: 6.5,-90.5 + rot: 1.5707963267948966 rad + pos: 13.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24057 + - uid: 23690 components: - type: Transform - pos: 39.5,-85.5 + pos: 12.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24058 + color: '#0000FFFF' + - uid: 23691 components: - type: Transform - pos: -48.5,-33.5 + rot: -1.5707963267948966 rad + pos: 13.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24059 + color: '#0000FFFF' + - uid: 23692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-13.5 + rot: 1.5707963267948966 rad + pos: 15.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24060 + color: '#0000FFFF' + - uid: 23693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,12.5 + pos: 16.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24061 + - uid: 23694 components: - type: Transform - pos: -63.5,-66.5 + pos: 16.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24062 + color: '#0000FFFF' + - uid: 23695 components: - type: Transform - pos: -62.5,-64.5 + pos: 16.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24063 + - uid: 23696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-4.5 + rot: -1.5707963267948966 rad + pos: 17.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24064 + - uid: 23697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-2.5 + rot: -1.5707963267948966 rad + pos: 16.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24065 + color: '#FF0000FF' + - uid: 23698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-38.5 + rot: -1.5707963267948966 rad + pos: 15.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24066 + - uid: 23699 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-1.5 + pos: 14.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24067 + - uid: 23700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-5.5 + rot: -1.5707963267948966 rad + pos: 13.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24068 + color: '#FF0000FF' + - uid: 23701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-38.5 + rot: -1.5707963267948966 rad + pos: 12.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24069 + color: '#FF0000FF' + - uid: 23702 components: - type: Transform - pos: -72.5,-26.5 + rot: -1.5707963267948966 rad + pos: 11.5,19.5 parent: 2 - - uid: 24070 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,4.5 + rot: -1.5707963267948966 rad + pos: 10.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24071 + - uid: 23704 components: - type: Transform - pos: -82.5,-13.5 + rot: 1.5707963267948966 rad + pos: 9.5,20.5 parent: 2 - - uid: 24072 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-83.5 + rot: 1.5707963267948966 rad + pos: 10.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24073 + - uid: 23706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,-87.5 + rot: 1.5707963267948966 rad + pos: 11.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24074 + - uid: 23707 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,-86.5 + pos: 12.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24075 + color: '#0000FFFF' + - uid: 23708 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,-82.5 + pos: 13.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24076 + color: '#0000FFFF' + - uid: 23709 components: - type: Transform - pos: 98.5,-79.5 + rot: 3.141592653589793 rad + pos: -2.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24077 + - uid: 23710 components: - type: Transform rot: 3.141592653589793 rad - pos: 99.5,-79.5 + pos: -2.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24078 + - uid: 23711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-75.5 + rot: 3.141592653589793 rad + pos: -2.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24079 + color: '#0000FFFF' + - uid: 23712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 99.5,-75.5 + rot: 3.141592653589793 rad + pos: -2.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24080 + - uid: 23713 components: - type: Transform rot: 3.141592653589793 rad - pos: 98.5,-71.5 + pos: 3.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24081 + color: '#0000FFFF' + - uid: 23714 components: - type: Transform - pos: 98.5,-67.5 + rot: 3.141592653589793 rad + pos: 3.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24082 + - uid: 23715 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-16.5 + pos: 3.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24083 + - uid: 23716 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-15.5 + pos: -1.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24084 + - uid: 23717 components: - type: Transform - pos: 34.5,21.5 + rot: -1.5707963267948966 rad + pos: -9.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24085 + color: '#FF0000FF' + - uid: 23718 components: - type: Transform - pos: 36.5,23.5 + rot: -1.5707963267948966 rad + pos: -10.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24086 + - uid: 23719 components: - type: Transform - pos: -32.5,-80.5 + rot: -1.5707963267948966 rad + pos: -11.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24087 + - uid: 23720 components: - type: Transform - pos: -31.5,-81.5 + rot: -1.5707963267948966 rad + pos: -12.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24088 + color: '#FF0000FF' + - uid: 23721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-81.5 + pos: -8.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24089 + - uid: 23722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 + pos: -8.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24090 + color: '#FF0000FF' + - uid: 23723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-27.5 + rot: -1.5707963267948966 rad + pos: -7.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24091 + color: '#FF0000FF' + - uid: 23724 components: - type: Transform - pos: -37.5,-42.5 + rot: 1.5707963267948966 rad + pos: -47.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24092 + - uid: 23725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-44.5 + rot: 1.5707963267948966 rad + pos: -46.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24093 + color: '#FF0000FF' + - uid: 23726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.5,-42.5 + pos: -48.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24094 + - uid: 23727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-19.5 + pos: -48.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24095 + color: '#FF0000FF' + - uid: 23728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-19.5 + pos: -48.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24096 + color: '#FF0000FF' + - uid: 23729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-19.5 + pos: -48.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24097 + color: '#FF0000FF' + - uid: 23730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-19.5 + pos: -48.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24098 + color: '#FF0000FF' + - uid: 23731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-19.5 + rot: 1.5707963267948966 rad + pos: -39.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24099 + color: '#FF0000FF' + - uid: 23732 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-17.5 + pos: -65.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24100 + color: '#0000FFFF' + - uid: 23733 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-17.5 + pos: -65.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24101 + color: '#0000FFFF' + - uid: 23734 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-17.5 + pos: -65.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24102 + color: '#0000FFFF' + - uid: 23735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-17.5 + rot: -1.5707963267948966 rad + pos: -65.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24103 + color: '#FF0000FF' + - uid: 23736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-17.5 + rot: -1.5707963267948966 rad + pos: -64.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24104 + color: '#FF0000FF' + - uid: 23737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-16.5 + rot: -1.5707963267948966 rad + pos: -63.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24105 + color: '#FF0000FF' + - uid: 23738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-16.5 + rot: -1.5707963267948966 rad + pos: -62.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24106 + color: '#FF0000FF' + - uid: 23739 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-16.5 + pos: -61.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24107 + color: '#FF0000FF' + - uid: 23740 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-14.5 + pos: -61.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24108 + color: '#FF0000FF' + - uid: 23741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-17.5 + rot: 3.141592653589793 rad + pos: -61.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24109 - components: - - type: Transform - pos: 79.5,6.5 - parent: 2 - - uid: 24110 + color: '#FF0000FF' + - uid: 23742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-14.5 + rot: 3.141592653589793 rad + pos: -61.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24111 + color: '#FF0000FF' + - uid: 23743 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-0.5 + pos: -61.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24112 + - uid: 23744 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-13.5 + pos: -61.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24113 + color: '#FF0000FF' + - uid: 23745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-13.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -29.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24114 + color: '#FF0000FF' + - uid: 23746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-13.5 + rot: 1.5707963267948966 rad + pos: -28.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24115 + color: '#FF0000FF' + - uid: 23747 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-13.5 + pos: -16.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24116 + color: '#FF0000FF' + - uid: 23748 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-13.5 + pos: -16.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24117 + color: '#FF0000FF' + - uid: 23749 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-2.5 + pos: -15.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24118 + color: '#0000FFFF' + - uid: 23750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,3.5 + rot: 3.141592653589793 rad + pos: -15.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24119 + - uid: 23751 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-23.5 + pos: -15.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24120 + - uid: 23752 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-12.5 + pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24121 + color: '#FF0000FF' + - uid: 23753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-12.5 + pos: -17.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24122 + color: '#FF0000FF' + - uid: 23754 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 + rot: -1.5707963267948966 rad + pos: -16.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24123 + color: '#FF0000FF' + - uid: 23755 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-12.5 + pos: -15.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24124 + color: '#FF0000FF' + - uid: 23756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-21.5 + rot: 3.141592653589793 rad + pos: -15.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24125 + - uid: 23757 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-15.5 + pos: -20.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24126 + - uid: 23758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-24.5 + rot: 3.141592653589793 rad + pos: -20.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24127 + color: '#FF0000FF' + - uid: 23759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-40.5 + rot: 3.141592653589793 rad + pos: -20.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24128 + - uid: 23760 components: - type: Transform - pos: -61.5,-42.5 + rot: 3.141592653589793 rad + pos: -20.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24129 + - uid: 23761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-43.5 + rot: 3.141592653589793 rad + pos: -20.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24130 + color: '#FF0000FF' + - uid: 23762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-43.5 + rot: 3.141592653589793 rad + pos: -20.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24131 + - uid: 23763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-16.5 + rot: 3.141592653589793 rad + pos: -20.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24132 + - uid: 23764 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,3.5 + pos: -20.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24133 + - uid: 23765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-7.5 + pos: -21.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24134 + color: '#0000FFFF' + - uid: 23766 components: - type: Transform - pos: 2.5,4.5 + pos: -21.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24135 + - uid: 23767 components: - type: Transform - pos: -1.5,3.5 + rot: -1.5707963267948966 rad + pos: -22.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24136 + color: '#0000FFFF' + - uid: 23831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 97.5,-74.5 + rot: -1.5707963267948966 rad + pos: 34.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24137 + - uid: 24809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-19.5 + rot: -1.5707963267948966 rad + pos: 35.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24138 + - uid: 24810 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-2.5 + rot: -1.5707963267948966 rad + pos: 35.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24139 + color: '#FF0000FF' + - uid: 26539 components: - type: Transform - pos: -28.5,-70.5 + rot: 3.141592653589793 rad + pos: 36.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24140 + - uid: 27810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-9.5 + rot: 3.141592653589793 rad + pos: 29.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24141 + - uid: 40736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-12.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 40666 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24142 + color: '#FF0000FF' + - uid: 40737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 40738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 40739 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-10.5 - parent: 2 + pos: -0.5,0.5 + parent: 40666 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24143 + - uid: 40740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-7.5 - parent: 2 + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 40666 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24144 + - uid: 40741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-44.5 - parent: 2 + pos: -1.5,-1.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 40828 + - uid: 41189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 40828 + - uid: 41190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 40828 + - uid: 41191 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24145 + - uid: 41192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-2.5 - parent: 2 + pos: 1.5,-9.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41193 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24146 + - uid: 41194 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-0.5 - parent: 2 + pos: 2.5,-8.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24147 + - uid: 41195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-9.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24148 + - uid: 41196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-7.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24149 + - uid: 41197 components: - type: Transform rot: -1.5707963267948966 rad - pos: 82.5,-2.5 - parent: 2 + pos: 5.5,-8.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24150 + - uid: 41198 components: - type: Transform - pos: 82.5,-1.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24151 + - uid: 41199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-1.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24152 + - uid: 41200 components: - type: Transform - pos: 81.5,-7.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24153 + - uid: 41201 components: - type: Transform - pos: 75.5,-11.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24154 + - uid: 41202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-8.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24155 + color: '#0000FFFF' + - uid: 41203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-6.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24156 + - uid: 41204 components: - type: Transform - pos: 77.5,-3.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24157 + - uid: 41205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-3.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24158 + - uid: 41206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-3.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24159 + - uid: 41207 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,-7.5 - parent: 2 + pos: -1.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24160 + color: '#FF0000FF' + - uid: 41208 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-6.5 - parent: 2 + pos: -2.5,-9.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24161 - components: - - type: Transform - pos: -7.5,-54.5 - parent: 2 - - uid: 24162 + - uid: 41209 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,9.5 - parent: 2 + pos: -3.5,-10.5 + parent: 40828 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24163 + color: '#FF0000FF' + - uid: 41210 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,11.5 - parent: 2 + pos: -3.5,-11.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24164 + - uid: 41211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-2.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 40828 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24165 + color: '#FF0000FF' + - uid: 41212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,5.5 - parent: 2 - - uid: 24166 + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-53.5 - parent: 2 - - uid: 24167 + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41214 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-53.5 - parent: 2 - - uid: 24168 + pos: 4.5,-6.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41215 components: - type: Transform - pos: -6.5,-51.5 - parent: 2 - - uid: 24169 + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41216 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-54.5 - parent: 2 - - uid: 24170 + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41217 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-51.5 - parent: 2 - - uid: 24171 + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41218 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-49.5 - parent: 2 - - uid: 24172 + pos: -2.5,-6.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41219 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-47.5 - parent: 2 + pos: 1.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24173 + color: '#FF0000FF' + - uid: 41220 components: - type: Transform - pos: 70.5,4.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24174 + color: '#FF0000FF' + - uid: 41221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,2.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24175 + - uid: 41222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-1.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24176 + - uid: 41223 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-26.5 - parent: 2 + pos: -1.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24177 + color: '#FF0000FF' + - uid: 41224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-6.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24178 + - uid: 41225 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 2 + pos: -0.5,-4.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24179 + - uid: 41226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-7.5 - parent: 2 + pos: 1.5,-5.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24180 + - uid: 41227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 2 + pos: 1.5,-4.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24181 + - uid: 41228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-38.5 - parent: 2 + pos: 1.5,-3.5 + parent: 40828 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24182 + color: '#0000FFFF' + - uid: 41229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 2 + pos: 1.5,-2.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24183 + color: '#0000FFFF' + - uid: 41230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-40.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24184 + color: '#FF0000FF' + - uid: 41231 components: - type: Transform - pos: -2.5,-43.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24185 + color: '#FF0000FF' + - uid: 41232 components: - type: Transform - pos: 0.5,-43.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24186 + color: '#FF0000FF' + - uid: 41790 components: - type: Transform - pos: -1.5,-44.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24187 + color: '#FF0000FF' + - uid: 41791 components: - type: Transform - pos: -0.5,-44.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24188 + color: '#FF0000FF' + - uid: 41792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-53.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24189 + color: '#FF0000FF' + - uid: 41793 components: - type: Transform - pos: 14.5,-29.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24190 + color: '#FF0000FF' + - uid: 41794 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-29.5 - parent: 2 + pos: 3.5,-10.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24191 + color: '#0000FFFF' + - uid: 41795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24192 + color: '#0000FFFF' + - uid: 41796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 2 + pos: 3.5,-0.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24193 + color: '#0000FFFF' + - uid: 41797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 2 + pos: 3.5,0.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24194 + color: '#0000FFFF' + - uid: 41798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24195 + color: '#FF0000FF' + - uid: 41799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 2 + pos: 2.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24196 + color: '#0000FFFF' + - uid: 41800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 2 + pos: 2.5,-6.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24197 + color: '#0000FFFF' + - uid: 41801 components: - type: Transform - pos: -12.5,-44.5 - parent: 2 + pos: 3.5,-3.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24198 + color: '#0000FFFF' + - uid: 41802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-15.5 - parent: 2 + pos: 3.5,-1.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24199 + color: '#0000FFFF' + - uid: 41803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-19.5 - parent: 2 + pos: 4.5,-6.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24200 + color: '#FF0000FF' + - uid: 41804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-32.5 - parent: 2 + pos: 4.5,-1.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24201 + color: '#FF0000FF' + - uid: 41805 components: - type: Transform - pos: 3.5,-24.5 - parent: 2 + pos: 4.5,-9.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24202 + color: '#FF0000FF' + - uid: 41806 components: - type: Transform - pos: -4.5,-43.5 - parent: 2 + pos: 4.5,-3.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24203 + color: '#FF0000FF' + - uid: 41807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 + pos: 4.5,-8.5 + parent: 41669 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41808 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 41669 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24204 + color: '#0000FFFF' + - uid: 42056 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-43.5 + pos: 7.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24205 + color: '#FF0000FF' + - uid: 42057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-27.5 + rot: 3.141592653589793 rad + pos: 7.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24206 + color: '#FF0000FF' + - uid: 42061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-54.5 + pos: 9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24207 + color: '#0000FFFF' + - uid: 42205 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad - pos: 112.5,-41.5 + pos: -72.00455,-1.4077976 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 42376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24208 + - uid: 42377 components: - type: Transform - rot: 3.141592653589793 rad - pos: 117.5,-40.5 + pos: 30.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24209 + - uid: 42378 components: - type: Transform - pos: 116.5,-38.5 + rot: 3.141592653589793 rad + pos: 29.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24210 +- proto: GasPipeTJunction + entities: + - uid: 16888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 107.5,-42.5 + rot: -1.5707963267948966 rad + pos: 7.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24211 + - uid: 16894 components: - type: Transform - pos: 105.5,-40.5 + rot: 1.5707963267948966 rad + pos: 8.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24212 + - uid: 16911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 110.5,-39.5 + rot: 3.141592653589793 rad + pos: 29.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24213 + - uid: 23768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.5,-40.5 + rot: 1.5707963267948966 rad + pos: 44.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24214 + color: '#FF0000FF' + - uid: 23769 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,3.5 + pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24215 + - uid: 23770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-22.5 + rot: 1.5707963267948966 rad + pos: 43.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24216 + color: '#0000FFFF' + - uid: 23771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-39.5 + pos: 58.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24217 + color: '#0000FFFF' + - uid: 23772 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-39.5 + pos: -16.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24218 + color: '#00FFFFFF' + - uid: 23773 components: - type: Transform - pos: 9.5,-40.5 + rot: 3.141592653589793 rad + pos: 75.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24219 + color: '#FF0000FF' + - uid: 23774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-26.5 + pos: 43.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24220 + color: '#0000FFFF' + - uid: 23775 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-30.5 + pos: 45.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24221 + color: '#0000FFFF' + - uid: 23776 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-19.5 + pos: 43.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24222 + color: '#0000FFFF' + - uid: 23777 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-23.5 + pos: 68.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24223 + color: '#FF0000FF' + - uid: 23778 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-27.5 + pos: 52.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24224 + color: '#0000FFFF' + - uid: 23779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-33.5 + rot: 1.5707963267948966 rad + pos: 56.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24225 + color: '#0000FFFF' + - uid: 23780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23781 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-49.5 + pos: 57.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24226 + color: '#FF0000FF' + - uid: 23782 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-48.5 + pos: 57.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24227 + color: '#FF0000FF' + - uid: 23783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-36.5 + rot: -1.5707963267948966 rad + pos: 56.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24228 + color: '#0000FFFF' + - uid: 23784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 + rot: 3.141592653589793 rad + pos: 69.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24229 + color: '#0000FFFF' + - uid: 23785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-29.5 + rot: 1.5707963267948966 rad + pos: 43.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24230 + color: '#FF0000FF' + - uid: 23786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-22.5 + pos: 57.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24231 + color: '#FF0000FF' + - uid: 23787 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-35.5 + pos: 63.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24232 + color: '#0000FFFF' + - uid: 23788 components: - type: Transform - pos: -3.5,-11.5 + rot: -1.5707963267948966 rad + pos: 45.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24233 + color: '#0000FFFF' + - uid: 23789 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-11.5 + pos: 43.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24234 + color: '#0000FFFF' + - uid: 23790 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-21.5 + pos: 43.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24235 + color: '#FF0000FF' + - uid: 23791 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-29.5 + pos: 59.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24236 + color: '#FF0000FF' + - uid: 23792 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-24.5 + pos: 31.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24237 + color: '#0000FFFF' + - uid: 23793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-34.5 + rot: -1.5707963267948966 rad + pos: 43.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24238 + color: '#0000FFFF' + - uid: 23794 components: - type: Transform - pos: 14.5,-54.5 + rot: 1.5707963267948966 rad + pos: 42.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24239 + color: '#FF0000FF' + - uid: 23795 components: - type: Transform - pos: 6.5,-54.5 + rot: 1.5707963267948966 rad + pos: 45.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24240 + color: '#0000FFFF' + - uid: 23796 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-22.5 + pos: 56.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24241 + color: '#0000FFFF' + - uid: 23797 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-23.5 + pos: 42.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24242 + color: '#FF0000FF' + - uid: 23798 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-28.5 + pos: -16.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24243 + color: '#00FFFFFF' + - uid: 23799 components: - type: Transform - pos: -16.5,-33.5 + rot: -1.5707963267948966 rad + pos: -12.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24244 + color: '#00FFFFFF' + - uid: 23800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-38.5 + rot: 3.141592653589793 rad + pos: -8.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24245 + color: '#00FFFFFF' + - uid: 23801 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-20.5 + pos: -7.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24246 + color: '#00FFFFFF' + - uid: 23802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-20.5 + rot: 3.141592653589793 rad + pos: -6.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24247 + color: '#00FFFFFF' + - uid: 23803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 + rot: 3.141592653589793 rad + pos: -5.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24248 + color: '#00FFFFFF' + - uid: 23804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,19.5 + rot: 3.141592653589793 rad + pos: -4.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24249 + color: '#00FFFFFF' + - uid: 23805 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-25.5 + pos: 0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24250 + color: '#00FFFFFF' + - uid: 23806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-49.5 + rot: 3.141592653589793 rad + pos: -1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24251 + color: '#00FFFFFF' + - uid: 23807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,4.5 + rot: 3.141592653589793 rad + pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24252 + color: '#00FFFFFF' + - uid: 23808 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,1.5 + pos: 1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 40742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 40666 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 40828 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41234 + color: '#00FFFFFF' + - uid: 23809 components: - type: Transform - pos: 0.5,-4.5 - parent: 40828 + rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41235 + color: '#00FFFFFF' + - uid: 23810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41809 + color: '#00FFFFFF' + - uid: 23811 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 41669 + pos: -9.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41810 + color: '#00FFFFFF' + - uid: 23812 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 41669 + pos: 43.5,4.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41811 + - uid: 23813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 41669 + rot: -1.5707963267948966 rad + pos: 43.5,2.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41812 + - uid: 23814 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 41669 + pos: 44.5,3.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41813 + - uid: 23815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 41669 + rot: 3.141592653589793 rad + pos: 87.5,-41.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41814 + - uid: 23816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 41669 + rot: 3.141592653589793 rad + pos: -9.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPort - entities: - - uid: 24253 + color: '#00FFFFFF' + - uid: 23817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 + rot: 3.141592653589793 rad + pos: -3.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24254 + - uid: 23818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-32.5 + rot: 1.5707963267948966 rad + pos: 44.5,6.5 parent: 2 - - uid: 24255 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23819 components: - type: Transform - pos: -60.5,-74.5 + rot: 1.5707963267948966 rad + pos: 26.5,6.5 parent: 2 - - uid: 24256 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23820 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-23.5 + pos: -6.5,22.5 parent: 2 - - uid: 24257 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23821 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-56.5 + pos: -28.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#00FF00FF' - - uid: 24258 + color: '#FF0000FF' + - uid: 23822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-55.5 + pos: -24.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#00FF00FF' - - uid: 24259 + color: '#FF0000FF' + - uid: 23823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-56.5 + rot: 1.5707963267948966 rad + pos: -21.5,1.5 parent: 2 - - uid: 24260 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-56.5 + rot: 3.141592653589793 rad + pos: -21.5,-1.5 parent: 2 - - uid: 24261 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-58.5 + rot: 3.141592653589793 rad + pos: -12.5,-0.5 parent: 2 - - uid: 24262 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-49.5 + rot: -1.5707963267948966 rad + pos: 35.5,3.5 parent: 2 - - uid: 24263 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23827 components: - type: Transform - pos: 42.5,-46.5 + rot: 3.141592653589793 rad + pos: 43.5,-8.5 parent: 2 - - uid: 24264 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23828 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-46.5 + pos: 43.5,-11.5 parent: 2 - - uid: 24265 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-48.5 + pos: -50.5,-38.5 parent: 2 - - uid: 24266 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23832 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-47.5 - parent: 2 - - uid: 24267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-49.5 + pos: 31.5,7.5 parent: 2 - - uid: 24268 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23833 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-86.5 + pos: 26.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 24269 + color: '#FF0000FF' + - uid: 23834 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-87.5 + pos: 17.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 24270 + color: '#0000FFFF' + - uid: 23835 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-23.5 - parent: 2 - - uid: 24271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-89.5 + pos: 13.5,-0.5 parent: 2 - - uid: 24272 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23836 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-88.5 - parent: 2 - - uid: 24273 - components: - - type: Transform - pos: -62.5,-74.5 + pos: 13.5,2.5 parent: 2 - - uid: 24274 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23837 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,-78.5 + pos: -6.5,10.5 parent: 2 - - uid: 24275 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23838 components: - type: Transform - pos: -72.5,-24.5 + rot: 3.141592653589793 rad + pos: 3.5,21.5 parent: 2 - - uid: 24276 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23839 components: - type: Transform rot: 3.141592653589793 rad - pos: -72.5,-27.5 + pos: -2.5,21.5 parent: 2 - - uid: 24277 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23840 components: - type: Transform - pos: -71.5,-24.5 + pos: 0.5,22.5 parent: 2 - - uid: 24278 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23841 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,-27.5 - parent: 2 - - uid: 24279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-13.5 + pos: -1.5,22.5 parent: 2 - - uid: 24280 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23842 components: - type: Transform - pos: 95.5,-82.5 + rot: -1.5707963267948966 rad + pos: 57.5,11.5 parent: 2 - - uid: 24281 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23843 components: - type: Transform - pos: 96.5,-82.5 + rot: 3.141592653589793 rad + pos: -13.5,-14.5 parent: 2 - - uid: 24282 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 23844 components: - type: Transform rot: 3.141592653589793 rad - pos: 100.5,-84.5 + pos: -12.5,-14.5 parent: 2 - - uid: 24283 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 23845 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-55.5 + pos: 9.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FFAA00FF' - - uid: 24284 + color: '#FF0000FF' + - uid: 23846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-61.5 + rot: 1.5707963267948966 rad + pos: 8.5,20.5 parent: 2 - - uid: 24285 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-60.5 + pos: 10.5,14.5 parent: 2 - - uid: 24286 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-54.5 + rot: 3.141592653589793 rad + pos: -15.5,-73.5 parent: 2 - - uid: 24287 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-54.5 + pos: -17.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FFAA00FF' - - uid: 24288 + color: '#0000FFFF' + - uid: 23850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-62.5 + pos: 36.5,-98.5 parent: 2 - - uid: 24289 + - uid: 23851 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-18.5 + pos: 27.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24290 + color: '#FF0000FF' + - uid: 23852 components: - type: Transform - pos: 77.5,6.5 + rot: -1.5707963267948966 rad + pos: 27.5,12.5 parent: 2 - - uid: 24291 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23853 components: - type: Transform - pos: 81.5,6.5 + rot: -1.5707963267948966 rad + pos: -40.5,-15.5 parent: 2 - - uid: 24292 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23854 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-56.5 + pos: -43.5,-16.5 parent: 2 - - uid: 24293 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-56.5 + rot: -1.5707963267948966 rad + pos: 31.5,13.5 parent: 2 - - uid: 41236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-11.5 - parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41815 + - uid: 23856 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 41669 + pos: 31.5,11.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' -- proto: GasPressurePump - entities: - - uid: 24294 + - uid: 23857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-92.5 + pos: 36.5,-101.5 parent: 2 - - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24295 + - uid: 23858 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-98.5 + pos: 45.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24296 + color: '#FF0000FF' + - uid: 23859 components: - type: Transform - pos: 36.5,-99.5 + rot: -1.5707963267948966 rad + pos: 45.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24297 + color: '#FF0000FF' + - uid: 23860 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-101.5 + pos: 46.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24298 + color: '#0000FFFF' + - uid: 23861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-103.5 + rot: -1.5707963267948966 rad + pos: 31.5,-2.5 parent: 2 - - uid: 24299 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-86.5 + rot: -1.5707963267948966 rad + pos: -35.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24300 + - uid: 23863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-89.5 + pos: -37.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24301 + - uid: 23864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-95.5 + rot: -1.5707963267948966 rad + pos: -31.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24302 + color: '#0000FFFF' + - uid: 23865 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-103.5 + pos: 45.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24303 + - uid: 23866 components: - type: Transform - pos: 36.5,-102.5 + rot: 3.141592653589793 rad + pos: 102.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24304 + color: '#0000FFFF' + - uid: 23867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-86.5 + rot: -1.5707963267948966 rad + pos: 43.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24305 + - uid: 23868 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-22.5 + pos: 72.5,-33.5 parent: 2 - - uid: 24306 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23869 components: - type: Transform - pos: -36.5,-22.5 + pos: 70.5,-31.5 parent: 2 - - uid: 24307 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23870 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-58.5 - parent: 2 - - uid: 24308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-56.5 + pos: 26.5,-7.5 parent: 2 - - uid: 24309 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23871 components: - type: Transform - pos: 40.5,-50.5 + pos: 65.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24310 + color: '#0000FFFF' + - uid: 23872 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-50.5 + pos: -15.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24311 + color: '#00FFFFFF' + - uid: 23873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-85.5 + pos: 27.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24312 + color: '#0000FFFF' + - uid: 23874 components: - type: Transform - pos: 41.5,-103.5 + rot: 1.5707963267948966 rad + pos: -27.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24313 + color: '#0000FFFF' + - uid: 23875 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-89.5 + pos: 42.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24314 + - uid: 23876 components: - type: Transform - pos: -60.5,-75.5 + pos: 40.5,-47.5 parent: 2 - - uid: 24315 + - uid: 23877 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-75.5 + pos: 35.5,-47.5 parent: 2 - - uid: 24316 + - uid: 23878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-78.5 + rot: 3.141592653589793 rad + pos: 35.5,-49.5 parent: 2 - - uid: 24317 + - uid: 23879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-25.5 + rot: 3.141592653589793 rad + pos: 42.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24318 + color: '#947507FF' + - uid: 23880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-26.5 + pos: 41.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24319 + - uid: 23881 components: - type: Transform rot: -1.5707963267948966 rad - pos: 80.5,5.5 - parent: 2 - - type: GasPressurePump - targetPressure: 200 - - uid: 24320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,5.5 - parent: 2 - - type: GasPressurePump - targetPressure: 200 - - uid: 24321 - components: - - type: Transform - pos: -1.5,-49.5 + pos: 45.5,-85.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41237 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' -- proto: GasRecycler - entities: - - uid: 24322 + - uid: 23882 components: - type: Transform - pos: -1.5,-50.5 + rot: 3.141592653589793 rad + pos: 34.5,-33.5 parent: 2 -- proto: GasThermoMachineFreezer - entities: - - uid: 24323 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23883 components: - type: Transform - pos: -38.5,-19.5 + pos: 42.5,-31.5 parent: 2 - - uid: 24324 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23884 components: - type: Transform - pos: 42.5,-89.5 + rot: 1.5707963267948966 rad + pos: -8.5,-94.5 parent: 2 - - uid: 24325 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23885 components: - type: Transform - pos: 42.5,-90.5 + rot: -1.5707963267948966 rad + pos: -6.5,-95.5 parent: 2 - - uid: 24326 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23886 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-61.5 + pos: 45.5,-83.5 parent: 2 - - uid: 24327 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23887 components: - type: Transform - pos: -13.5,-32.5 + rot: 1.5707963267948966 rad + pos: 46.5,-82.5 parent: 2 - - uid: 24328 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23888 components: - type: Transform - pos: -2.5,-50.5 + rot: -1.5707963267948966 rad + pos: 50.5,-74.5 parent: 2 -- proto: GasThermoMachineFreezerEnabled - entities: - - uid: 24329 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23889 components: - type: Transform - pos: 24.5,14.5 + rot: 1.5707963267948966 rad + pos: 48.5,-72.5 parent: 2 - - uid: 24330 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23890 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-74.5 + pos: 48.5,-68.5 parent: 2 - - uid: 24331 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23891 components: - type: Transform - pos: 101.5,-82.5 + pos: 50.5,-69.5 parent: 2 - - type: GasThermoMachine - targetTemperature: 73.15 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24332 + - uid: 23892 components: - type: Transform rot: 3.141592653589793 rad - pos: 101.5,-84.5 + pos: 51.5,-69.5 parent: 2 - - type: GasThermoMachine - targetTemperature: 73.15 - type: AtmosPipeColor color: '#0000FFFF' -- proto: GasThermoMachineHeater - entities: - - uid: 24333 + - uid: 23893 components: - type: Transform - pos: 42.5,-91.5 + rot: 3.141592653589793 rad + pos: 50.5,-68.5 parent: 2 - - uid: 24334 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23894 components: - type: Transform - pos: 53.5,-86.5 + rot: 1.5707963267948966 rad + pos: 51.5,-60.5 parent: 2 - - uid: 24335 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23895 components: - type: Transform - pos: -74.5,-24.5 + rot: 1.5707963267948966 rad + pos: 45.5,-48.5 parent: 2 - - uid: 24336 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23896 components: - type: Transform rot: -1.5707963267948966 rad - pos: -81.5,-13.5 + pos: 45.5,-41.5 parent: 2 - - uid: 24337 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23897 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-60.5 + pos: 43.5,-42.5 parent: 2 -- proto: GasThermoMachineHeaterEnabled - entities: - - uid: 24338 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-49.5 + rot: 3.141592653589793 rad + pos: 50.5,-33.5 parent: 2 -- proto: GasValve - entities: - - uid: 24339 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23899 components: - type: Transform - pos: -16.5,-17.5 + rot: 3.141592653589793 rad + pos: 39.5,-33.5 parent: 2 - - uid: 24340 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-85.5 + pos: 33.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24341 + - uid: 23901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-14.5 + rot: 1.5707963267948966 rad + pos: 43.5,-27.5 parent: 2 - - uid: 24342 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23902 components: - type: Transform - pos: -6.5,-52.5 + pos: 37.5,-31.5 parent: 2 - - uid: 24343 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23903 components: - type: Transform - pos: -5.5,-52.5 + pos: 56.5,-31.5 parent: 2 -- proto: GasVentPump - entities: - - uid: 24344 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,4.5 + rot: 3.141592653589793 rad + pos: 68.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 263 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24345 + - uid: 23905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,8.5 + pos: 78.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 269 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24346 + - uid: 23906 components: - type: Transform - pos: 44.5,-22.5 + rot: 3.141592653589793 rad + pos: 77.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 264 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24347 + - uid: 23907 components: - type: Transform - pos: 49.5,-3.5 + rot: 3.141592653589793 rad + pos: 73.5,-33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 284 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24348 + color: '#FF0000FF' + - uid: 23908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,14.5 + rot: 1.5707963267948966 rad + pos: 81.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 258 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24349 + color: '#FF0000FF' + - uid: 23909 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,13.5 + pos: 86.5,-39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 258 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24350 + - uid: 23910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-3.5 + rot: -1.5707963267948966 rad + pos: 83.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 282 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24351 + - uid: 23911 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-11.5 + pos: 83.5,-28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24352 + - uid: 23912 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-21.5 + pos: 88.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24353 + color: '#FF0000FF' + - uid: 23913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-9.5 + rot: 3.141592653589793 rad + pos: 86.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24354 + - uid: 23914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-0.5 + rot: -1.5707963267948966 rad + pos: 81.5,-33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24355 + color: '#FF0000FF' + - uid: 23915 components: - type: Transform - pos: 56.5,-17.5 + pos: 31.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24356 + - uid: 23916 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-22.5 + pos: 28.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24357 + color: '#FF0000FF' + - uid: 23917 components: - type: Transform - pos: 43.5,10.5 + rot: 3.141592653589793 rad + pos: 30.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24358 + - uid: 23918 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,2.5 + pos: 28.5,-21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24359 + color: '#FF0000FF' + - uid: 23919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,5.5 + rot: -1.5707963267948966 rad + pos: 30.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24360 + - uid: 23920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-20.5 + rot: 1.5707963267948966 rad + pos: 30.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 173 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24361 + - uid: 23921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,4.5 + rot: 1.5707963267948966 rad + pos: 28.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24362 + color: '#FF0000FF' + - uid: 23922 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,1.5 + pos: 26.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24363 + color: '#FF0000FF' + - uid: 23923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 101.5,-40.5 + pos: 27.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 148 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24364 + - uid: 23924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-24.5 + pos: 19.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 173 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24365 + - uid: 23925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,7.5 + rot: 3.141592653589793 rad + pos: 17.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24366 + - uid: 23926 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-25.5 + pos: 15.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 264 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24367 + color: '#FF0000FF' + - uid: 23927 components: - type: Transform - pos: 49.5,-17.5 + pos: 8.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24368 + - uid: 23928 components: - type: Transform - pos: 61.5,-11.5 + pos: -25.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 266 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24369 + - uid: 23929 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-70.5 + rot: 1.5707963267948966 rad + pos: 1.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 197 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24370 + - uid: 23930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-5.5 + pos: -0.5,9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 247 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24371 + color: '#FF0000FF' + - uid: 23931 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-70.5 + pos: -2.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24372 + color: '#FF0000FF' + - uid: 23932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-86.5 + pos: -5.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24373 + - uid: 23933 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-69.5 + pos: -6.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24374 + - uid: 23934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,13.5 + pos: -4.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 249 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 254 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24376 + color: '#FF0000FF' + - uid: 23935 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,-38.5 + pos: 1.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24377 + - uid: 23936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-32.5 + rot: 1.5707963267948966 rad + pos: -0.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24378 + color: '#FF0000FF' + - uid: 23937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-32.5 + pos: -0.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24379 + color: '#FF0000FF' + - uid: 23938 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-32.5 + pos: 1.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24380 + - uid: 23939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-82.5 + pos: 7.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24381 + - uid: 23940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-74.5 + rot: 3.141592653589793 rad + pos: 7.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24382 + color: '#FF0000FF' + - uid: 23941 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-71.5 + rot: -1.5707963267948966 rad + pos: 33.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24383 + color: '#FF0000FF' + - uid: 23942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-56.5 + rot: 1.5707963267948966 rad + pos: 31.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24384 + - uid: 23943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-61.5 + rot: 1.5707963267948966 rad + pos: 28.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24385 + - uid: 23944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-48.5 + rot: 1.5707963267948966 rad + pos: 28.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24386 + - uid: 23945 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-41.5 + pos: 23.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24387 + color: '#FF0000FF' + - uid: 23946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-32.5 + rot: -1.5707963267948966 rad + pos: 21.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24388 + - uid: 23947 components: - type: Transform - pos: 68.5,-27.5 + rot: 3.141592653589793 rad + pos: 8.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24389 + color: '#FF0000FF' + - uid: 23948 components: - type: Transform - pos: 77.5,-28.5 + pos: 1.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24390 + color: '#FF0000FF' + - uid: 23949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-40.5 + pos: -7.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24391 + - uid: 23950 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-42.5 + pos: -0.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24392 + - uid: 23951 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-28.5 + pos: 1.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24393 + color: '#FF0000FF' + - uid: 23952 components: - type: Transform - pos: 86.5,-20.5 + rot: -1.5707963267948966 rad + pos: 1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24394 + color: '#FF0000FF' + - uid: 23953 components: - type: Transform - pos: 102.5,-20.5 + rot: 1.5707963267948966 rad + pos: -0.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24395 + - uid: 23954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.5,-24.5 + rot: -1.5707963267948966 rad + pos: -0.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24396 + color: '#0000FFFF' + - uid: 23955 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-32.5 + pos: 5.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24397 + color: '#FF0000FF' + - uid: 23956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-19.5 + pos: 5.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24398 + - uid: 23957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-0.5 + rot: -1.5707963267948966 rad + pos: -0.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24399 + - uid: 23958 components: - type: Transform - pos: 17.5,6.5 + rot: -1.5707963267948966 rad + pos: 1.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24400 + color: '#FF0000FF' + - uid: 23959 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,0.5 + pos: -6.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24401 + color: '#FF0000FF' + - uid: 23960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,1.5 + pos: -8.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24402 + - uid: 23961 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,6.5 + pos: -0.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24403 + - uid: 23962 components: - type: Transform - pos: -6.5,11.5 + rot: 1.5707963267948966 rad + pos: 6.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24404 + - uid: 23963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,0.5 + pos: 7.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24405 + color: '#FF0000FF' + - uid: 23964 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,12.5 + pos: -25.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24406 + color: '#FF0000FF' + - uid: 23965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,16.5 + pos: -23.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24407 + - uid: 23966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,16.5 + pos: -29.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24408 + - uid: 23967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,20.5 + rot: -1.5707963267948966 rad + pos: -23.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24409 + - uid: 23968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,20.5 + rot: 1.5707963267948966 rad + pos: -25.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24410 + color: '#FF0000FF' + - uid: 23969 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,13.5 + rot: -1.5707963267948966 rad + pos: -25.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24411 + color: '#FF0000FF' + - uid: 23970 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,-42.5 + pos: -23.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24412 + - uid: 23971 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-59.5 + pos: -31.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24413 + - uid: 23972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-65.5 + rot: 1.5707963267948966 rad + pos: -32.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24414 + color: '#FF0000FF' + - uid: 23973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-73.5 + rot: -1.5707963267948966 rad + pos: -27.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24415 + - uid: 23974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-72.5 + rot: 1.5707963267948966 rad + pos: -29.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24416 + color: '#FF0000FF' + - uid: 23975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-83.5 + rot: 1.5707963267948966 rad + pos: -32.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24417 + - uid: 23976 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-82.5 + pos: -30.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24418 + color: '#FF0000FF' + - uid: 23977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-79.5 + rot: -1.5707963267948966 rad + pos: -30.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24419 + color: '#FF0000FF' + - uid: 23978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-86.5 + rot: -1.5707963267948966 rad + pos: -32.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24420 + - uid: 23979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-91.5 + rot: 1.5707963267948966 rad + pos: -32.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24421 + - uid: 23980 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-95.5 + pos: -31.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24422 + color: '#FF0000FF' + - uid: 23981 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-75.5 + rot: -1.5707963267948966 rad + pos: -27.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 238 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24423 + color: '#FF0000FF' + - uid: 23982 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-76.5 + pos: -29.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24424 + - uid: 23983 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-82.5 + pos: -29.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24425 + - uid: 23984 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-86.5 + pos: -30.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24426 + color: '#FF0000FF' + - uid: 23985 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,-93.5 + pos: -40.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24427 + color: '#FF0000FF' + - uid: 23986 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-74.5 + pos: -44.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24428 + color: '#FF0000FF' + - uid: 23987 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-59.5 + pos: -25.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24429 + color: '#FF0000FF' + - uid: 23988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-45.5 + rot: 1.5707963267948966 rad + pos: -26.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24430 + - uid: 23989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-21.5 + rot: 3.141592653589793 rad + pos: -27.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24431 + - uid: 23990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-7.5 + rot: 3.141592653589793 rad + pos: -18.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24432 + color: '#FF0000FF' + - uid: 23991 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-47.5 + pos: -29.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24433 + color: '#FF0000FF' + - uid: 23992 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,10.5 + pos: -30.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24434 + - uid: 23993 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,4.5 + pos: -42.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24435 + - uid: 23994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-49.5 + rot: 1.5707963267948966 rad + pos: -42.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24436 + - uid: 23995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-52.5 + rot: -1.5707963267948966 rad + pos: -44.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24437 + color: '#FF0000FF' + - uid: 23996 components: - type: Transform - pos: -37.5,-54.5 + rot: 1.5707963267948966 rad + pos: -44.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24438 + color: '#FF0000FF' + - uid: 23997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-57.5 + rot: 1.5707963267948966 rad + pos: -44.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24439 + color: '#FF0000FF' + - uid: 23998 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-56.5 + pos: -42.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24440 + - uid: 23999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-65.5 + rot: -1.5707963267948966 rad + pos: -42.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24441 + - uid: 24000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-73.5 + rot: -1.5707963267948966 rad + pos: -42.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24442 + - uid: 24001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-74.5 + pos: -43.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24443 + color: '#FF0000FF' + - uid: 24002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-69.5 + rot: 3.141592653589793 rad + pos: -39.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24444 + color: '#FF0000FF' + - uid: 24003 components: - type: Transform - pos: -51.5,-59.5 + pos: -36.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24445 + - uid: 24005 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-65.5 + pos: -44.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24446 + color: '#FF0000FF' + - uid: 24006 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-65.5 + rot: 1.5707963267948966 rad + pos: -44.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24447 + color: '#FF0000FF' + - uid: 24007 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,-64.5 + pos: -42.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24448 + - uid: 24008 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-38.5 + pos: -42.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24449 + - uid: 24009 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-34.5 + pos: -42.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24450 + - uid: 24010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-22.5 + pos: -50.5,-64.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 171 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24451 + - uid: 24011 components: - type: Transform - pos: -51.5,-28.5 + pos: -48.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24452 + color: '#FF0000FF' + - uid: 24012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-33.5 + rot: -1.5707963267948966 rad + pos: -42.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24453 + - uid: 24013 components: - type: Transform - pos: -53.5,-21.5 + rot: 1.5707963267948966 rad + pos: -44.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24454 + color: '#FF0000FF' + - uid: 24014 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-24.5 + pos: -44.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24455 + color: '#FF0000FF' + - uid: 24015 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-31.5 + pos: -52.5,-66.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 243 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24456 + color: '#FF0000FF' + - uid: 24016 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,-23.5 + pos: -51.5,-64.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 171 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24457 + - uid: 24017 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-9.5 + pos: -52.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24458 + color: '#FF0000FF' + - uid: 24018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-7.5 + rot: 1.5707963267948966 rad + pos: -50.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24459 + - uid: 24019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-43.5 + rot: 3.141592653589793 rad + pos: -64.5,-66.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 236 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24460 + color: '#FF0000FF' + - uid: 24020 components: - type: Transform - pos: -57.5,-43.5 + pos: -61.5,-64.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 130 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24461 + - uid: 24021 components: - type: Transform - pos: -65.5,-43.5 + rot: -1.5707963267948966 rad + pos: -44.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24462 + color: '#FF0000FF' + - uid: 24022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-38.5 + rot: -1.5707963267948966 rad + pos: -42.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24463 + - uid: 24023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-50.5 + rot: 1.5707963267948966 rad + pos: -40.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24464 + color: '#FF0000FF' + - uid: 24024 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,-37.5 + pos: -40.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24465 + color: '#FF0000FF' + - uid: 24025 components: - type: Transform rot: -1.5707963267948966 rad - pos: 106.5,-21.5 + pos: -42.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24466 + - uid: 24026 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24027 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-1.5 + pos: -42.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24467 + - uid: 24028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-101.5 + rot: 1.5707963267948966 rad + pos: -42.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24468 + - uid: 24029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-95.5 + pos: -45.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24469 + - uid: 24030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-90.5 + rot: 1.5707963267948966 rad + pos: -42.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24470 + - uid: 24031 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-97.5 + pos: -40.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24032 + components: + - type: Transform + pos: -41.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24471 + - uid: 24033 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-97.5 + pos: -43.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24472 + - uid: 24034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-94.5 + pos: -50.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24473 + - uid: 24035 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-99.5 + pos: -51.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24474 + - uid: 24036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-75.5 + rot: 3.141592653589793 rad + pos: -47.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 234 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24475 + - uid: 24037 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,13.5 + pos: -46.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 250 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24476 + - uid: 24039 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,1.5 + pos: -53.5,-24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 247 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24477 + - uid: 24040 components: - type: Transform - pos: 33.5,13.5 + rot: -1.5707963267948966 rad + pos: -41.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 248 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24478 + color: '#FF0000FF' + - uid: 24041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-12.5 + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 252 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24479 + - uid: 24042 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,1.5 + pos: -41.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 251 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24480 + color: '#FF0000FF' + - uid: 24043 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,-34.5 + pos: -57.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24481 + - uid: 24044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-2.5 + rot: 3.141592653589793 rad + pos: -64.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 178 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24482 + - uid: 24045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 96.5,-89.5 + pos: -66.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24483 + color: '#FF0000FF' + - uid: 24046 components: - type: Transform rot: 3.141592653589793 rad - pos: 100.5,-89.5 + pos: -67.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24484 + color: '#FF0000FF' + - uid: 24047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 101.5,-80.5 + rot: 1.5707963267948966 rad + pos: -30.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24485 + color: '#FF0000FF' + - uid: 24048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 95.5,-80.5 + pos: -55.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24486 + color: '#FF0000FF' + - uid: 24049 components: - type: Transform rot: -1.5707963267948966 rad - pos: 100.5,-75.5 + pos: -27.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24487 + color: '#FF0000FF' + - uid: 24050 components: - type: Transform - pos: 99.5,-63.5 + rot: 1.5707963267948966 rad + pos: -72.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24488 + color: '#FF0000FF' + - uid: 24051 components: - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,-68.5 + rot: 1.5707963267948966 rad + pos: 8.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24489 + color: '#FF0000FF' + - uid: 24052 components: - type: Transform rot: 1.5707963267948966 rad - pos: 93.5,-67.5 + pos: 6.5,-95.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24490 + - uid: 24053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-67.5 + pos: 8.5,-101.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24491 + - uid: 24054 components: - type: Transform - pos: -54.5,-14.5 + pos: 9.5,-99.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 253 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24492 + color: '#FF0000FF' + - uid: 24055 components: - type: Transform - pos: -56.5,-38.5 + pos: 8.5,-88.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 255 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24493 + color: '#FF0000FF' + - uid: 24056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,21.5 + pos: 6.5,-90.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 256 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24494 + - uid: 24057 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,20.5 + pos: 39.5,-85.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 256 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24495 + color: '#FF0000FF' + - uid: 24058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-81.5 + pos: -48.5,-33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 199 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24496 + color: '#FF0000FF' + - uid: 24059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-86.5 + rot: -1.5707963267948966 rad + pos: -27.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 184 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24497 + color: '#FF0000FF' + - uid: 24060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-24.5 + rot: 1.5707963267948966 rad + pos: 33.5,12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 271 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24498 + - uid: 24061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-18.5 + pos: -63.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24499 + color: '#FF0000FF' + - uid: 24062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 105.5,-41.5 + pos: -62.5,-64.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 292 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24500 + - uid: 24063 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-18.5 + pos: -41.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 281 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24501 + color: '#FF0000FF' + - uid: 24064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-12.5 + rot: 1.5707963267948966 rad + pos: -43.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 272 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24502 + - uid: 24065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-0.5 + pos: -54.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 285 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24503 + color: '#FF0000FF' + - uid: 24066 components: - type: Transform - pos: 64.5,-4.5 + rot: -1.5707963267948966 rad + pos: 35.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 287 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24504 + color: '#FF0000FF' + - uid: 24067 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-12.5 + pos: 31.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24505 + - uid: 24068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-12.5 + rot: 1.5707963267948966 rad + pos: -64.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24506 + - uid: 24069 components: - type: Transform - pos: 84.5,-6.5 + pos: -72.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24507 + - uid: 24070 components: - type: Transform - pos: 81.5,0.5 + rot: 3.141592653589793 rad + pos: -49.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 274 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24508 + color: '#FF0000FF' + - uid: 24071 components: - type: Transform - pos: 85.5,0.5 + pos: -82.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 259 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24509 + - uid: 24072 components: - type: Transform - pos: 77.5,0.5 + rot: -1.5707963267948966 rad + pos: 101.5,-83.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 262 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24510 + - uid: 24073 components: - type: Transform - pos: 74.5,-1.5 + rot: 3.141592653589793 rad + pos: 98.5,-87.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 290 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24511 + - uid: 24074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,3.5 + rot: 1.5707963267948966 rad + pos: 97.5,-86.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 286 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24512 + color: '#FF0000FF' + - uid: 24075 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,9.5 + pos: 97.5,-82.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 270 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24513 + color: '#FF0000FF' + - uid: 24076 components: - type: Transform - pos: 74.5,5.5 + pos: 98.5,-79.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24514 + - uid: 24077 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,1.5 + pos: 99.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24515 + - uid: 24078 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,4.5 + pos: 97.5,-75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24516 + color: '#FF0000FF' + - uid: 24079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-14.5 + rot: 1.5707963267948966 rad + pos: 99.5,-75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 272 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24517 + - uid: 24080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,4.5 + rot: 3.141592653589793 rad + pos: 98.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24081 + components: + - type: Transform + pos: 98.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24518 + - uid: 24082 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-6.5 + pos: -48.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24519 + - uid: 24083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 + rot: 3.141592653589793 rad + pos: -46.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24520 + color: '#FF0000FF' + - uid: 24084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 + pos: 34.5,21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24521 + - uid: 24085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-36.5 + pos: 36.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 277 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24522 + color: '#FF0000FF' + - uid: 24086 components: - type: Transform - pos: 56.5,-55.5 + pos: -32.5,-80.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 139 - - 19137 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24523 + color: '#FF0000FF' + - uid: 24087 components: - type: Transform - pos: -13.5,-42.5 + pos: -31.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24524 + color: '#0000FFFF' + - uid: 24088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 + rot: 3.141592653589793 rad + pos: -44.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24525 + color: '#FF0000FF' + - uid: 24089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-19.5 + rot: 1.5707963267948966 rad + pos: -29.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24526 + color: '#0000FFFF' + - uid: 24090 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-26.5 + pos: -29.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24527 + color: '#0000FFFF' + - uid: 24091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-43.5 + pos: -37.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24528 + color: '#FF0000FF' + - uid: 24092 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-44.5 + pos: -35.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24529 + color: '#0000FFFF' + - uid: 24093 components: - type: Transform - pos: 15.5,-28.5 + rot: 3.141592653589793 rad + pos: 102.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24530 + color: '#FF0000FF' + - uid: 24094 components: - type: Transform - pos: 19.5,-25.5 + rot: 3.141592653589793 rad + pos: 2.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24531 + color: '#00FFFFFF' + - uid: 24095 components: - type: Transform - pos: 18.5,-14.5 + rot: 3.141592653589793 rad + pos: 1.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24532 + color: '#00FFFFFF' + - uid: 24096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-21.5 + rot: 3.141592653589793 rad + pos: 0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24533 + color: '#00FFFFFF' + - uid: 24097 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-36.5 - parent: 2 - - uid: 24534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-39.5 + pos: -0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24535 + color: '#00FFFFFF' + - uid: 24098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-22.5 + rot: 3.141592653589793 rad + pos: -1.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24536 + color: '#00FFFFFF' + - uid: 24099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 + rot: 3.141592653589793 rad + pos: -5.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24537 + color: '#00FFFFFF' + - uid: 24100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-46.5 + rot: 3.141592653589793 rad + pos: -6.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24538 + color: '#00FFFFFF' + - uid: 24101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,7.5 + rot: 3.141592653589793 rad + pos: -7.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 286 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24539 + color: '#00FFFFFF' + - uid: 24102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,15.5 + rot: 3.141592653589793 rad + pos: -8.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 270 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24540 + color: '#00FFFFFF' + - uid: 24103 components: - type: Transform - pos: 63.5,-8.5 + rot: 3.141592653589793 rad + pos: -9.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 288 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24541 + color: '#00FFFFFF' + - uid: 24104 components: - type: Transform - pos: 69.5,-8.5 + rot: 3.141592653589793 rad + pos: -15.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 289 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24542 + color: '#00FFFFFF' + - uid: 24105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-2.5 + rot: 3.141592653589793 rad + pos: -14.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 289 - - 290 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24543 + color: '#00FFFFFF' + - uid: 24106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 111.5,-39.5 + rot: 3.141592653589793 rad + pos: -13.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 291 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24544 + color: '#00FFFFFF' + - uid: 24107 components: - type: Transform rot: 3.141592653589793 rad - pos: 116.5,-39.5 + pos: -14.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 291 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24545 + color: '#00FFFFFF' + - uid: 24108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 127.5,-39.5 + rot: -1.5707963267948966 rad + pos: -4.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 291 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24546 + color: '#00FFFFFF' + - uid: 24109 components: - type: Transform - pos: -8.5,14.5 + pos: 79.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 293 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24547 + - uid: 24110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-43.5 + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24548 + color: '#00FFFFFF' + - uid: 24111 components: - type: Transform - pos: 18.5,-36.5 + rot: 3.141592653589793 rad + pos: -16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24549 + color: '#FF0000FF' + - uid: 24112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-39.5 + rot: 3.141592653589793 rad + pos: -8.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24550 + color: '#00FFFFFF' + - uid: 24113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 + rot: 3.141592653589793 rad + pos: -7.5,-13.5 parent: 2 - - uid: 24551 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 24114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-18.5 + rot: 3.141592653589793 rad + pos: -6.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24552 + color: '#00FFFFFF' + - uid: 24115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-23.5 + rot: 3.141592653589793 rad + pos: -5.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24553 + color: '#00FFFFFF' + - uid: 24116 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-51.5 + pos: -4.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24554 + color: '#00FFFFFF' + - uid: 24117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-53.5 + rot: 3.141592653589793 rad + pos: -20.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24555 + color: '#FF0000FF' + - uid: 24118 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-36.5 + pos: -11.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24556 + color: '#0000FFFF' + - uid: 24119 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-32.5 + pos: 44.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24557 + color: '#0000FFFF' + - uid: 24120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-36.5 + rot: 3.141592653589793 rad + pos: -16.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24558 + color: '#00FFFFFF' + - uid: 24121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-40.5 + rot: 3.141592653589793 rad + pos: -15.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24559 + color: '#00FFFFFF' + - uid: 24122 components: - type: Transform - pos: -18.5,-28.5 + rot: 3.141592653589793 rad + pos: -14.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24560 + color: '#00FFFFFF' + - uid: 24123 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-41.5 + pos: -13.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24561 + color: '#00FFFFFF' + - uid: 24124 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-35.5 + pos: -40.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24562 + color: '#FF0000FF' + - uid: 24125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24126 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-13.5 + pos: -47.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24563 + color: '#0000FFFF' + - uid: 24127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-15.5 + rot: -1.5707963267948966 rad + pos: -46.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24564 + color: '#FF0000FF' + - uid: 24128 components: - type: Transform - pos: -15.5,-19.5 + pos: -61.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24565 + color: '#FF0000FF' + - uid: 24129 components: - type: Transform - pos: 9.5,-12.5 + rot: -1.5707963267948966 rad + pos: -74.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24566 + color: '#0000FFFF' + - uid: 24130 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-29.5 + pos: -72.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24567 + color: '#FF0000FF' + - uid: 24131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-28.5 + pos: 63.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24568 + color: '#FF0000FF' + - uid: 24132 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-25.5 + pos: 30.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24569 + color: '#FF0000FF' + - uid: 24133 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-61.5 + rot: -1.5707963267948966 rad + pos: 35.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24570 + color: '#FF0000FF' + - uid: 24134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-61.5 + pos: 2.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24571 + color: '#0000FFFF' + - uid: 24135 components: - type: Transform - pos: 18.5,-53.5 + pos: -1.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24572 + color: '#FF0000FF' + - uid: 24136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-53.5 + rot: 1.5707963267948966 rad + pos: 97.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24573 + color: '#FF0000FF' + - uid: 24137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,7.5 + rot: 1.5707963267948966 rad + pos: 43.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 247 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24574 + color: '#FF0000FF' + - uid: 24138 components: - type: Transform - pos: 29.5,-1.5 + rot: 3.141592653589793 rad + pos: 29.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24575 + - uid: 24139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-8.5 + pos: -28.5,-70.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24576 + color: '#FF0000FF' + - uid: 24140 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,7.5 + pos: 56.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24577 + - uid: 24141 components: - type: Transform - pos: 15.5,14.5 + rot: 1.5707963267948966 rad + pos: 56.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 165 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24578 + - uid: 24142 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 298 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24579 - components: - - type: Transform - pos: -2.5,26.5 + pos: 58.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24580 + color: '#FF0000FF' + - uid: 24143 components: - type: Transform - pos: 3.5,26.5 + rot: 1.5707963267948966 rad + pos: 58.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24581 + color: '#FF0000FF' + - uid: 24144 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,24.5 + pos: -74.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24582 + - uid: 24145 components: - type: Transform - pos: -35.5,-43.5 + rot: -1.5707963267948966 rad + pos: 58.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 236 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24583 + color: '#FF0000FF' + - uid: 24146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-48.5 + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 299 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24584 + - uid: 24147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-43.5 + rot: 3.141592653589793 rad + pos: 64.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 215 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24585 + - uid: 24148 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-54.5 + pos: 82.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 195 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24586 + - uid: 24149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-72.5 + rot: -1.5707963267948966 rad + pos: 82.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 197 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24587 + - uid: 24150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-15.5 + pos: 82.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 168 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24588 + - uid: 24151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-27.5 + rot: 3.141592653589793 rad + pos: 81.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 168 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24589 + - uid: 24152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-1.5 + pos: 81.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 166 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24590 + - uid: 24153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,2.5 + pos: 75.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24591 + - uid: 24154 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,2.5 + pos: 77.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24592 + color: '#FF0000FF' + - uid: 24155 components: - type: Transform - pos: -15.5,5.5 + rot: -1.5707963267948966 rad + pos: 77.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 300 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24593 + color: '#FF0000FF' + - uid: 24156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,4.5 + pos: 77.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 301 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41238 + color: '#FF0000FF' + - uid: 24157 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-9.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40832 + pos: 83.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41239 + color: '#FF0000FF' + - uid: 24158 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-9.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40833 + pos: 79.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41240 + color: '#FF0000FF' + - uid: 24159 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40830 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40831 + pos: 70.5,-7.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41242 + - uid: 24160 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40829 + pos: 68.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41243 + color: '#FF0000FF' + - uid: 24161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40829 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41816 + pos: -7.5,-54.5 + parent: 2 + - uid: 24162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 + rot: 3.141592653589793 rad + pos: 52.5,9.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41817 + - uid: 24163 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-11.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 + pos: 51.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41818 + color: '#FF0000FF' + - uid: 24164 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 + pos: 70.5,-2.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41819 + - uid: 24165 components: - type: Transform - pos: 3.5,1.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentScrubber - entities: - - uid: 24594 + rot: 3.141592653589793 rad + pos: 79.5,5.5 + parent: 2 + - uid: 24166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-53.5 + parent: 2 + - uid: 24167 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,11.5 + pos: -5.5,-53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 270 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24595 + - uid: 24168 components: - type: Transform - pos: 51.5,-9.5 + pos: -6.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24596 + - uid: 24169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,10.5 + rot: 3.141592653589793 rad + pos: -5.5,-54.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 269 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24597 + - uid: 24170 components: - type: Transform rot: 3.141592653589793 rad - pos: 63.5,14.5 + pos: -2.5,-51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 258 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24598 + - uid: 24171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-5.5 + pos: -3.5,-49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 282 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24599 + - uid: 24172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-20.5 + rot: -1.5707963267948966 rad + pos: -1.5,-47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 265 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24600 + color: '#B7410EFF' + - uid: 24173 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,13.5 + pos: 70.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 258 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24601 + color: '#0000FFFF' + - uid: 24174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 + rot: 1.5707963267948966 rad + pos: 68.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24602 + - uid: 24175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-21.5 + rot: 1.5707963267948966 rad + pos: 68.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24603 + - uid: 24176 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-21.5 + rot: -1.5707963267948966 rad + pos: 6.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 268 - - uid: 24604 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24177 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,4.5 + pos: -1.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 263 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24605 + - uid: 24178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-23.5 + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 264 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24606 + - uid: 24179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-1.5 + rot: 3.141592653589793 rad + pos: 0.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24607 + color: '#0000FFFF' + - uid: 24180 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,6.5 + pos: 1.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24608 + color: '#0000FFFF' + - uid: 24181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,1.5 + rot: -1.5707963267948966 rad + pos: 33.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24609 + - uid: 24182 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-19.5 + pos: -4.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24610 + color: '#B7410EFF' + - uid: 24183 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,0.5 + pos: -14.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24611 + color: '#2A6478FF' + - uid: 24184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,4.5 + pos: -2.5,-43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24612 + color: '#2A6478FF' + - uid: 24185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,3.5 + pos: 0.5,-43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24613 + color: '#2A6478FF' + - uid: 24186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-16.5 + pos: -1.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24614 + color: '#B7410EFF' + - uid: 24187 components: - type: Transform - pos: 64.5,-11.5 + pos: -0.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 266 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24615 + color: '#B7410EFF' + - uid: 24188 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,3.5 + pos: 0.5,-53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 251 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24616 + color: '#2A6478FF' + - uid: 24189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,12.5 + pos: 14.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 250 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24617 + color: '#2A6478FF' + - uid: 24190 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-70.5 + pos: 15.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24618 + color: '#2A6478FF' + - uid: 24191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-39.5 + rot: 1.5707963267948966 rad + pos: 18.5,-23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 255 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24619 + color: '#2A6478FF' + - uid: 24192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-32.5 + rot: -1.5707963267948966 rad + pos: 18.5,-21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 255 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24620 + color: '#2A6478FF' + - uid: 24193 components: - type: Transform - pos: -35.5,-79.5 + rot: -1.5707963267948966 rad + pos: 18.5,-18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 199 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24621 + color: '#2A6478FF' + - uid: 24194 components: - type: Transform - pos: 40.5,-94.5 + rot: -1.5707963267948966 rad + pos: 16.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24622 + color: '#B7410EFF' + - uid: 24195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-86.5 + rot: 1.5707963267948966 rad + pos: 16.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24623 + color: '#B7410EFF' + - uid: 24196 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,-39.5 + pos: -13.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24624 + color: '#2A6478FF' + - uid: 24197 components: - type: Transform - pos: 72.5,-32.5 + pos: -12.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24625 + color: '#B7410EFF' + - uid: 24198 components: - type: Transform - pos: -30.5,-32.5 + rot: -1.5707963267948966 rad + pos: 6.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24626 + color: '#B7410EFF' + - uid: 24199 components: - type: Transform - pos: 34.5,-32.5 + rot: 1.5707963267948966 rad + pos: 5.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24627 + color: '#2A6478FF' + - uid: 24200 components: - type: Transform - pos: 55.5,-82.5 + rot: 3.141592653589793 rad + pos: 9.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24628 + color: '#B7410EFF' + - uid: 24201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-72.5 + pos: 3.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24629 + color: '#2A6478FF' + - uid: 24202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-71.5 + pos: -4.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24630 + color: '#2A6478FF' + - uid: 24203 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-56.5 + pos: -14.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24631 + color: '#2A6478FF' + - uid: 24204 components: - type: Transform - pos: 62.5,-57.5 + rot: 3.141592653589793 rad + pos: 4.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24632 + color: '#2A6478FF' + - uid: 24205 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-42.5 + pos: 16.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24633 + color: '#B7410EFF' + - uid: 24206 components: - type: Transform - pos: 50.5,-32.5 + rot: 1.5707963267948966 rad + pos: 0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24634 + color: '#2A6478FF' + - uid: 24207 components: - type: Transform - pos: 64.5,-27.5 + rot: -1.5707963267948966 rad + pos: 112.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24635 + - uid: 24208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-27.5 + rot: 3.141592653589793 rad + pos: 117.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24636 + - uid: 24209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-29.5 + pos: 116.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24637 + color: '#0000FFFF' + - uid: 24210 components: - type: Transform - pos: 107.5,-41.5 + rot: 3.141592653589793 rad + pos: 107.5,-42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 292 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24638 + - uid: 24211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-36.5 + pos: 105.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24639 + color: '#0000FFFF' + - uid: 24212 components: - type: Transform - pos: 88.5,-20.5 + rot: 1.5707963267948966 rad + pos: 110.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24640 + color: '#0000FFFF' + - uid: 24213 components: - type: Transform - pos: 39.5,-32.5 + rot: 3.141592653589793 rad + pos: 102.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24641 + color: '#0000FFFF' + - uid: 24214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-21.5 + rot: 3.141592653589793 rad + pos: -7.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24642 + - uid: 24215 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-7.5 + pos: -15.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24643 + color: '#2A6478FF' + - uid: 24216 components: - type: Transform - pos: 15.5,6.5 + rot: 3.141592653589793 rad + pos: 7.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24644 + color: '#B7410EFF' + - uid: 24217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 + rot: 3.141592653589793 rad + pos: 9.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24645 + color: '#B7410EFF' + - uid: 24218 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 + pos: 9.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24646 + color: '#2A6478FF' + - uid: 24219 components: - type: Transform - pos: 4.5,11.5 + rot: -1.5707963267948966 rad + pos: 19.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24647 + color: '#2A6478FF' + - uid: 24220 components: - type: Transform - pos: -2.5,8.5 + rot: 1.5707963267948966 rad + pos: 16.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24648 + color: '#B7410EFF' + - uid: 24221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24649 + color: '#B7410EFF' + - uid: 24222 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,10.5 + pos: 11.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24650 + color: '#B7410EFF' + - uid: 24223 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,14.5 + pos: 11.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24651 + color: '#B7410EFF' + - uid: 24224 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24652 - components: - - type: Transform - pos: -6.5,23.5 + pos: -4.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24653 + color: '#B7410EFF' + - uid: 24225 components: - type: Transform - pos: 7.5,23.5 + rot: -1.5707963267948966 rad + pos: -12.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24654 + color: '#B7410EFF' + - uid: 24226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,14.5 + rot: 1.5707963267948966 rad + pos: -16.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24655 + color: '#2A6478FF' + - uid: 24227 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-48.5 + pos: -10.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24656 + color: '#2A6478FF' + - uid: 24228 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-61.5 + pos: -14.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24657 + color: '#2A6478FF' + - uid: 24229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-65.5 + rot: -1.5707963267948966 rad + pos: -10.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24658 + color: '#2A6478FF' + - uid: 24230 components: - type: Transform - pos: 23.5,-70.5 + rot: 3.141592653589793 rad + pos: -18.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24659 + color: '#2A6478FF' + - uid: 24231 components: - type: Transform - pos: 5.5,-79.5 + rot: 3.141592653589793 rad + pos: -5.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24660 + color: '#2A6478FF' + - uid: 24232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-80.5 + pos: -3.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24661 + color: '#2A6478FF' + - uid: 24233 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-87.5 + pos: -10.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24662 + color: '#2A6478FF' + - uid: 24234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-89.5 + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24663 + color: '#2A6478FF' + - uid: 24235 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-82.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24664 - components: - - type: Transform - pos: 8.5,-75.5 + pos: 9.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 238 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24665 + color: '#2A6478FF' + - uid: 24236 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-77.5 + pos: 6.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24666 + color: '#2A6478FF' + - uid: 24237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-82.5 + rot: 1.5707963267948966 rad + pos: -4.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24667 + color: '#B7410EFF' + - uid: 24238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-87.5 + pos: 14.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24668 + color: '#2A6478FF' + - uid: 24239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-93.5 + pos: 6.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24669 + color: '#2A6478FF' + - uid: 24240 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-74.5 + pos: -11.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24670 + color: '#B7410EFF' + - uid: 24241 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-61.5 + pos: -11.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24671 + color: '#B7410EFF' + - uid: 24242 components: - type: Transform - pos: -31.5,-41.5 + rot: -1.5707963267948966 rad + pos: -11.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24672 + color: '#B7410EFF' + - uid: 24243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-19.5 + pos: -16.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24673 + color: '#B7410EFF' + - uid: 24244 components: - type: Transform - pos: -18.5,-0.5 + rot: 1.5707963267948966 rad + pos: -16.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24674 + color: '#B7410EFF' + - uid: 24245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-49.5 + rot: 3.141592653589793 rad + pos: -10.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24675 + color: '#B7410EFF' + - uid: 24246 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,10.5 + pos: -3.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24676 + color: '#B7410EFF' + - uid: 24247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,6.5 + rot: -1.5707963267948966 rad + pos: 3.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24677 + color: '#0000FFFF' + - uid: 24248 components: - type: Transform - pos: -37.5,-46.5 + rot: -1.5707963267948966 rad + pos: -8.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24678 + - uid: 24249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-48.5 + rot: 3.141592653589793 rad + pos: -48.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24679 + - uid: 24250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-52.5 + rot: -1.5707963267948966 rad + pos: -61.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24680 + - uid: 24251 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-59.5 + pos: -16.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24681 + - uid: 24252 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-60.5 + pos: -15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24682 + color: '#0000FFFF' + - uid: 40742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-65.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 40666 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24683 + - uid: 41233 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-75.5 - parent: 2 + pos: 1.5,-7.5 + parent: 40828 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24684 + color: '#0000FFFF' + - uid: 41234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-81.5 - parent: 2 + pos: 0.5,-4.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24685 + - uid: 41235 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-72.5 - parent: 2 + pos: 0.5,-7.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24686 + - uid: 41809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-67.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 41669 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24687 + color: '#0000FFFF' + - uid: 41810 components: - type: Transform - pos: -52.5,-59.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 41669 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24688 + color: '#0000FFFF' + - uid: 41811 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-65.5 - parent: 2 + pos: 3.5,-2.5 + parent: 41669 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 41669 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24689 + - uid: 41813 components: - type: Transform - pos: -64.5,-65.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 41669 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24690 + - uid: 41814 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,-66.5 - parent: 2 + pos: 4.5,-5.5 + parent: 41669 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24691 + - uid: 42375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-38.5 + rot: 1.5707963267948966 rad + pos: 30.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24692 +- proto: GasPort + entities: + - uid: 24253 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-33.5 + pos: -17.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24693 + color: '#00FFFFFF' + - uid: 24254 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-28.5 + pos: -34.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24694 + - uid: 24255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-19.5 + pos: -60.5,-74.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24695 + - uid: 24256 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-31.5 + pos: -37.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24696 + - uid: 24257 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-20.5 + pos: -49.5,-56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 171 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24697 + color: '#00FF00FF' + - uid: 24258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-6.5 + rot: -1.5707963267948966 rad + pos: -46.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24698 + color: '#00FF00FF' + - uid: 24259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-11.5 + rot: -1.5707963267948966 rad + pos: -46.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24699 + - uid: 24260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-43.5 + rot: -1.5707963267948966 rad + pos: -53.5,-56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 236 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24700 + - uid: 24261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-43.5 + rot: -1.5707963267948966 rad + pos: -53.5,-58.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 130 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24701 + - uid: 24262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-43.5 + rot: 1.5707963267948966 rad + pos: 34.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24702 + - uid: 24263 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-50.5 + pos: 42.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24703 + - uid: 24264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-38.5 + rot: 1.5707963267948966 rad + pos: 34.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24704 + - uid: 24265 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,-37.5 + pos: 34.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24705 + - uid: 24266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-1.5 + rot: 1.5707963267948966 rad + pos: 34.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24706 + - uid: 24267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-99.5 + rot: 3.141592653589793 rad + pos: 42.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24707 + - uid: 24268 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-95.5 + pos: 43.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24708 + color: '#947507FF' + - uid: 24269 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-88.5 + pos: 43.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24709 + color: '#947507FF' + - uid: 24270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-95.5 + rot: 3.141592653589793 rad + pos: -36.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24710 + - uid: 24271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-99.5 + rot: -1.5707963267948966 rad + pos: -46.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24711 + - uid: 24272 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-87.5 + pos: -46.5,-88.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24712 + - uid: 24273 + components: + - type: Transform + pos: -62.5,-74.5 + parent: 2 + - uid: 24274 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-96.5 + pos: -68.5,-78.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24713 + - uid: 24275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-74.5 + pos: -72.5,-24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 234 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24714 + - uid: 24276 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-12.5 + pos: -72.5,-27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 252 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24715 + - uid: 24277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 + pos: -71.5,-24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 247 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24716 + - uid: 24278 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-69.5 + pos: -71.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24717 + - uid: 24279 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-34.5 + rot: 1.5707963267948966 rad + pos: -83.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24718 + - uid: 24280 components: - type: Transform - pos: -46.5,-8.5 + pos: 95.5,-82.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 254 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24719 + - uid: 24281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-90.5 + pos: 96.5,-82.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24720 + - uid: 24282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-86.5 + rot: 3.141592653589793 rad + pos: 100.5,-84.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24721 + - uid: 24283 components: - type: Transform rot: 1.5707963267948966 rad - pos: 95.5,-78.5 + pos: -49.5,-55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24722 + color: '#FFAA00FF' + - uid: 24284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 101.5,-78.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-75.5 + pos: -53.5,-61.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24724 + - uid: 24285 components: - type: Transform - pos: 98.5,-70.5 + rot: -1.5707963267948966 rad + pos: -53.5,-60.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24725 + - uid: 24286 components: - type: Transform - pos: 97.5,-63.5 + rot: 1.5707963267948966 rad + pos: -49.5,-54.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24726 + - uid: 24287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-71.5 + rot: -1.5707963267948966 rad + pos: -46.5,-54.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24727 + color: '#FFAA00FF' + - uid: 24288 components: - type: Transform rot: -1.5707963267948966 rad - pos: 103.5,-71.5 + pos: -53.5,-62.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24728 + - uid: 24289 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-15.5 + pos: -17.5,-18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 253 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24729 + color: '#00FFFFFF' + - uid: 24290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-33.5 + pos: 77.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24730 + - uid: 24291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,20.5 + pos: 81.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 256 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24731 + - uid: 24292 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,22.5 + pos: -6.5,-56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 256 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24732 + - uid: 24293 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-86.5 + pos: -5.5,-56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 184 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24733 + - uid: 41236 components: - type: Transform - pos: -7.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 40828 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24734 + color: '#0000FFFF' + - uid: 41815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 264 + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 41669 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24735 + color: '#0000FFFF' +- proto: GasPressurePump + entities: + - uid: 24294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,9.5 + rot: 1.5707963267948966 rad + pos: 36.5,-92.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 249 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24736 + color: '#B3A234FF' + - uid: 24295 components: - type: Transform - pos: 48.5,-14.5 + rot: 1.5707963267948966 rad + pos: 37.5,-98.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 272 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24737 + color: '#B3A234FF' + - uid: 24296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-19.5 + pos: 36.5,-99.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 281 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24738 + color: '#17E8E2FF' + - uid: 24297 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-10.5 + pos: 37.5,-101.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 272 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24739 + color: '#B3A234FF' + - uid: 24298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-13.5 + rot: 3.141592653589793 rad + pos: 43.5,-103.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 168 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24740 + - uid: 24299 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-2.5 + pos: 36.5,-86.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 285 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24741 + color: '#B3A234FF' + - uid: 24300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-70.5 + rot: 1.5707963267948966 rad + pos: 36.5,-89.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 197 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24742 + color: '#B3A234FF' + - uid: 24301 components: - type: Transform - pos: 50.5,-3.5 + rot: 1.5707963267948966 rad + pos: 36.5,-95.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 284 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24743 + color: '#B3A234FF' + - uid: 24302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-21.5 + rot: 1.5707963267948966 rad + pos: 39.5,-103.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 171 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24744 + color: '#0000FFFF' + - uid: 24303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-1.5 + pos: 36.5,-102.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 287 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24745 + color: '#17E8E2FF' + - uid: 24304 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-12.5 + pos: 41.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24746 + - uid: 24305 components: - type: Transform rot: 3.141592653589793 rad - pos: 84.5,-9.5 + pos: -37.5,-22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24747 + - uid: 24306 components: - type: Transform - pos: 79.5,0.5 + pos: -36.5,-22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 262 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24748 + - uid: 24307 components: - type: Transform - pos: 83.5,0.5 + rot: 1.5707963267948966 rad + pos: -55.5,-58.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 274 - - 259 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24749 + - uid: 24308 components: - type: Transform - pos: 87.5,0.5 + rot: -1.5707963267948966 rad + pos: -55.5,-56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 259 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24750 + - uid: 24309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-3.5 + pos: 40.5,-50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 290 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24751 + - uid: 24310 components: - type: Transform - pos: 38.5,-24.5 + rot: 3.141592653589793 rad + pos: 39.5,-50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 271 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24752 + color: '#0000FFFF' + - uid: 24311 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,2.5 + pos: 43.5,-85.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24753 + - uid: 24312 components: - type: Transform - pos: 75.5,5.5 + pos: 41.5,-103.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24754 + color: '#B3A234FF' + - uid: 24313 components: - type: Transform - pos: 79.5,4.5 + rot: -1.5707963267948966 rad + pos: -48.5,-89.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24755 + color: '#0000FFFF' + - uid: 24314 + components: + - type: Transform + pos: -60.5,-75.5 + parent: 2 + - uid: 24315 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-6.5 + pos: -62.5,-75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24756 + - uid: 24316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 + rot: -1.5707963267948966 rad + pos: -70.5,-78.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24757 + - uid: 24317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-6.5 + pos: -73.5,-25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24758 + color: '#0000FFFF' + - uid: 24318 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-38.5 + pos: -73.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 277 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24759 + - uid: 24319 components: - type: Transform - pos: 59.5,-55.5 + rot: -1.5707963267948966 rad + pos: 80.5,5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 139 - - 19137 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24760 + - type: GasPressurePump + targetPressure: 200 + - uid: 24320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-39.5 + pos: 78.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24761 + - type: GasPressurePump + targetPressure: 200 + - uid: 24321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-40.5 + pos: -1.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 24762 + - uid: 41237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 - parent: 2 + pos: 0.5,-11.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24763 + color: '#FF0000FF' +- proto: GasRecycler + entities: + - uid: 24322 components: - type: Transform - pos: 1.5,-28.5 + pos: -1.5,-50.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24764 +- proto: GasThermoMachineFreezer + entities: + - uid: 24323 components: - type: Transform - pos: -4.5,-23.5 + pos: -38.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24765 + - uid: 24324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-22.5 + pos: 42.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24766 + - uid: 24325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-28.5 + pos: 42.5,-90.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24767 + - uid: 24326 components: - type: Transform - pos: -3.5,-16.5 + rot: 1.5707963267948966 rad + pos: -54.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24768 + - uid: 24327 components: - type: Transform - pos: -10.5,-16.5 + pos: -13.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24769 + - uid: 24328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-19.5 + pos: -2.5,-50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 278 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24770 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 24329 components: - type: Transform - pos: 16.5,-14.5 + pos: 24.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24771 + - uid: 24330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-48.5 + rot: 3.141592653589793 rad + pos: -38.5,-74.5 parent: 2 - - uid: 24772 + - uid: 24331 components: - type: Transform - pos: 6.5,-47.5 + pos: 101.5,-82.5 parent: 2 - - uid: 24773 + - type: GasThermoMachine + targetTemperature: 73.15 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24332 components: - type: Transform - pos: 11.5,-58.5 + rot: 3.141592653589793 rad + pos: 101.5,-84.5 parent: 2 - - uid: 24774 + - type: GasThermoMachine + targetTemperature: 73.15 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasThermoMachineHeater + entities: + - uid: 24333 components: - type: Transform - pos: -1.5,-56.5 + pos: 42.5,-91.5 parent: 2 - - uid: 24775 + - uid: 24334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-47.5 + pos: 53.5,-86.5 parent: 2 - - uid: 24776 + - uid: 24335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-47.5 + pos: -74.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24777 + - uid: 24336 components: - type: Transform - pos: 9.5,-31.5 + rot: -1.5707963267948966 rad + pos: -81.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24778 + - uid: 24337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-15.5 + pos: -54.5,-60.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24779 +- proto: GasThermoMachineHeaterEnabled + entities: + - uid: 24338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-40.5 + rot: -1.5707963267948966 rad + pos: -2.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24780 +- proto: GasValve + entities: + - uid: 24339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-34.5 + pos: -16.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24781 + - uid: 24340 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-53.5 + rot: 1.5707963267948966 rad + pos: 36.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24782 + color: '#FF0000FF' + - uid: 24341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-38.5 + rot: 3.141592653589793 rad + pos: -82.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24783 + - uid: 24342 components: - type: Transform - pos: 2.5,-20.5 + pos: -6.5,-52.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24784 + - uid: 24343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,6.5 + pos: -5.5,-52.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 286 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24785 +- proto: GasVentPump + entities: + - uid: 24344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,5.5 + rot: -1.5707963267948966 rad + pos: 60.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 286 + - 263 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24786 + color: '#0000FFFF' + - uid: 24345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 + rot: -1.5707963267948966 rad + pos: 60.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 270 + - 269 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24787 + color: '#0000FFFF' + - uid: 24346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-8.5 + pos: 44.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 288 + - 264 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24788 + color: '#0000FFFF' + - uid: 24347 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-8.5 + pos: 49.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 289 + - 284 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24789 + color: '#0000FFFF' + - uid: 24348 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,-1.5 + pos: 61.5,14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 289 - - 290 + - 258 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24790 + color: '#0000FFFF' + - uid: 24349 components: - type: Transform - pos: 117.5,-39.5 + rot: 3.141592653589793 rad + pos: 58.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 291 + - 258 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24791 + color: '#0000FFFF' + - uid: 24350 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-42.5 + pos: 41.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 148 + - 282 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24792 + color: '#0000FFFF' + - uid: 24351 components: - type: Transform - pos: 87.5,-40.5 + rot: -1.5707963267948966 rad + pos: 47.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 148 + - 150 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24793 + color: '#0000FFFF' + - uid: 24352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 111.5,-41.5 + rot: 3.141592653589793 rad + pos: 52.5,-21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 291 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24794 + color: '#0000FFFF' + - uid: 24353 components: - type: Transform - pos: 128.5,-39.5 + rot: -1.5707963267948966 rad + pos: 53.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 291 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24795 + color: '#0000FFFF' + - uid: 24354 components: - type: Transform - pos: 7.5,4.5 + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 157 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-43.5 - parent: 2 + - 283 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24797 + color: '#0000FFFF' + - uid: 24355 components: - type: Transform - pos: 9.5,-36.5 + pos: 56.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24798 + color: '#0000FFFF' + - uid: 24356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-23.5 + rot: 3.141592653589793 rad + pos: 56.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24799 + color: '#0000FFFF' + - uid: 24357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-30.5 + pos: 43.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 278 + - 283 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24800 + color: '#0000FFFF' + - uid: 24358 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-15.5 + pos: 40.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 278 + - 283 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24801 + color: '#0000FFFF' + - uid: 24359 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-23.5 + pos: 40.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 278 + - 283 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24802 + color: '#0000FFFF' + - uid: 24360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-28.5 + rot: -1.5707963267948966 rad + pos: -45.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 278 + - 173 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24803 + color: '#0000FFFF' + - uid: 24361 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-24.5 + pos: 46.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24804 + color: '#0000FFFF' + - uid: 24362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-49.5 + rot: -1.5707963267948966 rad + pos: 46.5,1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24805 + color: '#0000FFFF' + - uid: 24363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 + rot: 1.5707963267948966 rad + pos: 101.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 148 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24806 + color: '#0000FFFF' + - uid: 24364 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-23.5 + pos: -48.5,-24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 173 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24807 + color: '#0000FFFF' + - uid: 24365 components: - type: Transform - pos: 30.5,6.5 + rot: -1.5707963267948966 rad + pos: 47.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 247 + - 283 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24808 + color: '#0000FFFF' + - uid: 24366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 + rot: 3.141592653589793 rad + pos: 48.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 247 + - 264 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24809 + color: '#0000FFFF' + - uid: 24367 components: - type: Transform - pos: 35.5,14.5 + pos: 49.5,-17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 248 + - 260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24810 + color: '#0000FFFF' + - uid: 24368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,10.5 + pos: 61.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 248 + - 266 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24811 + color: '#0000FFFF' + - uid: 24369 components: - type: Transform - pos: 23.5,8.5 + rot: 3.141592653589793 rad + pos: -25.5,-70.5 parent: 2 - type: DeviceNetwork deviceLists: - - 251 + - 197 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24812 + color: '#0000FFFF' + - uid: 24370 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-7.5 + pos: 30.5,-5.5 parent: 2 - type: DeviceNetwork deviceLists: - 247 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24813 + color: '#0000FFFF' + - uid: 24371 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,9.5 + pos: -62.5,-70.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 248 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24814 + color: '#0000FFFF' + - uid: 24372 components: - type: Transform - pos: 28.5,14.5 + rot: -1.5707963267948966 rad + pos: 50.5,-86.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 249 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24815 + color: '#0000FFFF' + - uid: 24373 components: - type: Transform - pos: 26.5,7.5 + rot: 3.141592653589793 rad + pos: -50.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 249 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24816 + color: '#0000FFFF' + - uid: 24374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-11.5 + rot: 1.5707963267948966 rad + pos: 30.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 150 + - 249 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24817 + color: '#0000FFFF' + - uid: 24375 components: - type: Transform - pos: 44.5,7.5 + rot: 1.5707963267948966 rad + pos: -49.5,-12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 283 + - 254 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24818 + color: '#0000FFFF' + - uid: 24376 components: - type: Transform - pos: 14.5,14.5 + rot: -1.5707963267948966 rad + pos: 66.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 165 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24819 + color: '#0000FFFF' + - uid: 24377 components: - type: Transform - pos: 18.5,20.5 + rot: 3.141592653589793 rad + pos: 70.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 298 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24820 + color: '#0000FFFF' + - uid: 24378 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,21.5 + pos: -29.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24821 + color: '#0000FFFF' + - uid: 24379 components: - type: Transform - pos: -1.5,24.5 + rot: 3.141592653589793 rad + pos: 42.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24822 + color: '#0000FFFF' + - uid: 24380 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,18.5 + rot: -1.5707963267948966 rad + pos: 52.5,-82.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - - 293 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24823 + color: '#0000FFFF' + - uid: 24381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,18.5 + rot: 1.5707963267948966 rad + pos: 49.5,-74.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - - 293 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24824 + color: '#0000FFFF' + - uid: 24382 components: - type: Transform - pos: -48.5,-19.5 + rot: 3.141592653589793 rad + pos: 53.5,-71.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 173 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24825 + color: '#0000FFFF' + - uid: 24383 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-25.5 + pos: 52.5,-56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 173 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24826 + color: '#0000FFFF' + - uid: 24384 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-43.5 + pos: 62.5,-61.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 236 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24827 + color: '#0000FFFF' + - uid: 24385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-49.5 + rot: -1.5707963267948966 rad + pos: 49.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 299 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24828 + color: '#0000FFFF' + - uid: 24386 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-50.5 + rot: 1.5707963267948966 rad + pos: 44.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 299 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24829 + color: '#0000FFFF' + - uid: 24387 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-39.5 + pos: 56.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 175 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24830 + color: '#0000FFFF' + - uid: 24388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-40.5 + pos: 68.5,-27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 175 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24831 + color: '#0000FFFF' + - uid: 24389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-43.5 + pos: 77.5,-28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 215 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24832 + color: '#0000FFFF' + - uid: 24390 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-54.5 + pos: 79.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 195 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24833 + color: '#0000FFFF' + - uid: 24391 components: - type: Transform - pos: -15.5,-72.5 + rot: 3.141592653589793 rad + pos: 86.5,-42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 197 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24834 + color: '#0000FFFF' + - uid: 24392 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-25.5 + pos: 82.5,-28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 168 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24835 + color: '#0000FFFF' + - uid: 24393 components: - type: Transform - pos: -12.5,0.5 + pos: 86.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24836 + color: '#0000FFFF' + - uid: 24394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-5.5 + pos: 102.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 166 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24837 + color: '#0000FFFF' + - uid: 24395 components: - type: Transform - pos: 13.5,0.5 + rot: 3.141592653589793 rad + pos: 102.5,-24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24838 + - uid: 24396 components: - type: Transform - pos: -16.5,5.5 + rot: 3.141592653589793 rad + pos: 37.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 300 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24839 + color: '#0000FFFF' + - uid: 24397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,9.5 + rot: 1.5707963267948966 rad + pos: 29.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 300 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24840 + color: '#0000FFFF' + - uid: 24398 components: - type: Transform - pos: -20.5,7.5 + rot: 3.141592653589793 rad + pos: 19.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 301 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40743 + color: '#0000FFFF' + - uid: 24399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 40666 - - type: DeviceNetwork - deviceLists: - - 40667 + pos: 17.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40744 + color: '#0000FFFF' + - uid: 24400 components: - type: Transform - pos: 0.5,4.5 - parent: 40666 - - type: DeviceNetwork - deviceLists: - - 40667 + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41244 + color: '#0000FFFF' + - uid: 24401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40832 + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41245 + color: '#0000FFFF' + - uid: 24402 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40833 + pos: 4.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41246 + color: '#0000FFFF' + - uid: 24403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40831 + pos: -6.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41247 + color: '#0000FFFF' + - uid: 24404 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40830 + pos: -8.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41248 + color: '#0000FFFF' + - uid: 24405 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40829 + pos: 0.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41820 + color: '#0000FFFF' + - uid: 24406 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 + pos: 4.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41821 + color: '#0000FFFF' + - uid: 24407 components: - type: Transform - pos: 5.5,1.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 + rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41822 + color: '#0000FFFF' + - uid: 24408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41823 + color: '#0000FFFF' + - uid: 24409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 + rot: 3.141592653589793 rad + pos: -6.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasVolumePump - entities: - - uid: 24841 + color: '#0000FFFF' + - uid: 24410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-89.5 + rot: 3.141592653589793 rad + pos: 8.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 24842 + color: '#0000FFFF' + - uid: 24411 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-90.5 + rot: -1.5707963267948966 rad + pos: 32.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 24843 + color: '#0000FFFF' + - uid: 24412 components: - type: Transform - pos: 98.5,-84.5 + rot: -1.5707963267948966 rad + pos: 29.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24844 + - uid: 24413 components: - type: Transform - pos: 100.5,-83.5 + rot: 3.141592653589793 rad + pos: 33.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' -- proto: Gateway - entities: - - uid: 24845 + color: '#0000FFFF' + - uid: 24414 components: - type: Transform - pos: 22.5,-22.5 + rot: 1.5707963267948966 rad + pos: 26.5,-73.5 parent: 2 - - type: Gateway - enabled: True -- proto: Gauze - entities: - - uid: 2523 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24415 components: - type: Transform - parent: 2520 - - type: Physics - canCollide: False - - uid: 2530 + rot: 3.141592653589793 rad + pos: 21.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24416 components: - type: Transform - parent: 2527 - - type: Physics - canCollide: False - - uid: 2537 + rot: 3.141592653589793 rad + pos: 5.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24417 components: - type: Transform - parent: 2534 - - type: Physics - canCollide: False - - uid: 18699 + rot: -1.5707963267948966 rad + pos: 11.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24418 components: - type: Transform - parent: 18698 - - type: Physics - canCollide: False - - uid: 24846 + rot: 1.5707963267948966 rad + pos: -4.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24419 components: - type: Transform - pos: 16.452196,-19.400105 + rot: 1.5707963267948966 rad + pos: -9.5,-86.5 parent: 2 -- proto: GeigerCounter - entities: - - uid: 24847 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24420 components: - type: Transform - pos: 78.38674,-49.55499 + rot: -1.5707963267948966 rad + pos: 7.5,-91.5 parent: 2 -- proto: GeneratorBasic - entities: - - uid: 24848 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24421 components: - type: Transform - pos: 98.5,-61.5 + rot: 3.141592653589793 rad + pos: -1.5,-95.5 parent: 2 -- proto: GeneratorRTG - entities: - - uid: 24849 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24422 components: - type: Transform - pos: 99.5,-61.5 + rot: 3.141592653589793 rad + pos: -7.5,-75.5 parent: 2 - - uid: 24850 + - type: DeviceNetwork + deviceLists: + - 238 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24423 components: - type: Transform - pos: 97.5,-61.5 + rot: 1.5707963267948966 rad + pos: -24.5,-76.5 parent: 2 - - uid: 24851 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24424 components: - type: Transform - pos: -48.5,-74.5 + rot: -1.5707963267948966 rad + pos: -17.5,-82.5 parent: 2 - - uid: 24852 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24425 components: - type: Transform - pos: -6.5,-46.5 + rot: 1.5707963267948966 rad + pos: -32.5,-86.5 parent: 2 -- proto: GeneratorRTGDamaged - entities: - - uid: 24853 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24426 components: - type: Transform - pos: -7.5,-46.5 + rot: 3.141592653589793 rad + pos: -31.5,-93.5 parent: 2 - - uid: 24854 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24427 components: - type: Transform - pos: -8.5,-46.5 + rot: 3.141592653589793 rad + pos: -27.5,-74.5 parent: 2 -- proto: GeneratorWallmountAPU - entities: - - uid: 40745 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24428 components: - type: Transform - pos: -2.5,-0.5 - parent: 40666 - - type: PowerSupplier - supplyRampRate: 1000 - supplyRampTolerance: 1000 - supplyRate: 12000 - - uid: 41249 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 40828 - - uid: 41250 + rot: 1.5707963267948966 rad + pos: -28.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24429 components: - type: Transform - pos: 2.5,-12.5 - parent: 40828 - - uid: 41251 + rot: -1.5707963267948966 rad + pos: -31.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24430 components: - type: Transform - pos: -1.5,-11.5 - parent: 40828 - - uid: 41824 + rot: -1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24431 components: - type: Transform - pos: 7.5,-7.5 - parent: 41669 - - uid: 41825 + rot: -1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24432 components: - type: Transform - pos: 1.5,-7.5 - parent: 41669 - - uid: 41826 + rot: -1.5707963267948966 rad + pos: -31.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24433 components: - type: Transform - pos: 5.5,-9.5 - parent: 41669 -- proto: GenericTank - entities: - - uid: 59 + rot: 1.5707963267948966 rad + pos: -31.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24434 components: - - type: MetaData - name: резервуар космического очистителя - type: Transform - pos: -0.49263692,-53.470585 + rot: -1.5707963267948966 rad + pos: -29.5,4.5 parent: 2 - - type: SolutionContainerManager - solutions: null - containers: - - tank - - type: Pullable - prevFixedRotation: True - - type: ContainerContainer - containers: - solution@tank: !type:ContainerSlot - ent: 60 - - uid: 24855 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24435 components: - type: Transform - pos: 17.5,-83.5 + rot: 3.141592653589793 rad + pos: -40.5,-49.5 parent: 2 - - uid: 24856 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24436 components: - type: Transform - pos: -11.5,-96.5 + rot: 1.5707963267948966 rad + pos: -47.5,-52.5 parent: 2 - - uid: 24857 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24437 components: - type: Transform - pos: -42.5,-107.5 + pos: -37.5,-54.5 parent: 2 - - uid: 24858 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24438 components: - type: Transform - pos: -8.5,-48.5 + rot: -1.5707963267948966 rad + pos: -34.5,-57.5 parent: 2 -- proto: Girder - entities: - - uid: 24859 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24439 components: - type: Transform - pos: -59.5,-16.5 + rot: 1.5707963267948966 rad + pos: -43.5,-56.5 parent: 2 - - uid: 24860 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24440 components: - type: Transform - pos: -12.5,-26.5 + rot: 3.141592653589793 rad + pos: -38.5,-65.5 parent: 2 - - uid: 24861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24441 components: - type: Transform - pos: -67.5,6.5 + rot: 1.5707963267948966 rad + pos: -43.5,-73.5 parent: 2 - - uid: 24862 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24442 components: - type: Transform rot: -1.5707963267948966 rad - pos: 99.5,-46.5 + pos: -39.5,-74.5 parent: 2 - - uid: 24863 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24443 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,-91.5 + pos: -37.5,-69.5 parent: 2 - - uid: 24864 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-51.5 + pos: -51.5,-59.5 parent: 2 - - uid: 24865 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-45.5 + rot: -1.5707963267948966 rad + pos: -49.5,-65.5 parent: 2 - - uid: 24866 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24446 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-77.5 + pos: -61.5,-65.5 parent: 2 - - uid: 24867 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24447 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,19.5 + rot: 1.5707963267948966 rad + pos: -68.5,-64.5 parent: 2 - - uid: 24868 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-61.5 + rot: 1.5707963267948966 rad + pos: -43.5,-38.5 parent: 2 - - uid: 24869 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24449 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-81.5 + pos: -41.5,-34.5 parent: 2 - - uid: 24870 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24450 components: - type: Transform - pos: -43.5,-95.5 + rot: -1.5707963267948966 rad + pos: -38.5,-22.5 parent: 2 - - uid: 24871 + - type: DeviceNetwork + deviceLists: + - 171 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-34.5 + pos: -51.5,-28.5 parent: 2 - - uid: 24872 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24452 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-32.5 + rot: 1.5707963267948966 rad + pos: -51.5,-33.5 parent: 2 - - uid: 24873 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-25.5 + pos: -53.5,-21.5 parent: 2 - - uid: 24874 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,7.5 + rot: 1.5707963267948966 rad + pos: -54.5,-24.5 parent: 2 - - uid: 24875 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24455 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,9.5 + pos: -35.5,-31.5 parent: 2 - - uid: 24876 + - type: DeviceNetwork + deviceLists: + - 243 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24456 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,14.5 + pos: -41.5,-23.5 parent: 2 - - uid: 24877 + - type: DeviceNetwork + deviceLists: + - 171 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,15.5 + rot: -1.5707963267948966 rad + pos: -42.5,-9.5 parent: 2 - - uid: 24878 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24458 components: - type: Transform - pos: -65.5,-15.5 + rot: -1.5707963267948966 rad + pos: -37.5,-7.5 parent: 2 - - uid: 24879 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24459 components: - type: Transform - pos: -22.5,16.5 + rot: 1.5707963267948966 rad + pos: -43.5,-43.5 parent: 2 - - uid: 24880 + - type: DeviceNetwork + deviceLists: + - 236 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24460 components: - type: Transform - pos: -18.5,14.5 + pos: -57.5,-43.5 parent: 2 - - uid: 24881 + - type: DeviceNetwork + deviceLists: + - 130 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-118.5 + pos: -65.5,-43.5 parent: 2 - - uid: 24882 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-122.5 + rot: 1.5707963267948966 rad + pos: -75.5,-38.5 parent: 2 - - uid: 24883 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24463 components: - type: Transform - pos: -42.5,-120.5 + rot: 3.141592653589793 rad + pos: -74.5,-50.5 parent: 2 - - uid: 24884 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24464 components: - type: Transform - pos: -57.5,-76.5 + rot: -1.5707963267948966 rad + pos: -63.5,-37.5 parent: 2 - - uid: 24885 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24465 components: - type: Transform - pos: 108.5,-46.5 + rot: -1.5707963267948966 rad + pos: 106.5,-21.5 parent: 2 - - uid: 24886 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24466 components: - type: Transform - pos: 92.5,-46.5 + rot: 1.5707963267948966 rad + pos: -50.5,-1.5 parent: 2 - - uid: 24887 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24467 components: - type: Transform - pos: 75.5,-45.5 + rot: -1.5707963267948966 rad + pos: 15.5,-101.5 parent: 2 - - uid: 24888 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24468 components: - type: Transform - pos: -45.5,-106.5 + rot: -1.5707963267948966 rad + pos: 7.5,-95.5 parent: 2 - - uid: 24889 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24469 components: - type: Transform - pos: -39.5,-107.5 + rot: -1.5707963267948966 rad + pos: 16.5,-90.5 parent: 2 - - uid: 24890 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24470 components: - type: Transform - pos: -28.5,-109.5 + rot: -1.5707963267948966 rad + pos: 50.5,-97.5 parent: 2 - - uid: 24891 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24471 components: - type: Transform - pos: -49.5,-119.5 + rot: 1.5707963267948966 rad + pos: 45.5,-97.5 parent: 2 - - uid: 24892 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24472 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-21.5 + rot: -1.5707963267948966 rad + pos: -7.5,-94.5 parent: 2 - - uid: 24893 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24473 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-21.5 + pos: -13.5,-99.5 parent: 2 - - uid: 24894 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24474 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,28.5 + pos: 43.5,-75.5 parent: 2 - - uid: 24895 + - type: DeviceNetwork + deviceLists: + - 234 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24475 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,-4.5 - parent: 2 - - uid: 24896 - components: - - type: Transform - pos: -47.5,1.5 + pos: 23.5,13.5 parent: 2 -- proto: GlassBoxBroken - entities: - - uid: 24897 + - type: DeviceNetwork + deviceLists: + - 250 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24476 components: - type: Transform - pos: 14.5,-23.5 + rot: -1.5707963267948966 rad + pos: 35.5,1.5 parent: 2 -- proto: GlowstickBase - entities: - - uid: 24898 + - type: DeviceNetwork + deviceLists: + - 247 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24477 components: - type: Transform - pos: -46.635826,-97.712006 + pos: 33.5,13.5 parent: 2 - - uid: 24899 + - type: DeviceNetwork + deviceLists: + - 248 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24478 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.455772,-103.54919 + pos: 33.5,-12.5 parent: 2 - - uid: 24900 + - type: DeviceNetwork + deviceLists: + - 252 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24479 components: - type: Transform - pos: -76.321335,-9.98569 + rot: 1.5707963267948966 rad + pos: 25.5,1.5 parent: 2 - - uid: 24901 + - type: DeviceNetwork + deviceLists: + - 251 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24480 components: - type: Transform - pos: -74.14946,-7.76694 + rot: 3.141592653589793 rad + pos: -45.5,-34.5 parent: 2 -- proto: GlowstickBlue - entities: - - uid: 24902 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24481 components: - type: Transform - pos: -47.2452,-100.72763 + rot: -1.5707963267948966 rad + pos: -38.5,-2.5 parent: 2 -- proto: GlowstickPurple - entities: - - uid: 24903 + - type: DeviceNetwork + deviceLists: + - 178 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24482 components: - type: Transform - pos: -45.542076,-103.274506 + rot: 3.141592653589793 rad + pos: 96.5,-89.5 parent: 2 -- proto: GlowstickRed - entities: - - uid: 24904 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24483 components: - type: Transform - pos: -49.667076,-97.555756 + rot: 3.141592653589793 rad + pos: 100.5,-89.5 parent: 2 -- proto: Gohei - entities: - - uid: 24905 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24484 components: - - type: MetaData - desc: плётка используемая что бы подгонять мапперов. - name: окровавленная плётка - type: Transform - pos: 104.2224,-47.525528 + rot: 3.141592653589793 rad + pos: 101.5,-80.5 parent: 2 -- proto: GoldRingDiamond - entities: - - uid: 24906 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24485 components: - type: Transform - pos: -6.2808795,-8.315094 + rot: 3.141592653589793 rad + pos: 95.5,-80.5 parent: 2 -- proto: GoldRingGem - entities: - - uid: 24907 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24486 components: - type: Transform - pos: -6.3746295,-8.471344 + rot: -1.5707963267948966 rad + pos: 100.5,-75.5 parent: 2 -- proto: GravityGenerator - entities: - - uid: 24908 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24487 components: - type: Transform - pos: 27.5,-42.5 + pos: 99.5,-63.5 parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 40746 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 40666 - - uid: 41252 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 40828 - - uid: 41827 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 41669 -- proto: GrenadeBaton - entities: - - uid: 24909 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24488 components: - type: Transform - pos: 12.37467,-16.41426 + rot: 3.141592653589793 rad + pos: 98.5,-68.5 parent: 2 - - uid: 24910 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24489 components: - type: Transform - pos: 12.640295,-16.304886 + rot: 1.5707963267948966 rad + pos: 93.5,-67.5 parent: 2 -- proto: GrenadeFoamDart - entities: - - uid: 24911 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24490 components: - type: Transform - pos: 8.747442,-16.62456 + rot: -1.5707963267948966 rad + pos: 103.5,-67.5 parent: 2 -- proto: GrenadeFrag - entities: - - uid: 24912 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24491 components: - type: Transform - pos: 8.300089,-15.383011 + pos: -54.5,-14.5 parent: 2 - - uid: 24913 + - type: DeviceNetwork + deviceLists: + - 253 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24492 components: - type: Transform - pos: 8.503214,-15.289261 + pos: -56.5,-38.5 parent: 2 -- proto: GrenadeIncendiary - entities: - - uid: 16302 - components: - - type: Transform - parent: 16300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40867 - components: - - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40868 - components: - - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40869 - components: - - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: GrenadeShrapnel - entities: - - uid: 16303 - components: - - type: Transform - parent: 16300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40870 - components: - - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40871 + - type: DeviceNetwork + deviceLists: + - 255 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24493 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40872 + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 256 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24494 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: GrenadeStinger - entities: - - uid: 16304 + rot: 3.141592653589793 rad + pos: 37.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 256 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24495 components: - type: Transform - parent: 16300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40873 + rot: 1.5707963267948966 rad + pos: -35.5,-81.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 199 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24496 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40874 + rot: 3.141592653589793 rad + pos: -42.5,-86.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 184 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24497 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40875 + rot: 3.141592653589793 rad + pos: 40.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 271 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24498 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40876 + rot: -1.5707963267948966 rad + pos: 62.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24499 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40877 + rot: 3.141592653589793 rad + pos: 105.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 292 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24500 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Grille - entities: - - uid: 24914 + rot: 1.5707963267948966 rad + pos: 44.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 281 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24501 components: - type: Transform - pos: 51.5,-6.5 + rot: -1.5707963267948966 rad + pos: 57.5,-12.5 parent: 2 - - uid: 24915 + - type: DeviceNetwork + deviceLists: + - 272 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24502 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,9.5 + pos: 54.5,-0.5 parent: 2 - - uid: 24916 + - type: DeviceNetwork + deviceLists: + - 285 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24503 components: - type: Transform - pos: 45.5,-3.5 + pos: 64.5,-4.5 parent: 2 - - uid: 24917 + - type: DeviceNetwork + deviceLists: + - 287 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24504 components: - type: Transform - pos: 41.5,4.5 + rot: 3.141592653589793 rad + pos: 72.5,-12.5 parent: 2 - - uid: 24918 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24505 components: - type: Transform - pos: 45.5,7.5 + rot: 3.141592653589793 rad + pos: 75.5,-12.5 parent: 2 - - uid: 24919 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24506 components: - type: Transform - pos: 45.5,3.5 + pos: 84.5,-6.5 parent: 2 - - uid: 24920 + - type: DeviceNetwork + deviceLists: + - 275 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24507 components: - type: Transform - pos: 56.5,2.5 + pos: 81.5,0.5 parent: 2 - - uid: 24921 + - type: DeviceNetwork + deviceLists: + - 274 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24508 components: - type: Transform - pos: 58.5,-6.5 + pos: 85.5,0.5 parent: 2 - - uid: 24922 + - type: DeviceNetwork + deviceLists: + - 259 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24509 components: - type: Transform - pos: 56.5,-6.5 + pos: 77.5,0.5 parent: 2 - - uid: 24923 + - type: DeviceNetwork + deviceLists: + - 262 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-19.5 + pos: 74.5,-1.5 parent: 2 - - uid: 24924 + - type: DeviceNetwork + deviceLists: + - 290 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-16.5 + rot: 3.141592653589793 rad + pos: 53.5,3.5 parent: 2 - - uid: 24925 + - type: DeviceNetwork + deviceLists: + - 286 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24512 components: - type: Transform - pos: 41.5,1.5 + rot: 1.5707963267948966 rad + pos: 50.5,9.5 parent: 2 - - uid: 24926 + - type: DeviceNetwork + deviceLists: + - 270 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24513 components: - type: Transform - pos: 45.5,0.5 + pos: 74.5,5.5 parent: 2 - - uid: 24927 + - type: DeviceNetwork + deviceLists: + - 276 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-18.5 + rot: 3.141592653589793 rad + pos: 74.5,1.5 parent: 2 - - uid: 24928 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24515 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,21.5 + pos: 77.5,4.5 parent: 2 - - uid: 24929 + - type: DeviceNetwork + deviceLists: + - 276 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24516 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-24.5 + pos: 53.5,-14.5 parent: 2 - - uid: 24930 + - type: DeviceNetwork + deviceLists: + - 272 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-22.5 + rot: 1.5707963267948966 rad + pos: 69.5,4.5 parent: 2 - - uid: 24931 + - type: DeviceNetwork + deviceLists: + - 276 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,16.5 + rot: 3.141592653589793 rad + pos: 1.5,-6.5 parent: 2 - - uid: 24932 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24519 components: - type: Transform - pos: 42.5,-26.5 + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 parent: 2 - - uid: 24933 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24520 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-16.5 + pos: 6.5,-8.5 parent: 2 - - uid: 24934 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24521 components: - type: Transform - pos: 11.5,-112.5 + rot: 1.5707963267948966 rad + pos: 26.5,-36.5 parent: 2 - - uid: 24935 + - type: DeviceNetwork + deviceLists: + - 277 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24522 components: - type: Transform - pos: -15.5,-10.5 + pos: 56.5,-55.5 parent: 2 - - uid: 24936 + - type: DeviceNetwork + deviceLists: + - 139 + - 19137 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-17.5 + pos: -13.5,-42.5 parent: 2 - - uid: 24937 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-8.5 + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 parent: 2 - - uid: 24938 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24525 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-10.5 + pos: 6.5,-19.5 parent: 2 - - uid: 24939 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,16.5 + rot: 1.5707963267948966 rad + pos: 5.5,-26.5 parent: 2 - - uid: 24940 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24527 components: - type: Transform - pos: 74.5,-8.5 + rot: -1.5707963267948966 rad + pos: 5.5,-43.5 parent: 2 - - uid: 24941 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24528 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,37.5 + pos: -4.5,-44.5 parent: 2 - - uid: 24942 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24529 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,34.5 + pos: 15.5,-28.5 parent: 2 - - uid: 24943 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-61.5 + pos: 19.5,-25.5 parent: 2 - - uid: 24944 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-71.5 + pos: 18.5,-14.5 parent: 2 - - uid: 24945 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24532 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-92.5 + pos: 10.5,-21.5 parent: 2 - - uid: 24946 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24533 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-62.5 + pos: -5.5,-36.5 parent: 2 - - uid: 24947 + - uid: 24534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-14.5 + rot: -1.5707963267948966 rad + pos: -6.5,-39.5 parent: 2 - - uid: 24948 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24535 components: - type: Transform - pos: -69.5,-72.5 + rot: 1.5707963267948966 rad + pos: -19.5,-22.5 parent: 2 - - uid: 24949 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24536 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-102.5 + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 parent: 2 - - uid: 24950 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24537 components: - type: Transform - pos: 66.5,-67.5 + rot: 1.5707963267948966 rad + pos: -17.5,-46.5 parent: 2 - - uid: 24951 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24538 components: - type: Transform - pos: 66.5,-69.5 + rot: -1.5707963267948966 rad + pos: 57.5,7.5 parent: 2 - - uid: 24952 + - type: DeviceNetwork + deviceLists: + - 286 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,39.5 + rot: 1.5707963267948966 rad + pos: 48.5,15.5 parent: 2 - - uid: 24953 + - type: DeviceNetwork + deviceLists: + - 270 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24540 components: - type: Transform - pos: -19.5,-104.5 + pos: 63.5,-8.5 parent: 2 - - uid: 24954 + - type: DeviceNetwork + deviceLists: + - 288 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24541 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-102.5 + pos: 69.5,-8.5 parent: 2 - - uid: 24955 + - type: DeviceNetwork + deviceLists: + - 289 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24542 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-47.5 + rot: 1.5707963267948966 rad + pos: 69.5,-2.5 parent: 2 - - uid: 24956 + - type: DeviceNetwork + deviceLists: + - 289 + - 290 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-60.5 + rot: -1.5707963267948966 rad + pos: 111.5,-39.5 parent: 2 - - uid: 24957 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24544 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-48.5 + pos: 116.5,-39.5 parent: 2 - - uid: 24958 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24545 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-46.5 + pos: 127.5,-39.5 parent: 2 - - uid: 24959 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24546 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-75.5 + pos: -8.5,14.5 parent: 2 - - uid: 24960 + - type: DeviceNetwork + deviceLists: + - 293 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24547 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,-46.5 + pos: 9.5,-43.5 parent: 2 - - uid: 24961 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24548 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-62.5 + pos: 18.5,-36.5 parent: 2 - - uid: 24962 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-63.5 + rot: 1.5707963267948966 rad + pos: 1.5,-39.5 parent: 2 - - uid: 24963 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-79.5 + rot: 1.5707963267948966 rad + pos: 0.5,-35.5 parent: 2 - - uid: 24964 + - uid: 24551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-81.5 + rot: 1.5707963267948966 rad + pos: 15.5,-18.5 parent: 2 - - uid: 24965 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-81.5 + rot: -1.5707963267948966 rad + pos: 19.5,-23.5 parent: 2 - - uid: 24966 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24553 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-78.5 + pos: -13.5,-51.5 parent: 2 - - uid: 24967 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-103.5 + rot: 1.5707963267948966 rad + pos: -19.5,-53.5 parent: 2 - - uid: 24968 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-5.5 + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 parent: 2 - - uid: 24969 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24556 components: - type: Transform rot: 3.141592653589793 rad - pos: 109.5,-58.5 + pos: -18.5,-32.5 parent: 2 - - uid: 24970 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24557 components: - type: Transform - pos: 12.5,27.5 + rot: -1.5707963267948966 rad + pos: -13.5,-36.5 parent: 2 - - uid: 24971 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-77.5 + rot: 1.5707963267948966 rad + pos: -17.5,-40.5 parent: 2 - - uid: 24972 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24559 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24560 components: - type: Transform rot: 3.141592653589793 rad - pos: 88.5,-59.5 + pos: -2.5,-41.5 parent: 2 - - uid: 24973 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24563 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-3.5 + pos: 2.5,-15.5 parent: 2 - - uid: 24974 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24564 components: - type: Transform - pos: -33.5,-81.5 + pos: -15.5,-19.5 parent: 2 - - uid: 24975 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24565 components: - type: Transform - pos: -69.5,-74.5 + pos: 9.5,-12.5 parent: 2 - - uid: 24976 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24566 components: - type: Transform - pos: -50.5,-70.5 + rot: 1.5707963267948966 rad + pos: 8.5,-29.5 parent: 2 - - uid: 24977 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24567 components: - type: Transform - rot: 3.141592653589793 rad - pos: 111.5,-58.5 + rot: -1.5707963267948966 rad + pos: -4.5,-28.5 parent: 2 - - uid: 24978 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24568 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,39.5 + pos: 3.5,-25.5 parent: 2 - - uid: 24979 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24569 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,39.5 + pos: 13.5,-61.5 parent: 2 - - uid: 24980 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-88.5 + rot: 1.5707963267948966 rad + pos: 5.5,-61.5 parent: 2 - - uid: 24981 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24571 + components: + - type: Transform + pos: 18.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24572 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,-100.5 + pos: 1.5,-53.5 parent: 2 - - uid: 24982 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24573 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,-98.5 + pos: 32.5,7.5 parent: 2 - - uid: 24983 + - type: DeviceNetwork + deviceLists: + - 247 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24574 components: - type: Transform - pos: -49.5,-70.5 + pos: 29.5,-1.5 parent: 2 - - uid: 24984 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24575 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,-87.5 + pos: 42.5,-8.5 parent: 2 - - uid: 24985 + - type: DeviceNetwork + deviceLists: + - 150 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24576 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-87.5 + pos: 42.5,7.5 parent: 2 - - uid: 24986 + - type: DeviceNetwork + deviceLists: + - 283 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-88.5 + pos: 15.5,14.5 parent: 2 - - uid: 24987 + - type: DeviceNetwork + deviceLists: + - 165 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24578 components: - type: Transform - pos: -2.5,7.5 + rot: -1.5707963267948966 rad + pos: 14.5,20.5 parent: 2 - - uid: 24988 + - type: DeviceNetwork + deviceLists: + - 298 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24579 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,7.5 + pos: -2.5,26.5 parent: 2 - - uid: 24989 + - type: DeviceNetwork + deviceLists: + - 164 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,7.5 + pos: 3.5,26.5 parent: 2 - - uid: 24990 + - type: DeviceNetwork + deviceLists: + - 164 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,20.5 + rot: 1.5707963267948966 rad + pos: 2.5,24.5 parent: 2 - - uid: 24991 + - type: DeviceNetwork + deviceLists: + - 164 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,18.5 + pos: -35.5,-43.5 parent: 2 - - uid: 24992 + - type: DeviceNetwork + deviceLists: + - 236 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24583 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,26.5 + pos: -65.5,-48.5 parent: 2 - - uid: 24993 + - type: DeviceNetwork + deviceLists: + - 299 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24584 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-90.5 + pos: -75.5,-43.5 parent: 2 - - uid: 24994 + - type: DeviceNetwork + deviceLists: + - 215 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-86.5 + rot: 3.141592653589793 rad + pos: -29.5,-54.5 parent: 2 - - uid: 24995 + - type: DeviceNetwork + deviceLists: + - 195 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24586 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-63.5 + pos: -17.5,-72.5 parent: 2 - - uid: 24996 + - type: DeviceNetwork + deviceLists: + - 197 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24587 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-63.5 + rot: -1.5707963267948966 rad + pos: -28.5,-15.5 parent: 2 - - uid: 24997 + - type: DeviceNetwork + deviceLists: + - 168 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24588 components: - type: Transform - pos: 86.5,-37.5 + rot: -1.5707963267948966 rad + pos: -28.5,-27.5 parent: 2 - - uid: 24998 + - type: DeviceNetwork + deviceLists: + - 168 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24589 components: - type: Transform - pos: 65.5,-30.5 + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 parent: 2 - - uid: 24999 + - type: DeviceNetwork + deviceLists: + - 166 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24590 components: - type: Transform - pos: 66.5,-30.5 + rot: 3.141592653589793 rad + pos: -11.5,2.5 parent: 2 - - uid: 25000 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24591 components: - type: Transform - pos: 67.5,-30.5 + rot: 1.5707963267948966 rad + pos: 12.5,2.5 parent: 2 - - uid: 25001 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24592 components: - type: Transform - pos: -12.5,-69.5 + pos: -15.5,5.5 parent: 2 - - uid: 25002 + - type: DeviceNetwork + deviceLists: + - 300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24593 components: - type: Transform - pos: -17.5,-69.5 + rot: 1.5707963267948966 rad + pos: -23.5,4.5 parent: 2 - - uid: 25003 + - type: DeviceNetwork + deviceLists: + - 301 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28716 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-87.5 + pos: 8.5,-2.5 parent: 2 - - uid: 25004 + - type: DeviceNetwork + deviceLists: + - 156 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41238 components: - type: Transform - pos: -15.5,-69.5 - parent: 2 - - uid: 25005 + rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40832 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41239 components: - type: Transform - pos: -21.5,-67.5 - parent: 2 - - uid: 25006 + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40833 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41240 components: - type: Transform - pos: -25.5,-57.5 - parent: 2 - - uid: 25007 + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40830 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41241 components: - type: Transform - pos: -19.5,-67.5 - parent: 2 - - uid: 25008 + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40831 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41242 components: - type: Transform - pos: -18.5,-68.5 - parent: 2 - - uid: 25009 + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40829 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41243 components: - type: Transform - pos: 12.5,-69.5 - parent: 2 - - uid: 25010 + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40829 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-68.5 - parent: 2 - - uid: 25011 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41817 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,-68.5 - parent: 2 - - uid: 25012 + pos: 3.5,-11.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41818 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-82.5 - parent: 2 - - uid: 25013 + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-81.5 + pos: 3.5,1.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42373 + components: + - type: Transform + pos: 29.5,18.5 parent: 2 - - uid: 25014 + - type: DeviceNetwork + deviceLists: + - 42374 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 24594 components: - type: Transform - pos: 9.5,-69.5 + rot: 1.5707963267948966 rad + pos: 50.5,11.5 parent: 2 - - uid: 25015 + - type: DeviceNetwork + deviceLists: + - 270 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24595 components: - type: Transform - pos: 44.5,-70.5 + pos: 51.5,-9.5 parent: 2 - - uid: 25016 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24596 components: - type: Transform - pos: 43.5,-70.5 + rot: -1.5707963267948966 rad + pos: 60.5,10.5 parent: 2 - - uid: 25017 + - type: DeviceNetwork + deviceLists: + - 269 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24597 components: - type: Transform - pos: -16.5,-69.5 + rot: 3.141592653589793 rad + pos: 63.5,14.5 parent: 2 - - uid: 25018 + - type: DeviceNetwork + deviceLists: + - 258 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24598 components: - type: Transform - pos: -18.5,-67.5 + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 parent: 2 - - uid: 25019 + - type: DeviceNetwork + deviceLists: + - 282 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24599 components: - type: Transform rot: 3.141592653589793 rad - pos: 88.5,-63.5 + pos: 57.5,-20.5 parent: 2 - - uid: 25020 + - type: DeviceNetwork + deviceLists: + - 265 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24600 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-83.5 + pos: 59.5,13.5 parent: 2 - - uid: 25021 + - type: DeviceNetwork + deviceLists: + - 258 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-84.5 + rot: -1.5707963267948966 rad + pos: 47.5,-7.5 parent: 2 - - uid: 25022 + - type: DeviceNetwork + deviceLists: + - 150 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24602 components: - type: Transform - pos: -6.5,2.5 + rot: 3.141592653589793 rad + pos: 51.5,-21.5 parent: 2 - - uid: 25023 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24603 components: - type: Transform - pos: 32.5,-68.5 + rot: 3.141592653589793 rad + pos: 57.5,-21.5 parent: 2 - - uid: 25024 + - type: DeviceNetwork + deviceLists: + - 268 + - uid: 24604 components: - type: Transform - pos: -41.5,-74.5 + rot: 3.141592653589793 rad + pos: 62.5,4.5 parent: 2 - - uid: 25025 + - type: DeviceNetwork + deviceLists: + - 263 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24605 components: - type: Transform - pos: -41.5,-72.5 + rot: 1.5707963267948966 rad + pos: 48.5,-23.5 parent: 2 - - uid: 25026 + - type: DeviceNetwork + deviceLists: + - 264 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24606 components: - type: Transform - pos: -59.5,-88.5 + rot: 1.5707963267948966 rad + pos: 41.5,-1.5 parent: 2 - - uid: 25027 + - type: DeviceNetwork + deviceLists: + - 283 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24607 components: - type: Transform - pos: -60.5,-92.5 + rot: -1.5707963267948966 rad + pos: 47.5,6.5 parent: 2 - - uid: 25028 + - type: DeviceNetwork + deviceLists: + - 283 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-75.5 + rot: 1.5707963267948966 rad + pos: 40.5,1.5 parent: 2 - - uid: 25029 + - type: DeviceNetwork + deviceLists: + - 283 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24609 components: - type: Transform - pos: -41.5,-69.5 + rot: 1.5707963267948966 rad + pos: 49.5,-19.5 parent: 2 - - uid: 25030 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24610 components: - type: Transform - pos: -48.5,-45.5 + rot: -1.5707963267948966 rad + pos: 46.5,0.5 parent: 2 - - uid: 25031 + - type: DeviceNetwork + deviceLists: + - 283 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-75.5 + rot: 1.5707963267948966 rad + pos: 40.5,4.5 parent: 2 - - uid: 25032 + - type: DeviceNetwork + deviceLists: + - 283 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24612 components: - type: Transform - pos: -8.5,-69.5 + rot: -1.5707963267948966 rad + pos: 46.5,3.5 parent: 2 - - uid: 25033 + - type: DeviceNetwork + deviceLists: + - 283 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24613 components: - type: Transform - pos: -11.5,-69.5 + rot: 1.5707963267948966 rad + pos: 62.5,-16.5 parent: 2 - - uid: 25034 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24614 components: - type: Transform - pos: -10.5,-69.5 + pos: 64.5,-11.5 parent: 2 - - uid: 25035 + - type: DeviceNetwork + deviceLists: + - 266 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24615 components: - type: Transform - pos: -58.5,14.5 + rot: 1.5707963267948966 rad + pos: 25.5,3.5 parent: 2 - - uid: 25036 + - type: DeviceNetwork + deviceLists: + - 251 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,13.5 + rot: 1.5707963267948966 rad + pos: 24.5,12.5 parent: 2 - - uid: 25037 + - type: DeviceNetwork + deviceLists: + - 250 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24617 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,13.5 + pos: -63.5,-70.5 parent: 2 - - uid: 25038 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24618 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,16.5 + pos: -54.5,-39.5 parent: 2 - - uid: 25039 + - type: DeviceNetwork + deviceLists: + - 255 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24619 components: - type: Transform - pos: -27.5,-51.5 + rot: 1.5707963267948966 rad + pos: -56.5,-32.5 parent: 2 - - uid: 25040 + - type: DeviceNetwork + deviceLists: + - 255 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24620 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-63.5 + pos: -35.5,-79.5 parent: 2 - - uid: 25041 + - type: DeviceNetwork + deviceLists: + - 199 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-75.5 + pos: 40.5,-94.5 parent: 2 - - uid: 25042 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-51.5 + rot: 3.141592653589793 rad + pos: 39.5,-86.5 parent: 2 - - uid: 25043 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24623 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,-51.5 + pos: 66.5,-39.5 parent: 2 - - uid: 25044 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24624 components: - type: Transform - pos: 2.5,6.5 + pos: 72.5,-32.5 parent: 2 - - uid: 25045 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24625 components: - type: Transform - pos: 2.5,7.5 + pos: -30.5,-32.5 parent: 2 - - uid: 25046 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24626 components: - type: Transform - pos: 2.5,10.5 + pos: 34.5,-32.5 parent: 2 - - uid: 25047 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24627 components: - type: Transform - pos: 2.5,11.5 + pos: 55.5,-82.5 parent: 2 - - uid: 25048 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24628 components: - type: Transform - pos: 9.5,18.5 + rot: -1.5707963267948966 rad + pos: 49.5,-72.5 parent: 2 - - uid: 25049 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24629 components: - type: Transform - pos: 10.5,18.5 + rot: 3.141592653589793 rad + pos: 56.5,-71.5 parent: 2 - - uid: 25050 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24630 components: - type: Transform - pos: 11.5,18.5 + rot: 1.5707963267948966 rad + pos: 49.5,-56.5 parent: 2 - - uid: 25051 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24631 components: - type: Transform - pos: 12.5,24.5 + pos: 62.5,-57.5 parent: 2 - - uid: 25052 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24632 components: - type: Transform - pos: 11.5,24.5 + rot: -1.5707963267948966 rad + pos: 44.5,-42.5 parent: 2 - - uid: 25053 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24633 components: - type: Transform - pos: 11.5,25.5 + pos: 50.5,-32.5 parent: 2 - - uid: 25054 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24634 components: - type: Transform - pos: 10.5,25.5 + pos: 64.5,-27.5 parent: 2 - - uid: 25055 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24635 components: - type: Transform - pos: 10.5,26.5 + rot: -1.5707963267948966 rad + pos: 44.5,-27.5 parent: 2 - - uid: 25056 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24636 components: - type: Transform - pos: 8.5,26.5 + rot: -1.5707963267948966 rad + pos: 74.5,-29.5 parent: 2 - - uid: 25057 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24637 components: - type: Transform - pos: 7.5,26.5 + pos: 107.5,-41.5 parent: 2 - - uid: 25058 + - type: DeviceNetwork + deviceLists: + - 292 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24638 components: - type: Transform - pos: 6.5,26.5 + rot: -1.5707963267948966 rad + pos: 82.5,-36.5 parent: 2 - - uid: 25059 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24639 components: - type: Transform - pos: 6.5,27.5 + pos: 88.5,-20.5 parent: 2 - - uid: 25060 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24640 components: - type: Transform - pos: 5.5,27.5 + pos: 39.5,-32.5 parent: 2 - - uid: 25061 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24641 components: - type: Transform - pos: 4.5,27.5 + rot: -1.5707963267948966 rad + pos: 29.5,-21.5 parent: 2 - - uid: 25062 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24642 components: - type: Transform - pos: 3.5,27.5 - parent: 2 - - uid: 25063 - components: - - type: Transform - pos: 3.5,28.5 - parent: 2 - - uid: 25064 - components: - - type: Transform - pos: 2.5,28.5 + rot: -1.5707963267948966 rad + pos: 27.5,-7.5 parent: 2 - - uid: 25065 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24643 components: - type: Transform - pos: 1.5,28.5 + pos: 15.5,6.5 parent: 2 - - uid: 25066 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24644 components: - type: Transform - pos: 0.5,28.5 + rot: 1.5707963267948966 rad + pos: 6.5,0.5 parent: 2 - - uid: 25067 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24645 components: - type: Transform - pos: -0.5,28.5 + rot: 3.141592653589793 rad + pos: -0.5,1.5 parent: 2 - - uid: 25068 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24646 components: - type: Transform - pos: -1.5,28.5 + pos: 4.5,11.5 parent: 2 - - uid: 25069 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24647 components: - type: Transform - pos: -2.5,28.5 + pos: -2.5,8.5 parent: 2 - - uid: 25070 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24648 components: - type: Transform - pos: -2.5,27.5 + rot: 3.141592653589793 rad + pos: -4.5,0.5 parent: 2 - - uid: 25071 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24649 components: - type: Transform - pos: -3.5,27.5 + rot: -1.5707963267948966 rad + pos: 0.5,10.5 parent: 2 - - uid: 25072 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24650 components: - type: Transform - pos: -4.5,27.5 + rot: 1.5707963267948966 rad + pos: -4.5,14.5 parent: 2 - - uid: 25073 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24651 components: - type: Transform - pos: -5.5,27.5 + rot: -1.5707963267948966 rad + pos: 4.5,14.5 parent: 2 - - uid: 25074 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24652 components: - type: Transform - pos: -5.5,26.5 + pos: -6.5,23.5 parent: 2 - - uid: 25075 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24653 components: - type: Transform - pos: -7.5,26.5 + pos: 7.5,23.5 parent: 2 - - uid: 25076 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24654 components: - type: Transform - pos: -8.5,26.5 + rot: -1.5707963267948966 rad + pos: 11.5,14.5 parent: 2 - - uid: 25077 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24655 components: - type: Transform - pos: -9.5,26.5 + rot: 1.5707963267948966 rad + pos: 32.5,-48.5 parent: 2 - - uid: 25078 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24656 components: - type: Transform - pos: -9.5,25.5 + rot: 1.5707963267948966 rad + pos: 29.5,-61.5 parent: 2 - - uid: 25079 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24657 components: - type: Transform - pos: -10.5,25.5 + rot: 3.141592653589793 rad + pos: 36.5,-65.5 parent: 2 - - uid: 25080 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24658 components: - type: Transform - pos: -11.5,23.5 + pos: 23.5,-70.5 parent: 2 - - uid: 25081 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24659 components: - type: Transform - pos: -21.5,2.5 + pos: 5.5,-79.5 parent: 2 - - uid: 25082 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24660 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-101.5 + pos: 11.5,-80.5 parent: 2 - - uid: 25083 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-98.5 + rot: 1.5707963267948966 rad + pos: -9.5,-87.5 parent: 2 - - uid: 25084 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24662 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-7.5 + pos: 7.5,-89.5 parent: 2 - - uid: 25085 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24663 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-0.5 - parent: 2 - - uid: 25086 - components: - - type: Transform - pos: -55.5,-22.5 - parent: 2 - - uid: 25087 - components: - - type: Transform - pos: -54.5,-22.5 - parent: 2 - - uid: 25088 - components: - - type: Transform - pos: -53.5,-22.5 - parent: 2 - - uid: 25089 - components: - - type: Transform - pos: -53.5,-26.5 + pos: -4.5,-82.5 parent: 2 - - uid: 25090 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24664 components: - type: Transform - pos: -54.5,-26.5 + pos: 8.5,-75.5 parent: 2 - - uid: 25091 + - type: DeviceNetwork + deviceLists: + - 238 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24665 components: - type: Transform - pos: -28.5,-49.5 + rot: -1.5707963267948966 rad + pos: -24.5,-77.5 parent: 2 - - uid: 25092 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24666 components: - type: Transform - pos: -25.5,-64.5 + rot: 3.141592653589793 rad + pos: -25.5,-82.5 parent: 2 - - uid: 25093 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24667 components: - type: Transform - pos: -25.5,-63.5 + rot: -1.5707963267948966 rad + pos: -31.5,-87.5 parent: 2 - - uid: 25094 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24668 components: - type: Transform - pos: -25.5,-54.5 + rot: 1.5707963267948966 rad + pos: -33.5,-93.5 parent: 2 - - uid: 25095 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24669 components: - type: Transform - pos: -25.5,-35.5 + rot: 1.5707963267948966 rad + pos: -30.5,-74.5 parent: 2 - - uid: 25096 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24670 components: - type: Transform - pos: -24.5,-64.5 + rot: -1.5707963267948966 rad + pos: -28.5,-61.5 parent: 2 - - uid: 25097 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24671 components: - type: Transform - pos: -24.5,-65.5 + pos: -31.5,-41.5 parent: 2 - - uid: 25098 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24672 components: - type: Transform - pos: -25.5,-59.5 + rot: 1.5707963267948966 rad + pos: -28.5,-19.5 parent: 2 - - uid: 25099 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24673 components: - type: Transform - pos: -25.5,-56.5 + pos: -18.5,-0.5 parent: 2 - - uid: 25100 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24674 components: - type: Transform - pos: -25.5,-61.5 + rot: 1.5707963267948966 rad + pos: -31.5,-49.5 parent: 2 - - uid: 25101 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24675 components: - type: Transform - pos: -25.5,-55.5 + rot: -1.5707963267948966 rad + pos: -27.5,10.5 parent: 2 - - uid: 25102 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24676 components: - type: Transform - pos: -36.5,-35.5 + rot: 1.5707963267948966 rad + pos: -30.5,6.5 parent: 2 - - uid: 25103 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24677 components: - type: Transform - pos: -53.5,-4.5 + pos: -37.5,-46.5 parent: 2 - - uid: 25104 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24678 components: - type: Transform - pos: -52.5,-4.5 + rot: 1.5707963267948966 rad + pos: -49.5,-48.5 parent: 2 - - uid: 25105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24679 components: - type: Transform - pos: -48.5,-3.5 + rot: 1.5707963267948966 rad + pos: -40.5,-52.5 parent: 2 - - uid: 25106 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24680 components: - type: Transform - pos: -48.5,-0.5 + rot: -1.5707963267948966 rad + pos: -34.5,-59.5 parent: 2 - - uid: 25107 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24681 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,-40.5 + pos: -43.5,-60.5 parent: 2 - - uid: 25108 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24682 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-40.5 + pos: -36.5,-65.5 parent: 2 - - uid: 25109 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24683 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-5.5 + rot: -1.5707963267948966 rad + pos: -43.5,-75.5 parent: 2 - - uid: 25110 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-44.5 + rot: 1.5707963267948966 rad + pos: -47.5,-81.5 parent: 2 - - uid: 25111 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-44.5 + rot: -1.5707963267948966 rad + pos: -39.5,-72.5 parent: 2 - - uid: 25112 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-44.5 + rot: -1.5707963267948966 rad + pos: -37.5,-67.5 parent: 2 - - uid: 25113 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-40.5 + pos: -52.5,-59.5 parent: 2 - - uid: 25114 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24688 components: - type: Transform - pos: -25.5,-62.5 + rot: 1.5707963267948966 rad + pos: -53.5,-65.5 parent: 2 - - uid: 25115 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24689 components: - type: Transform - pos: -25.5,-51.5 + pos: -64.5,-65.5 parent: 2 - - uid: 25116 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24690 components: - type: Transform - pos: -23.5,-67.5 + rot: 1.5707963267948966 rad + pos: -68.5,-66.5 parent: 2 - - uid: 25117 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24691 components: - type: Transform - pos: -24.5,-66.5 + rot: -1.5707963267948966 rad + pos: -35.5,-38.5 parent: 2 - - uid: 25118 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24692 components: - type: Transform - pos: -28.5,-48.5 + rot: 1.5707963267948966 rad + pos: -41.5,-33.5 parent: 2 - - uid: 25119 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24693 components: - type: Transform - pos: -25.5,-52.5 + rot: 3.141592653589793 rad + pos: -44.5,-28.5 parent: 2 - - uid: 25120 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24694 components: - type: Transform - pos: -26.5,-51.5 + rot: 1.5707963267948966 rad + pos: -52.5,-19.5 parent: 2 - - uid: 25121 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24695 components: - type: Transform - pos: -22.5,-67.5 + rot: 3.141592653589793 rad + pos: -37.5,-31.5 parent: 2 - - uid: 25122 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24696 components: - type: Transform - pos: -7.5,-69.5 + rot: 1.5707963267948966 rad + pos: -41.5,-20.5 parent: 2 - - uid: 25123 + - type: DeviceNetwork + deviceLists: + - 171 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-34.5 + rot: 1.5707963267948966 rad + pos: -42.5,-6.5 parent: 2 - - uid: 25124 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24698 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-34.5 + pos: -35.5,-11.5 parent: 2 - - uid: 25125 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-34.5 + rot: 1.5707963267948966 rad + pos: -45.5,-43.5 parent: 2 - - uid: 25126 + - type: DeviceNetwork + deviceLists: + - 236 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24700 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,-30.5 + pos: -55.5,-43.5 parent: 2 - - uid: 25127 + - type: DeviceNetwork + deviceLists: + - 130 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24701 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,-30.5 + pos: -66.5,-43.5 parent: 2 - - uid: 25128 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24702 components: - type: Transform rot: 3.141592653589793 rad - pos: 76.5,-30.5 + pos: -72.5,-50.5 parent: 2 - - uid: 25129 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24703 components: - type: Transform - pos: 61.5,-63.5 + rot: -1.5707963267948966 rad + pos: -71.5,-38.5 parent: 2 - - uid: 25130 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24704 components: - type: Transform - pos: 39.5,-43.5 + rot: 1.5707963267948966 rad + pos: -68.5,-37.5 parent: 2 - - uid: 25131 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24705 components: - type: Transform - pos: 38.5,-43.5 + rot: 3.141592653589793 rad + pos: -54.5,-1.5 parent: 2 - - uid: 25132 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24706 components: - type: Transform - pos: 37.5,-43.5 + rot: -1.5707963267948966 rad + pos: 15.5,-99.5 parent: 2 - - uid: 25133 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-36.5 + rot: -1.5707963267948966 rad + pos: 9.5,-95.5 parent: 2 - - uid: 25134 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-59.5 + rot: -1.5707963267948966 rad + pos: 16.5,-88.5 parent: 2 - - uid: 25135 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24709 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-93.5 + pos: -7.5,-95.5 parent: 2 - - uid: 25136 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24710 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-46.5 + pos: -11.5,-99.5 parent: 2 - - uid: 25137 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24711 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-104.5 - parent: 2 - - uid: 25138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-94.5 + pos: 50.5,-87.5 parent: 2 - - uid: 25139 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24712 components: - type: Transform - pos: 50.5,-80.5 + rot: -1.5707963267948966 rad + pos: 51.5,-96.5 parent: 2 - - uid: 25140 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24713 components: - type: Transform - pos: 61.5,-71.5 + rot: 3.141592653589793 rad + pos: 43.5,-74.5 parent: 2 - - uid: 25141 + - type: DeviceNetwork + deviceLists: + - 234 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24714 components: - type: Transform - pos: 60.5,-71.5 + rot: 3.141592653589793 rad + pos: 35.5,-12.5 parent: 2 - - uid: 25142 + - type: DeviceNetwork + deviceLists: + - 252 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24715 components: - type: Transform - pos: 59.5,-71.5 + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 parent: 2 - - uid: 25143 + - type: DeviceNetwork + deviceLists: + - 247 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24716 components: - type: Transform - pos: 57.5,-70.5 + rot: 3.141592653589793 rad + pos: -48.5,-69.5 parent: 2 - - uid: 25144 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24717 components: - type: Transform - pos: 56.5,-70.5 + rot: 3.141592653589793 rad + pos: -48.5,-34.5 parent: 2 - - uid: 25145 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24718 components: - type: Transform - pos: 55.5,-70.5 + pos: -46.5,-8.5 parent: 2 - - uid: 25146 + - type: DeviceNetwork + deviceLists: + - 254 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24719 components: - type: Transform - pos: 58.5,-75.5 + rot: -1.5707963267948966 rad + pos: 98.5,-90.5 parent: 2 - - uid: 25147 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24720 components: - type: Transform - pos: 58.5,-76.5 + rot: -1.5707963267948966 rad + pos: 98.5,-86.5 parent: 2 - - uid: 25148 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24721 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-96.5 + pos: 95.5,-78.5 parent: 2 - - uid: 25149 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24722 components: - type: Transform - pos: 48.5,-80.5 + rot: -1.5707963267948966 rad + pos: 101.5,-78.5 parent: 2 - - uid: 25150 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24723 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-99.5 + pos: 96.5,-75.5 parent: 2 - - uid: 25151 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24724 components: - type: Transform - pos: -28.5,-47.5 + pos: 98.5,-70.5 parent: 2 - - uid: 25152 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24725 components: - type: Transform - pos: -28.5,-50.5 + pos: 97.5,-63.5 parent: 2 - - uid: 25153 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24726 components: - type: Transform - pos: 8.5,-69.5 + rot: 1.5707963267948966 rad + pos: 93.5,-71.5 parent: 2 - - uid: 25154 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24727 components: - type: Transform - pos: 11.5,-69.5 + rot: -1.5707963267948966 rad + pos: 103.5,-71.5 parent: 2 - - uid: 25155 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24728 components: - type: Transform - pos: 13.5,-69.5 + rot: 1.5707963267948966 rad + pos: -52.5,-15.5 parent: 2 - - uid: 25156 + - type: DeviceNetwork + deviceLists: + - 253 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24729 components: - type: Transform - pos: 16.5,-69.5 + rot: -1.5707963267948966 rad + pos: -46.5,-33.5 parent: 2 - - uid: 25157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24730 components: - type: Transform - pos: 17.5,-69.5 + rot: 3.141592653589793 rad + pos: 39.5,20.5 parent: 2 - - uid: 25158 + - type: DeviceNetwork + deviceLists: + - 256 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24731 components: - type: Transform - pos: 18.5,-69.5 + rot: 3.141592653589793 rad + pos: 36.5,22.5 parent: 2 - - uid: 25159 + - type: DeviceNetwork + deviceLists: + - 256 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24732 components: - type: Transform - pos: 19.5,-68.5 + rot: 3.141592653589793 rad + pos: -43.5,-86.5 parent: 2 - - uid: 25160 + - type: DeviceNetwork + deviceLists: + - 184 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24733 components: - type: Transform - pos: 19.5,-67.5 + pos: -7.5,4.5 parent: 2 - - uid: 25161 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24734 components: - type: Transform - pos: 20.5,-67.5 + rot: -1.5707963267948966 rad + pos: 44.5,-24.5 parent: 2 - - uid: 25162 + - type: DeviceNetwork + deviceLists: + - 264 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24735 components: - type: Transform - pos: 22.5,-67.5 + rot: 3.141592653589793 rad + pos: 30.5,9.5 parent: 2 - - uid: 25163 + - type: DeviceNetwork + deviceLists: + - 249 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24736 components: - type: Transform - pos: 23.5,-67.5 + pos: 48.5,-14.5 parent: 2 - - uid: 25164 + - type: DeviceNetwork + deviceLists: + - 272 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24737 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-95.5 + pos: 44.5,-19.5 parent: 2 - - uid: 25165 + - type: DeviceNetwork + deviceLists: + - 281 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24738 components: - type: Transform - pos: 24.5,-67.5 + rot: 1.5707963267948966 rad + pos: 57.5,-10.5 parent: 2 - - uid: 25166 + - type: DeviceNetwork + deviceLists: + - 272 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24739 components: - type: Transform - pos: 25.5,-66.5 + rot: 1.5707963267948966 rad + pos: -28.5,-13.5 parent: 2 - - uid: 25167 + - type: DeviceNetwork + deviceLists: + - 168 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24740 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-101.5 + pos: 54.5,-2.5 parent: 2 - - uid: 25168 + - type: DeviceNetwork + deviceLists: + - 285 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-91.5 + rot: -1.5707963267948966 rad + pos: -27.5,-70.5 parent: 2 - - uid: 25169 + - type: DeviceNetwork + deviceLists: + - 197 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-92.5 + pos: 50.5,-3.5 parent: 2 - - uid: 25170 + - type: DeviceNetwork + deviceLists: + - 284 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24743 components: - type: Transform - pos: 16.5,-95.5 + rot: -1.5707963267948966 rad + pos: -38.5,-21.5 parent: 2 - - uid: 25171 + - type: DeviceNetwork + deviceLists: + - 171 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24744 components: - type: Transform - pos: 17.5,-101.5 + rot: -1.5707963267948966 rad + pos: 64.5,-1.5 parent: 2 - - uid: 25172 + - type: DeviceNetwork + deviceLists: + - 287 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-95.5 + rot: 3.141592653589793 rad + pos: 77.5,-12.5 parent: 2 - - uid: 25173 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24746 components: - type: Transform - pos: 16.5,-101.5 + rot: 3.141592653589793 rad + pos: 84.5,-9.5 parent: 2 - - uid: 25174 + - type: DeviceNetwork + deviceLists: + - 275 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24747 components: - type: Transform - pos: 25.5,-65.5 + pos: 79.5,0.5 parent: 2 - - uid: 25175 + - type: DeviceNetwork + deviceLists: + - 262 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24748 components: - type: Transform - pos: 26.5,-64.5 + pos: 83.5,0.5 parent: 2 - - uid: 25176 + - type: DeviceNetwork + deviceLists: + - 274 + - 259 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24749 components: - type: Transform - pos: -3.5,-89.5 + pos: 87.5,0.5 parent: 2 - - uid: 25177 + - type: DeviceNetwork + deviceLists: + - 259 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24750 components: - type: Transform - pos: -3.5,-90.5 + rot: 1.5707963267948966 rad + pos: 74.5,-3.5 parent: 2 - - uid: 25178 + - type: DeviceNetwork + deviceLists: + - 290 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24751 components: - type: Transform - pos: -3.5,-91.5 + pos: 38.5,-24.5 parent: 2 - - uid: 25179 + - type: DeviceNetwork + deviceLists: + - 271 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24752 components: - type: Transform - pos: -0.5,-100.5 + rot: -1.5707963267948966 rad + pos: 69.5,2.5 parent: 2 - - uid: 25180 + - type: DeviceNetwork + deviceLists: + - 276 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24753 components: - type: Transform - pos: -1.5,-100.5 + pos: 75.5,5.5 parent: 2 - - uid: 25181 + - type: DeviceNetwork + deviceLists: + - 276 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24754 components: - type: Transform - pos: -2.5,-100.5 + pos: 79.5,4.5 parent: 2 - - uid: 25182 + - type: DeviceNetwork + deviceLists: + - 276 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24755 components: - type: Transform - pos: -0.5,-92.5 + rot: 3.141592653589793 rad + pos: -0.5,-6.5 parent: 2 - - uid: 25183 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24756 components: - type: Transform - pos: 0.5,-92.5 + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 parent: 2 - - uid: 25184 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24757 components: - type: Transform - pos: 2.5,-78.5 + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 parent: 2 - - uid: 25185 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24758 components: - type: Transform - pos: 2.5,-79.5 + rot: 1.5707963267948966 rad + pos: 26.5,-38.5 parent: 2 - - uid: 25186 + - type: DeviceNetwork + deviceLists: + - 277 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24759 components: - type: Transform - pos: -1.5,-80.5 + pos: 59.5,-55.5 parent: 2 - - uid: 25187 + - type: DeviceNetwork + deviceLists: + - 139 + - 19137 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24760 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-83.5 + pos: -4.5,-39.5 parent: 2 - - uid: 25188 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24761 components: - type: Transform - pos: 11.5,-85.5 + rot: 1.5707963267948966 rad + pos: -4.5,-40.5 parent: 2 - - uid: 25189 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24762 components: - type: Transform - pos: 8.5,-81.5 + rot: -1.5707963267948966 rad + pos: -1.5,-39.5 parent: 2 - - uid: 25190 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24763 components: - type: Transform - pos: 26.5,-63.5 + pos: 1.5,-28.5 parent: 2 - - uid: 25191 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24764 components: - type: Transform - pos: -11.5,-102.5 + pos: -4.5,-23.5 parent: 2 - - uid: 25192 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24765 components: - type: Transform - pos: -8.5,-99.5 + rot: -1.5707963267948966 rad + pos: -10.5,-22.5 parent: 2 - - uid: 25193 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24766 components: - type: Transform - pos: -7.5,-82.5 + rot: 1.5707963267948966 rad + pos: -14.5,-28.5 parent: 2 - - uid: 25194 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24767 components: - type: Transform - pos: -14.5,-102.5 + pos: -3.5,-16.5 parent: 2 - - uid: 25195 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24768 components: - type: Transform - pos: 26.5,-62.5 + pos: -10.5,-16.5 parent: 2 - - uid: 25196 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24769 components: - type: Transform - pos: 26.5,-61.5 + rot: 1.5707963267948966 rad + pos: 10.5,-19.5 parent: 2 - - uid: 25197 + - type: DeviceNetwork + deviceLists: + - 278 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-76.5 + pos: 16.5,-14.5 parent: 2 - - uid: 25198 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24771 components: - type: Transform - pos: 49.5,-80.5 + rot: -1.5707963267948966 rad + pos: 10.5,-48.5 parent: 2 - - uid: 25199 + - uid: 24772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-46.5 + pos: 6.5,-47.5 parent: 2 - - uid: 25200 + - uid: 24773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-46.5 + pos: 11.5,-58.5 parent: 2 - - uid: 25201 + - uid: 24774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-46.5 + pos: -1.5,-56.5 parent: 2 - - uid: 25202 + - uid: 24775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-51.5 + rot: 1.5707963267948966 rad + pos: -8.5,-47.5 parent: 2 - - uid: 25203 + - uid: 24776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-51.5 + rot: 1.5707963267948966 rad + pos: -2.5,-47.5 parent: 2 - - uid: 25204 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-46.5 + pos: 9.5,-31.5 parent: 2 - - uid: 25205 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-46.5 + rot: 1.5707963267948966 rad + pos: 5.5,-15.5 parent: 2 - - uid: 25206 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24779 components: - type: Transform rot: 3.141592653589793 rad - pos: -74.5,-46.5 + pos: -10.5,-40.5 parent: 2 - - uid: 25207 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24780 components: - type: Transform rot: 3.141592653589793 rad - pos: -72.5,-46.5 + pos: -18.5,-34.5 parent: 2 - - uid: 25208 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-35.5 + rot: 3.141592653589793 rad + pos: -12.5,-53.5 parent: 2 - - uid: 25209 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24782 components: - type: Transform - pos: -41.5,-68.5 + rot: -1.5707963267948966 rad + pos: -14.5,-38.5 parent: 2 - - uid: 25210 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24783 components: - type: Transform - pos: -41.5,-67.5 + pos: 2.5,-20.5 parent: 2 - - uid: 25211 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24784 components: - type: Transform - pos: -47.5,-65.5 + rot: 1.5707963267948966 rad + pos: 56.5,6.5 parent: 2 - - uid: 25212 + - type: DeviceNetwork + deviceLists: + - 286 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24785 components: - type: Transform - pos: -45.5,-65.5 + rot: 1.5707963267948966 rad + pos: 53.5,5.5 parent: 2 - - uid: 25213 + - type: DeviceNetwork + deviceLists: + - 286 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-67.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - - uid: 25214 + - type: DeviceNetwork + deviceLists: + - 270 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24787 components: - type: Transform - pos: -52.5,-63.5 + rot: 3.141592653589793 rad + pos: 62.5,-8.5 parent: 2 - - uid: 25215 + - type: DeviceNetwork + deviceLists: + - 288 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24788 components: - type: Transform - pos: -53.5,-63.5 + rot: 3.141592653589793 rad + pos: 68.5,-8.5 parent: 2 - - uid: 25216 + - type: DeviceNetwork + deviceLists: + - 289 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-46.5 + rot: -1.5707963267948966 rad + pos: 69.5,-1.5 parent: 2 - - uid: 25217 + - type: DeviceNetwork + deviceLists: + - 289 + - 290 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-45.5 + pos: 117.5,-39.5 parent: 2 - - uid: 25218 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24791 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-45.5 + pos: 101.5,-42.5 parent: 2 - - uid: 25219 + - type: DeviceNetwork + deviceLists: + - 148 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-45.5 + pos: 87.5,-40.5 parent: 2 - - uid: 25220 + - type: DeviceNetwork + deviceLists: + - 148 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24793 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-41.5 + pos: 111.5,-41.5 parent: 2 - - uid: 25221 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-41.5 + pos: 128.5,-39.5 parent: 2 - - uid: 25222 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-41.5 + pos: 7.5,4.5 parent: 2 - - uid: 25223 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24796 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-74.5 + pos: 18.5,-43.5 parent: 2 - - uid: 25224 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24797 components: - type: Transform - pos: -47.5,-45.5 + pos: 9.5,-36.5 parent: 2 - - uid: 25225 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24798 components: - type: Transform - pos: -46.5,-45.5 + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 parent: 2 - - uid: 25226 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24799 components: - type: Transform - pos: -45.5,-46.5 + rot: -1.5707963267948966 rad + pos: 17.5,-30.5 parent: 2 - - uid: 25227 + - type: DeviceNetwork + deviceLists: + - 278 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24800 components: - type: Transform - pos: -45.5,-47.5 + rot: 1.5707963267948966 rad + pos: 10.5,-15.5 parent: 2 - - uid: 25228 + - type: DeviceNetwork + deviceLists: + - 278 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24801 components: - type: Transform - pos: -45.5,-48.5 + rot: 1.5707963267948966 rad + pos: 10.5,-23.5 parent: 2 - - uid: 25229 + - type: DeviceNetwork + deviceLists: + - 278 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24802 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-40.5 + pos: 11.5,-28.5 parent: 2 - - uid: 25230 + - type: DeviceNetwork + deviceLists: + - 278 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-40.5 + rot: -1.5707963267948966 rad + pos: 17.5,-24.5 parent: 2 - - uid: 25231 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24804 components: - type: Transform - pos: -54.5,-56.5 + rot: 1.5707963267948966 rad + pos: -20.5,-49.5 parent: 2 - - uid: 25232 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24805 components: - type: Transform - pos: -54.5,-58.5 + rot: -1.5707963267948966 rad + pos: -2.5,-34.5 parent: 2 - - uid: 25233 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24806 components: - type: Transform - pos: -56.5,-58.5 + rot: 1.5707963267948966 rad + pos: -16.5,-23.5 parent: 2 - - uid: 25234 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24807 components: - type: Transform - pos: -56.5,-56.5 + pos: 30.5,6.5 parent: 2 - - uid: 25235 + - type: DeviceNetwork + deviceLists: + - 247 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24808 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,-64.5 + pos: 37.5,6.5 parent: 2 - - uid: 25236 + - type: DeviceNetwork + deviceLists: + - 247 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24811 components: - type: Transform - pos: -41.5,-31.5 + pos: 23.5,8.5 parent: 2 - - uid: 25237 + - type: DeviceNetwork + deviceLists: + - 251 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-77.5 + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 parent: 2 - - uid: 25238 + - type: DeviceNetwork + deviceLists: + - 247 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24813 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-88.5 + rot: -1.5707963267948966 rad + pos: 37.5,10.5 parent: 2 - - uid: 25239 + - type: DeviceNetwork + deviceLists: + - 248 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24814 components: - type: Transform - pos: 88.5,4.5 + pos: 28.5,14.5 parent: 2 - - uid: 25240 + - type: DeviceNetwork + deviceLists: + - 249 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24815 components: - type: Transform - pos: 26.5,-59.5 + pos: 26.5,7.5 parent: 2 - - uid: 25241 + - type: DeviceNetwork + deviceLists: + - 249 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24816 components: - type: Transform - pos: 26.5,-57.5 + rot: -1.5707963267948966 rad + pos: 44.5,-11.5 parent: 2 - - uid: 25242 + - type: DeviceNetwork + deviceLists: + - 150 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-73.5 + pos: 44.5,7.5 parent: 2 - - uid: 25243 + - type: DeviceNetwork + deviceLists: + - 283 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24818 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-73.5 + pos: 14.5,14.5 parent: 2 - - uid: 25244 + - type: DeviceNetwork + deviceLists: + - 165 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24819 components: - type: Transform - pos: 26.5,-56.5 + pos: 18.5,20.5 parent: 2 - - uid: 25245 + - type: DeviceNetwork + deviceLists: + - 298 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24820 components: - type: Transform - pos: 26.5,-55.5 + rot: 3.141592653589793 rad + pos: 0.5,21.5 parent: 2 - - uid: 25246 + - type: DeviceNetwork + deviceLists: + - 164 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24821 components: - type: Transform - pos: 26.5,-21.5 + pos: -1.5,24.5 parent: 2 - - uid: 25247 + - type: DeviceNetwork + deviceLists: + - 164 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24822 components: - type: Transform - pos: 26.5,-23.5 + rot: 3.141592653589793 rad + pos: -13.5,18.5 parent: 2 - - uid: 25248 + - type: DeviceNetwork + deviceLists: + - 164 + - 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24823 components: - type: Transform - pos: 26.5,-22.5 + rot: 3.141592653589793 rad + pos: -8.5,18.5 parent: 2 - - uid: 25249 + - type: DeviceNetwork + deviceLists: + - 164 + - 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24824 components: - type: Transform - pos: 26.5,-24.5 + pos: -48.5,-19.5 parent: 2 - - uid: 25250 + - type: DeviceNetwork + deviceLists: + - 173 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24825 components: - type: Transform - pos: 26.5,-19.5 + rot: -1.5707963267948966 rad + pos: -45.5,-25.5 parent: 2 - - uid: 25251 + - type: DeviceNetwork + deviceLists: + - 173 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24826 components: - type: Transform - pos: 23.5,-8.5 + rot: 3.141592653589793 rad + pos: -37.5,-43.5 parent: 2 - - uid: 25252 + - type: DeviceNetwork + deviceLists: + - 236 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24827 components: - type: Transform - pos: 26.5,-16.5 + rot: 1.5707963267948966 rad + pos: -66.5,-49.5 parent: 2 - - uid: 25253 + - type: DeviceNetwork + deviceLists: + - 299 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24828 components: - type: Transform - pos: 26.5,-17.5 + rot: 3.141592653589793 rad + pos: -61.5,-50.5 parent: 2 - - uid: 25254 + - type: DeviceNetwork + deviceLists: + - 299 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24829 components: - type: Transform - pos: 26.5,-14.5 + rot: 3.141592653589793 rad + pos: -50.5,-39.5 parent: 2 - - uid: 25255 + - type: DeviceNetwork + deviceLists: + - 175 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24830 components: - type: Transform - pos: 26.5,-15.5 + rot: 1.5707963267948966 rad + pos: -47.5,-40.5 parent: 2 - - uid: 25256 + - type: DeviceNetwork + deviceLists: + - 175 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24831 components: - type: Transform - pos: 26.5,-13.5 + rot: -1.5707963267948966 rad + pos: -71.5,-43.5 parent: 2 - - uid: 25257 + - type: DeviceNetwork + deviceLists: + - 215 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24832 components: - type: Transform - pos: 17.5,-95.5 + rot: -1.5707963267948966 rad + pos: -27.5,-54.5 parent: 2 - - uid: 25258 + - type: DeviceNetwork + deviceLists: + - 195 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24833 components: - type: Transform - pos: 25.5,-12.5 + pos: -15.5,-72.5 parent: 2 - - uid: 25259 + - type: DeviceNetwork + deviceLists: + - 197 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24834 components: - type: Transform - pos: 25.5,-10.5 + rot: 1.5707963267948966 rad + pos: -28.5,-25.5 parent: 2 - - uid: 25260 + - type: DeviceNetwork + deviceLists: + - 168 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24835 components: - type: Transform - pos: 25.5,-11.5 + pos: -12.5,0.5 parent: 2 - - uid: 25261 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24836 components: - type: Transform - pos: 23.5,-8.5 + rot: 1.5707963267948966 rad + pos: -25.5,-5.5 parent: 2 - - uid: 25262 + - type: DeviceNetwork + deviceLists: + - 166 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24837 components: - type: Transform - pos: 23.5,-7.5 + pos: 13.5,0.5 parent: 2 - - uid: 25263 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24838 components: - type: Transform - pos: 22.5,-7.5 + pos: -16.5,5.5 parent: 2 - - uid: 25264 + - type: DeviceNetwork + deviceLists: + - 300 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24839 components: - type: Transform - pos: 22.5,-6.5 + rot: -1.5707963267948966 rad + pos: -14.5,9.5 parent: 2 - - uid: 25265 + - type: DeviceNetwork + deviceLists: + - 300 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24840 components: - type: Transform - pos: 21.5,-6.5 + pos: -20.5,7.5 parent: 2 - - uid: 25266 + - type: DeviceNetwork + deviceLists: + - 301 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26538 components: - type: Transform - pos: 21.5,-5.5 + rot: 1.5707963267948966 rad + pos: 34.5,10.5 parent: 2 - - uid: 25267 + - type: DeviceNetwork + deviceLists: + - 248 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26540 components: - type: Transform - pos: 20.5,-5.5 + pos: 36.5,15.5 parent: 2 - - uid: 25268 + - type: DeviceNetwork + deviceLists: + - 248 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 31144 components: - type: Transform - pos: 20.5,-4.5 + pos: 30.5,18.5 parent: 2 - - uid: 25269 + - type: DeviceNetwork + deviceLists: + - 42374 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 40743 components: - type: Transform - pos: 24.5,-8.5 - parent: 2 - - uid: 25270 + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 40666 + - type: DeviceNetwork + deviceLists: + - 40667 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 40744 components: - type: Transform - pos: 18.5,-4.5 - parent: 2 - - uid: 25271 + pos: 0.5,4.5 + parent: 40666 + - type: DeviceNetwork + deviceLists: + - 40667 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41244 components: - type: Transform - pos: 18.5,-3.5 - parent: 2 - - uid: 25272 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40832 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41245 components: - type: Transform - pos: 17.5,-3.5 - parent: 2 - - uid: 25273 + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40833 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41246 components: - type: Transform - pos: 16.5,-3.5 - parent: 2 - - uid: 25274 + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40831 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41247 components: - type: Transform - pos: 15.5,-2.5 - parent: 2 - - uid: 25275 + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40830 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41248 components: - type: Transform - pos: 14.5,-2.5 - parent: 2 - - uid: 25276 + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40829 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41820 components: - type: Transform - pos: 13.5,-2.5 - parent: 2 - - uid: 25277 + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41821 components: - type: Transform - pos: -16.5,-10.5 - parent: 2 - - uid: 25278 + pos: 5.5,1.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41822 components: - type: Transform - pos: -11.5,-2.5 - parent: 2 - - uid: 25279 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41823 components: - type: Transform - pos: -12.5,-2.5 - parent: 2 - - uid: 25280 + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42053 components: - type: Transform - pos: -13.5,-2.5 + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 parent: 2 - - uid: 25281 + - type: DeviceNetwork + deviceLists: + - 156 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasVolumePump + entities: + - uid: 24841 components: - type: Transform - pos: -14.5,-2.5 + rot: -1.5707963267948966 rad + pos: 55.5,-89.5 parent: 2 - - uid: 25282 + - type: AtmosPipeColor + color: '#FEF101FF' + - uid: 24842 components: - type: Transform - pos: -19.5,-4.5 + rot: 3.141592653589793 rad + pos: 57.5,-90.5 parent: 2 - - uid: 25283 + - type: AtmosPipeColor + color: '#FEF101FF' + - uid: 24843 components: - type: Transform - pos: -16.5,-3.5 + pos: 98.5,-84.5 parent: 2 - - uid: 25284 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24844 components: - type: Transform - pos: -16.5,-3.5 + pos: 100.5,-83.5 parent: 2 - - uid: 25285 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: Gateway + entities: + - uid: 24845 components: - type: Transform - pos: -17.5,-3.5 + pos: 22.5,-22.5 parent: 2 - - uid: 25286 + - type: Gateway + enabled: True +- proto: Gauze + entities: + - uid: 2523 components: - type: Transform - pos: -17.5,-4.5 - parent: 2 - - uid: 25287 + parent: 2520 + - type: Physics + canCollide: False + - uid: 2530 components: - type: Transform - pos: -19.5,-5.5 - parent: 2 - - uid: 25288 + parent: 2527 + - type: Physics + canCollide: False + - uid: 2537 components: - type: Transform - pos: -20.5,-5.5 - parent: 2 - - uid: 25289 + parent: 2534 + - type: Physics + canCollide: False + - uid: 18699 components: - type: Transform - pos: -20.5,-6.5 - parent: 2 - - uid: 25290 + parent: 18698 + - type: Physics + canCollide: False + - uid: 24846 components: - type: Transform - pos: -21.5,-6.5 + pos: 16.452196,-19.400105 parent: 2 - - uid: 25291 +- proto: GeigerCounter + entities: + - uid: 24847 components: - type: Transform - pos: -21.5,-7.5 + pos: 78.38674,-49.55499 parent: 2 - - uid: 25292 +- proto: GeneratorBasic + entities: + - uid: 24848 components: - type: Transform - pos: -22.5,-7.5 + pos: 98.5,-61.5 parent: 2 - - uid: 25293 +- proto: GeneratorRTG + entities: + - uid: 24849 components: - type: Transform - pos: -22.5,-8.5 + pos: 99.5,-61.5 parent: 2 - - uid: 25294 + - uid: 24850 components: - type: Transform - pos: -23.5,-8.5 + pos: 97.5,-61.5 parent: 2 - - uid: 25295 + - uid: 24851 components: - type: Transform - pos: -24.5,-12.5 + pos: -48.5,-74.5 parent: 2 - - uid: 25296 + - uid: 24852 components: - type: Transform - pos: -24.5,-11.5 + pos: -6.5,-46.5 parent: 2 - - uid: 25297 +- proto: GeneratorRTGDamaged + entities: + - uid: 24853 components: - type: Transform - pos: -24.5,-10.5 + pos: -7.5,-46.5 parent: 2 - - uid: 25298 + - uid: 24854 components: - type: Transform - pos: -23.5,-10.5 + pos: -8.5,-46.5 parent: 2 - - uid: 25299 +- proto: GeneratorWallmountAPU + entities: + - uid: 40745 components: - type: Transform - pos: -25.5,-32.5 - parent: 2 - - uid: 25300 + pos: -2.5,-0.5 + parent: 40666 + - type: PowerSupplier + supplyRampRate: 1000 + supplyRampTolerance: 1000 + supplyRate: 12000 + - uid: 41249 components: - type: Transform - pos: -25.5,-13.5 - parent: 2 - - uid: 25301 + pos: 2.5,-11.5 + parent: 40828 + - uid: 41250 components: - type: Transform - pos: -25.5,-14.5 - parent: 2 - - uid: 25302 + pos: 2.5,-12.5 + parent: 40828 + - uid: 41251 components: - type: Transform - pos: -25.5,-15.5 - parent: 2 - - uid: 25303 + pos: -1.5,-11.5 + parent: 40828 + - uid: 41824 components: - type: Transform - pos: -25.5,-16.5 - parent: 2 - - uid: 25304 + pos: 7.5,-7.5 + parent: 41669 + - uid: 41825 components: - type: Transform - pos: -10.5,24.5 + pos: 1.5,-7.5 + parent: 41669 + - uid: 41826 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 41669 +- proto: GenericTank + entities: + - uid: 59 + components: + - type: MetaData + name: резервуар космического очистителя + - type: Transform + pos: -0.49263692,-53.470585 parent: 2 - - uid: 25305 + - type: SolutionContainerManager + solutions: null + containers: + - tank + - type: Pullable + prevFixedRotation: True + - type: ContainerContainer + containers: + solution@tank: !type:ContainerSlot + ent: 60 + - uid: 24855 components: - type: Transform - pos: -25.5,-17.5 + pos: 17.5,-83.5 parent: 2 - - uid: 25306 + - uid: 24856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-95.5 + pos: -11.5,-96.5 parent: 2 - - uid: 25307 + - uid: 24857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-102.5 + pos: -42.5,-107.5 parent: 2 - - uid: 25308 + - uid: 24858 components: - type: Transform - pos: -25.5,-34.5 + pos: -8.5,-48.5 parent: 2 - - uid: 25309 +- proto: Girder + entities: + - uid: 19614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-102.5 + rot: 1.5707963267948966 rad + pos: 46.5,21.5 parent: 2 - - uid: 25310 + - uid: 24859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-92.5 + pos: -59.5,-16.5 parent: 2 - - uid: 25311 + - uid: 24860 components: - type: Transform - pos: -25.5,-31.5 + pos: -12.5,-26.5 parent: 2 - - uid: 25312 + - uid: 24861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-101.5 + pos: -67.5,6.5 parent: 2 - - uid: 25313 + - uid: 24862 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-89.5 + pos: 99.5,-46.5 parent: 2 - - uid: 25314 + - uid: 24863 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-98.5 + pos: -51.5,-91.5 parent: 2 - - uid: 25315 + - uid: 24864 components: - type: Transform - pos: -6.5,26.5 + rot: 1.5707963267948966 rad + pos: -57.5,-51.5 parent: 2 - - uid: 25316 + - uid: 24865 components: - type: Transform - pos: -25.5,-28.5 + rot: 3.141592653589793 rad + pos: 60.5,-45.5 parent: 2 - - uid: 25317 + - uid: 24866 components: - type: Transform - pos: -25.5,-29.5 + rot: 3.141592653589793 rad + pos: 31.5,-77.5 parent: 2 - - uid: 25318 + - uid: 24868 components: - type: Transform - pos: -25.5,-30.5 + rot: -1.5707963267948966 rad + pos: -59.5,-61.5 parent: 2 - - uid: 25319 + - uid: 24869 components: - type: Transform - pos: -38.5,-60.5 + rot: -1.5707963267948966 rad + pos: -52.5,-81.5 parent: 2 - - uid: 25320 + - uid: 24870 components: - type: Transform - pos: -39.5,-60.5 + pos: -43.5,-95.5 parent: 2 - - uid: 25321 + - uid: 24871 components: - type: Transform - pos: -40.5,-60.5 + rot: 3.141592653589793 rad + pos: -60.5,-34.5 parent: 2 - - uid: 25322 + - uid: 24872 components: - type: Transform - pos: -41.5,-65.5 + rot: 3.141592653589793 rad + pos: -68.5,-32.5 parent: 2 - - uid: 25323 + - uid: 24873 components: - type: Transform - pos: -39.5,-56.5 + rot: 3.141592653589793 rad + pos: -69.5,-25.5 parent: 2 - - uid: 25324 + - uid: 24874 components: - type: Transform - pos: -41.5,-54.5 + rot: 3.141592653589793 rad + pos: -52.5,7.5 parent: 2 - - uid: 25325 + - uid: 24875 components: - type: Transform - pos: -41.5,-53.5 + rot: 3.141592653589793 rad + pos: -40.5,9.5 parent: 2 - - uid: 25326 + - uid: 24876 components: - type: Transform - pos: -41.5,-52.5 + rot: 3.141592653589793 rad + pos: -48.5,14.5 parent: 2 - - uid: 25327 + - uid: 24877 components: - type: Transform - pos: -39.5,-21.5 + rot: 3.141592653589793 rad + pos: -33.5,15.5 parent: 2 - - uid: 25328 + - uid: 24878 components: - type: Transform - pos: 93.5,-37.5 + pos: -65.5,-15.5 parent: 2 - - uid: 25329 + - uid: 24879 components: - type: Transform - pos: 94.5,-37.5 + pos: -22.5,16.5 parent: 2 - - uid: 25330 + - uid: 24880 components: - type: Transform - pos: 95.5,-37.5 + pos: -18.5,14.5 parent: 2 - - uid: 25331 + - uid: 24881 components: - type: Transform - pos: 96.5,-37.5 + rot: 1.5707963267948966 rad + pos: -34.5,-118.5 parent: 2 - - uid: 25332 + - uid: 24882 components: - type: Transform - pos: 84.5,-35.5 + rot: -1.5707963267948966 rad + pos: -38.5,-122.5 parent: 2 - - uid: 25333 + - uid: 24883 components: - type: Transform - pos: -25.5,-26.5 + pos: -42.5,-120.5 parent: 2 - - uid: 25334 + - uid: 24884 components: - type: Transform - pos: 93.5,-25.5 + pos: -57.5,-76.5 parent: 2 - - uid: 25335 + - uid: 24885 components: - type: Transform - pos: 94.5,-25.5 + pos: 108.5,-46.5 parent: 2 - - uid: 25336 + - uid: 24886 components: - type: Transform - pos: 95.5,-25.5 + pos: 92.5,-46.5 parent: 2 - - uid: 25337 + - uid: 24887 components: - type: Transform - pos: 96.5,-25.5 + pos: 75.5,-45.5 parent: 2 - - uid: 25338 + - uid: 24888 components: - type: Transform - pos: 96.5,-19.5 + pos: -45.5,-106.5 parent: 2 - - uid: 25339 + - uid: 24889 components: - type: Transform - pos: 95.5,-19.5 + pos: -39.5,-107.5 parent: 2 - - uid: 25340 + - uid: 24890 components: - type: Transform - pos: 94.5,-19.5 + pos: -28.5,-109.5 parent: 2 - - uid: 25341 + - uid: 24891 components: - type: Transform - pos: 93.5,-19.5 + pos: -49.5,-119.5 parent: 2 - - uid: 25342 + - uid: 24892 components: - type: Transform - pos: 84.5,-34.5 + rot: 3.141592653589793 rad + pos: -70.5,-21.5 parent: 2 - - uid: 25343 + - uid: 24893 components: - type: Transform - pos: 84.5,-33.5 + rot: 3.141592653589793 rad + pos: -78.5,-21.5 parent: 2 - - uid: 25344 + - uid: 24894 components: - type: Transform - pos: 84.5,-32.5 + rot: 1.5707963267948966 rad + pos: 36.5,28.5 parent: 2 - - uid: 25345 + - uid: 24895 components: - type: Transform - pos: 84.5,-30.5 + rot: 3.141592653589793 rad + pos: -55.5,-4.5 parent: 2 - - uid: 25346 + - uid: 24896 components: - type: Transform - pos: 84.5,-29.5 + pos: -47.5,1.5 parent: 2 - - uid: 25347 + - uid: 38989 components: - type: Transform - pos: 84.5,-28.5 + pos: 26.5,25.5 parent: 2 - - uid: 25348 + - uid: 42303 components: - type: Transform - pos: 84.5,-27.5 + rot: 1.5707963267948966 rad + pos: -14.5,-49.5 parent: 2 - - uid: 25349 +- proto: GlassBoxBroken + entities: + - uid: 24897 components: - type: Transform - pos: 87.5,-37.5 + pos: 14.5,-23.5 parent: 2 - - uid: 25350 +- proto: GlowstickBase + entities: + - uid: 24898 components: - type: Transform - pos: 88.5,-37.5 + pos: -46.635826,-97.712006 parent: 2 - - uid: 25351 + - uid: 24899 components: - type: Transform - pos: -25.5,-22.5 + rot: 3.141592653589793 rad + pos: -51.455772,-103.54919 parent: 2 - - uid: 25352 + - uid: 24900 components: - type: Transform - pos: 100.5,-37.5 + pos: -76.321335,-9.98569 parent: 2 - - uid: 25353 + - uid: 24901 components: - type: Transform - pos: 101.5,-37.5 + pos: -74.14946,-7.76694 parent: 2 - - uid: 25354 +- proto: GlowstickBlue + entities: + - uid: 24902 components: - type: Transform - pos: 102.5,-37.5 + pos: -47.2452,-100.72763 parent: 2 - - uid: 25355 +- proto: GlowstickPurple + entities: + - uid: 24903 components: - type: Transform - pos: 88.5,-25.5 + pos: -45.542076,-103.274506 parent: 2 - - uid: 25356 +- proto: GlowstickRed + entities: + - uid: 24904 components: - type: Transform - pos: 87.5,-25.5 + pos: -49.667076,-97.555756 parent: 2 - - uid: 25357 +- proto: Gohei + entities: + - uid: 24905 components: + - type: MetaData + desc: плётка используемая что бы подгонять мапперов. + name: окровавленная плётка - type: Transform - pos: 86.5,-25.5 + pos: 104.2224,-47.525528 parent: 2 - - uid: 25358 +- proto: GoldRingDiamond + entities: + - uid: 24906 components: - type: Transform - pos: 86.5,-19.5 + pos: -6.2808795,-8.315094 parent: 2 - - uid: 25359 +- proto: GoldRingGem + entities: + - uid: 24907 components: - type: Transform - pos: 87.5,-19.5 + pos: -6.3746295,-8.471344 parent: 2 - - uid: 25360 +- proto: GravityGenerator + entities: + - uid: 24908 components: - type: Transform - pos: 88.5,-19.5 + pos: 27.5,-42.5 parent: 2 - - uid: 25361 +- proto: GravityGeneratorMini + entities: + - uid: 40746 components: - type: Transform - pos: 100.5,-25.5 - parent: 2 - - uid: 25362 + pos: -0.5,-0.5 + parent: 40666 + - uid: 41252 components: - type: Transform - pos: 101.5,-25.5 - parent: 2 - - uid: 25363 + pos: 1.5,-12.5 + parent: 40828 + - uid: 41827 components: - type: Transform - pos: 102.5,-25.5 - parent: 2 - - uid: 25364 + pos: 1.5,-9.5 + parent: 41669 +- proto: GrenadeBaton + entities: + - uid: 24909 components: - type: Transform - pos: 102.5,-19.5 + pos: 12.37467,-16.41426 parent: 2 - - uid: 25365 + - uid: 24910 components: - type: Transform - pos: 101.5,-19.5 + pos: 12.640295,-16.304886 parent: 2 - - uid: 25366 +- proto: GrenadeFoamDart + entities: + - uid: 24911 components: - type: Transform - pos: 100.5,-19.5 + pos: 8.747442,-16.62456 parent: 2 - - uid: 25367 +- proto: GrenadeFrag + entities: + - uid: 24912 components: - type: Transform - pos: -25.5,-19.5 + pos: 8.300089,-15.383011 parent: 2 - - uid: 25368 + - uid: 24913 components: - type: Transform - pos: 30.5,-48.5 + pos: 8.503214,-15.289261 parent: 2 - - uid: 25369 +- proto: GrenadeIncendiary + entities: + - uid: 16302 components: - type: Transform - pos: 30.5,-49.5 - parent: 2 - - uid: 25370 + parent: 16300 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40867 components: - type: Transform - pos: 30.5,-50.5 - parent: 2 - - uid: 25371 + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40868 components: - type: Transform - pos: 24.5,-68.5 - parent: 2 - - uid: 25372 + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40869 components: - type: Transform - pos: 27.5,-54.5 - parent: 2 - - uid: 25373 + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeShrapnel + entities: + - uid: 16303 components: - type: Transform - pos: 27.5,-55.5 - parent: 2 - - uid: 25374 + parent: 16300 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40870 components: - type: Transform - pos: 27.5,-56.5 - parent: 2 - - uid: 25375 + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40871 components: - type: Transform - pos: 27.5,-57.5 - parent: 2 - - uid: 25376 + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40872 components: - type: Transform - pos: 27.5,-61.5 - parent: 2 - - uid: 25377 + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeStinger + entities: + - uid: 16304 components: - type: Transform - pos: 27.5,-62.5 - parent: 2 - - uid: 25378 + parent: 16300 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40873 components: - type: Transform - pos: 27.5,-63.5 - parent: 2 - - uid: 25379 + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40874 components: - type: Transform - pos: 27.5,-64.5 - parent: 2 - - uid: 25380 + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40875 components: - type: Transform - pos: 23.5,-68.5 - parent: 2 - - uid: 25381 + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40876 components: - type: Transform - pos: 22.5,-68.5 + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40877 + components: + - type: Transform + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Grille + entities: + - uid: 24914 + components: + - type: Transform + pos: 51.5,-6.5 parent: 2 - - uid: 25382 + - uid: 24915 components: - type: Transform - pos: 18.5,-70.5 + rot: 1.5707963267948966 rad + pos: 58.5,9.5 parent: 2 - - uid: 25383 + - uid: 24916 components: - type: Transform - pos: 17.5,-70.5 + pos: 45.5,-3.5 parent: 2 - - uid: 25384 + - uid: 24917 components: - type: Transform - pos: 16.5,-70.5 + pos: 41.5,4.5 parent: 2 - - uid: 25385 + - uid: 24918 components: - type: Transform - pos: 13.5,-70.5 + pos: 45.5,7.5 parent: 2 - - uid: 25386 + - uid: 24919 components: - type: Transform - pos: 12.5,-70.5 + pos: 45.5,3.5 parent: 2 - - uid: 25387 + - uid: 24920 components: - type: Transform - pos: 11.5,-70.5 + pos: 56.5,2.5 parent: 2 - - uid: 25388 + - uid: 24921 components: - type: Transform - pos: -10.5,-70.5 + pos: 58.5,-6.5 parent: 2 - - uid: 25389 + - uid: 24922 components: - type: Transform - pos: -11.5,-70.5 + pos: 56.5,-6.5 parent: 2 - - uid: 25390 + - uid: 24923 components: - type: Transform - pos: -12.5,-70.5 + rot: -1.5707963267948966 rad + pos: 46.5,-19.5 parent: 2 - - uid: 25391 + - uid: 24924 components: - type: Transform - pos: -15.5,-70.5 + rot: -1.5707963267948966 rad + pos: 48.5,-16.5 parent: 2 - - uid: 25392 + - uid: 24925 components: - type: Transform - pos: -16.5,-70.5 + pos: 41.5,1.5 parent: 2 - - uid: 25393 + - uid: 24926 components: - type: Transform - pos: -17.5,-70.5 + pos: 45.5,0.5 parent: 2 - - uid: 25394 + - uid: 24927 components: - type: Transform - pos: -21.5,-68.5 + rot: -1.5707963267948966 rad + pos: 46.5,-18.5 parent: 2 - - uid: 25395 + - uid: 24928 components: - type: Transform - pos: -22.5,-68.5 + rot: -1.5707963267948966 rad + pos: 54.5,21.5 parent: 2 - - uid: 25396 + - uid: 24929 components: - type: Transform - pos: -23.5,-68.5 + rot: -1.5707963267948966 rad + pos: 46.5,-24.5 parent: 2 - - uid: 25397 + - uid: 24930 components: - type: Transform - pos: -26.5,-64.5 + rot: -1.5707963267948966 rad + pos: 46.5,-22.5 parent: 2 - - uid: 25398 + - uid: 24931 components: - type: Transform - pos: -26.5,-63.5 + rot: -1.5707963267948966 rad + pos: 58.5,16.5 parent: 2 - - uid: 25399 + - uid: 24932 components: - type: Transform - pos: -26.5,-62.5 + pos: 42.5,-26.5 parent: 2 - - uid: 25400 + - uid: 24933 components: - type: Transform - pos: -26.5,-61.5 + rot: -1.5707963267948966 rad + pos: 50.5,-16.5 parent: 2 - - uid: 25401 + - uid: 24934 components: - type: Transform - pos: -26.5,-57.5 + pos: 11.5,-112.5 parent: 2 - - uid: 25402 + - uid: 24935 components: - type: Transform - pos: -26.5,-56.5 + pos: -15.5,-10.5 parent: 2 - - uid: 25403 + - uid: 24936 components: - type: Transform - pos: -26.5,-55.5 + rot: -1.5707963267948966 rad + pos: 46.5,-17.5 parent: 2 - - uid: 25404 + - uid: 24937 components: - type: Transform - pos: -26.5,-54.5 + rot: -1.5707963267948966 rad + pos: 46.5,-8.5 parent: 2 - - uid: 25405 + - uid: 24938 components: - type: Transform - pos: -29.5,-50.5 + rot: -1.5707963267948966 rad + pos: 46.5,-10.5 parent: 2 - - uid: 25406 + - uid: 24939 components: - type: Transform - pos: -29.5,-49.5 + rot: -1.5707963267948966 rad + pos: 57.5,16.5 parent: 2 - - uid: 25407 + - uid: 24940 components: - type: Transform - pos: -29.5,-48.5 + pos: 74.5,-8.5 parent: 2 - - uid: 25408 + - uid: 24941 components: - type: Transform - pos: -29.5,-47.5 + rot: 3.141592653589793 rad + pos: 26.5,37.5 parent: 2 - - uid: 25409 + - uid: 24942 components: - type: Transform - pos: -29.5,-46.5 + rot: 3.141592653589793 rad + pos: 26.5,34.5 parent: 2 - - uid: 25410 + - uid: 24943 components: - type: Transform - pos: -29.5,-40.5 + rot: 3.141592653589793 rad + pos: 88.5,-61.5 parent: 2 - - uid: 25411 + - uid: 24944 components: - type: Transform - pos: -29.5,-39.5 + rot: 3.141592653589793 rad + pos: -35.5,-71.5 parent: 2 - - uid: 25412 + - uid: 24945 components: - type: Transform - pos: -29.5,-38.5 + rot: -1.5707963267948966 rad + pos: 64.5,-92.5 parent: 2 - - uid: 25413 + - uid: 24946 components: - type: Transform - pos: -29.5,-37.5 + rot: 3.141592653589793 rad + pos: 49.5,-62.5 parent: 2 - - uid: 25414 + - uid: 24947 components: - type: Transform - pos: -29.5,-36.5 + rot: 3.141592653589793 rad + pos: -46.5,-14.5 parent: 2 - - uid: 25415 + - uid: 24948 components: - type: Transform - pos: -26.5,-32.5 + pos: -69.5,-72.5 parent: 2 - - uid: 25416 + - uid: 24949 components: - type: Transform - pos: -26.5,-31.5 + rot: 3.141592653589793 rad + pos: -12.5,-102.5 parent: 2 - - uid: 25417 + - uid: 24950 components: - type: Transform - pos: -26.5,-30.5 + pos: 66.5,-67.5 parent: 2 - - uid: 25418 + - uid: 24951 components: - type: Transform - pos: -26.5,-29.5 + pos: 66.5,-69.5 parent: 2 - - uid: 25419 + - uid: 24952 components: - type: Transform - pos: -26.5,-28.5 + rot: 3.141592653589793 rad + pos: 28.5,39.5 parent: 2 - - uid: 25420 + - uid: 24953 components: - type: Transform - pos: -26.5,-24.5 + pos: -19.5,-104.5 parent: 2 - - uid: 25421 + - uid: 24954 components: - type: Transform - pos: -26.5,-23.5 + rot: 3.141592653589793 rad + pos: -16.5,-102.5 parent: 2 - - uid: 25422 + - uid: 24955 components: - type: Transform - pos: -26.5,-22.5 + rot: 3.141592653589793 rad + pos: -63.5,-47.5 parent: 2 - - uid: 25423 + - uid: 24956 components: - type: Transform - pos: -26.5,-21.5 + rot: 3.141592653589793 rad + pos: 88.5,-60.5 parent: 2 - - uid: 25424 + - uid: 24957 components: - type: Transform - pos: -26.5,-17.5 + rot: 3.141592653589793 rad + pos: -63.5,-48.5 parent: 2 - - uid: 25425 + - uid: 24958 components: - type: Transform - pos: -26.5,-16.5 + rot: 3.141592653589793 rad + pos: -65.5,-46.5 parent: 2 - - uid: 25426 + - uid: 24959 components: - type: Transform - pos: -26.5,-15.5 + rot: 3.141592653589793 rad + pos: -46.5,-75.5 parent: 2 - - uid: 25427 + - uid: 24960 components: - type: Transform - pos: -26.5,-14.5 + rot: 3.141592653589793 rad + pos: -64.5,-46.5 parent: 2 - - uid: 25428 + - uid: 24961 components: - type: Transform - pos: -26.5,-13.5 + rot: 3.141592653589793 rad + pos: 68.5,-62.5 parent: 2 - - uid: 25429 + - uid: 24962 components: - type: Transform - pos: -24.5,-8.5 + rot: 3.141592653589793 rad + pos: 68.5,-63.5 parent: 2 - - uid: 25430 + - uid: 24963 components: - type: Transform - pos: -24.5,-7.5 + rot: 3.141592653589793 rad + pos: 44.5,-79.5 parent: 2 - - uid: 25431 + - uid: 24964 components: - type: Transform - pos: -23.5,-7.5 + rot: 3.141592653589793 rad + pos: 38.5,-81.5 parent: 2 - - uid: 25432 + - uid: 24965 components: - type: Transform - pos: -23.5,-6.5 + rot: 3.141592653589793 rad + pos: 40.5,-81.5 parent: 2 - - uid: 25433 + - uid: 24966 components: - type: Transform - pos: -22.5,-6.5 + rot: 3.141592653589793 rad + pos: -63.5,-78.5 parent: 2 - - uid: 25434 + - uid: 24967 components: - type: Transform - pos: -22.5,-5.5 + rot: 3.141592653589793 rad + pos: 35.5,-103.5 parent: 2 - - uid: 25435 + - uid: 24968 components: - type: Transform - pos: -21.5,-5.5 + rot: 3.141592653589793 rad + pos: 39.5,-5.5 parent: 2 - - uid: 25436 + - uid: 24969 components: - type: Transform - pos: 12.5,-1.5 + rot: 3.141592653589793 rad + pos: 109.5,-58.5 parent: 2 - - uid: 25437 + - uid: 24970 components: - type: Transform - pos: -21.5,-4.5 + pos: 12.5,27.5 parent: 2 - - uid: 25438 + - uid: 24971 components: - type: Transform - pos: -20.5,-4.5 + rot: 3.141592653589793 rad + pos: -63.5,-77.5 parent: 2 - - uid: 25439 + - uid: 24972 components: - type: Transform - pos: -20.5,-3.5 + rot: 3.141592653589793 rad + pos: 88.5,-59.5 parent: 2 - - uid: 25440 + - uid: 24973 components: - type: Transform - pos: -19.5,-3.5 + rot: 3.141592653589793 rad + pos: 39.5,-3.5 parent: 2 - - uid: 25441 + - uid: 24974 components: - type: Transform - pos: -14.5,-1.5 + pos: -33.5,-81.5 parent: 2 - - uid: 25442 + - uid: 24975 components: - type: Transform - pos: -13.5,-1.5 + pos: -69.5,-74.5 parent: 2 - - uid: 25443 + - uid: 24976 components: - type: Transform - pos: -12.5,-1.5 + pos: -50.5,-70.5 parent: 2 - - uid: 25444 + - uid: 24977 components: - type: Transform - pos: -11.5,-1.5 + rot: 3.141592653589793 rad + pos: 111.5,-58.5 parent: 2 - - uid: 25445 + - uid: 24978 components: - type: Transform - pos: 13.5,-1.5 + rot: 3.141592653589793 rad + pos: 39.5,39.5 parent: 2 - - uid: 25446 + - uid: 24979 components: - type: Transform - pos: 14.5,-1.5 + rot: 3.141592653589793 rad + pos: 35.5,39.5 parent: 2 - - uid: 25447 + - uid: 24980 components: - type: Transform - pos: 15.5,-1.5 + rot: -1.5707963267948966 rad + pos: 58.5,-88.5 parent: 2 - - uid: 25448 + - uid: 24981 components: - type: Transform - pos: 27.5,-21.5 + rot: -1.5707963267948966 rad + pos: 59.5,-100.5 parent: 2 - - uid: 25449 + - uid: 24982 components: - type: Transform - pos: 20.5,-3.5 + rot: -1.5707963267948966 rad + pos: 59.5,-98.5 parent: 2 - - uid: 25450 + - uid: 24983 components: - type: Transform - pos: 21.5,-3.5 + pos: -49.5,-70.5 parent: 2 - - uid: 25451 + - uid: 24984 components: - type: Transform - pos: 21.5,-4.5 + rot: 1.5707963267948966 rad + pos: 58.5,-87.5 parent: 2 - - uid: 25452 + - uid: 24985 components: - type: Transform - pos: 22.5,-4.5 + rot: 1.5707963267948966 rad + pos: 60.5,-87.5 parent: 2 - - uid: 25453 + - uid: 24986 components: - type: Transform - pos: 22.5,-5.5 + rot: 1.5707963267948966 rad + pos: 60.5,-88.5 parent: 2 - - uid: 25454 + - uid: 24987 components: - type: Transform - pos: 23.5,-5.5 + pos: -2.5,7.5 parent: 2 - - uid: 25455 + - uid: 24988 components: - type: Transform - pos: 23.5,-6.5 + rot: 3.141592653589793 rad + pos: -5.5,7.5 parent: 2 - - uid: 25456 + - uid: 24989 components: - type: Transform - pos: 24.5,-6.5 + rot: 3.141592653589793 rad + pos: -4.5,7.5 parent: 2 - - uid: 25457 + - uid: 24990 components: - type: Transform - pos: 24.5,-7.5 + rot: 3.141592653589793 rad + pos: 0.5,20.5 parent: 2 - - uid: 25458 + - uid: 24991 components: - type: Transform - pos: 25.5,-7.5 + rot: 3.141592653589793 rad + pos: 0.5,18.5 parent: 2 - - uid: 25459 + - uid: 24992 components: - type: Transform - pos: 25.5,-8.5 + rot: 3.141592653589793 rad + pos: 9.5,26.5 parent: 2 - - uid: 25460 + - uid: 24993 components: - type: Transform - pos: 27.5,-13.5 + rot: 1.5707963267948966 rad + pos: 33.5,-90.5 parent: 2 - - uid: 25461 + - uid: 24994 components: - type: Transform - pos: 27.5,-14.5 + rot: -1.5707963267948966 rad + pos: 35.5,-86.5 parent: 2 - - uid: 25462 + - uid: 24995 components: - type: Transform - pos: 27.5,-15.5 + rot: 3.141592653589793 rad + pos: 62.5,-63.5 parent: 2 - - uid: 25463 + - uid: 24996 components: - type: Transform - pos: 27.5,-16.5 + rot: 3.141592653589793 rad + pos: 63.5,-63.5 parent: 2 - - uid: 25464 + - uid: 24997 components: - type: Transform - pos: 27.5,-17.5 + pos: 86.5,-37.5 parent: 2 - - uid: 25465 + - uid: 24998 components: - type: Transform - pos: 27.5,-22.5 + pos: 65.5,-30.5 parent: 2 - - uid: 25466 + - uid: 24999 components: - type: Transform - pos: 27.5,-23.5 + pos: 66.5,-30.5 parent: 2 - - uid: 25467 + - uid: 25000 components: - type: Transform - pos: 27.5,-24.5 + pos: 67.5,-30.5 parent: 2 - - uid: 25468 + - uid: 25001 components: - type: Transform - pos: 27.5,-27.5 + pos: -12.5,-69.5 parent: 2 - - uid: 25469 + - uid: 25002 components: - type: Transform - pos: 27.5,-28.5 + pos: -17.5,-69.5 parent: 2 - - uid: 25470 + - uid: 25003 components: - type: Transform - pos: 27.5,-29.5 + rot: 3.141592653589793 rad + pos: 64.5,-87.5 parent: 2 - - uid: 25471 + - uid: 25004 components: - type: Transform - pos: 57.5,-34.5 + pos: -15.5,-69.5 parent: 2 - - uid: 25472 + - uid: 25005 components: - type: Transform - pos: 56.5,-34.5 + pos: -21.5,-67.5 parent: 2 - - uid: 25473 + - uid: 25006 components: - type: Transform - pos: 55.5,-34.5 + pos: -25.5,-57.5 parent: 2 - - uid: 25474 + - uid: 25007 components: - type: Transform - pos: 51.5,-34.5 + pos: -19.5,-67.5 parent: 2 - - uid: 25475 + - uid: 25008 components: - type: Transform - pos: 50.5,-34.5 + pos: -18.5,-68.5 parent: 2 - - uid: 25476 + - uid: 25009 components: - type: Transform - pos: 49.5,-34.5 + pos: 12.5,-69.5 parent: 2 - - uid: 25477 + - uid: 25010 components: - type: Transform - pos: 46.5,-35.5 + rot: 3.141592653589793 rad + pos: 79.5,-68.5 parent: 2 - - uid: 25478 + - uid: 25011 components: - type: Transform - pos: 46.5,-36.5 + rot: 3.141592653589793 rad + pos: 83.5,-68.5 parent: 2 - - uid: 25479 + - uid: 25012 components: - type: Transform - pos: 46.5,-37.5 + rot: 3.141592653589793 rad + pos: 47.5,-82.5 parent: 2 - - uid: 25480 + - uid: 25013 components: - type: Transform - pos: 46.5,-40.5 + rot: 3.141592653589793 rad + pos: 47.5,-81.5 parent: 2 - - uid: 25481 + - uid: 25014 components: - type: Transform - pos: 46.5,-41.5 + pos: 9.5,-69.5 parent: 2 - - uid: 25482 + - uid: 25015 components: - type: Transform - pos: 46.5,-42.5 + pos: 44.5,-70.5 parent: 2 - - uid: 25483 + - uid: 25016 components: - type: Transform - pos: -73.5,-60.5 + pos: 43.5,-70.5 parent: 2 - - uid: 25484 + - uid: 25017 components: - type: Transform - pos: -74.5,-60.5 + pos: -16.5,-69.5 parent: 2 - - uid: 25485 + - uid: 25018 components: - type: Transform - pos: -72.5,-60.5 + pos: -18.5,-67.5 parent: 2 - - uid: 25486 + - uid: 25019 components: - type: Transform - pos: -71.5,-60.5 + rot: 3.141592653589793 rad + pos: 88.5,-63.5 parent: 2 - - uid: 25487 + - uid: 25020 components: - type: Transform - pos: -70.5,-60.5 + rot: 3.141592653589793 rad + pos: 64.5,-83.5 parent: 2 - - uid: 25488 + - uid: 25021 components: - type: Transform - pos: -77.5,-63.5 + rot: 3.141592653589793 rad + pos: 64.5,-84.5 parent: 2 - - uid: 25489 + - uid: 25022 components: - type: Transform - pos: -77.5,-64.5 + pos: -6.5,2.5 parent: 2 - - uid: 25490 + - uid: 25023 components: - type: Transform - pos: -77.5,-65.5 + pos: 32.5,-68.5 parent: 2 - - uid: 25491 + - uid: 25024 components: - type: Transform - pos: -77.5,-66.5 + pos: -41.5,-74.5 parent: 2 - - uid: 25492 + - uid: 25025 components: - type: Transform - pos: -77.5,-67.5 + pos: -41.5,-72.5 parent: 2 - - uid: 25493 + - uid: 25026 components: - type: Transform - pos: -74.5,-70.5 + pos: -59.5,-88.5 parent: 2 - - uid: 25494 + - uid: 25027 components: - type: Transform - pos: -73.5,-70.5 + pos: -60.5,-92.5 parent: 2 - - uid: 25495 + - uid: 25028 components: - type: Transform - pos: -72.5,-70.5 + rot: 3.141592653589793 rad + pos: 74.5,-75.5 parent: 2 - - uid: 25496 + - uid: 25029 components: - type: Transform - pos: -71.5,-70.5 + pos: -41.5,-69.5 parent: 2 - - uid: 25497 + - uid: 25030 components: - type: Transform - pos: -70.5,-70.5 + pos: -48.5,-45.5 parent: 2 - - uid: 25498 + - uid: 25031 components: - type: Transform - pos: 44.5,-86.5 + rot: 3.141592653589793 rad + pos: 67.5,-75.5 parent: 2 - - uid: 25499 + - uid: 25032 components: - type: Transform - pos: 44.5,-87.5 + pos: -8.5,-69.5 parent: 2 - - uid: 25500 + - uid: 25033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-49.5 + pos: -11.5,-69.5 parent: 2 - - uid: 25501 + - uid: 25034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-49.5 + pos: -10.5,-69.5 parent: 2 - - uid: 25502 + - uid: 25035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-104.5 + pos: -58.5,14.5 parent: 2 - - uid: 25503 + - uid: 25036 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-106.5 + pos: -64.5,13.5 parent: 2 - - uid: 25504 + - uid: 25037 components: - type: Transform - pos: -25.5,-21.5 + rot: 3.141592653589793 rad + pos: -62.5,13.5 parent: 2 - - uid: 25505 + - uid: 25038 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,-106.5 + pos: -75.5,16.5 parent: 2 - - uid: 25506 + - uid: 25039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-106.5 + pos: -27.5,-51.5 parent: 2 - - uid: 25507 + - uid: 25040 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-106.5 + pos: -41.5,-63.5 parent: 2 - - uid: 25508 + - uid: 25041 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-106.5 + pos: 65.5,-75.5 parent: 2 - - uid: 25509 + - uid: 25042 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-50.5 + pos: -72.5,-51.5 parent: 2 - - uid: 25510 + - uid: 25043 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-50.5 + pos: -70.5,-51.5 parent: 2 - - uid: 25511 + - uid: 25044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-50.5 + pos: 2.5,6.5 parent: 2 - - uid: 25512 + - uid: 25045 components: - type: Transform - pos: -25.5,-23.5 + pos: 2.5,7.5 parent: 2 - - uid: 25513 + - uid: 25046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-86.5 + pos: 2.5,10.5 parent: 2 - - uid: 25514 + - uid: 25047 components: - type: Transform - pos: -25.5,-24.5 + pos: 2.5,11.5 parent: 2 - - uid: 25515 + - uid: 25048 components: - type: Transform - pos: -28.5,-46.5 + pos: 9.5,18.5 parent: 2 - - uid: 25516 + - uid: 25049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-106.5 + pos: 10.5,18.5 parent: 2 - - uid: 25517 + - uid: 25050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-106.5 + pos: 11.5,18.5 parent: 2 - - uid: 25518 + - uid: 25051 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-106.5 + pos: 12.5,24.5 parent: 2 - - uid: 25519 + - uid: 25052 components: - type: Transform - pos: -26.5,-35.5 + pos: 11.5,24.5 parent: 2 - - uid: 25520 + - uid: 25053 components: - type: Transform - pos: -27.5,-35.5 + pos: 11.5,25.5 parent: 2 - - uid: 25521 + - uid: 25054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-89.5 + pos: 10.5,25.5 parent: 2 - - uid: 25522 + - uid: 25055 components: - type: Transform - pos: -28.5,-36.5 + pos: 10.5,26.5 parent: 2 - - uid: 25523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-92.5 - parent: 2 - - uid: 25524 + - uid: 25056 components: - type: Transform - pos: 35.5,-97.5 + pos: 8.5,26.5 parent: 2 - - uid: 25525 + - uid: 25057 components: - type: Transform - pos: -28.5,-37.5 + pos: 7.5,26.5 parent: 2 - - uid: 25526 + - uid: 25058 components: - type: Transform - pos: 26.5,-54.5 + pos: 6.5,26.5 parent: 2 - - uid: 25527 + - uid: 25059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-104.5 + pos: 6.5,27.5 parent: 2 - - uid: 25528 + - uid: 25060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-104.5 + pos: 5.5,27.5 parent: 2 - - uid: 25529 + - uid: 25061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-104.5 + pos: 4.5,27.5 parent: 2 - - uid: 25530 + - uid: 25062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-104.5 + pos: 3.5,27.5 parent: 2 - - uid: 25531 + - uid: 25063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-104.5 + pos: 3.5,28.5 parent: 2 - - uid: 25532 + - uid: 25064 components: - type: Transform - pos: 12.5,-2.5 + pos: 2.5,28.5 parent: 2 - - uid: 25533 + - uid: 25065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-49.5 + pos: 1.5,28.5 parent: 2 - - uid: 25534 + - uid: 25066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-87.5 + pos: 0.5,28.5 parent: 2 - - uid: 25535 + - uid: 25067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-60.5 + pos: -0.5,28.5 parent: 2 - - uid: 25536 + - uid: 25068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-46.5 + pos: -1.5,28.5 parent: 2 - - uid: 25537 + - uid: 25069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-47.5 + pos: -2.5,28.5 parent: 2 - - uid: 25538 + - uid: 25070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-46.5 + pos: -2.5,27.5 parent: 2 - - uid: 25539 + - uid: 25071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-48.5 + pos: -3.5,27.5 parent: 2 - - uid: 25540 + - uid: 25072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-45.5 + pos: -4.5,27.5 parent: 2 - - uid: 25541 + - uid: 25073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-99.5 + pos: -5.5,27.5 parent: 2 - - uid: 25542 + - uid: 25074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-87.5 + pos: -5.5,26.5 parent: 2 - - uid: 25543 + - uid: 25075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-96.5 + pos: -7.5,26.5 parent: 2 - - uid: 25544 + - uid: 25076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-85.5 + pos: -8.5,26.5 parent: 2 - - uid: 25545 + - uid: 25077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-90.5 + pos: -9.5,26.5 parent: 2 - - uid: 25546 + - uid: 25078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-93.5 + pos: -9.5,25.5 parent: 2 - - uid: 25547 + - uid: 25079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-93.5 + pos: -10.5,25.5 parent: 2 - - uid: 25548 + - uid: 25080 components: - type: Transform - pos: 35.5,-85.5 + pos: -11.5,23.5 parent: 2 - - uid: 25549 + - uid: 25081 components: - type: Transform - pos: 24.5,-10.5 + pos: -21.5,2.5 parent: 2 - - uid: 25550 + - uid: 25082 components: - type: Transform - pos: 26.5,-52.5 + rot: -1.5707963267948966 rad + pos: 33.5,-101.5 parent: 2 - - uid: 25551 + - uid: 25083 components: - type: Transform - pos: 104.5,-19.5 + rot: -1.5707963267948966 rad + pos: 35.5,-98.5 parent: 2 - - uid: 25552 + - uid: 25084 components: - type: Transform - pos: 105.5,-19.5 + rot: 3.141592653589793 rad + pos: -40.5,-7.5 parent: 2 - - uid: 25553 + - uid: 25085 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-32.5 + pos: -56.5,-0.5 parent: 2 - - uid: 25554 + - uid: 25086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 + pos: -55.5,-22.5 parent: 2 - - uid: 25555 + - uid: 25087 components: - type: Transform - pos: 26.5,-72.5 + pos: -54.5,-22.5 parent: 2 - - uid: 25556 + - uid: 25088 components: - type: Transform - pos: 27.5,-72.5 + pos: -53.5,-22.5 parent: 2 - - uid: 25557 + - uid: 25089 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-36.5 + pos: -53.5,-26.5 parent: 2 - - uid: 25558 + - uid: 25090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-36.5 + pos: -54.5,-26.5 parent: 2 - - uid: 25559 + - uid: 25091 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-61.5 + pos: -28.5,-49.5 parent: 2 - - uid: 25560 + - uid: 25092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-61.5 + pos: -25.5,-64.5 parent: 2 - - uid: 25561 + - uid: 25093 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-92.5 + pos: -25.5,-63.5 parent: 2 - - uid: 25562 + - uid: 25094 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-105.5 + pos: -25.5,-54.5 parent: 2 - - uid: 25563 + - uid: 25095 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-107.5 + pos: -25.5,-35.5 parent: 2 - - uid: 25564 + - uid: 25096 components: - type: Transform - pos: 14.5,-104.5 + pos: -24.5,-64.5 parent: 2 - - uid: 25565 + - uid: 25097 components: - type: Transform - pos: 13.5,-104.5 + pos: -24.5,-65.5 parent: 2 - - uid: 25566 + - uid: 25098 components: - type: Transform - pos: 12.5,-104.5 + pos: -25.5,-59.5 parent: 2 - - uid: 25567 + - uid: 25099 components: - type: Transform - pos: 17.5,-104.5 + pos: -25.5,-56.5 parent: 2 - - uid: 25568 + - uid: 25100 components: - type: Transform - pos: 7.5,-104.5 + pos: -25.5,-61.5 parent: 2 - - uid: 25569 + - uid: 25101 components: - type: Transform - pos: 6.5,-104.5 + pos: -25.5,-55.5 parent: 2 - - uid: 25570 + - uid: 25102 components: - type: Transform - pos: 4.5,-101.5 + pos: -36.5,-35.5 parent: 2 - - uid: 25571 + - uid: 25103 components: - type: Transform - pos: 4.5,-100.5 + pos: -53.5,-4.5 parent: 2 - - uid: 25572 + - uid: 25104 components: - type: Transform - pos: 4.5,-99.5 + pos: -52.5,-4.5 parent: 2 - - uid: 25573 + - uid: 25105 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,24.5 + pos: -48.5,-3.5 parent: 2 - - uid: 25574 + - uid: 25106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-45.5 + pos: -48.5,-0.5 parent: 2 - - uid: 25575 + - uid: 25107 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,-45.5 + pos: -80.5,-40.5 parent: 2 - - uid: 25576 + - uid: 25108 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-106.5 + pos: -78.5,-40.5 parent: 2 - - uid: 25577 + - uid: 25109 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-107.5 + pos: -48.5,-5.5 parent: 2 - - uid: 25578 + - uid: 25110 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-107.5 + pos: -79.5,-44.5 parent: 2 - - uid: 25579 + - uid: 25111 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-107.5 + pos: -78.5,-44.5 parent: 2 - - uid: 25580 + - uid: 25112 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-106.5 + pos: -80.5,-44.5 parent: 2 - - uid: 25581 + - uid: 25113 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-106.5 + pos: -79.5,-40.5 parent: 2 - - uid: 25582 + - uid: 25114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-106.5 + pos: -25.5,-62.5 parent: 2 - - uid: 25583 + - uid: 25115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-107.5 + pos: -25.5,-51.5 parent: 2 - - uid: 25584 + - uid: 25116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-104.5 + pos: -23.5,-67.5 parent: 2 - - uid: 25585 + - uid: 25117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-102.5 + pos: -24.5,-66.5 parent: 2 - - uid: 25586 + - uid: 25118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-102.5 + pos: -28.5,-48.5 parent: 2 - - uid: 25587 + - uid: 25119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,14.5 + pos: -25.5,-52.5 parent: 2 - - uid: 25588 + - uid: 25120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-13.5 + pos: -26.5,-51.5 parent: 2 - - uid: 25589 + - uid: 25121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,14.5 + pos: -22.5,-67.5 parent: 2 - - uid: 25590 + - uid: 25122 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,14.5 + pos: -7.5,-69.5 parent: 2 - - uid: 25591 + - uid: 25123 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,18.5 + pos: 68.5,-34.5 parent: 2 - - uid: 25592 + - uid: 25124 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,17.5 + pos: 69.5,-34.5 parent: 2 - - uid: 25593 + - uid: 25125 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,16.5 + pos: 67.5,-34.5 parent: 2 - - uid: 25594 + - uid: 25126 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,15.5 + pos: 74.5,-30.5 parent: 2 - - uid: 25595 + - uid: 25127 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,-29.5 + pos: 75.5,-30.5 parent: 2 - - uid: 25596 + - uid: 25128 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-80.5 + pos: 76.5,-30.5 parent: 2 - - uid: 25597 + - uid: 25129 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-80.5 + pos: 61.5,-63.5 parent: 2 - - uid: 25598 + - uid: 25130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-80.5 + pos: 39.5,-43.5 parent: 2 - - uid: 25599 + - uid: 25131 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-80.5 + pos: 38.5,-43.5 parent: 2 - - uid: 25600 + - uid: 25132 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-46.5 + pos: 37.5,-43.5 parent: 2 - - uid: 25601 + - uid: 25133 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,-46.5 + pos: -80.5,-36.5 parent: 2 - - uid: 25602 + - uid: 25134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-46.5 + rot: 1.5707963267948966 rad + pos: 60.5,-59.5 parent: 2 - - uid: 25603 + - uid: 25135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-46.5 + rot: 1.5707963267948966 rad + pos: 18.5,-93.5 parent: 2 - - uid: 25604 + - uid: 25136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-69.5 + rot: 1.5707963267948966 rad + pos: 46.5,-46.5 parent: 2 - - uid: 25605 + - uid: 25137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-69.5 + rot: -1.5707963267948966 rad + pos: 41.5,-104.5 parent: 2 - - uid: 25606 + - uid: 25138 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-78.5 + rot: 1.5707963267948966 rad + pos: 18.5,-94.5 parent: 2 - - uid: 25607 + - uid: 25139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-77.5 + pos: 50.5,-80.5 parent: 2 - - uid: 25608 + - uid: 25140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-14.5 + pos: 61.5,-71.5 parent: 2 - - uid: 25609 + - uid: 25141 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-16.5 + pos: 60.5,-71.5 parent: 2 - - uid: 25610 + - uid: 25142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-17.5 + pos: 59.5,-71.5 parent: 2 - - uid: 25611 + - uid: 25143 components: - type: Transform - pos: 42.5,-27.5 + pos: 57.5,-70.5 parent: 2 - - uid: 25612 + - uid: 25144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,27.5 + pos: 56.5,-70.5 parent: 2 - - uid: 25613 + - uid: 25145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,27.5 + pos: 55.5,-70.5 parent: 2 - - uid: 25614 + - uid: 25146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,28.5 + pos: 58.5,-75.5 parent: 2 - - uid: 25615 + - uid: 25147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,28.5 + pos: 58.5,-76.5 parent: 2 - - uid: 25616 + - uid: 25148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,28.5 + rot: 1.5707963267948966 rad + pos: 33.5,-96.5 parent: 2 - - uid: 25617 + - uid: 25149 components: - type: Transform - pos: 21.5,29.5 + pos: 48.5,-80.5 parent: 2 - - uid: 25618 + - uid: 25150 components: - type: Transform - pos: 20.5,28.5 + rot: 1.5707963267948966 rad + pos: 33.5,-99.5 parent: 2 - - uid: 25619 + - uid: 25151 components: - type: Transform - pos: 21.5,28.5 + pos: -28.5,-47.5 parent: 2 - - uid: 25620 + - uid: 25152 components: - type: Transform - pos: 9.5,30.5 + pos: -28.5,-50.5 parent: 2 - - uid: 25621 + - uid: 25153 components: - type: Transform - pos: 8.5,30.5 + pos: 8.5,-69.5 parent: 2 - - uid: 25622 + - uid: 25154 components: - type: Transform - pos: 10.5,29.5 + pos: 11.5,-69.5 parent: 2 - - uid: 25623 + - uid: 25155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,32.5 + pos: 13.5,-69.5 parent: 2 - - uid: 25624 + - uid: 25156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,32.5 + pos: 16.5,-69.5 parent: 2 - - uid: 25625 + - uid: 25157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,31.5 + pos: 17.5,-69.5 parent: 2 - - uid: 25626 + - uid: 25158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,32.5 + pos: 18.5,-69.5 parent: 2 - - uid: 25627 + - uid: 25159 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,31.5 + pos: 19.5,-68.5 parent: 2 - - uid: 25628 + - uid: 25160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,32.5 + pos: 19.5,-67.5 parent: 2 - - uid: 25629 + - uid: 25161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,31.5 + pos: 20.5,-67.5 parent: 2 - - uid: 25630 + - uid: 25162 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,31.5 + pos: 22.5,-67.5 parent: 2 - - uid: 25631 + - uid: 25163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,30.5 + pos: 23.5,-67.5 parent: 2 - - uid: 25632 + - uid: 25164 components: - type: Transform - pos: -12.5,29.5 + rot: -1.5707963267948966 rad + pos: 35.5,-95.5 parent: 2 - - uid: 25633 + - uid: 25165 components: - type: Transform - pos: -13.5,28.5 + pos: 24.5,-67.5 parent: 2 - - uid: 25634 + - uid: 25166 components: - type: Transform - pos: -14.5,27.5 + pos: 25.5,-66.5 parent: 2 - - uid: 25635 + - uid: 25167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,21.5 + rot: 1.5707963267948966 rad + pos: 18.5,-101.5 parent: 2 - - uid: 25636 + - uid: 25168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,21.5 + rot: 1.5707963267948966 rad + pos: 18.5,-91.5 parent: 2 - - uid: 25637 + - uid: 25169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,22.5 + rot: 1.5707963267948966 rad + pos: 18.5,-92.5 parent: 2 - - uid: 25638 + - uid: 25170 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,21.5 + pos: 16.5,-95.5 parent: 2 - - uid: 25639 + - uid: 25171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,21.5 + pos: 17.5,-101.5 parent: 2 - - uid: 25640 + - uid: 25172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,22.5 + rot: 1.5707963267948966 rad + pos: 18.5,-95.5 parent: 2 - - uid: 25641 + - uid: 25173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,19.5 + pos: 16.5,-101.5 parent: 2 - - uid: 25642 + - uid: 25174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,18.5 + pos: 25.5,-65.5 parent: 2 - - uid: 25643 + - uid: 25175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,17.5 + pos: 26.5,-64.5 parent: 2 - - uid: 25644 + - uid: 25176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,16.5 + pos: -3.5,-89.5 parent: 2 - - uid: 25645 + - uid: 25177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,15.5 + pos: -3.5,-90.5 parent: 2 - - uid: 25646 + - uid: 25178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-33.5 + pos: -3.5,-91.5 parent: 2 - - uid: 25647 + - uid: 25179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-76.5 + pos: -0.5,-100.5 parent: 2 - - uid: 25648 + - uid: 25180 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-68.5 + pos: -1.5,-100.5 parent: 2 - - uid: 25649 + - uid: 25181 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-75.5 + pos: -2.5,-100.5 parent: 2 - - uid: 25650 + - uid: 25182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-73.5 + pos: -0.5,-92.5 parent: 2 - - uid: 25651 + - uid: 25183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-72.5 + pos: 0.5,-92.5 parent: 2 - - uid: 25652 + - uid: 25184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-69.5 + pos: 2.5,-78.5 parent: 2 - - uid: 25653 + - uid: 25185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-65.5 + pos: 2.5,-79.5 parent: 2 - - uid: 25654 + - uid: 25186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-64.5 + pos: -1.5,-80.5 parent: 2 - - uid: 25655 + - uid: 25187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-59.5 + rot: 1.5707963267948966 rad + pos: 8.5,-83.5 parent: 2 - - uid: 25656 + - uid: 25188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-58.5 + pos: 11.5,-85.5 parent: 2 - - uid: 25657 + - uid: 25189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-56.5 + pos: 8.5,-81.5 parent: 2 - - uid: 25658 + - uid: 25190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-54.5 + pos: 26.5,-63.5 parent: 2 - - uid: 25659 + - uid: 25191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-91.5 + pos: -11.5,-102.5 parent: 2 - - uid: 25660 + - uid: 25192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-92.5 + pos: -8.5,-99.5 parent: 2 - - uid: 25661 + - uid: 25193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-94.5 + pos: -7.5,-82.5 parent: 2 - - uid: 25662 + - uid: 25194 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-95.5 + pos: -14.5,-102.5 parent: 2 - - uid: 25663 + - uid: 25195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-99.5 + pos: 26.5,-62.5 parent: 2 - - uid: 25664 + - uid: 25196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-100.5 + pos: 26.5,-61.5 parent: 2 - - uid: 25665 + - uid: 25197 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-101.5 + pos: 78.5,-76.5 parent: 2 - - uid: 25666 + - uid: 25198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-102.5 + pos: 49.5,-80.5 parent: 2 - - uid: 25667 + - uid: 25199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-103.5 + rot: -1.5707963267948966 rad + pos: -78.5,-46.5 parent: 2 - - uid: 25668 + - uid: 25200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-109.5 + rot: -1.5707963267948966 rad + pos: -79.5,-46.5 parent: 2 - - uid: 25669 + - uid: 25201 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-110.5 + rot: -1.5707963267948966 rad + pos: -80.5,-46.5 parent: 2 - - uid: 25670 + - uid: 25202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-109.5 + rot: -1.5707963267948966 rad + pos: -74.5,-51.5 parent: 2 - - uid: 25671 + - uid: 25203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-106.5 + rot: -1.5707963267948966 rad + pos: -76.5,-51.5 parent: 2 - - uid: 25672 + - uid: 25204 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-107.5 + pos: -73.5,-46.5 parent: 2 - - uid: 25673 + - uid: 25205 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-113.5 + pos: -73.5,-46.5 parent: 2 - - uid: 25674 + - uid: 25206 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-114.5 + pos: -74.5,-46.5 parent: 2 - - uid: 25675 + - uid: 25207 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-114.5 + pos: -72.5,-46.5 parent: 2 - - uid: 25676 + - uid: 25208 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-114.5 + rot: -1.5707963267948966 rad + pos: -77.5,-35.5 parent: 2 - - uid: 25677 + - uid: 25209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-114.5 + pos: -41.5,-68.5 parent: 2 - - uid: 25678 + - uid: 25210 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-114.5 + pos: -41.5,-67.5 parent: 2 - - uid: 25679 + - uid: 25211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-114.5 + pos: -47.5,-65.5 parent: 2 - - uid: 25680 + - uid: 25212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-114.5 + pos: -45.5,-65.5 parent: 2 - - uid: 25681 + - uid: 25213 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-114.5 + pos: -63.5,-67.5 parent: 2 - - uid: 25682 + - uid: 25214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-114.5 + pos: -52.5,-63.5 parent: 2 - - uid: 25683 + - uid: 25215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-114.5 + pos: -53.5,-63.5 parent: 2 - - uid: 25684 + - uid: 25216 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-114.5 + rot: 1.5707963267948966 rad + pos: -41.5,-46.5 parent: 2 - - uid: 25685 + - uid: 25217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-112.5 + rot: 1.5707963267948966 rad + pos: -39.5,-45.5 parent: 2 - - uid: 25686 + - uid: 25218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-111.5 + rot: 1.5707963267948966 rad + pos: -38.5,-45.5 parent: 2 - - uid: 25687 + - uid: 25219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-108.5 + rot: 1.5707963267948966 rad + pos: -37.5,-45.5 parent: 2 - - uid: 25688 + - uid: 25220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-107.5 + rot: 1.5707963267948966 rad + pos: -38.5,-41.5 parent: 2 - - uid: 25689 + - uid: 25221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-106.5 + rot: 1.5707963267948966 rad + pos: -39.5,-41.5 parent: 2 - - uid: 25690 + - uid: 25222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-105.5 + rot: 1.5707963267948966 rad + pos: -40.5,-41.5 parent: 2 - - uid: 25691 + - uid: 25223 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-102.5 + pos: 68.5,-74.5 parent: 2 - - uid: 25692 + - uid: 25224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-99.5 + pos: -47.5,-45.5 parent: 2 - - uid: 25693 + - uid: 25225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-104.5 + pos: -46.5,-45.5 parent: 2 - - uid: 25694 + - uid: 25226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-95.5 + pos: -45.5,-46.5 parent: 2 - - uid: 25695 + - uid: 25227 components: - type: Transform - pos: -51.5,-70.5 + pos: -45.5,-47.5 parent: 2 - - uid: 25696 + - uid: 25228 components: - type: Transform - pos: -48.5,-70.5 + pos: -45.5,-48.5 parent: 2 - - uid: 25697 + - uid: 25229 components: - type: Transform - pos: -47.5,-70.5 + rot: 3.141592653589793 rad + pos: -67.5,-40.5 parent: 2 - - uid: 25698 + - uid: 25230 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,29.5 + pos: -65.5,-40.5 parent: 2 - - uid: 25699 + - uid: 25231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-95.5 + pos: -54.5,-56.5 parent: 2 - - uid: 25700 + - uid: 25232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-37.5 + pos: -54.5,-58.5 parent: 2 - - uid: 25701 + - uid: 25233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,39.5 + pos: -56.5,-58.5 parent: 2 - - uid: 25702 + - uid: 25234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-24.5 + pos: -56.5,-56.5 parent: 2 - - uid: 25703 + - uid: 25235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,39.5 + rot: -1.5707963267948966 rad + pos: -66.5,-64.5 parent: 2 - - uid: 25704 + - uid: 25236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-104.5 + pos: -41.5,-31.5 parent: 2 - - uid: 25705 + - uid: 25237 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-38.5 + pos: 78.5,-77.5 parent: 2 - - uid: 25706 + - uid: 25238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-99.5 + rot: 3.141592653589793 rad + pos: 64.5,-88.5 parent: 2 - - uid: 25707 + - uid: 25239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-59.5 + pos: 88.5,4.5 parent: 2 - - uid: 25708 + - uid: 25240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-70.5 + pos: 26.5,-59.5 parent: 2 - - uid: 25709 + - uid: 25241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-71.5 + pos: 26.5,-57.5 parent: 2 - - uid: 25710 + - uid: 25242 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,-72.5 + pos: -4.5,-73.5 parent: 2 - - uid: 25711 + - uid: 25244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-104.5 + pos: 26.5,-56.5 parent: 2 - - uid: 25712 + - uid: 25245 components: - type: Transform - pos: 35.5,-91.5 + pos: 26.5,-55.5 parent: 2 - - uid: 25713 + - uid: 25246 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-76.5 + pos: 26.5,-21.5 parent: 2 - - uid: 25714 + - uid: 25247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-76.5 + pos: 26.5,-23.5 parent: 2 - - uid: 25715 + - uid: 25248 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,16.5 + pos: 26.5,-22.5 parent: 2 - - uid: 25716 + - uid: 25249 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,16.5 + pos: 26.5,-24.5 parent: 2 - - uid: 25717 + - uid: 25250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,13.5 + pos: 26.5,-19.5 parent: 2 - - uid: 25718 + - uid: 25251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,16.5 + pos: 23.5,-8.5 parent: 2 - - uid: 25719 + - uid: 25252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,15.5 + pos: 26.5,-16.5 parent: 2 - - uid: 25720 + - uid: 25253 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-76.5 + pos: 26.5,-17.5 parent: 2 - - uid: 25721 + - uid: 25254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-64.5 + pos: 26.5,-14.5 parent: 2 - - uid: 25722 + - uid: 25255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-78.5 + pos: 26.5,-15.5 parent: 2 - - uid: 25723 + - uid: 25256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-78.5 + pos: 26.5,-13.5 parent: 2 - - uid: 25724 + - uid: 25257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-2.5 + pos: 17.5,-95.5 parent: 2 - - uid: 25725 + - uid: 25258 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-46.5 + pos: 25.5,-12.5 parent: 2 - - uid: 25726 + - uid: 25259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-30.5 + pos: 25.5,-10.5 parent: 2 - - uid: 25727 + - uid: 25260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-58.5 + pos: 25.5,-11.5 parent: 2 - - uid: 25728 + - uid: 25261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-56.5 + pos: 23.5,-8.5 parent: 2 - - uid: 25729 + - uid: 25262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-55.5 + pos: 23.5,-7.5 parent: 2 - - uid: 25730 + - uid: 25263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-58.5 + pos: 22.5,-7.5 parent: 2 - - uid: 25731 + - uid: 25264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-57.5 + pos: 22.5,-6.5 parent: 2 - - uid: 25732 + - uid: 25265 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-51.5 + pos: 21.5,-6.5 parent: 2 - - uid: 25733 + - uid: 25266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-51.5 + pos: 21.5,-5.5 parent: 2 - - uid: 25734 + - uid: 25267 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-67.5 + pos: 20.5,-5.5 parent: 2 - - uid: 25735 + - uid: 25268 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-67.5 + pos: 20.5,-4.5 parent: 2 - - uid: 25736 + - uid: 25269 components: - type: Transform - pos: -69.5,-76.5 + pos: 24.5,-8.5 parent: 2 - - uid: 25737 + - uid: 25270 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-73.5 + pos: 18.5,-4.5 parent: 2 - - uid: 25738 + - uid: 25271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-98.5 + pos: 18.5,-3.5 parent: 2 - - uid: 25739 + - uid: 25272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-96.5 + pos: 17.5,-3.5 parent: 2 - - uid: 25740 + - uid: 25273 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,9.5 + pos: 16.5,-3.5 parent: 2 - - uid: 25741 + - uid: 25274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-97.5 + pos: 15.5,-2.5 parent: 2 - - uid: 25742 + - uid: 25275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-51.5 + pos: 14.5,-2.5 parent: 2 - - uid: 25743 + - uid: 25276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-46.5 + pos: 13.5,-2.5 parent: 2 - - uid: 25744 + - uid: 25277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-51.5 + pos: -16.5,-10.5 parent: 2 - - uid: 25745 + - uid: 25278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-51.5 + pos: -11.5,-2.5 parent: 2 - - uid: 25746 + - uid: 25279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-68.5 + pos: -12.5,-2.5 parent: 2 - - uid: 25747 + - uid: 25280 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-68.5 + pos: -13.5,-2.5 parent: 2 - - uid: 25748 + - uid: 25281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-68.5 + pos: -14.5,-2.5 parent: 2 - - uid: 25749 + - uid: 25282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-68.5 + pos: -19.5,-4.5 parent: 2 - - uid: 25750 + - uid: 25283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-68.5 + pos: -16.5,-3.5 parent: 2 - - uid: 25751 + - uid: 25284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-65.5 + pos: -16.5,-3.5 parent: 2 - - uid: 25752 + - uid: 25285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-63.5 + pos: -17.5,-3.5 parent: 2 - - uid: 25753 + - uid: 25286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-7.5 + pos: -17.5,-4.5 parent: 2 - - uid: 25754 + - uid: 25287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-33.5 + pos: -19.5,-5.5 parent: 2 - - uid: 25755 + - uid: 25288 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-34.5 + pos: -20.5,-5.5 parent: 2 - - uid: 25756 + - uid: 25289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-28.5 + pos: -20.5,-6.5 parent: 2 - - uid: 25757 + - uid: 25290 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-28.5 + pos: -21.5,-6.5 parent: 2 - - uid: 25758 + - uid: 25291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-27.5 + pos: -21.5,-7.5 parent: 2 - - uid: 25759 + - uid: 25292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-58.5 + pos: -22.5,-7.5 parent: 2 - - uid: 25760 + - uid: 25293 components: - type: Transform - pos: -69.5,-78.5 + pos: -22.5,-8.5 parent: 2 - - uid: 25761 + - uid: 25294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,32.5 + pos: -23.5,-8.5 parent: 2 - - uid: 25762 + - uid: 25295 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-65.5 + pos: -24.5,-12.5 parent: 2 - - uid: 25763 + - uid: 25296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-30.5 + pos: -24.5,-11.5 parent: 2 - - uid: 25764 + - uid: 25297 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-30.5 + pos: -24.5,-10.5 parent: 2 - - uid: 25765 + - uid: 25298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-26.5 + pos: -23.5,-10.5 parent: 2 - - uid: 25766 + - uid: 25299 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-57.5 + pos: -25.5,-32.5 parent: 2 - - uid: 25767 + - uid: 25300 components: - type: Transform - pos: -47.5,-37.5 + pos: -25.5,-13.5 parent: 2 - - uid: 25768 + - uid: 25301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-68.5 + pos: -25.5,-14.5 parent: 2 - - uid: 25769 + - uid: 25302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-68.5 + pos: -25.5,-15.5 parent: 2 - - uid: 25770 + - uid: 25303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-68.5 + pos: -25.5,-16.5 parent: 2 - - uid: 25771 + - uid: 25304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-73.5 + pos: -10.5,24.5 parent: 2 - - uid: 25772 + - uid: 25305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-68.5 + pos: -25.5,-17.5 parent: 2 - - uid: 25773 + - uid: 25306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-68.5 + rot: -1.5707963267948966 rad + pos: 33.5,-95.5 parent: 2 - - uid: 25774 + - uid: 25307 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-75.5 + rot: -1.5707963267948966 rad + pos: 33.5,-102.5 parent: 2 - - uid: 25775 + - uid: 25308 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-38.5 + pos: -25.5,-34.5 parent: 2 - - uid: 25776 + - uid: 25309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-39.5 + rot: -1.5707963267948966 rad + pos: 35.5,-102.5 parent: 2 - - uid: 25777 + - uid: 25310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-34.5 + rot: -1.5707963267948966 rad + pos: 33.5,-92.5 parent: 2 - - uid: 25778 + - uid: 25311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-66.5 + pos: -25.5,-31.5 parent: 2 - - uid: 25779 + - uid: 25312 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,-95.5 + pos: 35.5,-101.5 parent: 2 - - uid: 25780 + - uid: 25313 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-93.5 + pos: 33.5,-89.5 parent: 2 - - uid: 25781 + - uid: 25314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-104.5 + rot: -1.5707963267948966 rad + pos: 33.5,-98.5 parent: 2 - - uid: 25782 + - uid: 25315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-104.5 + pos: -6.5,26.5 parent: 2 - - uid: 25783 + - uid: 25316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-103.5 + pos: -25.5,-28.5 parent: 2 - - uid: 25784 + - uid: 25317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-104.5 + pos: -25.5,-29.5 parent: 2 - - uid: 25785 + - uid: 25318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-104.5 + pos: -25.5,-30.5 parent: 2 - - uid: 25786 + - uid: 25319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-103.5 + pos: -38.5,-60.5 parent: 2 - - uid: 25787 + - uid: 25320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-100.5 + pos: -39.5,-60.5 parent: 2 - - uid: 25788 + - uid: 25321 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-100.5 + pos: -40.5,-60.5 parent: 2 - - uid: 25789 + - uid: 25322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-100.5 + pos: -41.5,-65.5 parent: 2 - - uid: 25790 + - uid: 25323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-99.5 + pos: -39.5,-56.5 parent: 2 - - uid: 25791 + - uid: 25324 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-96.5 + pos: -41.5,-54.5 parent: 2 - - uid: 25792 + - uid: 25325 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-95.5 + pos: -41.5,-53.5 parent: 2 - - uid: 25793 + - uid: 25326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-100.5 + pos: -41.5,-52.5 parent: 2 - - uid: 25794 + - uid: 25327 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-99.5 + pos: -39.5,-21.5 parent: 2 - - uid: 25795 + - uid: 25328 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-96.5 + pos: 93.5,-37.5 parent: 2 - - uid: 25796 + - uid: 25329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-95.5 + pos: 94.5,-37.5 parent: 2 - - uid: 25797 + - uid: 25330 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-92.5 + pos: 95.5,-37.5 parent: 2 - - uid: 25798 + - uid: 25331 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-91.5 + pos: 96.5,-37.5 parent: 2 - - uid: 25799 + - uid: 25332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-90.5 + pos: 84.5,-35.5 parent: 2 - - uid: 25800 + - uid: 25333 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-90.5 + pos: -25.5,-26.5 parent: 2 - - uid: 25801 + - uid: 25334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-87.5 + pos: 93.5,-25.5 parent: 2 - - uid: 25802 + - uid: 25335 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-86.5 + pos: 94.5,-25.5 parent: 2 - - uid: 25803 + - uid: 25336 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-86.5 + pos: 95.5,-25.5 parent: 2 - - uid: 25804 + - uid: 25337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-83.5 + pos: 96.5,-25.5 parent: 2 - - uid: 25805 + - uid: 25338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-82.5 + pos: 96.5,-19.5 parent: 2 - - uid: 25806 + - uid: 25339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-81.5 + pos: 95.5,-19.5 parent: 2 - - uid: 25807 + - uid: 25340 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-109.5 + pos: 94.5,-19.5 parent: 2 - - uid: 25808 + - uid: 25341 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-110.5 + pos: 93.5,-19.5 parent: 2 - - uid: 25809 + - uid: 25342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-111.5 + pos: 84.5,-34.5 parent: 2 - - uid: 25810 + - uid: 25343 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-112.5 + pos: 84.5,-33.5 parent: 2 - - uid: 25811 + - uid: 25344 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-113.5 + pos: 84.5,-32.5 parent: 2 - - uid: 25812 + - uid: 25345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-114.5 + pos: 84.5,-30.5 parent: 2 - - uid: 25813 + - uid: 25346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-115.5 + pos: 84.5,-29.5 parent: 2 - - uid: 25814 + - uid: 25347 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-116.5 + pos: 84.5,-28.5 parent: 2 - - uid: 25815 + - uid: 25348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-116.5 + pos: 84.5,-27.5 parent: 2 - - uid: 25816 + - uid: 25349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-115.5 + pos: 87.5,-37.5 parent: 2 - - uid: 25817 + - uid: 25350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-114.5 + pos: 88.5,-37.5 parent: 2 - - uid: 25818 + - uid: 25351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-113.5 + pos: -25.5,-22.5 parent: 2 - - uid: 25819 + - uid: 25352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-112.5 + pos: 100.5,-37.5 parent: 2 - - uid: 25820 + - uid: 25353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-111.5 + pos: 101.5,-37.5 parent: 2 - - uid: 25821 + - uid: 25354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-110.5 + pos: 102.5,-37.5 parent: 2 - - uid: 25822 + - uid: 25355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-109.5 + pos: 88.5,-25.5 parent: 2 - - uid: 25823 + - uid: 25356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-104.5 + pos: 87.5,-25.5 parent: 2 - - uid: 25824 + - uid: 25357 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,0.5 + pos: 86.5,-25.5 parent: 2 - - uid: 25825 + - uid: 25358 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,1.5 + pos: 86.5,-19.5 parent: 2 - - uid: 25826 + - uid: 25359 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,2.5 + pos: 87.5,-19.5 parent: 2 - - uid: 25827 + - uid: 25360 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,3.5 + pos: 88.5,-19.5 parent: 2 - - uid: 25828 + - uid: 25361 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,4.5 + pos: 100.5,-25.5 parent: 2 - - uid: 25829 + - uid: 25362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,0.5 + pos: 101.5,-25.5 parent: 2 - - uid: 25830 + - uid: 25363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,1.5 + pos: 102.5,-25.5 parent: 2 - - uid: 25831 + - uid: 25364 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,2.5 + pos: 102.5,-19.5 parent: 2 - - uid: 25832 + - uid: 25365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,3.5 + pos: 101.5,-19.5 parent: 2 - - uid: 25833 + - uid: 25366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,4.5 + pos: 100.5,-19.5 parent: 2 - - uid: 25834 + - uid: 25367 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,29.5 + pos: -25.5,-19.5 parent: 2 - - uid: 25835 + - uid: 25368 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-0.5 + pos: 30.5,-48.5 parent: 2 - - uid: 25836 + - uid: 25369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,2.5 + pos: 30.5,-49.5 parent: 2 - - uid: 25837 + - uid: 25370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,26.5 + pos: 30.5,-50.5 parent: 2 - - uid: 25838 + - uid: 25371 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-109.5 + pos: 24.5,-68.5 parent: 2 - - uid: 25839 + - uid: 25372 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-110.5 + pos: 27.5,-54.5 parent: 2 - - uid: 25840 + - uid: 25373 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,20.5 + pos: 27.5,-55.5 parent: 2 - - uid: 25841 + - uid: 25374 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-110.5 + pos: 27.5,-56.5 parent: 2 - - uid: 25842 + - uid: 25375 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,13.5 + pos: 27.5,-57.5 parent: 2 - - uid: 25843 + - uid: 25376 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,18.5 + pos: 27.5,-61.5 parent: 2 - - uid: 25844 + - uid: 25377 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,17.5 + pos: 27.5,-62.5 parent: 2 - - uid: 25845 + - uid: 25378 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,12.5 + pos: 27.5,-63.5 parent: 2 - - uid: 25846 + - uid: 25379 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,15.5 + pos: 27.5,-64.5 parent: 2 - - uid: 25847 + - uid: 25380 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,9.5 + pos: 23.5,-68.5 parent: 2 - - uid: 25848 + - uid: 25381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,7.5 + pos: 22.5,-68.5 parent: 2 - - uid: 25849 + - uid: 25382 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,5.5 + pos: 18.5,-70.5 parent: 2 - - uid: 25850 + - uid: 25383 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,5.5 + pos: 17.5,-70.5 parent: 2 - - uid: 25851 + - uid: 25384 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-1.5 + pos: 16.5,-70.5 parent: 2 - - uid: 25852 + - uid: 25385 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,18.5 + pos: 13.5,-70.5 parent: 2 - - uid: 25853 + - uid: 25386 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-17.5 + pos: 12.5,-70.5 parent: 2 - - uid: 25854 + - uid: 25387 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-15.5 + pos: 11.5,-70.5 parent: 2 - - uid: 25855 + - uid: 25388 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-15.5 + pos: -10.5,-70.5 parent: 2 - - uid: 25856 + - uid: 25389 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-14.5 + pos: -11.5,-70.5 parent: 2 - - uid: 25857 + - uid: 25390 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-11.5 + pos: -12.5,-70.5 parent: 2 - - uid: 25858 + - uid: 25391 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-10.5 + pos: -15.5,-70.5 parent: 2 - - uid: 25859 + - uid: 25392 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-7.5 + pos: -16.5,-70.5 parent: 2 - - uid: 25860 + - uid: 25393 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-6.5 + pos: -17.5,-70.5 parent: 2 - - uid: 25861 + - uid: 25394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-5.5 + pos: -21.5,-68.5 parent: 2 - - uid: 25862 + - uid: 25395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-4.5 + pos: -22.5,-68.5 parent: 2 - - uid: 25863 + - uid: 25396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-17.5 + pos: -23.5,-68.5 parent: 2 - - uid: 25864 + - uid: 25397 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-17.5 + pos: -26.5,-64.5 parent: 2 - - uid: 25865 + - uid: 25398 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-17.5 + pos: -26.5,-63.5 parent: 2 - - uid: 25866 + - uid: 25399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-114.5 + pos: -26.5,-62.5 parent: 2 - - uid: 25867 + - uid: 25400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-111.5 + pos: -26.5,-61.5 parent: 2 - - uid: 25868 + - uid: 25401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-111.5 + pos: -26.5,-57.5 parent: 2 - - uid: 25869 + - uid: 25402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-112.5 + pos: -26.5,-56.5 parent: 2 - - uid: 25870 + - uid: 25403 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-115.5 + pos: -26.5,-55.5 parent: 2 - - uid: 25871 + - uid: 25404 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-124.5 + pos: -26.5,-54.5 parent: 2 - - uid: 25872 + - uid: 25405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-124.5 + pos: -29.5,-50.5 parent: 2 - - uid: 25873 + - uid: 25406 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-124.5 + pos: -29.5,-49.5 parent: 2 - - uid: 25874 + - uid: 25407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-126.5 + pos: -29.5,-48.5 parent: 2 - - uid: 25875 + - uid: 25408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-125.5 + pos: -29.5,-47.5 parent: 2 - - uid: 25876 + - uid: 25409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-124.5 + pos: -29.5,-46.5 parent: 2 - - uid: 25877 + - uid: 25410 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-124.5 + pos: -29.5,-40.5 parent: 2 - - uid: 25878 + - uid: 25411 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-124.5 + pos: -29.5,-39.5 parent: 2 - - uid: 25879 + - uid: 25412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-124.5 + pos: -29.5,-38.5 parent: 2 - - uid: 25880 + - uid: 25413 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-125.5 + pos: -29.5,-37.5 parent: 2 - - uid: 25881 + - uid: 25414 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-128.5 + pos: -29.5,-36.5 parent: 2 - - uid: 25882 + - uid: 25415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-126.5 + pos: -26.5,-32.5 parent: 2 - - uid: 25883 + - uid: 25416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-126.5 + pos: -26.5,-31.5 parent: 2 - - uid: 25884 + - uid: 25417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-125.5 + pos: -26.5,-30.5 parent: 2 - - uid: 25885 + - uid: 25418 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-128.5 + pos: -26.5,-29.5 parent: 2 - - uid: 25886 + - uid: 25419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-127.5 + pos: -26.5,-28.5 parent: 2 - - uid: 25887 + - uid: 25420 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-128.5 + pos: -26.5,-24.5 parent: 2 - - uid: 25888 + - uid: 25421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-127.5 + pos: -26.5,-23.5 parent: 2 - - uid: 25889 + - uid: 25422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-127.5 + pos: -26.5,-22.5 parent: 2 - - uid: 25890 + - uid: 25423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-126.5 + pos: -26.5,-21.5 parent: 2 - - uid: 25891 + - uid: 25424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-125.5 + pos: -26.5,-17.5 parent: 2 - - uid: 25892 + - uid: 25425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-123.5 + pos: -26.5,-16.5 parent: 2 - - uid: 25893 + - uid: 25426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-123.5 + pos: -26.5,-15.5 parent: 2 - - uid: 25894 + - uid: 25427 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-122.5 + pos: -26.5,-14.5 parent: 2 - - uid: 25895 + - uid: 25428 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-120.5 + pos: -26.5,-13.5 parent: 2 - - uid: 25896 + - uid: 25429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-120.5 + pos: -24.5,-8.5 parent: 2 - - uid: 25897 + - uid: 25430 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-118.5 + pos: -24.5,-7.5 parent: 2 - - uid: 25898 + - uid: 25431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-117.5 + pos: -23.5,-7.5 parent: 2 - - uid: 25899 + - uid: 25432 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-114.5 + pos: -23.5,-6.5 parent: 2 - - uid: 25900 + - uid: 25433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-112.5 + pos: -22.5,-6.5 parent: 2 - - uid: 25901 + - uid: 25434 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-110.5 + pos: -22.5,-5.5 parent: 2 - - uid: 25902 + - uid: 25435 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-110.5 + pos: -21.5,-5.5 parent: 2 - - uid: 25903 + - uid: 25436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-109.5 + pos: 12.5,-1.5 parent: 2 - - uid: 25904 + - uid: 25437 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-106.5 + pos: -21.5,-4.5 parent: 2 - - uid: 25905 + - uid: 25438 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-107.5 + pos: -20.5,-4.5 parent: 2 - - uid: 25906 + - uid: 25439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-106.5 + pos: -20.5,-3.5 parent: 2 - - uid: 25907 + - uid: 25440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-97.5 + pos: -19.5,-3.5 parent: 2 - - uid: 25908 + - uid: 25441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 96.5,-97.5 + pos: -14.5,-1.5 parent: 2 - - uid: 25909 + - uid: 25442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 96.5,-96.5 + pos: -13.5,-1.5 parent: 2 - - uid: 25910 + - uid: 25443 components: - type: Transform - rot: 3.141592653589793 rad - pos: 100.5,-97.5 + pos: -12.5,-1.5 parent: 2 - - uid: 25911 + - uid: 25444 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.5,-96.5 + pos: -11.5,-1.5 parent: 2 - - uid: 25912 + - uid: 25445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.5,-95.5 + pos: 13.5,-1.5 parent: 2 - - uid: 25913 + - uid: 25446 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-94.5 + pos: 14.5,-1.5 parent: 2 - - uid: 25914 + - uid: 25447 components: - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,-94.5 + pos: 15.5,-1.5 parent: 2 - - uid: 25915 + - uid: 25448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 103.5,-93.5 + pos: 27.5,-21.5 parent: 2 - - uid: 25916 + - uid: 25449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,-96.5 + pos: 20.5,-3.5 parent: 2 - - uid: 25917 + - uid: 25450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-81.5 + pos: 21.5,-3.5 parent: 2 - - uid: 25918 + - uid: 25451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-87.5 + pos: 21.5,-4.5 parent: 2 - - uid: 25919 + - uid: 25452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-83.5 + pos: 22.5,-4.5 parent: 2 - - uid: 25920 + - uid: 25453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-84.5 + pos: 22.5,-5.5 parent: 2 - - uid: 25921 + - uid: 25454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-85.5 + pos: 23.5,-5.5 parent: 2 - - uid: 25922 + - uid: 25455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-88.5 + pos: 23.5,-6.5 parent: 2 - - uid: 25923 + - uid: 25456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-89.5 + pos: 24.5,-6.5 parent: 2 - - uid: 25924 + - uid: 25457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-93.5 + pos: 24.5,-7.5 parent: 2 - - uid: 25925 + - uid: 25458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-92.5 + pos: 25.5,-7.5 parent: 2 - - uid: 25926 + - uid: 25459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 105.5,-93.5 + pos: 25.5,-8.5 parent: 2 - - uid: 25927 + - uid: 25460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-93.5 + pos: 27.5,-13.5 parent: 2 - - uid: 25928 + - uid: 25461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 106.5,-93.5 + pos: 27.5,-14.5 parent: 2 - - uid: 25929 + - uid: 25462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 106.5,-92.5 + pos: 27.5,-15.5 parent: 2 - - uid: 25930 + - uid: 25463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 108.5,-85.5 + pos: 27.5,-16.5 parent: 2 - - uid: 25931 + - uid: 25464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 107.5,-89.5 + pos: 27.5,-17.5 parent: 2 - - uid: 25932 + - uid: 25465 components: - type: Transform - rot: 3.141592653589793 rad - pos: 107.5,-88.5 + pos: 27.5,-22.5 parent: 2 - - uid: 25933 + - uid: 25466 components: - type: Transform - rot: 3.141592653589793 rad - pos: 107.5,-85.5 + pos: 27.5,-23.5 parent: 2 - - uid: 25934 + - uid: 25467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 107.5,-86.5 + pos: 27.5,-24.5 parent: 2 - - uid: 25935 + - uid: 25471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-77.5 + pos: 57.5,-34.5 parent: 2 - - uid: 25936 + - uid: 25472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-83.5 + pos: 56.5,-34.5 parent: 2 - - uid: 25937 + - uid: 25473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-81.5 + pos: 55.5,-34.5 parent: 2 - - uid: 25938 + - uid: 25474 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-80.5 + pos: 51.5,-34.5 parent: 2 - - uid: 25939 + - uid: 25475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-76.5 + pos: 50.5,-34.5 parent: 2 - - uid: 25940 + - uid: 25476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-76.5 + pos: 49.5,-34.5 parent: 2 - - uid: 25941 + - uid: 25477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-74.5 + pos: 46.5,-35.5 parent: 2 - - uid: 25942 + - uid: 25478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-72.5 + pos: 46.5,-36.5 parent: 2 - - uid: 25943 + - uid: 25479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-71.5 + pos: 46.5,-37.5 parent: 2 - - uid: 25944 + - uid: 25480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-68.5 + pos: 46.5,-40.5 parent: 2 - - uid: 25945 + - uid: 25481 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-67.5 + pos: 46.5,-41.5 parent: 2 - - uid: 25946 + - uid: 25482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-66.5 + pos: 46.5,-42.5 parent: 2 - - uid: 25947 + - uid: 25483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-63.5 + pos: -73.5,-60.5 parent: 2 - - uid: 25948 + - uid: 25484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 108.5,-62.5 + pos: -74.5,-60.5 parent: 2 - - uid: 25949 + - uid: 25485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 107.5,-62.5 + pos: -72.5,-60.5 parent: 2 - - uid: 25950 + - uid: 25486 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-26.5 + pos: -71.5,-60.5 parent: 2 - - uid: 25951 + - uid: 25487 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-90.5 + pos: -70.5,-60.5 parent: 2 - - uid: 25952 + - uid: 25488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-90.5 + pos: -77.5,-63.5 parent: 2 - - uid: 25953 + - uid: 25489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,36.5 + pos: -77.5,-64.5 parent: 2 - - uid: 25954 + - uid: 25490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,34.5 + pos: -77.5,-65.5 parent: 2 - - uid: 25955 + - uid: 25491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,31.5 + pos: -77.5,-66.5 parent: 2 - - uid: 25956 + - uid: 25492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,33.5 + pos: -77.5,-67.5 parent: 2 - - uid: 25957 + - uid: 25493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 112.5,-52.5 + pos: -74.5,-70.5 parent: 2 - - uid: 25958 + - uid: 25494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 114.5,-50.5 + pos: -73.5,-70.5 parent: 2 - - uid: 25959 + - uid: 25495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 114.5,-49.5 + pos: -72.5,-70.5 parent: 2 - - uid: 25960 + - uid: 25496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 115.5,-43.5 + pos: -71.5,-70.5 parent: 2 - - uid: 25961 + - uid: 25497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 115.5,-44.5 + pos: -70.5,-70.5 parent: 2 - - uid: 25962 + - uid: 25498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 115.5,-47.5 + pos: 44.5,-86.5 parent: 2 - - uid: 25963 + - uid: 25499 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-35.5 + pos: 44.5,-87.5 parent: 2 - - uid: 25964 + - uid: 25500 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-14.5 + rot: -1.5707963267948966 rad + pos: 49.5,-49.5 parent: 2 - - uid: 25965 + - uid: 25501 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-18.5 + rot: -1.5707963267948966 rad + pos: 50.5,-49.5 parent: 2 - - uid: 25966 + - uid: 25502 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-19.5 + rot: -1.5707963267948966 rad + pos: 43.5,-104.5 parent: 2 - - uid: 25967 + - uid: 25503 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-23.5 + pos: 44.5,-106.5 parent: 2 - - uid: 25968 + - uid: 25504 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-24.5 + pos: -25.5,-21.5 parent: 2 - - uid: 25969 + - uid: 25505 components: - type: Transform rot: 3.141592653589793 rad - pos: -90.5,-28.5 + pos: 40.5,-106.5 parent: 2 - - uid: 25970 + - uid: 25506 components: - type: Transform rot: 3.141592653589793 rad - pos: -90.5,-27.5 + pos: 37.5,-106.5 parent: 2 - - uid: 25971 + - uid: 25507 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-21.5 + pos: 36.5,-106.5 parent: 2 - - uid: 25972 + - uid: 25508 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,-23.5 + pos: 43.5,-106.5 parent: 2 - - uid: 25973 + - uid: 25509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-2.5 + rot: -1.5707963267948966 rad + pos: -40.5,-50.5 parent: 2 - - uid: 25974 + - uid: 25510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-4.5 + rot: -1.5707963267948966 rad + pos: -39.5,-50.5 parent: 2 - - uid: 25975 + - uid: 25511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-0.5 + rot: -1.5707963267948966 rad + pos: -38.5,-50.5 parent: 2 - - uid: 25976 + - uid: 25512 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,1.5 + pos: -25.5,-23.5 parent: 2 - - uid: 25977 + - uid: 25513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,0.5 + rot: -1.5707963267948966 rad + pos: 33.5,-86.5 parent: 2 - - uid: 25978 + - uid: 25514 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-24.5 + pos: -25.5,-24.5 parent: 2 - - uid: 25979 + - uid: 25515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-24.5 + pos: -28.5,-46.5 parent: 2 - - uid: 25980 + - uid: 25516 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-77.5 + pos: 42.5,-106.5 parent: 2 - - uid: 25981 + - uid: 25517 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-77.5 + pos: 38.5,-106.5 parent: 2 - - uid: 25982 + - uid: 25518 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,31.5 + pos: 41.5,-106.5 parent: 2 - - uid: 25983 + - uid: 25519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,22.5 + pos: -26.5,-35.5 parent: 2 - - uid: 25984 + - uid: 25520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,23.5 + pos: -27.5,-35.5 parent: 2 - - uid: 25985 + - uid: 25521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,26.5 + rot: -1.5707963267948966 rad + pos: 35.5,-89.5 parent: 2 - - uid: 25986 + - uid: 25522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,30.5 + pos: -28.5,-36.5 parent: 2 - - uid: 25987 + - uid: 25523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,31.5 + rot: -1.5707963267948966 rad + pos: 35.5,-92.5 parent: 2 - - uid: 25988 + - uid: 25524 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,22.5 + pos: 35.5,-97.5 parent: 2 - - uid: 25989 + - uid: 25525 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,32.5 + pos: -28.5,-37.5 parent: 2 - - uid: 25990 + - uid: 25526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,32.5 + pos: 26.5,-54.5 parent: 2 - - uid: 25991 + - uid: 25527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,30.5 + rot: -1.5707963267948966 rad + pos: 44.5,-104.5 parent: 2 - - uid: 25992 + - uid: 25528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,28.5 + rot: -1.5707963267948966 rad + pos: 42.5,-104.5 parent: 2 - - uid: 25993 + - uid: 25529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,26.5 + rot: -1.5707963267948966 rad + pos: 38.5,-104.5 parent: 2 - - uid: 25994 + - uid: 25530 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,26.5 + rot: -1.5707963267948966 rad + pos: 37.5,-104.5 parent: 2 - - uid: 25995 + - uid: 25531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,23.5 + rot: -1.5707963267948966 rad + pos: 40.5,-104.5 parent: 2 - - uid: 25996 + - uid: 25532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-109.5 + pos: 12.5,-2.5 parent: 2 - - uid: 25997 + - uid: 25533 components: - type: Transform rot: 3.141592653589793 rad - pos: -70.5,-109.5 + pos: 35.5,-49.5 parent: 2 - - uid: 25998 + - uid: 25534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-107.5 + rot: 1.5707963267948966 rad + pos: 35.5,-87.5 parent: 2 - - uid: 25999 + - uid: 25535 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,-107.5 + pos: 69.5,-60.5 parent: 2 - - uid: 26000 + - uid: 25536 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-75.5 + pos: 35.5,-46.5 parent: 2 - - uid: 26001 + - uid: 25537 components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,-75.5 + pos: 35.5,-47.5 parent: 2 - - uid: 26002 + - uid: 25538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-75.5 + rot: 1.5707963267948966 rad + pos: 41.5,-46.5 parent: 2 - - uid: 26003 + - uid: 25539 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,-74.5 + pos: 35.5,-48.5 parent: 2 - - uid: 26004 + - uid: 25540 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-74.5 + pos: -35.5,-45.5 parent: 2 - - uid: 26005 + - uid: 25541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-89.5 + rot: 1.5707963267948966 rad + pos: 35.5,-99.5 parent: 2 - - uid: 26006 + - uid: 25542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-99.5 + rot: 1.5707963267948966 rad + pos: 33.5,-87.5 parent: 2 - - uid: 26007 + - uid: 25543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-99.5 + rot: 1.5707963267948966 rad + pos: 35.5,-96.5 parent: 2 - - uid: 26008 + - uid: 25544 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,-98.5 + pos: 44.5,-85.5 parent: 2 - - uid: 26009 + - uid: 25545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-98.5 + rot: 1.5707963267948966 rad + pos: 35.5,-90.5 parent: 2 - - uid: 26010 + - uid: 25546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-98.5 + rot: 1.5707963267948966 rad + pos: 33.5,-93.5 parent: 2 - - uid: 26011 + - uid: 25547 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-98.5 + rot: 1.5707963267948966 rad + pos: 35.5,-93.5 parent: 2 - - uid: 26012 + - uid: 25548 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-98.5 + pos: 35.5,-85.5 parent: 2 - - uid: 26013 + - uid: 25549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-96.5 + pos: 24.5,-10.5 parent: 2 - - uid: 26014 + - uid: 25550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-95.5 + pos: 26.5,-52.5 parent: 2 - - uid: 26015 + - uid: 25551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-98.5 + pos: 104.5,-19.5 parent: 2 - - uid: 26016 + - uid: 25552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-92.5 + pos: 105.5,-19.5 parent: 2 - - uid: 26017 + - uid: 25553 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,-96.5 + pos: -43.5,-32.5 parent: 2 - - uid: 26018 + - uid: 25554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-95.5 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 parent: 2 - - uid: 26019 + - uid: 25555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-93.5 + pos: 26.5,-72.5 parent: 2 - - uid: 26020 + - uid: 25556 + components: + - type: Transform + pos: 27.5,-72.5 + parent: 2 + - uid: 25557 components: - type: Transform rot: 3.141592653589793 rad - pos: 84.5,-92.5 + pos: -79.5,-36.5 parent: 2 - - uid: 26021 + - uid: 25558 components: - type: Transform rot: 3.141592653589793 rad - pos: 86.5,-90.5 + pos: -78.5,-36.5 parent: 2 - - uid: 26022 + - uid: 25559 components: - type: Transform rot: 3.141592653589793 rad - pos: 87.5,-90.5 + pos: -64.5,-61.5 parent: 2 - - uid: 26023 + - uid: 25560 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-91.5 + pos: -63.5,-61.5 parent: 2 - - uid: 26024 + - uid: 25561 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,-89.5 + pos: -51.5,-92.5 parent: 2 - - uid: 26025 + - uid: 25562 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-89.5 + pos: 2.5,-105.5 parent: 2 - - uid: 26026 + - uid: 25563 components: - type: Transform - pos: 56.5,-91.5 + rot: 3.141592653589793 rad + pos: 12.5,-107.5 parent: 2 - - uid: 26027 + - uid: 25564 components: - type: Transform - pos: 56.5,-90.5 + pos: 14.5,-104.5 parent: 2 - - uid: 26028 + - uid: 25565 components: - type: Transform - pos: 56.5,-89.5 + pos: 13.5,-104.5 parent: 2 - - uid: 26029 + - uid: 25566 components: - type: Transform - pos: 56.5,-88.5 + pos: 12.5,-104.5 parent: 2 - - uid: 26030 + - uid: 25567 components: - type: Transform - pos: -37.5,-35.5 + pos: 17.5,-104.5 parent: 2 - - uid: 26031 + - uid: 25568 components: - type: Transform - pos: -14.5,-10.5 + pos: 7.5,-104.5 parent: 2 - - uid: 26032 + - uid: 25569 components: - type: Transform - pos: -13.5,-10.5 + pos: 6.5,-104.5 parent: 2 - - uid: 26033 + - uid: 25570 components: - type: Transform - pos: 74.5,-6.5 + pos: 4.5,-101.5 parent: 2 - - uid: 26034 + - uid: 25571 components: - type: Transform - pos: -12.5,-10.5 + pos: 4.5,-100.5 parent: 2 - - uid: 26035 + - uid: 25572 components: - type: Transform - pos: -18.5,-12.5 + pos: 4.5,-99.5 parent: 2 - - uid: 26036 + - uid: 25573 components: - type: Transform - pos: -18.5,-13.5 + rot: 3.141592653589793 rad + pos: -11.5,24.5 parent: 2 - - uid: 26037 + - uid: 25574 components: - type: Transform - pos: 45.5,-5.5 + rot: 3.141592653589793 rad + pos: 56.5,-45.5 parent: 2 - - uid: 26038 + - uid: 25575 components: - type: Transform - pos: -18.5,-14.5 + rot: 3.141592653589793 rad + pos: 57.5,-45.5 parent: 2 - - uid: 26039 + - uid: 25576 components: - type: Transform - pos: -18.5,-15.5 + rot: 3.141592653589793 rad + pos: 18.5,-106.5 parent: 2 - - uid: 26040 + - uid: 25577 components: - type: Transform - pos: -18.5,-16.5 + rot: 3.141592653589793 rad + pos: 10.5,-107.5 parent: 2 - - uid: 26041 + - uid: 25578 components: - type: Transform - pos: 90.5,-3.5 + rot: 3.141592653589793 rad + pos: 14.5,-107.5 parent: 2 - - uid: 26042 + - uid: 25579 components: - type: Transform - pos: 90.5,-4.5 + rot: 3.141592653589793 rad + pos: 15.5,-107.5 parent: 2 - - uid: 26043 + - uid: 25580 components: - type: Transform - pos: 90.5,-6.5 + rot: 3.141592653589793 rad + pos: 15.5,-106.5 parent: 2 - - uid: 26044 + - uid: 25581 components: - type: Transform - pos: 90.5,-7.5 + rot: 3.141592653589793 rad + pos: 4.5,-106.5 parent: 2 - - uid: 26045 + - uid: 25582 components: - type: Transform - pos: 90.5,-5.5 + rot: 3.141592653589793 rad + pos: 6.5,-106.5 parent: 2 - - uid: 26046 + - uid: 25583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,9.5 + rot: 3.141592653589793 rad + pos: 9.5,-107.5 parent: 2 - - uid: 26047 + - uid: 25584 components: - type: Transform - pos: 4.5,-112.5 + rot: 3.141592653589793 rad + pos: 2.5,-104.5 parent: 2 - - uid: 26048 + - uid: 25585 components: - type: Transform - pos: 62.5,-6.5 + rot: 3.141592653589793 rad + pos: -0.5,-102.5 parent: 2 - - uid: 26049 + - uid: 25586 components: - type: Transform - pos: 64.5,-6.5 + rot: 3.141592653589793 rad + pos: -1.5,-102.5 parent: 2 - - uid: 26050 + - uid: 25587 components: - type: Transform - pos: 77.5,-0.5 + rot: 3.141592653589793 rad + pos: -52.5,14.5 parent: 2 - - uid: 26051 + - uid: 25588 components: - type: Transform - pos: 79.5,-0.5 + rot: 3.141592653589793 rad + pos: 88.5,-13.5 parent: 2 - - uid: 26052 + - uid: 25589 components: - type: Transform - pos: 81.5,-0.5 + rot: 3.141592653589793 rad + pos: -51.5,14.5 parent: 2 - - uid: 26053 + - uid: 25590 components: - type: Transform - pos: 83.5,-0.5 + rot: 3.141592653589793 rad + pos: -50.5,14.5 parent: 2 - - uid: 26054 + - uid: 25591 components: - type: Transform - pos: 85.5,-0.5 + rot: 3.141592653589793 rad + pos: -54.5,18.5 parent: 2 - - uid: 26055 + - uid: 25592 components: - type: Transform - pos: 87.5,-0.5 + rot: 3.141592653589793 rad + pos: -54.5,17.5 parent: 2 - - uid: 26056 + - uid: 25593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,11.5 + rot: 3.141592653589793 rad + pos: -54.5,16.5 parent: 2 - - uid: 26057 + - uid: 25594 components: - type: Transform - pos: -37.5,20.5 + rot: 3.141592653589793 rad + pos: -54.5,15.5 parent: 2 - - uid: 26058 + - uid: 25595 components: - type: Transform - pos: -95.5,-9.5 + rot: 3.141592653589793 rad + pos: -77.5,-29.5 parent: 2 - - uid: 26059 + - uid: 25596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,-9.5 + rot: 3.141592653589793 rad + pos: 28.5,-80.5 parent: 2 - - uid: 26060 + - uid: 25597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,-9.5 + rot: 3.141592653589793 rad + pos: 30.5,-80.5 parent: 2 - - uid: 26061 + - uid: 25598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,22.5 + rot: 3.141592653589793 rad + pos: 26.5,-80.5 parent: 2 - - uid: 26062 + - uid: 25599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 + rot: 3.141592653589793 rad + pos: 24.5,-80.5 parent: 2 - - uid: 26063 + - uid: 25600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,23.5 + rot: 3.141592653589793 rad + pos: -54.5,-46.5 parent: 2 - - uid: 26064 + - uid: 25601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,24.5 + rot: 3.141592653589793 rad + pos: -53.5,-46.5 parent: 2 - - uid: 26065 + - uid: 25602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,24.5 + rot: 3.141592653589793 rad + pos: -52.5,-46.5 parent: 2 - - uid: 26066 + - uid: 25603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 + rot: 3.141592653589793 rad + pos: -51.5,-46.5 parent: 2 - - uid: 26067 + - uid: 25604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,27.5 + rot: 3.141592653589793 rad + pos: 3.5,-69.5 parent: 2 - - uid: 26068 + - uid: 25605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,27.5 + rot: 3.141592653589793 rad + pos: -2.5,-69.5 parent: 2 - - uid: 26069 + - uid: 25606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,14.5 + rot: 3.141592653589793 rad + pos: 81.5,-78.5 parent: 2 - - uid: 26070 + - uid: 25607 components: - type: Transform - pos: 46.5,-11.5 + rot: 3.141592653589793 rad + pos: 81.5,-77.5 parent: 2 - - uid: 26071 + - uid: 25608 components: - type: Transform - pos: 56.5,-80.5 + rot: 3.141592653589793 rad + pos: 87.5,-14.5 parent: 2 - - uid: 26072 + - uid: 25609 components: - type: Transform - pos: 56.5,-82.5 + rot: 3.141592653589793 rad + pos: 86.5,-16.5 parent: 2 - - uid: 26073 + - uid: 25610 components: - type: Transform - pos: 59.5,-82.5 + rot: 3.141592653589793 rad + pos: 86.5,-17.5 parent: 2 - - uid: 26074 + - uid: 25611 components: - type: Transform - pos: 59.5,-80.5 + pos: 42.5,-27.5 parent: 2 - - uid: 26075 + - uid: 25612 components: - type: Transform - pos: 93.5,-5.5 + rot: 3.141592653589793 rad + pos: 50.5,27.5 parent: 2 - - uid: 26076 + - uid: 25613 components: - type: Transform - pos: 52.5,-6.5 + rot: 3.141592653589793 rad + pos: 49.5,27.5 parent: 2 - - uid: 26077 + - uid: 25614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,14.5 + rot: 3.141592653589793 rad + pos: 49.5,28.5 parent: 2 - - uid: 26078 + - uid: 25615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,14.5 + rot: 3.141592653589793 rad + pos: 46.5,28.5 parent: 2 - - uid: 26079 + - uid: 25616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,14.5 + rot: 3.141592653589793 rad + pos: 47.5,28.5 parent: 2 - - uid: 26080 + - uid: 25617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,14.5 + pos: 21.5,29.5 parent: 2 - - uid: 26081 + - uid: 25618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,13.5 + pos: 20.5,28.5 parent: 2 - - uid: 26082 + - uid: 25619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,13.5 + pos: 21.5,28.5 parent: 2 - - uid: 26083 + - uid: 25620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,10.5 + pos: 9.5,30.5 parent: 2 - - uid: 26084 + - uid: 25621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,13.5 + pos: 8.5,30.5 parent: 2 - - uid: 26085 + - uid: 25622 components: - type: Transform - pos: 4.5,-113.5 + pos: 10.5,29.5 parent: 2 - - uid: 26086 + - uid: 25623 components: - type: Transform - pos: 7.5,-112.5 + rot: 3.141592653589793 rad + pos: 3.5,32.5 parent: 2 - - uid: 26087 + - uid: 25624 components: - type: Transform - pos: 7.5,-111.5 + rot: 3.141592653589793 rad + pos: -2.5,32.5 parent: 2 - - uid: 26088 + - uid: 25625 components: - type: Transform - pos: 4.5,-109.5 + rot: 3.141592653589793 rad + pos: 5.5,31.5 parent: 2 - - uid: 26089 + - uid: 25626 components: - type: Transform - pos: 11.5,-111.5 + rot: 3.141592653589793 rad + pos: 2.5,32.5 parent: 2 - - uid: 26090 + - uid: 25627 components: - type: Transform - pos: 13.5,-110.5 + rot: 3.141592653589793 rad + pos: 6.5,31.5 parent: 2 - - uid: 26091 + - uid: 25628 components: - type: Transform - pos: 12.5,-111.5 + rot: 3.141592653589793 rad + pos: -1.5,32.5 parent: 2 - - uid: 26092 + - uid: 25629 components: - type: Transform - pos: 15.5,-113.5 + rot: 3.141592653589793 rad + pos: -5.5,31.5 parent: 2 - - uid: 26093 + - uid: 25630 components: - type: Transform - pos: 17.5,-113.5 + rot: 3.141592653589793 rad + pos: -6.5,31.5 parent: 2 - - uid: 26094 + - uid: 25631 components: - type: Transform - pos: 15.5,-109.5 + rot: 3.141592653589793 rad + pos: -6.5,30.5 parent: 2 - - uid: 26095 + - uid: 25632 components: - type: Transform - pos: 16.5,-109.5 + pos: -12.5,29.5 parent: 2 - - uid: 26096 + - uid: 25633 components: - type: Transform - pos: 8.5,-109.5 + pos: -13.5,28.5 parent: 2 - - uid: 26097 + - uid: 25634 components: - type: Transform - pos: 9.5,-109.5 + pos: -14.5,27.5 parent: 2 - - uid: 26098 + - uid: 25635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,12.5 + rot: 3.141592653589793 rad + pos: -30.5,21.5 parent: 2 - - uid: 26099 + - uid: 25636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,9.5 + rot: 3.141592653589793 rad + pos: -29.5,21.5 parent: 2 - - uid: 26100 + - uid: 25637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,10.5 + rot: 3.141592653589793 rad + pos: -22.5,22.5 parent: 2 - - uid: 26101 + - uid: 25638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,10.5 + rot: 3.141592653589793 rad + pos: -22.5,21.5 parent: 2 - - uid: 26102 + - uid: 25639 components: - type: Transform - pos: 85.5,5.5 + rot: 3.141592653589793 rad + pos: -23.5,21.5 parent: 2 - - uid: 26103 + - uid: 25640 components: - type: Transform - pos: 86.5,5.5 + rot: 3.141592653589793 rad + pos: -18.5,22.5 parent: 2 - - uid: 26104 + - uid: 25641 components: - type: Transform - pos: 93.5,-6.5 + rot: 3.141592653589793 rad + pos: -57.5,19.5 parent: 2 - - uid: 26105 + - uid: 25642 components: - type: Transform - pos: 93.5,-2.5 + rot: 3.141592653589793 rad + pos: -57.5,18.5 parent: 2 - - uid: 26106 + - uid: 25643 components: - type: Transform - pos: 92.5,-0.5 + rot: 3.141592653589793 rad + pos: -59.5,17.5 parent: 2 - - uid: 26107 + - uid: 25644 components: - type: Transform - pos: 90.5,2.5 + rot: 3.141592653589793 rad + pos: -62.5,16.5 parent: 2 - - uid: 26108 + - uid: 25645 components: - type: Transform - pos: 87.5,4.5 + rot: 3.141592653589793 rad + pos: -75.5,15.5 parent: 2 - - uid: 26109 + - uid: 25646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 117.5,-37.5 + rot: 3.141592653589793 rad + pos: -81.5,-33.5 parent: 2 - - uid: 26110 + - uid: 25647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 118.5,-37.5 + rot: 3.141592653589793 rad + pos: -77.5,-76.5 parent: 2 - - uid: 26111 + - uid: 25648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 119.5,-37.5 + rot: 3.141592653589793 rad + pos: -82.5,-68.5 parent: 2 - - uid: 26112 + - uid: 25649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 120.5,-37.5 + rot: 3.141592653589793 rad + pos: -79.5,-75.5 parent: 2 - - uid: 26113 + - uid: 25650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 117.5,-41.5 + rot: 3.141592653589793 rad + pos: -81.5,-73.5 parent: 2 - - uid: 26114 + - uid: 25651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 118.5,-41.5 + rot: 3.141592653589793 rad + pos: -81.5,-72.5 parent: 2 - - uid: 26115 + - uid: 25652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 119.5,-41.5 + rot: 3.141592653589793 rad + pos: -82.5,-69.5 parent: 2 - - uid: 26116 + - uid: 25653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 120.5,-41.5 + rot: 3.141592653589793 rad + pos: -83.5,-65.5 parent: 2 - - uid: 26117 + - uid: 25654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 124.5,-37.5 + rot: 3.141592653589793 rad + pos: -83.5,-64.5 parent: 2 - - uid: 26118 + - uid: 25655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 125.5,-37.5 + rot: 3.141592653589793 rad + pos: -83.5,-59.5 parent: 2 - - uid: 26119 + - uid: 25656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,-37.5 + rot: 3.141592653589793 rad + pos: -83.5,-58.5 parent: 2 - - uid: 26120 + - uid: 25657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,-37.5 + rot: 3.141592653589793 rad + pos: -81.5,-56.5 parent: 2 - - uid: 26121 + - uid: 25658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 124.5,-41.5 + rot: 3.141592653589793 rad + pos: -81.5,-54.5 parent: 2 - - uid: 26122 + - uid: 25659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 125.5,-41.5 + rot: 3.141592653589793 rad + pos: 27.5,-91.5 parent: 2 - - uid: 26123 + - uid: 25660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,-41.5 + rot: 3.141592653589793 rad + pos: 27.5,-92.5 parent: 2 - - uid: 26124 + - uid: 25661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,-41.5 + rot: 3.141592653589793 rad + pos: 27.5,-94.5 parent: 2 - - uid: 26125 + - uid: 25662 components: - type: Transform - pos: -15.5,2.5 + rot: 3.141592653589793 rad + pos: 27.5,-95.5 parent: 2 - - uid: 26126 + - uid: 25663 components: - type: Transform - pos: -13.5,4.5 + rot: 3.141592653589793 rad + pos: 27.5,-99.5 parent: 2 - - uid: 26127 + - uid: 25664 components: - type: Transform - pos: -17.5,2.5 + rot: 3.141592653589793 rad + pos: 27.5,-100.5 parent: 2 - - uid: 26128 + - uid: 25665 components: - type: Transform - pos: -14.5,3.5 + rot: 3.141592653589793 rad + pos: 27.5,-101.5 parent: 2 - - uid: 40747 + - uid: 25666 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 40666 - - uid: 40748 + pos: 27.5,-102.5 + parent: 2 + - uid: 25667 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 40666 - - uid: 40749 + pos: 27.5,-103.5 + parent: 2 + - uid: 25668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 40666 - - uid: 40750 + rot: 3.141592653589793 rad + pos: 55.5,-109.5 + parent: 2 + - uid: 25669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 40666 - - uid: 40751 + rot: 3.141592653589793 rad + pos: 29.5,-110.5 + parent: 2 + - uid: 25670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 40666 - - uid: 40752 + rot: 3.141592653589793 rad + pos: 28.5,-109.5 + parent: 2 + - uid: 25671 components: - type: Transform - pos: 4.5,2.5 - parent: 40666 - - uid: 40753 + rot: 3.141592653589793 rad + pos: 27.5,-106.5 + parent: 2 + - uid: 25672 components: - type: Transform - pos: -3.5,2.5 - parent: 40666 - - uid: 41253 + rot: 3.141592653589793 rad + pos: 28.5,-107.5 + parent: 2 + - uid: 25673 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-15.5 - parent: 40828 - - uid: 41254 + pos: 30.5,-113.5 + parent: 2 + - uid: 25674 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-14.5 - parent: 40828 - - uid: 41255 + pos: 30.5,-114.5 + parent: 2 + - uid: 25675 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-13.5 - parent: 40828 - - uid: 41256 + pos: 31.5,-114.5 + parent: 2 + - uid: 25676 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 40828 - - uid: 41257 + pos: 35.5,-114.5 + parent: 2 + - uid: 25677 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-12.5 - parent: 40828 - - uid: 41258 + pos: 37.5,-114.5 + parent: 2 + - uid: 25678 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 40828 - - uid: 41259 + pos: 36.5,-114.5 + parent: 2 + - uid: 25679 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-11.5 - parent: 40828 - - uid: 41260 + pos: 41.5,-114.5 + parent: 2 + - uid: 25680 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 40828 - - uid: 41261 + pos: 42.5,-114.5 + parent: 2 + - uid: 25681 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 40828 - - uid: 41262 + pos: 43.5,-114.5 + parent: 2 + - uid: 25682 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-9.5 - parent: 40828 - - uid: 41263 + pos: 47.5,-114.5 + parent: 2 + - uid: 25683 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-8.5 - parent: 40828 - - uid: 41264 + pos: 48.5,-114.5 + parent: 2 + - uid: 25684 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 40828 - - uid: 41265 + pos: 49.5,-114.5 + parent: 2 + - uid: 25685 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 40828 - - uid: 41266 + pos: 52.5,-112.5 + parent: 2 + - uid: 25686 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 40828 - - uid: 41267 + pos: 53.5,-111.5 + parent: 2 + - uid: 25687 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-2.5 - parent: 40828 - - uid: 41268 + pos: 56.5,-108.5 + parent: 2 + - uid: 25688 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-0.5 - parent: 40828 - - uid: 41269 + pos: 56.5,-107.5 + parent: 2 + - uid: 25689 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-4.5 - parent: 40828 - - uid: 41270 + pos: 58.5,-106.5 + parent: 2 + - uid: 25690 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-5.5 - parent: 40828 - - uid: 41271 + pos: 59.5,-105.5 + parent: 2 + - uid: 25691 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-6.5 - parent: 40828 - - uid: 41272 + pos: 59.5,-102.5 + parent: 2 + - uid: 25692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-7.5 - parent: 40828 - - uid: 41273 + rot: -1.5707963267948966 rad + pos: 59.5,-99.5 + parent: 2 + - uid: 25693 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 40828 - - uid: 41274 + pos: -20.5,-104.5 + parent: 2 + - uid: 25694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-11.5 - parent: 40828 - - uid: 41275 + rot: -1.5707963267948966 rad + pos: 64.5,-95.5 + parent: 2 + - uid: 25695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-12.5 - parent: 40828 - - uid: 41276 + pos: -51.5,-70.5 + parent: 2 + - uid: 25696 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-13.5 - parent: 40828 - - uid: 41277 + pos: -48.5,-70.5 + parent: 2 + - uid: 25697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-15.5 - parent: 40828 - - uid: 41278 + pos: -47.5,-70.5 + parent: 2 + - uid: 25698 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-15.5 - parent: 40828 - - uid: 41279 + pos: 12.5,29.5 + parent: 2 + - uid: 25699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 40828 - - uid: 41280 + rot: -1.5707963267948966 rad + pos: 59.5,-95.5 + parent: 2 + - uid: 25700 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 40828 - - uid: 41281 + pos: -69.5,-37.5 + parent: 2 + - uid: 25701 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 40828 - - uid: 41282 + pos: 29.5,39.5 + parent: 2 + - uid: 25702 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-14.5 - parent: 40828 - - uid: 41283 + pos: -37.5,-24.5 + parent: 2 + - uid: 25703 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-15.5 - parent: 40828 - - uid: 41284 + pos: 38.5,39.5 + parent: 2 + - uid: 25704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-104.5 + parent: 2 + - uid: 25705 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-15.5 - parent: 40828 - - uid: 41285 + pos: 30.5,-38.5 + parent: 2 + - uid: 25706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-99.5 + parent: 2 + - uid: 25707 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-15.5 - parent: 40828 - - uid: 41286 + pos: 69.5,-59.5 + parent: 2 + - uid: 25708 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-13.5 - parent: 40828 - - uid: 41287 + pos: 85.5,-70.5 + parent: 2 + - uid: 25709 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 40828 - - uid: 41288 + pos: 85.5,-71.5 + parent: 2 + - uid: 25710 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-11.5 - parent: 40828 - - uid: 41289 + pos: 83.5,-72.5 + parent: 2 + - uid: 25711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-104.5 + parent: 2 + - uid: 25712 + components: + - type: Transform + pos: 35.5,-91.5 + parent: 2 + - uid: 25713 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-10.5 - parent: 40828 - - uid: 41290 + pos: -62.5,-76.5 + parent: 2 + - uid: 25714 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-7.5 - parent: 40828 - - uid: 41291 + pos: -60.5,-76.5 + parent: 2 + - uid: 25715 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 40828 - - uid: 41292 + pos: -66.5,16.5 + parent: 2 + - uid: 25716 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-5.5 - parent: 40828 - - uid: 41293 + pos: -71.5,16.5 + parent: 2 + - uid: 25717 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 40828 - - uid: 41294 + pos: -63.5,13.5 + parent: 2 + - uid: 25718 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-1.5 - parent: 40828 - - uid: 41295 + pos: -70.5,16.5 + parent: 2 + - uid: 25719 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 40828 - - uid: 41296 + pos: -65.5,15.5 + parent: 2 + - uid: 25720 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 40828 - - uid: 41297 + pos: -71.5,-76.5 + parent: 2 + - uid: 25721 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 40828 - - uid: 41298 + pos: 31.5,-64.5 + parent: 2 + - uid: 25722 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-1.5 - parent: 40828 - - uid: 41299 + pos: 44.5,-78.5 + parent: 2 + - uid: 25723 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 40828 - - uid: 41300 + pos: -71.5,-78.5 + parent: 2 + - uid: 25724 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,10.5 - parent: 40828 - - uid: 41301 + pos: 28.5,-2.5 + parent: 2 + - uid: 25725 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,2.5 - parent: 40828 - - uid: 41302 + pos: -66.5,-46.5 + parent: 2 + - uid: 25726 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 40828 - - uid: 41303 + pos: -44.5,-30.5 + parent: 2 + - uid: 25727 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,6.5 - parent: 40828 - - uid: 41304 + pos: 88.5,-58.5 + parent: 2 + - uid: 25728 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,7.5 - parent: 40828 - - uid: 41305 + pos: 68.5,-56.5 + parent: 2 + - uid: 25729 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,8.5 - parent: 40828 - - uid: 41306 + pos: 68.5,-55.5 + parent: 2 + - uid: 25730 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,10.5 - parent: 40828 - - uid: 41307 + pos: 69.5,-58.5 + parent: 2 + - uid: 25731 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,8.5 - parent: 40828 - - uid: 41308 + pos: 88.5,-57.5 + parent: 2 + - uid: 25732 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 40828 - - uid: 41309 + pos: 74.5,-51.5 + parent: 2 + - uid: 25733 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,6.5 - parent: 40828 - - uid: 41310 + pos: 75.5,-51.5 + parent: 2 + - uid: 25734 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 40828 - - uid: 41311 + pos: -65.5,-67.5 + parent: 2 + - uid: 25735 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 40828 - - uid: 41312 + pos: -64.5,-67.5 + parent: 2 + - uid: 25736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-10.5 - parent: 40828 - - uid: 41313 + pos: -69.5,-76.5 + parent: 2 + - uid: 25737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-11.5 - parent: 40828 - - uid: 41314 + rot: 3.141592653589793 rad + pos: -26.5,-73.5 + parent: 2 + - uid: 25738 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-13.5 - parent: 40828 - - uid: 41315 + pos: 56.5,-98.5 + parent: 2 + - uid: 25739 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-13.5 - parent: 40828 - - uid: 41316 + pos: 56.5,-96.5 + parent: 2 + - uid: 25740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-12.5 - parent: 40828 - - uid: 41317 + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 2 + - uid: 25741 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-10.5 - parent: 40828 - - uid: 41828 + pos: 56.5,-97.5 + parent: 2 + - uid: 25742 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 41669 - - uid: 41829 + pos: 76.5,-51.5 + parent: 2 + - uid: 25743 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 41669 - - uid: 41830 + pos: -67.5,-46.5 + parent: 2 + - uid: 25744 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 41669 - - uid: 41831 + pos: 77.5,-51.5 + parent: 2 + - uid: 25745 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 41669 - - uid: 41832 + pos: 78.5,-51.5 + parent: 2 + - uid: 25746 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,5.5 - parent: 41669 - - uid: 41833 + pos: 80.5,-68.5 + parent: 2 + - uid: 25747 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,5.5 - parent: 41669 - - uid: 41834 + pos: 81.5,-68.5 + parent: 2 + - uid: 25748 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,4.5 - parent: 41669 -- proto: GrilleBroken - entities: - - uid: 26129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-91.5 + pos: 78.5,-68.5 parent: 2 - - uid: 26130 + - uid: 25749 components: - type: Transform - pos: 63.5,-91.5 + rot: 3.141592653589793 rad + pos: 71.5,-68.5 parent: 2 - - uid: 26131 + - uid: 25750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-72.5 + rot: 3.141592653589793 rad + pos: 70.5,-68.5 parent: 2 - - uid: 26132 + - uid: 25751 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,28.5 + pos: 49.5,-65.5 parent: 2 - - uid: 26133 + - uid: 25752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-69.5 + rot: 3.141592653589793 rad + pos: 49.5,-63.5 parent: 2 - - uid: 26134 + - uid: 25753 components: - type: Transform - pos: 85.5,-69.5 + rot: 3.141592653589793 rad + pos: 30.5,-7.5 parent: 2 - - uid: 26135 + - uid: 25754 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-75.5 + pos: -33.5,-33.5 parent: 2 - - uid: 26136 + - uid: 25755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-75.5 + rot: 3.141592653589793 rad + pos: -33.5,-34.5 parent: 2 - - uid: 26137 + - uid: 25756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-104.5 + rot: 3.141592653589793 rad + pos: -39.5,-28.5 parent: 2 - - uid: 26138 + - uid: 25757 components: - type: Transform - pos: 57.5,-106.5 + rot: 3.141592653589793 rad + pos: 80.5,-28.5 parent: 2 - - uid: 26139 + - uid: 25758 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,0.5 + pos: 80.5,-27.5 parent: 2 - - uid: 26140 + - uid: 25759 components: - type: Transform - pos: -56.5,0.5 + rot: 3.141592653589793 rad + pos: 31.5,-58.5 parent: 2 - - uid: 26141 + - uid: 25760 components: - type: Transform - pos: -56.5,-2.5 + pos: -69.5,-78.5 parent: 2 - - uid: 26142 + - uid: 25761 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-1.5 + pos: 24.5,32.5 parent: 2 - - uid: 26143 + - uid: 25762 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-107.5 + pos: 31.5,-65.5 parent: 2 - - uid: 26144 + - uid: 25763 components: - type: Transform - pos: 11.5,-107.5 + rot: 3.141592653589793 rad + pos: -51.5,-30.5 parent: 2 - - uid: 26145 + - uid: 25764 components: - type: Transform - pos: 13.5,-107.5 + rot: 3.141592653589793 rad + pos: -48.5,-30.5 parent: 2 - - uid: 26146 + - uid: 25765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-107.5 + rot: 3.141592653589793 rad + pos: -47.5,-26.5 parent: 2 - - uid: 26147 + - uid: 25766 components: - type: Transform - pos: -2.5,-102.5 + rot: 3.141592653589793 rad + pos: 31.5,-57.5 parent: 2 - - uid: 26148 + - uid: 25767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-106.5 + pos: -47.5,-37.5 parent: 2 - - uid: 26149 + - uid: 25768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-102.5 + rot: 3.141592653589793 rad + pos: 69.5,-68.5 parent: 2 - - uid: 26150 + - uid: 25769 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-106.5 + pos: 73.5,-68.5 parent: 2 - - uid: 26151 + - uid: 25770 components: - type: Transform - pos: 81.5,-76.5 + rot: 3.141592653589793 rad + pos: 76.5,-68.5 parent: 2 - - uid: 26152 + - uid: 25771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-78.5 + rot: 3.141592653589793 rad + pos: -49.5,-73.5 parent: 2 - - uid: 26153 + - uid: 25772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,30.5 + rot: 3.141592653589793 rad + pos: 74.5,-68.5 parent: 2 - - uid: 26154 + - uid: 25773 components: - type: Transform - pos: 10.5,30.5 + rot: 3.141592653589793 rad + pos: 75.5,-68.5 parent: 2 - - uid: 26155 + - uid: 25774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,32.5 + rot: 3.141592653589793 rad + pos: -49.5,-75.5 parent: 2 - - uid: 26156 + - uid: 25775 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,32.5 + pos: -45.5,-38.5 parent: 2 - - uid: 26157 + - uid: 25776 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,31.5 + pos: -45.5,-39.5 parent: 2 - - uid: 26158 + - uid: 25777 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,31.5 + pos: 29.5,-34.5 parent: 2 - - uid: 26159 + - uid: 25778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,28.5 + rot: 3.141592653589793 rad + pos: 49.5,-66.5 parent: 2 - - uid: 26160 + - uid: 25779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,28.5 + rot: -1.5707963267948966 rad + pos: 61.5,-95.5 parent: 2 - - uid: 26161 + - uid: 25780 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,21.5 + pos: 64.5,-93.5 parent: 2 - - uid: 26162 + - uid: 25781 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,21.5 + pos: -22.5,-104.5 parent: 2 - - uid: 26163 + - uid: 25782 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,21.5 + pos: -63.5,-104.5 parent: 2 - - uid: 26164 + - uid: 25783 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,17.5 + pos: -74.5,-103.5 parent: 2 - - uid: 26165 + - uid: 25784 components: - type: Transform - pos: -81.5,-35.5 + rot: 3.141592653589793 rad + pos: -74.5,-104.5 parent: 2 - - uid: 26166 + - uid: 25785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-35.5 + rot: 3.141592653589793 rad + pos: -62.5,-104.5 parent: 2 - - uid: 26167 + - uid: 25786 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,-34.5 + pos: -62.5,-103.5 parent: 2 - - uid: 26168 + - uid: 25787 components: - type: Transform - pos: -76.5,-79.5 + rot: 3.141592653589793 rad + pos: -76.5,-100.5 parent: 2 - - uid: 26169 + - uid: 25788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-78.5 + rot: 3.141592653589793 rad + pos: -61.5,-100.5 parent: 2 - - uid: 26170 + - uid: 25789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-79.5 + rot: 3.141592653589793 rad + pos: -60.5,-100.5 parent: 2 - - uid: 26171 + - uid: 25790 components: - type: Transform - pos: -83.5,-63.5 + rot: 3.141592653589793 rad + pos: -60.5,-99.5 parent: 2 - - uid: 26172 + - uid: 25791 components: - type: Transform - pos: -81.5,-55.5 + rot: 3.141592653589793 rad + pos: -60.5,-96.5 parent: 2 - - uid: 26173 + - uid: 25792 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-70.5 + pos: -60.5,-95.5 parent: 2 - - uid: 26174 + - uid: 25793 components: - type: Transform - pos: -81.5,-71.5 + rot: 3.141592653589793 rad + pos: -75.5,-100.5 parent: 2 - - uid: 26175 + - uid: 25794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-71.5 + rot: 3.141592653589793 rad + pos: -76.5,-99.5 parent: 2 - - uid: 26176 + - uid: 25795 components: - type: Transform - pos: -82.5,-67.5 + rot: 3.141592653589793 rad + pos: -76.5,-96.5 parent: 2 - - uid: 26177 + - uid: 25796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-63.5 + rot: 3.141592653589793 rad + pos: -76.5,-95.5 parent: 2 - - uid: 26178 + - uid: 25797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-60.5 + rot: 3.141592653589793 rad + pos: -75.5,-92.5 parent: 2 - - uid: 26179 + - uid: 25798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-61.5 + rot: 3.141592653589793 rad + pos: -75.5,-91.5 parent: 2 - - uid: 26180 + - uid: 25799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-58.5 + rot: 3.141592653589793 rad + pos: -74.5,-90.5 parent: 2 - - uid: 26181 + - uid: 25800 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-58.5 + pos: -75.5,-90.5 parent: 2 - - uid: 26182 + - uid: 25801 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,-57.5 + pos: -74.5,-87.5 parent: 2 - - uid: 26183 + - uid: 25802 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,-55.5 + pos: -74.5,-86.5 parent: 2 - - uid: 26184 + - uid: 25803 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-104.5 + pos: -73.5,-86.5 parent: 2 - - uid: 26185 + - uid: 25804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-93.5 + rot: 3.141592653589793 rad + pos: -75.5,-83.5 parent: 2 - - uid: 26186 + - uid: 25805 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-96.5 + pos: -75.5,-82.5 parent: 2 - - uid: 26187 + - uid: 25806 components: - type: Transform - pos: 27.5,-98.5 + rot: 3.141592653589793 rad + pos: 84.5,-81.5 parent: 2 - - uid: 26188 + - uid: 25807 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-110.5 + pos: -56.5,-109.5 parent: 2 - - uid: 26189 + - uid: 25808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-110.5 + rot: 3.141592653589793 rad + pos: -56.5,-110.5 parent: 2 - - uid: 26190 + - uid: 25809 components: - type: Transform - pos: 27.5,-105.5 + rot: 3.141592653589793 rad + pos: -56.5,-111.5 parent: 2 - - uid: 26191 + - uid: 25810 components: - type: Transform - pos: 28.5,-106.5 + rot: 3.141592653589793 rad + pos: -56.5,-112.5 parent: 2 - - uid: 26192 + - uid: 25811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-106.5 + rot: 3.141592653589793 rad + pos: -56.5,-113.5 parent: 2 - - uid: 26193 + - uid: 25812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-108.5 + rot: 3.141592653589793 rad + pos: -56.5,-114.5 parent: 2 - - uid: 26194 + - uid: 25813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-112.5 + rot: 3.141592653589793 rad + pos: -56.5,-115.5 parent: 2 - - uid: 26195 + - uid: 25814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-110.5 + rot: 3.141592653589793 rad + pos: -56.5,-116.5 parent: 2 - - uid: 26196 + - uid: 25815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-108.5 + rot: 3.141592653589793 rad + pos: -54.5,-116.5 parent: 2 - - uid: 26197 + - uid: 25816 components: - type: Transform - pos: 55.5,-108.5 + rot: 3.141592653589793 rad + pos: -54.5,-115.5 parent: 2 - - uid: 26198 + - uid: 25817 components: - type: Transform - pos: 53.5,-110.5 + rot: 3.141592653589793 rad + pos: -54.5,-114.5 parent: 2 - - uid: 26199 + - uid: 25818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-112.5 + rot: 3.141592653589793 rad + pos: -54.5,-113.5 parent: 2 - - uid: 26200 + - uid: 25819 components: - type: Transform - pos: 49.5,-113.5 + rot: 3.141592653589793 rad + pos: -54.5,-112.5 parent: 2 - - uid: 26201 + - uid: 25820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-113.5 + rot: 3.141592653589793 rad + pos: -54.5,-111.5 parent: 2 - - uid: 26202 + - uid: 25821 components: - type: Transform - pos: 51.5,-113.5 + rot: 3.141592653589793 rad + pos: -54.5,-110.5 parent: 2 - - uid: 26203 + - uid: 25822 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-110.5 + pos: -54.5,-109.5 parent: 2 - - uid: 26204 + - uid: 25823 components: - type: Transform - pos: 56.5,-106.5 + rot: 3.141592653589793 rad + pos: -21.5,-104.5 parent: 2 - - uid: 26205 + - uid: 25824 components: - type: Transform - pos: 30.5,-112.5 + rot: 3.141592653589793 rad + pos: -75.5,0.5 parent: 2 - - uid: 26206 + - uid: 25825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-114.5 + rot: 3.141592653589793 rad + pos: -75.5,1.5 parent: 2 - - uid: 26207 + - uid: 25826 components: - type: Transform - pos: 32.5,-114.5 + rot: 3.141592653589793 rad + pos: -75.5,2.5 parent: 2 - - uid: 26208 + - uid: 25827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-114.5 + rot: 3.141592653589793 rad + pos: -75.5,3.5 parent: 2 - - uid: 26209 + - uid: 25828 components: - type: Transform - pos: 38.5,-114.5 + rot: 3.141592653589793 rad + pos: -75.5,4.5 parent: 2 - - uid: 26210 + - uid: 25829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-114.5 + rot: 3.141592653589793 rad + pos: -77.5,0.5 parent: 2 - - uid: 26211 + - uid: 25830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-114.5 + rot: 3.141592653589793 rad + pos: -77.5,1.5 parent: 2 - - uid: 26212 + - uid: 25831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-114.5 + rot: 3.141592653589793 rad + pos: -77.5,2.5 parent: 2 - - uid: 26213 + - uid: 25832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-114.5 + rot: 3.141592653589793 rad + pos: -77.5,3.5 parent: 2 - - uid: 26214 + - uid: 25833 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-93.5 + pos: -77.5,4.5 parent: 2 - - uid: 26215 + - uid: 25834 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-112.5 + pos: -9.5,29.5 parent: 2 - - uid: 26216 + - uid: 25835 components: - type: Transform - pos: 27.5,-90.5 + rot: 3.141592653589793 rad + pos: -91.5,-0.5 parent: 2 - - uid: 26217 + - uid: 25836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-90.5 + rot: 3.141592653589793 rad + pos: -92.5,2.5 parent: 2 - - uid: 26218 + - uid: 25837 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,27.5 + pos: -87.5,26.5 parent: 2 - - uid: 26219 + - uid: 25838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,28.5 + rot: 3.141592653589793 rad + pos: -69.5,-109.5 parent: 2 - - uid: 26220 + - uid: 25839 components: - type: Transform rot: 3.141592653589793 rad - pos: 87.5,-68.5 + pos: -66.5,-110.5 parent: 2 - - uid: 26221 + - uid: 25840 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,15.5 + pos: -75.5,20.5 parent: 2 - - uid: 26222 + - uid: 25841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,16.5 + rot: 3.141592653589793 rad + pos: -65.5,-110.5 parent: 2 - - uid: 26223 + - uid: 25842 components: - type: Transform rot: 3.141592653589793 rad - pos: -72.5,16.5 + pos: -88.5,13.5 parent: 2 - - uid: 26224 + - uid: 25843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,15.5 + rot: 3.141592653589793 rad + pos: -89.5,18.5 parent: 2 - - uid: 26225 + - uid: 25844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,15.5 + rot: 3.141592653589793 rad + pos: -89.5,17.5 parent: 2 - - uid: 26226 + - uid: 25845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-95.5 + rot: 3.141592653589793 rad + pos: -88.5,12.5 parent: 2 - - uid: 26227 + - uid: 25846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-94.5 + rot: 3.141592653589793 rad + pos: -89.5,15.5 parent: 2 - - uid: 26228 + - uid: 25847 components: - type: Transform - pos: -75.5,-81.5 + rot: 3.141592653589793 rad + pos: -88.5,9.5 parent: 2 - - uid: 26229 + - uid: 25848 components: - type: Transform rot: 3.141592653589793 rad - pos: -74.5,-88.5 + pos: -87.5,7.5 parent: 2 - - uid: 26230 + - uid: 25849 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-97.5 + pos: -85.5,5.5 parent: 2 - - uid: 26231 + - uid: 25850 components: - type: Transform - pos: -74.5,-102.5 + rot: 3.141592653589793 rad + pos: -82.5,5.5 parent: 2 - - uid: 26232 + - uid: 25851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-100.5 + rot: 3.141592653589793 rad + pos: -90.5,-1.5 parent: 2 - - uid: 26233 + - uid: 25852 components: - type: Transform - pos: -60.5,-94.5 + rot: 3.141592653589793 rad + pos: -73.5,18.5 parent: 2 - - uid: 26234 + - uid: 25853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-94.5 + rot: 3.141592653589793 rad + pos: -89.5,-17.5 parent: 2 - - uid: 26235 + - uid: 25854 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,-94.5 + pos: -91.5,-15.5 parent: 2 - - uid: 26236 + - uid: 25855 components: - type: Transform - pos: -93.5,-0.5 + rot: 3.141592653589793 rad + pos: -92.5,-15.5 parent: 2 - - uid: 26237 + - uid: 25856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,-0.5 + rot: 3.141592653589793 rad + pos: -92.5,-14.5 parent: 2 - - uid: 26238 + - uid: 25857 components: - type: Transform - pos: -92.5,-0.5 + rot: 3.141592653589793 rad + pos: -93.5,-11.5 parent: 2 - - uid: 26239 + - uid: 25858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-0.5 + rot: 3.141592653589793 rad + pos: -93.5,-10.5 parent: 2 - - uid: 26240 + - uid: 25859 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,19.5 + pos: -93.5,-7.5 parent: 2 - - uid: 26241 + - uid: 25860 components: - type: Transform - pos: -89.5,19.5 + rot: 3.141592653589793 rad + pos: -93.5,-6.5 parent: 2 - - uid: 26242 + - uid: 25861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,19.5 + rot: 3.141592653589793 rad + pos: -93.5,-5.5 parent: 2 - - uid: 26243 + - uid: 25862 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,11.5 + pos: -40.5,-4.5 parent: 2 - - uid: 26244 + - uid: 25863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,18.5 + rot: 3.141592653589793 rad + pos: -47.5,-17.5 parent: 2 - - uid: 26245 + - uid: 25864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-15.5 + rot: 3.141592653589793 rad + pos: -48.5,-17.5 parent: 2 - - uid: 26246 + - uid: 25865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-8.5 + rot: 3.141592653589793 rad + pos: -49.5,-17.5 parent: 2 - - uid: 26247 + - uid: 25866 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-8.5 + pos: -61.5,-114.5 parent: 2 - - uid: 26248 + - uid: 25867 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-116.5 + pos: -62.5,-111.5 parent: 2 - - uid: 26249 + - uid: 25868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-126.5 + rot: 3.141592653589793 rad + pos: -61.5,-111.5 parent: 2 - - uid: 26250 + - uid: 25869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-126.5 + rot: 3.141592653589793 rad + pos: -61.5,-112.5 parent: 2 - - uid: 26251 + - uid: 25870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-124.5 + rot: 3.141592653589793 rad + pos: -61.5,-115.5 parent: 2 - - uid: 26252 + - uid: 25871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-125.5 + rot: 3.141592653589793 rad + pos: -50.5,-124.5 parent: 2 - - uid: 26253 + - uid: 25872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-128.5 + rot: 3.141592653589793 rad + pos: -62.5,-124.5 parent: 2 - - uid: 26254 + - uid: 25873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 95.5,-96.5 + rot: 3.141592653589793 rad + pos: -61.5,-124.5 parent: 2 - - uid: 26255 + - uid: 25874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 109.5,-62.5 + rot: 3.141592653589793 rad + pos: -59.5,-126.5 parent: 2 - - uid: 26256 + - uid: 25875 components: - type: Transform - pos: 109.5,-62.5 + rot: 3.141592653589793 rad + pos: -57.5,-125.5 parent: 2 - - uid: 26257 + - uid: 25876 components: - type: Transform - pos: 109.5,-65.5 + rot: 3.141592653589793 rad + pos: -55.5,-124.5 parent: 2 - - uid: 26258 + - uid: 25877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 109.5,-65.5 + rot: 3.141592653589793 rad + pos: -54.5,-124.5 parent: 2 - - uid: 26259 + - uid: 25878 components: - type: Transform rot: 3.141592653589793 rad - pos: 110.5,-69.5 + pos: -53.5,-124.5 parent: 2 - - uid: 26260 + - uid: 25879 components: - type: Transform rot: 3.141592653589793 rad - pos: 109.5,-75.5 + pos: -49.5,-124.5 parent: 2 - - uid: 26261 + - uid: 25880 components: - type: Transform - pos: 109.5,-75.5 + rot: 3.141592653589793 rad + pos: -49.5,-125.5 parent: 2 - - uid: 26262 + - uid: 25881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 109.5,-75.5 + rot: 3.141592653589793 rad + pos: -41.5,-128.5 parent: 2 - - uid: 26263 + - uid: 25882 components: - type: Transform rot: 3.141592653589793 rad - pos: 109.5,-84.5 + pos: -45.5,-126.5 parent: 2 - - uid: 26264 + - uid: 25883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-93.5 + rot: 3.141592653589793 rad + pos: -44.5,-126.5 parent: 2 - - uid: 26265 + - uid: 25884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 104.5,-93.5 + rot: 3.141592653589793 rad + pos: -47.5,-125.5 parent: 2 - - uid: 26266 + - uid: 25885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 99.5,-97.5 + rot: 3.141592653589793 rad + pos: -40.5,-128.5 parent: 2 - - uid: 26267 + - uid: 25886 components: - type: Transform - pos: 99.5,-97.5 + rot: 3.141592653589793 rad + pos: -37.5,-127.5 parent: 2 - - uid: 26268 + - uid: 25887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-96.5 + rot: 3.141592653589793 rad + pos: -36.5,-128.5 parent: 2 - - uid: 26269 + - uid: 25888 components: - type: Transform - pos: 89.5,-86.5 + rot: 3.141592653589793 rad + pos: -36.5,-127.5 parent: 2 - - uid: 26270 + - uid: 25889 components: - type: Transform rot: 3.141592653589793 rad - pos: 84.5,-82.5 + pos: -32.5,-127.5 parent: 2 - - uid: 26271 + - uid: 25890 components: - type: Transform - pos: 87.5,-82.5 + rot: 3.141592653589793 rad + pos: -32.5,-126.5 parent: 2 - - uid: 26272 + - uid: 25891 components: - type: Transform - pos: 86.5,-82.5 + rot: 3.141592653589793 rad + pos: -30.5,-125.5 parent: 2 - - uid: 26273 + - uid: 25892 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,35.5 + pos: -29.5,-123.5 parent: 2 - - uid: 26274 + - uid: 25893 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,30.5 + pos: -28.5,-123.5 parent: 2 - - uid: 26275 + - uid: 25894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,34.5 + rot: 3.141592653589793 rad + pos: -28.5,-122.5 parent: 2 - - uid: 26276 + - uid: 25895 components: - type: Transform rot: 3.141592653589793 rad - pos: 111.5,-37.5 + pos: -25.5,-120.5 parent: 2 - - uid: 26277 + - uid: 25896 components: - type: Transform rot: 3.141592653589793 rad - pos: 115.5,-45.5 + pos: -24.5,-120.5 parent: 2 - - uid: 26278 + - uid: 25897 components: - type: Transform - pos: 115.5,-46.5 + rot: 3.141592653589793 rad + pos: -22.5,-118.5 parent: 2 - - uid: 26279 + - uid: 25898 components: - type: Transform - pos: 114.5,-48.5 + rot: 3.141592653589793 rad + pos: -22.5,-117.5 parent: 2 - - uid: 26280 + - uid: 25899 components: - type: Transform - pos: 112.5,-51.5 + rot: 3.141592653589793 rad + pos: -22.5,-114.5 parent: 2 - - uid: 26281 + - uid: 25900 components: - type: Transform - pos: -90.5,-26.5 + rot: 3.141592653589793 rad + pos: -22.5,-112.5 parent: 2 - - uid: 26282 + - uid: 25901 components: - type: Transform - pos: -92.5,-20.5 + rot: 3.141592653589793 rad + pos: -21.5,-110.5 parent: 2 - - uid: 26283 + - uid: 25902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-24.5 + rot: 3.141592653589793 rad + pos: -20.5,-110.5 parent: 2 - - uid: 26284 + - uid: 25903 components: - type: Transform - pos: -76.5,24.5 + rot: 3.141592653589793 rad + pos: -20.5,-109.5 parent: 2 - - uid: 26285 + - uid: 25904 components: - type: Transform - pos: -88.5,24.5 + rot: 3.141592653589793 rad + pos: -19.5,-106.5 parent: 2 - - uid: 26286 + - uid: 25905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,26.5 + rot: 3.141592653589793 rad + pos: -19.5,-107.5 parent: 2 - - uid: 26287 + - uid: 25906 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,27.5 + pos: -18.5,-106.5 parent: 2 - - uid: 26288 + - uid: 25907 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,29.5 + pos: 97.5,-97.5 parent: 2 - - uid: 26289 + - uid: 25908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,32.5 + rot: 3.141592653589793 rad + pos: 96.5,-97.5 parent: 2 - - uid: 26290 + - uid: 25909 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-93.5 + pos: 96.5,-96.5 parent: 2 - - uid: 26291 + - uid: 25910 components: - type: Transform - pos: 69.5,-94.5 + rot: 3.141592653589793 rad + pos: 100.5,-97.5 parent: 2 - - uid: 26292 + - uid: 25911 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,-97.5 + pos: 102.5,-96.5 parent: 2 - - uid: 26293 + - uid: 25912 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,-99.5 + pos: 102.5,-95.5 parent: 2 - - uid: 26294 + - uid: 25913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-99.5 + rot: 3.141592653589793 rad + pos: 93.5,-94.5 parent: 2 - - uid: 26295 + - uid: 25914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-98.5 + rot: 3.141592653589793 rad + pos: 94.5,-94.5 parent: 2 - - uid: 26296 + - uid: 25915 components: - type: Transform - pos: 84.5,-91.5 + rot: 3.141592653589793 rad + pos: 103.5,-93.5 parent: 2 - - uid: 26297 + - uid: 25916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-90.5 + rot: 3.141592653589793 rad + pos: 94.5,-96.5 parent: 2 - - uid: 26298 + - uid: 25917 components: - type: Transform - pos: 90.5,-91.5 + rot: 3.141592653589793 rad + pos: 83.5,-81.5 parent: 2 - - uid: 26299 + - uid: 25918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,27.5 + rot: 3.141592653589793 rad + pos: 89.5,-87.5 parent: 2 - - uid: 26300 + - uid: 25919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,13.5 + rot: 3.141592653589793 rad + pos: 87.5,-83.5 parent: 2 - - uid: 26301 + - uid: 25920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,10.5 + rot: 3.141592653589793 rad + pos: 87.5,-84.5 parent: 2 - - uid: 26302 + - uid: 25921 components: - type: Transform rot: 3.141592653589793 rad - pos: 90.5,1.5 + pos: 87.5,-85.5 parent: 2 - - uid: 26303 + - uid: 25922 components: - type: Transform - pos: 93.5,-3.5 + rot: 3.141592653589793 rad + pos: 89.5,-88.5 parent: 2 - - uid: 26304 + - uid: 25923 components: - type: Transform rot: 3.141592653589793 rad - pos: 93.5,-7.5 + pos: 89.5,-89.5 parent: 2 -- proto: GrilleDiagonal - entities: - - uid: 26305 + - uid: 25924 components: - type: Transform - pos: -11.5,25.5 + rot: 3.141592653589793 rad + pos: 90.5,-93.5 parent: 2 - - uid: 26306 + - uid: 25925 components: - type: Transform - pos: -10.5,26.5 + rot: 3.141592653589793 rad + pos: 90.5,-92.5 parent: 2 - - uid: 26307 + - uid: 25926 components: - type: Transform - pos: -6.5,27.5 + rot: 3.141592653589793 rad + pos: 105.5,-93.5 parent: 2 - - uid: 26308 + - uid: 25927 components: - type: Transform - pos: -3.5,28.5 + rot: 3.141592653589793 rad + pos: 91.5,-93.5 parent: 2 - - uid: 26309 + - uid: 25928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,28.5 + rot: 3.141592653589793 rad + pos: 106.5,-93.5 parent: 2 - - uid: 26310 + - uid: 25929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,27.5 + rot: 3.141592653589793 rad + pos: 106.5,-92.5 parent: 2 - - uid: 26311 + - uid: 25930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,26.5 + rot: 3.141592653589793 rad + pos: 108.5,-85.5 parent: 2 - - uid: 26312 + - uid: 25931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,25.5 + rot: 3.141592653589793 rad + pos: 107.5,-89.5 parent: 2 - - uid: 26313 + - uid: 25932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-0.5 + rot: 3.141592653589793 rad + pos: 107.5,-88.5 parent: 2 - - uid: 26314 + - uid: 25933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,24.5 + rot: 3.141592653589793 rad + pos: 107.5,-85.5 parent: 2 - - uid: 26315 + - uid: 25934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,23.5 + rot: 3.141592653589793 rad + pos: 107.5,-86.5 parent: 2 - - uid: 40754 + - uid: 25935 components: - type: Transform - pos: -0.5,5.5 - parent: 40666 - - uid: 40755 + rot: 3.141592653589793 rad + pos: 110.5,-77.5 + parent: 2 + - uid: 25936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 40666 - - uid: 41835 + rot: 3.141592653589793 rad + pos: 109.5,-83.5 + parent: 2 + - uid: 25937 components: - type: Transform - pos: 2.5,5.5 - parent: 41669 - - uid: 41836 + rot: 3.141592653589793 rad + pos: 110.5,-81.5 + parent: 2 + - uid: 25938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,5.5 - parent: 41669 -- proto: GrilleSpawner - entities: - - uid: 26316 + rot: 3.141592653589793 rad + pos: 110.5,-80.5 + parent: 2 + - uid: 25939 components: - type: Transform - pos: -46.5,-73.5 + rot: 3.141592653589793 rad + pos: 109.5,-76.5 parent: 2 - - uid: 26317 + - uid: 25940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-95.5 + rot: 3.141592653589793 rad + pos: 110.5,-76.5 parent: 2 - - uid: 26318 + - uid: 25941 components: - type: Transform - pos: 24.5,33.5 + rot: 3.141592653589793 rad + pos: 109.5,-74.5 parent: 2 - - uid: 26319 + - uid: 25942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-95.5 + rot: 3.141592653589793 rad + pos: 110.5,-72.5 parent: 2 - - uid: 26320 + - uid: 25943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-96.5 + rot: 3.141592653589793 rad + pos: 110.5,-71.5 parent: 2 - - uid: 26321 + - uid: 25944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-97.5 + rot: 3.141592653589793 rad + pos: 110.5,-68.5 parent: 2 - - uid: 26322 + - uid: 25945 components: - type: Transform - pos: 58.5,-45.5 + rot: 3.141592653589793 rad + pos: 110.5,-67.5 parent: 2 - - uid: 26323 + - uid: 25946 components: - type: Transform - pos: 59.5,-45.5 + rot: 3.141592653589793 rad + pos: 109.5,-66.5 parent: 2 - - uid: 26324 + - uid: 25947 components: - type: Transform - pos: 64.5,-86.5 + rot: 3.141592653589793 rad + pos: 109.5,-63.5 parent: 2 - - uid: 26325 + - uid: 25948 components: - type: Transform - pos: -59.5,-89.5 + rot: 3.141592653589793 rad + pos: 108.5,-62.5 parent: 2 - - uid: 26326 + - uid: 25949 components: - type: Transform - pos: -60.5,-91.5 + rot: 3.141592653589793 rad + pos: 107.5,-62.5 parent: 2 - - uid: 26327 + - uid: 25950 components: - type: Transform - pos: 2.5,-103.5 + rot: 3.141592653589793 rad + pos: -55.5,-26.5 parent: 2 - - uid: 26328 + - uid: 25951 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-106.5 + pos: -23.5,-90.5 parent: 2 - - uid: 26329 + - uid: 25952 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-106.5 + pos: -22.5,-90.5 parent: 2 - - uid: 26330 + - uid: 25953 components: - type: Transform - pos: 2.5,-106.5 + rot: 3.141592653589793 rad + pos: 45.5,36.5 parent: 2 - - uid: 26331 + - uid: 25954 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-46.5 + pos: 47.5,34.5 parent: 2 - - uid: 26332 + - uid: 25955 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,13.5 + pos: 48.5,31.5 parent: 2 - - uid: 26333 + - uid: 25956 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,13.5 + pos: 47.5,33.5 parent: 2 - - uid: 26334 + - uid: 25957 components: - type: Transform - pos: -58.5,-0.5 + rot: 3.141592653589793 rad + pos: 112.5,-52.5 parent: 2 - - uid: 26335 + - uid: 25958 components: - type: Transform - pos: -58.5,-1.5 + rot: 3.141592653589793 rad + pos: 114.5,-50.5 parent: 2 - - uid: 26336 + - uid: 25959 components: - type: Transform - pos: -58.5,-2.5 + rot: 3.141592653589793 rad + pos: 114.5,-49.5 parent: 2 - - uid: 26337 + - uid: 25960 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-61.5 + pos: 115.5,-43.5 parent: 2 - - uid: 26338 + - uid: 25961 components: - type: Transform - pos: -51.5,-93.5 + rot: 3.141592653589793 rad + pos: 115.5,-44.5 parent: 2 - - uid: 26339 + - uid: 25962 components: - type: Transform - pos: 11.5,-107.5 + rot: 3.141592653589793 rad + pos: 115.5,-47.5 parent: 2 - - uid: 26340 + - uid: 25963 components: - type: Transform - pos: -47.5,19.5 + rot: 3.141592653589793 rad + pos: -44.5,-35.5 parent: 2 - - uid: 26341 + - uid: 25964 components: - type: Transform - pos: -45.5,19.5 + rot: 3.141592653589793 rad + pos: -45.5,-14.5 parent: 2 - - uid: 26342 + - uid: 25965 components: - type: Transform - pos: 0.5,-102.5 + rot: 3.141592653589793 rad + pos: -92.5,-18.5 parent: 2 - - uid: 26343 + - uid: 25966 components: - type: Transform - pos: -46.5,19.5 + rot: 3.141592653589793 rad + pos: -92.5,-19.5 parent: 2 - - uid: 26344 + - uid: 25967 components: - type: Transform - pos: -52.5,20.5 + rot: 3.141592653589793 rad + pos: -92.5,-23.5 parent: 2 - - uid: 26345 + - uid: 25968 components: - type: Transform - pos: -42.5,21.5 + rot: 3.141592653589793 rad + pos: -92.5,-24.5 parent: 2 - - uid: 26346 + - uid: 25969 components: - type: Transform - pos: -50.5,21.5 + rot: 3.141592653589793 rad + pos: -90.5,-28.5 parent: 2 - - uid: 26347 + - uid: 25970 components: - type: Transform - pos: -50.5,19.5 + rot: 3.141592653589793 rad + pos: -90.5,-27.5 parent: 2 - - uid: 26348 + - uid: 25971 components: - type: Transform - pos: -48.5,20.5 + rot: 3.141592653589793 rad + pos: -92.5,-21.5 parent: 2 - - uid: 26349 + - uid: 25972 components: - type: Transform - pos: -44.5,20.5 + rot: 3.141592653589793 rad + pos: -85.5,-23.5 parent: 2 - - uid: 26350 + - uid: 25973 components: - type: Transform - pos: -40.5,20.5 + rot: 3.141592653589793 rad + pos: -40.5,-2.5 parent: 2 - - uid: 26351 + - uid: 25974 components: - type: Transform - pos: -42.5,19.5 + rot: 3.141592653589793 rad + pos: -28.5,-4.5 parent: 2 - - uid: 26352 + - uid: 25975 components: - type: Transform - pos: 64.5,-91.5 + rot: 3.141592653589793 rad + pos: -23.5,-0.5 parent: 2 - - uid: 26353 + - uid: 25976 components: - type: Transform - pos: 87.5,-13.5 + rot: 3.141592653589793 rad + pos: -9.5,1.5 parent: 2 - - uid: 26354 + - uid: 25977 components: - type: Transform - pos: -48.5,13.5 + rot: 3.141592653589793 rad + pos: -9.5,0.5 parent: 2 - - uid: 26355 + - uid: 25978 components: - type: Transform - pos: 79.5,-81.5 + rot: 3.141592653589793 rad + pos: -36.5,-24.5 parent: 2 - - uid: 26356 + - uid: 25979 components: - type: Transform - pos: 86.5,-15.5 + rot: 3.141592653589793 rad + pos: -35.5,-24.5 parent: 2 - - uid: 26357 + - uid: 25980 components: - type: Transform - pos: 24.5,29.5 + rot: 3.141592653589793 rad + pos: 5.5,-77.5 parent: 2 - - uid: 26358 + - uid: 25981 components: - type: Transform - pos: 21.5,27.5 + rot: 3.141592653589793 rad + pos: 4.5,-77.5 parent: 2 - - uid: 26359 + - uid: 25982 components: - type: Transform - pos: 1.5,32.5 + rot: 3.141592653589793 rad + pos: 24.5,31.5 parent: 2 - - uid: 26360 + - uid: 25983 components: - type: Transform - pos: 4.5,31.5 + rot: 3.141592653589793 rad + pos: -88.5,22.5 parent: 2 - - uid: 26361 + - uid: 25984 components: - type: Transform - pos: -7.5,30.5 + rot: 3.141592653589793 rad + pos: -88.5,23.5 parent: 2 - - uid: 26362 + - uid: 25985 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,27.5 + pos: -86.5,26.5 parent: 2 - - uid: 26363 + - uid: 25986 components: - type: Transform - pos: -14.5,26.5 + rot: 3.141592653589793 rad + pos: -85.5,30.5 parent: 2 - - uid: 26364 + - uid: 25987 components: - type: Transform - pos: -11.5,29.5 + rot: 3.141592653589793 rad + pos: -85.5,31.5 parent: 2 - - uid: 26365 + - uid: 25988 components: - type: Transform - pos: -31.5,21.5 + rot: 3.141592653589793 rad + pos: -76.5,22.5 parent: 2 - - uid: 26366 + - uid: 25989 components: - type: Transform - pos: -24.5,21.5 + rot: 3.141592653589793 rad + pos: -82.5,32.5 parent: 2 - - uid: 26367 + - uid: 25990 components: - type: Transform - pos: -19.5,22.5 + rot: 3.141592653589793 rad + pos: -81.5,32.5 parent: 2 - - uid: 26368 + - uid: 25991 components: - type: Transform - pos: -21.5,22.5 + rot: 3.141592653589793 rad + pos: -79.5,30.5 parent: 2 - - uid: 26369 + - uid: 25992 components: - type: Transform - pos: -58.5,17.5 + rot: 3.141592653589793 rad + pos: -79.5,28.5 parent: 2 - - uid: 26370 + - uid: 25993 components: - type: Transform - pos: -56.5,19.5 + rot: 3.141592653589793 rad + pos: -77.5,26.5 parent: 2 - - uid: 26371 + - uid: 25994 components: - type: Transform - pos: -59.5,16.5 + rot: 3.141592653589793 rad + pos: -76.5,26.5 parent: 2 - - uid: 26372 + - uid: 25995 components: - type: Transform - pos: -61.5,16.5 + rot: 3.141592653589793 rad + pos: -76.5,23.5 parent: 2 - - uid: 26373 + - uid: 25996 components: - type: Transform - pos: -78.5,-75.5 + rot: 3.141592653589793 rad + pos: -73.5,-109.5 parent: 2 - - uid: 26374 + - uid: 25997 components: - type: Transform - pos: -83.5,-66.5 + rot: 3.141592653589793 rad + pos: -70.5,-109.5 parent: 2 - - uid: 26375 + - uid: 25998 components: - type: Transform - pos: -83.5,-60.5 + rot: 3.141592653589793 rad + pos: -74.5,-107.5 parent: 2 - - uid: 26376 + - uid: 25999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-101.5 + rot: 3.141592653589793 rad + pos: -68.5,-107.5 parent: 2 - - uid: 26377 + - uid: 26000 components: - type: Transform - pos: 58.5,-105.5 + rot: 3.141592653589793 rad + pos: 77.5,-75.5 parent: 2 - - uid: 26378 + - uid: 26001 components: - type: Transform - pos: 59.5,-103.5 + rot: 3.141592653589793 rad + pos: 78.5,-75.5 parent: 2 - - uid: 26379 + - uid: 26002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,39.5 + rot: 3.141592653589793 rad + pos: 75.5,-75.5 parent: 2 - - uid: 26380 + - uid: 26003 components: - type: Transform - pos: -69.5,16.5 + rot: 3.141592653589793 rad + pos: 71.5,-74.5 parent: 2 - - uid: 26381 + - uid: 26004 components: - type: Transform - pos: -62.5,15.5 + rot: 3.141592653589793 rad + pos: 72.5,-74.5 parent: 2 - - uid: 26382 + - uid: 26005 components: - type: Transform - pos: -49.5,-74.5 + rot: 3.141592653589793 rad + pos: 64.5,-89.5 parent: 2 - - uid: 26383 + - uid: 26006 components: - type: Transform - pos: -46.5,-74.5 + rot: 3.141592653589793 rad + pos: 77.5,-99.5 parent: 2 - - uid: 26384 + - uid: 26007 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,5.5 + pos: 76.5,-99.5 parent: 2 - - uid: 26385 + - uid: 26008 components: - type: Transform rot: 3.141592653589793 rad - pos: -83.5,5.5 + pos: 73.5,-98.5 parent: 2 - - uid: 26386 + - uid: 26009 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-4.5 + pos: 74.5,-98.5 parent: 2 - - uid: 26387 + - uid: 26010 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-12.5 + pos: 80.5,-98.5 parent: 2 - - uid: 26388 + - uid: 26011 components: - type: Transform - pos: -63.5,-111.5 + rot: 3.141592653589793 rad + pos: 71.5,-98.5 parent: 2 - - uid: 26389 + - uid: 26012 components: - type: Transform - pos: -48.5,-125.5 + rot: 3.141592653589793 rad + pos: 70.5,-98.5 parent: 2 - - uid: 26390 + - uid: 26013 components: - type: Transform - pos: -57.5,-126.5 + rot: 3.141592653589793 rad + pos: 69.5,-96.5 parent: 2 - - uid: 26391 + - uid: 26014 components: - type: Transform - pos: -42.5,-128.5 + rot: 3.141592653589793 rad + pos: 69.5,-95.5 parent: 2 - - uid: 26392 + - uid: 26015 components: - type: Transform - pos: -35.5,-128.5 + rot: 3.141592653589793 rad + pos: 81.5,-98.5 parent: 2 - - uid: 26393 + - uid: 26016 components: - type: Transform - pos: -32.5,-128.5 + rot: 3.141592653589793 rad + pos: 68.5,-92.5 parent: 2 - - uid: 26394 + - uid: 26017 components: - type: Transform - pos: -26.5,-120.5 + rot: 3.141592653589793 rad + pos: 83.5,-96.5 parent: 2 - - uid: 26395 + - uid: 26018 components: - type: Transform - pos: -28.5,-121.5 + rot: 3.141592653589793 rad + pos: 83.5,-95.5 parent: 2 - - uid: 26396 + - uid: 26019 components: - type: Transform - pos: -22.5,-113.5 + rot: 3.141592653589793 rad + pos: 84.5,-93.5 parent: 2 - - uid: 26397 + - uid: 26020 components: - type: Transform - pos: -22.5,-110.5 + rot: 3.141592653589793 rad + pos: 84.5,-92.5 parent: 2 - - uid: 26398 + - uid: 26021 components: - type: Transform - pos: 89.5,-90.5 + rot: 3.141592653589793 rad + pos: 86.5,-90.5 parent: 2 - - uid: 26399 + - uid: 26022 components: - type: Transform - pos: 82.5,-81.5 + rot: 3.141592653589793 rad + pos: 87.5,-90.5 parent: 2 - - uid: 26400 + - uid: 26023 components: - type: Transform - pos: 101.5,-96.5 + rot: 3.141592653589793 rad + pos: 68.5,-91.5 parent: 2 - - uid: 26401 + - uid: 26024 components: - type: Transform - pos: 110.5,-66.5 + rot: 3.141592653589793 rad + pos: 67.5,-89.5 parent: 2 - - uid: 26402 + - uid: 26025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,36.5 + rot: 3.141592653589793 rad + pos: 66.5,-89.5 parent: 2 - - uid: 26403 + - uid: 26026 components: - type: Transform - anchored: False - pos: 68.5,-90.5 + pos: 56.5,-91.5 parent: 2 - - uid: 26404 + - uid: 26027 components: - type: Transform - pos: 74.5,-74.5 + pos: 56.5,-90.5 parent: 2 - - uid: 26405 + - uid: 26028 components: - type: Transform - pos: 70.5,-74.5 + pos: 56.5,-89.5 parent: 2 - - uid: 26406 + - uid: 26029 components: - type: Transform - pos: 9.5,-113.5 + pos: 56.5,-88.5 parent: 2 - - uid: 26407 + - uid: 26030 components: - type: Transform - pos: 13.5,-113.5 + pos: -37.5,-35.5 parent: 2 - - uid: 26408 + - uid: 26031 components: - type: Transform - pos: 4.5,-110.5 + pos: -14.5,-10.5 parent: 2 - - uid: 26409 + - uid: 26032 components: - type: Transform - pos: 85.5,6.5 + pos: -13.5,-10.5 parent: 2 - - uid: 26410 + - uid: 26033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-1.5 + pos: 74.5,-6.5 parent: 2 -- proto: GunpetInstrument - entities: - - uid: 26411 + - uid: 26034 components: - - type: MetaData - name: микроволновая пушка - type: Transform - pos: 12.604113,-15.40472 + pos: -12.5,-10.5 parent: 2 -- proto: GunSafe - entities: - - uid: 2435 + - uid: 26035 components: - type: Transform - pos: 12.5,-20.5 + pos: -18.5,-12.5 parent: 2 - - type: AccessReader - access: - - - NuclearOperative - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2436 - - 2437 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 2469 + - uid: 26036 components: - type: Transform - pos: -1.5,-32.5 + pos: -18.5,-13.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2470 - - 2471 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 26412 + - uid: 26037 components: - - type: MetaData - name: сейф для секретов - type: Transform - anchored: True - pos: -4.5,-8.5 + pos: 45.5,-5.5 parent: 2 - - type: AccessReader - access: - - - Captain - - - HeadOfSecurity - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8977377 - - 7.139109 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26413 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Pullable - prevFixedRotation: True - - uid: 26414 + - uid: 26038 components: - - type: MetaData - name: сейф с жетонами - type: Transform - pos: -59.5,11.5 + pos: -18.5,-14.5 parent: 2 - - type: AccessReader - access: - - - HeadOfPersonnel - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26418 - - 26419 - - 26417 - - 26415 - - 26422 - - 26421 - - 26416 - - 26420 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 26423 + - uid: 26039 components: - type: Transform - pos: 8.5,-20.5 + pos: -18.5,-15.5 parent: 2 - - type: AccessReader - access: - - - Salvage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26424 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 40879 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 40881 - - 40882 - - 40880 - - 40883 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41318 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41321 - - 41319 - - 41320 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: GunSafeDisabler - entities: - - uid: 26425 + - uid: 26040 components: - type: Transform - pos: 55.5,-20.5 + pos: -18.5,-16.5 parent: 2 -- proto: GunSafeLaserCarbine - entities: - - uid: 26426 + - uid: 26041 components: - type: Transform - pos: 62.5,-11.5 + pos: 90.5,-3.5 parent: 2 -- proto: GunSafePistolMk58 - entities: - - uid: 26427 + - uid: 26042 components: - type: Transform - pos: 65.5,-11.5 + pos: 90.5,-4.5 parent: 2 -- proto: GunSafeRifleLecter - entities: - - uid: 26428 + - uid: 26043 components: - type: Transform - pos: 63.5,-17.5 + pos: 90.5,-6.5 parent: 2 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 26429 + - uid: 26044 components: - type: Transform - pos: 64.5,-17.5 + pos: 90.5,-7.5 parent: 2 -- proto: Gyroscope - entities: - - uid: 40756 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 40666 - - uid: 41837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 41669 -- proto: GyroscopeFlatpack - entities: - - uid: 26430 + - uid: 26045 components: - type: Transform - pos: -22.45288,-46.535347 + pos: 90.5,-5.5 parent: 2 -- proto: Handcuffs - entities: - - uid: 26431 + - uid: 26046 components: - type: Transform - rot: 6.283185307179586 rad - pos: 52.60071,-17.486929 + rot: 1.5707963267948966 rad + pos: 55.5,9.5 parent: 2 - - uid: 26432 + - uid: 26047 components: - type: Transform - rot: 6.283185307179586 rad - pos: 52.545673,-17.560314 + pos: 4.5,-112.5 parent: 2 - - uid: 26433 + - uid: 26048 components: - type: Transform - rot: 6.283185307179586 rad - pos: 52.619057,-17.52362 + pos: 62.5,-6.5 parent: 2 - - uid: 26434 + - uid: 26049 components: - type: Transform - pos: -7.590296,1.7182901 + pos: 64.5,-6.5 parent: 2 - - uid: 26435 + - uid: 26050 components: - type: Transform - pos: -2.5020196,13.503156 + pos: 77.5,-0.5 parent: 2 - - uid: 26436 + - uid: 26051 components: - type: Transform - pos: 73.72027,-26.411335 + pos: 79.5,-0.5 parent: 2 - - uid: 26437 + - uid: 26052 components: - type: Transform - pos: -47.30249,-46.404476 + pos: 81.5,-0.5 parent: 2 - - uid: 26438 + - uid: 26053 components: - type: Transform - pos: 80.95268,3.7681172 + pos: 83.5,-0.5 parent: 2 - - uid: 26439 + - uid: 26054 components: - type: Transform - pos: 42.548824,-11.543914 + pos: 85.5,-0.5 parent: 2 -- proto: HandheldGPSBasic - entities: - - uid: 26441 + - uid: 26055 components: - type: Transform - parent: 26440 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26442 + pos: 87.5,-0.5 + parent: 2 + - uid: 26056 components: - type: Transform - pos: -2.3341408,17.567802 + rot: 1.5707963267948966 rad + pos: 55.5,11.5 parent: 2 - - uid: 26443 + - uid: 26057 components: - type: Transform - pos: -8.519856,-96.43567 + pos: -37.5,20.5 parent: 2 -- proto: HandheldHealthAnalyzer - entities: - - uid: 26444 + - uid: 26058 components: - type: Transform - pos: 62.341415,-4.6432304 + pos: -95.5,-9.5 parent: 2 - - uid: 26445 + - uid: 26059 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.3343987,19.591106 + pos: -97.5,-9.5 parent: 2 - - uid: 26446 + - uid: 26060 components: - type: Transform - pos: -1.5541707,-35.49254 + rot: 1.5707963267948966 rad + pos: -96.5,-9.5 parent: 2 -- proto: HandheldHealthAnalyzerUnpowered - entities: - - uid: 26447 + - uid: 26061 components: - type: Transform - pos: -68.47285,-49.354755 + rot: -1.5707963267948966 rad + pos: 54.5,22.5 parent: 2 - - uid: 26448 + - uid: 26062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.32156,-5.4472365 + rot: -1.5707963267948966 rad + pos: 49.5,24.5 parent: 2 - - uid: 26449 + - uid: 26063 components: - type: Transform - pos: 83.284225,-9.472714 + rot: -1.5707963267948966 rad + pos: 53.5,23.5 parent: 2 -- proto: HandHeldMassScanner - entities: - - uid: 26450 + - uid: 26064 components: - type: Transform - pos: 19.483318,-12.427057 + rot: -1.5707963267948966 rad + pos: 52.5,24.5 parent: 2 - - uid: 41322 + - uid: 26065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5011597,-6.9646606 - parent: 40828 -- proto: HandheldStationMap - entities: - - uid: 26451 + rot: -1.5707963267948966 rad + pos: 50.5,24.5 + parent: 2 + - uid: 26066 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.615925,-52.310795 + pos: 51.5,24.5 parent: 2 - - uid: 26452 + - uid: 26067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.431866,24.706774 + rot: -1.5707963267948966 rad + pos: 54.5,27.5 parent: 2 - - uid: 26453 + - uid: 26068 components: - type: Transform - pos: -31.679695,-95.45278 + rot: -1.5707963267948966 rad + pos: 53.5,27.5 parent: 2 - - uid: 26454 + - uid: 26069 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.534402,-103.27963 + pos: 71.5,14.5 parent: 2 - - uid: 26455 + - uid: 26070 components: - type: Transform - pos: 66.536896,-26.568066 + pos: 46.5,-11.5 parent: 2 - - uid: 26456 + - uid: 26071 components: - type: Transform - pos: 16.484941,-27.410738 + pos: 56.5,-80.5 parent: 2 -- proto: HandLabeler - entities: - - uid: 26457 + - uid: 26072 components: - type: Transform - pos: 67.05984,-27.312744 + pos: 56.5,-82.5 parent: 2 - - uid: 26458 + - uid: 26073 components: - type: Transform - pos: -27.49639,-77.098885 + pos: 59.5,-82.5 parent: 2 - - uid: 26459 + - uid: 26074 components: - type: Transform - pos: 50.990173,-53.741455 + pos: 59.5,-80.5 parent: 2 - - uid: 26460 + - uid: 26075 components: - type: Transform - pos: 34.196903,-71.29056 + pos: 93.5,-5.5 parent: 2 - - uid: 26461 + - uid: 26076 components: - type: Transform - pos: -35.393368,-27.351479 + pos: 52.5,-6.5 parent: 2 - - uid: 26462 + - uid: 26077 components: - type: Transform - pos: -57.473927,-32.84579 + rot: -1.5707963267948966 rad + pos: 72.5,14.5 parent: 2 -- proto: HappyHonk - entities: - - uid: 26463 + - uid: 26078 components: - type: Transform - pos: 31.546932,4.9642363 + rot: -1.5707963267948966 rad + pos: 73.5,14.5 parent: 2 -- proto: HeadBorgJanitor - entities: - - uid: 26464 + - uid: 26079 components: - type: Transform - pos: 11.7199,-27.544508 + rot: -1.5707963267948966 rad + pos: 75.5,14.5 parent: 2 - - uid: 26465 + - uid: 26080 components: - type: Transform - pos: -20.566963,-53.306625 + rot: -1.5707963267948966 rad + pos: 76.5,14.5 parent: 2 - - uid: 26466 + - uid: 26081 components: - type: Transform - pos: -20.348213,-53.19725 + rot: -1.5707963267948966 rad + pos: 79.5,13.5 parent: 2 -- proto: HeadBorgMedical - entities: - - uid: 26467 + - uid: 26082 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.035713,-45.453697 + pos: 80.5,13.5 parent: 2 -- proto: HeadBorgMining - entities: - - uid: 26468 + - uid: 26083 components: - type: Transform - pos: -20.238838,-53.619125 + rot: -1.5707963267948966 rad + pos: 85.5,10.5 parent: 2 -- proto: HeadBorgService - entities: - - uid: 26469 + - uid: 26084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.551338,-53.744125 + rot: -1.5707963267948966 rad + pos: 82.5,13.5 parent: 2 -- proto: HeadMoth - entities: - - uid: 26470 + - uid: 26085 components: - type: Transform - pos: 65.5,-50.5 + pos: 4.5,-113.5 parent: 2 -- proto: HeadReptilian - entities: - - uid: 26471 + - uid: 26086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.8308,-32.5277 + pos: 7.5,-112.5 parent: 2 -- proto: HeadSkeleton - entities: - - uid: 26472 + - uid: 26087 components: - type: Transform - pos: -66.48876,6.5341115 + pos: 7.5,-111.5 parent: 2 - - uid: 26474 + - uid: 26088 components: - type: Transform - parent: 26473 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26475 + pos: 4.5,-109.5 + parent: 2 + - uid: 26089 components: - type: Transform - pos: 35.508606,-63.398216 + pos: 11.5,-111.5 parent: 2 - - uid: 26476 + - uid: 26090 components: - type: Transform - pos: -76.502785,-41.56175 + pos: 13.5,-110.5 parent: 2 - - uid: 26477 + - uid: 26091 components: - type: Transform - pos: 33.56932,0.5548261 + pos: 12.5,-111.5 parent: 2 - - uid: 26478 + - uid: 26092 components: - type: Transform - pos: -8.466255,25.443705 + pos: 15.5,-113.5 parent: 2 -- proto: HeadVox - entities: - - uid: 26479 + - uid: 26093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.36527,-109.73952 + pos: 17.5,-113.5 parent: 2 -- proto: HeatExchanger - entities: - - uid: 26480 + - uid: 26094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-92.5 + pos: 15.5,-109.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 26481 + - uid: 26095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-93.5 + pos: 16.5,-109.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: HighSecArmoryLocked - entities: - - uid: 26482 + - uid: 26096 components: - type: Transform - pos: 63.5,-14.5 + pos: 8.5,-109.5 parent: 2 - - uid: 26483 + - uid: 26097 components: - type: Transform - pos: 59.5,-18.5 + pos: 9.5,-109.5 parent: 2 - - uid: 26484 + - uid: 26098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-18.5 + rot: -1.5707963267948966 rad + pos: 82.5,12.5 parent: 2 - - uid: 41323 + - uid: 26099 components: - type: Transform - pos: 3.5,-9.5 - parent: 40828 -- proto: HighSecCentralCommandLocked - entities: - - uid: 26485 + rot: -1.5707963267948966 rad + pos: 85.5,9.5 + parent: 2 + - uid: 26100 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-32.5 + rot: -1.5707963267948966 rad + pos: 84.5,10.5 parent: 2 - - uid: 41838 + - uid: 26101 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-9.5 - parent: 41669 -- proto: HighSecCommandLocked - entities: - - uid: 26486 + rot: -1.5707963267948966 rad + pos: 83.5,10.5 + parent: 2 + - uid: 26102 components: - type: Transform - pos: 99.5,-73.5 + pos: 85.5,5.5 parent: 2 - - uid: 26487 + - uid: 26103 components: - type: Transform - pos: 97.5,-73.5 + pos: 86.5,5.5 parent: 2 - - uid: 26488 + - uid: 26104 components: - type: Transform - pos: 97.5,-77.5 + pos: 93.5,-6.5 parent: 2 - - uid: 26489 + - uid: 26105 components: - type: Transform - pos: 99.5,-77.5 + pos: 93.5,-2.5 parent: 2 -- proto: HighSecDoor - entities: - - uid: 26490 + - uid: 26106 components: - type: Transform - pos: 12.5,20.5 + pos: 92.5,-0.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - - HeadOfSecurity - - - ResearchDirector - - uid: 26491 + - uid: 26107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-6.5 + pos: 90.5,2.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - - HeadOfSecurity - - - ResearchDirector - - uid: 26492 + - uid: 26108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-39.5 + pos: 87.5,4.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - ChiefEngineer - - uid: 26493 + - uid: 26109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-47.5 + rot: 1.5707963267948966 rad + pos: 117.5,-37.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Research - - uid: 26494 + - uid: 26110 components: - type: Transform - pos: 38.5,-40.5 + rot: 1.5707963267948966 rad + pos: 118.5,-37.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - ChiefEngineer - - uid: 26495 + - uid: 26111 components: - - type: MetaData - desc: Только для НаучРука, ГСБ и Старшего инженера. - name: ядро ИИ - type: Transform - pos: 98.5,-85.5 + rot: 1.5707963267948966 rad + pos: 119.5,-37.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - - HeadOfSecurity - - - ResearchDirector - - uid: 26496 + - uid: 26112 components: - - type: MetaData - desc: Только для НаучРука, ГСБ и Старшего инженера. - name: ядро ИИ - type: Transform - pos: 98.5,-81.5 + rot: 1.5707963267948966 rad + pos: 120.5,-37.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - - HeadOfSecurity - - - ResearchDirector - - uid: 26497 + - uid: 26113 components: - type: Transform - pos: -1.5,-6.5 + rot: 1.5707963267948966 rad + pos: 117.5,-41.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - - HeadOfSecurity - - - ResearchDirector - - uid: 26498 + - uid: 26114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-7.5 + rot: 1.5707963267948966 rad + pos: 118.5,-41.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - uid: 26499 + - uid: 26115 components: - - type: MetaData - name: РОБОТОТЕХНИЧЕСКАЯ ЛАБОРАТОРИЯ - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-45.5 + rot: 1.5707963267948966 rad + pos: 119.5,-41.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Research - - uid: 26500 + - uid: 26116 components: - - type: MetaData - name: ГЕНОХРАНИЛИЩЕ - type: Transform - pos: -16.5,-41.5 + rot: 1.5707963267948966 rad + pos: 120.5,-41.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - - uid: 26501 + - uid: 26117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-33.5 + rot: 1.5707963267948966 rad + pos: 124.5,-37.5 parent: 2 - - uid: 26502 + - uid: 26118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-26.5 + rot: 1.5707963267948966 rad + pos: 125.5,-37.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - NuclearOperative -- proto: HolofanProjector - entities: - - uid: 26503 + - uid: 26119 components: - type: Transform - pos: 38.471985,-52.303555 + rot: 1.5707963267948966 rad + pos: 126.5,-37.5 parent: 2 - - uid: 26504 + - uid: 26120 components: - type: Transform - pos: 41.638515,-94.44738 + rot: 1.5707963267948966 rad + pos: 127.5,-37.5 parent: 2 -- proto: HolyHandGrenade - entities: - - uid: 12 + - uid: 26121 components: - - type: MetaData - desc: 'Не содержит взрывчатых веществ. «Благослови, Господи, сию ручную державу, да помоги мне исполнить мечты мои!». ' - name: церковная держава - type: Transform - parent: 5 - - type: Physics - canCollide: False - missingComponents: - - ExplodeOnTrigger - - Explosive - - OnUseTimerTrigger - - PointLight - - HiddenDescription - - Contraband -- proto: HospitalCurtains - entities: - - uid: 26505 + rot: 1.5707963267948966 rad + pos: 124.5,-41.5 + parent: 2 + - uid: 26122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-8.5 + rot: 1.5707963267948966 rad + pos: 125.5,-41.5 parent: 2 - - uid: 26506 + - uid: 26123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-8.5 + rot: 1.5707963267948966 rad + pos: 126.5,-41.5 parent: 2 - - uid: 26507 + - uid: 26124 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-8.5 + rot: 1.5707963267948966 rad + pos: 127.5,-41.5 parent: 2 - - uid: 26508 + - uid: 26125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-22.5 + pos: -15.5,2.5 parent: 2 - - uid: 26509 + - uid: 26126 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-25.5 + pos: -13.5,4.5 parent: 2 - - uid: 26510 + - uid: 26127 components: - type: Transform - pos: 16.5,11.5 + pos: -17.5,2.5 parent: 2 - - uid: 26511 + - uid: 26128 components: - type: Transform - pos: 16.5,13.5 + pos: -14.5,3.5 parent: 2 - - uid: 26512 + - uid: 30198 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-21.5 + pos: 24.5,-30.5 parent: 2 - - uid: 26513 + - uid: 39804 components: - type: Transform - pos: -53.5,-13.5 + rot: 3.141592653589793 rad + pos: 25.5,-30.5 parent: 2 - - uid: 26514 + - uid: 40747 components: - type: Transform rot: 3.141592653589793 rad - pos: -90.5,-1.5 - parent: 2 - - uid: 26515 + pos: 1.5,3.5 + parent: 40666 + - uid: 40748 components: - type: Transform - pos: -83.5,-11.5 - parent: 2 - - uid: 26516 + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 40666 + - uid: 40749 components: - type: Transform - pos: -83.5,-10.5 - parent: 2 - - uid: 26517 + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 40666 + - uid: 40750 components: - type: Transform - pos: -83.5,-9.5 - parent: 2 - - uid: 26518 + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 40666 + - uid: 40751 components: - type: Transform - pos: -83.5,-7.5 - parent: 2 - - uid: 26519 + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 40666 + - uid: 40752 components: - type: Transform - pos: -76.5,-10.5 - parent: 2 - - uid: 26520 + pos: 4.5,2.5 + parent: 40666 + - uid: 40753 components: - type: Transform - pos: -73.5,-8.5 - parent: 2 -- proto: HospitalCurtainsOpen - entities: - - uid: 26521 + pos: -3.5,2.5 + parent: 40666 + - uid: 41253 components: - type: Transform - pos: 78.5,-12.5 - parent: 2 - - uid: 26522 + rot: 3.141592653589793 rad + pos: -11.5,-15.5 + parent: 40828 + - uid: 41254 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 2 - - uid: 26523 + pos: -11.5,-14.5 + parent: 40828 + - uid: 41255 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-8.5 - parent: 2 - - uid: 26524 + pos: -11.5,-13.5 + parent: 40828 + - uid: 41256 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-8.5 - parent: 2 - - uid: 26525 + pos: -12.5,-13.5 + parent: 40828 + - uid: 41257 components: - type: Transform - pos: 16.5,12.5 - parent: 2 - - uid: 26526 + rot: 3.141592653589793 rad + pos: -12.5,-12.5 + parent: 40828 + - uid: 41258 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-20.5 - parent: 2 - - uid: 26527 + pos: 12.5,-15.5 + parent: 40828 + - uid: 41259 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-23.5 - parent: 2 - - uid: 26528 + pos: -12.5,-11.5 + parent: 40828 + - uid: 41260 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-24.5 - parent: 2 - - uid: 26529 + pos: -12.5,-10.5 + parent: 40828 + - uid: 41261 components: - type: Transform - pos: -53.5,-12.5 - parent: 2 - - uid: 26530 + rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 40828 + - uid: 41262 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,-75.5 - parent: 2 - - uid: 26531 + pos: -11.5,-9.5 + parent: 40828 + - uid: 41263 components: - type: Transform - pos: -83.5,-8.5 - parent: 2 - - uid: 26532 + rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 40828 + - uid: 41264 components: - type: Transform - pos: -73.5,-9.5 - parent: 2 - - uid: 26533 + rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 40828 + - uid: 41265 components: - type: Transform - pos: -73.5,-7.5 - parent: 2 - - uid: 26534 + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 40828 + - uid: 41266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-25.5 - parent: 2 - - uid: 26535 + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 40828 + - uid: 41267 components: - type: Transform - pos: 76.5,-12.5 - parent: 2 - - uid: 26536 + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 40828 + - uid: 41268 components: - type: Transform - pos: 74.5,-12.5 - parent: 2 -- proto: HydrogenChemistryBottle - entities: - - uid: 1989 + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 40828 + - uid: 41269 components: - type: Transform - parent: 1980 - - type: Physics - canCollide: False -- proto: hydroponicsSoil - entities: - - uid: 26537 + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 40828 + - uid: 41270 components: - type: Transform - pos: 44.5,24.5 - parent: 2 - - uid: 26538 + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 40828 + - uid: 41271 components: - type: Transform - pos: 44.5,23.5 - parent: 2 - - uid: 26539 + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 40828 + - uid: 41272 components: - type: Transform - pos: 44.5,22.5 - parent: 2 - - uid: 26540 + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 40828 + - uid: 41273 components: - type: Transform - pos: 46.5,24.5 - parent: 2 - - uid: 26541 + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 40828 + - uid: 41274 components: - type: Transform - pos: 46.5,23.5 - parent: 2 - - uid: 26542 + rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 40828 + - uid: 41275 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-7.5 - parent: 2 - - uid: 26543 + pos: -7.5,-12.5 + parent: 40828 + - uid: 41276 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-8.5 - parent: 2 - - uid: 26544 + pos: -7.5,-13.5 + parent: 40828 + - uid: 41277 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-9.5 - parent: 2 - - uid: 26545 + pos: -5.5,-15.5 + parent: 40828 + - uid: 41278 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,-12.5 - parent: 2 - - uid: 26546 + pos: -4.5,-15.5 + parent: 40828 + - uid: 41279 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-12.5 - parent: 2 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 2568 + pos: -3.5,-15.5 + parent: 40828 + - uid: 41280 components: - type: Transform - parent: 2559 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26547 + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 40828 + - uid: 41281 components: - type: Transform - pos: 45.320877,23.290249 - parent: 2 - - uid: 26548 + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 40828 + - uid: 41282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.44913,-12.35248 - parent: 2 -- proto: HydroponicsToolScythe - entities: - - uid: 26549 + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 40828 + - uid: 41283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.551037,16.645557 - parent: 2 -- proto: HydroponicsToolSpade - entities: - - uid: 2569 + rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 40828 + - uid: 41284 components: - type: Transform - parent: 2559 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26550 + rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 40828 + - uid: 41285 components: - type: Transform - pos: 45.210907,21.93156 - parent: 2 - - uid: 26551 + rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 40828 + - uid: 41286 components: - type: Transform - pos: -73.35629,-9.494815 - parent: 2 -- proto: hydroponicsTray - entities: - - uid: 26552 + rot: 3.141592653589793 rad + pos: 8.5,-13.5 + parent: 40828 + - uid: 41287 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,13.5 - parent: 2 - - uid: 26553 + pos: 8.5,-12.5 + parent: 40828 + - uid: 41288 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,13.5 - parent: 2 - - uid: 26554 + pos: 8.5,-11.5 + parent: 40828 + - uid: 41289 components: - type: Transform - pos: 37.5,12.5 - parent: 2 - - uid: 26555 + rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 40828 + - uid: 41290 components: - type: Transform - pos: 35.5,11.5 - parent: 2 - - uid: 26556 + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 40828 + - uid: 41291 components: - type: Transform - pos: 39.5,23.5 - parent: 2 - - uid: 26557 + rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 40828 + - uid: 41292 components: - type: Transform - pos: 38.5,11.5 - parent: 2 - - uid: 26558 + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 40828 + - uid: 41293 components: - type: Transform - pos: 38.5,12.5 - parent: 2 - - uid: 26559 + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 40828 + - uid: 41294 components: - type: Transform - pos: 36.5,11.5 - parent: 2 - - uid: 26560 + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 40828 + - uid: 41297 components: - type: Transform - pos: 37.5,11.5 - parent: 2 - - uid: 26561 + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 40828 + - uid: 41298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 2 - - uid: 26562 + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 40828 + - uid: 41299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,11.5 - parent: 2 - - uid: 26563 + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 40828 + - uid: 41300 components: - type: Transform - pos: 35.5,12.5 - parent: 2 - - uid: 26564 + rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 40828 + - uid: 41301 components: - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 26565 + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 40828 + - uid: 41302 components: - type: Transform - pos: 36.5,12.5 - parent: 2 - - uid: 26566 + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 40828 + - uid: 41303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,21.5 - parent: 2 - - uid: 26567 + rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 40828 + - uid: 41304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,21.5 - parent: 2 - - uid: 26568 + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 40828 + - uid: 41305 components: - type: Transform - pos: 88.5,-7.5 - parent: 2 - - uid: 26569 + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 40828 + - uid: 41306 components: - type: Transform - pos: 88.5,-6.5 - parent: 2 - - uid: 26570 + rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 40828 + - uid: 41307 components: - type: Transform - pos: 88.5,-5.5 - parent: 2 - - uid: 26571 + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 40828 + - uid: 41308 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,13.5 - parent: 2 - - uid: 26572 + pos: 9.5,7.5 + parent: 40828 + - uid: 41309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,22.5 - parent: 2 - - uid: 26573 + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 40828 + - uid: 41310 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,22.5 - parent: 2 -- proto: HydroponicsTrayEmpty - entities: - - uid: 26574 + pos: 8.5,3.5 + parent: 40828 + - uid: 41311 components: - type: Transform - pos: -5.5,-16.5 - parent: 2 - - uid: 26575 + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 40828 + - uid: 41312 components: - type: Transform - pos: -6.5,-16.5 - parent: 2 - - uid: 26576 + rot: 1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 40828 + - uid: 41313 components: - type: Transform - pos: -7.5,-16.5 - parent: 2 - - uid: 26577 + rot: 1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 40828 + - uid: 41314 components: - type: Transform - pos: -9.5,-16.5 - parent: 2 - - uid: 26578 + rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 40828 + - uid: 41315 components: - type: Transform - pos: -4.5,-16.5 - parent: 2 - - uid: 26579 + rot: 1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 40828 + - uid: 41316 components: - type: Transform - pos: -12.5,-15.5 - parent: 2 - - uid: 26580 + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 40828 + - uid: 41317 components: - type: Transform - pos: -12.5,-13.5 - parent: 2 - - uid: 26581 + rot: 1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 40828 + - uid: 41828 components: - type: Transform - pos: -16.5,-13.5 - parent: 2 - - uid: 26582 + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 41669 + - uid: 41829 components: - type: Transform - pos: -14.5,-13.5 - parent: 2 - - uid: 26583 + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 41669 + - uid: 41830 components: - type: Transform - pos: -13.5,-13.5 - parent: 2 - - uid: 26584 + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 41669 + - uid: 41831 components: - type: Transform - pos: -16.5,-15.5 + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 41669 + - uid: 41832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 41669 + - uid: 41833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 41669 + - uid: 41834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 41669 + - uid: 42361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,29.5 parent: 2 - - uid: 26585 +- proto: GrilleBroken + entities: + - uid: 26129 components: - type: Transform - pos: -15.5,-15.5 + rot: 1.5707963267948966 rad + pos: 62.5,-91.5 parent: 2 - - uid: 26586 + - uid: 26130 components: - type: Transform - pos: -14.5,-15.5 + pos: 63.5,-91.5 parent: 2 - - uid: 26587 + - uid: 26131 components: - type: Transform - pos: -1.5,-18.5 + rot: -1.5707963267948966 rad + pos: 84.5,-72.5 parent: 2 - - uid: 26588 + - uid: 26132 components: - type: Transform - pos: -0.5,-18.5 + rot: 3.141592653589793 rad + pos: 12.5,28.5 parent: 2 - - uid: 26589 + - uid: 26133 components: - type: Transform - pos: 0.5,-18.5 + rot: 1.5707963267948966 rad + pos: 85.5,-69.5 parent: 2 - - uid: 26590 + - uid: 26134 components: - type: Transform - pos: 2.5,-18.5 + pos: 85.5,-69.5 parent: 2 - - uid: 26591 + - uid: 26135 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-16.5 + pos: 68.5,-75.5 parent: 2 - - uid: 26592 + - uid: 26136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-16.5 + rot: -1.5707963267948966 rad + pos: 68.5,-75.5 parent: 2 - - uid: 26593 + - uid: 26137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-16.5 + rot: -1.5707963267948966 rad + pos: 59.5,-104.5 parent: 2 - - uid: 26594 + - uid: 26138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-16.5 + pos: 57.5,-106.5 parent: 2 - - uid: 26595 + - uid: 26139 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-14.5 + pos: -56.5,0.5 parent: 2 - - uid: 26596 + - uid: 26140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-14.5 + pos: -56.5,0.5 parent: 2 - - uid: 26597 + - uid: 26141 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 26142 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-14.5 + pos: -56.5,-1.5 parent: 2 - - uid: 26598 + - uid: 26143 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-14.5 + pos: 8.5,-107.5 parent: 2 -- proto: HypoDart - entities: - - uid: 42 + - uid: 26144 components: - type: Transform - parent: 35 - - type: Physics - canCollide: False -- proto: IceCrust - entities: - - uid: 26599 + pos: 11.5,-107.5 + parent: 2 + - uid: 26145 components: - type: Transform - pos: -18.5,-37.5 + pos: 13.5,-107.5 parent: 2 - - uid: 26600 + - uid: 26146 components: - type: Transform - pos: -18.5,-38.5 + rot: 1.5707963267948966 rad + pos: 8.5,-107.5 parent: 2 - - uid: 26601 + - uid: 26147 components: - type: Transform - pos: -16.5,-34.5 + pos: -2.5,-102.5 parent: 2 - - uid: 26602 + - uid: 26148 components: - type: Transform - pos: -16.5,-33.5 + rot: 1.5707963267948966 rad + pos: 5.5,-106.5 parent: 2 - - uid: 26603 + - uid: 26149 components: - type: Transform - pos: -14.5,-39.5 + rot: 1.5707963267948966 rad + pos: -2.5,-102.5 parent: 2 - - uid: 26604 + - uid: 26150 components: - type: Transform - pos: -14.5,-38.5 + rot: 3.141592653589793 rad + pos: 5.5,-106.5 parent: 2 - - uid: 26605 + - uid: 26151 components: - type: Transform - pos: -16.5,-37.5 + pos: 81.5,-76.5 parent: 2 - - uid: 26606 + - uid: 26152 components: - type: Transform - pos: -14.5,-35.5 + rot: 1.5707963267948966 rad + pos: 80.5,-78.5 parent: 2 - - uid: 26607 + - uid: 26153 components: - type: Transform - pos: -14.5,-36.5 + rot: -1.5707963267948966 rad + pos: 10.5,30.5 parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 26608 + - uid: 26154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.53801,-41.496193 + pos: 10.5,30.5 parent: 2 -- proto: IgniteRune - entities: - - uid: 26609 + - uid: 26155 components: - type: Transform - pos: -81.5,-24.5 + rot: -1.5707963267948966 rad + pos: -0.5,32.5 parent: 2 - - type: IgniteOnCollide - fireStacks: 1 -- proto: InflatableDoor - entities: - - uid: 26610 + - uid: 26156 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-68.5 + pos: -0.5,32.5 parent: 2 - - uid: 26611 + - uid: 26157 components: - type: Transform - pos: 22.5,-33.5 + rot: 3.141592653589793 rad + pos: -2.5,31.5 parent: 2 - - uid: 26612 + - uid: 26158 components: - type: Transform - pos: 22.5,-32.5 + rot: 3.141592653589793 rad + pos: -3.5,31.5 parent: 2 - - uid: 26613 + - uid: 26159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-20.5 + rot: -1.5707963267948966 rad + pos: -12.5,28.5 parent: 2 - - uid: 26614 + - uid: 26160 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-14.5 + pos: -12.5,28.5 parent: 2 - - uid: 26615 + - uid: 26161 components: - type: Transform - pos: 0.5,-8.5 + rot: -1.5707963267948966 rad + pos: -28.5,21.5 parent: 2 -- proto: InflatableWall - entities: - - uid: 26616 + - uid: 26162 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-68.5 + pos: -28.5,21.5 parent: 2 - - uid: 26617 + - uid: 26163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-44.5 + rot: 3.141592653589793 rad + pos: -27.5,21.5 parent: 2 - - uid: 26618 + - uid: 26164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-43.5 + rot: 3.141592653589793 rad + pos: -57.5,17.5 parent: 2 - - uid: 26619 + - uid: 26165 components: - type: Transform - pos: 22.5,-31.5 + pos: -81.5,-35.5 parent: 2 - - uid: 26620 + - uid: 26166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-19.5 + rot: -1.5707963267948966 rad + pos: -81.5,-35.5 parent: 2 - - uid: 26621 + - uid: 26167 components: - type: Transform - pos: -43.5,2.5 + rot: 3.141592653589793 rad + pos: -81.5,-34.5 parent: 2 - - uid: 26622 + - uid: 26168 components: - type: Transform - pos: -50.5,2.5 + pos: -76.5,-79.5 parent: 2 - - uid: 26623 + - uid: 26169 components: - type: Transform - pos: -53.5,-7.5 + rot: -1.5707963267948966 rad + pos: -76.5,-78.5 parent: 2 - - uid: 26624 + - uid: 26170 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-99.5 + pos: -76.5,-79.5 parent: 2 - - uid: 26625 + - uid: 26171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-98.5 + pos: -83.5,-63.5 parent: 2 - - uid: 26626 + - uid: 26172 components: - type: Transform - pos: -49.5,4.5 + pos: -81.5,-55.5 parent: 2 - - uid: 26627 + - uid: 26173 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-5.5 + pos: -82.5,-70.5 parent: 2 - - uid: 26628 + - uid: 26174 components: - type: Transform - pos: -83.5,-15.5 + pos: -81.5,-71.5 parent: 2 - - uid: 26629 + - uid: 26175 components: - type: Transform - pos: -75.5,7.5 + rot: -1.5707963267948966 rad + pos: -81.5,-71.5 parent: 2 - - uid: 26630 + - uid: 26176 components: - type: Transform - pos: -72.5,-21.5 + pos: -82.5,-67.5 parent: 2 - - uid: 26631 + - uid: 26177 components: - type: Transform - pos: -70.5,-10.5 + rot: -1.5707963267948966 rad + pos: -83.5,-63.5 parent: 2 - - uid: 26632 + - uid: 26178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,1.5 + rot: -1.5707963267948966 rad + pos: -83.5,-60.5 parent: 2 - - uid: 26633 + - uid: 26179 components: - type: Transform - pos: -36.5,20.5 + rot: -1.5707963267948966 rad + pos: -83.5,-61.5 parent: 2 - - uid: 26634 + - uid: 26180 components: - type: Transform - pos: -0.5,-8.5 + rot: -1.5707963267948966 rad + pos: -82.5,-58.5 parent: 2 - - uid: 26635 + - uid: 26181 components: - type: Transform - pos: 5.5,-31.5 + rot: 3.141592653589793 rad + pos: -82.5,-58.5 parent: 2 - - uid: 26636 + - uid: 26182 components: - type: Transform - pos: 1.5,-8.5 + rot: 3.141592653589793 rad + pos: -81.5,-57.5 parent: 2 - - uid: 26637 + - uid: 26183 components: - type: Transform - pos: 6.5,-32.5 + rot: 3.141592653589793 rad + pos: -81.5,-55.5 parent: 2 - - uid: 26638 + - uid: 26184 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-68.5 + pos: 27.5,-104.5 parent: 2 - - uid: 26639 + - uid: 26185 components: - type: Transform - pos: 4.5,-39.5 + rot: -1.5707963267948966 rad + pos: 27.5,-93.5 parent: 2 - - uid: 26640 + - uid: 26186 components: - type: Transform - pos: 5.5,-39.5 + rot: 3.141592653589793 rad + pos: 27.5,-96.5 parent: 2 - - uid: 26641 + - uid: 26187 components: - type: Transform - pos: -23.5,-42.5 + pos: 27.5,-98.5 parent: 2 - - uid: 26642 + - uid: 26188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-31.5 + rot: 3.141592653589793 rad + pos: 28.5,-110.5 parent: 2 - - uid: 26643 + - uid: 26189 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-40.5 + pos: 28.5,-110.5 parent: 2 - - uid: 26644 + - uid: 26190 components: - type: Transform - pos: 10.5,-37.5 + pos: 27.5,-105.5 parent: 2 - - uid: 26645 + - uid: 26191 components: - type: Transform - pos: 10.5,-36.5 + pos: 28.5,-106.5 parent: 2 - - uid: 26646 + - uid: 26192 components: - type: Transform - pos: 9.5,-43.5 + rot: -1.5707963267948966 rad + pos: 28.5,-106.5 parent: 2 - - uid: 26647 + - uid: 26193 components: - type: Transform - pos: 9.5,-41.5 + rot: -1.5707963267948966 rad + pos: 28.5,-108.5 parent: 2 - - uid: 26648 + - uid: 26194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-37.5 + rot: -1.5707963267948966 rad + pos: 53.5,-112.5 parent: 2 - - uid: 26649 + - uid: 26195 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-37.5 + pos: 55.5,-110.5 parent: 2 - - uid: 26650 + - uid: 26196 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-38.5 + pos: 55.5,-108.5 parent: 2 - - uid: 26651 + - uid: 26197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-40.5 + pos: 55.5,-108.5 parent: 2 - - uid: 26652 + - uid: 26198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-43.5 + pos: 53.5,-110.5 parent: 2 - - uid: 26653 + - uid: 26199 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-41.5 + pos: 51.5,-112.5 parent: 2 - - uid: 26654 + - uid: 26200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-40.5 + pos: 49.5,-113.5 parent: 2 - - uid: 26655 + - uid: 26201 components: - type: Transform - pos: 18.5,-42.5 + rot: 1.5707963267948966 rad + pos: 51.5,-113.5 parent: 2 -- proto: InflatableWallStack1 - entities: - - uid: 26656 + - uid: 26202 components: - type: Transform - pos: 0.03817773,-10.484029 + pos: 51.5,-113.5 parent: 2 -- proto: IngotGold - entities: - - uid: 16249 - components: - - type: Transform - parent: 16248 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16252 - components: - - type: Transform - parent: 16251 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16255 + - uid: 26203 components: - type: Transform - parent: 16254 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16258 + rot: 3.141592653589793 rad + pos: 55.5,-110.5 + parent: 2 + - uid: 26204 components: - type: Transform - parent: 16257 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: IngotGold1 - entities: - - uid: 26657 + pos: 56.5,-106.5 + parent: 2 + - uid: 26205 components: - type: Transform - pos: 81.41212,-47.52112 + pos: 30.5,-112.5 parent: 2 - - uid: 26658 + - uid: 26206 components: - type: Transform - pos: 81.59962,-47.567993 + rot: -1.5707963267948966 rad + pos: 32.5,-114.5 parent: 2 - - uid: 26659 + - uid: 26207 components: - type: Transform - pos: 81.58399,-47.33362 + pos: 32.5,-114.5 parent: 2 - - uid: 26660 + - uid: 26208 components: - type: Transform - pos: -6.8590045,-8.252594 + rot: -1.5707963267948966 rad + pos: 38.5,-114.5 parent: 2 - - uid: 26661 + - uid: 26209 components: - type: Transform - pos: -6.8902545,-8.502594 + pos: 38.5,-114.5 parent: 2 -- proto: IngotSilver - entities: - - uid: 26662 + - uid: 26210 components: - type: Transform - pos: -7.4725513,-8.326113 + rot: 1.5707963267948966 rad + pos: 34.5,-114.5 parent: 2 -- proto: IngotSilver1 - entities: - - uid: 15668 + - uid: 26211 components: - type: Transform - parent: 15665 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15669 + rot: 1.5707963267948966 rad + pos: 40.5,-114.5 + parent: 2 + - uid: 26212 components: - type: Transform - parent: 15665 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15670 + rot: -1.5707963267948966 rad + pos: 44.5,-114.5 + parent: 2 + - uid: 26213 components: - type: Transform - parent: 15665 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Intellicard - entities: - - uid: 26663 + rot: 1.5707963267948966 rad + pos: 46.5,-114.5 + parent: 2 + - uid: 26214 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.484116,18.499334 + pos: 27.5,-93.5 parent: 2 - - type: WarpPoint - location: интелкарта -- proto: IntercomAll - entities: - - uid: 26664 + - uid: 26215 components: - type: Transform - pos: 0.5,23.5 + rot: 3.141592653589793 rad + pos: 53.5,-112.5 parent: 2 -- proto: IntercomCommand - entities: - - uid: 26665 + - uid: 26216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,13.5 + pos: 27.5,-90.5 parent: 2 - - uid: 26666 + - uid: 26217 components: - type: Transform - pos: 3.5,27.5 + rot: -1.5707963267948966 rad + pos: 27.5,-90.5 parent: 2 - - uid: 26667 + - uid: 26218 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,5.5 + pos: 47.5,27.5 parent: 2 - - uid: 26668 + - uid: 26219 components: - type: Transform - pos: -20.5,9.5 + rot: 1.5707963267948966 rad + pos: 12.5,28.5 parent: 2 -- proto: IntercomCommon - entities: - - uid: 26669 + - uid: 26220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-39.5 + rot: 3.141592653589793 rad + pos: 87.5,-68.5 parent: 2 - - uid: 26670 + - uid: 26221 components: - type: Transform - pos: -72.5,-34.5 + rot: 3.141592653589793 rad + pos: -66.5,15.5 parent: 2 - - uid: 26671 + - uid: 26222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-38.5 + rot: 1.5707963267948966 rad + pos: -72.5,16.5 parent: 2 - - uid: 26672 + - uid: 26223 components: - type: Transform - pos: 6.5,-73.5 + rot: 3.141592653589793 rad + pos: -72.5,16.5 parent: 2 - - uid: 26673 + - uid: 26224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-47.5 + rot: -1.5707963267948966 rad + pos: -74.5,15.5 parent: 2 - - uid: 26674 + - uid: 26225 components: - type: Transform - pos: -8.5,5.5 + rot: 1.5707963267948966 rad + pos: -66.5,15.5 parent: 2 - - uid: 26675 + - uid: 26226 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,21.5 + pos: 63.5,-95.5 parent: 2 -- proto: IntercomElectronics - entities: - - uid: 26676 + - uid: 26227 components: - type: Transform - pos: 36.535313,-38.33921 + rot: 1.5707963267948966 rad + pos: 64.5,-94.5 parent: 2 -- proto: IntercomEngineering - entities: - - uid: 26677 + - uid: 26228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-56.5 + pos: -75.5,-81.5 parent: 2 - - uid: 26678 + - uid: 26229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-91.5 + rot: 3.141592653589793 rad + pos: -74.5,-88.5 parent: 2 - - uid: 26679 + - uid: 26230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-72.5 + rot: 3.141592653589793 rad + pos: -76.5,-97.5 parent: 2 - - uid: 26680 + - uid: 26231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-100.5 + pos: -74.5,-102.5 parent: 2 - - uid: 26681 + - uid: 26232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-63.5 + rot: -1.5707963267948966 rad + pos: -74.5,-100.5 parent: 2 -- proto: IntercomMedical - entities: - - uid: 26682 + - uid: 26233 components: - type: Transform - pos: -38.5,-35.5 + pos: -60.5,-94.5 parent: 2 - - uid: 26683 + - uid: 26234 components: - type: Transform - pos: -45.5,-26.5 + rot: 1.5707963267948966 rad + pos: -60.5,-94.5 parent: 2 - - uid: 26684 + - uid: 26235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-4.5 + rot: 3.141592653589793 rad + pos: -60.5,-94.5 parent: 2 - - uid: 26685 + - uid: 26236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-34.5 + pos: -93.5,-0.5 parent: 2 -- proto: IntercomScience - entities: - - uid: 26686 + - uid: 26237 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-60.5 + pos: -92.5,-0.5 parent: 2 - - uid: 26687 + - uid: 26238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-46.5 + pos: -92.5,-0.5 parent: 2 - - uid: 26688 + - uid: 26239 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-70.5 + pos: -93.5,-0.5 parent: 2 - - uid: 26689 + - uid: 26240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-64.5 + rot: 3.141592653589793 rad + pos: -75.5,19.5 parent: 2 -- proto: IntercomSecurity - entities: - - uid: 26690 + - uid: 26241 components: - type: Transform - pos: 44.5,-21.5 + pos: -89.5,19.5 parent: 2 -- proto: IntercomService - entities: - - uid: 26691 + - uid: 26242 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-1.5 + pos: -89.5,19.5 parent: 2 - - uid: 26692 + - uid: 26243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-0.5 + rot: 3.141592653589793 rad + pos: -88.5,11.5 parent: 2 - - uid: 26693 + - uid: 26244 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,12.5 + pos: -74.5,18.5 parent: 2 - - uid: 26694 + - uid: 26245 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,14.5 - parent: 2 -- proto: IntercomSupply - entities: - - uid: 26695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-101.5 + pos: -90.5,-15.5 parent: 2 - - uid: 26696 + - uid: 26246 components: - type: Transform - pos: 2.5,-85.5 + rot: -1.5707963267948966 rad + pos: -93.5,-8.5 parent: 2 - - uid: 26697 + - uid: 26247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-81.5 + rot: 3.141592653589793 rad + pos: -93.5,-8.5 parent: 2 - - uid: 26698 + - uid: 26248 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-92.5 + pos: -61.5,-116.5 parent: 2 -- proto: JanitorialTrolley - entities: - - uid: 26699 + - uid: 26249 components: - type: Transform - pos: 5.5,-1.5 + rot: 1.5707963267948966 rad + pos: -60.5,-126.5 parent: 2 - - uid: 26700 + - uid: 26250 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-71.5 + pos: -58.5,-126.5 parent: 2 -- proto: JanitorServiceLight - entities: - - uid: 26701 + - uid: 26251 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-45.5 + pos: -52.5,-124.5 parent: 2 - - uid: 26702 + - uid: 26252 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-6.5 + pos: -46.5,-125.5 parent: 2 - - uid: 26703 + - uid: 26253 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,11.5 + pos: -42.5,-128.5 parent: 2 - - uid: 26704 + - uid: 26254 components: - type: Transform - pos: -24.5,1.5 + rot: 1.5707963267948966 rad + pos: 95.5,-96.5 parent: 2 - - uid: 26705 + - uid: 26255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-35.5 + rot: -1.5707963267948966 rad + pos: 109.5,-62.5 parent: 2 - - uid: 26706 + - uid: 26256 components: - type: Transform - pos: -44.5,-42.5 + pos: 109.5,-62.5 parent: 2 - - uid: 26707 + - uid: 26257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 + pos: 109.5,-65.5 parent: 2 - - uid: 26708 + - uid: 26258 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-45.5 + pos: 109.5,-65.5 parent: 2 - - uid: 26709 + - uid: 26259 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-44.5 + pos: 110.5,-69.5 parent: 2 - - uid: 26710 + - uid: 26260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-78.5 + rot: 3.141592653589793 rad + pos: 109.5,-75.5 parent: 2 - - uid: 26711 + - uid: 26261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-34.5 + pos: 109.5,-75.5 parent: 2 - - uid: 26712 + - uid: 26262 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-29.5 + pos: 109.5,-75.5 parent: 2 - - uid: 26713 + - uid: 26263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-3.5 + rot: 3.141592653589793 rad + pos: 109.5,-84.5 parent: 2 -- proto: JetpackBlue - entities: - - uid: 26714 + - uid: 26264 components: - type: Transform - pos: 46.5,-62.5 + rot: -1.5707963267948966 rad + pos: 104.5,-93.5 parent: 2 -- proto: JetpackBlueFilled - entities: - - uid: 26715 + - uid: 26265 components: - type: Transform - pos: 57.494186,-82.422646 - parent: 2 -- proto: JetpackMini - entities: - - uid: 26716 + rot: 1.5707963267948966 rad + pos: 104.5,-93.5 + parent: 2 + - uid: 26266 components: - type: Transform - pos: 54.5232,-96.30902 + rot: 1.5707963267948966 rad + pos: 99.5,-97.5 parent: 2 - - uid: 26717 + - uid: 26267 components: - type: Transform - pos: 111.52574,-46.458534 + pos: 99.5,-97.5 parent: 2 -- proto: JetpackSecurity - entities: - - uid: 62 + - uid: 26268 components: - type: Transform - pos: 66.48599,13.616083 + rot: -1.5707963267948966 rad + pos: 95.5,-96.5 parent: 2 - - type: GasTank - toggleActionEntity: 63 - - type: Jetpack - toggleActionEntity: 64 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 64 - - 63 -- proto: JetpackSecurityFilled - entities: - - uid: 65 + - uid: 26269 components: - type: Transform - rot: 6.283185307179586 rad - pos: 57.357067,-22.587494 + pos: 89.5,-86.5 parent: 2 - - type: GasTank - toggleActionEntity: 66 - - type: Jetpack - toggleActionEntity: 67 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 67 - - 66 - - uid: 26718 + - uid: 26270 components: - type: Transform - pos: 57.741734,-22.50916 + rot: 3.141592653589793 rad + pos: 84.5,-82.5 parent: 2 - - uid: 26719 + - uid: 26271 components: - type: Transform - pos: 57.53861,-22.44666 + pos: 87.5,-82.5 parent: 2 -- proto: JetpackVoid - entities: - - uid: 15804 + - uid: 26272 components: - type: Transform - parent: 15802 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: JetpackVoidFilled - entities: - - uid: 41107 + pos: 86.5,-82.5 + parent: 2 + - uid: 26273 components: - type: Transform - parent: 41103 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41114 + rot: 3.141592653589793 rad + pos: 45.5,35.5 + parent: 2 + - uid: 26274 components: - type: Transform - parent: 41110 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41121 + rot: 3.141592653589793 rad + pos: 48.5,30.5 + parent: 2 + - uid: 26275 components: - type: Transform - parent: 41117 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41128 + rot: 1.5707963267948966 rad + pos: 46.5,34.5 + parent: 2 + - uid: 26276 components: - type: Transform - parent: 41124 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41135 + rot: 3.141592653589793 rad + pos: 111.5,-37.5 + parent: 2 + - uid: 26277 components: - type: Transform - parent: 41131 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Jug - entities: - - uid: 1990 + rot: 3.141592653589793 rad + pos: 115.5,-45.5 + parent: 2 + - uid: 26278 components: - type: Transform - parent: 1980 - - type: Physics - canCollide: False - - uid: 1991 + pos: 115.5,-46.5 + parent: 2 + - uid: 26279 components: - type: Transform - parent: 1980 - - type: Physics - canCollide: False -- proto: Jukebox - entities: - - uid: 26720 + pos: 114.5,-48.5 + parent: 2 + - uid: 26280 components: - type: Transform - pos: 34.5,7.5 + pos: 112.5,-51.5 parent: 2 -- proto: KitchenElectricGrill - entities: - - uid: 26721 + - uid: 26281 components: - type: Transform - pos: 28.5,14.5 + pos: -90.5,-26.5 parent: 2 -- proto: KitchenKnife - entities: - - uid: 26722 + - uid: 26282 components: - type: Transform - pos: 29.761024,11.77055 + pos: -92.5,-20.5 parent: 2 - - uid: 26724 + - uid: 26283 components: - type: Transform - parent: 26723 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26725 + rot: -1.5707963267948966 rad + pos: -91.5,-24.5 + parent: 2 + - uid: 26284 components: - type: Transform - pos: 35.37294,-71.35835 + pos: -76.5,24.5 parent: 2 -- proto: KitchenMicrowave - entities: - - uid: 26726 + - uid: 26285 components: - type: Transform - pos: -43.5,-86.5 + pos: -88.5,24.5 parent: 2 - - uid: 26727 + - uid: 26286 components: - type: Transform - pos: 29.5,14.5 + rot: 1.5707963267948966 rad + pos: -78.5,26.5 parent: 2 - - uid: 26728 + - uid: 26287 components: - type: Transform - pos: 46.5,-73.5 + rot: 3.141592653589793 rad + pos: -79.5,27.5 parent: 2 - - uid: 26729 + - uid: 26288 components: - type: Transform - pos: 61.5,-37.5 + rot: 3.141592653589793 rad + pos: -85.5,29.5 parent: 2 - - uid: 26730 + - uid: 26289 components: - type: Transform - pos: -9.5,-88.5 + rot: 1.5707963267948966 rad + pos: -83.5,32.5 parent: 2 - - uid: 26731 + - uid: 26290 components: - type: Transform - pos: 53.5,-51.5 + rot: 3.141592653589793 rad + pos: 68.5,-93.5 parent: 2 - - uid: 26732 + - uid: 26291 components: - type: Transform - pos: -55.5,12.5 + pos: 69.5,-94.5 parent: 2 - - uid: 26733 + - uid: 26292 components: - type: Transform - pos: -37.5,-3.5 + rot: 3.141592653589793 rad + pos: 83.5,-97.5 parent: 2 - - uid: 26734 + - uid: 26293 components: - type: Transform - pos: 46.5,20.5 + rot: 3.141592653589793 rad + pos: 74.5,-99.5 parent: 2 - - uid: 26735 + - uid: 26294 components: - type: Transform - pos: 50.5,3.5 + rot: 1.5707963267948966 rad + pos: 75.5,-99.5 parent: 2 - - uid: 26736 + - uid: 26295 components: - type: Transform - pos: 89.5,-10.5 + rot: 1.5707963267948966 rad + pos: 79.5,-98.5 parent: 2 - - uid: 26737 + - uid: 26296 components: - type: Transform - pos: -9.5,13.5 + pos: 84.5,-91.5 parent: 2 -- proto: KitchenReagentGrinder - entities: - - uid: 26738 + - uid: 26297 components: - type: Transform - pos: -37.5,-34.5 + rot: 1.5707963267948966 rad + pos: 85.5,-90.5 parent: 2 - - uid: 26739 + - uid: 26298 components: - type: Transform - pos: -76.5,-9.5 + pos: 90.5,-91.5 parent: 2 - - uid: 26740 + - uid: 26299 components: - type: Transform - pos: -55.5,-0.5 + rot: 1.5707963267948966 rad + pos: 52.5,27.5 parent: 2 - - uid: 26741 + - uid: 26300 components: - type: Transform - pos: -3.5,-71.5 + rot: 1.5707963267948966 rad + pos: 78.5,13.5 parent: 2 - - uid: 26742 + - uid: 26301 components: - type: Transform - pos: 29.5,12.5 + rot: 1.5707963267948966 rad + pos: 82.5,10.5 parent: 2 - - uid: 26743 + - uid: 26302 components: - type: Transform - pos: 35.5,15.5 + rot: 3.141592653589793 rad + pos: 90.5,1.5 parent: 2 - - uid: 26744 + - uid: 26303 components: - type: Transform - pos: 22.5,1.5 + pos: 93.5,-3.5 parent: 2 - - uid: 26745 + - uid: 26304 components: - type: Transform - pos: -53.5,-75.5 + rot: 3.141592653589793 rad + pos: 93.5,-7.5 parent: 2 - - uid: 26746 +- proto: GrilleDiagonal + entities: + - uid: 26305 components: - type: Transform - pos: 33.5,23.5 + pos: -11.5,25.5 parent: 2 - - uid: 41324 + - uid: 26306 components: - type: Transform - pos: -2.5,-12.5 - parent: 40828 -- proto: KitchenSpike - entities: - - uid: 26747 + pos: -10.5,26.5 + parent: 2 + - uid: 26307 components: - type: Transform - pos: 23.5,14.5 + pos: -6.5,27.5 parent: 2 -- proto: Lamp - entities: - - uid: 54 + - uid: 26308 components: - - type: MetaData - name: волшебная лампа - type: Transform - pos: -41.37098,-99.313675 + pos: -3.5,28.5 parent: 2 - - type: HandheldLight - selfToggleActionEntity: 58 - toggleActionEntity: 57 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 55 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 57 - - 58 - - type: Physics - canCollide: True - - type: ActionsContainer - - type: Actions - actions: - - 58 - - uid: 105 + - uid: 26309 components: - type: Transform - pos: -31.577393,8.612033 + rot: -1.5707963267948966 rad + pos: 4.5,28.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 106 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 106 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 109 + - uid: 26310 components: - type: Transform - pos: 39.553074,-26.375849 + rot: -1.5707963267948966 rad + pos: 7.5,27.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 110 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 110 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 26748 + - uid: 26311 components: - type: Transform - pos: 56.785122,15.621483 + rot: -1.5707963267948966 rad + pos: 11.5,26.5 parent: 2 - - uid: 26749 + - uid: 26312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.49618,9.6562805 + rot: -1.5707963267948966 rad + pos: 12.5,25.5 parent: 2 - - uid: 26750 + - uid: 26313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-0.5 + rot: 1.5707963267948966 rad + pos: -75.5,-0.5 parent: 2 - - uid: 26751 + - uid: 26314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-4.5 + rot: -1.5707963267948966 rad + pos: 53.5,24.5 parent: 2 - - uid: 26752 + - uid: 26315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.588104,4.643117 + rot: -1.5707963267948966 rad + pos: 54.5,23.5 parent: 2 - - uid: 26753 + - uid: 40754 components: - type: Transform - pos: -62.609993,-71.49693 + pos: -0.5,5.5 + parent: 40666 + - uid: 40755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 40666 + - uid: 41835 + components: + - type: Transform + pos: 2.5,5.5 + parent: 41669 + - uid: 41836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 41669 +- proto: GrilleSpawner + entities: + - uid: 26316 + components: + - type: Transform + pos: -46.5,-73.5 parent: 2 - - uid: 26754 + - uid: 26317 components: - type: Transform - pos: -37.520256,3.586957 + rot: -1.5707963267948966 rad + pos: 60.5,-95.5 parent: 2 - - uid: 26755 + - uid: 26318 components: - type: Transform - pos: -55.444374,-7.3688416 + pos: 24.5,33.5 parent: 2 - - uid: 26756 + - uid: 26319 components: - type: Transform - pos: 24.58624,-76.29226 + rot: -1.5707963267948966 rad + pos: 62.5,-95.5 parent: 2 - - uid: 26757 + - uid: 26320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.403778,-48.186714 + rot: -1.5707963267948966 rad + pos: 59.5,-96.5 parent: 2 - - uid: 26758 + - uid: 26321 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.594696,-47.42654 + rot: -1.5707963267948966 rad + pos: 59.5,-97.5 parent: 2 - - uid: 26759 + - uid: 26322 components: - type: Transform - pos: -57.563206,-38.405563 + pos: 58.5,-45.5 parent: 2 - - uid: 26760 + - uid: 26323 components: - type: Transform - pos: 46.49248,16.632973 + pos: 59.5,-45.5 parent: 2 -- proto: LampGold - entities: - - uid: 95 + - uid: 26324 components: - type: Transform - pos: 36.678036,-67.21557 + pos: 64.5,-86.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 96 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 96 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 107 + - uid: 26325 components: - type: Transform - pos: 13.513687,16.437595 + pos: -59.5,-89.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 108 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 108 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 113 + - uid: 26326 components: - type: Transform - pos: -34.553288,-7.330698 + pos: -60.5,-91.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 114 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 114 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 120 + - uid: 26327 components: - type: Transform - pos: -11.525497,11.50857 + pos: 2.5,-103.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 121 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 121 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 26761 + - uid: 26328 components: - type: Transform - pos: -16.5,5.5 + rot: 3.141592653589793 rad + pos: 7.5,-106.5 parent: 2 - - uid: 26762 + - uid: 26329 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.724102,20.653748 + pos: 17.5,-106.5 parent: 2 -- proto: LampInterrogator - entities: - - uid: 103 + - uid: 26330 components: - type: Transform - pos: 51.51914,-9.259501 + pos: 2.5,-106.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 104 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 104 - - type: Physics - canCollide: True - - type: ActionsContainer -- proto: LandMineExplosive - entities: - - uid: 26763 + - uid: 26331 components: - type: Transform - pos: -89.68935,-1.4331177 + rot: 3.141592653589793 rad + pos: 60.5,-46.5 parent: 2 - - uid: 26764 + - uid: 26332 components: - type: Transform - pos: -74.88008,-65.27804 + rot: 3.141592653589793 rad + pos: -21.5,13.5 parent: 2 -- proto: LandMineModular - entities: - - uid: 26765 + - uid: 26333 components: - type: Transform - pos: -72.25352,-66.75768 + rot: 3.141592653589793 rad + pos: -20.5,13.5 parent: 2 - - uid: 26766 + - uid: 26334 components: - type: Transform - pos: -70.84727,-64.67956 + pos: -58.5,-0.5 parent: 2 - - uid: 26767 + - uid: 26335 components: - type: Transform - pos: -73.92539,-63.101433 + pos: -58.5,-1.5 parent: 2 -- proto: Lantern - entities: - - uid: 97 + - uid: 26336 components: - type: Transform - pos: 36.61548,-64.2816 + pos: -58.5,-2.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 98 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 98 - - type: ActionsContainer - - uid: 111 + - uid: 26337 components: - type: Transform - pos: 33.484238,-63.94874 + rot: 3.141592653589793 rad + pos: -62.5,-61.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 112 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 112 - - type: ActionsContainer -- proto: LanternFlash - entities: - - uid: 101 + - uid: 26338 components: - type: Transform - pos: 34.74378,-71.32181 + pos: -51.5,-93.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 102 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 102 - - type: ActionsContainer - - uid: 26768 + - uid: 26339 components: - type: Transform - pos: -82.55063,-24.325563 + pos: 11.5,-107.5 parent: 2 -- proto: LargeBeaker - entities: - - uid: 1992 + - uid: 26340 components: - type: Transform - parent: 1980 - - type: Physics - canCollide: False - - uid: 26769 + pos: -47.5,19.5 + parent: 2 + - uid: 26341 components: - type: Transform - pos: -19.574066,-25.433702 + pos: -45.5,19.5 parent: 2 - - uid: 26770 + - uid: 26342 components: - type: Transform - pos: -19.363129,-25.199327 + pos: 0.5,-102.5 parent: 2 - - uid: 26771 + - uid: 26343 components: - type: Transform - pos: -55.46563,-13.170682 + pos: -46.5,19.5 parent: 2 - - uid: 26772 + - uid: 26344 components: - type: Transform - pos: -34.649292,-21.959995 + pos: -52.5,20.5 parent: 2 - - uid: 26773 + - uid: 26345 components: - type: Transform - pos: -45.360683,-10.721433 + pos: -42.5,21.5 parent: 2 - - uid: 26774 + - uid: 26346 components: - type: Transform - pos: 29.956684,12.437808 + pos: -50.5,21.5 parent: 2 - - uid: 26775 + - uid: 26347 components: - type: Transform - pos: 33.612232,23.321634 + pos: -50.5,19.5 parent: 2 - - uid: 26776 + - uid: 26348 components: - type: Transform - pos: -6.8147693,-34.35171 + pos: -48.5,20.5 parent: 2 - - uid: 26777 + - uid: 26349 components: - type: Transform - pos: -6.9866443,-34.242336 + pos: -44.5,20.5 parent: 2 - - uid: 26778 + - uid: 26350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.7007656,-35.606224 + pos: -40.5,20.5 parent: 2 - - uid: 26779 + - uid: 26351 components: - type: Transform - pos: -11.488715,-39.018528 + pos: -42.5,19.5 parent: 2 -- proto: LauncherCreamPie - entities: - - uid: 19919 + - uid: 26352 components: - type: Transform - parent: 19910 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26780 + pos: 64.5,-91.5 + parent: 2 + - uid: 26353 components: - type: Transform - pos: -48.498768,-108.43273 + pos: 87.5,-13.5 parent: 2 -- proto: LauncherSyringe - entities: - - uid: 26781 + - uid: 26354 components: - type: Transform - pos: -45.56118,-6.307379 + pos: -48.5,13.5 parent: 2 -- proto: LawyerPDA - entities: - - uid: 1376 + - uid: 26355 components: - type: Transform - parent: 1372 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LeadChemistryBottle - entities: - - uid: 26782 + pos: 79.5,-81.5 + parent: 2 + - uid: 26356 components: - - type: MetaData - desc: Что дед мороз мне подарит? - name: свинец - type: Transform - pos: -57.70397,-89.29614 + pos: 86.5,-15.5 parent: 2 -- proto: LeavesCannabisDried - entities: - - uid: 43 + - uid: 26357 components: - type: Transform - parent: 35 - - type: Stack - count: 5 - - type: Physics - canCollide: False -- proto: LedLightBulb - entities: - - uid: 40758 + pos: 24.5,29.5 + parent: 2 + - uid: 26358 components: - type: Transform - parent: 40757 - - type: LightBulb - color: '#0000FFFF' - - type: Physics - canCollide: False -- proto: Left4ZedChemistryBottle - entities: - - uid: 2562 + pos: 21.5,27.5 + parent: 2 + - uid: 26359 components: - type: Transform - parent: 2561 - - type: Physics - canCollide: False - - uid: 26783 + pos: 1.5,32.5 + parent: 2 + - uid: 26360 components: - type: Transform - pos: 36.64995,23.117214 + pos: 4.5,31.5 parent: 2 -- proto: LeftArmBorg - entities: - - uid: 26784 + - uid: 26361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.723213,-45.703697 + pos: -7.5,30.5 parent: 2 - - uid: 26785 + - uid: 26362 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.270088,-45.547447 + pos: -13.5,27.5 parent: 2 -- proto: LeftArmBorgMining - entities: - - uid: 26786 + - uid: 26363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.426338,-46.188072 + pos: -14.5,26.5 parent: 2 -- proto: LeftArmBorgService - entities: - - uid: 26787 + - uid: 26364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.660713,-46.094322 + pos: -11.5,29.5 parent: 2 -- proto: LeftArmSkeleton - entities: - - uid: 26788 + - uid: 26365 components: - type: Transform - pos: 65.5,-50.5 + pos: -31.5,21.5 parent: 2 -- proto: LeftFootMoth - entities: - - uid: 26789 + - uid: 26366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 107.40406,-71.27681 + pos: -24.5,21.5 parent: 2 -- proto: LeftFootSkeleton - entities: - - uid: 26790 + - uid: 26367 components: - type: Transform - pos: 65.5,-50.5 + pos: -19.5,22.5 parent: 2 -- proto: LeftHandSkeleton - entities: - - uid: 26791 + - uid: 26368 components: - type: Transform - pos: 65.5,-50.5 + pos: -21.5,22.5 parent: 2 -- proto: LeftLegBorg - entities: - - uid: 26792 + - uid: 26369 components: - type: Transform - pos: -86.09143,-9.851116 + pos: -58.5,17.5 parent: 2 - - uid: 26793 + - uid: 26370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.548025,-29.466383 + pos: -56.5,19.5 parent: 2 - - uid: 26794 + - uid: 26371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.1574,-29.247633 + pos: -59.5,16.5 parent: 2 -- proto: LeftLegBorgEngineer - entities: - - uid: 26795 + - uid: 26372 components: - type: Transform - pos: -17.862097,-45.621193 + pos: -61.5,16.5 parent: 2 -- proto: LeftLegBorgJanitor - entities: - - uid: 26796 + - uid: 26373 components: - type: Transform - pos: -17.113838,-45.219322 + pos: -78.5,-75.5 parent: 2 - - uid: 26797 + - uid: 26374 components: - type: Transform - pos: -17.098213,-45.359947 + pos: -83.5,-66.5 parent: 2 -- proto: LeftLegBorgMining - entities: - - uid: 26798 + - uid: 26375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.410713,-45.219322 + pos: -83.5,-60.5 parent: 2 -- proto: LeftLegReptilian - entities: - - uid: 26799 + - uid: 26376 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.578598,-33.43395 + pos: 59.5,-101.5 parent: 2 -- proto: LeftLegSkeleton - entities: - - uid: 26800 + - uid: 26377 components: - type: Transform - pos: 65.5,-50.5 + pos: 58.5,-105.5 parent: 2 -- proto: LegionnaireBonfire - entities: - - uid: 26801 + - uid: 26378 components: - - type: MetaData - desc: Легион имя мне. - type: Transform - pos: 69.5,-49.5 + pos: 59.5,-103.5 parent: 2 -- proto: LGBTQFlag - entities: - - uid: 26802 + - uid: 26379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,5.5 + rot: -1.5707963267948966 rad + pos: 30.5,39.5 parent: 2 - - uid: 26803 + - uid: 26380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,5.5 + pos: -69.5,16.5 parent: 2 - - uid: 26804 + - uid: 26381 components: - type: Transform - pos: -67.5,5.5 + pos: -62.5,15.5 parent: 2 -- proto: LGBTQHandyFlag - entities: - - uid: 26805 + - uid: 26382 components: - type: Transform - pos: -70.448006,4.5415454 + pos: -49.5,-74.5 parent: 2 -- proto: LightBulbBroken - entities: - - uid: 26806 + - uid: 26383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.410088,-74.550186 + pos: -46.5,-74.5 parent: 2 - - uid: 26807 + - uid: 26384 components: - type: Transform - pos: 84.382355,-44.48628 + rot: 3.141592653589793 rad + pos: -84.5,5.5 parent: 2 -- proto: Lighter - entities: - - uid: 26808 + - uid: 26385 components: - type: Transform - pos: 8.601826,13.614818 + rot: 3.141592653589793 rad + pos: -83.5,5.5 parent: 2 - - uid: 26809 + - uid: 26386 components: - type: Transform - pos: 57.742687,15.597738 + rot: 3.141592653589793 rad + pos: -92.5,-4.5 parent: 2 -- proto: LightHeadBorg - entities: - - uid: 26810 + - uid: 26387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.12615,-29.497633 + rot: 3.141592653589793 rad + pos: -93.5,-12.5 parent: 2 - - uid: 26811 + - uid: 26388 components: - type: Transform - pos: -16.486774,-45.63583 + pos: -63.5,-111.5 parent: 2 -- proto: LightReplacer - entities: - - uid: 26812 + - uid: 26389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.522446,-29.444263 + pos: -48.5,-125.5 parent: 2 - - uid: 26813 + - uid: 26390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.70501,-66.38782 + pos: -57.5,-126.5 parent: 2 -- proto: LightTubeCrystalRed - entities: - - uid: 26815 + - uid: 26391 components: - type: Transform - parent: 26814 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26817 + pos: -42.5,-128.5 + parent: 2 + - uid: 26392 components: - type: Transform - parent: 26816 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26819 + pos: -35.5,-128.5 + parent: 2 + - uid: 26393 components: - type: Transform - parent: 26818 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26821 + pos: -32.5,-128.5 + parent: 2 + - uid: 26394 components: - type: Transform - parent: 26820 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26823 + pos: -26.5,-120.5 + parent: 2 + - uid: 26395 components: - type: Transform - parent: 26822 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26825 + pos: -28.5,-121.5 + parent: 2 + - uid: 26396 components: - type: Transform - parent: 26824 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26827 + pos: -22.5,-113.5 + parent: 2 + - uid: 26397 components: - type: Transform - parent: 26826 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26829 + pos: -22.5,-110.5 + parent: 2 + - uid: 26398 components: - type: Transform - parent: 26828 - - type: LightBulb - lightRadius: 2 - - type: Physics - canCollide: False - - uid: 26831 - components: - - type: Transform - parent: 26830 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26833 - components: - - type: Transform - parent: 26832 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26835 - components: - - type: Transform - parent: 26834 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26837 - components: - - type: Transform - parent: 26836 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26839 - components: - - type: Transform - parent: 26838 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26841 - components: - - type: Transform - parent: 26840 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26843 - components: - - type: Transform - parent: 26842 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26845 - components: - - type: Transform - parent: 26844 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26847 - components: - - type: Transform - parent: 26846 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26849 - components: - - type: Transform - parent: 26848 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26851 - components: - - type: Transform - parent: 26850 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26853 - components: - - type: Transform - parent: 26852 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26855 - components: - - type: Transform - parent: 26854 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26857 - components: - - type: Transform - parent: 26856 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26859 - components: - - type: Transform - parent: 26858 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26861 - components: - - type: Transform - parent: 26860 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26863 - components: - - type: Transform - parent: 26862 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26865 - components: - - type: Transform - parent: 26864 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26867 - components: - - type: Transform - parent: 26866 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26869 - components: - - type: Transform - parent: 26868 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26871 - components: - - type: Transform - parent: 26870 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False -- proto: LiquidNitrogenCanister - entities: - - uid: 26872 - components: - - type: Transform - pos: 36.5,-46.5 - parent: 2 - - uid: 26873 - components: - - type: Transform - pos: -74.5,-27.5 - parent: 2 - - uid: 26874 - components: - - type: Transform - pos: 95.5,-82.5 - parent: 2 -- proto: LiquidOxygenCanister - entities: - - uid: 26875 - components: - - type: Transform - pos: 36.5,-47.5 - parent: 2 - - uid: 26876 - components: - - type: Transform - pos: -75.5,-27.5 - parent: 2 - - uid: 26877 - components: - - type: Transform - pos: 96.5,-82.5 - parent: 2 -- proto: LiveLetLiveCircuitBoard - entities: - - uid: 26878 - components: - - type: Transform - pos: 17.495003,18.547726 - parent: 2 -- proto: LockableButtonArmory - entities: - - uid: 26879 - components: - - type: MetaData - desc: Эта кнопка открывает гермозатвор хранилища снаряжения красного кода. - name: Красный код - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-15.5 + pos: 89.5,-90.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2194: - - Pressed: Toggle - - uid: 26880 + - uid: 26399 components: - - type: MetaData - desc: Эта кнопка открывает гермозатвор хранилища снаряжения синего кода. - name: Синий код - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-14.5 + pos: 82.5,-81.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2184: - - Pressed: Toggle - - uid: 26881 + - uid: 26400 components: - - type: MetaData - name: Снаряжение - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-16.5 + pos: 101.5,-96.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2195: - - Pressed: Toggle - - uid: 26882 + - uid: 26401 components: - - type: MetaData - name: блокировка камеры 1 - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,3.5 + pos: 110.5,-66.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2241: - - Pressed: Toggle - - uid: 26883 + - uid: 26402 components: - - type: MetaData - name: блокировка камеры 4 - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,2.5 + pos: 26.5,36.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2243: - - Pressed: Toggle - - uid: 26884 + - uid: 26403 components: - - type: MetaData - name: блокировка камеры 2 - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,6.5 + anchored: False + pos: 68.5,-90.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2244: - - Pressed: Toggle - - uid: 26885 + - uid: 26404 components: - - type: MetaData - name: блокировка камеры 5 - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,5.5 + pos: 74.5,-74.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2245: - - Pressed: Toggle - - uid: 26886 + - uid: 26405 components: - - type: MetaData - name: блокировка камеры 3 - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-0.5 + pos: 70.5,-74.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2242: - - Pressed: Toggle -- proto: LockableButtonBrig - entities: - - uid: 26887 + - uid: 26406 components: - - type: MetaData - name: вызов уборщика - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-6.5 + pos: 9.5,-113.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26713: - - Pressed: Toggle - 26712: - - Pressed: Toggle -- proto: LockableButtonCaptain - entities: - - uid: 26888 + - uid: 26407 components: - - type: MetaData - name: кнопка вызова ОБР - type: Transform - rot: 1.5707963267948966 rad - pos: 7.2179623,16.508371 + pos: 13.5,-113.5 parent: 2 - - type: WirelessNetworkConnection - range: 1000 - - type: DeviceLinkSource - range: 1000 - linkedPorts: - 40849: - - Pressed: Open - 40850: - - Pressed: Toggle - 28502: - - Pressed: Toggle - - uid: 41325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.517624,-6.217499 - parent: 40828 - - type: DeviceLinkSource - linkedPorts: - 40848: - - Pressed: Toggle -- proto: LockableButtonChapel - entities: - - uid: 26889 + - uid: 26408 components: - - type: MetaData - desc: Эта кнопка закрывает ставни. - name: кнопка закрытия церкви - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-64.5 + pos: 4.5,-110.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31087: - - Pressed: Toggle - 31088: - - Pressed: Toggle - 31090: - - Pressed: Toggle - 31089: - - Pressed: Toggle - 31092: - - Pressed: Toggle - 31091: - - Pressed: Toggle - - uid: 26890 + - uid: 26409 components: - - type: MetaData - name: свет - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-66.5 + pos: 85.5,6.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 28326: - - Pressed: Toggle - 28179: - - Pressed: Toggle - 28180: - - Pressed: Toggle -- proto: LockableButtonChemistry - entities: - - uid: 26891 + - uid: 26410 components: - - type: MetaData - desc: Эта кнопка переключает ставни. - name: кнопка ставней - type: Transform rot: 3.141592653589793 rad - pos: -36.28956,-32.024765 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31098: - - Pressed: Toggle - 31094: - - Pressed: Toggle - 31097: - - Pressed: Toggle - 31095: - - Pressed: Toggle - 31096: - - Pressed: Toggle - 31093: - - Pressed: Toggle -- proto: LockableButtonCommand - entities: - - uid: 26892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2143: - - Pressed: Toggle - - uid: 26893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,15.5 + pos: 92.5,-1.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2142: - - Pressed: Toggle - - uid: 41839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5362701,2.5786743 - parent: 41669 - - type: DeviceLinkSource - linkedPorts: - 41688: - - Pressed: Toggle - 41687: - - Pressed: Toggle - 41684: - - Pressed: Toggle - 41683: - - Pressed: Toggle - 41686: - - Pressed: Toggle - 41685: - - Pressed: Toggle - 41689: - - Pressed: Toggle -- proto: LockableButtonHeadOfSecurity +- proto: GunpetInstrument entities: - - uid: 26894 + - uid: 26411 components: - type: MetaData - name: кнопка вызова ОБР + name: микроволновая пушка - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,13.3 + pos: 12.604113,-15.40472 parent: 2 - - type: DeviceLinkSource - range: 30000000 - linkedPorts: - 40850: - - Pressed: Open - 28505: - - Pressed: On -- proto: LockableButtonSalvage +- proto: GunSafe entities: - - uid: 26895 + - uid: 2435 components: - - type: MetaData - name: послать калибровочный сигнал - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-51.5 + pos: 12.5,-20.5 parent: 2 - type: AccessReader access: - - NuclearOperative - - - Salvage - - type: DeviceLinkSource - linkedPorts: - 2209: - - Pressed: Open - - uid: 26896 - components: - - type: MetaData - name: начать синхронизацию - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-23.5 - parent: 2 - - type: DeviceLinkSource - range: 10000 - linkedPorts: - 2211: - - Pressed: Open -- proto: LockableButtonSecurity - entities: - - uid: 26897 - components: - - type: MetaData - desc: Эта кнопка переключает освещение. - name: свет - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-9.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 28060: - - Pressed: Toggle - 28393: - - Pressed: Toggle - - uid: 26898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2208: - - Pressed: Toggle - - uid: 26899 - components: - - type: MetaData - desc: Гермозатвор - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.056854,4.3158965 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2210: - - Pressed: Toggle - 39839: - - Pressed: DoorBolt - - uid: 26900 - components: - - type: MetaData - desc: Эта кнопка блотирует шлюзы допросной. - name: болты - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 910: - - Pressed: DoorBolt - 899: - - Pressed: DoorBolt - - uid: 26901 - components: - - type: MetaData - desc: Эта кнопка переключает освещение. - name: свет - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-4.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 28393: - - Pressed: Toggle - 28060: - - Pressed: Toggle - - uid: 26902 - components: - - type: MetaData - name: ставни окон в космос - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-8.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31102: - - Pressed: Toggle - 31103: - - Pressed: Toggle - 31104: - - Pressed: Toggle - 31105: - - Pressed: Toggle - 31106: - - Pressed: Toggle -- proto: LockerAtmosphericsFilled - entities: - - uid: 20 - components: - - type: Transform - pos: 37.5,-52.5 - parent: 2 - type: EntityStorage air: volume: 200 @@ -188264,100 +189603,47 @@ entities: showEnts: False occludes: True ents: - - 21 - - 24 - - 23 + - 2436 + - 2437 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25 + - uid: 2469 components: - type: Transform - pos: 36.5,-52.5 + pos: -1.5,-32.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 26 - - 29 - - 28 + - 2470 + - 2471 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 30 + - uid: 16307 components: + - type: MetaData + name: сейф капсульного пистолета - type: Transform - pos: 35.5,-52.5 + pos: -68.5,-50.5 parent: 2 + - type: AccessReader + access: + - - Service - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 31 - - 34 - - 33 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerBooze - entities: - - uid: 18743 - components: - - type: Transform - pos: -4.5,-71.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8977377 - - 7.139109 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -188368,83 +189654,30 @@ entities: - 0 - 0 - 0 - - type: Lock - locked: False - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 18745 - - 18746 - - 18744 + - 16516 + - 19056 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: LockerBoozeFilled - entities: - - uid: 26903 - components: - - type: Transform - pos: 22.5,7.5 - parent: 2 -- proto: LockerBotanistFilled - entities: - - uid: 26904 - components: - - type: Transform - pos: 37.5,9.5 - parent: 2 - - uid: 26905 - components: - - type: Transform - pos: 38.5,9.5 - parent: 2 - - uid: 26906 - components: - - type: Transform - pos: 36.5,9.5 - parent: 2 -- proto: LockerBotanistLoot - entities: - - uid: 26907 - components: - - type: Transform - pos: -14.5,-19.5 - parent: 2 - - uid: 26908 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerBrigmedic - entities: - - uid: 2475 + - uid: 26412 components: + - type: MetaData + name: сейф для секретов - type: Transform anchored: True - pos: 65.5,1.5 + pos: -4.5,-8.5 parent: 2 + - type: AccessReader + access: + - - Captain + - - HeadOfSecurity - type: Physics bodyType: Static - type: EntityStorage @@ -188453,8 +189686,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -188471,53 +189704,31 @@ entities: showEnts: False occludes: True ents: - - 2476 - - 2491 - - 2479 - - 2487 - - 2490 - - 2484 - - 2477 - - 2480 - - 2481 - - 2478 - - 2486 - - 2485 - - 2483 - - 2482 - - 2488 - - 2489 + - 26413 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - type: Pullable prevFixedRotation: True -- proto: LockerCaptainFilled - entities: - - uid: 26909 - components: - - type: Transform - pos: 16.5,16.5 - parent: 2 -- proto: LockerChemistry - entities: - - uid: 15846 + - uid: 26414 components: + - type: MetaData + name: сейф с жетонами - type: Transform - anchored: True - pos: 3.5,-9.5 + pos: -59.5,11.5 parent: 2 - - type: Physics - bodyType: Static + - type: AccessReader + access: + - - HeadOfPersonnel - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8978093 + - 7.139378 - 0 - 0 - 0 @@ -188534,53 +189745,34 @@ entities: showEnts: False occludes: True ents: - - 15847 + - 26420 + - 26416 + - 26421 + - 26415 + - 26417 + - 26419 + - 26418 + - 27600 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - type: Pullable - prevFixedRotation: True -- proto: LockerChemistryFilled - entities: - - uid: 26910 - components: - - type: Transform - pos: -38.5,-31.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerChiefEngineerFilled - entities: - - uid: 26911 + - uid: 26423 components: - type: Transform - pos: 55.5,-76.5 + pos: 8.5,-20.5 parent: 2 + - type: AccessReader + access: + - - Salvage - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -188597,51 +189789,26 @@ entities: showEnts: False occludes: True ents: - - 26912 + - 26959 + - 26961 + - 26957 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 26913 + - uid: 40879 components: - type: Transform - pos: -38.5,-12.5 - parent: 2 + pos: 5.5,-11.5 + parent: 40828 - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerClown - entities: - - uid: 1311 - components: - - type: Transform - pos: -51.5,-112.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14755 - moles: - - 1.8978151 - - 7.1394 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -188658,29 +189825,27 @@ entities: showEnts: False occludes: True ents: - - 1312 - - 1316 - - 1315 - - 1314 - - 1313 - - 1317 + - 40881 + - 40882 + - 40880 + - 40883 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 19910 + - uid: 41318 components: - type: Transform - pos: 36.5,-15.5 - parent: 2 + pos: -3.5,-6.5 + parent: 40828 - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -188697,114 +189862,33 @@ entities: showEnts: False occludes: True ents: - - 19916 - - 19913 - - 19919 - - 19918 - - 19911 - - 19912 - - 19915 - - 19917 - - 19914 + - 41321 + - 41319 + - 41320 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: LockerDetective +- proto: GunSafeDisabler entities: - - uid: 2259 + - uid: 26425 components: - - type: MetaData - desc: Редкие книги по запросу. - name: Картотечные книги - type: Transform - pos: -36.5,5.5 + pos: 55.5,-20.5 parent: 2 - - type: AccessReader - access: - - - Service - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2261 - - 2264 - - 2263 - - 2262 - - 2260 - - 2265 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 15756 +- proto: GunSafeLaserCarbine + entities: + - uid: 26426 components: - - type: MetaData - name: шкаф - type: Transform - pos: 53.5,20.5 + pos: 62.5,-11.5 parent: 2 - - type: AccessReader - enabled: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15759 - - 15757 - - 15758 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerDetectiveFilled +- proto: GunSafePistolMk58 entities: - - uid: 2374 + - uid: 26427 components: - type: Transform - pos: 39.5,-23.5 + pos: 65.5,-11.5 parent: 2 - type: EntityStorage air: @@ -188830,6402 +189914,16603 @@ entities: showEnts: False occludes: True ents: - - 2375 + - 16443 + - 26422 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: LockerElectricalSuppliesFilled +- proto: GunSafeRifleLecter entities: - - uid: 26914 - components: - - type: Transform - pos: 64.5,15.5 - parent: 2 - - type: Lock - locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 26915 + - uid: 26428 components: - type: Transform - pos: -72.5,11.5 + pos: 63.5,-17.5 parent: 2 - - uid: 26916 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 26429 components: - type: Transform - pos: -55.5,-87.5 + pos: 64.5,-17.5 parent: 2 - - uid: 26917 +- proto: Gyroscope + entities: + - uid: 40756 components: - type: Transform - pos: 65.5,-71.5 - parent: 2 - - uid: 26918 + pos: -1.5,-0.5 + parent: 40666 + - uid: 41837 components: - type: Transform - pos: 79.5,-49.5 - parent: 2 - - uid: 26919 + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 41669 +- proto: GyroscopeFlatpack + entities: + - uid: 26430 components: - type: Transform - pos: -87.5,-19.5 + pos: -22.45288,-46.535347 parent: 2 -- proto: LockerEngineerFilled +- proto: Handcuffs entities: - - uid: 26920 + - uid: 26431 components: - type: Transform - pos: 81.5,-52.5 + rot: 6.283185307179586 rad + pos: 52.60071,-17.486929 parent: 2 - - uid: 26921 + - uid: 26432 components: - type: Transform - pos: 49.5,-81.5 + rot: 6.283185307179586 rad + pos: 52.545673,-17.560314 parent: 2 - - uid: 26922 + - uid: 26433 components: - type: Transform - pos: 48.5,-81.5 + rot: 6.283185307179586 rad + pos: 52.619057,-17.52362 parent: 2 - - uid: 26923 + - uid: 26434 components: - type: Transform - pos: 51.5,-81.5 + pos: -7.590296,1.7182901 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 26924 + - uid: 26435 components: - type: Transform - pos: 50.5,-81.5 + pos: -2.5020196,13.503156 parent: 2 - - uid: 26925 + - uid: 26436 components: - type: Transform - pos: 43.5,-60.5 + pos: 73.72027,-26.411335 parent: 2 - - uid: 26926 + - uid: 26437 components: - type: Transform - pos: 44.5,-60.5 + pos: -47.30249,-46.404476 parent: 2 -- proto: LockerEvidence - entities: - - uid: 26927 + - uid: 26438 components: - type: Transform - pos: 72.5,-4.5 + pos: 80.95268,3.7681172 parent: 2 - - uid: 26928 + - uid: 26439 components: - type: Transform - pos: 49.5,-20.5 + pos: 42.548824,-11.543914 parent: 2 - - uid: 26929 +- proto: HandheldGPSBasic + entities: + - uid: 1384 components: - type: Transform - pos: 49.5,-22.5 + pos: 56.336117,15.275301 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 26930 + - uid: 26441 components: - type: Transform - pos: 42.5,4.5 - parent: 2 - - uid: 26931 + parent: 26440 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26442 components: - type: Transform - pos: 42.5,1.5 + pos: -2.3341408,17.567802 parent: 2 - - uid: 26932 + - uid: 26443 components: - type: Transform - pos: 44.5,8.5 + pos: -8.519856,-96.43567 parent: 2 - - uid: 26933 +- proto: HandheldHealthAnalyzer + entities: + - uid: 26444 components: - type: Transform - pos: 50.5,-1.5 + pos: 62.341415,-4.6432304 parent: 2 - - uid: 26934 + - uid: 26445 components: - type: Transform - pos: 52.5,-0.5 + rot: 1.5707963267948966 rad + pos: -6.3343987,19.591106 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 26935 + - uid: 26446 components: - type: Transform - pos: 50.5,-0.5 + pos: -1.5541707,-35.49254 parent: 2 - - uid: 26936 +- proto: HandheldHealthAnalyzerUnpowered + entities: + - uid: 26447 components: - type: Transform - pos: 44.5,3.5 + pos: -68.47285,-49.354755 parent: 2 - - uid: 26937 + - uid: 26448 components: - type: Transform - pos: 44.5,0.5 + rot: 1.5707963267948966 rad + pos: -46.32156,-5.4472365 parent: 2 - - uid: 26938 + - uid: 26449 components: - type: Transform - pos: 73.5,-4.5 + pos: 83.284225,-9.472714 parent: 2 - - uid: 26939 +- proto: HandHeldMassScanner + entities: + - uid: 26450 components: - type: Transform - pos: 74.5,-4.5 + pos: 19.483318,-12.427057 parent: 2 - - uid: 26940 + - uid: 41322 components: - type: Transform - pos: 75.5,-4.5 - parent: 2 - - uid: 26941 + rot: 1.5707963267948966 rad + pos: -1.5011597,-6.9646606 + parent: 40828 +- proto: HandheldStationMap + entities: + - uid: 26451 components: - type: Transform - pos: 42.5,-9.5 + rot: -1.5707963267948966 rad + pos: 50.615925,-52.310795 parent: 2 - - uid: 26942 + - uid: 26452 components: - type: Transform - pos: 42.5,-8.5 + rot: 1.5707963267948966 rad + pos: 9.431866,24.706774 parent: 2 -- proto: LockerFreezer - entities: - - uid: 18779 + - uid: 26453 components: - type: Transform - pos: 25.5,14.5 + pos: -31.679695,-95.45278 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 234.99739 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18780 - - 18781 - - 18782 - - 18783 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18852 + - uid: 26454 components: - type: Transform - pos: -20.5,-19.5 + rot: -1.5707963267948966 rad + pos: 5.534402,-103.27963 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18853 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19903 + - uid: 26455 components: - type: Transform - pos: -19.5,-19.5 + pos: 66.536896,-26.568066 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19904 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 26723 + - uid: 26456 components: - type: Transform - pos: -55.5,9.5 + pos: 16.484941,-27.410738 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26724 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerFreezerBase +- proto: HandLabeler entities: - - uid: 2364 + - uid: 26457 components: - type: Transform - pos: 87.5,-10.5 + pos: 67.05984,-27.312744 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2365 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 15665 + - uid: 26458 components: - type: Transform - anchored: True - pos: -5.5,-8.5 + pos: -27.49639,-77.098885 parent: 2 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14835 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15672 - - 15667 - - 15666 - - 15671 - - 15669 - - 15668 - - 15670 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Pullable - prevFixedRotation: True - - uid: 18747 + - uid: 26459 components: - type: Transform - pos: 46.5,-75.5 + pos: 50.990173,-53.741455 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18748 - - 18749 - - 18750 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18855 + - uid: 26460 components: - type: Transform - pos: -41.5,-86.5 + pos: 34.196903,-71.29056 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18857 - - 18856 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19900 + - uid: 26461 components: - type: Transform - pos: -39.5,-5.5 + pos: -35.393368,-27.351479 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19901 - - 19902 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 26943 + - uid: 26462 components: - type: Transform - pos: -9.5,7.5 + pos: -57.473927,-32.84579 parent: 2 -- proto: LockerHeadOfSecurityFilled +- proto: HappyHonk entities: - - uid: 26944 + - uid: 26463 components: - type: Transform - pos: 50.5,16.5 + pos: 31.546932,4.9642363 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26945 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedical +- proto: HeadMoth entities: - - uid: 15584 + - uid: 26470 components: - type: Transform - pos: -19.5,10.5 + pos: 65.5,-50.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14755 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15585 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 15805 +- proto: HeadReptilian + entities: + - uid: 26471 components: - type: Transform - pos: -51.5,-18.5 + rot: -1.5707963267948966 rad + pos: -64.8308,-32.5277 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15806 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedicalFilled +- proto: HeadSkeleton entities: - - uid: 26946 + - uid: 26472 components: - type: Transform - pos: -50.5,-8.5 + pos: -66.48876,6.5341115 parent: 2 - - uid: 26947 + - uid: 26474 components: - type: Transform - pos: -50.5,-9.5 + parent: 26473 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26475 + components: + - type: Transform + pos: 35.508606,-63.398216 parent: 2 - - uid: 26948 + - uid: 26477 components: - type: Transform - pos: -50.5,-10.5 + pos: 33.56932,0.5548261 parent: 2 - - uid: 26949 + - uid: 26478 components: - type: Transform - pos: -47.5,-40.5 + pos: -8.466255,25.443705 parent: 2 -- proto: LockerMedicine +- proto: HeadVox entities: - - uid: 2513 + - uid: 26479 components: - type: Transform - pos: -19.5,12.5 + rot: 1.5707963267948966 rad + pos: 42.36527,-109.73952 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14755 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2514 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedicineFilled +- proto: HeatExchanger entities: - - uid: 15813 + - uid: 26480 components: - type: Transform - pos: -47.5,-11.5 + rot: -1.5707963267948966 rad + pos: 59.5,-92.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15814 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 26950 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 26481 components: - type: Transform - pos: -51.5,-17.5 + rot: -1.5707963267948966 rad + pos: 62.5,-93.5 parent: 2 - - uid: 26951 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: HighSecArmoryLocked + entities: + - uid: 26482 components: - type: Transform - pos: -64.5,-23.5 + pos: 63.5,-14.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 26952 + - uid: 26483 components: - type: Transform - pos: -48.5,-11.5 + pos: 59.5,-18.5 parent: 2 - - uid: 26953 + - uid: 26484 components: - type: Transform - pos: -59.5,-25.5 + rot: 3.141592653589793 rad + pos: 53.5,-18.5 parent: 2 -- proto: LockerMime - entities: - - uid: 15625 + - uid: 41323 components: - type: Transform - pos: 34.5,-15.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15628 - - 15630 - - 15631 - - 15627 - - 15626 - - 15629 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerParamedicFilled + pos: 3.5,-9.5 + parent: 40828 +- proto: HighSecCentralCommandLocked entities: - - uid: 26954 + - uid: 26485 components: - type: Transform - pos: -51.5,-12.5 + rot: 3.141592653589793 rad + pos: 1.5,-32.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerQuarterMasterFilled + - uid: 41838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 41669 +- proto: HighSecCommandLocked entities: - - uid: 26955 + - uid: 26486 components: - type: Transform - pos: -0.5,-98.5 + pos: 99.5,-73.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerRepresentative - entities: - - uid: 1785 + - uid: 26487 components: - type: Transform - anchored: True - pos: -14.5,10.5 + pos: 97.5,-73.5 parent: 2 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1791 - - 1792 - - 1786 - - 1790 - - 1789 - - 1787 - - 1788 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Pullable - prevFixedRotation: True - - uid: 41096 + - uid: 26488 components: - type: Transform - pos: -5.5,-4.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41099 - - 41101 - - 41097 - - 41100 - - 41102 - - 41098 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerResearchDirectorFilled - entities: - - uid: 1345 + pos: 97.5,-77.5 + parent: 2 + - uid: 26489 components: - type: Transform - pos: -35.5,-67.5 + pos: 99.5,-77.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1346 - - 1348 - - 1347 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSalvageSpecialistFilled +- proto: HighSecDoor entities: - - uid: 26956 + - uid: 26490 components: - type: Transform - pos: -4.5,-89.5 + pos: 12.5,20.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26957 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 26958 - components: - - type: Transform - pos: -4.5,-90.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26959 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 26960 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer + - - HeadOfSecurity + - - ResearchDirector + - uid: 26491 components: - type: Transform - pos: -4.5,-91.5 + rot: 3.141592653589793 rad + pos: -3.5,-6.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26961 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerScienceFilled - entities: - - uid: 15632 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer + - - HeadOfSecurity + - - ResearchDirector + - uid: 26492 components: - type: Transform - pos: -41.5,-77.5 + rot: 3.141592653589793 rad + pos: 27.5,-39.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15633 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 26962 + - type: AccessReader + containerAccessProvider: null + access: + - - ChiefEngineer + - uid: 26493 components: - type: Transform - pos: -46.5,-83.5 + rot: 3.141592653589793 rad + pos: -12.5,-47.5 parent: 2 - - uid: 26963 + - type: AccessReader + containerAccessProvider: null + - uid: 26494 components: - type: Transform - pos: -41.5,-76.5 + pos: 38.5,-40.5 parent: 2 - - uid: 26964 + - type: AccessReader + containerAccessProvider: null + access: + - - ChiefEngineer + - uid: 26495 components: + - type: MetaData + desc: Только для НаучРука, ГСБ и Старшего инженера. + name: ядро ИИ - type: Transform - pos: -41.5,-57.5 + pos: 98.5,-85.5 parent: 2 -- proto: LockerSecurity - entities: - - uid: 15484 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer + - - HeadOfSecurity + - - ResearchDirector + - uid: 26496 components: - type: MetaData - name: шкаф пилота + desc: Только для НаучРука, ГСБ и Старшего инженера. + name: ядро ИИ - type: Transform - pos: 59.5,15.5 + pos: 98.5,-81.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14835 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15486 - - 15488 - - 15494 - - 15485 - - 15490 - - 15487 - - 15492 - - 15493 - - 15489 - - 15491 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Pullable - prevFixedRotation: True - - uid: 26965 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer + - - HeadOfSecurity + - - ResearchDirector + - uid: 26497 components: - type: Transform - pos: -70.5,-50.5 + pos: -1.5,-6.5 parent: 2 - - uid: 26966 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer + - - HeadOfSecurity + - - ResearchDirector + - uid: 26498 components: - type: Transform - pos: -76.5,-50.5 + rot: 3.141592653589793 rad + pos: 4.5,-7.5 parent: 2 - - uid: 26967 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer + - uid: 26499 components: + - type: MetaData + name: РОБОТОТЕХНИЧЕСКАЯ ЛАБОРАТОРИЯ - type: Transform - pos: -53.5,11.5 + rot: 3.141592653589793 rad + pos: -12.5,-45.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14755 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26968 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSecurityFilled - entities: - - uid: 26969 + - type: AccessReader + containerAccessProvider: null + - uid: 26500 components: + - type: MetaData + name: ГЕНОХРАНИЛИЩЕ - type: Transform - pos: 65.5,3.5 + pos: -16.5,-41.5 parent: 2 - - uid: 26970 + - type: AccessReader + containerAccessProvider: null + - uid: 26501 components: - type: Transform - pos: 65.5,5.5 + rot: 3.141592653589793 rad + pos: -12.5,-33.5 parent: 2 - - uid: 26971 + - uid: 26502 components: - type: Transform - pos: 64.5,5.5 + rot: 3.141592653589793 rad + pos: 10.5,-26.5 parent: 2 - - uid: 26972 + - type: AccessReader + containerAccessProvider: null + access: + - - NuclearOperative +- proto: HolofanProjector + entities: + - uid: 26503 components: - type: Transform - pos: 62.5,3.5 + pos: 38.471985,-52.303555 parent: 2 - - uid: 26973 + - uid: 26504 components: - type: Transform - pos: 62.5,5.5 + pos: 41.638515,-94.44738 parent: 2 - - uid: 26974 +- proto: HolyHandGrenade + entities: + - uid: 12 components: + - type: MetaData + desc: 'Не содержит взрывчатых веществ. «Благослови, Господи, сию ручную державу, да помоги мне исполнить мечты мои!». ' + name: церковная держава - type: Transform - pos: 63.5,5.5 - parent: 2 - - uid: 26975 + parent: 5 + - type: Physics + canCollide: False + missingComponents: + - ExplodeOnTrigger + - Explosive + - OnUseTimerTrigger + - PointLight + - HiddenDescription + - Contraband +- proto: HospitalCurtains + entities: + - uid: 26505 components: - type: Transform - pos: 63.5,3.5 + rot: 3.141592653589793 rad + pos: 32.5,-8.5 parent: 2 - - uid: 26976 + - uid: 26506 components: - type: Transform - pos: 64.5,3.5 + rot: 3.141592653589793 rad + pos: 36.5,-8.5 parent: 2 - - uid: 26977 + - uid: 26507 components: - type: Transform - pos: 75.5,-26.5 + rot: 3.141592653589793 rad + pos: 33.5,-8.5 parent: 2 - - uid: 26978 + - uid: 26508 components: - type: Transform - pos: -2.5,-83.5 + rot: 3.141592653589793 rad + pos: -46.5,-22.5 parent: 2 - - uid: 26979 + - uid: 26509 components: - type: Transform - pos: -47.5,-51.5 + rot: 3.141592653589793 rad + pos: -46.5,-25.5 parent: 2 - - uid: 26980 + - uid: 26510 components: - type: Transform - pos: -46.5,-34.5 + pos: 16.5,11.5 parent: 2 -- proto: LockerSteel - entities: - - uid: 15479 + - uid: 26511 components: - type: Transform - pos: 15.5,-21.5 + pos: 16.5,13.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15480 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerWallMedical - entities: - - uid: 40860 + - uid: 26512 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-13.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 40861 - - 40862 - - 40863 -- proto: LockerWallMedicalFilled - entities: - - uid: 26981 + pos: -46.5,-21.5 + parent: 2 + - uid: 26513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-50.5 + pos: -53.5,-13.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26982 - - uid: 41840 + - uid: 26514 components: - type: Transform - pos: 5.5,-0.5 - parent: 41669 -- proto: LockerWardenFilled - entities: - - uid: 26983 + rot: 3.141592653589793 rad + pos: -90.5,-1.5 + parent: 2 + - uid: 26515 components: - type: Transform - pos: 53.5,-21.5 + pos: -83.5,-11.5 parent: 2 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 26984 + - uid: 26516 components: - type: Transform - pos: 81.5,-66.5 + pos: -83.5,-10.5 parent: 2 - - uid: 26985 + - uid: 26517 components: - type: Transform - pos: -38.5,-112.5 + pos: -83.5,-9.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 26986 + - uid: 26518 components: - type: Transform - pos: 37.5,30.5 + pos: -83.5,-7.5 parent: 2 - - uid: 26987 + - uid: 26519 components: - type: Transform - pos: 36.5,33.5 + pos: -76.5,-10.5 parent: 2 - - uid: 26988 + - uid: 26520 components: - type: Transform - pos: -61.5,-18.5 + pos: -73.5,-8.5 parent: 2 -- proto: Log +- proto: HospitalCurtainsOpen entities: - - uid: 26989 + - uid: 26521 components: - type: Transform - pos: -80.94435,-17.299232 + pos: 78.5,-12.5 parent: 2 - - uid: 26990 + - uid: 26522 components: - type: Transform - pos: -81.25685,-17.189857 + rot: 3.141592653589793 rad + pos: 35.5,-8.5 parent: 2 - - uid: 26991 + - uid: 26523 components: - type: Transform - pos: -81.25685,-17.424232 + rot: 3.141592653589793 rad + pos: 37.5,-8.5 parent: 2 -- proto: LogicGateAnd - entities: - - uid: 26992 + - uid: 26524 components: - type: Transform - pos: -9.303374,-51.572456 + rot: 3.141592653589793 rad + pos: 34.5,-8.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 31210: - - Output: Trigger -- proto: LogicGateOr - entities: - - uid: 41326 + - uid: 26525 components: - type: Transform - anchored: True - pos: -4.5,-0.5 - parent: 40828 - - type: LogicGate - gate: And - - type: DeviceLinkSink - invokeCounter: 4 - - type: Physics - canCollide: False - bodyType: Static - - uid: 41327 + pos: 16.5,12.5 + parent: 2 + - uid: 26526 components: - type: Transform - anchored: True - pos: -4.5,-1.5 - parent: 40828 - - type: LogicGate - gate: And - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 41399: - - Output: Trigger - - type: Physics - canCollide: False - bodyType: Static - - uid: 41328 + rot: 3.141592653589793 rad + pos: -46.5,-20.5 + parent: 2 + - uid: 26527 components: - type: Transform - anchored: True - pos: -4.5,-2.5 - parent: 40828 - - type: LogicGate - gate: And - - type: DeviceLinkSink - invokeCounter: 4 - - type: Physics - canCollide: False - bodyType: Static -- proto: LogProbeCartridge - entities: - - uid: 1377 + rot: 3.141592653589793 rad + pos: -46.5,-23.5 + parent: 2 + - uid: 26528 components: - type: Transform - parent: 1372 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LootSpawnerArmoryArmorOnly - entities: - - uid: 26993 + rot: 3.141592653589793 rad + pos: -46.5,-24.5 + parent: 2 + - uid: 26529 components: - type: Transform - pos: 65.5,-19.5 + pos: -53.5,-12.5 parent: 2 - - uid: 26994 + - uid: 26530 components: - type: Transform - pos: 60.5,-19.5 + rot: 3.141592653589793 rad + pos: 57.5,-75.5 parent: 2 -- proto: LootSpawnerArmoryGunsOnly - entities: - - uid: 26995 + - uid: 26531 components: - type: Transform - pos: 62.5,-17.5 + pos: -83.5,-8.5 parent: 2 - - uid: 26996 + - uid: 26532 components: - type: Transform - pos: 65.5,-17.5 + pos: -73.5,-9.5 parent: 2 -- proto: LootSpawnerCableCoil - entities: - - uid: 26997 + - uid: 26533 components: - type: Transform - pos: 34.5,30.5 + pos: -73.5,-7.5 parent: 2 -- proto: LootSpawnerContraband - entities: - - uid: 26998 + - uid: 26534 components: - type: Transform - pos: 3.5,-95.5 + rot: -1.5707963267948966 rad + pos: 51.5,-25.5 parent: 2 - - uid: 26999 + - uid: 26535 components: - type: Transform - pos: -88.5,-0.5 + pos: 76.5,-12.5 parent: 2 -- proto: LootSpawnerContrabandHigh - entities: - - uid: 27000 + - uid: 26536 components: - type: Transform - pos: 8.5,-59.5 + pos: 74.5,-12.5 parent: 2 -- proto: LootSpawnerIndustrial +- proto: HydrogenChemistryBottle entities: - - uid: 27001 + - uid: 1989 components: - type: Transform - pos: 104.5,-57.5 - parent: 2 - - uid: 27002 + parent: 1980 + - type: Physics + canCollide: False +- proto: hydroponicsSoil + entities: + - uid: 666 components: - type: Transform - pos: 53.5,-48.5 + rot: 3.141592653589793 rad + pos: 28.5,20.5 parent: 2 - - uid: 27003 + - uid: 11738 components: - type: Transform - pos: 5.5,-46.5 + rot: 1.5707963267948966 rad + pos: 31.5,19.5 parent: 2 - - uid: 27004 + - uid: 13711 components: - type: Transform - pos: -10.5,-27.5 + rot: 3.141592653589793 rad + pos: 31.5,21.5 parent: 2 - - uid: 27005 + - uid: 15101 components: - type: Transform - pos: 57.5,-49.5 + rot: 3.141592653589793 rad + pos: 28.5,21.5 parent: 2 -- proto: LootSpawnerIndustrialFluff - entities: - - uid: 27006 + - uid: 19068 components: - type: Transform - pos: -11.5,-85.5 + rot: 3.141592653589793 rad + pos: 31.5,20.5 parent: 2 - - uid: 27007 + - uid: 26542 components: - type: Transform - pos: 58.5,-49.5 + rot: 3.141592653589793 rad + pos: -73.5,-7.5 parent: 2 -- proto: LootSpawnerMaterials - entities: - - uid: 27008 + - uid: 26543 components: - type: Transform - pos: -42.5,-113.5 + rot: 3.141592653589793 rad + pos: -73.5,-8.5 parent: 2 - - uid: 27009 + - uid: 26544 components: - type: Transform - pos: 70.5,-45.5 + rot: 3.141592653589793 rad + pos: -73.5,-9.5 parent: 2 - - uid: 27010 + - uid: 26545 components: - type: Transform - pos: 31.5,23.5 + rot: 3.141592653589793 rad + pos: -75.5,-12.5 parent: 2 -- proto: LootSpawnerMaterialsHighValue - entities: - - uid: 27011 + - uid: 26546 components: - type: Transform - pos: 14.5,-48.5 + rot: 3.141592653589793 rad + pos: -76.5,-12.5 parent: 2 - - uid: 27012 + - uid: 35792 components: - type: Transform - pos: -5.5,-54.5 + rot: 1.5707963267948966 rad + pos: 28.5,19.5 parent: 2 -- proto: LootSpawnerMaterialsHighValueConstruction +- proto: HydroponicsToolMiniHoe entities: - - uid: 27013 + - uid: 371 components: - type: Transform - pos: -19.5,16.5 + pos: 29.106945,19.563984 parent: 2 - - uid: 27014 + - uid: 2568 components: - type: Transform - pos: -82.5,-23.5 - parent: 2 - - uid: 27015 + parent: 2559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26548 components: - type: Transform - pos: 74.5,-50.5 + rot: 1.5707963267948966 rad + pos: -75.44913,-12.35248 parent: 2 - - uid: 27016 +- proto: HydroponicsToolScythe + entities: + - uid: 26549 components: - type: Transform - pos: -1.5,-51.5 + rot: 1.5707963267948966 rad + pos: -38.551037,16.645557 parent: 2 -- proto: LootSpawnerMaterialsSurplus +- proto: HydroponicsToolSpade entities: - - uid: 27017 + - uid: 2569 components: - type: Transform - pos: -32.5,-23.5 + parent: 2559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26551 + components: + - type: Transform + pos: -73.35629,-9.494815 parent: 2 - - uid: 27018 + - uid: 30820 components: - type: Transform - pos: 96.5,-49.5 + rot: 3.141592653589793 rad + pos: 30.68507,20.532734 parent: 2 - - uid: 27019 +- proto: hydroponicsTray + entities: + - uid: 1874 components: - type: Transform - pos: -46.5,-121.5 + rot: 3.141592653589793 rad + pos: 35.5,12.5 parent: 2 - - uid: 27020 + - uid: 2327 components: - type: Transform - pos: -52.5,-83.5 + rot: 3.141592653589793 rad + pos: 37.5,14.5 parent: 2 - - uid: 27021 + - uid: 19655 components: - type: Transform - pos: -63.5,-2.5 + rot: 3.141592653589793 rad + pos: 34.5,12.5 parent: 2 - - uid: 27022 + - uid: 26556 components: - type: Transform - pos: -39.5,-78.5 + pos: 39.5,23.5 parent: 2 - - uid: 27023 + - uid: 26558 components: - type: Transform - pos: -39.5,-78.5 + rot: 3.141592653589793 rad + pos: 37.5,12.5 parent: 2 - - uid: 27024 + - uid: 26559 components: - type: Transform - pos: -66.5,-23.5 + rot: 3.141592653589793 rad + pos: 37.5,11.5 parent: 2 - - uid: 27025 + - uid: 26560 components: - type: Transform - pos: -78.5,-27.5 + rot: 3.141592653589793 rad + pos: 36.5,11.5 parent: 2 - - uid: 27026 + - uid: 26561 components: - type: Transform - pos: -57.5,-53.5 + rot: 3.141592653589793 rad + pos: 36.5,12.5 parent: 2 - - uid: 27027 + - uid: 26564 components: - type: Transform - pos: -57.5,-74.5 + pos: 37.5,23.5 parent: 2 - - uid: 27028 + - uid: 26566 components: - type: Transform - pos: -56.5,-101.5 + rot: -1.5707963267948966 rad + pos: 37.5,21.5 parent: 2 -- proto: LootSpawnerMedicalClassy - entities: - - uid: 27029 + - uid: 26567 components: - type: Transform - pos: -54.5,-7.5 + rot: -1.5707963267948966 rad + pos: 39.5,21.5 parent: 2 - - uid: 27030 + - uid: 26568 components: - type: Transform - pos: -57.5,-17.5 + pos: 88.5,-7.5 parent: 2 - - uid: 27031 + - uid: 26569 components: - type: Transform - pos: -54.5,0.5 + pos: 88.5,-6.5 parent: 2 - - uid: 27032 + - uid: 26570 components: - type: Transform - pos: 20.5,-26.5 + pos: 88.5,-5.5 parent: 2 - - uid: 27033 + - uid: 26572 components: - type: Transform - pos: 3.5,-61.5 + rot: -1.5707963267948966 rad + pos: 37.5,22.5 parent: 2 - - uid: 27034 + - uid: 26573 components: - type: Transform - pos: 13.5,-48.5 + rot: 3.141592653589793 rad + pos: 39.5,22.5 parent: 2 -- proto: LootSpawnerMedicalMinor - entities: - - uid: 27035 + - uid: 28686 components: - type: Transform - pos: -45.5,-2.5 + rot: 3.141592653589793 rad + pos: 35.5,11.5 parent: 2 -- proto: LootSpawnerRandomCrateEngineering - entities: - - uid: 27036 + - uid: 28983 components: - type: Transform - pos: -9.5,-46.5 + rot: 3.141592653589793 rad + pos: 34.5,13.5 parent: 2 -- proto: LootSpawnerRandomCrateSecurity - entities: - - uid: 16266 + - uid: 29114 components: - type: Transform - pos: 8.5,-61.5 + rot: 3.141592653589793 rad + pos: 34.5,14.5 parent: 2 -- proto: LootSpawnerSecurityBasic - entities: - - uid: 27037 + - uid: 29719 components: - type: Transform - pos: -51.5,12.5 + rot: 3.141592653589793 rad + pos: 37.5,13.5 parent: 2 -- proto: MachineAnomalyGenerator - entities: - - uid: 27038 + - uid: 31337 components: - type: Transform - pos: -49.5,-81.5 + rot: 3.141592653589793 rad + pos: 36.5,14.5 parent: 2 -- proto: MachineAnomalyVessel - entities: - - uid: 27039 + - uid: 31764 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-85.5 + pos: 35.5,14.5 parent: 2 - - uid: 27040 + - uid: 31777 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-85.5 + pos: 35.5,13.5 parent: 2 - - uid: 27041 + - uid: 33135 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-85.5 + pos: 36.5,13.5 parent: 2 -- proto: MachineAPE - entities: - - uid: 27042 + - uid: 33268 components: - type: Transform - pos: -48.5,-83.5 + rot: 3.141592653589793 rad + pos: 34.5,11.5 parent: 2 - - uid: 27043 + - uid: 42388 components: - type: Transform - pos: -49.5,-83.5 + rot: 3.141592653589793 rad + pos: 35.5,10.5 parent: 2 - - uid: 27044 + - uid: 42389 components: - type: Transform - pos: -50.5,-83.5 + rot: 3.141592653589793 rad + pos: 36.5,10.5 parent: 2 -- proto: MachineArtifactAnalyzer +- proto: HydroponicsTrayEmpty entities: - - uid: 27045 + - uid: 26574 components: - type: Transform - pos: -73.5,-77.5 + pos: -5.5,-16.5 parent: 2 - - uid: 27046 + - uid: 26575 components: - type: Transform - pos: -71.5,-73.5 + pos: -6.5,-16.5 parent: 2 -- proto: MachineCentrifuge - entities: - - uid: 27047 + - uid: 26576 components: - type: Transform - pos: -36.5,-32.5 + pos: -7.5,-16.5 parent: 2 -- proto: MachineElectrolysisUnit - entities: - - uid: 27048 + - uid: 26577 components: - type: Transform - pos: -36.5,-30.5 + pos: -9.5,-16.5 parent: 2 -- proto: MachineFrame - entities: - - uid: 27049 + - uid: 26578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 + pos: -4.5,-16.5 parent: 2 - - uid: 27050 + - uid: 26579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-13.5 + pos: -12.5,-15.5 parent: 2 - - uid: 27051 + - uid: 26580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-15.5 + pos: -12.5,-13.5 parent: 2 - - uid: 27052 + - uid: 26581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 + pos: -16.5,-13.5 parent: 2 - - uid: 27053 + - uid: 26582 components: - type: Transform - pos: -58.5,-17.5 + pos: -14.5,-13.5 parent: 2 - - uid: 27054 + - uid: 26583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-18.5 + pos: -13.5,-13.5 parent: 2 - - uid: 27055 + - uid: 26584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 + pos: -16.5,-15.5 parent: 2 - - uid: 27056 + - uid: 26585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 + pos: -15.5,-15.5 parent: 2 - - uid: 27057 + - uid: 26586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,7.5 + pos: -14.5,-15.5 parent: 2 - - uid: 27058 + - uid: 26587 components: - type: Transform - pos: -39.5,-51.5 + pos: -1.5,-18.5 parent: 2 - - uid: 27059 + - uid: 26588 components: - type: Transform - pos: -38.5,-63.5 + pos: -0.5,-18.5 parent: 2 - - uid: 27060 + - uid: 26589 components: - type: Transform - pos: -37.5,-63.5 + pos: 0.5,-18.5 parent: 2 - - uid: 27061 + - uid: 26590 components: - type: Transform - pos: -36.5,-63.5 + pos: 2.5,-18.5 parent: 2 - - uid: 27062 + - uid: 26591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-33.5 + rot: 3.141592653589793 rad + pos: 2.5,-16.5 parent: 2 - - uid: 27063 + - uid: 26592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 107.5,-57.5 + rot: 3.141592653589793 rad + pos: 1.5,-16.5 parent: 2 - - uid: 27064 + - uid: 26593 components: - type: Transform - pos: -82.5,-9.5 + rot: 3.141592653589793 rad + pos: -0.5,-16.5 parent: 2 - - uid: 27065 + - uid: 26594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,-69.5 + rot: 3.141592653589793 rad + pos: -1.5,-16.5 parent: 2 - - uid: 27066 + - uid: 26595 components: - type: Transform - pos: 104.5,-68.5 - parent: 2 - - uid: 27067 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 2 - - uid: 27068 - components: - - type: Transform - pos: -17.5,-47.5 + rot: 3.141592653589793 rad + pos: -4.5,-14.5 parent: 2 - - uid: 27069 + - uid: 26596 components: - type: Transform - pos: 8.5,-46.5 + rot: 3.141592653589793 rad + pos: -6.5,-14.5 parent: 2 - - uid: 27070 + - uid: 26597 components: - type: Transform - pos: 11.5,-46.5 + rot: 3.141592653589793 rad + pos: -8.5,-14.5 parent: 2 - - uid: 27071 + - uid: 26598 components: - type: Transform - pos: 8.5,-48.5 + rot: 3.141592653589793 rad + pos: -9.5,-14.5 parent: 2 - - uid: 27072 +- proto: HypoDart + entities: + - uid: 42 components: - type: Transform - pos: -7.5,-38.5 - parent: 2 -- proto: MachineFrameDestroyed + parent: 35 + - type: Physics + canCollide: False +- proto: IceCrust entities: - - uid: 27073 + - uid: 26599 components: - type: Transform - pos: -46.5,2.5 + pos: -18.5,-37.5 parent: 2 - - uid: 27074 + - uid: 26600 components: - type: Transform - pos: -59.5,-21.5 + pos: -18.5,-38.5 parent: 2 -- proto: MagazineBoxAntiMateriel - entities: - - uid: 27075 + - uid: 26601 components: - type: Transform - pos: 64.55751,-19.446735 + pos: -16.5,-34.5 parent: 2 - - uid: 27076 + - uid: 26602 components: - type: Transform - pos: 12.630977,-19.490175 + pos: -16.5,-33.5 parent: 2 -- proto: MagazineBoxRifle - entities: - - uid: 40881 - components: - - type: Transform - parent: 40879 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineLightRifle - entities: - - uid: 27077 + - uid: 26603 components: - type: Transform - pos: 63.522007,-19.514818 + pos: -14.5,-39.5 parent: 2 - - uid: 27078 + - uid: 26604 components: - type: Transform - pos: 63.640064,-19.507874 + pos: -14.5,-38.5 parent: 2 - - uid: 41319 - components: - - type: Transform - parent: 41318 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41320 - components: - - type: Transform - parent: 41318 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineLightRifleMaxim - entities: - - uid: 27079 + - uid: 26605 components: - type: Transform - pos: 8.505977,-22.47455 + pos: -16.5,-37.5 parent: 2 -- proto: MagazinePistolPractice - entities: - - uid: 27080 + - uid: 26606 components: - type: Transform - pos: 61.458096,9.5217905 + pos: -14.5,-35.5 parent: 2 - - uid: 27081 + - uid: 26607 components: - type: Transform - pos: 61.708096,9.5842905 + pos: -14.5,-36.5 parent: 2 -- proto: MagazineRifle - entities: - - uid: 40882 - components: - - type: Transform - parent: 40879 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40883 - components: - - type: Transform - parent: 40879 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagicDiceBag +- proto: IDComputerCircuitboard entities: - - uid: 27082 + - uid: 26608 components: - type: Transform - pos: -41.31845,-99.86085 + rot: 3.141592653589793 rad + pos: 37.53801,-41.496193 parent: 2 - - uid: 27083 +- proto: IgniteRune + entities: + - uid: 26609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.08166,-7.3699484 + pos: -81.5,-24.5 parent: 2 - - uid: 27084 + - type: IgniteOnCollide + fireStacks: 3 +- proto: InflatableDoor + entities: + - uid: 26610 components: - type: Transform - pos: 82.58399,-49.23987 + rot: 3.141592653589793 rad + pos: 0.5,-68.5 parent: 2 -- proto: MailingUnit - entities: - - uid: 27085 + - uid: 26611 components: - type: Transform - pos: -55.5,-89.5 + pos: 22.5,-33.5 parent: 2 - - type: MailingUnit - tag: santa - - uid: 27086 + - uid: 26612 components: - type: Transform - pos: -9.5,-81.5 + pos: 22.5,-32.5 parent: 2 - - type: MailingUnit - tag: cargo - - uid: 27087 + - uid: 26613 components: - type: Transform - pos: -3.5,11.5 + rot: 3.141592653589793 rad + pos: -78.5,-20.5 parent: 2 - - type: MailingUnit - tag: personal - - uid: 27088 + - uid: 26614 components: - type: Transform - pos: -37.5,-46.5 + rot: 3.141592653589793 rad + pos: -79.5,-14.5 parent: 2 - - type: MailingUnit - tag: RND - - uid: 27089 + - uid: 26615 components: - type: Transform - pos: 48.5,-46.5 + pos: 0.5,-8.5 parent: 2 - - type: MailingUnit - tag: engineers - - uid: 27090 +- proto: InflatableWall + entities: + - uid: 26616 components: - type: Transform - pos: -38.5,-25.5 + rot: 3.141592653589793 rad + pos: -0.5,-68.5 parent: 2 - - type: MailingUnit - tag: med - - uid: 27091 + - uid: 26617 components: - type: Transform - pos: 50.5,-13.5 + rot: 1.5707963267948966 rad + pos: -24.5,-44.5 parent: 2 - - type: MailingUnit - tag: security -- proto: MaintenanceFluffSpawner - entities: - - uid: 27092 + - uid: 26618 components: - type: Transform - pos: 57.5,-46.5 + rot: 1.5707963267948966 rad + pos: -24.5,-43.5 parent: 2 - - uid: 27093 + - uid: 26619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-95.5 + pos: 22.5,-31.5 parent: 2 - - uid: 27094 + - uid: 26620 components: - type: Transform - pos: -39.5,-91.5 + rot: 1.5707963267948966 rad + pos: -81.5,-19.5 parent: 2 - - uid: 27095 + - uid: 26621 components: - type: Transform - pos: -63.5,-56.5 + pos: -43.5,2.5 parent: 2 - - uid: 27096 + - uid: 26622 components: - type: Transform - pos: -60.5,-40.5 + pos: -50.5,2.5 parent: 2 - - uid: 27097 + - uid: 26623 components: - type: Transform - pos: 76.5,-19.5 + pos: -53.5,-7.5 parent: 2 - - uid: 27098 + - uid: 26624 components: - type: Transform - pos: -57.5,-53.5 + rot: -1.5707963267948966 rad + pos: -9.5,-99.5 parent: 2 - - uid: 27099 + - uid: 26625 components: - type: Transform - pos: 76.5,-18.5 + rot: -1.5707963267948966 rad + pos: -10.5,-98.5 parent: 2 - - uid: 27100 + - uid: 26626 components: - type: Transform - pos: 48.5,26.5 + pos: -49.5,4.5 parent: 2 - - uid: 27101 + - uid: 26627 components: - type: Transform - pos: 82.5,-15.5 + rot: 3.141592653589793 rad + pos: -50.5,-5.5 parent: 2 - - uid: 27102 + - uid: 26628 components: - type: Transform - pos: 96.5,-50.5 + pos: -83.5,-15.5 parent: 2 - - uid: 27103 + - uid: 26629 components: - type: Transform - pos: 84.5,-46.5 + pos: -75.5,7.5 parent: 2 - - uid: 27104 + - uid: 26630 components: - type: Transform - pos: -48.5,-120.5 + pos: -72.5,-21.5 parent: 2 - - uid: 27105 + - uid: 26631 components: - type: Transform - pos: 95.5,-48.5 + pos: -70.5,-10.5 parent: 2 - - uid: 27106 + - uid: 26632 components: - type: Transform - pos: 92.5,-49.5 + rot: 3.141592653589793 rad + pos: -79.5,1.5 parent: 2 - - uid: 27107 + - uid: 26633 components: - type: Transform - pos: -62.5,2.5 + pos: -36.5,20.5 parent: 2 - - uid: 27108 + - uid: 26634 components: - type: Transform - pos: -60.5,1.5 + pos: -0.5,-8.5 parent: 2 - - uid: 27109 + - uid: 26635 components: - type: Transform - pos: -59.5,1.5 + pos: 5.5,-31.5 parent: 2 - - uid: 27110 + - uid: 26636 components: - type: Transform - pos: -59.5,4.5 + pos: 1.5,-8.5 parent: 2 - - uid: 27111 + - uid: 26637 components: - type: Transform - pos: -35.5,-107.5 + pos: 6.5,-32.5 parent: 2 - - uid: 27112 + - uid: 26638 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-111.5 + pos: 1.5,-68.5 parent: 2 - - uid: 27113 + - uid: 26639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-109.5 + pos: 4.5,-39.5 parent: 2 - - uid: 27114 + - uid: 26640 components: - type: Transform - pos: -50.5,-114.5 + pos: 5.5,-39.5 parent: 2 - - uid: 27115 + - uid: 26641 components: - type: Transform - pos: -81.5,3.5 + pos: -23.5,-42.5 parent: 2 - - uid: 27116 + - uid: 26642 components: - type: Transform - pos: -74.5,-19.5 + rot: 1.5707963267948966 rad + pos: 7.5,-31.5 parent: 2 - - uid: 27117 + - uid: 26643 components: - type: Transform - pos: 37.5,18.5 + rot: 1.5707963267948966 rad + pos: 5.5,-40.5 parent: 2 -- proto: MaintenancePlantSpawner - entities: - - uid: 27118 + - uid: 26644 components: - type: Transform - pos: 33.5,32.5 + pos: 10.5,-37.5 parent: 2 - - uid: 27119 + - uid: 26645 components: - type: Transform - pos: 20.5,10.5 + pos: 10.5,-36.5 parent: 2 - - uid: 27120 + - uid: 26646 components: - type: Transform - pos: 42.5,24.5 + pos: 9.5,-43.5 parent: 2 - - uid: 27121 + - uid: 26647 components: - type: Transform - pos: -23.5,14.5 + pos: 9.5,-41.5 parent: 2 - - uid: 27122 + - uid: 26648 components: - type: Transform - pos: -43.5,15.5 + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 parent: 2 - - uid: 27123 + - uid: 26649 components: - type: Transform - pos: -49.5,15.5 + rot: 1.5707963267948966 rad + pos: 15.5,-37.5 parent: 2 - - uid: 27124 + - uid: 26650 components: - type: Transform - pos: -59.5,-8.5 + rot: 1.5707963267948966 rad + pos: 14.5,-38.5 parent: 2 - - uid: 27125 + - uid: 26651 components: - type: Transform - pos: -67.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,-40.5 parent: 2 - - uid: 27126 + - uid: 26652 components: - type: Transform - pos: -67.5,-32.5 + rot: 1.5707963267948966 rad + pos: 16.5,-43.5 parent: 2 - - uid: 27127 + - uid: 26653 components: - type: Transform - pos: -61.5,-22.5 + rot: 1.5707963267948966 rad + pos: 19.5,-41.5 parent: 2 - - uid: 27128 + - uid: 26654 components: - type: Transform - pos: -63.5,-54.5 + rot: 1.5707963267948966 rad + pos: 18.5,-40.5 parent: 2 - - uid: 27129 + - uid: 26655 components: - type: Transform - pos: -49.5,-77.5 + pos: 18.5,-42.5 parent: 2 - - uid: 27130 +- proto: InflatableWallStack1 + entities: + - uid: 26656 components: - type: Transform - pos: -48.5,-93.5 + pos: 0.03817773,-10.484029 parent: 2 - - uid: 27131 +- proto: IngotGold + entities: + - uid: 16249 components: - type: Transform - pos: 35.5,-76.5 - parent: 2 - - uid: 27132 + parent: 16248 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16252 components: - type: Transform - pos: -27.5,17.5 - parent: 2 - - uid: 27133 + parent: 16251 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16255 components: - type: Transform - pos: 90.5,-49.5 - parent: 2 - - uid: 27134 + parent: 16254 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16258 components: - type: Transform - pos: -39.5,-120.5 - parent: 2 - - uid: 27135 + parent: 16257 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: IngotGold1 + entities: + - uid: 26660 components: - type: Transform - pos: -34.5,-119.5 + pos: -6.8590045,-8.252594 parent: 2 - - uid: 27136 + - uid: 26661 components: - type: Transform - pos: 103.5,-44.5 + pos: -6.8902545,-8.502594 parent: 2 - - uid: 27137 +- proto: IngotSilver + entities: + - uid: 26662 components: - type: Transform - pos: -63.5,0.5 + pos: -7.4725513,-8.326113 parent: 2 - - uid: 27138 +- proto: IngotSilver1 + entities: + - uid: 15668 components: - type: Transform - pos: -41.5,-106.5 - parent: 2 - - uid: 27139 + parent: 15665 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15669 components: - type: Transform - pos: -83.5,-1.5 - parent: 2 - - uid: 27140 + parent: 15665 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15670 components: - type: Transform - pos: -84.5,-5.5 - parent: 2 - - uid: 27141 + parent: 15665 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Intellicard + entities: + - uid: 26663 components: - type: Transform - pos: 28.5,27.5 + pos: 19.502789,21.587538 parent: 2 - - uid: 27142 + - type: WarpPoint + location: интелкарта +- proto: IntercomAll + entities: + - uid: 26664 components: - type: Transform - pos: 30.5,27.5 + pos: 0.5,23.5 parent: 2 - - uid: 27143 +- proto: IntercomCommand + entities: + - uid: 26665 components: - type: Transform - pos: 31.5,29.5 + rot: -1.5707963267948966 rad + pos: -7.5,13.5 parent: 2 -- proto: MaintenanceToolSpawner - entities: - - uid: 27144 + - uid: 26666 components: - type: Transform - pos: -50.5,-75.5 + pos: 3.5,27.5 parent: 2 - - uid: 27145 + - uid: 26667 components: - type: Transform - pos: 78.5,-44.5 + rot: 3.141592653589793 rad + pos: 5.5,5.5 parent: 2 - - uid: 27146 + - uid: 26668 components: - type: Transform - pos: 19.5,7.5 + pos: -20.5,9.5 parent: 2 - - uid: 27147 +- proto: IntercomCommon + entities: + - uid: 26669 components: - type: Transform - pos: -42.5,-91.5 + rot: -1.5707963267948966 rad + pos: -69.5,-39.5 parent: 2 - - uid: 27148 + - uid: 26670 components: - type: Transform - pos: -68.5,-34.5 + pos: -72.5,-34.5 parent: 2 - - uid: 27149 + - uid: 26671 components: - type: Transform - pos: 34.5,19.5 + rot: -1.5707963267948966 rad + pos: 34.5,-38.5 parent: 2 - - uid: 27150 + - uid: 26672 components: - type: Transform - pos: -37.5,-93.5 + pos: 6.5,-73.5 parent: 2 - - uid: 27151 + - uid: 26673 components: - type: Transform - pos: 71.5,-19.5 + rot: 1.5707963267948966 rad + pos: -33.5,-47.5 parent: 2 - - uid: 27152 + - uid: 26674 components: - type: Transform - pos: 104.5,-44.5 + pos: -8.5,5.5 parent: 2 - - uid: 27153 +- proto: IntercomElectronics + entities: + - uid: 26676 components: - type: Transform - pos: -39.5,-123.5 + pos: 36.535313,-38.33921 parent: 2 - - uid: 27154 +- proto: IntercomEngineering + entities: + - uid: 26677 components: - type: Transform - pos: -43.5,-121.5 + rot: 1.5707963267948966 rad + pos: 42.5,-56.5 parent: 2 - - uid: 27155 + - uid: 26678 components: - type: Transform - pos: -50.5,-105.5 + rot: 1.5707963267948966 rad + pos: 48.5,-91.5 parent: 2 - - uid: 27156 + - uid: 26679 components: - type: Transform - pos: -85.5,-1.5 + rot: -1.5707963267948966 rad + pos: 51.5,-72.5 parent: 2 - - uid: 27157 + - uid: 26680 components: - type: Transform - pos: -73.5,-13.5 + rot: 1.5707963267948966 rad + pos: 35.5,-100.5 parent: 2 - - uid: 27158 + - uid: 26681 components: - type: Transform - pos: -79.5,2.5 + rot: 3.141592653589793 rad + pos: 65.5,-63.5 parent: 2 -- proto: MaintenanceWeaponSpawner +- proto: IntercomMedical entities: - - uid: 27159 + - uid: 26682 components: - type: Transform - pos: 43.5,17.5 + pos: -38.5,-35.5 parent: 2 - - uid: 27160 + - uid: 26683 components: - type: Transform - pos: -72.5,-32.5 + pos: -45.5,-26.5 parent: 2 - - uid: 27161 + - uid: 26684 components: - type: Transform - pos: 63.5,-53.5 + rot: 1.5707963267948966 rad + pos: -44.5,-4.5 parent: 2 - - uid: 27162 + - uid: 26685 components: - type: Transform - pos: -47.5,-77.5 + rot: 1.5707963267948966 rad + pos: -52.5,-34.5 parent: 2 - - uid: 27163 +- proto: IntercomScience + entities: + - uid: 26686 components: - type: Transform - pos: -57.5,-54.5 + rot: 1.5707963267948966 rad + pos: -45.5,-60.5 parent: 2 - - uid: 27164 + - uid: 26687 components: - type: Transform - pos: 47.5,-29.5 + rot: -1.5707963267948966 rad + pos: -41.5,-46.5 parent: 2 - - uid: 27165 + - uid: 26688 components: - type: Transform - pos: 72.5,-19.5 + rot: -1.5707963267948966 rad + pos: -45.5,-70.5 parent: 2 - - uid: 27166 + - uid: 26689 components: - type: Transform - pos: 39.5,-8.5 + rot: -1.5707963267948966 rad + pos: -66.5,-64.5 parent: 2 - - uid: 27167 +- proto: IntercomSecurity + entities: + - uid: 26675 components: - type: Transform - pos: 96.5,-45.5 + rot: -1.5707963267948966 rad + pos: 53.5,21.5 parent: 2 - - uid: 27168 + - uid: 26690 components: - type: Transform - pos: 92.5,-50.5 + pos: 44.5,-21.5 parent: 2 - - uid: 27169 +- proto: IntercomService + entities: + - uid: 26691 components: - type: Transform - pos: 106.5,-53.5 + rot: -1.5707963267948966 rad + pos: 38.5,-1.5 parent: 2 - - uid: 27170 + - uid: 26692 components: - type: Transform - pos: -66.5,6.5 + rot: 1.5707963267948966 rad + pos: 25.5,-0.5 parent: 2 - - uid: 27171 + - uid: 26693 components: - type: Transform - pos: -76.5,-31.5 + rot: 1.5707963267948966 rad + pos: 26.5,12.5 parent: 2 - - uid: 27172 + - uid: 26694 components: - type: Transform - pos: -32.5,-110.5 + rot: -1.5707963267948966 rad + pos: 39.5,14.5 parent: 2 - - uid: 27173 +- proto: IntercomSupply + entities: + - uid: 26695 components: - type: Transform - pos: -56.5,-107.5 + rot: 1.5707963267948966 rad + pos: 4.5,-101.5 parent: 2 - - uid: 27174 + - uid: 26696 components: - type: Transform - pos: -85.5,-3.5 + pos: 2.5,-85.5 parent: 2 - - uid: 27175 + - uid: 26697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-11.5 + rot: -1.5707963267948966 rad + pos: 8.5,-81.5 parent: 2 - - uid: 27176 + - uid: 26698 components: - type: Transform - pos: -83.5,-21.5 + rot: 3.141592653589793 rad + pos: -8.5,-92.5 parent: 2 -- proto: Mannequin +- proto: JanitorialTrolley entities: - - uid: 15635 + - uid: 26700 components: - type: Transform - pos: -38.5,-103.5 + rot: -1.5707963267948966 rad + pos: -6.5,-71.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 15637 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 15636 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 15639 + - uid: 32193 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-92.5 + pos: 5.5,-1.5 parent: 2 - type: ContainerContainer containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 15641 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot + storagebase: !type:Container showEnts: False - occludes: False - ent: 15640 - suitstorage: !type:ContainerSlot + occludes: True + ents: [] + mop_slot: !type:ContainerSlot showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot + occludes: True + ent: 26657 + trashbag_slot: !type:ContainerSlot showEnts: False - occludes: False - ent: null - - uid: 15645 - components: - - type: Transform - pos: -40.5,-103.5 - parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot + occludes: True + ent: 26870 + bucket_slot: !type:ContainerSlot showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot + occludes: True + ent: 42036 + plunger_slot: !type:ContainerSlot showEnts: False - occludes: False - ent: 15647 - neck: !type:ContainerSlot + occludes: True + ent: 26571 + wetfloorsign_slot4: !type:ContainerSlot showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot + occludes: True + ent: 26659 + wetfloorsign_slot3: !type:ContainerSlot showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot + occludes: True + ent: 26734 + wetfloorsign_slot2: !type:ContainerSlot showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot + occludes: True + ent: 26743 + wetfloorsign_slot1: !type:ContainerSlot showEnts: False - occludes: False - ent: 15646 - suitstorage: !type:ContainerSlot + occludes: True + ent: 26762 + lightreplacer_slot: !type:ContainerSlot showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot + occludes: True + ent: 26807 + spraybottle_slot: !type:ContainerSlot showEnts: False - occludes: False - ent: null - - uid: 15660 + occludes: True + ent: 26658 + - uid: 42050 components: - type: Transform - pos: -39.5,-103.5 + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 15662 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 15661 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 15796 +- proto: JanitorServiceLight + entities: + - uid: 2545 components: - type: Transform - pos: 29.5,29.5 + rot: 3.141592653589793 rad + pos: -36.5,-49.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 15797 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null -- proto: MaterialBones1 - entities: - - uid: 27177 + - uid: 18648 components: - type: Transform - pos: 65.439674,-48.454266 + rot: 1.5707963267948966 rad + pos: -0.5,11.5 parent: 2 - - type: Stack - count: 7 - - uid: 27178 + - uid: 20150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.65071,-47.4732 + pos: -44.5,-42.5 parent: 2 -- proto: MaterialCloth - entities: - - uid: 27179 + - uid: 26701 components: - type: Transform - pos: -5.444281,8.628087 + rot: -1.5707963267948966 rad + pos: 45.5,-45.5 parent: 2 - - uid: 27180 + - uid: 26702 components: - type: Transform - pos: -53.596252,-18.574131 + rot: -1.5707963267948966 rad + pos: 28.5,-6.5 parent: 2 -- proto: MaterialDurathread - entities: - - uid: 27181 + - uid: 26704 components: - type: Transform - pos: -5.381781,8.612462 + pos: -24.5,1.5 parent: 2 -- proto: MaterialGunpowder - entities: - - uid: 27182 + - uid: 26705 components: - type: Transform - pos: -57.47855,-91.2867 + rot: 1.5707963267948966 rad + pos: -32.5,-35.5 parent: 2 - - uid: 27183 + - uid: 26708 components: - type: Transform - pos: -57.41605,-91.14607 + rot: 1.5707963267948966 rad + pos: -44.5,-45.5 parent: 2 -- proto: MaterialToothSharkminnow1 - entities: - - uid: 27184 + - uid: 26709 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.707739,-28.657364 + pos: -33.5,-44.5 parent: 2 -- proto: MaterialToothSpaceCarp1 - entities: - - uid: 27185 + - uid: 26710 components: - type: Transform - pos: 8.379614,-28.376114 + rot: 1.5707963267948966 rad + pos: -0.5,-78.5 parent: 2 - - uid: 27186 + - uid: 26711 components: - type: Transform - pos: 8.488989,-28.422989 + rot: 1.5707963267948966 rad + pos: 43.5,-34.5 parent: 2 - - uid: 27187 + - uid: 26712 components: - type: Transform - pos: 8.551489,-28.360489 + rot: -1.5707963267948966 rad + pos: 45.5,-29.5 parent: 2 - - uid: 27188 + - uid: 26713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.332739,-28.704239 + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 parent: 2 - - uid: 27189 + - uid: 31194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.238989,-28.532364 + rot: -1.5707963267948966 rad + pos: -40.5,-34.5 parent: 2 - - uid: 27190 + - uid: 32241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.488989,-28.579239 + rot: 3.141592653589793 rad + pos: 9.5,-3.5 parent: 2 -- proto: MaterialWoodPlank - entities: - - uid: 27191 + - uid: 33562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.53313,-101.38195 + rot: 3.141592653589793 rad + pos: 8.5,-3.5 parent: 2 -- proto: MaterialWoodPlank1 - entities: - - uid: 27192 + - uid: 34156 components: - type: Transform - pos: -15.900841,-93.71019 + rot: 3.141592653589793 rad + pos: 6.5,-3.5 parent: 2 - - uid: 27193 + - uid: 34157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.478966,-92.89769 + rot: 3.141592653589793 rad + pos: 5.5,-3.5 parent: 2 -- proto: MaterialWoodPlank10 - entities: - - uid: 27194 + - uid: 42062 components: - type: Transform - pos: 37.507698,-71.3846 + pos: 0.5,22.5 parent: 2 -- proto: MatterBinStockPart - entities: - - uid: 27195 + - uid: 42221 components: - type: Transform - pos: -87.5,-7.5 + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 parent: 2 - - uid: 27196 + - uid: 42222 components: - type: Transform - pos: 95.5,-80.5 + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 parent: 2 -- proto: Mattress +- proto: JetpackBlue entities: - - uid: 27197 + - uid: 26714 components: - type: Transform - pos: 44.5,10.5 + pos: 46.5,-62.5 parent: 2 - - uid: 27198 +- proto: JetpackBlueFilled + entities: + - uid: 26715 components: - type: Transform - pos: 48.5,9.5 + pos: 57.494186,-82.422646 parent: 2 - - uid: 27199 +- proto: JetpackMini + entities: + - uid: 26716 components: - type: Transform - pos: -50.5,-75.5 + pos: 54.5232,-96.30902 parent: 2 - - uid: 27200 + - uid: 26717 components: - type: Transform - pos: -48.5,-75.5 + pos: 111.52574,-46.458534 parent: 2 - - uid: 27201 +- proto: JetpackSecurity + entities: + - uid: 62 components: - type: Transform - pos: 33.5,-19.5 + pos: 66.48599,13.616083 parent: 2 - - uid: 27202 + - type: GasTank + toggleActionEntity: 63 + - type: Jetpack + toggleActionEntity: 64 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 64 + - 63 +- proto: JetpackSecurityFilled + entities: + - uid: 65 components: - type: Transform - pos: 33.5,-16.5 + rot: 6.283185307179586 rad + pos: 57.357067,-22.587494 parent: 2 - - uid: 27203 + - type: GasTank + toggleActionEntity: 66 + - type: Jetpack + toggleActionEntity: 67 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 67 + - 66 + - uid: 26718 components: - type: Transform - pos: 36.5,-17.5 + pos: 57.741734,-22.50916 parent: 2 - - uid: 27204 + - uid: 26719 components: - type: Transform - pos: 67.5,-50.5 + pos: 57.53861,-22.44666 parent: 2 - - uid: 27205 +- proto: JetpackVoid + entities: + - uid: 15804 components: - type: Transform - pos: 68.5,-50.5 - parent: 2 - - uid: 27206 + parent: 15802 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: JetpackVoidFilled + entities: + - uid: 41107 components: - type: Transform - pos: 75.5,1.5 + parent: 41103 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41114 + components: + - type: Transform + parent: 41110 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41121 + components: + - type: Transform + parent: 41117 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41128 + components: + - type: Transform + parent: 41124 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41135 + components: + - type: Transform + parent: 41131 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Jug + entities: + - uid: 1990 + components: + - type: Transform + parent: 1980 + - type: Physics + canCollide: False + - uid: 1991 + components: + - type: Transform + parent: 1980 + - type: Physics + canCollide: False +- proto: Jukebox + entities: + - uid: 26720 + components: + - type: Transform + pos: 34.5,7.5 parent: 2 -- proto: MechEquipmentGrabber +- proto: KitchenElectricGrill entities: - - uid: 27207 + - uid: 26721 components: - type: Transform - pos: -20.424871,-61.475033 + pos: 28.5,14.5 parent: 2 -- proto: MedalCase +- proto: KitchenKnife entities: - - uid: 27208 + - uid: 26722 components: - type: Transform - pos: 10.543274,15.729935 + pos: 29.761024,11.77055 parent: 2 -- proto: MedicalBed + - uid: 26724 + components: + - type: Transform + parent: 26723 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26725 + components: + - type: Transform + pos: 35.37294,-71.35835 + parent: 2 +- proto: KitchenMicrowave entities: - - uid: 27209 + - uid: 5077 components: - type: Transform - pos: 62.5,-3.5 + pos: 26.5,8.5 parent: 2 - - uid: 27210 + - uid: 14861 components: - type: Transform - pos: 82.5,-10.5 + pos: -76.5,-7.5 parent: 2 - - uid: 27211 + - uid: 26726 components: - type: Transform - pos: -44.5,-23.5 + pos: -43.5,-86.5 parent: 2 - - uid: 27212 + - uid: 26728 components: - type: Transform - pos: -44.5,-21.5 + pos: 46.5,-73.5 parent: 2 - - uid: 27213 + - uid: 26729 components: - type: Transform - pos: -45.5,-0.5 + pos: 61.5,-37.5 parent: 2 - - uid: 27214 + - uid: 26730 components: - type: Transform - pos: -45.5,-3.5 + pos: -9.5,-88.5 parent: 2 - - uid: 27215 + - uid: 26731 components: - type: Transform - pos: -44.5,-18.5 + pos: 53.5,-51.5 parent: 2 - - uid: 27216 + - uid: 26732 components: - type: Transform - pos: -44.5,-22.5 + pos: -55.5,12.5 parent: 2 - - uid: 27217 + - uid: 26733 components: - type: Transform - pos: -44.5,-20.5 + pos: -37.5,-3.5 parent: 2 - - uid: 41329 + - uid: 26735 components: - type: Transform - pos: -5.5,-8.5 - parent: 40828 - - uid: 41841 + pos: 50.5,3.5 + parent: 2 + - uid: 26736 components: - type: Transform - pos: 6.5,-2.5 - parent: 41669 -- proto: MedicalScanner - entities: - - uid: 27218 + pos: 89.5,-10.5 + parent: 2 + - uid: 26737 components: - type: Transform - pos: -59.5,-19.5 + pos: -9.5,13.5 parent: 2 -- proto: MedicalTechFab - entities: - - uid: 27219 + - uid: 42380 components: - type: Transform - pos: -45.5,-8.5 + pos: 29.5,14.5 parent: 2 -- proto: MedicatedSuture +- proto: KitchenReagentGrinder entities: - - uid: 27221 + - uid: 26738 components: - type: Transform - parent: 27220 - - type: Physics - canCollide: False -- proto: MedkitAdvancedFilled - entities: - - uid: 27227 + pos: -37.5,-34.5 + parent: 2 + - uid: 26739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.602462,13.537646 + pos: -76.5,-9.5 parent: 2 - - uid: 27228 + - uid: 26740 components: - type: Transform - pos: -1.4672513,-34.506245 + pos: -55.5,-0.5 parent: 2 - - uid: 41330 + - uid: 26741 components: - type: Transform - pos: -5.3487854,-10.439423 - parent: 40828 -- proto: MedkitBrute - entities: - - uid: 2520 + pos: -3.5,-71.5 + parent: 2 + - uid: 26742 components: - type: Transform - pos: -47.57859,-10.229208 + pos: 29.5,12.5 parent: 2 - - type: Storage - storedItems: - 2523: - position: 0,0 - _rotation: South - 2522: - position: 1,0 - _rotation: South - 2525: - position: 2,0 - _rotation: South - 2524: - position: 3,0 - _rotation: South - 2521: - position: 2,1 - _rotation: South - 2526: - position: 3,1 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 2523 - - 2522 - - 2525 - - 2524 - - 2521 - - 2526 - - uid: 2527 + - uid: 26744 components: - type: Transform - pos: -47.606533,-10.1642065 + pos: 22.5,1.5 parent: 2 - - type: Storage - storedItems: - 2530: - position: 0,0 - _rotation: South - 2529: - position: 1,0 - _rotation: South - 2532: - position: 2,0 - _rotation: South - 2531: - position: 3,0 - _rotation: South - 2528: - position: 2,1 - _rotation: South - 2533: - position: 3,1 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 2530 - - 2529 - - 2532 - - 2531 - - 2528 - - 2533 - - uid: 2534 + - uid: 26745 components: - type: Transform - pos: -47.531715,-10.369833 + pos: -53.5,-75.5 parent: 2 - - type: Storage - storedItems: - 2537: - position: 0,0 - _rotation: South - 2536: - position: 1,0 - _rotation: South - 2539: - position: 2,0 - _rotation: South - 2538: - position: 3,0 - _rotation: South - 2535: - position: 2,1 - _rotation: South - 2540: - position: 3,1 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 2537 - - 2536 - - 2539 - - 2538 - - 2540 - - 2535 -- proto: MedkitBruteFilled + - uid: 26746 + components: + - type: Transform + pos: 33.5,23.5 + parent: 2 + - uid: 41324 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 40828 +- proto: KitchenSpike entities: - - uid: 27229 + - uid: 26747 components: - type: Transform - pos: 64.508545,-2.5347085 + pos: 23.5,14.5 parent: 2 -- proto: MedkitBurn +- proto: Lamp entities: - - uid: 2571 + - uid: 54 components: + - type: MetaData + name: волшебная лампа - type: Transform - pos: -48.32859,-9.275049 + pos: -41.37098,-99.313675 parent: 2 - - type: Storage - storedItems: - 2573: - position: 0,0 - _rotation: South - 2574: - position: 1,0 - _rotation: South - 2576: - position: 2,0 - _rotation: South - 2575: - position: 3,0 - _rotation: South - 2572: - position: 2,1 - _rotation: South + - type: HandheldLight + selfToggleActionEntity: 58 + toggleActionEntity: 57 - type: ContainerContainer containers: - storagebase: !type:Container + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 55 + actions: !type:Container showEnts: False occludes: True ents: - - 2573 - - 2574 - - 2576 - - 2575 - - 2572 - - uid: 2577 + - 57 + - 58 + - type: Physics + canCollide: True + - type: ActionsContainer + - type: Actions + actions: + - 58 + - uid: 105 components: - type: Transform - pos: -48.38057,-9.275344 + pos: -31.577393,8.612033 parent: 2 - - type: Storage - storedItems: - 2579: - position: 0,0 - _rotation: South - 2580: - position: 1,0 - _rotation: South - 2582: - position: 2,0 - _rotation: South - 2581: - position: 3,0 - _rotation: South - 2578: - position: 2,1 - _rotation: South + - type: HandheldLight + toggleActionEntity: 106 - type: ContainerContainer containers: - storagebase: !type:Container + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container showEnts: False occludes: True ents: - - 2579 - - 2580 - - 2582 - - 2581 - - 2578 - - uid: 2583 + - 106 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 109 components: - type: Transform - pos: -48.364944,-9.431594 + pos: 39.553074,-26.375849 parent: 2 - - type: Storage - storedItems: - 2585: - position: 0,0 - _rotation: South - 2586: - position: 1,0 - _rotation: South - 2588: - position: 2,0 - _rotation: South - 2587: - position: 3,0 - _rotation: South - 2584: - position: 2,1 - _rotation: South + - type: HandheldLight + toggleActionEntity: 110 - type: ContainerContainer containers: - storagebase: !type:Container + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container showEnts: False occludes: True ents: - - 2585 - - 2586 - - 2588 - - 2587 - - 2584 -- proto: MedkitBurnFilled - entities: - - uid: 15293 - components: - - type: Transform - parent: 15292 + - 110 - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 27230 + canCollide: True + - type: ActionsContainer + - uid: 26748 components: - type: Transform - pos: 64.508545,-2.2742918 + pos: 56.785122,15.621483 parent: 2 - - uid: 27231 + - uid: 26749 components: - type: Transform - pos: 52.51172,-76.45728 + rot: 3.141592653589793 rad + pos: 51.49618,9.6562805 parent: 2 -- proto: MedkitCombat - entities: - - uid: 27220 + - uid: 26750 components: - type: Transform - pos: -55.467686,-12.512793 + rot: 3.141592653589793 rad + pos: 56.5,-0.5 parent: 2 - - type: Storage - storedItems: - 27221: - position: 0,0 - _rotation: East - 27224: - position: 2,0 - _rotation: North - 27222: - position: 1,1 - _rotation: South - 27223: - position: 3,1 - _rotation: South - 27225: - position: 3,0 - _rotation: South - 27226: - position: 0,1 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 27221 - - 27224 - - 27222 - - 27223 - - 27225 - - 27226 -- proto: MedkitCombatFilled - entities: - - uid: 2486 - components: - - type: Transform - parent: 2475 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41331 - components: - - type: Transform - pos: -5.570999,-10.550507 - parent: 40828 - - uid: 41842 + - uid: 26751 components: - type: Transform - pos: 2.4799347,-1.5552368 - parent: 41669 -- proto: MedkitFilled - entities: - - uid: 16228 + rot: 3.141592653589793 rad + pos: 55.5,-4.5 + parent: 2 + - uid: 26752 components: - type: Transform - parent: 16226 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 27232 + rot: 3.141592653589793 rad + pos: 81.588104,4.643117 + parent: 2 + - uid: 26753 components: - type: Transform - pos: 80.502365,-9.5784445 + pos: -62.609993,-71.49693 parent: 2 - - uid: 27233 + - uid: 26754 components: - type: Transform - pos: 64.508545,-3.0347085 + pos: -37.520256,3.586957 parent: 2 - - uid: 27234 + - uid: 26755 components: - type: Transform - pos: -44.483433,-19.51846 + pos: -55.444374,-7.3688416 parent: 2 - - uid: 27235 + - uid: 26756 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.6781487,19.653606 + pos: 24.58624,-76.29226 parent: 2 - - uid: 27236 + - uid: 26757 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.481255,-15.342557 + pos: -53.403778,-48.186714 parent: 2 - - uid: 27237 + - uid: 26758 components: - - type: MetaData - desc: OneYa - type: Transform rot: 3.141592653589793 rad - pos: -17.520306,-81.37365 + pos: -67.594696,-47.42654 parent: 2 - - uid: 27238 + - uid: 26759 components: - type: Transform - pos: -64.40231,-50.379948 + pos: -57.563206,-38.405563 parent: 2 - - uid: 27239 + - uid: 26760 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.504303,-37.26448 + pos: 46.49248,16.632973 parent: 2 - - uid: 27240 +- proto: LampGold + entities: + - uid: 95 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.518667,-99.40709 + pos: 36.678036,-67.21557 parent: 2 - - uid: 27241 + - type: HandheldLight + toggleActionEntity: 96 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 96 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.546227,-107.30916 + pos: 13.513687,16.437595 parent: 2 -- proto: MedkitO2 - entities: - - uid: 68 + - type: HandheldLight + toggleActionEntity: 108 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 108 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 113 components: - type: Transform - pos: -47.656715,-9.323641 + pos: -34.553288,-7.330698 parent: 2 - - type: Storage - storedItems: - 69: - position: 0,0 - _rotation: South - 72: - position: 1,0 - _rotation: South - 74: - position: 1,1 - _rotation: South - 73: - position: 2,0 - _rotation: South - 75: - position: 3,0 - _rotation: South - 71: - position: 2,1 - _rotation: South - 76: - position: 3,1 - _rotation: South + - type: HandheldLight + toggleActionEntity: 114 - type: ContainerContainer containers: - storagebase: !type:Container + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container showEnts: False occludes: True ents: - - 69 - - 72 - - 74 - - 73 - - 75 - - 71 - - 76 - - uid: 77 + - 114 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 120 components: - type: Transform - pos: -47.594215,-9.433016 + pos: -11.525497,11.50857 parent: 2 - - type: Storage - storedItems: - 78: - position: 0,0 - _rotation: South - 81: - position: 1,0 - _rotation: South - 83: - position: 1,1 - _rotation: South - 82: - position: 2,0 - _rotation: South - 84: - position: 3,0 - _rotation: South - 80: - position: 2,1 - _rotation: South - 85: - position: 3,1 - _rotation: South + - type: HandheldLight + toggleActionEntity: 121 - type: ContainerContainer containers: - storagebase: !type:Container + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container showEnts: False occludes: True ents: - - 78 - - 81 - - 83 - - 82 - - 84 - - 80 - - 85 - - uid: 86 + - 121 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 26761 components: - type: Transform - pos: -47.594215,-9.542391 + pos: -16.5,5.5 parent: 2 - - type: Storage - storedItems: - 87: - position: 0,0 - _rotation: South - 90: - position: 1,0 - _rotation: South - 92: - position: 1,1 - _rotation: South - 91: - position: 2,0 - _rotation: South - 93: - position: 3,0 - _rotation: South - 89: - position: 2,1 - _rotation: South - 94: - position: 3,1 - _rotation: South +- proto: LampInterrogator + entities: + - uid: 103 + components: + - type: Transform + pos: 51.51914,-9.259501 + parent: 2 + - type: HandheldLight + toggleActionEntity: 104 - type: ContainerContainer containers: - storagebase: !type:Container + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container showEnts: False occludes: True ents: - - 87 - - 90 - - 92 - - 91 - - 93 - - 89 - - 94 -- proto: MedkitOxygenFilled + - 104 + - type: Physics + canCollide: True + - type: ActionsContainer +- proto: LandMineExplosive entities: - - uid: 27242 + - uid: 26763 components: - type: Transform - pos: 64.508545,-2.7847085 + pos: -89.68935,-1.4331177 parent: 2 - - uid: 27243 + - uid: 26764 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.512764,-24.27153 + pos: -74.88008,-65.27804 parent: 2 - - uid: 27244 +- proto: LandMineModular + entities: + - uid: 26765 components: - type: Transform - pos: -64.56355,-50.473698 + pos: -72.25352,-66.75768 parent: 2 - - uid: 41332 + - uid: 26766 components: - type: Transform - pos: -5.5953827,-10.361389 - parent: 40828 -- proto: MedkitRadiationFilled + pos: -70.84727,-64.67956 + parent: 2 + - uid: 26767 + components: + - type: Transform + pos: -73.92539,-63.101433 + parent: 2 +- proto: Lantern entities: - - uid: 27245 + - uid: 97 components: - type: Transform - pos: 64.53833,-3.428235 + pos: 36.61548,-64.2816 parent: 2 - - uid: 27246 + - type: HandheldLight + toggleActionEntity: 98 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 98 + - type: ActionsContainer + - uid: 111 components: - type: Transform - pos: 63.913116,-56.417984 + pos: 33.484238,-63.94874 parent: 2 - - uid: 27247 + - type: HandheldLight + toggleActionEntity: 112 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 112 + - type: ActionsContainer +- proto: LanternFlash + entities: + - uid: 101 components: - type: Transform - pos: -48.35817,-8.6096945 + pos: 34.74378,-71.32181 parent: 2 - - uid: 41843 + - type: HandheldLight + toggleActionEntity: 102 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 102 + - type: ActionsContainer + - uid: 26768 components: - type: Transform - pos: 2.4799347,-1.9155273 - parent: 41669 -- proto: MedkitToxinFilled + pos: -82.55063,-24.325563 + parent: 2 +- proto: LargeBeaker entities: - - uid: 27248 + - uid: 1992 + components: + - type: Transform + parent: 1980 + - type: Physics + canCollide: False + - uid: 26769 components: - type: Transform - pos: 80.47644,-10.177777 + pos: -19.574066,-25.433702 parent: 2 - - uid: 27249 + - uid: 26770 components: - type: Transform - pos: 64.491455,-3.16261 + pos: -19.363129,-25.199327 parent: 2 - - uid: 27250 + - uid: 26771 components: - type: Transform - pos: -47.63942,-8.6721945 + pos: -55.46563,-13.170682 parent: 2 - - uid: 27251 + - uid: 26772 components: - type: Transform - pos: -47.592545,-8.5628195 + pos: -34.649292,-21.959995 parent: 2 - - uid: 27252 + - uid: 26773 components: - type: Transform - pos: -47.54567,-8.4690695 + pos: -45.360683,-10.721433 parent: 2 - - uid: 27253 + - uid: 26774 components: - type: Transform - pos: -53.513786,-55.384033 + pos: 29.956684,12.437808 parent: 2 - - uid: 41844 + - uid: 26775 components: - type: Transform - pos: 2.4799347,-2.2905273 - parent: 41669 -- proto: MedTekCartridge + pos: 33.612232,23.321634 + parent: 2 + - uid: 26776 + components: + - type: Transform + pos: -6.8147693,-34.35171 + parent: 2 + - uid: 26777 + components: + - type: Transform + pos: -6.9866443,-34.242336 + parent: 2 + - uid: 26778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.7007656,-35.606224 + parent: 2 + - uid: 26779 + components: + - type: Transform + pos: -11.488715,-39.018528 + parent: 2 +- proto: LauncherCreamPie entities: - - uid: 1378 + - uid: 19919 components: - type: Transform - parent: 1372 + parent: 19910 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: MetalFoamGrenade - entities: - - uid: 27254 + - uid: 26780 components: - type: Transform - pos: 52.980667,-71.355354 + pos: -48.498768,-108.43273 parent: 2 - - uid: 27255 +- proto: LauncherSyringe + entities: + - uid: 26781 components: - type: Transform - pos: 53.105667,-71.292854 + pos: -45.56118,-6.307379 parent: 2 - - uid: 41697 +- proto: LawyerPDA + entities: + - uid: 1376 components: - type: Transform - parent: 41690 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 41698 +- proto: LeadChemistryBottle + entities: + - uid: 26782 components: + - type: MetaData + desc: Что дед мороз мне подарит? + name: свинец - type: Transform - parent: 41690 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41699 + pos: -57.70397,-89.29614 + parent: 2 +- proto: LeavesCannabisDried + entities: + - uid: 43 components: - type: Transform - parent: 41690 + parent: 35 + - type: Stack + count: 5 - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 41700 +- proto: LedLightBulb + entities: + - uid: 40758 components: - type: Transform - parent: 41690 + parent: 40757 + - type: LightBulb + color: '#0000FFFF' - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: MicrophoneInstrument +- proto: Left4ZedChemistryBottle entities: - - uid: 27256 + - uid: 2562 components: - type: Transform - pos: -20.323889,-92.41741 - parent: 2 - - uid: 27257 + parent: 2561 + - type: Physics + canCollide: False + - uid: 26783 components: - type: Transform - pos: 35.515884,-9.537717 + pos: 36.64995,23.117214 parent: 2 -- proto: Milkalyzer +- proto: LeftArmBorg entities: - - uid: 27258 + - uid: 26784 components: - type: Transform - pos: -20.588402,-21.946007 + rot: -1.5707963267948966 rad + pos: -16.723213,-45.703697 parent: 2 -- proto: MindShieldImplanter - entities: - - uid: 2487 + - uid: 26785 components: - - type: MetaData - name: Щит разума - type: Transform - parent: 2475 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MineralScanner - entities: - - uid: 27259 + rot: 3.141592653589793 rad + pos: -16.270088,-45.547447 + parent: 2 + - uid: 26786 components: - type: Transform - pos: 15.396231,-29.394201 + rot: 3.141592653589793 rad + pos: -17.426338,-46.188072 parent: 2 - - uid: 27260 + - uid: 26787 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.535699,-95.944046 + pos: -16.660713,-46.094322 parent: 2 -- proto: MinimoogInstrument +- proto: LeftArmSkeleton entities: - - uid: 27261 + - uid: 26788 components: - type: Transform - pos: 32.5,27.5 + pos: 65.5,-50.5 parent: 2 -- proto: MiningDrill +- proto: LeftFootMoth entities: - - uid: 27262 + - uid: 26789 components: - type: Transform - pos: -2.4762564,17.41959 + rot: 1.5707963267948966 rad + pos: 107.40406,-71.27681 parent: 2 -- proto: MiningWindow +- proto: LeftFootSkeleton entities: - - uid: 27263 + - uid: 26790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-54.5 + pos: 65.5,-50.5 parent: 2 - - uid: 27264 +- proto: LeftHandSkeleton + entities: + - uid: 26791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-53.5 + pos: 65.5,-50.5 parent: 2 - - uid: 27265 +- proto: LeftLegBorg + entities: + - uid: 26792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-54.5 + pos: -86.09143,-9.851116 parent: 2 - - uid: 27266 + - uid: 26793 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-53.5 + pos: 9.548025,-29.466383 parent: 2 -- proto: MiniSyringe - entities: - - uid: 27267 + - uid: 26794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.40493,-6.401129 + rot: 3.141592653589793 rad + pos: 10.1574,-29.247633 parent: 2 - - uid: 27268 + - uid: 26795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.40493,-6.479254 + pos: -17.862097,-45.621193 parent: 2 - - uid: 27269 + - uid: 26796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.40493,-6.541754 + pos: -17.113838,-45.219322 parent: 2 - - uid: 27270 + - uid: 26797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.40493,-6.635504 + pos: -17.098213,-45.359947 parent: 2 -- proto: Mirror - entities: - - uid: 27271 + - uid: 26798 components: - - type: MetaData - name: зеркальце - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -14.092231,-27.466223 + rot: 1.5707963267948966 rad + pos: -16.410713,-45.219322 parent: 2 - - type: Item - inhandVisuals: {} - - uid: 27272 +- proto: LeftLegReptilian + entities: + - uid: 26799 components: - type: Transform rot: -1.5707963267948966 rad - pos: 79.5,-38.5 + pos: -63.578598,-33.43395 parent: 2 - - uid: 27273 +- proto: LeftLegSkeleton + entities: + - uid: 26800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-37.5 + pos: 65.5,-50.5 parent: 2 - - uid: 27274 +- proto: LegionnaireBonfire + entities: + - uid: 26801 components: + - type: MetaData + desc: Легион имя мне. - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-36.5 + pos: 69.5,-49.5 parent: 2 - - uid: 27275 +- proto: LGBTQFlag + entities: + - uid: 26802 components: - type: Transform - pos: 8.5,-70.5 + rot: 1.5707963267948966 rad + pos: -72.5,5.5 parent: 2 - - uid: 27276 + - uid: 26803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-94.5 + rot: 1.5707963267948966 rad + pos: -73.5,5.5 parent: 2 - - uid: 27277 + - uid: 26804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-93.5 + pos: -67.5,5.5 parent: 2 - - uid: 27278 +- proto: LGBTQHandyFlag + entities: + - uid: 26805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-92.5 + pos: -70.448006,4.5415454 parent: 2 - - uid: 27279 +- proto: LightBulbBroken + entities: + - uid: 26806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-4.5 + rot: 1.5707963267948966 rad + pos: -51.410088,-74.550186 parent: 2 - - uid: 27280 +- proto: Lighter + entities: + - uid: 26808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-76.5 + pos: 8.601826,13.614818 parent: 2 - - uid: 27281 + - uid: 26809 components: - type: Transform - pos: 75.5,-9.5 + pos: 57.742687,15.597738 parent: 2 - - uid: 27282 +- proto: LightHeadBorg + entities: + - uid: 26464 components: - type: Transform - pos: 74.5,-9.5 + pos: 11.7199,-27.544508 parent: 2 - - uid: 27283 + - uid: 26465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-76.5 + pos: -20.566963,-53.306625 parent: 2 - - uid: 27284 + - uid: 26466 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-76.5 + pos: -20.348213,-53.19725 parent: 2 - - uid: 27285 + - uid: 26467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,26.5 + rot: -1.5707963267948966 rad + pos: -17.035713,-45.453697 parent: 2 -- proto: MirrorShield - entities: - - uid: 27286 + - uid: 26468 components: - type: Transform - pos: -84.48447,-27.56959 + pos: -20.238838,-53.619125 parent: 2 -- proto: MMI - entities: - - uid: 27287 + - uid: 26469 components: - type: Transform - pos: -17.351639,-54.3246 + rot: 1.5707963267948966 rad + pos: -20.551338,-53.744125 parent: 2 - - uid: 27288 + - uid: 26810 components: - type: Transform - pos: -34.551216,-55.460392 + rot: -1.5707963267948966 rad + pos: 11.12615,-29.497633 parent: 2 -- proto: ModularGrenade - entities: - - uid: 27289 + - uid: 26811 components: - type: Transform - pos: -38.675457,-32.34256 + pos: -16.486774,-45.63583 parent: 2 - - uid: 27290 +- proto: LightReplacer + entities: + - uid: 26807 components: - type: Transform - pos: -68.930565,-62.6539 - parent: 2 - - uid: 27291 + parent: 32193 + - type: Physics + canCollide: False + - uid: 26812 components: - type: Transform - pos: -68.680565,-62.3414 + rot: -1.5707963267948966 rad + pos: 67.522446,-29.444263 parent: 2 - - uid: 27292 + - uid: 26813 components: - type: Transform - pos: -68.618065,-62.56015 + rot: -1.5707963267948966 rad + pos: 42.70501,-66.38782 parent: 2 - - uid: 27293 +- proto: LightTubeCrystalRed + entities: + - uid: 26815 components: - type: Transform - pos: -63.558983,-33.00352 - parent: 2 - - uid: 27294 + parent: 26814 + - type: LightBulb + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26817 components: - type: Transform - pos: -63.308983,-31.425396 - parent: 2 - - uid: 27295 + parent: 26816 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.48086,-31.566021 - parent: 2 - - uid: 27296 + parent: 26818 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.655197,0.494864 - parent: 2 - - uid: 27297 + parent: 26820 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26823 components: - type: Transform - pos: -38.675457,-32.34256 - parent: 2 - - uid: 27298 + parent: 26822 + - type: LightBulb + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26825 components: - type: Transform - pos: -38.675457,-32.34256 - parent: 2 - - uid: 27299 + parent: 26824 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26827 components: - type: Transform - pos: -38.675457,-32.34256 - parent: 2 - - uid: 41333 + parent: 26826 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26829 components: - type: Transform - pos: -3.6557312,-13.251007 - parent: 40828 - - uid: 41334 + parent: 26828 + - type: LightBulb + lightRadius: 2 + - type: Physics + canCollide: False + - uid: 26831 components: - type: Transform - pos: -3.699524,-13.221802 - parent: 40828 - - uid: 41335 + parent: 26830 + - type: LightBulb + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26833 components: - type: Transform - pos: -3.728714,-13.411652 - parent: 40828 -- proto: MopItem - entities: - - uid: 2554 + parent: 26832 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26835 components: - type: Transform - parent: 2552 + parent: 26834 + - type: LightBulb + lightEnergy: 1 - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 27300 + - uid: 26837 components: - type: Transform - pos: -68.5,-18.5 - parent: 2 - - uid: 27301 + parent: 26836 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26839 components: - type: Transform - pos: -6.5,-72.5 - parent: 2 - - uid: 27302 + parent: 26838 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26841 components: - type: Transform - pos: -57.5,-31.5 - parent: 2 -- proto: Morgue - entities: - - uid: 26473 + parent: 26840 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-84.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26474 - - uid: 27303 + parent: 26842 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26845 components: - type: Transform - pos: 62.5,1.5 - parent: 2 - - uid: 27304 + parent: 26844 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26847 components: - type: Transform - pos: -55.5,-31.5 - parent: 2 - - uid: 27305 + parent: 26846 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26849 components: - type: Transform - pos: -54.5,-31.5 - parent: 2 - - uid: 27306 + parent: 26848 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26851 components: - type: Transform - pos: -53.5,-31.5 - parent: 2 - - uid: 27307 + parent: 26850 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-73.5 - parent: 2 - - uid: 27308 + parent: 26852 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-73.5 - parent: 2 - - uid: 27309 + parent: 26854 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-85.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 27310 + parent: 26856 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26859 components: - type: Transform - pos: -55.5,-34.5 - parent: 2 - - uid: 27311 + parent: 26858 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26861 components: - type: Transform - pos: -54.5,-34.5 - parent: 2 - - uid: 27312 + parent: 26860 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26863 components: - type: Transform - pos: -53.5,-34.5 - parent: 2 - - uid: 27313 + parent: 26862 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26865 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-36.5 - parent: 2 - - uid: 27314 + parent: 26864 + - type: LightBulb + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26867 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-36.5 - parent: 2 - - uid: 27315 + parent: 26866 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26869 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-36.5 - parent: 2 - - uid: 27316 + parent: 26868 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False +- proto: LiquidNitrogenCanister + entities: + - uid: 26872 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-33.5 + pos: 36.5,-46.5 parent: 2 - - uid: 27317 + - uid: 26873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-33.5 + pos: -74.5,-27.5 parent: 2 - - uid: 27318 + - uid: 26874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-33.5 + pos: 95.5,-82.5 parent: 2 -- proto: MouseTimedSpawner +- proto: LiquidOxygenCanister entities: - - uid: 27319 + - uid: 26875 components: - type: Transform - pos: -69.5,-21.5 + pos: 36.5,-47.5 parent: 2 - - uid: 27320 + - uid: 26876 components: - type: Transform - pos: -33.5,-16.5 + pos: -75.5,-27.5 parent: 2 - - uid: 27321 + - uid: 26877 components: - type: Transform - pos: -49.5,-93.5 + pos: 96.5,-82.5 parent: 2 - - uid: 27322 +- proto: LiveLetLiveCircuitBoard + entities: + - uid: 26878 components: - type: Transform - pos: 37.5,-19.5 + pos: 17.471539,18.571913 parent: 2 - - uid: 27323 +- proto: LockableButtonArmory + entities: + - uid: 26879 components: + - type: MetaData + desc: Эта кнопка открывает гермозатвор хранилища снаряжения красного кода. + name: Красный код - type: Transform - pos: -62.5,6.5 + rot: -1.5707963267948966 rad + pos: 59.5,-15.5 parent: 2 - - uid: 27324 + - type: DeviceLinkSource + linkedPorts: + 2194: + - Pressed: Toggle + - uid: 26880 components: + - type: MetaData + desc: Эта кнопка открывает гермозатвор хранилища снаряжения синего кода. + name: Синий код - type: Transform - pos: 40.5,13.5 + rot: -1.5707963267948966 rad + pos: 59.5,-14.5 parent: 2 - - uid: 27325 + - type: DeviceLinkSource + linkedPorts: + 2184: + - Pressed: Toggle + - uid: 26881 components: + - type: MetaData + name: Снаряжение - type: Transform - pos: -18.5,-56.5 + rot: 3.141592653589793 rad + pos: 58.5,-16.5 parent: 2 -- proto: Mousetrap - entities: - - uid: 27326 + - type: DeviceLinkSource + linkedPorts: + 2195: + - Pressed: Toggle + - uid: 26882 components: + - type: MetaData + name: блокировка камеры 1 - type: Transform - pos: 69.21401,-48.39836 + rot: 1.5707963267948966 rad + pos: 41.5,3.5 parent: 2 -- proto: Multitool - entities: - - uid: 27327 + - type: DeviceLinkSource + linkedPorts: + 2241: + - Pressed: Toggle + - uid: 26883 components: + - type: MetaData + name: блокировка камеры 4 - type: Transform - pos: -68.37957,-75.43861 + rot: -1.5707963267948966 rad + pos: 45.5,2.5 parent: 2 - - uid: 27328 + - type: DeviceLinkSource + linkedPorts: + 2243: + - Pressed: Toggle + - uid: 26884 components: + - type: MetaData + name: блокировка камеры 2 - type: Transform - pos: 41.344666,-82.48986 + rot: 1.5707963267948966 rad + pos: 41.5,6.5 parent: 2 - - uid: 27329 + - type: DeviceLinkSource + linkedPorts: + 2244: + - Pressed: Toggle + - uid: 26885 components: + - type: MetaData + name: блокировка камеры 5 - type: Transform - pos: 51.68862,-46.36927 + rot: -1.5707963267948966 rad + pos: 45.5,5.5 parent: 2 - - uid: 27330 + - type: DeviceLinkSource + linkedPorts: + 2245: + - Pressed: Toggle + - uid: 26886 components: + - type: MetaData + name: блокировка камеры 3 - type: Transform rot: -1.5707963267948966 rad - pos: -40.455536,-63.403385 + pos: 45.5,-0.5 parent: 2 - - uid: 27331 + - type: DeviceLinkSource + linkedPorts: + 2242: + - Pressed: Toggle +- proto: LockableButtonAtmospherics + entities: + - uid: 40851 components: + - type: MetaData + desc: Эта кнопка переключает ставни. + name: ставни - type: Transform - pos: -39.22503,-49.412586 + rot: -1.5707963267948966 rad + pos: 56.5,-92.5 parent: 2 - - uid: 27332 + - type: DeviceLinkSource + linkedPorts: + 40617: + - Pressed: Toggle + 40618: + - Pressed: Toggle + 40849: + - Pressed: Toggle + 40850: + - Pressed: Toggle + - uid: 40852 components: + - type: MetaData + desc: Эта кнопка переключает ставни. + name: ставни - type: Transform - pos: -42.469013,-112.45888 + rot: -1.5707963267948966 rad + pos: 56.5,-100.5 parent: 2 - - uid: 27333 + - type: DeviceLinkSource + linkedPorts: + 39562: + - Pressed: Toggle + 32250: + - Pressed: Toggle + 32231: + - Pressed: Toggle + 32221: + - Pressed: Toggle + 40616: + - Pressed: Toggle + 39563: + - Pressed: Toggle + - uid: 41399 components: + - type: MetaData + desc: Эта кнопка переключает гермозатворы. + name: гермозатворы - type: Transform - pos: -87.5,-11.5 + pos: 43.5,-84.5 parent: 2 - - uid: 27334 + - type: DeviceLinkSource + linkedPorts: + 41327: + - Pressed: Toggle + 41326: + - Pressed: Toggle + - uid: 42065 components: + - type: MetaData + desc: Эта кнопка переключает ставни. + name: ставни - type: Transform - rot: 1.5707963267948966 rad - pos: -0.52328396,-70.29429 + pos: 42.5,-84.5 parent: 2 -- proto: MusicianPDA + - type: DeviceLinkSource + linkedPorts: + 42068: + - Pressed: Toggle + 42067: + - Pressed: Toggle + 42066: + - Pressed: Toggle +- proto: LockableButtonBrig entities: - - uid: 1379 + - uid: 26887 components: + - type: MetaData + name: вызов уборщика - type: Transform - parent: 1372 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NetProbeCartridge + rot: 3.141592653589793 rad + pos: 41.5,-6.5 + parent: 2 + - type: DeviceLinkSource + range: 300 + linkedPorts: + 26713: + - Pressed: Toggle + 26712: + - Pressed: Toggle + 33562: + - Pressed: Toggle +- proto: LockableButtonCaptain entities: - - uid: 1380 - components: - - type: Transform - parent: 1372 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 27335 + - uid: 26888 components: + - type: MetaData + name: кнопка вызова ОБР - type: Transform - pos: 41.489166,-57.470764 + rot: 1.5707963267948966 rad + pos: 7.2179623,16.508371 parent: 2 - - uid: 27336 + - type: WirelessNetworkConnection + range: 1000 + - type: DeviceLinkSource + range: 1000 + linkedPorts: + 28502: + - Pressed: Toggle + 42070: + - Pressed: Open + - uid: 41325 components: - type: Transform - pos: 51.41648,-51.498405 - parent: 2 -- proto: Nettle + rot: 1.5707963267948966 rad + pos: 3.517624,-6.217499 + parent: 40828 + - type: DeviceLinkSource + linkedPorts: + 40848: + - Pressed: Toggle +- proto: LockableButtonCargo entities: - - uid: 27337 + - uid: 32635 components: - type: Transform - pos: -84.57718,-13.242086 + rot: 1.5707963267948966 rad + pos: -1.5,-78.5 parent: 2 -- proto: NetworkConfigurator + - type: WirelessNetworkConnection + range: 2000 + - type: DeviceLinkSource + range: 3000 + linkedPorts: + 26710: + - Pressed: Toggle + 42221: + - Pressed: Toggle +- proto: LockableButtonChapel entities: - - uid: 27338 + - uid: 26889 components: + - type: MetaData + desc: Эта кнопка закрывает ставни. + name: кнопка закрытия церкви - type: Transform rot: -1.5707963267948966 rad - pos: -40.422333,-72.570885 + pos: 36.5,-64.5 parent: 2 - - uid: 27339 + - type: DeviceLinkSource + linkedPorts: + 31087: + - Pressed: Toggle + 31088: + - Pressed: Toggle + 31090: + - Pressed: Toggle + 31089: + - Pressed: Toggle + 31092: + - Pressed: Toggle + 31091: + - Pressed: Toggle + - uid: 26890 components: + - type: MetaData + name: свет - type: Transform - pos: 16.197271,5.6603804 + rot: 3.141592653589793 rad + pos: 36.5,-66.5 parent: 2 - - uid: 27340 + - type: DeviceLinkSource + linkedPorts: + 28326: + - Pressed: Toggle + 28179: + - Pressed: Toggle + 28180: + - Pressed: Toggle +- proto: LockableButtonChemistry + entities: + - uid: 26891 components: + - type: MetaData + desc: Эта кнопка переключает ставни. + name: кнопка ставней - type: Transform - pos: 36.52398,-35.177963 + rot: 3.141592653589793 rad + pos: -36.28956,-32.024765 parent: 2 - - uid: 27341 + - type: DeviceLinkSource + linkedPorts: + 31098: + - Pressed: Toggle + 31094: + - Pressed: Toggle + 31097: + - Pressed: Toggle + 31095: + - Pressed: Toggle + 31096: + - Pressed: Toggle + 31093: + - Pressed: Toggle +- proto: LockableButtonCommand + entities: + - uid: 26892 components: - type: Transform - pos: 62.304565,-56.383835 + rot: -1.5707963267948966 rad + pos: 2.5,15.5 parent: 2 - - uid: 27342 + - type: DeviceLinkSource + linkedPorts: + 2143: + - Pressed: Toggle + - uid: 26893 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.502976,-79.737305 + pos: -1.5,15.5 parent: 2 - - uid: 27343 + - type: DeviceLinkSource + linkedPorts: + 2142: + - Pressed: Toggle + - uid: 41839 components: + - type: MetaData + name: гермозатворы - type: Transform - pos: -53.151768,-54.389374 - parent: 2 - - uid: 27344 + rot: 1.5707963267948966 rad + pos: 2.5362701,2.5786743 + parent: 41669 + - type: DeviceLinkSource + linkedPorts: + 41688: + - Pressed: Toggle + 41687: + - Pressed: Toggle + 41684: + - Pressed: Toggle + 41683: + - Pressed: Toggle + 41686: + - Pressed: Toggle + 41685: + - Pressed: Toggle + 41689: + - Pressed: Toggle +- proto: LockableButtonEngineering + entities: + - uid: 32634 components: - type: Transform - pos: 55.204376,-84.2287 + rot: -1.5707963267948966 rad + pos: 46.5,-45.5 parent: 2 - - uid: 27345 + - type: WirelessNetworkConnection + range: 2000 + - type: DeviceLinkSource + range: 3000 + linkedPorts: + 26701: + - Pressed: Toggle + 26711: + - Pressed: Toggle + 42222: + - Pressed: Toggle +- proto: LockableButtonHeadOfSecurity + entities: + - uid: 26894 components: + - type: MetaData + name: кнопка вызова ОБР - type: Transform - rot: -1.5707963267948966 rad - pos: 109.54755,-22.058807 + rot: 3.141592653589793 rad + pos: 50.5,13.3 parent: 2 - - uid: 27346 + - type: WirelessNetworkConnection + range: 2000 + - type: DeviceLinkSource + range: 30000000 + linkedPorts: + 28505: + - Pressed: On + 42071: + - Pressed: Open +- proto: LockableButtonMedical + entities: + - uid: 19558 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.786607,23.587128 + pos: -39.5,-34.5 parent: 2 - - uid: 27347 + - type: DeviceLinkSource + range: 300 + linkedPorts: + 31194: + - Pressed: Toggle + 20150: + - Pressed: Toggle + 34157: + - Pressed: Toggle + 26705: + - Pressed: Toggle +- proto: LockableButtonResearch + entities: + - uid: 2547 components: - type: Transform - pos: -69.426704,-67.41542 + rot: 3.141592653589793 rad + pos: -35.1,-50.5 parent: 2 -- proto: NewsReaderCartridge + - type: DeviceLinkSource + range: 300 + linkedPorts: + 2545: + - Pressed: Toggle + 26708: + - Pressed: Toggle + 34156: + - Pressed: Toggle + 26709: + - Pressed: Toggle +- proto: LockableButtonSalvage entities: - - uid: 1381 + - uid: 26895 components: + - type: MetaData + name: послать калибровочный сигнал - type: Transform - parent: 1372 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 27348 + rot: 3.141592653589793 rad + pos: 9.5,-51.5 + parent: 2 + - type: AccessReader + access: + - - NuclearOperative + - - Salvage + - type: DeviceLinkSource + linkedPorts: + 2209: + - Pressed: Open + - uid: 26896 components: + - type: MetaData + name: начать синхронизацию - type: Transform rot: -1.5707963267948966 rad - pos: 25.03503,-76.444275 + pos: 20.5,-23.5 parent: 2 -- proto: NitrogenCanister + - type: DeviceLinkSource + range: 10000 + linkedPorts: + 2211: + - Pressed: Open +- proto: LockableButtonSecurity entities: - - uid: 27349 - components: - - type: Transform - pos: 31.5,-102.5 - parent: 2 - - uid: 27350 + - uid: 26897 components: + - type: MetaData + desc: Эта кнопка переключает освещение. + name: свет - type: Transform - pos: -48.5,-62.5 + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 parent: 2 - - uid: 27351 + - type: DeviceLinkSource + linkedPorts: + 28060: + - Pressed: Toggle + 28393: + - Pressed: Toggle + - uid: 26898 components: - type: Transform - pos: -48.5,-61.5 + rot: 3.141592653589793 rad + pos: 75.5,2.5 parent: 2 - - uid: 27352 + - type: DeviceLinkSource + linkedPorts: + 2208: + - Pressed: Toggle + - uid: 26899 components: + - type: MetaData + desc: Гермозатвор - type: Transform - pos: 37.5,-46.5 + rot: 1.5707963267948966 rad + pos: 81.056854,4.3158965 parent: 2 - - uid: 27353 + - type: DeviceLinkSource + linkedPorts: + 2210: + - Pressed: Toggle + 39839: + - Pressed: DoorBolt + - uid: 26900 components: + - type: MetaData + desc: Эта кнопка блотирует шлюзы допросной. + name: болты - type: Transform - pos: -46.5,-89.5 + rot: 3.141592653589793 rad + pos: 50.5,-12.5 parent: 2 - - uid: 27354 + - type: DeviceLinkSource + linkedPorts: + 910: + - Pressed: DoorBolt + 899: + - Pressed: DoorBolt + - uid: 26901 components: + - type: MetaData + desc: Эта кнопка переключает освещение. + name: свет - type: Transform - pos: -59.5,-62.5 + rot: -1.5707963267948966 rad + pos: 53.5,-4.5 parent: 2 - - uid: 27355 + - type: DeviceLinkSource + linkedPorts: + 28393: + - Pressed: Toggle + 28060: + - Pressed: Toggle + - uid: 26902 components: + - type: MetaData + name: ставни окон в космос - type: Transform - pos: -61.5,-25.5 + rot: 3.141592653589793 rad + pos: 73.5,-8.5 parent: 2 - - uid: 27356 - components: - - type: Transform - pos: 33.5,-29.5 - parent: 2 - - uid: 27357 - components: - - type: Transform - pos: 15.5,-78.5 - parent: 2 - - uid: 27358 - components: - - type: Transform - pos: -67.5,-15.5 - parent: 2 - - uid: 27359 - components: - - type: Transform - pos: -35.5,-122.5 - parent: 2 - - uid: 27360 + - type: DeviceLinkSource + linkedPorts: + 31102: + - Pressed: Toggle + 31103: + - Pressed: Toggle + 31104: + - Pressed: Toggle + 31105: + - Pressed: Toggle + 31106: + - Pressed: Toggle +- proto: LockerAtmosphericsFilled + entities: + - uid: 20 components: - type: Transform - pos: -68.5,12.5 + pos: 37.5,-52.5 parent: 2 - - uid: 27361 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21 + - 24 + - 23 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25 components: - type: Transform - pos: -68.5,-2.5 + pos: 36.5,-52.5 parent: 2 - - uid: 27362 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26 + - 29 + - 28 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 30 components: - type: Transform - pos: -67.5,-2.5 + pos: 35.5,-52.5 parent: 2 - - uid: 27363 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 31 + - 34 + - 33 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBooze + entities: + - uid: 18743 components: - type: Transform - pos: -54.5,-98.5 + pos: -4.5,-71.5 parent: 2 - - uid: 27364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8977377 + - 7.139109 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18745 + - 18746 + - 18744 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBoozeFilled + entities: + - uid: 26903 components: - type: Transform - pos: -70.5,-12.5 + pos: 22.5,7.5 parent: 2 - - uid: 27365 +- proto: LockerBotanistFilled + entities: + - uid: 13356 components: - type: Transform - pos: -71.5,-24.5 + pos: 36.5,18.5 parent: 2 - - uid: 27366 + - uid: 18672 components: - type: Transform - pos: 27.5,17.5 + pos: 37.5,18.5 parent: 2 - - uid: 27367 + - uid: 26905 components: - type: Transform - pos: 57.5,-80.5 + pos: 35.5,18.5 parent: 2 - - uid: 27368 +- proto: LockerBotanistLoot + entities: + - uid: 26908 components: - type: Transform - pos: 52.5,-27.5 + pos: -10.5,-26.5 parent: 2 -- proto: NitrogenTankFilled + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerBrigmedic entities: - - uid: 2488 - components: - - type: Transform - parent: 2475 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15680 - components: - - type: Transform - parent: 15673 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15698 - components: - - type: Transform - parent: 15695 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41108 - components: - - type: Transform - parent: 41103 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41115 - components: - - type: Transform - parent: 41110 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41122 - components: - - type: Transform - parent: 41117 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41129 - components: - - type: Transform - parent: 41124 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41136 - components: - - type: Transform - parent: 41131 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41142 + - uid: 2475 components: - type: Transform - parent: 41138 + anchored: True + pos: 65.5,1.5 + parent: 2 - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NitrousOxideCanister + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2476 + - 2491 + - 2479 + - 2487 + - 2490 + - 2484 + - 2477 + - 2480 + - 2481 + - 2478 + - 2486 + - 2485 + - 2483 + - 2482 + - 2488 + - 2489 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Pullable + prevFixedRotation: True +- proto: LockerCaptainFilled entities: - - uid: 27369 - components: - - type: Transform - pos: 31.5,-96.5 - parent: 2 - - uid: 27370 - components: - - type: Transform - pos: -48.5,-60.5 - parent: 2 - - uid: 27371 + - uid: 26909 components: - type: Transform - pos: 38.5,-46.5 + pos: 16.5,16.5 parent: 2 - - uid: 27372 +- proto: LockerChemistry + entities: + - uid: 15846 components: - type: Transform anchored: True - pos: 77.5,6.5 + pos: 3.5,-9.5 parent: 2 - type: Physics bodyType: Static -- proto: NitrousOxideTankFilled + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15847 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Pullable + prevFixedRotation: True +- proto: LockerChemistryFilled entities: - - uid: 27373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.479095,-19.584072 - parent: 2 - - uid: 27374 - components: - - type: Transform - pos: -24.456526,11.467024 - parent: 2 - - uid: 27375 + - uid: 26910 components: - type: Transform - pos: -53.51677,-73.51513 + pos: -38.5,-31.5 parent: 2 -- proto: NodeScanner + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 39422 +- proto: LockerChiefEngineerFilled entities: - - uid: 27376 + - uid: 26911 components: - type: Transform - pos: -39.482056,-61.35141 + pos: 55.5,-76.5 parent: 2 -- proto: NotekeeperCartridge - entities: - - uid: 1382 - components: - - type: Transform - parent: 1372 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NoticeBoard + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26912 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChiefMedicalOfficerFilled entities: - - uid: 27377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 2 - - uid: 27378 + - uid: 26913 components: - type: Transform - pos: -38.5,-24.5 + pos: -38.5,-12.5 parent: 2 - - uid: 27379 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerClown + entities: + - uid: 1311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-70.5 + pos: -51.5,-112.5 parent: 2 - - uid: 27380 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.8978151 + - 7.1394 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1312 + - 1316 + - 1315 + - 1314 + - 1313 + - 1317 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19910 components: - type: Transform - pos: 32.5,8.5 + pos: 36.5,-15.5 parent: 2 - - uid: 27381 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19916 + - 19913 + - 19919 + - 19918 + - 19911 + - 19912 + - 19915 + - 19917 + - 19914 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetective + entities: + - uid: 2259 components: + - type: MetaData + desc: Редкие книги по запросу. + name: Картотечные книги - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-28.5 + pos: -36.5,5.5 parent: 2 - - type: Storage - storedItems: - 27382: - position: 0,0 - _rotation: South + - type: AccessReader + access: + - - Service + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: - storagebase: !type:Container + entity_storage: !type:Container showEnts: False occludes: True ents: - - 27382 - - uid: 27383 + - 2261 + - 2264 + - 2263 + - 2262 + - 2260 + - 2265 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15756 components: + - type: MetaData + name: шкаф - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-113.5 + pos: 53.5,20.5 parent: 2 -- proto: NTDefaultCircuitBoard - entities: - - uid: 1348 - components: - - type: Transform - parent: 1345 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NTHandyFlag - entities: - - uid: 1790 - components: - - type: Transform - parent: 1785 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NuclearBomb + - type: AccessReader + enabled: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8978093 + - 7.139378 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15759 + - 15758 + - 15757 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled entities: - - uid: 27384 + - uid: 2374 components: - type: Transform - pos: -5.5,-6.5 + pos: 39.5,-23.5 parent: 2 -- proto: NuclearBombKeg + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2375 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerElectricalSuppliesFilled entities: - - uid: 27385 + - uid: 26914 components: - type: Transform - pos: -19.5,-103.5 + pos: 64.5,15.5 parent: 2 -- proto: NukeDiskFake - entities: - - uid: 27386 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 26915 components: - type: Transform - pos: -9.2673025,-7.040256 + pos: -72.5,11.5 parent: 2 -- proto: NutimovCircuitBoard - entities: - - uid: 27387 + - uid: 26916 components: - type: Transform - pos: 15.479378,22.5946 + pos: -55.5,-87.5 parent: 2 -- proto: Ointment - entities: - - uid: 2573 - components: - - type: Transform - parent: 2571 - - type: Physics - canCollide: False - - uid: 2574 - components: - - type: Transform - parent: 2571 - - type: Physics - canCollide: False - - uid: 2579 - components: - - type: Transform - parent: 2577 - - type: Physics - canCollide: False - - uid: 2580 - components: - - type: Transform - parent: 2577 - - type: Physics - canCollide: False - - uid: 2585 - components: - - type: Transform - parent: 2583 - - type: Physics - canCollide: False - - uid: 2586 + - uid: 26917 components: - type: Transform - parent: 2583 - - type: Physics - canCollide: False -- proto: OperatingTable - entities: - - uid: 27388 + pos: 65.5,-71.5 + parent: 2 + - uid: 26918 components: - type: Transform - pos: 66.5,-2.5 + pos: 79.5,-49.5 parent: 2 - - uid: 27389 + - uid: 26919 components: - type: Transform - pos: -55.5,-19.5 + pos: -87.5,-19.5 parent: 2 - - uid: 27390 + - uid: 42362 components: - type: Transform - pos: -34.5,-55.5 + pos: 23.5,19.5 parent: 2 - - uid: 27391 +- proto: LockerEngineerFilled + entities: + - uid: 26920 components: - type: Transform - pos: -23.5,11.5 + pos: 81.5,-52.5 parent: 2 - - uid: 27392 + - uid: 26921 components: - type: Transform - pos: -65.5,-24.5 + pos: 49.5,-81.5 parent: 2 - - uid: 27393 + - uid: 26922 components: - type: Transform - pos: -54.5,-74.5 + pos: 48.5,-81.5 parent: 2 - - uid: 27394 + - uid: 26923 components: - type: Transform - pos: -54.5,-40.5 + pos: 51.5,-81.5 parent: 2 - - uid: 27395 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 26924 components: - type: Transform - pos: -65.5,-50.5 + pos: 50.5,-81.5 parent: 2 -- proto: OpporozidoneBeakerSmall - entities: - - uid: 27396 + - uid: 26925 components: - type: Transform - pos: -34.679024,-22.510044 + pos: 43.5,-60.5 parent: 2 -- proto: OrangeSeeds - entities: - - uid: 27397 + - uid: 26926 components: - type: Transform - pos: 46.481827,24.41528 + pos: 44.5,-60.5 parent: 2 -- proto: OreBag +- proto: LockerEvidence entities: - - uid: 27398 + - uid: 26927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.8257065,-96.37581 + pos: 72.5,-4.5 parent: 2 - - uid: 27399 + - uid: 26928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.497582,-96.39143 + pos: 49.5,-20.5 parent: 2 -- proto: OreBox - entities: - - uid: 27400 + - uid: 26929 components: - type: Transform - pos: -9.5,-93.5 + pos: 49.5,-22.5 parent: 2 - - uid: 27401 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 26930 components: - type: Transform - pos: -21.5,-61.5 + pos: 42.5,4.5 parent: 2 - - uid: 27402 + - uid: 26931 components: - type: Transform - pos: -21.5,-62.5 + pos: 42.5,1.5 parent: 2 - - uid: 27403 + - uid: 26932 components: - type: Transform - pos: -2.5,-57.5 + pos: 44.5,8.5 parent: 2 -- proto: OreProcessor - entities: - - uid: 27404 + - uid: 26933 components: - type: Transform - pos: -1.5,-87.5 + pos: 50.5,-1.5 parent: 2 -- proto: OrganArachnidHeart - entities: - - uid: 16214 - components: - - type: Transform - parent: 16213 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OrganArachnidTongue - entities: - - uid: 16215 - components: - - type: Transform - parent: 16213 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OrganDionaEyes - entities: - - uid: 27405 + - uid: 26934 components: - type: Transform - pos: -57.303303,-39.026672 + pos: 52.5,-0.5 parent: 2 -- proto: OrganHumanAppendix - entities: - - uid: 16216 - components: - - type: Transform - parent: 16213 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OrganHumanBrain - entities: - - uid: 27406 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 26935 components: - type: Transform - pos: -4.0133886,-40.97168 + pos: 50.5,-0.5 parent: 2 -- proto: OrganHumanEars - entities: - - uid: 16217 + - uid: 26936 components: - type: Transform - parent: 16213 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OrganHumanEyes - entities: - - uid: 27407 + pos: 44.5,3.5 + parent: 2 + - uid: 26937 components: - type: Transform - pos: -49.32534,-23.830582 + pos: 44.5,0.5 parent: 2 - - uid: 27408 + - uid: 26938 components: - type: Transform - pos: -38.552746,-33.30968 + pos: 73.5,-4.5 parent: 2 - - uid: 27409 + - uid: 26939 components: - type: Transform - pos: -48.29725,-33.85604 + pos: 74.5,-4.5 parent: 2 -- proto: OrganHumanHeart - entities: - - uid: 16218 + - uid: 26940 components: - type: Transform - parent: 16213 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 27410 + pos: 75.5,-4.5 + parent: 2 + - uid: 26941 components: - type: Transform - pos: -83.15014,-26.559216 + pos: 42.5,-9.5 parent: 2 -- proto: OrganHumanKidneys - entities: - - uid: 27411 + - uid: 26942 components: - type: Transform - pos: -64.62623,-24.98179 + pos: 42.5,-8.5 parent: 2 -- proto: OrganHumanLungs +- proto: LockerFreezer entities: - - uid: 27412 + - uid: 18779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.124985,-33.18395 - parent: 2 -- proto: OrganHumanTongue - entities: - - uid: 16219 - components: - - type: Transform - parent: 16213 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OxygenCanister - entities: - - uid: 27413 - components: - - type: Transform - pos: 31.5,-99.5 + pos: 25.5,14.5 parent: 2 - - uid: 27414 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99739 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18783 + - 18782 + - 18781 + - 18780 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18852 components: - type: Transform - pos: -46.5,-62.5 + pos: -20.5,-19.5 parent: 2 - - uid: 27415 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18853 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19903 components: - type: Transform - pos: -46.5,-61.5 + pos: -19.5,-19.5 parent: 2 - - uid: 27416 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19904 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26723 components: - type: Transform - pos: 37.5,-47.5 + pos: -55.5,9.5 parent: 2 - - uid: 27417 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26724 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 33126 components: - type: Transform - pos: 38.5,-47.5 + pos: 26.5,9.5 parent: 2 - - uid: 27418 +- proto: LockerFreezerBase + entities: + - uid: 2364 components: - type: Transform - pos: 34.5,-49.5 + pos: 87.5,-10.5 parent: 2 - - uid: 27419 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2365 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15665 components: - type: Transform - pos: -46.5,-88.5 + anchored: True + pos: -5.5,-8.5 parent: 2 - - uid: 27420 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14835 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15672 + - 15667 + - 15658 + - 15666 + - 15671 + - 15669 + - 15668 + - 15670 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Pullable + prevFixedRotation: True + - uid: 18747 components: - type: Transform - pos: -67.5,-30.5 + pos: 46.5,-75.5 parent: 2 - - uid: 27421 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18748 + - 18749 + - 18750 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18855 components: - type: Transform - pos: -34.5,17.5 + pos: -41.5,-86.5 parent: 2 - - uid: 27422 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18857 + - 18856 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19900 components: - type: Transform - pos: 42.5,21.5 + pos: -39.5,-5.5 parent: 2 - - uid: 27423 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19901 + - 19902 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 26943 components: - type: Transform - pos: 33.5,-78.5 + pos: -9.5,7.5 parent: 2 - - uid: 27424 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 26944 components: - type: Transform - pos: -67.5,-18.5 + pos: 50.5,16.5 parent: 2 - - uid: 27425 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26945 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedical + entities: + - uid: 15584 components: - type: Transform - pos: 102.5,-53.5 + pos: -19.5,10.5 parent: 2 - - uid: 27426 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15585 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15805 components: - type: Transform - pos: -57.5,-68.5 + pos: -51.5,-18.5 parent: 2 - - uid: 27427 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15806 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicalFilled + entities: + - uid: 26946 components: - type: Transform - pos: 43.5,-62.5 + pos: -50.5,-8.5 parent: 2 - - uid: 27428 + - uid: 26947 components: - type: Transform - pos: -41.5,-123.5 + pos: -50.5,-9.5 parent: 2 - - uid: 27429 + - uid: 26948 components: - type: Transform - pos: -57.5,5.5 + pos: -50.5,-10.5 parent: 2 - - uid: 27430 + - uid: 26949 components: - type: Transform - pos: -68.5,-4.5 + pos: -47.5,-40.5 parent: 2 - - uid: 27431 +- proto: LockerMedicine + entities: + - uid: 2513 components: - type: Transform - pos: -67.5,-4.5 + pos: -19.5,12.5 parent: 2 - - uid: 27432 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2514 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicineFilled + entities: + - uid: 15813 components: - type: Transform - pos: -54.5,-97.5 + pos: -47.5,-11.5 parent: 2 - - uid: 27433 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15814 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26950 components: - type: Transform - pos: -79.5,-1.5 + pos: -51.5,-17.5 parent: 2 - - uid: 27434 + - uid: 26951 components: - type: Transform - pos: -72.5,-24.5 + pos: -64.5,-23.5 parent: 2 - - uid: 27435 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 26952 components: - type: Transform - pos: 58.5,-82.5 + pos: -48.5,-11.5 parent: 2 - - uid: 27436 + - uid: 26953 components: - type: Transform - pos: 55.5,-21.5 + pos: -59.5,-25.5 parent: 2 -- proto: OxygenTankFilled - entities: - - uid: 118 - components: - - type: Transform - parent: 115 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2489 - components: - - type: Transform - parent: 2475 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15681 - components: - - type: Transform - parent: 15673 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15682 - components: - - type: Transform - parent: 15673 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15699 - components: - - type: Transform - parent: 15695 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41109 - components: - - type: Transform - parent: 41103 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41116 - components: - - type: Transform - parent: 41110 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41123 - components: - - type: Transform - parent: 41117 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41130 - components: - - type: Transform - parent: 41124 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41137 - components: - - type: Transform - parent: 41131 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41143 - components: - - type: Transform - parent: 41138 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PaintingAmogusTriptych +- proto: LockerMime entities: - - uid: 27437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,8.5 - parent: 2 - - uid: 27438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-66.5 - parent: 2 - - uid: 27439 + - uid: 15625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-42.5 + pos: 34.5,-15.5 parent: 2 - - uid: 41845 - components: - - type: Transform - pos: 7.5,2.5 - parent: 41669 -- proto: PaintingCafeTerraceAtNight + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15628 + - 15630 + - 15631 + - 15627 + - 15626 + - 15629 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerParamedicFilled entities: - - uid: 27440 + - uid: 26954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-40.5 + pos: -51.5,-12.5 parent: 2 -- proto: PaintingEmpty + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerQuarterMasterFilled entities: - - uid: 27441 + - uid: 26955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-41.5 + pos: -0.5,-98.5 parent: 2 -- proto: PaintingHelloWorld + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerRepresentative entities: - - uid: 27442 + - uid: 1785 components: - type: Transform - pos: 17.5,-38.5 + anchored: True + pos: -14.5,10.5 parent: 2 -- proto: PaintingMonkey - entities: - - uid: 27443 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1788 + - 1787 + - 1789 + - 1790 + - 1786 + - 1792 + - 1791 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Pullable + prevFixedRotation: True + - uid: 41096 components: - type: Transform - pos: 22.473017,10.19018 - parent: 2 - - uid: 27444 + pos: -5.5,-4.5 + parent: 40828 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 41098 + - 41102 + - 41100 + - 41097 + - 41101 + - 41099 + - 41611 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerResearchDirectorFilled + entities: + - uid: 1345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-40.5 + pos: -35.5,-67.5 parent: 2 -- proto: PaintingMoony + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerSalvageSpecialistFilled entities: - - uid: 27445 + - uid: 26956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-38.5 + pos: -4.5,-89.5 parent: 2 -- proto: PaintingNightHawks - entities: - - uid: 27446 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 26958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-40.5 + pos: -4.5,-90.5 parent: 2 -- proto: PaintingOldGuitarist - entities: - - uid: 27447 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 26960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-42.5 + pos: -4.5,-91.5 parent: 2 -- proto: PaintingOlympia + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerScienceFilled entities: - - uid: 27448 + - uid: 15632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-40.5 + pos: -41.5,-77.5 parent: 2 -- proto: PaintingPersistenceOfMemory - entities: - - uid: 27449 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15633 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26962 components: - type: Transform - pos: 17.5,-40.5 + pos: -46.5,-83.5 parent: 2 -- proto: PaintingPrayerHands - entities: - - uid: 27450 + - uid: 26963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-62.5 + pos: -41.5,-76.5 parent: 2 - - uid: 27451 + - uid: 26964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-40.5 + pos: -41.5,-57.5 parent: 2 -- proto: PaintingRedBlueYellow +- proto: LockerSecurity entities: - - uid: 27452 + - uid: 15484 components: + - type: MetaData + name: шкаф пилота - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-38.5 + pos: 59.5,15.5 parent: 2 -- proto: PaintingSadClown - entities: - - uid: 27453 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14835 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15491 + - 15489 + - 15493 + - 15492 + - 15487 + - 15490 + - 15485 + - 15494 + - 15488 + - 15486 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Pullable + prevFixedRotation: True + - uid: 26965 components: - type: Transform - pos: 38.5,-14.5 + pos: -70.5,-50.5 parent: 2 - - uid: 27454 + - uid: 26966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-38.5 + pos: -76.5,-50.5 parent: 2 -- proto: PaintingSaturn - entities: - - uid: 27455 + - uid: 26967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-66.5 + pos: -53.5,11.5 parent: 2 - - uid: 27456 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26968 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSecurityFilled + entities: + - uid: 26969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-42.5 + pos: 65.5,3.5 parent: 2 -- proto: PaintingSkeletonBoof - entities: - - uid: 27457 + - uid: 26970 components: - type: Transform - pos: 70.5,-46.5 + pos: 65.5,5.5 parent: 2 - - uid: 27458 + - uid: 26971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-42.5 + pos: 64.5,5.5 parent: 2 - - uid: 27459 + - uid: 26972 components: - type: Transform - pos: 18.5,15.5 + pos: 62.5,3.5 parent: 2 -- proto: PaintingSkeletonCigarette - entities: - - uid: 27460 + - uid: 26973 components: - type: Transform - pos: 65.5,-47.5 + pos: 62.5,5.5 parent: 2 - - uid: 27461 + - uid: 26974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-39.5 + pos: 63.5,5.5 parent: 2 - - uid: 27462 + - uid: 26975 components: - type: Transform - pos: -43.5,-21.5 + pos: 63.5,3.5 parent: 2 - - uid: 27463 + - uid: 26976 components: - type: Transform - pos: -33.5,-29.5 + pos: 64.5,3.5 parent: 2 - - uid: 27464 + - uid: 26977 components: - type: Transform - pos: -41.5,-51.5 + pos: 75.5,-26.5 parent: 2 - - uid: 27465 + - uid: 26978 components: - type: Transform - pos: -68.5,-70.5 + pos: -2.5,-83.5 parent: 2 - - uid: 27466 + - uid: 26979 components: - type: Transform - pos: 38.5,1.5 + pos: -47.5,-51.5 parent: 2 - - uid: 27467 + - uid: 26980 components: - type: Transform - pos: 39.5,11.5 + pos: -46.5,-34.5 parent: 2 -- proto: PaintingSleepingGypsy +- proto: LockerSteel entities: - - uid: 27468 + - uid: 10147 components: + - type: MetaData + name: шкаф шеф-повара - type: Transform - pos: 25.5,5.5 + pos: 29.5,16.5 parent: 2 - - uid: 27469 + - type: AccessReader + access: + - - Kitchen + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10624 + - 10625 + - 10626 + - 10627 + - 10628 + - 11518 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-42.5 + pos: 15.5,-21.5 parent: 2 -- proto: PaintingTheGreatWave + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15480 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWallMedical entities: - - uid: 27470 + - uid: 40860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 2 -- proto: PaintingTheKiss + rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 40828 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 40861 + - 40862 + - 40863 +- proto: LockerWallMedicalFilled entities: - - uid: 27471 + - uid: 26981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-40.5 + rot: 3.141592653589793 rad + pos: -52.5,-50.5 parent: 2 -- proto: PaintingTheScream + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26982 + - uid: 41840 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 41669 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 42092 + - 42091 + - 42083 + - 42084 + - 42085 + - 42086 + - 42087 + - 42088 + - 42089 + - 42090 +- proto: LockerWardenFilled entities: - - uid: 27472 + - uid: 26983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-38.5 + pos: 53.5,-21.5 parent: 2 -- proto: PaintingTheSonOfMan +- proto: LockerWeldingSuppliesFilled entities: - - uid: 27473 + - uid: 26984 components: - type: Transform - pos: 17.5,-42.5 + pos: 81.5,-66.5 parent: 2 -- proto: PaladinCircuitBoard - entities: - - uid: 27474 + - uid: 26985 components: - type: Transform - pos: 16.541878,22.5946 + pos: -38.5,-112.5 parent: 2 -- proto: Paper - entities: - - uid: 18 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 26986 components: - - type: MetaData - name: аварийная инструкция - type: Transform - pos: 57.496586,-76.37818 + pos: 37.5,30.5 parent: 2 - - type: Paper - stampState: paper_stamp-ce - stampedBy: - - stampedColor: '#FF9900FF' - stampedName: Департамент Архитектуры Станций - content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - TableLayer - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 19 - - uid: 21 + - uid: 26987 components: - - type: MetaData - name: аварийная инструкция - type: Transform - parent: 20 - - type: Paper - stampState: paper_stamp-ce - stampedBy: - - stampedColor: '#FF9900FF' - stampedName: Департамент Архитектуры Станций - content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - TableLayer - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 22 - - type: InsideEntityStorage - - uid: 26 + pos: 36.5,33.5 + parent: 2 + - uid: 26988 components: - - type: MetaData - name: аварийная инструкция - type: Transform - parent: 25 - - type: Paper - stampState: paper_stamp-ce - stampedBy: - - stampedColor: '#FF9900FF' - stampedName: Департамент Архитектуры Станций - content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - TableLayer - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 27 - - type: InsideEntityStorage - - uid: 31 + pos: -61.5,-18.5 + parent: 2 +- proto: Log + entities: + - uid: 26989 components: - - type: MetaData - name: аварийная инструкция - type: Transform - parent: 30 - - type: Paper - stampState: paper_stamp-ce - stampedBy: - - stampedColor: '#FF9900FF' - stampedName: Департамент Архитектуры Станций - content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - TableLayer - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 32 - - type: InsideEntityStorage - - uid: 44 + pos: -80.94435,-17.299232 + parent: 2 + - uid: 26990 components: - type: Transform - parent: 35 - - type: Paper - stampState: paper_stamp-psychologist - stampedBy: - - stampedColor: '#0082AEFF' - stampedName: stamp-component-stamped-name-psychologist - content: "Медикаментозная терапия психических расстройств.\n\n \n Нарколепсия \n - эфедрин, дозировка 30 +диловен\n - дезоксиэфедрин - лучший выбор, дозировка 20 +диловен\n - этилоксиэфедрин, дозировка 10\n - дифенилметиламин, очень дорог, дозировка 5\n\nПриступы агрессии, обострения.\n \n - пакс - успокоительное, дозировка от 5\n - хлоральгидрат - снотворное, дозировка от 10\n - криптобиолин - дезориентирует больного\n\nПовреждения мозга\n \n - маннитол, действие до конца не изучено\n\nТревожность, дрожь, опьянение\n\n - псикодин, побочные эффекты в виде галлюцинаций\n - этилредоксразин - безопасный отрезвитель\n\nГаллюцинации\n\n - синаптизин, крайне токсичен, только с диловеном\n - галоперидол, также убирает дрожь, вызывает сонливость\n\nДепрессия, шизофрения\n\n - Импедризин, токсичен, только с диловеном\n - Космический мираж - безопасный галлюциноген\n - Счастье - вызывает повреждения мозга\n - ТГК - содержится в конопле\n - Токсин Майндбрекер, он же ЛСД. Действует дольше, чем мираж\n\n\n" - - type: Physics - canCollide: False - - uid: 26413 + pos: -81.25685,-17.189857 + parent: 2 + - uid: 26991 components: - type: Transform - parent: 26412 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >- - Отчёт об инциденте на станции Vasilisk. - - - Комиссия по расследованию инцидента собрала следующие сведения. - - - Неизвестный груз полученный при невыясненных обстоятельствах оказал влияние на разрабатываемый генетический проект, придав ему вирусные свойства. - - - Все сотрудники заражённые вирусом погибли спустя 6 дней после начала инцидента. Скоротечность и высокая контагиозность заболевания не позволила создать вакцину и оказать помощь зараженным сотрудникам. - - - Спустя 30 дней Опз эвакуировало своих сотрудников без признаков заражения и изолировало станцию Vasilisk. Операция по спасению станции экономически нецелесообразна из-за опасности распространения заражения и устаревшего типа конструкции станции Vasilisk. - - - Комиссия приняла решение законсервировать станцию на 50 лет с целью минимизации биологических угроз. По окончании этого периода, с учётом изменений в технологиях и биологической обстановке, станция будет передана корпорации NanoTrasen для дальнейшей оценки и возможного использования. - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 27382 + pos: -81.25685,-17.424232 + parent: 2 +- proto: LogicEmptyCircuit + entities: + - uid: 42324 components: - type: Transform - parent: 27381 - - type: Physics - canCollide: False - - uid: 27475 + pos: -17.040825,-53.69011 + parent: 2 +- proto: LogicGateAnd + entities: + - uid: 26992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.41554,-2.4617987 + pos: -9.303374,-51.572456 parent: 2 - - uid: 27476 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + range: 3000 + linkedPorts: + 31210: + - Output: Trigger + - type: WirelessNetworkConnection + range: 2000 + - uid: 42072 components: - type: Transform - pos: 41.25643,-26.35469 + pos: -4.5,-1.5 + parent: 40828 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 42075: + - Output: Trigger + 42073: + - Output: Open +- proto: LogicGateNor + entities: + - uid: 42333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.553448,-48.37683 parent: 2 - - uid: 27477 +- proto: LogicGateOr + entities: + - uid: 42334 components: - type: Transform - pos: 47.37211,-1.281286 + pos: -12.475323,-54.53308 parent: 2 - - uid: 27478 +- proto: LogicGateXnor + entities: + - uid: 42332 components: - - type: MetaData - desc: Поперхнись своими отрядами, товарищ гсб. - type: Transform rot: -1.5707963267948966 rad - pos: 55.678146,-4.968878 + pos: -18.349592,-47.32453 parent: 2 - - uid: 27479 +- proto: LogicGateXor + entities: + - uid: 42331 components: - type: Transform - pos: 47.87211,-1.437536 + rot: -1.5707963267948966 rad + pos: -18.552717,-47.496407 parent: 2 - - uid: 27480 +- proto: LogProbeCartridge + entities: + - uid: 1377 components: - type: Transform - rot: 1.3089969389957472 rad - pos: 51.06838,22.31607 + parent: 1372 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LootSpawnerArmory + entities: + - uid: 26994 + components: + - type: Transform + pos: 60.5,-19.5 parent: 2 - - uid: 27481 +- proto: LootSpawnerArmoryArmorOnly + entities: + - uid: 26993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.530025,10.26842 + pos: 65.5,-19.5 parent: 2 - - uid: 27482 + - uid: 42448 components: - type: Transform - pos: 55.550022,-0.45290518 + pos: 64.5,-11.5 parent: 2 - - uid: 27483 +- proto: LootSpawnerArmoryGunsOnly + entities: + - uid: 26995 components: - type: Transform - pos: 55.61256,-0.37478018 + pos: 62.5,-17.5 parent: 2 - - uid: 27484 + - uid: 26996 components: - type: Transform - pos: 41.193893,-26.432816 + pos: 65.5,-17.5 parent: 2 - - uid: 27485 +- proto: LootSpawnerCableCoil + entities: + - uid: 26997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5769,10.190295 + pos: 34.5,30.5 parent: 2 - - uid: 27486 + - uid: 33784 components: - type: Transform - rot: 0.22689280275926285 rad - pos: -58.3819,-20.471714 + pos: 86.5,-49.5 parent: 2 - - type: Paper - stampState: paper_stamp-clown - stampedBy: - - stampedColor: '#FF33CCFF' - stampedName: stamp-component-stamped-name-clown - content: >2- - - - Всем привет! Это клоун Бим-Бон!!! - - Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) - - Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. - - - Откуда у меня Оппорозидон и как я узнал его рецепт? - - Всё очень просто! - - [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] - - uid: 27487 +- proto: LootSpawnerContraband + entities: + - uid: 26998 components: - type: Transform - pos: -49.315723,-19.452253 + pos: 3.5,-95.5 parent: 2 - - uid: 27488 + - uid: 26999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.41583,-42.34834 + pos: -88.5,-0.5 parent: 2 - - uid: 27489 +- proto: LootSpawnerIndustrial + entities: + - uid: 15368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.21405667,27.590424 + pos: 87.5,-52.5 parent: 2 - - uid: 27490 + - uid: 27001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.4709132,24.587803 + pos: 104.5,-57.5 parent: 2 - - uid: 27491 + - uid: 27002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.6802645,9.632844 + pos: 53.5,-48.5 parent: 2 - - uid: 27492 + - uid: 27003 components: - type: Transform - pos: 5.809529,8.695344 + pos: 5.5,-46.5 parent: 2 - - uid: 27493 + - uid: 27004 components: - type: Transform - pos: -23.535517,6.577045 + pos: -10.5,-27.5 parent: 2 - - uid: 27494 + - uid: 27005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.80664,3.508832 + pos: 57.5,-49.5 parent: 2 - - uid: 27495 +- proto: LootSpawnerIndustrialFluff + entities: + - uid: 27006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.86914,3.508832 + pos: -11.5,-85.5 parent: 2 - - uid: 27496 + - uid: 27007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.916016,3.540082 + pos: 58.5,-49.5 parent: 2 - - uid: 27497 + - uid: 27533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.516285,6.8015428 + pos: 84.5,-55.5 parent: 2 - - uid: 27498 + - uid: 28667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.485035,12.529182 + pos: 86.5,-55.5 parent: 2 - - uid: 27499 +- proto: LootSpawnerMaterials + entities: + - uid: 6086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.43816,13.201057 + pos: 81.5,-48.5 parent: 2 - - uid: 27500 + - uid: 27008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.485035,13.263557 + pos: -42.5,-113.5 parent: 2 - - uid: 27501 + - uid: 27009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.575924,-83.39061 + pos: 70.5,-45.5 parent: 2 - - uid: 27502 + - uid: 27010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.482174,-83.45311 + pos: 31.5,23.5 parent: 2 - - uid: 27503 + - uid: 42370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.603973,-8.376126 + pos: 24.5,25.5 parent: 2 - - uid: 27504 +- proto: LootSpawnerMaterialsHighValue + entities: + - uid: 27011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.510223,-8.251126 + pos: 14.5,-48.5 parent: 2 - - uid: 27505 + - uid: 27012 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.44561,-37.415405 + pos: -5.5,-54.5 parent: 2 - - uid: 27506 +- proto: LootSpawnerMaterialsHighValueConstruction + entities: + - uid: 27013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.46271,-42.41084 + pos: -19.5,16.5 parent: 2 - - uid: 27507 + - uid: 27014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.45752,-38.36953 + pos: -82.5,-23.5 parent: 2 - - uid: 27508 + - uid: 27015 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.41436,-37.43103 + pos: 74.5,-50.5 parent: 2 - - uid: 27509 + - uid: 27016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.62509,-38.490505 + pos: -1.5,-51.5 parent: 2 - - uid: 27510 +- proto: LootSpawnerMaterialsSurplus + entities: + - uid: 17699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.638424,-83.32811 + pos: -69.5,-18.5 parent: 2 - - uid: 27511 + - uid: 27017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.482174,-82.54686 + pos: -32.5,-23.5 parent: 2 - - uid: 27512 + - uid: 27018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.1104269,-95.43045 + pos: 96.5,-49.5 parent: 2 - - uid: 27513 + - uid: 27019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.2041769,-95.36795 + pos: -46.5,-121.5 parent: 2 - - uid: 27514 + - uid: 27020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.551385,-81.485565 + pos: -52.5,-83.5 parent: 2 - - uid: 27515 + - uid: 27021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.457635,-81.454315 + pos: -63.5,-2.5 parent: 2 - - uid: 27516 + - uid: 27022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.332635,-81.391815 + pos: -39.5,-78.5 parent: 2 - - uid: 27517 + - uid: 27023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.89434,-96.27694 + pos: -39.5,-78.5 parent: 2 - - uid: 27518 + - uid: 27024 components: - type: Transform - pos: -32.284966,-94.65194 + pos: -66.5,-23.5 parent: 2 - - uid: 27519 + - uid: 27025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.434746,-38.567795 + pos: -78.5,-27.5 parent: 2 - - uid: 27520 + - uid: 27026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.372246,-38.505295 + pos: -57.5,-53.5 parent: 2 - - uid: 27521 + - uid: 27027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.0573277,8.666101 + pos: -57.5,-74.5 parent: 2 - - uid: 27522 + - uid: 27028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.0729527,8.666101 + pos: -56.5,-101.5 parent: 2 - - uid: 27523 + - uid: 42371 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.0729527,8.666101 + pos: -70.5,-18.5 parent: 2 - - uid: 27524 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 27029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.0729527,8.634851 + pos: -54.5,-7.5 parent: 2 - - uid: 27525 + - uid: 27030 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.1198277,8.603601 + pos: -57.5,-17.5 parent: 2 - - uid: 27526 + - uid: 27031 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.1042027,8.587976 + pos: -54.5,0.5 parent: 2 - - uid: 27527 + - uid: 27032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.1042027,8.603601 + pos: 20.5,-26.5 parent: 2 - - uid: 27528 + - uid: 27033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.1354527,8.603601 + pos: 3.5,-61.5 parent: 2 - - uid: 27529 + - uid: 27034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5504093,9.488227 + pos: 13.5,-48.5 parent: 2 - - uid: 27530 + - uid: 42367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.523256,-76.3491 + pos: 25.5,25.5 parent: 2 - - uid: 27531 +- proto: LootSpawnerMedicalMinor + entities: + - uid: 27035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.476381,-76.4116 + pos: -45.5,-2.5 parent: 2 - - uid: 27532 +- proto: LootSpawnerRandomCrateEngineering + entities: + - uid: 27036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.61689,-68.39358 + pos: -9.5,-46.5 parent: 2 - - uid: 27533 +- proto: LootSpawnerRandomCrateSecurity + entities: + - uid: 16266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.442852,21.544373 + pos: 8.5,-61.5 parent: 2 - - uid: 27534 +- proto: LootSpawnerSecurity + entities: + - uid: 39423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.58564,-68.44045 + rot: 3.141592653589793 rad + pos: 60.5,5.5 parent: 2 - - uid: 27535 +- proto: LootSpawnerSecurityBasic + entities: + - uid: 27037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.596252,-64.39053 + pos: -51.5,12.5 parent: 2 - - uid: 27536 + - uid: 39559 components: - type: Transform - pos: -66.5415,-76.349594 + pos: 49.5,23.5 parent: 2 - - uid: 27537 +- proto: MachineAnomalyGenerator + entities: + - uid: 27038 components: - type: Transform - pos: -66.61962,-76.42772 + pos: -49.5,-81.5 parent: 2 - - uid: 27538 +- proto: MachineAnomalyVessel + entities: + - uid: 27039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.496179,16.524227 + rot: 3.141592653589793 rad + pos: -48.5,-85.5 + parent: 2 + - uid: 27040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-85.5 parent: 2 + - uid: 27041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-85.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 27042 + components: + - type: Transform + pos: -48.5,-83.5 + parent: 2 + - uid: 27043 + components: + - type: Transform + pos: -49.5,-83.5 + parent: 2 + - uid: 27044 + components: + - type: Transform + pos: -50.5,-83.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 27045 + components: + - type: Transform + pos: -73.5,-77.5 + parent: 2 + - uid: 27046 + components: + - type: Transform + pos: -71.5,-73.5 + parent: 2 +- proto: MachineCentrifuge + entities: + - uid: 27047 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 27048 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 16588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,23.5 + parent: 2 + - uid: 23665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,24.5 + parent: 2 + - uid: 27049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 + - uid: 27050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 + - uid: 27051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 2 + - uid: 27052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + - uid: 27053 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 2 + - uid: 27054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 + - uid: 27055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 2 + - uid: 27056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 2 + - uid: 27057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 2 + - uid: 27058 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 2 + - uid: 27059 + components: + - type: Transform + pos: -38.5,-63.5 + parent: 2 + - uid: 27060 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 27061 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 2 + - uid: 27062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-33.5 + parent: 2 + - uid: 27063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.5,-57.5 + parent: 2 + - uid: 27064 + components: + - type: Transform + pos: -82.5,-9.5 + parent: 2 + - uid: 27065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,-69.5 + parent: 2 + - uid: 27066 + components: + - type: Transform + pos: 104.5,-68.5 + parent: 2 + - uid: 27067 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 27068 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 27069 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 + - uid: 27070 + components: + - type: Transform + pos: 11.5,-46.5 + parent: 2 + - uid: 27071 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 2 + - uid: 27072 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 32352 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - uid: 32377 + components: + - type: Transform + pos: 82.5,-47.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 27073 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 27074 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 +- proto: MagazineBoxAntiMateriel + entities: + - uid: 27075 + components: + - type: Transform + pos: 64.55751,-19.446735 + parent: 2 + - uid: 27076 + components: + - type: Transform + pos: 12.630977,-19.490175 + parent: 2 +- proto: MagazineBoxRifle + entities: + - uid: 40881 + components: + - type: Transform + parent: 40879 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineLightRifle + entities: + - uid: 27077 + components: + - type: Transform + pos: 63.522007,-19.514818 + parent: 2 + - uid: 27078 + components: + - type: Transform + pos: 63.640064,-19.507874 + parent: 2 + - uid: 41319 + components: + - type: Transform + parent: 41318 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41320 + components: + - type: Transform + parent: 41318 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineLightRifleMaxim + entities: + - uid: 27079 + components: + - type: Transform + pos: 8.505977,-22.47455 + parent: 2 +- proto: MagazinePistol + entities: + - uid: 16443 + components: + - type: Transform + parent: 26427 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolPractice + entities: + - uid: 27080 + components: + - type: Transform + pos: 61.458096,9.5217905 + parent: 2 + - uid: 27081 + components: + - type: Transform + pos: 61.708096,9.5842905 + parent: 2 +- proto: MagazineRifle + entities: + - uid: 40882 + components: + - type: Transform + parent: 40879 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40883 + components: + - type: Transform + parent: 40879 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagicDiceBag + entities: + - uid: 27082 + components: + - type: Transform + pos: -41.31845,-99.86085 + parent: 2 + - uid: 27083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.08166,-7.3699484 + parent: 2 +- proto: MailingUnit + entities: + - uid: 27085 + components: + - type: Transform + pos: -55.5,-89.5 + parent: 2 + - type: MailingUnit + tag: santa + - uid: 27086 + components: + - type: Transform + pos: -9.5,-81.5 + parent: 2 + - type: MailingUnit + tag: cargo + - uid: 27087 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - type: MailingUnit + tag: personal + - uid: 27088 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - type: MailingUnit + tag: RND + - uid: 27089 + components: + - type: Transform + pos: 48.5,-46.5 + parent: 2 + - type: MailingUnit + tag: engineers + - uid: 27090 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - type: MailingUnit + tag: med + - uid: 27091 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - type: MailingUnit + tag: security +- proto: MaintenanceFluffSpawner + entities: + - uid: 27092 + components: + - type: Transform + pos: 57.5,-46.5 + parent: 2 + - uid: 27093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-95.5 + parent: 2 + - uid: 27094 + components: + - type: Transform + pos: -39.5,-91.5 + parent: 2 + - uid: 27095 + components: + - type: Transform + pos: -63.5,-56.5 + parent: 2 + - uid: 27096 + components: + - type: Transform + pos: -60.5,-40.5 + parent: 2 + - uid: 27097 + components: + - type: Transform + pos: 76.5,-19.5 + parent: 2 + - uid: 27098 + components: + - type: Transform + pos: -57.5,-53.5 + parent: 2 + - uid: 27099 + components: + - type: Transform + pos: 76.5,-18.5 + parent: 2 + - uid: 27100 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 27101 + components: + - type: Transform + pos: 82.5,-15.5 + parent: 2 + - uid: 27102 + components: + - type: Transform + pos: 96.5,-50.5 + parent: 2 + - uid: 27104 + components: + - type: Transform + pos: -48.5,-120.5 + parent: 2 + - uid: 27105 + components: + - type: Transform + pos: 95.5,-48.5 + parent: 2 + - uid: 27106 + components: + - type: Transform + pos: 92.5,-49.5 + parent: 2 + - uid: 27107 + components: + - type: Transform + pos: -62.5,2.5 + parent: 2 + - uid: 27108 + components: + - type: Transform + pos: -60.5,1.5 + parent: 2 + - uid: 27109 + components: + - type: Transform + pos: -59.5,1.5 + parent: 2 + - uid: 27110 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 27111 + components: + - type: Transform + pos: -35.5,-107.5 + parent: 2 + - uid: 27112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-111.5 + parent: 2 + - uid: 27113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-109.5 + parent: 2 + - uid: 27114 + components: + - type: Transform + pos: -50.5,-114.5 + parent: 2 + - uid: 27115 + components: + - type: Transform + pos: -81.5,3.5 + parent: 2 + - uid: 27116 + components: + - type: Transform + pos: -74.5,-19.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 26476 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 + - uid: 27118 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - uid: 27119 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 27120 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 27121 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 27123 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 27124 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 + - uid: 27125 + components: + - type: Transform + pos: -67.5,-6.5 + parent: 2 + - uid: 27126 + components: + - type: Transform + pos: -67.5,-32.5 + parent: 2 + - uid: 27127 + components: + - type: Transform + pos: -61.5,-22.5 + parent: 2 + - uid: 27128 + components: + - type: Transform + pos: -63.5,-54.5 + parent: 2 + - uid: 27129 + components: + - type: Transform + pos: -49.5,-77.5 + parent: 2 + - uid: 27130 + components: + - type: Transform + pos: -48.5,-93.5 + parent: 2 + - uid: 27131 + components: + - type: Transform + pos: 35.5,-76.5 + parent: 2 + - uid: 27132 + components: + - type: Transform + pos: -27.5,17.5 + parent: 2 + - uid: 27133 + components: + - type: Transform + pos: 90.5,-49.5 + parent: 2 + - uid: 27134 + components: + - type: Transform + pos: -39.5,-120.5 + parent: 2 + - uid: 27135 + components: + - type: Transform + pos: -34.5,-119.5 + parent: 2 + - uid: 27136 + components: + - type: Transform + pos: 103.5,-44.5 + parent: 2 + - uid: 27137 + components: + - type: Transform + pos: -63.5,0.5 + parent: 2 + - uid: 27138 + components: + - type: Transform + pos: -41.5,-106.5 + parent: 2 + - uid: 27139 + components: + - type: Transform + pos: -83.5,-1.5 + parent: 2 + - uid: 27140 + components: + - type: Transform + pos: -84.5,-5.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 27144 + components: + - type: Transform + pos: -50.5,-75.5 + parent: 2 + - uid: 27145 + components: + - type: Transform + pos: 78.5,-44.5 + parent: 2 + - uid: 27146 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 27147 + components: + - type: Transform + pos: -42.5,-91.5 + parent: 2 + - uid: 27148 + components: + - type: Transform + pos: -68.5,-34.5 + parent: 2 + - uid: 27150 + components: + - type: Transform + pos: -37.5,-93.5 + parent: 2 + - uid: 27151 + components: + - type: Transform + pos: 71.5,-19.5 + parent: 2 + - uid: 27152 + components: + - type: Transform + pos: 104.5,-44.5 + parent: 2 + - uid: 27153 + components: + - type: Transform + pos: -39.5,-123.5 + parent: 2 + - uid: 27154 + components: + - type: Transform + pos: -43.5,-121.5 + parent: 2 + - uid: 27155 + components: + - type: Transform + pos: -50.5,-105.5 + parent: 2 + - uid: 27156 + components: + - type: Transform + pos: -85.5,-1.5 + parent: 2 + - uid: 27157 + components: + - type: Transform + pos: -73.5,-13.5 + parent: 2 + - uid: 27158 + components: + - type: Transform + pos: -79.5,2.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 27159 + components: + - type: Transform + pos: 43.5,17.5 + parent: 2 + - uid: 27160 + components: + - type: Transform + pos: -72.5,-32.5 + parent: 2 + - uid: 27161 + components: + - type: Transform + pos: 63.5,-53.5 + parent: 2 + - uid: 27162 + components: + - type: Transform + pos: -47.5,-77.5 + parent: 2 + - uid: 27163 + components: + - type: Transform + pos: -57.5,-54.5 + parent: 2 + - uid: 27164 + components: + - type: Transform + pos: 47.5,-29.5 + parent: 2 + - uid: 27165 + components: + - type: Transform + pos: 72.5,-19.5 + parent: 2 + - uid: 27166 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - uid: 27167 + components: + - type: Transform + pos: 96.5,-45.5 + parent: 2 + - uid: 27168 + components: + - type: Transform + pos: 92.5,-50.5 + parent: 2 + - uid: 27169 + components: + - type: Transform + pos: 106.5,-53.5 + parent: 2 + - uid: 27170 + components: + - type: Transform + pos: -66.5,6.5 + parent: 2 + - uid: 27171 + components: + - type: Transform + pos: -76.5,-31.5 + parent: 2 + - uid: 27172 + components: + - type: Transform + pos: -32.5,-110.5 + parent: 2 + - uid: 27173 + components: + - type: Transform + pos: -56.5,-107.5 + parent: 2 + - uid: 27174 + components: + - type: Transform + pos: -85.5,-3.5 + parent: 2 + - uid: 27175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-11.5 + parent: 2 + - uid: 27176 + components: + - type: Transform + pos: -83.5,-21.5 + parent: 2 +- proto: Mannequin + entities: + - uid: 15635 + components: + - type: Transform + pos: -38.5,-103.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15637 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15636 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 15639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-92.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 19762 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15640 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 15645 + components: + - type: Transform + pos: -40.5,-103.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15647 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15646 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 15660 + components: + - type: Transform + pos: -39.5,-103.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15662 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15661 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null +- proto: Matchstick + entities: + - uid: 42206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.45767,-2.7671726 + parent: 2 + - uid: 42207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.11392,-2.6734226 + parent: 2 +- proto: MatchstickSpent + entities: + - uid: 42203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.7233,-2.5484226 + parent: 2 +- proto: MaterialBones1 + entities: + - uid: 27177 + components: + - type: Transform + pos: 65.439674,-48.454266 + parent: 2 + - type: Stack + count: 7 + - uid: 27178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.65071,-47.4732 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 27179 + components: + - type: Transform + pos: -5.444281,8.628087 + parent: 2 + - uid: 27180 + components: + - type: Transform + pos: -53.596252,-18.574131 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 27181 + components: + - type: Transform + pos: -5.381781,8.612462 + parent: 2 +- proto: MaterialGunpowder + entities: + - uid: 27182 + components: + - type: Transform + pos: -57.47855,-91.2867 + parent: 2 + - uid: 27183 + components: + - type: Transform + pos: -57.41605,-91.14607 + parent: 2 +- proto: MaterialToothSharkminnow1 + entities: + - uid: 27184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.707739,-28.657364 + parent: 2 +- proto: MaterialToothSpaceCarp1 + entities: + - uid: 27185 + components: + - type: Transform + pos: 8.379614,-28.376114 + parent: 2 + - uid: 27186 + components: + - type: Transform + pos: 8.488989,-28.422989 + parent: 2 + - uid: 27187 + components: + - type: Transform + pos: 8.551489,-28.360489 + parent: 2 + - uid: 27188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.332739,-28.704239 + parent: 2 + - uid: 27189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.238989,-28.532364 + parent: 2 + - uid: 27190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.488989,-28.579239 + parent: 2 +- proto: MaterialWoodPlank + entities: + - uid: 27191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.53313,-101.38195 + parent: 2 +- proto: MaterialWoodPlank1 + entities: + - uid: 27192 + components: + - type: Transform + pos: -15.900841,-93.71019 + parent: 2 + - uid: 27193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.478966,-92.89769 + parent: 2 +- proto: MaterialWoodPlank10 + entities: + - uid: 27194 + components: + - type: Transform + pos: 37.507698,-71.3846 + parent: 2 +- proto: MatterBinStockPart + entities: + - uid: 27195 + components: + - type: Transform + pos: -87.5,-7.5 + parent: 2 + - uid: 27196 + components: + - type: Transform + pos: 95.5,-80.5 + parent: 2 +- proto: Mattress + entities: + - uid: 27197 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 27198 + components: + - type: Transform + pos: 48.5,9.5 + parent: 2 + - uid: 27199 + components: + - type: Transform + pos: -50.5,-75.5 + parent: 2 + - uid: 27200 + components: + - type: Transform + pos: -48.5,-75.5 + parent: 2 + - uid: 27201 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 27202 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 2 + - uid: 27203 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 27204 + components: + - type: Transform + pos: 67.5,-50.5 + parent: 2 + - uid: 27205 + components: + - type: Transform + pos: 68.5,-50.5 + parent: 2 + - uid: 27206 + components: + - type: Transform + pos: 75.5,1.5 + parent: 2 +- proto: MechEquipmentGrabber + entities: + - uid: 27207 + components: + - type: Transform + pos: -20.424871,-61.475033 + parent: 2 +- proto: MedalCase + entities: + - uid: 27208 + components: + - type: Transform + pos: 10.543274,15.729935 + parent: 2 +- proto: MedicalBed + entities: + - uid: 27209 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 2 + - uid: 27210 + components: + - type: Transform + pos: 82.5,-10.5 + parent: 2 + - uid: 27211 + components: + - type: Transform + pos: -44.5,-23.5 + parent: 2 + - uid: 27212 + components: + - type: Transform + pos: -44.5,-21.5 + parent: 2 + - uid: 27213 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 27214 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 27215 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 27216 + components: + - type: Transform + pos: -44.5,-22.5 + parent: 2 + - uid: 27217 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 2 + - uid: 41329 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 40828 + - uid: 41841 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 41669 +- proto: MedicalScanner + entities: + - uid: 27218 + components: + - type: Transform + pos: -59.5,-19.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 27219 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 2 +- proto: MedicatedSuture + entities: + - uid: 27221 + components: + - type: Transform + parent: 27220 + - type: Physics + canCollide: False +- proto: MedkitAdvancedFilled + entities: + - uid: 27227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.602462,13.537646 + parent: 2 + - uid: 27228 + components: + - type: Transform + pos: -1.4672513,-34.506245 + parent: 2 + - uid: 41330 + components: + - type: Transform + pos: -5.3487854,-10.439423 + parent: 40828 + - uid: 42095 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 41669 +- proto: MedkitBrute + entities: + - uid: 2520 + components: + - type: Transform + pos: -47.57859,-10.229208 + parent: 2 + - type: Storage + storedItems: + 2523: + position: 0,0 + _rotation: South + 2522: + position: 1,0 + _rotation: South + 2525: + position: 2,0 + _rotation: South + 2524: + position: 3,0 + _rotation: South + 2521: + position: 2,1 + _rotation: South + 2526: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2523 + - 2522 + - 2525 + - 2524 + - 2521 + - 2526 + - uid: 2527 + components: + - type: Transform + pos: -47.606533,-10.1642065 + parent: 2 + - type: Storage + storedItems: + 2530: + position: 0,0 + _rotation: South + 2529: + position: 1,0 + _rotation: South + 2532: + position: 2,0 + _rotation: South + 2531: + position: 3,0 + _rotation: South + 2528: + position: 2,1 + _rotation: South + 2533: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2530 + - 2529 + - 2532 + - 2531 + - 2528 + - 2533 + - uid: 2534 + components: + - type: Transform + pos: -47.531715,-10.369833 + parent: 2 + - type: Storage + storedItems: + 2537: + position: 0,0 + _rotation: South + 2536: + position: 1,0 + _rotation: South + 2539: + position: 2,0 + _rotation: South + 2538: + position: 3,0 + _rotation: South + 2535: + position: 2,1 + _rotation: South + 2540: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2537 + - 2536 + - 2539 + - 2538 + - 2540 + - 2535 +- proto: MedkitBruteFilled + entities: + - uid: 27229 + components: + - type: Transform + pos: 64.508545,-2.5347085 + parent: 2 +- proto: MedkitBurn + entities: + - uid: 2571 + components: + - type: Transform + pos: -48.32859,-9.275049 + parent: 2 + - type: Storage + storedItems: + 2573: + position: 0,0 + _rotation: South + 2574: + position: 1,0 + _rotation: South + 2576: + position: 2,0 + _rotation: South + 2575: + position: 3,0 + _rotation: South + 2572: + position: 2,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2573 + - 2574 + - 2576 + - 2575 + - 2572 + - uid: 2577 + components: + - type: Transform + pos: -48.38057,-9.275344 + parent: 2 + - type: Storage + storedItems: + 2579: + position: 0,0 + _rotation: South + 2580: + position: 1,0 + _rotation: South + 2582: + position: 2,0 + _rotation: South + 2581: + position: 3,0 + _rotation: South + 2578: + position: 2,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2579 + - 2580 + - 2582 + - 2581 + - 2578 + - uid: 2583 + components: + - type: Transform + pos: -48.364944,-9.431594 + parent: 2 + - type: Storage + storedItems: + 2585: + position: 0,0 + _rotation: South + 2586: + position: 1,0 + _rotation: South + 2588: + position: 2,0 + _rotation: South + 2587: + position: 3,0 + _rotation: South + 2584: + position: 2,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2585 + - 2586 + - 2588 + - 2587 + - 2584 +- proto: MedkitBurnFilled + entities: + - uid: 15293 + components: + - type: Transform + parent: 15292 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27230 + components: + - type: Transform + pos: 64.508545,-2.2742918 + parent: 2 + - uid: 27231 + components: + - type: Transform + pos: 52.51172,-76.45728 + parent: 2 +- proto: MedkitCombat + entities: + - uid: 27220 + components: + - type: Transform + pos: -55.467686,-12.512793 + parent: 2 + - type: Storage + storedItems: + 27221: + position: 0,0 + _rotation: East + 27224: + position: 2,0 + _rotation: North + 27222: + position: 1,1 + _rotation: South + 27223: + position: 3,1 + _rotation: South + 27225: + position: 3,0 + _rotation: South + 27226: + position: 0,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 27221 + - 27224 + - 27222 + - 27223 + - 27225 + - 27226 +- proto: MedkitCombatFilled + entities: + - uid: 2486 + components: + - type: Transform + parent: 2475 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41331 + components: + - type: Transform + pos: -5.570999,-10.550507 + parent: 40828 + - uid: 41842 + components: + - type: Transform + pos: 2.5,-1.8 + parent: 41669 +- proto: MedkitFilled + entities: + - uid: 16228 + components: + - type: Transform + parent: 16226 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27232 + components: + - type: Transform + pos: 80.451324,-9.476563 + parent: 2 + - uid: 27233 + components: + - type: Transform + pos: 64.508545,-3.0347085 + parent: 2 + - uid: 27234 + components: + - type: Transform + pos: -44.483433,-19.51846 + parent: 2 + - uid: 27235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.6781487,19.653606 + parent: 2 + - uid: 27236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.481255,-15.342557 + parent: 2 + - uid: 27237 + components: + - type: MetaData + desc: OneYa + - type: Transform + rot: 3.141592653589793 rad + pos: -17.520306,-81.37365 + parent: 2 + - uid: 27238 + components: + - type: Transform + pos: -64.40231,-50.379948 + parent: 2 + - uid: 27239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.504303,-37.26448 + parent: 2 + - uid: 27240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.518667,-99.40709 + parent: 2 + - uid: 27241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.546227,-107.30916 + parent: 2 +- proto: MedkitO2 + entities: + - uid: 68 + components: + - type: Transform + pos: -47.656715,-9.323641 + parent: 2 + - type: Storage + storedItems: + 69: + position: 0,0 + _rotation: South + 72: + position: 1,0 + _rotation: South + 74: + position: 1,1 + _rotation: South + 73: + position: 2,0 + _rotation: South + 75: + position: 3,0 + _rotation: South + 71: + position: 2,1 + _rotation: South + 76: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 69 + - 72 + - 74 + - 73 + - 75 + - 71 + - 76 + - uid: 77 + components: + - type: Transform + pos: -47.594215,-9.433016 + parent: 2 + - type: Storage + storedItems: + 78: + position: 0,0 + _rotation: South + 81: + position: 1,0 + _rotation: South + 83: + position: 1,1 + _rotation: South + 82: + position: 2,0 + _rotation: South + 84: + position: 3,0 + _rotation: South + 80: + position: 2,1 + _rotation: South + 85: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 78 + - 81 + - 83 + - 82 + - 84 + - 80 + - 85 + - uid: 86 + components: + - type: Transform + pos: -47.594215,-9.542391 + parent: 2 + - type: Storage + storedItems: + 87: + position: 0,0 + _rotation: South + 90: + position: 1,0 + _rotation: South + 92: + position: 1,1 + _rotation: South + 91: + position: 2,0 + _rotation: South + 93: + position: 3,0 + _rotation: South + 89: + position: 2,1 + _rotation: South + 94: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 87 + - 90 + - 92 + - 91 + - 93 + - 89 + - 94 +- proto: MedkitOxygenFilled + entities: + - uid: 27242 + components: + - type: Transform + pos: 64.508545,-2.7847085 + parent: 2 + - uid: 27243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.512764,-24.27153 + parent: 2 + - uid: 27244 + components: + - type: Transform + pos: -64.56355,-50.473698 + parent: 2 + - uid: 41332 + components: + - type: Transform + pos: -5.5953827,-10.361389 + parent: 40828 +- proto: MedkitRadiationFilled + entities: + - uid: 27245 + components: + - type: Transform + pos: 64.53833,-3.428235 + parent: 2 + - uid: 27246 + components: + - type: Transform + pos: 63.913116,-56.417984 + parent: 2 + - uid: 27247 + components: + - type: Transform + pos: -48.35817,-8.6096945 + parent: 2 + - uid: 41843 + components: + - type: Transform + pos: 2.5,-2.1 + parent: 41669 +- proto: MedkitToxinFilled + entities: + - uid: 27248 + components: + - type: Transform + pos: 80.5607,-9.210938 + parent: 2 + - uid: 27249 + components: + - type: Transform + pos: 64.491455,-3.16261 + parent: 2 + - uid: 27250 + components: + - type: Transform + pos: -47.63942,-8.6721945 + parent: 2 + - uid: 27251 + components: + - type: Transform + pos: -47.592545,-8.5628195 + parent: 2 + - uid: 27252 + components: + - type: Transform + pos: -47.54567,-8.4690695 + parent: 2 + - uid: 27253 + components: + - type: Transform + pos: -53.513786,-55.384033 + parent: 2 + - uid: 41844 + components: + - type: Transform + pos: 2.5,-2.4 + parent: 41669 +- proto: MedTekCartridge + entities: + - uid: 1378 + components: + - type: Transform + parent: 1372 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MetalFoamGrenade + entities: + - uid: 27254 + components: + - type: Transform + pos: 52.980667,-71.355354 + parent: 2 + - uid: 27255 + components: + - type: Transform + pos: 53.105667,-71.292854 + parent: 2 + - uid: 41697 + components: + - type: Transform + parent: 41690 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41698 + components: + - type: Transform + parent: 41690 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41699 + components: + - type: Transform + parent: 41690 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41700 + components: + - type: Transform + parent: 41690 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MicroManipulatorStockPart + entities: + - uid: 42443 + components: + - type: Transform + pos: -38.480362,-49.05685 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 27256 + components: + - type: Transform + pos: -20.323889,-92.41741 + parent: 2 + - uid: 27257 + components: + - type: Transform + pos: 35.515884,-9.537717 + parent: 2 +- proto: Milkalyzer + entities: + - uid: 27258 + components: + - type: Transform + pos: -20.588402,-21.946007 + parent: 2 +- proto: MindShieldImplanter + entities: + - uid: 2487 + components: + - type: MetaData + name: Щит разума + - type: Transform + parent: 2475 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MineralScanner + entities: + - uid: 27259 + components: + - type: Transform + pos: 15.396231,-29.394201 + parent: 2 + - uid: 27260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.535699,-95.944046 + parent: 2 +- proto: MinimoogInstrument + entities: + - uid: 27261 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 +- proto: MiningDrill + entities: + - uid: 27262 + components: + - type: Transform + pos: -2.4762564,17.41959 + parent: 2 +- proto: MiningWindow + entities: + - uid: 27263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-54.5 + parent: 2 + - uid: 27264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-53.5 + parent: 2 + - uid: 27265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-54.5 + parent: 2 + - uid: 27266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-53.5 + parent: 2 +- proto: MiniSyringe + entities: + - uid: 27267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.40493,-6.401129 + parent: 2 + - uid: 27268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.40493,-6.479254 + parent: 2 + - uid: 27269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.40493,-6.541754 + parent: 2 + - uid: 27270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.40493,-6.635504 + parent: 2 +- proto: Mirror + entities: + - uid: 27271 + components: + - type: MetaData + name: зеркальце + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -14.092231,-27.466223 + parent: 2 + - type: Item + inhandVisuals: {} + - uid: 27272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-38.5 + parent: 2 + - uid: 27273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-37.5 + parent: 2 + - uid: 27274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-36.5 + parent: 2 + - uid: 27275 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - uid: 27276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-94.5 + parent: 2 + - uid: 27277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-93.5 + parent: 2 + - uid: 27278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-92.5 + parent: 2 + - uid: 27279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-4.5 + parent: 2 + - uid: 27280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-76.5 + parent: 2 + - uid: 27281 + components: + - type: Transform + pos: 75.5,-9.5 + parent: 2 + - uid: 27282 + components: + - type: Transform + pos: 74.5,-9.5 + parent: 2 + - uid: 27283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-76.5 + parent: 2 + - uid: 27284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-76.5 + parent: 2 + - uid: 27285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,26.5 + parent: 2 +- proto: MirrorShield + entities: + - uid: 27286 + components: + - type: Transform + pos: -84.48447,-27.56959 + parent: 2 +- proto: MMI + entities: + - uid: 27287 + components: + - type: Transform + pos: -17.351639,-54.3246 + parent: 2 + - uid: 27288 + components: + - type: Transform + pos: -34.551216,-55.460392 + parent: 2 +- proto: ModularGrenade + entities: + - uid: 27289 + components: + - type: Transform + pos: -38.675457,-32.34256 + parent: 2 + - uid: 27290 + components: + - type: Transform + pos: -68.930565,-62.6539 + parent: 2 + - uid: 27291 + components: + - type: Transform + pos: -68.680565,-62.3414 + parent: 2 + - uid: 27292 + components: + - type: Transform + pos: -68.618065,-62.56015 + parent: 2 + - uid: 27293 + components: + - type: Transform + pos: -63.558983,-33.00352 + parent: 2 + - uid: 27294 + components: + - type: Transform + pos: -63.308983,-31.425396 + parent: 2 + - uid: 27295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.48086,-31.566021 + parent: 2 + - uid: 27296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.655197,0.494864 + parent: 2 + - uid: 27297 + components: + - type: Transform + pos: -38.675457,-32.34256 + parent: 2 + - uid: 27298 + components: + - type: Transform + pos: -38.675457,-32.34256 + parent: 2 + - uid: 27299 + components: + - type: Transform + pos: -38.675457,-32.34256 + parent: 2 + - uid: 41333 + components: + - type: Transform + pos: -3.6557312,-13.251007 + parent: 40828 + - uid: 41334 + components: + - type: Transform + pos: -3.699524,-13.221802 + parent: 40828 + - uid: 41335 + components: + - type: Transform + pos: -3.728714,-13.411652 + parent: 40828 +- proto: ModularReceiver + entities: + - uid: 42103 + components: + - type: Transform + pos: -72.89517,-1.4859226 + parent: 2 +- proto: MopBucket + entities: + - uid: 17851 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + item_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 27468 +- proto: MopItem + entities: + - uid: 2554 + components: + - type: Transform + parent: 2552 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26657 + components: + - type: Transform + parent: 32193 + - type: Physics + canCollide: False + - uid: 27300 + components: + - type: Transform + pos: -68.5,-18.5 + parent: 2 + - uid: 27301 + components: + - type: Transform + pos: -6.5,-72.5 + parent: 2 + - uid: 27302 + components: + - type: Transform + pos: -57.5,-31.5 + parent: 2 +- proto: Morgue + entities: + - uid: 26473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-84.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26474 + - uid: 27303 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 27304 + components: + - type: Transform + pos: -55.5,-31.5 + parent: 2 + - uid: 27305 + components: + - type: Transform + pos: -54.5,-31.5 + parent: 2 + - uid: 27306 + components: + - type: Transform + pos: -53.5,-31.5 + parent: 2 + - uid: 27307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-73.5 + parent: 2 + - uid: 27308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-73.5 + parent: 2 + - uid: 27309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-85.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 27310 + components: + - type: Transform + pos: -55.5,-34.5 + parent: 2 + - uid: 27311 + components: + - type: Transform + pos: -54.5,-34.5 + parent: 2 + - uid: 27312 + components: + - type: Transform + pos: -53.5,-34.5 + parent: 2 + - uid: 27313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-36.5 + parent: 2 + - uid: 27314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-36.5 + parent: 2 + - uid: 27315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-36.5 + parent: 2 + - uid: 27316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-33.5 + parent: 2 + - uid: 27317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-33.5 + parent: 2 + - uid: 27318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-33.5 + parent: 2 +- proto: MouseTimedSpawner + entities: + - uid: 27319 + components: + - type: Transform + pos: -69.5,-21.5 + parent: 2 + - uid: 27320 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 27321 + components: + - type: Transform + pos: -49.5,-93.5 + parent: 2 + - uid: 27322 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 + - uid: 27323 + components: + - type: Transform + pos: -62.5,6.5 + parent: 2 + - uid: 27324 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 27325 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 +- proto: Mousetrap + entities: + - uid: 27326 + components: + - type: Transform + pos: 69.21401,-48.39836 + parent: 2 +- proto: Multitool + entities: + - uid: 27327 + components: + - type: Transform + pos: -68.37957,-75.43861 + parent: 2 + - uid: 27328 + components: + - type: Transform + pos: 41.344666,-82.48986 + parent: 2 + - uid: 27329 + components: + - type: Transform + pos: 51.68862,-46.36927 + parent: 2 + - uid: 27330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.455536,-63.403385 + parent: 2 + - uid: 27331 + components: + - type: Transform + pos: -39.22503,-49.412586 + parent: 2 + - uid: 27332 + components: + - type: Transform + pos: -42.469013,-112.45888 + parent: 2 + - uid: 27333 + components: + - type: Transform + pos: -87.5,-11.5 + parent: 2 + - uid: 27334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.52328396,-70.29429 + parent: 2 +- proto: MusicianPDA + entities: + - uid: 1379 + components: + - type: Transform + parent: 1372 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NetProbeCartridge + entities: + - uid: 1380 + components: + - type: Transform + parent: 1372 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27335 + components: + - type: Transform + pos: 41.489166,-57.470764 + parent: 2 + - uid: 27336 + components: + - type: Transform + pos: 51.41648,-51.498405 + parent: 2 +- proto: Nettle + entities: + - uid: 27337 + components: + - type: Transform + pos: -84.57718,-13.242086 + parent: 2 +- proto: NetworkConfigurator + entities: + - uid: 27338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.422333,-72.570885 + parent: 2 + - uid: 27339 + components: + - type: Transform + pos: 16.197271,5.6603804 + parent: 2 + - uid: 27340 + components: + - type: Transform + pos: 36.52398,-35.177963 + parent: 2 + - uid: 27341 + components: + - type: Transform + pos: 62.304565,-56.383835 + parent: 2 + - uid: 27342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.502976,-79.737305 + parent: 2 + - uid: 27343 + components: + - type: Transform + pos: -53.151768,-54.389374 + parent: 2 + - uid: 27344 + components: + - type: Transform + pos: 55.204376,-84.2287 + parent: 2 + - uid: 27345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 109.54755,-22.058807 + parent: 2 + - uid: 27346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.786607,23.587128 + parent: 2 + - uid: 27347 + components: + - type: Transform + pos: -69.426704,-67.41542 + parent: 2 +- proto: NewsReaderCartridge + entities: + - uid: 1381 + components: + - type: Transform + parent: 1372 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.03503,-76.444275 + parent: 2 +- proto: NewYearTree0 + entities: + - uid: 26424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.120228,-39.342506 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 27349 + components: + - type: Transform + pos: 31.5,-102.5 + parent: 2 + - uid: 27350 + components: + - type: Transform + pos: -48.5,-62.5 + parent: 2 + - uid: 27351 + components: + - type: Transform + pos: -48.5,-61.5 + parent: 2 + - uid: 27352 + components: + - type: Transform + pos: 37.5,-46.5 + parent: 2 + - uid: 27353 + components: + - type: Transform + pos: -46.5,-89.5 + parent: 2 + - uid: 27354 + components: + - type: Transform + pos: -59.5,-62.5 + parent: 2 + - uid: 27355 + components: + - type: Transform + pos: -61.5,-25.5 + parent: 2 + - uid: 27356 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 2 + - uid: 27357 + components: + - type: Transform + pos: 15.5,-78.5 + parent: 2 + - uid: 27359 + components: + - type: Transform + pos: -35.5,-122.5 + parent: 2 + - uid: 27360 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 27361 + components: + - type: Transform + pos: -68.5,-2.5 + parent: 2 + - uid: 27362 + components: + - type: Transform + pos: -67.5,-2.5 + parent: 2 + - uid: 27363 + components: + - type: Transform + pos: -54.5,-98.5 + parent: 2 + - uid: 27364 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 27365 + components: + - type: Transform + pos: -71.5,-24.5 + parent: 2 + - uid: 27367 + components: + - type: Transform + pos: 57.5,-80.5 + parent: 2 + - uid: 27368 + components: + - type: Transform + pos: 52.5,-27.5 + parent: 2 + - uid: 31201 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 +- proto: NitrogenTankFilled + entities: + - uid: 2488 + components: + - type: Transform + parent: 2475 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15680 + components: + - type: Transform + parent: 15673 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15698 + components: + - type: Transform + parent: 15695 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41108 + components: + - type: Transform + parent: 41103 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41115 + components: + - type: Transform + parent: 41110 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41122 + components: + - type: Transform + parent: 41117 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41129 + components: + - type: Transform + parent: 41124 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41136 + components: + - type: Transform + parent: 41131 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41142 + components: + - type: Transform + parent: 41138 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NitrousOxideCanister + entities: + - uid: 27369 + components: + - type: Transform + pos: 31.5,-96.5 + parent: 2 + - uid: 27370 + components: + - type: Transform + pos: -48.5,-60.5 + parent: 2 + - uid: 27371 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - uid: 27372 + components: + - type: Transform + anchored: True + pos: 77.5,6.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: NitrousOxideTankFilled + entities: + - uid: 27373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.479095,-19.584072 + parent: 2 + - uid: 27374 + components: + - type: Transform + pos: -24.456526,11.467024 + parent: 2 + - uid: 27375 + components: + - type: Transform + pos: -53.51677,-73.51513 + parent: 2 +- proto: NodeScanner + entities: + - uid: 27376 + components: + - type: Transform + pos: -39.482056,-61.35141 + parent: 2 +- proto: NotekeeperCartridge + entities: + - uid: 1382 + components: + - type: Transform + parent: 1372 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NoticeBoard + entities: + - uid: 27377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 2 + - uid: 27378 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 27379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-70.5 + parent: 2 + - uid: 27380 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 27381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-28.5 + parent: 2 + - type: Storage + storedItems: + 27382: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 27382 + - uid: 27383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-113.5 + parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 1348 + components: + - type: Transform + pos: 15.455914,18.587538 + parent: 2 +- proto: NTHandyFlag + entities: + - uid: 1790 + components: + - type: Transform + parent: 1785 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NuclearBomb + entities: + - uid: 27384 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 +- proto: NuclearBombKeg + entities: + - uid: 27385 + components: + - type: Transform + pos: -19.5,-103.5 + parent: 2 +- proto: NukeDiskFake + entities: + - uid: 27386 + components: + - type: Transform + pos: -9.2673025,-7.040256 + parent: 2 +- proto: NutimovCircuitBoard + entities: + - uid: 27387 + components: + - type: Transform + pos: 15.479378,22.5946 + parent: 2 +- proto: Ointment + entities: + - uid: 2573 + components: + - type: Transform + parent: 2571 + - type: Physics + canCollide: False + - uid: 2574 + components: + - type: Transform + parent: 2571 + - type: Physics + canCollide: False + - uid: 2579 + components: + - type: Transform + parent: 2577 + - type: Physics + canCollide: False + - uid: 2580 + components: + - type: Transform + parent: 2577 + - type: Physics + canCollide: False + - uid: 2585 + components: + - type: Transform + parent: 2583 + - type: Physics + canCollide: False + - uid: 2586 + components: + - type: Transform + parent: 2583 + - type: Physics + canCollide: False +- proto: OperatingTable + entities: + - uid: 27388 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 2 + - uid: 27389 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 2 + - uid: 27390 + components: + - type: Transform + pos: -34.5,-55.5 + parent: 2 + - uid: 27391 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 27392 + components: + - type: Transform + pos: -65.5,-24.5 + parent: 2 + - uid: 27393 + components: + - type: Transform + pos: -54.5,-74.5 + parent: 2 + - uid: 27394 + components: + - type: Transform + pos: -54.5,-40.5 + parent: 2 + - uid: 27395 + components: + - type: Transform + pos: -65.5,-50.5 + parent: 2 +- proto: OpporozidoneBeakerSmall + entities: + - uid: 27396 + components: + - type: Transform + pos: -34.679024,-22.510044 + parent: 2 +- proto: OreBag + entities: + - uid: 27398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.8257065,-96.37581 + parent: 2 + - uid: 27399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.497582,-96.39143 + parent: 2 +- proto: OreBox + entities: + - uid: 27400 + components: + - type: Transform + pos: -9.5,-93.5 + parent: 2 + - uid: 27401 + components: + - type: Transform + pos: -21.5,-61.5 + parent: 2 + - uid: 27402 + components: + - type: Transform + pos: -21.5,-62.5 + parent: 2 + - uid: 27403 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 27404 + components: + - type: Transform + pos: -1.5,-87.5 + parent: 2 +- proto: OrganArachnidHeart + entities: + - uid: 16214 + components: + - type: Transform + parent: 16213 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OrganArachnidTongue + entities: + - uid: 16215 + components: + - type: Transform + parent: 16213 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OrganDionaEyes + entities: + - uid: 27405 + components: + - type: Transform + pos: -57.303303,-39.026672 + parent: 2 +- proto: OrganHumanAppendix + entities: + - uid: 16216 + components: + - type: Transform + parent: 16213 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OrganHumanBrain + entities: + - uid: 27406 + components: + - type: Transform + pos: -4.0133886,-40.97168 + parent: 2 +- proto: OrganHumanEars + entities: + - uid: 16217 + components: + - type: Transform + parent: 16213 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OrganHumanEyes + entities: + - uid: 27407 + components: + - type: Transform + pos: -49.32534,-23.830582 + parent: 2 + - uid: 27408 + components: + - type: Transform + pos: -38.552746,-33.30968 + parent: 2 + - uid: 27409 + components: + - type: Transform + pos: -48.29725,-33.85604 + parent: 2 +- proto: OrganHumanHeart + entities: + - uid: 16218 + components: + - type: Transform + parent: 16213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27410 + components: + - type: Transform + pos: -83.15014,-26.559216 + parent: 2 +- proto: OrganHumanKidneys + entities: + - uid: 27411 + components: + - type: Transform + pos: -64.62623,-24.98179 + parent: 2 +- proto: OrganHumanLungs + entities: + - uid: 27412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.124985,-33.18395 + parent: 2 +- proto: OrganHumanTongue + entities: + - uid: 16219 + components: + - type: Transform + parent: 16213 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OxygenCanister + entities: + - uid: 27413 + components: + - type: Transform + pos: 31.5,-99.5 + parent: 2 + - uid: 27414 + components: + - type: Transform + pos: -46.5,-62.5 + parent: 2 + - uid: 27415 + components: + - type: Transform + pos: -46.5,-61.5 + parent: 2 + - uid: 27416 + components: + - type: Transform + pos: 37.5,-47.5 + parent: 2 + - uid: 27417 + components: + - type: Transform + pos: 38.5,-47.5 + parent: 2 + - uid: 27418 + components: + - type: Transform + pos: 34.5,-49.5 + parent: 2 + - uid: 27419 + components: + - type: Transform + pos: -46.5,-88.5 + parent: 2 + - uid: 27420 + components: + - type: Transform + pos: -67.5,-30.5 + parent: 2 + - uid: 27421 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 27422 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 27423 + components: + - type: Transform + pos: 33.5,-78.5 + parent: 2 + - uid: 27424 + components: + - type: Transform + pos: -67.5,-18.5 + parent: 2 + - uid: 27425 + components: + - type: Transform + pos: 102.5,-53.5 + parent: 2 + - uid: 27426 + components: + - type: Transform + pos: -57.5,-68.5 + parent: 2 + - uid: 27427 + components: + - type: Transform + pos: 43.5,-62.5 + parent: 2 + - uid: 27428 + components: + - type: Transform + pos: -41.5,-123.5 + parent: 2 + - uid: 27429 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 27430 + components: + - type: Transform + pos: -68.5,-4.5 + parent: 2 + - uid: 27431 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 27432 + components: + - type: Transform + pos: -54.5,-97.5 + parent: 2 + - uid: 27433 + components: + - type: Transform + pos: -79.5,-1.5 + parent: 2 + - uid: 27434 + components: + - type: Transform + pos: -72.5,-24.5 + parent: 2 + - uid: 27435 + components: + - type: Transform + pos: 58.5,-82.5 + parent: 2 + - uid: 27436 + components: + - type: Transform + pos: 55.5,-21.5 + parent: 2 + - uid: 38996 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 118 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2489 + components: + - type: Transform + parent: 2475 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15681 + components: + - type: Transform + parent: 15673 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15682 + components: + - type: Transform + parent: 15673 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15699 + components: + - type: Transform + parent: 15695 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41109 + components: + - type: Transform + parent: 41103 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41116 + components: + - type: Transform + parent: 41110 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41123 + components: + - type: Transform + parent: 41117 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41130 + components: + - type: Transform + parent: 41124 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41137 + components: + - type: Transform + parent: 41131 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41143 + components: + - type: Transform + parent: 41138 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PaintingAmogusTriptych + entities: + - uid: 27437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,8.5 + parent: 2 + - uid: 27438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-66.5 + parent: 2 + - uid: 27439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-42.5 + parent: 2 + - uid: 41845 + components: + - type: Transform + pos: 7.5,2.5 + parent: 41669 +- proto: PaintingCafeTerraceAtNight + entities: + - uid: 27440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 2 +- proto: PaintingEmpty + entities: + - uid: 27441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-41.5 + parent: 2 +- proto: PaintingHelloWorld + entities: + - uid: 27442 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 27443 + components: + - type: Transform + pos: 22.473017,10.19018 + parent: 2 + - uid: 27444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-40.5 + parent: 2 +- proto: PaintingMoony + entities: + - uid: 27445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 2 +- proto: PaintingNightHawks + entities: + - uid: 27446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-40.5 + parent: 2 +- proto: PaintingOldGuitarist + entities: + - uid: 27447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-42.5 + parent: 2 +- proto: PaintingOlympia + entities: + - uid: 27448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 2 +- proto: PaintingPersistenceOfMemory + entities: + - uid: 27449 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 2 +- proto: PaintingPrayerHands + entities: + - uid: 27450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-62.5 + parent: 2 + - uid: 27451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-40.5 + parent: 2 +- proto: PaintingRedBlueYellow + entities: + - uid: 27452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-38.5 + parent: 2 +- proto: PaintingSadClown + entities: + - uid: 27453 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 27454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 2 +- proto: PaintingSaturn + entities: + - uid: 27455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-66.5 + parent: 2 + - uid: 27456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-42.5 + parent: 2 +- proto: PaintingSkeletonBoof + entities: + - uid: 27457 + components: + - type: Transform + pos: 70.5,-46.5 + parent: 2 + - uid: 27458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-42.5 + parent: 2 + - uid: 27459 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 +- proto: PaintingSkeletonCigarette + entities: + - uid: 27460 + components: + - type: Transform + pos: 65.5,-47.5 + parent: 2 + - uid: 27461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-39.5 + parent: 2 + - uid: 27462 + components: + - type: Transform + pos: -43.5,-21.5 + parent: 2 + - uid: 27463 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 27464 + components: + - type: Transform + pos: -41.5,-51.5 + parent: 2 + - uid: 27465 + components: + - type: Transform + pos: -68.5,-70.5 + parent: 2 + - uid: 27466 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 27467 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 +- proto: PaintingSleepingGypsy + entities: + - uid: 27469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-42.5 + parent: 2 +- proto: PaintingTheGreatWave + entities: + - uid: 27470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-38.5 + parent: 2 +- proto: PaintingTheKiss + entities: + - uid: 27471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 2 +- proto: PaintingTheScream + entities: + - uid: 27472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-38.5 + parent: 2 +- proto: PaintingTheSonOfMan + entities: + - uid: 27473 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 2 +- proto: PaladinCircuitBoard + entities: + - uid: 27474 + components: + - type: Transform + pos: 16.541878,22.5946 + parent: 2 +- proto: Paper + entities: + - uid: 18 + components: + - type: MetaData + name: аварийная инструкция + - type: Transform + pos: 57.496586,-76.37818 + parent: 2 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedColor: '#FF9900FF' + stampedName: Департамент Архитектуры Станций + content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 19 + - uid: 21 + components: + - type: MetaData + name: аварийная инструкция + - type: Transform + parent: 20 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedColor: '#FF9900FF' + stampedName: Департамент Архитектуры Станций + content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 22 + - type: InsideEntityStorage + - uid: 26 + components: + - type: MetaData + name: аварийная инструкция + - type: Transform + parent: 25 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedColor: '#FF9900FF' + stampedName: Департамент Архитектуры Станций + content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 27 + - type: InsideEntityStorage + - uid: 31 + components: + - type: MetaData + name: аварийная инструкция + - type: Transform + parent: 30 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedColor: '#FF9900FF' + stampedName: Департамент Архитектуры Станций + content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 32 + - type: InsideEntityStorage + - uid: 44 + components: + - type: Transform + parent: 35 + - type: Paper + stampState: paper_stamp-psychologist + stampedBy: + - stampedColor: '#0082AEFF' + stampedName: stamp-component-stamped-name-psychologist + content: "Медикаментозная терапия психических расстройств.\n\n \n Нарколепсия \n - эфедрин, дозировка 30 +диловен\n - дезоксиэфедрин - лучший выбор, дозировка 20 +диловен\n - этилоксиэфедрин, дозировка 10\n - дифенилметиламин, очень дорог, дозировка 5\n\nПриступы агрессии, обострения.\n \n - пакс - успокоительное, дозировка от 5\n - хлоральгидрат - снотворное, дозировка от 10\n - криптобиолин - дезориентирует больного\n\nПовреждения мозга\n \n - маннитол, действие до конца не изучено\n\nТревожность, дрожь, опьянение\n\n - псикодин, побочные эффекты в виде галлюцинаций\n - этилредоксразин - безопасный отрезвитель\n\nГаллюцинации\n\n - синаптизин, крайне токсичен, только с диловеном\n - галоперидол, также убирает дрожь, вызывает сонливость\n\nДепрессия, шизофрения\n\n - Импедризин, токсичен, только с диловеном\n - Космический мираж - безопасный галлюциноген\n - Счастье - вызывает повреждения мозга\n - ТГК - содержится в конопле\n - Токсин Майндбрекер, он же ЛСД. Действует дольше, чем мираж\n\n\n" + - type: Physics + canCollide: False + - uid: 26413 + components: + - type: Transform + parent: 26412 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >- + Отчёт об инциденте на станции Vasilisk. + + + Комиссия по расследованию инцидента собрала следующие сведения. + + + Неизвестный груз полученный при невыясненных обстоятельствах оказал влияние на разрабатываемый генетический проект, придав ему вирусные свойства. + + + Все сотрудники заражённые вирусом погибли спустя 6 дней после начала инцидента. Скоротечность и высокая контагиозность заболевания не позволила создать вакцину и оказать помощь зараженным сотрудникам. + + + Спустя 30 дней Опз эвакуировало своих сотрудников без признаков заражения и изолировало станцию Vasilisk. Операция по спасению станции экономически нецелесообразна из-за опасности распространения заражения и устаревшего типа конструкции станции Vasilisk. + + + Комиссия приняла решение законсервировать станцию на 50 лет с целью минимизации биологических угроз. По окончании этого периода, с учётом изменений в технологиях и биологической обстановке, станция будет передана корпорации NanoTrasen для дальнейшей оценки и возможного использования. + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27382 + components: + - type: Transform + parent: 27381 + - type: Physics + canCollide: False + - uid: 27475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.41554,-2.4617987 + parent: 2 + - uid: 27476 + components: + - type: Transform + pos: 41.25643,-26.35469 + parent: 2 + - uid: 27477 + components: + - type: Transform + pos: 47.37211,-1.281286 + parent: 2 + - uid: 27478 + components: + - type: MetaData + desc: Поперхнись своими отрядами, товарищ гсб. + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.678146,-4.968878 + parent: 2 + - uid: 27479 + components: + - type: Transform + pos: 47.87211,-1.437536 + parent: 2 + - uid: 27480 + components: + - type: Transform + rot: 1.3089969389957472 rad + pos: 51.06838,22.31607 + parent: 2 + - uid: 27481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.530025,10.26842 + parent: 2 + - uid: 27482 + components: + - type: Transform + pos: 55.550022,-0.45290518 + parent: 2 + - uid: 27483 + components: + - type: Transform + pos: 55.61256,-0.37478018 + parent: 2 + - uid: 27484 + components: + - type: Transform + pos: 41.193893,-26.432816 + parent: 2 + - uid: 27485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5769,10.190295 + parent: 2 + - uid: 27486 + components: + - type: Transform + rot: 0.22689280275926285 rad + pos: -58.3819,-20.471714 + parent: 2 + - type: Paper + stampState: paper_stamp-clown + stampedBy: + - stampedColor: '#FF33CCFF' + stampedName: stamp-component-stamped-name-clown + content: >2- + + + Всем привет! Это клоун Бим-Бон!!! + + Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) + + Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. + + + Откуда у меня Оппорозидон и как я узнал его рецепт? + + Всё очень просто! + + [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] + - uid: 27487 + components: + - type: Transform + pos: -49.315723,-19.452253 + parent: 2 + - uid: 27488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.41583,-42.34834 + parent: 2 + - uid: 27489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.21405667,27.590424 + parent: 2 + - uid: 27490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.4709132,24.587803 + parent: 2 + - uid: 27491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.6802645,9.632844 + parent: 2 + - uid: 27492 + components: + - type: Transform + pos: 5.809529,8.695344 + parent: 2 + - uid: 27493 + components: + - type: Transform + pos: -23.535517,6.577045 + parent: 2 + - uid: 27494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.80664,3.508832 + parent: 2 + - uid: 27495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.86914,3.508832 + parent: 2 + - uid: 27496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.916016,3.540082 + parent: 2 + - uid: 27497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.516285,6.8015428 + parent: 2 + - uid: 27498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.485035,12.529182 + parent: 2 + - uid: 27499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.43816,13.201057 + parent: 2 + - uid: 27500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.485035,13.263557 + parent: 2 + - uid: 27501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.575924,-83.39061 + parent: 2 + - uid: 27502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.482174,-83.45311 + parent: 2 + - uid: 27503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.603973,-8.376126 + parent: 2 + - uid: 27504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.510223,-8.251126 + parent: 2 + - uid: 27505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.44561,-37.415405 + parent: 2 + - uid: 27506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.46271,-42.41084 + parent: 2 + - uid: 27507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.45752,-38.36953 + parent: 2 + - uid: 27508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.41436,-37.43103 + parent: 2 + - uid: 27509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.62509,-38.490505 + parent: 2 + - uid: 27510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.638424,-83.32811 + parent: 2 + - uid: 27511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.482174,-82.54686 + parent: 2 + - uid: 27512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.1104269,-95.43045 + parent: 2 + - uid: 27513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.2041769,-95.36795 + parent: 2 + - uid: 27514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.551385,-81.485565 + parent: 2 + - uid: 27515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.457635,-81.454315 + parent: 2 + - uid: 27516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.332635,-81.391815 + parent: 2 + - uid: 27517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.89434,-96.27694 + parent: 2 + - uid: 27518 + components: + - type: Transform + pos: -32.284966,-94.65194 + parent: 2 + - uid: 27519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.434746,-38.567795 + parent: 2 + - uid: 27520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.372246,-38.505295 + parent: 2 + - uid: 27521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.0573277,8.666101 + parent: 2 + - uid: 27522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.0729527,8.666101 + parent: 2 + - uid: 27523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.0729527,8.666101 + parent: 2 + - uid: 27524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.0729527,8.634851 + parent: 2 + - uid: 27525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.1198277,8.603601 + parent: 2 + - uid: 27526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.1042027,8.587976 + parent: 2 + - uid: 27527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.1042027,8.603601 + parent: 2 + - uid: 27528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.1354527,8.603601 + parent: 2 + - uid: 27529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5504093,9.488227 + parent: 2 + - uid: 27530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.523256,-76.3491 + parent: 2 + - uid: 27531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.476381,-76.4116 + parent: 2 + - uid: 27532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.61689,-68.39358 + parent: 2 + - uid: 27534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.58564,-68.44045 + parent: 2 + - uid: 27535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.596252,-64.39053 + parent: 2 + - uid: 27536 + components: + - type: Transform + pos: -66.5415,-76.349594 + parent: 2 + - uid: 27537 + components: + - type: Transform + pos: -66.61962,-76.42772 + parent: 2 + - uid: 27538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.496179,16.524227 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >- + [bold]Дата отправки:[/bold] + 18.03.3024 + [bold]Составитель документа:[/bold] + + [color=Red] Доулсон-Младший Кристофор[/color] + + [bold]Должность составителя:[/bold] + + [color=Red] Оператор ЦК[/color] + + ───────────────────────────────────────── + + [bold][italic] Приветствуем, уважаемый Капитан.[/italic][/bold] Информируем вас, что в вашем данном секторе присутствует станция следующего типа: [bold][italic]'Охранный пост ОБР'[/bold][/italic]. В случае [italic]чрезвычайной ситуации[/italic], в [bold]вашем кабинете[/bold] и [bold]кабинете Главы Службы Безопасности[/bold] имеются кнопки "вызова ОБР". Для того, чтобы [italic]Отряд Быстрого Реагирования[/italic] с данной станции среагировал на ваш вызов - вам необходимо вдвоём нажать на кнопки в ваших кабинетах. После активации каждой кнопки, оповещающая лампа над ней должна быть во включенном состоянии - обозначая передачу сигнала. Активировав обе кнопки в ваших кабинетах, вам остаётся ждать в течение 40-50 минут на прибытие ОБР. + + + И помните, вы находитесь в самом безопасном секторе космоса! Но всё же нам остаётся только надеться, что вы никогда не нажмёте эти кнопки. А у [italic]Отряда Быстрого Реагирования[/italic] не будет более важного вызова. + + Слава НТ! + + =================================================== + Подпись: Оператор ЦК, Доулсон-Младший + [italic]место для печатей:[/italic] + - uid: 27539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.50298,-39.66599 + parent: 2 + - uid: 27540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.45306,-39.61083 + parent: 2 + - uid: 27541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.562435,-39.751453 + parent: 2 + - uid: 27542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.597652,-0.4401635 + parent: 2 + - uid: 27543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.488277,-0.5182885 + parent: 2 + - uid: 27544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.394527,-0.5964135 + parent: 2 + - uid: 27545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5067,-8.324828 + parent: 2 + - uid: 27546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.53795,-8.340453 + parent: 2 + - uid: 27547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.53795,-8.387328 + parent: 2 + - uid: 27548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.42597,-48.33913 + parent: 2 + - uid: 27549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.47285,-48.417255 + parent: 2 + - uid: 27550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5041,-48.43288 + parent: 2 + - uid: 27551 + components: + - type: Transform + pos: -56.268597,-89.21048 + parent: 2 + - type: Paper + content: > + ХОЧУ КАНИСТРУ ФРЕЗОНА + - uid: 27552 + components: + - type: Transform + pos: -56.424847,-89.382355 + parent: 2 + - type: Paper + content: > + Дорогой дед мороз! Хочу чтобы на новый год ты не присылал нам больше бомб и пепла! Счастливого нового года! + - uid: 27553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.6053,-112.66493 + parent: 2 + - uid: 27554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.464676,-112.57118 + parent: 2 + - uid: 27555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.57405,-113.30556 + parent: 2 + - uid: 27556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.527176,-113.35243 + parent: 2 + - uid: 27557 + components: + - type: Transform + pos: -11.688484,-39.449905 + parent: 2 + - type: Paper + content: "Протокол 4415\nНовые образцы полученные без помощи Apox-6 стали покрываться язвами голубого цвета. Кожа стала приобретать синий оттенок. Генетический анализ показал инородные генетические последовательности. " + - uid: 27558 + components: + - type: Transform + pos: -5.426367,-29.630838 + parent: 2 + - type: Paper + content: >- + Протокол 4398 + + Образцы стали проявлять признаки агрессии. Возможно побочное действие использования технологии Apox-6. + - uid: 27559 + components: + - type: Transform + pos: 11.535598,-48.056534 + parent: 2 + - type: Paper + stampState: paper_stamp-hos + stampedBy: + - stampedColor: '#CC0000FF' + stampedName: DSE UEG + content: >2- + + Уважаемый капитан станции Vasilisk! Благодарим вас за ваши усилия по локализации биологической угрозы. К сожалению отправка отряда ради вашего спасения невозможна, в связи с высокой активностью организованных пиратских группировок в вашем секторе. + + + Примите наши извинения за доставленные неудобства. + - uid: 27560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4228978,-38.361145 + parent: 2 + - type: Paper + content: "Протокол 4416\r\nСотрудники отдела снабжения поступили в медицинский блок с обширными поражениями рук и посинением кожи. " + - uid: 27561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.7299113,-36.27495 + parent: 2 + - type: Paper + content: "Протокол 4432\nГенетические исследования были остановлены. Попытки уничтожить образцы не увенчались успехом. " + - uid: 27562 + components: + - type: Transform + pos: -19.534334,-29.354733 + parent: 2 + - type: Paper + content: >2+ + + + + + Пока моё убежище окружают эти отвратительные животные, капитан похоже спрятался в резервной рубке, вход в неё спрятан за шкафом в галерее, и они его не скоро найдут. + + + Все кроме меня и капитана потеряли свою человечность и теперь похожи на монстров. + + + Надежды на спасение нет... нас ждёт та же участь... + + - uid: 27563 + components: + - type: Transform + pos: 52.594917,-9.306356 + parent: 2 + - uid: 27564 + components: + - type: Transform + rot: 0.4188790204786391 rad + pos: 50.65171,20.885515 + parent: 2 + - uid: 27565 + components: + - type: Transform + rot: 2.8623399732707004 rad + pos: 52.199566,20.886168 + parent: 2 + - uid: 27566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.01984,10.520765 + parent: 2 + - uid: 27567 + components: + - type: Transform + parent: 39441 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27568 + components: + - type: Transform + pos: -34.366844,-22.718172 + parent: 2 + - type: Paper + content: >- + Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + + Действует на мертвых существ, чья температура тела не более 150K. + + + [head=2]Рецепт Оппорозидона[/head] + + + [head=3]Оппорозидон[/head] + + [color=#E333A7]▣[/color] плазма [2] + + [color=#B50EE8]▣[/color] когнизин [1] + + [color=#32CD32]▣[/color] доксарубиксадон [1] + + [italic]Нагреть выше 400K[/italic] + + ▣ оппорозидон [3] + + + [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + + [bullet]карпотоксин [1] + + [bullet]сидерлак [1] + + [bullet]ацетон [1] + + [italic]Смешать[/italic] + + [bullet]когнизин [1] + + + [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + + [bullet]криоксадон [1] + + [bullet]нестабильный мутаген [1] + + [italic]Смешать[/italic] + + [bullet]доксарубиксадон [2] + editingDisabled: True + - uid: 27569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.292738,-21.438 + parent: 2 + - type: Paper + content: > + Экспериментальный квантовый дестабилизационно-дислокационный транспондер телепортирует случайные вещи в радиусе 400 парсек на платформу перед вами. Требуется начать синхронизацию и послать калибровочный сигнал с резервного пульта. + + + Осторожно. Погрешность платформы перед вами около 500 метров. + - uid: 39422 + components: + - type: Transform + parent: 26910 + - type: Paper + content: >- + Рецепт пороха + + 1 уголь 1 сера 3 калия, нагреть + + Рецепт угля + + 1 пепел, 1 углерод + + Рецепт пластика + + 5 масла, 3 пепла, 2 серной кислоты, нагреть + - type: Physics + canCollide: False + - uid: 42109 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42110 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████[/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42111 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42112 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42113 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42114 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42115 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42116 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░████░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42117 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42118 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42119 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42120 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42121 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42122 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42123 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42124 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░████░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42125 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42126 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42127 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42128 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42129 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42130 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42131 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42132 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42133 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42134 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░████░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42135 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42136 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42137 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████[/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42138 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42139 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42140 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42141 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42142 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42143 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░████░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42144 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42108 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42146 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42147 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████[/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42148 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42149 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████[/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42150 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42151 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42152 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42153 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42154 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42155 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42156 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42157 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42158 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42159 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42160 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: >2 + + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░████░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42161 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██████░░░░░░░░░▒▒▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒████████████▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████▒▒░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42162 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42163 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42164 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42165 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42166 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42167 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42168 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42169 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42170 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42171 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42172 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░████░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42173 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░██████░░░░░░░░░░░░░██ + + ██░░░░████░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░██░░░░░░░░░░░░░████▒▒░░░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░░░████▒▒▒▒░░██░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░▒▒████████████░░░░░░░░░██ + + ██░░░░░░░░░░░░░░░████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░░░██████▒▒░░░░░░░░░░░░░░░░░██ + + ██░░░░░░░░░░░██████░░░░░░░░░░░░░░░░░██░░██ + + ██░░░░░░░░░██████░░░░░░░░░░░░░░░████░░░░██ + + ██░░░░░░░░░████░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42174 + components: + - type: MetaData + name: игральная карта + - type: Transform + parent: 42145 - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >- - [bold]Дата отправки:[/bold] - 18.03.3024 - [bold]Составитель документа:[/bold] + content: > + [color=#6f61ae]██████████████████████████████████████████ - [color=Red] Доулсон-Младший Кристофор[/color] + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ - [bold]Должность составителя:[/bold] + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ - [color=Red] Оператор ЦК[/color] + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ - ───────────────────────────────────────── + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ - [bold][italic] Приветствуем, уважаемый Капитан.[/italic][/bold] Информируем вас, что в вашем данном секторе присутствует станция следующего типа: [bold][italic]'Охранный пост ОБР'[/bold][/italic]. В случае [italic]чрезвычайной ситуации[/italic], в [bold]вашем кабинете[/bold] и [bold]кабинете Главы Службы Безопасности[/bold] имеются кнопки "вызова ОБР". Для того, чтобы [italic]Отряд Быстрого Реагирования[/italic] с данной станции среагировал на ваш вызов - вам необходимо вдвоём нажать на кнопки в ваших кабинетах. После активации каждой кнопки, оповещающая лампа над ней должна быть во включенном состоянии - обозначая передачу сигнала. Активировав обе кнопки в ваших кабинетах, вам остаётся ждать в течение 40-50 минут на прибытие ОБР. + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ - И помните, вы находитесь в самом безопасном секторе космоса! Но всё же нам остаётся только надеться, что вы никогда не нажмёте эти кнопки. А у [italic]Отряда Быстрого Реагирования[/italic] не будет более важного вызова. + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ - Слава НТ! + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ - =================================================== - Подпись: Оператор ЦК, Доулсон-Младший - [italic]место для печатей:[/italic] - - uid: 27539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.50298,-39.66599 - parent: 2 - - uid: 27540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.45306,-39.61083 - parent: 2 - - uid: 27541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.562435,-39.751453 - parent: 2 - - uid: 27542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.597652,-0.4401635 - parent: 2 - - uid: 27543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.488277,-0.5182885 - parent: 2 - - uid: 27544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.394527,-0.5964135 - parent: 2 - - uid: 27545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5067,-8.324828 - parent: 2 - - uid: 27546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.53795,-8.340453 - parent: 2 - - uid: 27547 + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42175 components: + - type: MetaData + name: игральная карта - type: Transform - rot: 3.141592653589793 rad - pos: -34.53795,-8.387328 - parent: 2 - - uid: 27548 + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42176 components: + - type: MetaData + name: игральная карта - type: Transform - rot: 1.5707963267948966 rad - pos: -68.42597,-48.33913 - parent: 2 - - uid: 27549 + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42177 components: + - type: MetaData + name: игральная карта - type: Transform - rot: 1.5707963267948966 rad - pos: -68.47285,-48.417255 - parent: 2 - - uid: 27550 + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42178 components: + - type: MetaData + name: игральная карта - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5041,-48.43288 - parent: 2 - - uid: 27551 + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42179 components: + - type: MetaData + name: игральная карта - type: Transform - pos: -56.268597,-89.21048 - parent: 2 + parent: 42145 - type: Paper content: > - ХОЧУ КАНИСТРУ ФРЕЗОНА - - uid: 27552 + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42180 components: + - type: MetaData + name: игральная карта - type: Transform - pos: -56.424847,-89.382355 - parent: 2 + parent: 42145 - type: Paper content: > - Дорогой дед мороз! Хочу чтобы на новый год ты не присылал нам больше бомб и пепла! Счастливого нового года! - - uid: 27553 + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42181 components: + - type: MetaData + name: игральная карта - type: Transform - rot: -1.5707963267948966 rad - pos: -30.6053,-112.66493 - parent: 2 - - uid: 27554 + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42182 components: + - type: MetaData + name: игральная карта - type: Transform - rot: -1.5707963267948966 rad - pos: -30.464676,-112.57118 - parent: 2 - - uid: 27555 + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42183 components: + - type: MetaData + name: игральная карта - type: Transform - rot: -1.5707963267948966 rad - pos: -28.57405,-113.30556 - parent: 2 - - uid: 27556 + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42184 components: + - type: MetaData + name: игральная карта - type: Transform - rot: -1.5707963267948966 rad - pos: -28.527176,-113.35243 - parent: 2 - - uid: 27557 + parent: 42145 + - type: Paper + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░████░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42185 components: + - type: MetaData + name: игральная карта - type: Transform - pos: -11.688484,-39.449905 - parent: 2 + parent: 42145 - type: Paper - content: "Протокол 4415\nНовые образцы полученные без помощи Apox-6 стали покрываться язвами голубого цвета. Кожа стала приобретать синий оттенок. Генетический анализ показал инородные генетические последовательности. " - - uid: 27558 + content: > + [color=#6f61ae]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░████░░░░░░░░░░░░░░░░░██ + + ██░░░░██░░░░░████▒▒████▒▒████░░░░░░░░░░░██ + + ██░░██░░██░░░████████████████░░░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░██████▒▒░░░░▒▒██████░░░░░░░░░██ + + ██░░░░░░░░░░░▒▒████▒▒▒▒████▒▒░░░░░░░░░░░██ + + ██░░░░░░░░░░░████████████████░░░██░░██░░██ + + ██░░░░░░░░░░░████▒▒████▒▒████░░░░░██░░░░██ + + ██░░░░░░░░░░░░░░░░░████░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42186 components: + - type: MetaData + name: игральная карта - type: Transform - pos: -5.426367,-29.630838 - parent: 2 + parent: 42145 - type: Paper - content: >- - Протокол 4398 + content: > + [color=#d35d25]██████████████████████████████████████████ - Образцы стали проявлять признаки агрессии. Возможно побочное действие использования технологии Apox-6. - - uid: 27559 + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42187 components: + - type: MetaData + name: игральная карта - type: Transform - pos: 11.535598,-48.056534 - parent: 2 + parent: 42145 - type: Paper - stampState: paper_stamp-hos - stampedBy: - - stampedColor: '#CC0000FF' - stampedName: DSE UEG - content: >2- + content: > + [color=#d35d25]██████████████████████████████████████████ - Уважаемый капитан станции Vasilisk! Благодарим вас за ваши усилия по локализации биологической угрозы. К сожалению отправка отряда ради вашего спасения невозможна, в связи с высокой активностью организованных пиратских группировок в вашем секторе. + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ - Примите наши извинения за доставленные неудобства. - - uid: 27560 + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42188 components: + - type: MetaData + name: игральная карта - type: Transform - rot: -1.5707963267948966 rad - pos: -1.4228978,-38.361145 - parent: 2 + parent: 42145 - type: Paper - content: "Протокол 4416\r\nСотрудники отдела снабжения поступили в медицинский блок с обширными поражениями рук и посинением кожи. " - - uid: 27561 + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42189 components: + - type: MetaData + name: игральная карта - type: Transform - rot: 3.141592653589793 rad - pos: -4.7299113,-36.27495 - parent: 2 + parent: 42145 - type: Paper - content: "Протокол 4432\nГенетические исследования были остановлены. Попытки уничтожить образцы не увенчались успехом. " - - uid: 27562 + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42190 components: + - type: MetaData + name: игральная карта - type: Transform - pos: -19.534334,-29.354733 - parent: 2 + parent: 42145 - type: Paper - content: >2+ + content: > + [color=#d35d25]██████████████████████████████████████████ + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + ██▒▒██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ - Пока моё убежище окружают эти отвратительные животные, капитан похоже спрятался в резервной рубке, вход в неё спрятан за шкафом в галерее, и они его не скоро найдут. + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ - Все кроме меня и капитана потеряли свою человечность и теперь похожи на монстров. + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ - Надежды на спасение нет... нас ждёт та же участь... + ██░░██████░░░████████████████░░░░░░░░░░░██ - - uid: 27563 + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42191 components: + - type: MetaData + name: игральная карта - type: Transform - pos: 52.594917,-9.306356 - parent: 2 - - uid: 27564 + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42192 components: + - type: MetaData + name: игральная карта - type: Transform - rot: 0.4188790204786391 rad - pos: 50.65171,20.885515 - parent: 2 - - uid: 27565 + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42193 components: + - type: MetaData + name: игральная карта - type: Transform - rot: 2.8623399732707004 rad - pos: 52.199566,20.886168 - parent: 2 - - uid: 27566 + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42194 components: + - type: MetaData + name: игральная карта - type: Transform - rot: -1.5707963267948966 rad - pos: 48.01984,10.520765 - parent: 2 - - uid: 27567 + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░██████░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░██████░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42195 components: + - type: MetaData + name: игральная карта - type: Transform - rot: -1.5707963267948966 rad - pos: 48.05109,10.41139 - parent: 2 - - uid: 27568 + parent: 42145 + - type: Paper + content: > + [color=#d35d25]██████████████████████████████████████████ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██▒▒██████░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██████▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False + - uid: 42196 components: + - type: MetaData + name: игральная карта - type: Transform - pos: -34.366844,-22.718172 - parent: 2 + parent: 42145 - type: Paper - content: >- - Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + content: > + [color=#d35d25]██████████████████████████████████████████ - Действует на мертвых существ, чья температура тела не более 150K. + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + ██▒▒░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ - [head=2]Рецепт Оппорозидона[/head] + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ - [head=3]Оппорозидон[/head] + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ - [color=#E333A7]▣[/color] плазма [2] + ██▒▒░░████░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ - [color=#B50EE8]▣[/color] когнизин [1] + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ - [color=#32CD32]▣[/color] доксарубиксадон [1] + ██░░██████░░░████████████████░░░░░░░░░░░██ - [italic]Нагреть выше 400K[/italic] + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ - ▣ оппорозидон [3] + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ - [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ - [bullet]карпотоксин [1] + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ - [bullet]сидерлак [1] + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ - [bullet]ацетон [1] + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ - [italic]Смешать[/italic] + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ - [bullet]когнизин [1] + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ - [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░████░░▒▒██ - [bullet]криоксадон [1] + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ - [bullet]нестабильный мутаген [1] + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ - [italic]Смешать[/italic] + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ - [bullet]доксарубиксадон [2] + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] editingDisabled: True - - uid: 27569 + - type: Physics + canCollide: False + - uid: 42197 components: + - type: MetaData + name: игральная карта - type: Transform - rot: -1.5707963267948966 rad - pos: 20.292738,-21.438 - parent: 2 + parent: 42145 - type: Paper content: > - Экспериментальный квантовый дестабилизационно-дислокационный транспондер телепортирует случайные вещи в радиусе 400 парсек на платформу перед вами. Требуется начать синхронизацию и послать калибровочный сигнал с резервного пульта. + [color=#d35d25]██████████████████████████████████████████ + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ - Осторожно. Погрешность платформы перед вами около 500 метров. + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██ + + ██▒▒██░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██░░██████░░░████████████████░░░░░░░░░░░██ + + ██░░██████░██▒▒▒▒▒▒░░░░▒▒▒▒▒▒██░░░░░░░░░██ + + ██░░░░██░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░████████░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░▒▒▒▒▒▒▒▒░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░██▒▒░░░░░░░░░░░░▒▒██░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░░░░░░░██ + + ██░░░░░░░░░░░██▒▒░░░░░░░░▒▒██░░░░░██░░░░██ + + ██░░░░░░░░░░░░░██▒▒░░░░▒▒██░░░░░██████░░██ + + ██░░░░░░░░░░░░░░░████████░░░░░░░██████░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██░░██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░████▒▒██ + + ██▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░██░░██▒▒██ + + ██▒▒▒▒▒▒░░▒▒░░░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒██ + + ██████████████████████████████████████████ + + [/color] + editingDisabled: True + - type: Physics + canCollide: False +- proto: PaperBin + entities: + - uid: 42231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.70523,-10.670447 + parent: 2 + - uid: 42319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.20523,-10.654822 + parent: 2 - proto: PaperBin10 entities: - uid: 27570 @@ -195558,34 +206843,44 @@ entities: parent: 2 - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 27600 + - uid: 1292 components: + - type: MetaData + desc: ' Выглядит незаконченным.' + name: операционный холтер - type: Transform - pos: 63.5,-58.5 + pos: -65.5,-23.5 + parent: 2 + missingComponents: + - Appearance + - uid: 42457 + components: + - type: Transform + pos: 64.5,-60.5 parent: 2 - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 27601 + - uid: 42461 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-62.5 + pos: 66.5,-59.5 parent: 2 - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 27602 + - uid: 42462 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-62.5 + pos: 66.5,-58.5 parent: 2 - proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 27603 + - uid: 27601 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,-62.5 + pos: 66.5,-60.5 parent: 2 - proto: ParticleAcceleratorEndCapUnfinished entities: @@ -195819,7 +207114,7 @@ entities: - uid: 27641 components: - type: Transform - pos: -23.082392,6.71767 + pos: -22.766998,6.8033457 parent: 2 - uid: 27642 components: @@ -195859,12 +207154,6 @@ entities: - type: Transform pos: 2.275529,24.492702 parent: 2 - - uid: 27649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.599102,21.309998 - parent: 2 - uid: 27650 components: - type: Transform @@ -195913,8 +207202,7 @@ entities: - uid: 27658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.40808,-38.200974 + pos: -65.42602,-38.448666 parent: 2 - uid: 27659 components: @@ -196369,7 +207657,7 @@ entities: pos: 3.5,-52.5 parent: 2 - type: Door - secondsUntilStateChange: -41877.258 + secondsUntilStateChange: -100268.99 state: Opening - type: DeviceLinkSource lastSignals: @@ -196380,7 +207668,7 @@ entities: pos: 2.5,-52.5 parent: 2 - type: Door - secondsUntilStateChange: -41877.992 + secondsUntilStateChange: -100269.73 state: Opening - type: DeviceLinkSource lastSignals: @@ -196527,6 +207815,26 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-27.5 parent: 2 +- proto: PlasmaWindoorJanitorLocked + entities: + - uid: 16892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 2 + - uid: 28045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 42037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 - proto: PlasmaWindoorSecureChemistryLocked entities: - uid: 27714 @@ -196594,6 +207902,38 @@ entities: - type: Transform pos: -36.5,-45.5 parent: 2 +- proto: PlasmaWindowDirectional + entities: + - uid: 15347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 2 + - uid: 16893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 2 + - uid: 32396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 2 + - uid: 34106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 42040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 - proto: PlasticBanana entities: - uid: 27725 @@ -196770,37 +208110,26 @@ entities: parent: 2 - proto: Plunger entities: - - uid: 15499 - components: - - type: Transform - parent: 15498 - - type: Physics - canCollide: False - - uid: 15500 + - uid: 26571 components: - type: Transform - parent: 15498 + parent: 32193 - type: Physics canCollide: False - - uid: 27752 - components: - - type: Transform - pos: 86.361694,-51.433376 - parent: 2 - - uid: 27753 + - uid: 27755 components: - type: Transform - pos: 86.736694,-51.402126 + pos: 71.49899,-12.380988 parent: 2 - - uid: 27754 + - uid: 42223 components: - type: Transform - pos: 86.517944,-51.245876 + pos: 9.49986,-3.1529796 parent: 2 - - uid: 27755 + - uid: 42224 components: - type: Transform - pos: 71.49899,-12.380988 + pos: 9.28111,-3.2779796 parent: 2 - proto: PlushieAtmosian entities: @@ -196812,7 +208141,7 @@ entities: - uid: 27757 components: - type: Transform - pos: 39.48761,-52.44418 + pos: 39.5566,-52.41965 parent: 2 - uid: 27758 components: @@ -196833,22 +208162,6 @@ entities: - type: Transform pos: -27.447361,-86.60795 parent: 2 -- proto: PlushieGhost - entities: - - uid: 16159 - components: - - type: Transform - parent: 16158 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 27762 - components: - - type: Transform - parent: 27761 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: PlushieHampter entities: - uid: 27763 @@ -196915,6 +208228,12 @@ entities: parent: 2 - proto: PlushieSharkPink entities: + - uid: 27468 + components: + - type: Transform + parent: 17851 + - type: Physics + canCollide: False - uid: 27665 components: - type: Transform @@ -196938,13 +208257,6 @@ entities: - type: Transform pos: -36.339783,-86.55919 parent: 2 -- proto: PlushieVox - entities: - - uid: 27775 - components: - - type: Transform - pos: 53.558464,-38.75866 - parent: 2 - proto: PonderingOrb entities: - uid: 27776 @@ -197133,10 +208445,11 @@ entities: parent: 2 - proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 27810 + - uid: 29654 components: - type: Transform - pos: 39.5,13.5 + rot: 1.5707963267948966 rad + pos: 39.5,15.5 parent: 2 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: @@ -197202,11 +208515,10 @@ entities: parent: 2 - proto: PosterContrabandHaveaPuff entities: - - uid: 27820 + - uid: 19892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,22.5 + pos: 35.5,24.5 parent: 2 - proto: PosterContrabandHighEffectEngineering entities: @@ -197224,10 +208536,10 @@ entities: parent: 2 - proto: PosterContrabandKudzu entities: - - uid: 27823 + - uid: 11739 components: - type: Transform - pos: 36.5,8.5 + pos: 34.5,16.5 parent: 2 - proto: PosterContrabandLamarr entities: @@ -197351,11 +208663,6 @@ entities: parent: 41669 - proto: PosterLegitCarpMount entities: - - uid: 27840 - components: - - type: Transform - pos: -19.5,-90.5 - parent: 2 - uid: 27841 components: - type: Transform @@ -197717,11 +209024,6 @@ entities: parent: 2 - proto: PottedPlant15 entities: - - uid: 27887 - components: - - type: Transform - pos: 3.5,-71.5 - parent: 2 - uid: 27888 components: - type: Transform @@ -198062,13 +209364,6 @@ entities: - type: Transform pos: -66.5,-45.5 parent: 2 -- proto: PottedPlantAlt6 - entities: - - uid: 27944 - components: - - type: Transform - pos: -55.5,-17.5 - parent: 2 - proto: PottedPlantAlt7 entities: - uid: 27945 @@ -198157,21 +209452,6 @@ entities: - type: Transform pos: -41.5,-78.5 parent: 2 - - uid: 27960 - components: - - type: Transform - pos: -73.5,-37.5 - parent: 2 - - uid: 27961 - components: - - type: Transform - pos: -73.5,-38.5 - parent: 2 - - uid: 27962 - components: - - type: Transform - pos: -73.5,-39.5 - parent: 2 - uid: 27963 components: - type: Transform @@ -198207,11 +209487,6 @@ entities: - type: Transform pos: 51.5,-84.5 parent: 2 - - uid: 27970 - components: - - type: Transform - pos: -22.5,-81.5 - parent: 2 - uid: 27971 components: - type: Transform @@ -198307,16 +209582,6 @@ entities: - type: Transform pos: -66.5,-26.5 parent: 2 - - uid: 27990 - components: - - type: Transform - pos: 25.5,25.5 - parent: 2 - - uid: 27991 - components: - - type: Transform - pos: 24.5,19.5 - parent: 2 - uid: 27992 components: - type: Transform @@ -198327,21 +209592,6 @@ entities: - type: Transform pos: -44.5,11.5 parent: 2 - - uid: 27994 - components: - - type: Transform - pos: -46.5,16.5 - parent: 2 - - uid: 27995 - components: - - type: Transform - pos: -48.5,15.5 - parent: 2 - - uid: 27996 - components: - - type: Transform - pos: -43.5,14.5 - parent: 2 - uid: 27997 components: - type: Transform @@ -198451,7 +209701,7 @@ entities: - type: Transform pos: -37.5,-67.5 parent: 2 - - uid: 28017 + - uid: 42618 components: - type: MetaData desc: Выглядит не очень здоровым... @@ -198459,6 +209709,8 @@ entities: - type: Transform pos: 48.5,23.5 parent: 2 + missingComponents: + - StealTarget - proto: PowerCageHigh entities: - uid: 41855 @@ -198527,6 +209779,11 @@ entities: ent: 56 - proto: PowerCellRecharger entities: + - uid: 2290 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 - uid: 28020 components: - type: Transform @@ -198627,25 +209884,120 @@ entities: - type: Transform pos: -38.384167,-51.38693 parent: 2 -- proto: PoweredLEDLightPostSmall +- proto: PoweredDimSmallLight entities: - - uid: 28039 + - uid: 27944 components: - type: Transform - pos: 58.5,-40.5 + rot: 3.141592653589793 rad + pos: 85.5,-55.5 parent: 2 - - uid: 28040 + - uid: 28537 components: - type: Transform - pos: 47.5,-41.5 + pos: -43.5,-105.5 parent: 2 - - uid: 28041 + - uid: 28714 components: - type: Transform - pos: 51.5,-36.5 + rot: 1.5707963267948966 rad + pos: -56.5,-106.5 + parent: 2 + - uid: 28722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-118.5 + parent: 2 + - uid: 28723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-106.5 + parent: 2 + - uid: 28724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-53.5 + parent: 2 + - uid: 28727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 104.5,-58.5 + parent: 2 + - uid: 28728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-120.5 + parent: 2 + - uid: 28748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,-53.5 + parent: 2 + - uid: 28749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-110.5 + parent: 2 + - uid: 28752 + components: + - type: Transform + pos: -47.5,-119.5 + parent: 2 + - uid: 28755 + components: + - type: Transform + pos: -34.5,-109.5 + parent: 2 + - uid: 28789 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - uid: 42449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,30.5 + parent: 2 + - uid: 42451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,27.5 + parent: 2 + - uid: 42452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,28.5 + parent: 2 + - uid: 42453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2 + - uid: 42454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,15.5 parent: 2 - proto: PoweredLEDSmallLight entities: + - uid: 26699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 2 - uid: 28042 components: - type: Transform @@ -198662,12 +210014,6 @@ entities: - type: Transform pos: 29.5,-40.5 parent: 2 - - uid: 28045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-41.5 - parent: 2 - uid: 28046 components: - type: Transform @@ -198679,6 +210025,12 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 2 + - uid: 40605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-41.5 + parent: 2 - proto: Poweredlight entities: - uid: 28048 @@ -200059,12 +211411,6 @@ entities: - type: Transform pos: 17.5,-99.5 parent: 2 - - uid: 28289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,19.5 - parent: 2 - uid: 28290 components: - type: Transform @@ -200151,12 +211497,6 @@ entities: - type: Transform pos: 31.5,14.5 parent: 2 - - uid: 28305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,9.5 - parent: 2 - uid: 28306 components: - type: Transform @@ -200767,6 +212107,29 @@ entities: rot: 3.141592653589793 rad pos: -10.5,13.5 parent: 2 + - uid: 33561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,10.5 + parent: 2 + - uid: 39012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 39090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,20.5 + parent: 2 + - uid: 39132 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 - uid: 41352 components: - type: Transform @@ -200873,6 +212236,12 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 41669 + - uid: 42044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 - proto: PoweredlightBlue entities: - uid: 41361 @@ -201369,21 +212738,6 @@ entities: powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 26870 - components: - - type: Transform - pos: 84.5,-44.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26871 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - uid: 28414 components: - type: Transform @@ -201884,6 +213238,16 @@ entities: - type: Transform pos: 65.5,-74.5 parent: 2 + - uid: 42431 + components: + - type: Transform + pos: 56.5,-41.5 + parent: 2 + - uid: 42432 + components: + - type: Transform + pos: 51.5,-36.5 + parent: 2 - proto: PoweredlightRed entities: - uid: 28500 @@ -202072,12 +213436,6 @@ entities: - type: Transform pos: 69.5,-65.5 parent: 2 - - uid: 28530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,-53.5 - parent: 2 - uid: 28531 components: - type: Transform @@ -202114,12 +213472,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,6.5 parent: 2 - - uid: 28537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-52.5 - parent: 2 - uid: 28538 components: - type: Transform @@ -202200,12 +213552,6 @@ entities: rot: 3.141592653589793 rad pos: -68.5,-34.5 parent: 2 - - uid: 28552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,16.5 - parent: 2 - uid: 28553 components: - type: Transform @@ -202753,12 +214099,6 @@ entities: rot: 1.5707963267948966 rad pos: 74.5,-35.5 parent: 2 - - uid: 28648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 2 - uid: 28649 components: - type: Transform @@ -202848,11 +214188,6 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,-16.5 parent: 2 - - uid: 28664 - components: - - type: Transform - pos: 34.5,19.5 - parent: 2 - uid: 28665 components: - type: Transform @@ -202865,12 +214200,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,-57.5 parent: 2 - - uid: 28667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,24.5 - parent: 2 - uid: 28668 components: - type: Transform @@ -202970,12 +214299,6 @@ entities: - type: Transform pos: 42.5,25.5 parent: 2 - - uid: 28686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,25.5 - parent: 2 - uid: 28687 components: - type: Transform @@ -203127,23 +214450,12 @@ entities: rot: 1.5707963267948966 rad pos: 81.5,-46.5 parent: 2 - - uid: 28714 - components: - - type: Transform - pos: -43.5,-105.5 - parent: 2 - uid: 28715 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,6.5 parent: 2 - - uid: 28716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-1.5 - parent: 2 - uid: 28717 components: - type: Transform @@ -203174,23 +214486,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 - - uid: 28722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-106.5 - parent: 2 - - uid: 28723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-118.5 - parent: 2 - - uid: 28724 - components: - - type: Transform - pos: -27.5,-105.5 - parent: 2 - uid: 28725 components: - type: Transform @@ -203203,18 +214498,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-114.5 parent: 2 - - uid: 28727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-53.5 - parent: 2 - - uid: 28728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 104.5,-58.5 - parent: 2 - uid: 28729 components: - type: Transform @@ -203327,16 +214610,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-24.5 parent: 2 - - uid: 28748 - components: - - type: Transform - pos: -35.5,-109.5 - parent: 2 - - uid: 28749 - components: - - type: Transform - pos: -54.5,-118.5 - parent: 2 - uid: 28750 components: - type: Transform @@ -203349,12 +214622,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-110.5 parent: 2 - - uid: 28752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-110.5 - parent: 2 - uid: 28753 components: - type: Transform @@ -203366,11 +214633,6 @@ entities: - type: Transform pos: -47.5,-114.5 parent: 2 - - uid: 28755 - components: - - type: Transform - pos: -47.5,-119.5 - parent: 2 - uid: 28756 components: - type: Transform @@ -203511,12 +214773,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,9.5 parent: 2 - - uid: 28780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 2 - uid: 28781 components: - type: Transform @@ -203567,12 +214823,6 @@ entities: rot: 3.141592653589793 rad pos: 50.5,20.5 parent: 2 - - uid: 28789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 - parent: 2 - uid: 28790 components: - type: Transform @@ -203627,12 +214877,48 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,5.5 parent: 2 + - uid: 32243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-29.5 + parent: 2 + - uid: 34152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 39430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,16.5 + parent: 2 + - uid: 39469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,17.5 + parent: 2 - uid: 41363 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 40828 + - uid: 42049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - uid: 42336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,20.5 + parent: 2 - proto: PoweredSmallLightEmpty entities: - uid: 28799 @@ -203690,12 +214976,38 @@ entities: containers: solution@injector: !type:ContainerSlot ent: 53 -- proto: PresentRandomAsh +- proto: PresentRandom entities: - - uid: 28800 + - uid: 12516 + components: + - type: Transform + pos: -76.481384,-41.685158 + parent: 2 + - uid: 32523 + components: + - type: Transform + pos: 27.613861,27.51924 + parent: 2 +- proto: PresentRandomCash + entities: + - uid: 16306 + components: + - type: Transform + pos: 2.4491835,-92.44805 + parent: 2 +- proto: PresentRandomInsane + entities: + - uid: 30865 + components: + - type: Transform + pos: -55.474167,-91.317696 + parent: 2 +- proto: PresentRandomUnsafe + entities: + - uid: 42208 components: - type: Transform - pos: -55.516136,-91.37328 + pos: -41.552677,-98.53101 parent: 2 - proto: PrintedDocumentApplicationAccess entities: @@ -203857,48 +215169,28 @@ entities: - type: Transform pos: -51.5,-49.5 parent: 2 -- proto: PumpkinLantern - entities: - - uid: 28814 - components: - - type: Transform - pos: 28.550491,30.74158 - parent: 2 - - uid: 28815 - components: - - type: Transform - pos: 29.810972,27.55408 - parent: 2 -- proto: PumpkinLanternSmall +- proto: PunctAutoInjector entities: - - uid: 28816 - components: - - type: Transform - pos: 27.342222,27.475954 - parent: 2 - - uid: 28817 - components: - - type: Transform - pos: 30.867588,30.694704 - parent: 2 - - uid: 28818 + - uid: 27222 components: - type: Transform - pos: 30.117588,30.382204 - parent: 2 - - uid: 28819 + parent: 27220 + - type: Physics + canCollide: False + - uid: 42083 components: - type: Transform - pos: 32.826595,29.46033 - parent: 2 -- proto: PunctAutoInjector - entities: - - uid: 27222 + parent: 41840 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42085 components: - type: Transform - parent: 27220 + parent: 41840 - type: Physics canCollide: False + - type: InsideEntityStorage - proto: PyraAutoInjector entities: - uid: 27223 @@ -203907,8 +215199,33 @@ entities: parent: 27220 - type: Physics canCollide: False + - uid: 42084 + components: + - type: Transform + parent: 41840 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42087 + components: + - type: Transform + parent: 41840 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Rack entities: + - uid: 12458 + components: + - type: Transform + pos: -68.5,-15.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 - uid: 28820 components: - type: Transform @@ -204414,8 +215731,7 @@ entities: - uid: 28909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-15.5 + pos: -70.5,-17.5 parent: 2 - uid: 28910 components: @@ -204815,11 +216131,6 @@ entities: rot: 3.141592653589793 rad pos: -85.5,-21.5 parent: 2 - - uid: 28983 - components: - - type: Transform - pos: 37.5,18.5 - parent: 2 - uid: 28984 components: - type: Transform @@ -204973,6 +216284,18 @@ entities: - type: Transform pos: 60.5,-13.5 parent: 2 + - uid: 30528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-44.5 + parent: 2 + - uid: 38482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,18.5 + parent: 2 - uid: 41364 components: - type: Transform @@ -204984,6 +216307,27 @@ entities: - type: Transform pos: -1.5,-8.5 parent: 40828 + - uid: 42041 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 42042 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 42226 + components: + - type: Transform + pos: -70.5,-16.5 + parent: 2 + - uid: 42365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 - proto: RadiationCollectorFullTank entities: - uid: 29013 @@ -205041,6 +216385,12 @@ entities: parent: 2 - proto: Railing entities: + - uid: 28817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,19.5 + parent: 2 - uid: 29021 components: - type: Transform @@ -205576,18 +216926,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-8.5 parent: 2 - - uid: 29114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,15.5 - parent: 2 - - uid: 29115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,14.5 - parent: 2 - uid: 29116 components: - type: Transform @@ -206482,6 +217820,28 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 40828 + - uid: 41414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 40828 + - uid: 41420 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 40828 + - uid: 41613 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 40828 + - uid: 41682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 40828 - proto: RailingCorner entities: - uid: 29266 @@ -206654,12 +218014,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-54.5 parent: 2 - - uid: 29295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,13.5 - parent: 2 - uid: 29296 components: - type: Transform @@ -206958,6 +218312,18 @@ entities: rot: -1.5707963267948966 rad pos: 83.5,-91.5 parent: 2 + - uid: 41900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 40828 + - uid: 42076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 40828 - proto: RandomAnomalyInjectorSpawner entities: - uid: 29347 @@ -206966,31 +218332,29 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-50.5 parent: 2 -- proto: RandomArcade +- proto: RandomArtifactSpawner entities: - - uid: 29348 + - uid: 29350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-49.5 + pos: -73.5,-77.5 parent: 2 - - uid: 29349 + - uid: 29351 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-46.5 + pos: -15.5,-62.5 parent: 2 -- proto: RandomArtifactSpawner +- proto: RandomBoard entities: - - uid: 29350 + - uid: 42322 components: - type: Transform - pos: -73.5,-77.5 + pos: -70.5,-15.5 parent: 2 - - uid: 29351 + - uid: 42372 components: - type: Transform - pos: -15.5,-62.5 + pos: -69.5,-15.5 parent: 2 - proto: RandomDrinkBottle entities: @@ -207079,11 +218443,6 @@ entities: - type: Transform pos: -43.5,-83.5 parent: 2 - - uid: 29368 - components: - - type: Transform - pos: 2.5,0.5 - parent: 2 - uid: 29369 components: - type: Transform @@ -207103,11 +218462,6 @@ entities: - type: Transform pos: 36.5,-3.5 parent: 2 - - uid: 29372 - components: - - type: Transform - pos: 3.5,0.5 - parent: 2 - proto: RandomFoodSingle entities: - uid: 29373 @@ -207687,12 +219041,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-30.5 parent: 2 - - uid: 29473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,18.5 - parent: 2 - uid: 29474 components: - type: Transform @@ -208653,11 +220001,6 @@ entities: - type: Transform pos: 81.5,-32.5 parent: 2 - - uid: 29638 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - uid: 29639 components: - type: Transform @@ -208733,11 +220076,6 @@ entities: - type: Transform pos: -15.5,-83.5 parent: 2 - - uid: 29654 - components: - - type: Transform - pos: 27.5,16.5 - parent: 2 - uid: 29655 components: - type: Transform @@ -209039,11 +220377,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,11.5 parent: 2 - - uid: 29715 - components: - - type: Transform - pos: 35.5,13.5 - parent: 2 - uid: 29716 components: - type: Transform @@ -209059,16 +220392,6 @@ entities: - type: Transform pos: 109.5,-46.5 parent: 2 - - uid: 29719 - components: - - type: Transform - pos: 85.5,-52.5 - parent: 2 - - uid: 29720 - components: - - type: Transform - pos: 83.5,-45.5 - parent: 2 - uid: 29721 components: - type: Transform @@ -209535,8 +220858,18 @@ entities: - type: Transform pos: 57.5,-73.5 parent: 2 + - uid: 33446 + components: + - type: Transform + pos: -70.51361,-16.31991 + parent: 2 - proto: RCDAmmo entities: + - uid: 27358 + components: + - type: Transform + pos: -70.435486,-16.366785 + parent: 2 - uid: 29810 components: - type: Transform @@ -210610,6 +221943,18 @@ entities: parent: 2 - proto: ReinforcedWindow entities: + - uid: 17759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-30.5 + parent: 2 + - uid: 17760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-30.5 + parent: 2 - uid: 29996 components: - type: Transform @@ -211699,21 +223044,6 @@ entities: - type: Transform pos: 27.5,-24.5 parent: 2 - - uid: 30196 - components: - - type: Transform - pos: 27.5,-27.5 - parent: 2 - - uid: 30197 - components: - - type: Transform - pos: 27.5,-28.5 - parent: 2 - - uid: 30198 - components: - - type: Transform - pos: 27.5,-29.5 - parent: 2 - uid: 30199 components: - type: Transform @@ -213253,17 +224583,6 @@ entities: - type: Transform pos: -14.5,3.5 parent: 2 - - uid: 41382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 40828 - - uid: 41383 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 40828 - proto: ReinforcedWindowDiagonal entities: - uid: 30484 @@ -213387,7 +224706,14 @@ entities: - type: Transform pos: -37.480183,-99.61549 parent: 2 -- proto: RightArmBorgService +- proto: RifleStock + entities: + - uid: 42204 + components: + - type: Transform + pos: -73.62955,-1.2046726 + parent: 2 +- proto: RightArmBorg entities: - uid: 30504 components: @@ -213435,24 +224761,18 @@ entities: - type: Transform pos: -85.12268,-9.882366 parent: 2 -- proto: RightLegBorgEngineer - entities: - uid: 30511 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.383781,-45.335068 parent: 2 -- proto: RightLegBorgMedical - entities: - uid: 30512 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.696281,-45.569443 parent: 2 -- proto: RightLegBorgMining - entities: - uid: 30513 components: - type: Transform @@ -213588,11 +224908,6 @@ entities: - type: Transform pos: 0.4364481,-95.24705 parent: 2 - - uid: 30528 - components: - - type: Transform - pos: 27.224102,20.466248 - parent: 2 - uid: 30529 components: - type: Transform @@ -213852,6 +225167,166 @@ entities: - type: Transform pos: 2.5,-30.5 parent: 2 + - uid: 42233 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 42245 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 + - uid: 42246 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - uid: 42247 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - uid: 42248 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 42249 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 + - uid: 42257 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 2 + - uid: 42258 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 2 + - uid: 42259 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 2 + - uid: 42260 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 2 + - uid: 42261 + components: + - type: Transform + pos: 8.5,-53.5 + parent: 2 + - uid: 42262 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 2 + - uid: 42263 + components: + - type: Transform + pos: -1.5,-60.5 + parent: 2 + - uid: 42264 + components: + - type: Transform + pos: -9.5,-64.5 + parent: 2 + - uid: 42267 + components: + - type: Transform + pos: 1.5,-65.5 + parent: 2 + - uid: 42268 + components: + - type: Transform + pos: 7.5,-61.5 + parent: 2 + - uid: 42272 + components: + - type: Transform + pos: 18.5,-54.5 + parent: 2 + - uid: 42273 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 42274 + components: + - type: Transform + pos: -0.5,-57.5 + parent: 2 + - uid: 42275 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 2 + - uid: 42276 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 2 + - uid: 42277 + components: + - type: Transform + pos: -13.5,-53.5 + parent: 2 + - uid: 42278 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 2 + - uid: 42279 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 2 + - uid: 42280 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 2 + - uid: 42281 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 2 + - uid: 42325 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - uid: 42326 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 2 + - uid: 42327 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 + - uid: 42328 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 2 + - uid: 42329 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 42330 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 - proto: SalvageSpawnerScrapCommon75 entities: - uid: 30576 @@ -214054,8 +225529,123 @@ entities: - type: Transform pos: 11.5,-32.5 parent: 2 + - uid: 42234 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 42235 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 42236 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 + - uid: 42237 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 42238 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 42239 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 42240 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - uid: 42241 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 42244 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 42250 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 42251 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - uid: 42252 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 42253 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 2 + - uid: 42254 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 42255 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 + - uid: 42266 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 42269 + components: + - type: Transform + pos: 18.5,-62.5 + parent: 2 + - uid: 42270 + components: + - type: Transform + pos: 17.5,-53.5 + parent: 2 + - uid: 42271 + components: + - type: Transform + pos: 17.5,-54.5 + parent: 2 + - uid: 42282 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 2 + - uid: 42285 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 2 + - uid: 42286 + components: + - type: Transform + pos: -19.5,-52.5 + parent: 2 - proto: SalvageSpawnerScrapValuable entities: + - uid: 16890 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 2 - uid: 30616 components: - type: Transform @@ -214076,6 +225666,31 @@ entities: - type: Transform pos: -2.5,-20.5 parent: 2 + - uid: 32636 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 34960 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - uid: 42228 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 2 + - uid: 42232 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 42256 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 - proto: SalvageSpawnerScrapValuable75 entities: - uid: 30620 @@ -214143,6 +225758,46 @@ entities: - type: Transform pos: -1.5,-48.5 parent: 2 + - uid: 33759 + components: + - type: Transform + pos: 85.5,-53.5 + parent: 2 + - uid: 42225 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 42229 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 2 + - uid: 42242 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 42243 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 42265 + components: + - type: Transform + pos: -17.5,-59.5 + parent: 2 + - uid: 42283 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 42284 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 - proto: SalvageSpawnerTreasure entities: - uid: 30633 @@ -214243,6 +225898,51 @@ entities: - type: Transform pos: 14.5,-14.5 parent: 2 + - uid: 42310 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 + - uid: 42311 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 + - uid: 42312 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 + - uid: 42313 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 2 + - uid: 42314 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 2 + - uid: 42315 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 2 + - uid: 42316 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 + - uid: 42317 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 + - uid: 42318 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 2 - proto: Saw entities: - uid: 30652 @@ -214385,11 +226085,6 @@ entities: - type: Transform pos: 20.500097,-78.43573 parent: 2 - - uid: 30671 - components: - - type: Transform - pos: 28.434269,20.70553 - parent: 2 - uid: 30672 components: - type: Transform @@ -214954,8 +226649,51 @@ entities: linkedPorts: 887: - Timer: Open + - uid: 42075 + components: + - type: MetaData + name: до разморозки ОБР осталось + - type: Transform + pos: 5.5,-1.5 + parent: 40828 + - type: SignalTimer + delay: 2405 + - type: DeviceLinkSource + range: 3000 + linkedPorts: + 42069: + - Timer: Open + 40858: + - Timer: Close + 40857: + - Timer: Close + 19786: + - Start: Trigger + 12788: + - Start: Trigger + 41167: + - Timer: Trigger + 41168: + - Timer: Trigger + 41169: + - Timer: Trigger + 41164: + - Timer: Trigger + 41166: + - Timer: Trigger + 41165: + - Timer: Trigger + - type: DeviceLinkSink + invokeCounter: 1 + missingComponents: + - ApcPowerReceiver - proto: Screwdriver entities: + - uid: 6016 + components: + - type: Transform + pos: 87.534424,-51.37798 + parent: 2 - uid: 30767 components: - type: Transform @@ -215016,6 +226754,11 @@ entities: parent: 2 - proto: SeedExtractor entities: + - uid: 28530 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 - uid: 30778 components: - type: Transform @@ -215026,133 +226769,29 @@ entities: - type: Transform pos: 88.5,-3.5 parent: 2 - - uid: 30780 - components: - - type: Transform - pos: 37.5,15.5 - parent: 2 - - uid: 30781 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - proto: SeismicCharge entities: - uid: 26957 components: - type: Transform - parent: 26956 + parent: 26423 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 26959 components: - type: Transform - parent: 26958 + parent: 26423 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 26961 components: - type: Transform - parent: 26960 + parent: 26423 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ShadowBasaltFive - entities: - - uid: 30782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-42.5 - parent: 2 -- proto: ShadowTree01 - entities: - - uid: 30783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.246082,-42.22756 - parent: 2 -- proto: ShadowTree02 - entities: - - uid: 30784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.848076,-42.58823 - parent: 2 - - uid: 30785 - components: - - type: Transform - pos: -78.92212,-43.429893 - parent: 2 -- proto: ShadowTree03 - entities: - - uid: 30786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.048523,-42.430683 - parent: 2 -- proto: ShadowTree04 - entities: - - uid: 30787 - components: - - type: Transform - pos: -78.29712,-42.63302 - parent: 2 -- proto: ShadowTree05 - entities: - - uid: 30788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.436615,-38.563526 - parent: 2 - - uid: 30789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.13986,-41.63381 - parent: 2 - - uid: 30790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.323536,-36.344776 - parent: 2 - - uid: 30791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.30508,-36.11948 - parent: 2 - - uid: 30792 - components: - - type: Transform - pos: 51.046253,-39.34478 - parent: 2 -- proto: ShadowTree06 - entities: - - uid: 30793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.92312,-36.813526 - parent: 2 - - uid: 30794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.25537,-42.572605 - parent: 2 - - uid: 30795 - components: - - type: Transform - pos: -79.812744,-42.25802 - parent: 2 - proto: ShardCrystalBlue entities: - uid: 30796 @@ -215222,7 +226861,7 @@ entities: - uid: 30806 components: - type: Transform - pos: 82.788605,-47.626904 + pos: 83.35379,-47.548504 parent: 2 - uid: 30807 components: @@ -215295,12 +226934,6 @@ entities: rot: 3.141592653589793 rad pos: -50.39424,12.518035 parent: 2 - - uid: 30820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.83548,-44.64253 - parent: 2 - uid: 30821 components: - type: Transform @@ -215573,6 +227206,11 @@ entities: parent: 40828 - proto: SheetPlasteel entities: + - uid: 27762 + components: + - type: Transform + pos: -69.60288,-18.429285 + parent: 2 - uid: 30863 components: - type: Transform @@ -215583,11 +227221,6 @@ entities: - type: Transform pos: 109.5,-20.5 parent: 2 - - uid: 30865 - components: - - type: Transform - pos: -69.63428,-18.463882 - parent: 2 - uid: 30866 components: - type: Transform @@ -215769,6 +227402,11 @@ entities: - type: Transform pos: -1.5466461,-8.3461 parent: 40828 + - uid: 42227 + components: + - type: Transform + pos: -70.01005,-18.41678 + parent: 2 - proto: SheetSteel1 entities: - uid: 30890 @@ -215893,6 +227531,29 @@ entities: - type: Transform pos: -0.5737078,-71.20553 parent: 2 +- proto: SheetUranium + entities: + - uid: 42080 + components: + - type: Transform + parent: 41690 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42081 + components: + - type: Transform + parent: 41690 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42082 + components: + - type: Transform + parent: 41690 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SheetUranium1 entities: - uid: 16201 @@ -215909,7 +227570,7 @@ entities: - uid: 18721 components: - type: Transform - pos: 25.5,4.5 + pos: 25.5,5.5 parent: 2 - type: Storage storedItems: @@ -216043,13 +227704,19 @@ entities: - 1983 - 1984 - 1985 + - uid: 42093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 41669 - proto: ShelfKitchen entities: - uid: 18798 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,6.5 + pos: 26.5,10.5 parent: 2 - type: Storage storedItems: @@ -216204,18 +227871,8 @@ entities: - type: Transform pos: -81.5,-6.5 parent: 2 - - type: Storage - storedItems: - 2357: - position: 0,0 - _rotation: East - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 2357 + - type: Lock + locked: False - proto: ShellShotgunBeanbag entities: - uid: 30913 @@ -216495,6 +228152,11 @@ entities: parent: 40828 - proto: Shovel entities: + - uid: 12515 + components: + - type: Transform + pos: 31.232746,27.5235 + parent: 2 - uid: 30961 components: - type: Transform @@ -216615,6 +228277,16 @@ entities: parent: 2 - proto: ShuttersNormalOpen entities: + - uid: 26727 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 27117 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 - uid: 30982 components: - type: Transform @@ -216941,16 +228613,6 @@ entities: - type: Transform pos: 26.5,-72.5 parent: 2 - - uid: 31041 - components: - - type: Transform - pos: 25.5,23.5 - parent: 2 - - uid: 31042 - components: - - type: Transform - pos: 27.5,23.5 - parent: 2 - uid: 31043 components: - type: Transform @@ -217145,12 +228807,6 @@ entities: - type: Transform pos: 1.5,-77.5 parent: 2 - - uid: 31079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,20.5 - parent: 2 - uid: 31080 components: - type: Transform @@ -217336,6 +228992,86 @@ entities: - type: Transform pos: 46.5,-48.5 parent: 2 + - uid: 32221 + components: + - type: Transform + pos: 56.5,-96.5 + parent: 2 + - uid: 32231 + components: + - type: Transform + pos: 56.5,-97.5 + parent: 2 + - uid: 32250 + components: + - type: Transform + pos: 56.5,-98.5 + parent: 2 + - uid: 39558 + components: + - type: Transform + pos: -69.5,-42.5 + parent: 2 + - uid: 39562 + components: + - type: Transform + pos: 56.5,-99.5 + parent: 2 + - uid: 39563 + components: + - type: Transform + pos: 50.5,-104.5 + parent: 2 + - uid: 39716 + components: + - type: Transform + pos: -69.5,-43.5 + parent: 2 + - uid: 39720 + components: + - type: Transform + pos: -69.5,-44.5 + parent: 2 + - uid: 40616 + components: + - type: Transform + pos: 51.5,-104.5 + parent: 2 + - uid: 40617 + components: + - type: Transform + pos: 56.5,-91.5 + parent: 2 + - uid: 40618 + components: + - type: Transform + pos: 56.5,-90.5 + parent: 2 + - uid: 40849 + components: + - type: Transform + pos: 56.5,-89.5 + parent: 2 + - uid: 40850 + components: + - type: Transform + pos: 56.5,-88.5 + parent: 2 + - uid: 42066 + components: + - type: Transform + pos: 44.5,-87.5 + parent: 2 + - uid: 42067 + components: + - type: Transform + pos: 44.5,-86.5 + parent: 2 + - uid: 42068 + components: + - type: Transform + pos: 44.5,-85.5 + parent: 2 - proto: ShuttersRadiationOpen entities: - uid: 31117 @@ -217446,11 +229182,6 @@ entities: - type: Transform pos: 4.5,2.5 parent: 40666 - - uid: 41393 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 40828 - uid: 41394 components: - type: Transform @@ -217518,6 +229249,12 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 41669 + - uid: 42074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 40828 - proto: ShuttleWindowDiagonal entities: - uid: 40775 @@ -217565,6 +229302,26 @@ entities: parent: 2 - proto: SignalButton entities: + - uid: 18535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 31002: + - Pressed: Toggle + 30993: + - Pressed: Toggle + 31003: + - Pressed: Toggle + 31005: + - Pressed: Toggle + 30992: + - Pressed: Toggle + 30991: + - Pressed: Toggle - uid: 31122 components: - type: MetaData @@ -217901,6 +229658,8 @@ entities: - Pressed: Toggle - uid: 41883 components: + - type: MetaData + name: правый огонь - type: Transform pos: 4.81752,4.6099243 parent: 41669 @@ -217910,6 +229669,8 @@ entities: - Pressed: Trigger - uid: 41884 components: + - type: MetaData + name: левый огонь - type: Transform pos: 4.19252,4.6099243 parent: 41669 @@ -217919,6 +229680,28 @@ entities: - Pressed: Trigger - proto: SignalButtonDirectional entities: + - uid: 21313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 30999: + - Pressed: Toggle + 30998: + - Pressed: Toggle + 30997: + - Pressed: Toggle + 31004: + - Pressed: Toggle + 30994: + - Pressed: Toggle + 27117: + - Pressed: Toggle + 26727: + - Pressed: Toggle - uid: 31142 components: - type: MetaData @@ -217958,26 +229741,6 @@ entities: linkedPorts: 340: - Pressed: DoorBolt - - uid: 31144 - components: - - type: MetaData - name: ставни - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 30999: - - Pressed: Toggle - 30998: - - Pressed: Toggle - 30997: - - Pressed: Toggle - 31004: - - Pressed: Toggle - 30994: - - Pressed: Toggle - uid: 31145 components: - type: Transform @@ -218019,32 +229782,6 @@ entities: linkedPorts: 329: - Pressed: DoorBolt - - uid: 31149 - components: - - type: MetaData - name: ставни - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,10.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31002: - - Pressed: Toggle - 30993: - - Pressed: Toggle - 31003: - - Pressed: Toggle - 31005: - - Pressed: Toggle - 30992: - - Pressed: Toggle - 30991: - - Pressed: Toggle - 31000: - - Pressed: Toggle - 31001: - - Pressed: Toggle - uid: 31150 components: - type: Transform @@ -218172,6 +229909,8 @@ entities: - Pressed: Toggle - uid: 31161 components: + - type: MetaData + name: правые ставни - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-38.5 @@ -218336,29 +230075,6 @@ entities: - Pressed: Toggle 30978: - Pressed: Toggle - - uid: 31171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 30976: - - Pressed: Toggle - 30977: - - Pressed: Toggle - - uid: 31172 - components: - - type: Transform - pos: 28.5,23.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31042: - - Pressed: Toggle - 31041: - - Pressed: Toggle - uid: 31173 components: - type: Transform @@ -218403,18 +230119,6 @@ entities: linkedPorts: 333: - Pressed: DoorBolt - - uid: 31177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-45.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26701: - - Pressed: Toggle - 26711: - - Pressed: Toggle - uid: 31178 components: - type: Transform @@ -218562,6 +230266,8 @@ entities: - Pressed: DoorBolt - uid: 31190 components: + - type: MetaData + name: ставни хирургия - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-20.5 @@ -218620,16 +230326,6 @@ entities: linkedPorts: 26702: - Pressed: Toggle - - uid: 31194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26703: - - Pressed: Toggle - uid: 31195 components: - type: Transform @@ -218639,42 +230335,6 @@ entities: linkedPorts: 26704: - Pressed: Toggle - - uid: 31196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-34.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26707: - - Pressed: Toggle - 26705: - - Pressed: Toggle - 26706: - - Pressed: Toggle - - uid: 31197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-45.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26708: - - Pressed: Toggle - 26709: - - Pressed: Toggle - - uid: 31198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-78.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26710: - - Pressed: Toggle - uid: 31199 components: - type: Transform @@ -218699,16 +230359,6 @@ entities: linkedPorts: 30970: - Pressed: Toggle - - uid: 31201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,20.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31079: - - Pressed: Toggle - uid: 31202 components: - type: Transform @@ -218751,6 +230401,8 @@ entities: - Pressed: DoorBolt - uid: 31205 components: + - type: MetaData + name: стоп тира - type: Transform rot: -1.5707963267948966 rad pos: 61.810246,8.501156 @@ -218828,6 +230480,22 @@ entities: - Pressed: Toggle 31116: - Pressed: Toggle + - uid: 39721 + components: + - type: MetaData + name: левые ставни + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.49646,-38.97924 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 39558: + - Pressed: Toggle + 39716: + - Pressed: Toggle + 39720: + - Pressed: Toggle - uid: 40778 components: - type: MetaData @@ -218849,6 +230517,21 @@ entities: - Pressed: Toggle 40763: - Pressed: Toggle + - uid: 42063 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - type: WirelessNetworkConnection + range: 2000 + - type: DeviceLinkSource + linkedPorts: + 32241: + - Pressed: Toggle + 42062: + - Pressed: Toggle + 18648: + - Pressed: Toggle - proto: SignalTimer entities: - uid: 31210 @@ -218857,11 +230540,18 @@ entities: pos: -8.5,-51.5 parent: 2 - type: DeviceLinkSource + range: 3000 linkedPorts: 18974: - Timer: Trigger 18975: - Timer: Trigger + 42202: + - Timer: Trigger + 27103: + - Timer: Trigger + 38568: + - Timer: Trigger - type: DeviceLinkSink invokeCounter: 1 missingComponents: @@ -218878,44 +230568,6 @@ entities: invokeCounter: 1 missingComponents: - ApcPowerReceiver - - uid: 41399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 40828 - - type: SignalTimer - delay: 2400 - - type: DeviceLinkSource - linkedPorts: - 40853: - - Timer: Close - 40854: - - Timer: Close - 40856: - - Timer: Close - 40855: - - Timer: Close - 41164: - - Timer: Trigger - 41166: - - Timer: Trigger - 41167: - - Timer: Trigger - 41168: - - Timer: Trigger - 41169: - - Timer: Trigger - 41165: - - Timer: Trigger - 40858: - - Timer: Close - 40857: - - Timer: Close - - type: DeviceLinkSink - invokeCounter: 1 - missingComponents: - - ApcPowerReceiver - proto: SignalTimerElectronics entities: - uid: 31212 @@ -218992,11 +230644,11 @@ entities: parent: 2 - proto: SignBio entities: - - uid: 31223 + - uid: 30781 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,20.5 + pos: 33.5,19.5 parent: 2 - proto: SignBiohazardMed entities: @@ -219006,6 +230658,14 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,24.5 parent: 2 +- proto: SignBridge + entities: + - uid: 15343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 2 - proto: SignCanisters entities: - uid: 31225 @@ -219020,6 +230680,13 @@ entities: - type: Transform pos: -49.5,-59.5 parent: 2 +- proto: SignCargo + entities: + - uid: 42220 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 - proto: SignCargoDock entities: - uid: 31227 @@ -219148,6 +230815,24 @@ entities: rot: 3.141592653589793 rad pos: 31.532206,-56.53732 parent: 2 + - uid: 31262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-39.5 + parent: 2 + - uid: 42018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-27.5 + parent: 2 + - uid: 42024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-71.5 + parent: 2 - proto: SignDirectionalBrig entities: - uid: 31246 @@ -219185,11 +230870,23 @@ entities: rot: 3.141592653589793 rad pos: 31.54783,-56.800526 parent: 2 - - uid: 31252 + - uid: 42022 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-39.5 + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - uid: 42023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-71.5 + parent: 2 + - uid: 42026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-39.5 parent: 2 - proto: SignDirectionalChapel entities: @@ -219248,12 +230945,6 @@ entities: rot: 3.141592653589793 rad pos: 30.57463,-70.526985 parent: 2 - - uid: 31262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-39.5 - parent: 2 - proto: SignDirectionalEvac entities: - uid: 31263 @@ -219369,12 +231060,6 @@ entities: parent: 2 - proto: SignDirectionalMed entities: - - uid: 31280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.520876,-28.887794 - parent: 2 - uid: 31281 components: - type: Transform @@ -219428,6 +231113,24 @@ entities: rot: -1.5707963267948966 rad pos: -9.465466,2.6898983 parent: 2 + - uid: 42019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + - uid: 42021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 42025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-71.5 + parent: 2 - proto: SignDirectionalSalvage entities: - uid: 31290 @@ -219444,12 +231147,6 @@ entities: parent: 2 - proto: SignDirectionalSci entities: - - uid: 31292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.520876,-28.856544 - parent: 2 - uid: 31293 components: - type: Transform @@ -219574,6 +231271,11 @@ entities: parent: 2 - proto: SignDirectionalSupply entities: + - uid: 31252 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 - uid: 31314 components: - type: Transform @@ -219601,6 +231303,16 @@ entities: - type: Transform pos: 2.5434494,-77.50745 parent: 2 + - uid: 42017 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 42020 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 - proto: SignDisposalSpace entities: - uid: 31319 @@ -219638,6 +231350,11 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-50.5 parent: 2 + - uid: 42219 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 - proto: SignEVA entities: - uid: 31324 @@ -219713,10 +231430,11 @@ entities: parent: 2 - proto: SignJanitor entities: - - uid: 31335 + - uid: 31197 components: - type: Transform - pos: 6.5,2.5 + rot: 1.5707963267948966 rad + pos: 9.5,2.5 parent: 2 - proto: SignLawyer entities: @@ -219726,11 +231444,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,2.5 parent: 2 - - uid: 31337 - components: - - type: Transform - pos: 29.5,23.5 - parent: 2 - proto: SignLibrary entities: - uid: 31338 @@ -219760,6 +231473,14 @@ entities: - type: Transform pos: -66.5,-18.5 parent: 2 +- proto: SignMedical + entities: + - uid: 26707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 2 - proto: SignMorgue entities: - uid: 31342 @@ -219893,6 +231614,14 @@ entities: - type: Transform pos: 41.5,4.5 parent: 2 +- proto: SignRND + entities: + - uid: 33811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 2 - proto: SignRobo entities: - uid: 31362 @@ -220041,20 +231770,14 @@ entities: - type: Transform pos: -7.5,-14.5 parent: 40828 - - uid: 41413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 40828 - - uid: 41414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 40828 - proto: SignSecurity entities: + - uid: 15342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 2 - uid: 31377 components: - type: Transform @@ -220431,6 +232154,23 @@ entities: parent: 2 - proto: SinkWide entities: + - uid: 8470 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 11740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,20.5 + parent: 2 + - uid: 21377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 2 - uid: 31436 components: - type: Transform @@ -220442,12 +232182,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-10.5 parent: 2 - - uid: 31438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-0.5 - parent: 2 - uid: 31439 components: - type: Transform @@ -221899,7 +233633,7 @@ entities: - uid: 31677 components: - type: Transform - pos: -67.40672,-9.21094 + pos: -66.40726,-7.1659994 parent: 2 - proto: SpaceHeaterAnchored entities: @@ -222105,10 +233839,17 @@ entities: parent: 2 - proto: SpawnMobAlexander entities: - - uid: 31714 + - uid: 22978 components: - type: Transform - pos: 29.5,10.5 + pos: 30.5,19.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 15723 + components: + - type: Transform + pos: 38.5,12.5 parent: 2 - proto: SpawnMobBear entities: @@ -222119,10 +233860,11 @@ entities: parent: 2 - proto: SpawnMobBoxingKangaroo entities: - - uid: 31716 + - uid: 12790 components: - type: Transform - pos: -21.5,-86.5 + rot: -1.5707963267948966 rad + pos: -32.5,-103.5 parent: 2 - proto: SpawnMobCarp entities: @@ -222193,6 +233935,43 @@ entities: - type: Transform pos: 1.5,-22.5 parent: 2 +- proto: SpawnMobCockroach + entities: + - uid: 42433 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 42434 + components: + - type: Transform + pos: 75.5,-10.5 + parent: 2 + - uid: 42435 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 42436 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 42437 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - uid: 42438 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 42439 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 2 - proto: SpawnMobCorgi entities: - uid: 31728 @@ -222216,6 +233995,11 @@ entities: parent: 2 - proto: SpawnMobGorillaLargo entities: + - uid: 16159 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 - uid: 31731 components: - type: Transform @@ -222318,13 +234102,6 @@ entities: - type: Transform pos: 11.5,-27.5 parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 31747 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 2 - proto: SpawnMobPurpleSnake entities: - uid: 31748 @@ -222433,39 +234210,34 @@ entities: - type: Transform pos: -35.5,-52.5 parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 31764 + - uid: 42230 components: - type: Transform - pos: 38.5,10.5 + pos: -67.5,-16.5 parent: 2 - - uid: 31765 +- proto: SpawnPointBotanist + entities: + - uid: 12377 components: - type: Transform - pos: 37.5,10.5 + pos: 37.5,17.5 parent: 2 - - uid: 31766 + - uid: 27397 components: - type: Transform - pos: 36.5,10.5 + pos: 35.5,17.5 parent: 2 - - uid: 31767 + - uid: 31041 components: - type: Transform - pos: 35.5,14.5 + pos: 36.5,17.5 parent: 2 - proto: SpawnPointBoxer entities: - - uid: 31768 - components: - - type: Transform - pos: -28.5,-84.5 - parent: 2 - - uid: 31769 + - uid: 30782 components: - type: Transform - pos: -22.5,-85.5 + pos: -33.5,-102.5 parent: 2 - proto: SpawnPointBrigmedic entities: @@ -222517,10 +234289,10 @@ entities: parent: 2 - proto: SpawnPointChef entities: - - uid: 31777 + - uid: 29473 components: - type: Transform - pos: 28.5,10.5 + pos: 28.5,17.5 parent: 2 - proto: SpawnPointChemist entities: @@ -222578,20 +234350,15 @@ entities: parent: 2 - proto: SpawnPointJanitor entities: - - uid: 31786 - components: - - type: Transform - pos: 6.5,0.5 - parent: 2 - - uid: 31787 + - uid: 15181 components: - type: Transform - pos: 7.5,0.5 + pos: 3.5,-3.5 parent: 2 - - uid: 31788 + - uid: 31335 components: - type: Transform - pos: 8.5,0.5 + pos: 4.5,-3.5 parent: 2 - proto: SpawnPointLatejoin entities: @@ -222965,15 +234732,15 @@ entities: parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 31855 + - uid: 31172 components: - type: Transform - pos: 32.5,-0.5 + pos: 30.5,17.5 parent: 2 - - uid: 31856 + - uid: 31855 components: - type: Transform - pos: 29.5,13.5 + pos: 32.5,-0.5 parent: 2 - uid: 31857 components: @@ -223257,6 +235024,66 @@ entities: - type: Transform pos: 2.5,-24.5 parent: 2 + - uid: 42287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-40.5 + parent: 2 + - uid: 42288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-39.5 + parent: 2 + - uid: 42289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-39.5 + parent: 2 + - uid: 42290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-38.5 + parent: 2 + - uid: 42291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-35.5 + parent: 2 + - uid: 42292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-35.5 + parent: 2 + - uid: 42293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-35.5 + parent: 2 + - uid: 42294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-34.5 + parent: 2 + - uid: 42295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-32.5 + parent: 2 + - uid: 42296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-31.5 + parent: 2 - proto: SpoonPlastic entities: - uid: 31908 @@ -223267,6 +235094,12 @@ entities: parent: 2 - proto: SprayBottleSpaceCleaner entities: + - uid: 26658 + components: + - type: Transform + parent: 32193 + - type: Physics + canCollide: False - uid: 31909 components: - type: Transform @@ -223402,11 +235235,11 @@ entities: parent: 2 - proto: StationAiUploadComputer entities: - - uid: 31931 + - uid: 31766 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,19.5 + pos: 19.5,20.5 parent: 2 - proto: StationAnchorOff entities: @@ -223802,6 +235635,33 @@ entities: parent: 2 - proto: Stool entities: + - uid: 2395 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 16330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-51.5 + parent: 2 + - uid: 26562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-48.5 + parent: 2 + - uid: 26565 + components: + - type: Transform + pos: 85.5,-54.5 + parent: 2 + - uid: 29349 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 - uid: 32000 components: - type: Transform @@ -223858,6 +235718,18 @@ entities: rot: 1.5707963267948966 rad pos: 83.890396,-6.369869 parent: 2 + - uid: 32457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-49.5 + parent: 2 + - uid: 42216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 2 - proto: StoolBar entities: - uid: 32010 @@ -224856,29 +236728,6 @@ entities: - type: Transform pos: 5.5,13.5 parent: 2 - - uid: 41420 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: SuitStorageEVAAlternate entities: - uid: 32113 @@ -225350,17 +237199,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Основной зал - - uid: 32168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Приёмная инженерии - uid: 32169 components: - type: Transform @@ -225597,17 +237435,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: гравиген - - uid: 32193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: якорь - uid: 32194 components: - type: Transform @@ -225673,6 +237500,17 @@ entities: id: Защищённое хранилище плат - proto: SurveillanceCameraGeneral entities: + - uid: 25470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-27.5 + parent: 2 + - uid: 30197 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 - uid: 32200 components: - type: Transform @@ -225749,17 +237587,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Спортзал - - uid: 32207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-43.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор инженерии - uid: 32208 components: - type: Transform @@ -225894,16 +237721,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Коридор Психолога - - uid: 32221 - components: - - type: Transform - pos: 54.5,-42.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Парк - uid: 32222 components: - type: Transform @@ -226003,17 +237820,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Вход в бар - - uid: 32231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Перекрёсток сб-инж - uid: 32232 components: - type: Transform @@ -226106,17 +237912,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-58.5 parent: 2 - - uid: 32241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: коридор хранилища - uid: 32242 components: - type: Transform @@ -226128,17 +237923,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: вход гравиген - - uid: 32243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: правый лифт - uid: 32244 components: - type: Transform @@ -226201,17 +237985,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Комната Пилота - - uid: 32250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Какой-то коридор - uid: 32251 components: - type: Transform @@ -227163,6 +238936,17 @@ entities: parent: 2 - proto: SurveillanceCameraService entities: + - uid: 31042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Сад - uid: 32345 components: - type: Transform @@ -227207,17 +238991,6 @@ entities: - SurveillanceCameraService nameSet: True id: Репортёр - - uid: 32350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Уборщик - uid: 32351 components: - type: Transform @@ -227229,17 +239002,6 @@ entities: - SurveillanceCameraService nameSet: True id: Ботаника - - uid: 32352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Ботаническая лаборатория - uid: 32353 components: - type: Transform @@ -227261,6 +239023,16 @@ entities: - SurveillanceCameraService nameSet: True id: Оранжерея + - uid: 32664 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Биологическая лаборатория - proto: SurveillanceCameraSupply entities: - uid: 32355 @@ -227446,14 +239218,16 @@ entities: - uid: 32373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-86.5 + rot: -7.115654934440748 rad + pos: -30.461403,-100.97617 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEntertainment nameSet: True id: Ринг + - type: Pullable + prevFixedRotation: True - proto: SyndicateMicrowave entities: - uid: 32374 @@ -227477,15 +239251,10 @@ entities: - type: Transform pos: -55.485992,-68.42716 parent: 2 - - uid: 32377 - components: - - type: Transform - pos: 36.23887,15.6179285 - parent: 2 - uid: 32378 components: - type: Transform - pos: -76.57504,-7.32294 + pos: -76.54486,-8.279388 parent: 2 - uid: 32379 components: @@ -227613,6 +239382,46 @@ entities: canCollide: False - proto: Table entities: + - uid: 347 + components: + - type: Transform + pos: 87.5,-51.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: -17.5,-84.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + pos: -17.5,-85.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + pos: -17.5,-88.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + pos: -17.5,-87.5 + parent: 2 + - uid: 15579 + components: + - type: Transform + pos: 87.5,-52.5 + parent: 2 + - uid: 27754 + components: + - type: Transform + pos: 84.5,-55.5 + parent: 2 + - uid: 27761 + components: + - type: Transform + pos: 86.5,-55.5 + parent: 2 - uid: 32386 components: - type: Transform @@ -227669,12 +239478,6 @@ entities: - type: Transform pos: 46.5,-2.5 parent: 2 - - uid: 32396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-10.5 - parent: 2 - uid: 32397 components: - type: Transform @@ -228004,11 +239807,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-34.5 parent: 2 - - uid: 32457 - components: - - type: Transform - pos: 46.5,20.5 - parent: 2 - uid: 32458 components: - type: Transform @@ -228066,12 +239864,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-33.5 parent: 2 - - uid: 32468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 2 - uid: 32469 components: - type: Transform @@ -228109,12 +239901,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-13.5 parent: 2 - - uid: 32476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,15.5 - parent: 2 - uid: 32477 components: - type: Transform @@ -228366,12 +240152,6 @@ entities: - type: Transform pos: -45.5,4.5 parent: 2 - - uid: 32523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-17.5 - parent: 2 - uid: 32524 components: - type: Transform @@ -228722,12 +240502,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-51.5 parent: 2 - - uid: 32587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-73.5 - parent: 2 - uid: 32588 components: - type: Transform @@ -228745,12 +240519,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-87.5 parent: 2 - - uid: 32591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,19.5 - parent: 2 - uid: 32592 components: - type: Transform @@ -228981,24 +240749,6 @@ entities: rot: 3.141592653589793 rad pos: -63.5,-31.5 parent: 2 - - uid: 32634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-15.5 - parent: 2 - - uid: 32635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-18.5 - parent: 2 - - uid: 32636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-18.5 - parent: 2 - uid: 32637 components: - type: Transform @@ -229143,12 +240893,6 @@ entities: rot: 1.5707963267948966 rad pos: 104.5,-59.5 parent: 2 - - uid: 32664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,15.5 - parent: 2 - uid: 32665 components: - type: Transform @@ -229243,12 +240987,7 @@ entities: - uid: 32682 components: - type: Transform - pos: 39.5,18.5 - parent: 2 - - uid: 32683 - components: - - type: Transform - pos: 46.5,21.5 + pos: 85.5,-55.5 parent: 2 - uid: 32684 components: @@ -229471,6 +241210,22 @@ entities: - type: Transform pos: -9.5,13.5 parent: 2 + - uid: 32736 + components: + - type: Transform + pos: 86.5,-50.5 + parent: 2 + - uid: 33688 + components: + - type: Transform + pos: 86.5,-49.5 + parent: 2 + - uid: 34153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 2 - uid: 41421 components: - type: Transform @@ -229487,6 +241242,23 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 41669 + - uid: 42048 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 42363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - uid: 42364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 - proto: TableBrass entities: - uid: 32724 @@ -229524,12 +241296,6 @@ entities: - type: Transform pos: 24.5,6.5 parent: 2 - - uid: 32730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-49.5 - parent: 2 - uid: 32731 components: - type: Transform @@ -229557,23 +241323,11 @@ entities: - type: Transform pos: -66.5,-8.5 parent: 2 - - uid: 32736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-49.5 - parent: 2 - uid: 32737 components: - type: Transform pos: 36.5,5.5 parent: 2 - - uid: 32738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-47.5 - parent: 2 - uid: 32739 components: - type: Transform @@ -229880,25 +241634,12 @@ entities: - type: Transform pos: -8.5,18.5 parent: 2 -- proto: TableFancyPink - entities: - - uid: 32794 - components: - - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 32795 - components: - - type: Transform - pos: 2.5,0.5 - parent: 2 - proto: TableFrame entities: - - uid: 32796 + - uid: 14864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-48.5 + pos: 46.5,20.5 parent: 2 - uid: 32797 components: @@ -229938,12 +241679,6 @@ entities: - type: Transform pos: -57.5,-9.5 parent: 2 - - uid: 32804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-47.5 - parent: 2 - uid: 32805 components: - type: Transform @@ -230189,6 +241924,33 @@ entities: parent: 2 - proto: TableReinforced entities: + - uid: 10107 + components: + - type: Transform + pos: -69.5,-15.5 + parent: 2 + - uid: 28289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - uid: 31177 + components: + - type: Transform + pos: -70.5,-15.5 + parent: 2 + - uid: 31198 + components: + - type: Transform + pos: -69.5,-18.5 + parent: 2 + - uid: 31767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,8.5 + parent: 2 - uid: 32845 components: - type: Transform @@ -230491,11 +242253,6 @@ entities: - type: Transform pos: 29.5,11.5 parent: 2 - - uid: 32901 - components: - - type: Transform - pos: 29.5,14.5 - parent: 2 - uid: 32902 components: - type: Transform @@ -231213,6 +242970,17 @@ entities: rot: 3.141592653589793 rad pos: 73.5,-8.5 parent: 2 + - uid: 35793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,8.5 + parent: 2 + - uid: 39555 + components: + - type: Transform + pos: -70.5,-18.5 + parent: 2 - uid: 40780 components: - type: Transform @@ -231270,6 +243038,12 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 41669 + - uid: 42379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,14.5 + parent: 2 - proto: TableReinforcedGlass entities: - uid: 33038 @@ -231528,11 +243302,6 @@ entities: - type: Transform pos: -41.5,-99.5 parent: 2 - - uid: 33084 - components: - - type: Transform - pos: 25.5,4.5 - parent: 2 - uid: 33085 components: - type: Transform @@ -231639,6 +243408,12 @@ entities: parent: 40828 - proto: TableWood entities: + - uid: 28819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,4.5 + parent: 2 - uid: 33103 components: - type: Transform @@ -231764,11 +243539,6 @@ entities: rot: 3.141592653589793 rad pos: -65.5,9.5 parent: 2 - - uid: 33126 - components: - - type: Transform - pos: 86.5,-51.5 - parent: 2 - uid: 33127 components: - type: Transform @@ -231809,17 +243579,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-98.5 parent: 2 - - uid: 33134 - components: - - type: Transform - pos: 87.5,-51.5 - parent: 2 - - uid: 33135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-46.5 - parent: 2 - uid: 33136 components: - type: Transform @@ -232158,11 +243917,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,7.5 parent: 2 - - uid: 33199 - components: - - type: Transform - pos: -31.5,4.5 - parent: 2 - uid: 33200 components: - type: Transform @@ -232272,12 +244026,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-25.5 parent: 2 - - uid: 33219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-71.5 - parent: 2 - uid: 33220 components: - type: Transform @@ -232540,29 +244288,6 @@ entities: - type: Transform pos: -3.5,-73.5 parent: 2 - - uid: 33268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,20.5 - parent: 2 - - uid: 33269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,20.5 - parent: 2 - - uid: 33270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,20.5 - parent: 2 - - uid: 33271 - components: - - type: Transform - pos: 28.5,21.5 - parent: 2 - uid: 33272 components: - type: Transform @@ -232848,23 +244573,11 @@ entities: parent: 2 - proto: TargetDarts entities: - - uid: 33323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-52.5 - parent: 2 - uid: 33324 components: - type: Transform pos: 34.5,-13.5 parent: 2 - - uid: 33325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-54.5 - parent: 2 - proto: TargetHuman entities: - uid: 33326 @@ -233037,18 +244750,6 @@ entities: - type: Transform pos: 92.5,-69.5 parent: 2 -- proto: Telecrystal1 - entities: - - uid: 33348 - components: - - type: Transform - pos: -88.61501,-0.98512447 - parent: 2 - - uid: 33349 - components: - - type: Transform - pos: -88.52126,-1.1882495 - parent: 2 - proto: TeslaCoil entities: - uid: 33350 @@ -233105,8 +244806,9 @@ entities: - uid: 33359 components: - type: Transform - pos: 106.47719,-57.460983 + pos: -38.487923,-118.47266 parent: 2 + - type: ActivatedElectrified - proto: ThrowingKnife entities: - uid: 15821 @@ -233306,6 +245008,30 @@ entities: parent: 2 - proto: TintedWindow entities: + - uid: 16887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 2 + - uid: 31786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 31787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 2 + - uid: 31788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 2 - uid: 33377 components: - type: Transform @@ -233532,6 +245258,16 @@ entities: - type: Transform pos: -27.5,-94.5 parent: 2 + - uid: 36624 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 40284 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 - proto: ToiletDirtyWater entities: - uid: 18963 @@ -233667,6 +245403,8 @@ entities: - type: Transform pos: 19.5,15.5 parent: 2 + - type: StaticPrice + price: 150000 - proto: TomDrumsInstrument entities: - uid: 33437 @@ -233683,6 +245421,11 @@ entities: parent: 2 - proto: ToolboxElectricalFilled entities: + - uid: 28800 + components: + - type: Transform + pos: -68.516685,-15.294145 + parent: 2 - uid: 33439 components: - type: Transform @@ -233718,11 +245461,6 @@ entities: - type: Transform pos: -39.45987,-65.42333 parent: 2 - - uid: 33446 - components: - - type: Transform - pos: -69.498184,-15.4779215 - parent: 2 - uid: 33447 components: - type: Transform @@ -233880,23 +245618,17 @@ entities: - type: Transform pos: -20.461906,-54.491467 parent: 2 -- proto: TorsoBorgMedical - entities: - uid: 33475 components: - type: Transform pos: -15.665031,-46.449615 parent: 2 -- proto: TorsoBorgMining - entities: - uid: 33476 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.586906,-47.241467 parent: 2 -- proto: TorsoBorgService - entities: - uid: 33477 components: - type: Transform @@ -233905,13 +245637,6 @@ entities: parent: 2 - proto: TorsoSkeleton entities: - - uid: 15727 - components: - - type: Transform - parent: 15725 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 33478 components: - type: Transform @@ -233981,19 +245706,12 @@ entities: - type: Transform pos: 24.419611,4.656468 parent: 2 -- proto: ToyFigurineBotanist - entities: - - uid: 33487 - components: - - type: Transform - pos: 46.713566,21.843922 - parent: 2 - proto: ToyFigurineBoxer entities: - uid: 33488 components: - type: Transform - pos: -22.714005,-85.46079 + pos: -33.200916,-103.15729 parent: 2 - proto: ToyFigurineCaptain entities: @@ -234088,10 +245806,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 33501 + - uid: 42047 components: - type: Transform - pos: 9.525852,1.1365409 + pos: 3.4866855,-4.361102 parent: 2 - proto: ToyFigurineLawyer entities: @@ -234100,7 +245818,7 @@ entities: - type: MetaData desc: Лучше звоните Солу! - type: Transform - pos: 27.843733,20.812897 + pos: -23.090902,6.7252207 parent: 2 - proto: ToyFigurineLibrarian entities: @@ -234306,11 +246024,6 @@ entities: rot: 1.5707963267948966 rad pos: 69.93756,-39.266895 parent: 2 - - uid: 33533 - components: - - type: Transform - pos: -38.44166,16.645557 - parent: 2 - proto: ToyHonk entities: - uid: 33534 @@ -234464,25 +246177,11 @@ entities: - type: Transform pos: -84.5,2.5 parent: 2 - - uid: 33559 - components: - - type: Transform - pos: 39.5,18.5 - parent: 2 - uid: 33560 components: - type: Transform pos: -51.5,-49.5 parent: 2 -- proto: ToySword - entities: - - uid: 33561 - components: - - type: MetaData - name: энергетический меч - - type: Transform - pos: 25.566833,-27.498644 - parent: 2 - proto: TrackingImplanter entities: - uid: 2490 @@ -234503,11 +246202,39 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 33562 +- proto: TrashBagBlue + entities: + - uid: 26870 components: - type: Transform - pos: 9.736515,-1.419064 + parent: 32193 + - type: Physics + canCollide: False + - uid: 42043 + components: + - type: Transform + pos: 9.349471,0.5716343 + parent: 2 + - uid: 42201 + components: + - type: MetaData + desc: Лучшая разработка для самых лентяйских лентяев! Вам лень смешивать карты вручную? Просто соберите карты в этот мешок и несколько раз скиньте их на стол! + name: мешок для перемешивания карт + - type: Transform + pos: -67.64901,-9.244574 parent: 2 + - type: Storage + grid: + - 0,0,12,3 + whitelist: + requireAll: False + tags: + - Paper + sizes: null + mindRoles: null + components: null + - type: Dumpable + delayPerItem: 0 - proto: TrashBananaPeel entities: - uid: 33563 @@ -234532,12 +246259,6 @@ entities: - type: Transform pos: 64.49327,-24.385387 parent: 2 - - uid: 33567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -69.38881,-15.3060465 - parent: 2 - uid: 33568 components: - type: Transform @@ -234566,6 +246287,21 @@ entities: - type: Transform pos: -17.42481,-51.40888 parent: 2 + - uid: 42304 + components: + - type: Transform + pos: -20.603018,-54.029713 + parent: 2 + - uid: 42305 + components: + - type: Transform + pos: -20.649893,-49.597214 + parent: 2 + - uid: 42306 + components: + - type: Transform + pos: -20.368643,-49.42534 + parent: 2 - proto: TreasureCoinAdamantine entities: - uid: 26415 @@ -234688,6 +246424,16 @@ entities: rot: -1.5707963267948966 rad pos: -19.121155,-45.518253 parent: 2 + - uid: 42307 + components: + - type: Transform + pos: -20.255667,-49.695477 + parent: 2 + - uid: 42308 + components: + - type: Transform + pos: -19.490042,-45.3361 + parent: 2 - proto: TreasureHardDiskDrive entities: - uid: 33584 @@ -234715,6 +246461,11 @@ entities: - type: Transform pos: 18.487862,-15.536564 parent: 2 + - uid: 42309 + components: + - type: Transform + pos: -15.224417,-46.69772 + parent: 2 - proto: TreasureSampleTube entities: - uid: 33589 @@ -235130,8 +246881,35 @@ entities: - Left: Reverse - Right: Forward - Middle: Off + - uid: 42045 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 30977: + - Left: Open + - Middle: Close + - Right: Open + 30976: + - Left: Open + - Right: Open + - Middle: Close - proto: UnfinishedMachineFrame entities: + - uid: 11967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 + - uid: 23668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,22.5 + parent: 2 - uid: 33627 components: - type: Transform @@ -235212,12 +246990,12 @@ entities: - uid: 33640 components: - type: Transform - pos: -24.186638,-84.49248 + pos: -33.74704,-107.28026 parent: 2 - uid: 33641 components: - type: Transform - pos: -19.671013,-87.22685 + pos: -33.851795,-107.350006 parent: 2 - uid: 33642 components: @@ -235509,10 +247287,10 @@ entities: parent: 2 - proto: VendingMachineChefDrobe entities: - - uid: 33688 + - uid: 641 components: - type: Transform - pos: 26.5,9.5 + pos: 28.5,16.5 parent: 2 - uid: 33689 components: @@ -235841,11 +247619,6 @@ entities: - type: Transform pos: -70.5,-47.5 parent: 2 - - uid: 33748 - components: - - type: Transform - pos: 24.5,25.5 - parent: 2 - proto: VendingMachineEngiDrobe entities: - uid: 33749 @@ -235908,17 +247681,17 @@ entities: parent: 2 - proto: VendingMachineHydrobe entities: - - uid: 33759 + - uid: 30671 components: - type: Transform - pos: 35.5,9.5 + pos: 33.5,18.5 parent: 2 - proto: VendingMachineJaniDrobe entities: - - uid: 33760 + - uid: 31438 components: - type: Transform - pos: 5.5,1.5 + pos: 3.5,-5.5 parent: 2 - proto: VendingMachineLawDrobe entities: @@ -235936,6 +247709,11 @@ entities: parent: 2 - proto: VendingMachineMedical entities: + - uid: 32350 + components: + - type: Transform + pos: 80.5,-10.5 + parent: 2 - uid: 33763 components: - type: Transform @@ -235970,10 +247748,10 @@ entities: parent: 2 - proto: VendingMachineNutri entities: - - uid: 33768 + - uid: 2654 components: - type: Transform - pos: 38.5,15.5 + pos: 37.5,15.5 parent: 2 - proto: VendingMachinePwrGame entities: @@ -236071,6 +247849,11 @@ entities: parent: 2 - proto: VendingMachineSeeds entities: + - uid: 2687 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 - uid: 33783 components: - type: Transform @@ -236078,11 +247861,6 @@ entities: parent: 2 missingComponents: - AccessReader - - uid: 33784 - components: - - type: Transform - pos: 34.5,15.5 - parent: 2 - proto: VendingMachineSovietSoda entities: - uid: 33785 @@ -236242,20 +248020,18 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-26.5 parent: 2 - - uid: 33811 + - uid: 42096 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-11.5 - parent: 2 - - uid: 41900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 + pos: 4.5,-0.5 parent: 41669 - proto: VendingMachineWinter entities: + - uid: 14833 + components: + - type: Transform + pos: -17.5,-86.5 + parent: 2 - uid: 33812 components: - type: Transform @@ -236292,6 +248068,50 @@ entities: parent: 2 - proto: WallIce entities: + - uid: 27996 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 50 + triggersOnce: False + triggered: False + behaviors: + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + Girder: + max: 1 + min: 1 + - !type:DoActsBehavior + acts: Destruction + - uid: 28814 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 50 + triggersOnce: False + triggered: False + behaviors: + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + Girder: + max: 1 + min: 1 + - !type:DoActsBehavior + acts: Destruction - uid: 33818 components: - type: MetaData @@ -236613,6 +248433,59 @@ entities: parent: 2 - proto: WallReinforced entities: + - uid: 16271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,17.5 + parent: 2 + - uid: 16889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - uid: 19814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-41.5 + parent: 2 + - uid: 26703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 28664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,21.5 + parent: 2 + - uid: 31079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,22.5 + parent: 2 + - uid: 33134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,20.5 + parent: 2 + - uid: 33325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,19.5 + parent: 2 + - uid: 33567 + components: + - type: Transform + pos: -69.5,-19.5 + parent: 2 - uid: 33856 components: - type: Transform @@ -237953,12 +249826,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-3.5 parent: 2 - - uid: 34106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 2 - uid: 34107 components: - type: Transform @@ -238196,42 +250063,6 @@ entities: - type: Transform pos: 17.5,-34.5 parent: 2 - - uid: 34152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 2 - - uid: 34153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 2 - - uid: 34154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 2 - - uid: 34155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 2 - - uid: 34156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 2 - - uid: 34157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 2 - uid: 34158 components: - type: Transform @@ -241405,12 +253236,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-44.5 parent: 2 - - uid: 34744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-41.5 - parent: 2 - uid: 34745 components: - type: Transform @@ -242583,11 +254408,6 @@ entities: - type: Transform pos: -58.5,-89.5 parent: 2 - - uid: 34960 - components: - - type: Transform - pos: -58.5,-90.5 - parent: 2 - uid: 34961 components: - type: Transform @@ -246815,11 +258635,6 @@ entities: - type: Transform pos: -55.5,1.5 parent: 2 - - uid: 35734 - components: - - type: Transform - pos: -54.5,1.5 - parent: 2 - uid: 35735 components: - type: Transform @@ -247037,11 +258852,6 @@ entities: rot: 3.141592653589793 rad pos: 97.5,-37.5 parent: 2 - - uid: 35778 - components: - - type: Transform - pos: -69.5,-19.5 - parent: 2 - uid: 35779 components: - type: Transform @@ -247107,16 +258917,6 @@ entities: - type: Transform pos: -51.5,4.5 parent: 2 - - uid: 35792 - components: - - type: Transform - pos: -51.5,3.5 - parent: 2 - - uid: 35793 - components: - - type: Transform - pos: -51.5,2.5 - parent: 2 - uid: 35794 components: - type: Transform @@ -248193,12 +259993,6 @@ entities: - type: Transform pos: 33.5,-79.5 parent: 2 - - uid: 35996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,18.5 - parent: 2 - uid: 35997 components: - type: Transform @@ -248392,11 +260186,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-100.5 parent: 2 - - uid: 36032 - components: - - type: Transform - pos: 23.5,-30.5 - parent: 2 - uid: 36033 components: - type: Transform @@ -249813,12 +261602,6 @@ entities: - type: Transform pos: 23.5,-88.5 parent: 2 - - uid: 36281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,19.5 - parent: 2 - uid: 36282 components: - type: Transform @@ -250249,11 +262032,6 @@ entities: - type: Transform pos: 23.5,24.5 parent: 2 - - uid: 36359 - components: - - type: Transform - pos: 23.5,21.5 - parent: 2 - uid: 36360 components: - type: Transform @@ -251700,18 +263478,6 @@ entities: rot: 1.5707963267948966 rad pos: 80.5,8.5 parent: 2 - - uid: 36623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 2 - - uid: 36624 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 2 - uid: 36625 components: - type: Transform @@ -253842,8 +265608,116 @@ entities: - type: Transform pos: -12.5,15.5 parent: 2 + - uid: 37341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,19.5 + parent: 2 + - uid: 37342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,19.5 + parent: 2 + - uid: 37343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,20.5 + parent: 2 + - uid: 37344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,21.5 + parent: 2 + - uid: 37345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,22.5 + parent: 2 + - uid: 37346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,23.5 + parent: 2 + - uid: 37796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,19.5 + parent: 2 + - uid: 37810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,19.5 + parent: 2 + - uid: 37811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,19.5 + parent: 2 + - uid: 37812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,19.5 + parent: 2 + - uid: 38479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 2 + - uid: 40221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-30.5 + parent: 2 + - uid: 42104 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 42215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-90.5 + parent: 2 + - uid: 42217 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 42218 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 - proto: WallReinforcedRust entities: + - uid: 33269 + components: + - type: Transform + pos: -54.5,1.5 + parent: 2 + - uid: 33270 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 + - uid: 33271 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 - uid: 37006 components: - type: Transform @@ -254318,11 +266192,6 @@ entities: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 37100 - components: - - type: Transform - pos: -23.5,-41.5 - parent: 2 - uid: 37101 components: - type: Transform @@ -255532,6 +267401,21 @@ entities: parent: 2 - proto: WallRockSnow entities: + - uid: 19785 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 2 + - uid: 28040 + components: + - type: Transform + pos: 47.5,-35.5 + parent: 2 + - uid: 28041 + components: + - type: Transform + pos: 48.5,-35.5 + parent: 2 - uid: 37330 components: - type: Transform @@ -257051,75 +268935,182 @@ entities: parent: 41669 - proto: WallSolid entities: - - uid: 37335 + - uid: 233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-17.5 + pos: 29.5,23.5 parent: 2 - - uid: 37336 + - uid: 1037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-22.5 + pos: 38.5,18.5 parent: 2 - - uid: 37337 + - uid: 2446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-22.5 + rot: 3.141592653589793 rad + pos: 32.5,18.5 parent: 2 - - uid: 37338 + - uid: 2546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,21.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,22.5 + parent: 2 + - uid: 6120 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-80.5 + pos: -65.5,1.5 parent: 2 - - uid: 37339 + - uid: 6990 components: - type: Transform - pos: 21.5,-77.5 + rot: 3.141592653589793 rad + pos: 84.5,-45.5 parent: 2 - - uid: 37340 + - uid: 7680 components: - type: Transform - pos: 42.5,-12.5 + pos: 44.5,21.5 parent: 2 - - uid: 37341 + - uid: 8466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,19.5 + pos: 43.5,21.5 parent: 2 - - uid: 37342 + - uid: 11520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,19.5 + rot: 3.141592653589793 rad + pos: 27.5,19.5 parent: 2 - - uid: 37343 + - uid: 11673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,20.5 + rot: 3.141592653589793 rad + pos: 30.5,22.5 parent: 2 - - uid: 37344 + - uid: 11737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 2 + - uid: 13349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-44.5 + parent: 2 + - uid: 13354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,22.5 + parent: 2 + - uid: 13710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,20.5 + parent: 2 + - uid: 15108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 + - uid: 15691 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 16285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 17340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 2 + - uid: 18585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 + - uid: 19893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 2 + - uid: 19961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - uid: 28305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-52.5 + parent: 2 + - uid: 31714 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 37335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-17.5 + parent: 2 + - uid: 37336 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,21.5 + pos: -57.5,-22.5 parent: 2 - - uid: 37345 + - uid: 37337 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,22.5 + pos: -59.5,-22.5 parent: 2 - - uid: 37346 + - uid: 37338 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,23.5 + pos: 16.5,-80.5 + parent: 2 + - uid: 37339 + components: + - type: Transform + pos: 21.5,-77.5 + parent: 2 + - uid: 37340 + components: + - type: Transform + pos: 42.5,-12.5 parent: 2 - uid: 37347 components: @@ -257340,11 +269331,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,11.5 parent: 2 - - uid: 37390 - components: - - type: Transform - pos: 35.5,8.5 - parent: 2 - uid: 37391 components: - type: Transform @@ -257544,12 +269530,6 @@ entities: rot: 3.141592653589793 rad pos: -59.5,5.5 parent: 2 - - uid: 37427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,1.5 - parent: 2 - uid: 37428 components: - type: Transform @@ -258170,11 +270150,6 @@ entities: - type: Transform pos: -54.5,-93.5 parent: 2 - - uid: 37537 - components: - - type: Transform - pos: -56.5,-93.5 - parent: 2 - uid: 37538 components: - type: Transform @@ -258677,11 +270652,6 @@ entities: - type: Transform pos: 95.5,-47.5 parent: 2 - - uid: 37630 - components: - - type: Transform - pos: 88.5,-53.5 - parent: 2 - uid: 37631 components: - type: Transform @@ -258834,11 +270804,6 @@ entities: rot: -1.5707963267948966 rad pos: 101.5,-43.5 parent: 2 - - uid: 37660 - components: - - type: Transform - pos: 82.5,-50.5 - parent: 2 - uid: 37661 components: - type: Transform @@ -258849,16 +270814,6 @@ entities: - type: Transform pos: 87.5,-46.5 parent: 2 - - uid: 37663 - components: - - type: Transform - pos: 84.5,-50.5 - parent: 2 - - uid: 37664 - components: - - type: Transform - pos: 85.5,-50.5 - parent: 2 - uid: 37665 components: - type: Transform @@ -258869,11 +270824,6 @@ entities: - type: Transform pos: 87.5,-45.5 parent: 2 - - uid: 37667 - components: - - type: Transform - pos: 83.5,-50.5 - parent: 2 - uid: 37668 components: - type: Transform @@ -258957,11 +270907,6 @@ entities: - type: Transform pos: 41.5,-64.5 parent: 2 - - uid: 37684 - components: - - type: Transform - pos: 86.5,-50.5 - parent: 2 - uid: 37685 components: - type: Transform @@ -259053,11 +270998,6 @@ entities: - type: Transform pos: 32.5,31.5 parent: 2 - - uid: 37703 - components: - - type: Transform - pos: 6.5,2.5 - parent: 2 - uid: 37704 components: - type: Transform @@ -259335,16 +271275,6 @@ entities: - type: Transform pos: 36.5,16.5 parent: 2 - - uid: 37758 - components: - - type: Transform - pos: 35.5,16.5 - parent: 2 - - uid: 37759 - components: - - type: Transform - pos: 36.5,8.5 - parent: 2 - uid: 37760 components: - type: Transform @@ -259527,12 +271457,6 @@ entities: - type: Transform pos: 23.5,-81.5 parent: 2 - - uid: 37796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,19.5 - parent: 2 - uid: 37797 components: - type: Transform @@ -259598,24 +271522,6 @@ entities: - type: Transform pos: 75.5,-25.5 parent: 2 - - uid: 37810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,19.5 - parent: 2 - - uid: 37811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,19.5 - parent: 2 - - uid: 37812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,19.5 - parent: 2 - uid: 37813 components: - type: Transform @@ -262914,11 +274820,6 @@ entities: - type: Transform pos: -56.5,-15.5 parent: 2 - - uid: 38471 - components: - - type: Transform - pos: -55.5,-10.5 - parent: 2 - uid: 38472 components: - type: Transform @@ -262944,41 +274845,16 @@ entities: - type: Transform pos: -51.5,-8.5 parent: 2 - - uid: 38477 - components: - - type: Transform - pos: -52.5,-8.5 - parent: 2 - uid: 38478 components: - type: Transform pos: -56.5,-8.5 parent: 2 - - uid: 38479 - components: - - type: Transform - pos: -56.5,-7.5 - parent: 2 - - uid: 38480 - components: - - type: Transform - pos: -56.5,-6.5 - parent: 2 - uid: 38481 components: - type: Transform pos: -51.5,-4.5 parent: 2 - - uid: 38482 - components: - - type: Transform - pos: -51.5,-5.5 - parent: 2 - - uid: 38483 - components: - - type: Transform - pos: -51.5,-6.5 - parent: 2 - uid: 38484 components: - type: Transform @@ -263069,16 +274945,6 @@ entities: - type: Transform pos: -46.5,1.5 parent: 2 - - uid: 38502 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 2 - - uid: 38503 - components: - - type: Transform - pos: -46.5,-1.5 - parent: 2 - uid: 38504 components: - type: Transform @@ -263089,16 +274955,6 @@ entities: - type: Transform pos: -47.5,-4.5 parent: 2 - - uid: 38506 - components: - - type: Transform - pos: -46.5,-4.5 - parent: 2 - - uid: 38507 - components: - - type: Transform - pos: -45.5,-4.5 - parent: 2 - uid: 38508 components: - type: Transform @@ -263405,11 +275261,6 @@ entities: - type: Transform pos: -40.5,2.5 parent: 2 - - uid: 38568 - components: - - type: Transform - pos: -40.5,3.5 - parent: 2 - uid: 38569 components: - type: Transform @@ -263430,16 +275281,6 @@ entities: - type: Transform pos: -42.5,5.5 parent: 2 - - uid: 38573 - components: - - type: Transform - pos: -43.5,5.5 - parent: 2 - - uid: 38574 - components: - - type: Transform - pos: -44.5,5.5 - parent: 2 - uid: 38575 components: - type: Transform @@ -264277,11 +276118,6 @@ entities: - type: Transform pos: 43.5,22.5 parent: 2 - - uid: 38738 - components: - - type: Transform - pos: 43.5,21.5 - parent: 2 - uid: 38739 components: - type: Transform @@ -265644,84 +277480,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,22.5 parent: 2 - - uid: 38984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,18.5 - parent: 2 - - uid: 38985 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,18.5 - parent: 2 - - uid: 38986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,18.5 - parent: 2 - - uid: 38987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,18.5 - parent: 2 - - uid: 38988 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,18.5 - parent: 2 - - uid: 38989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,18.5 - parent: 2 - - uid: 38990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,19.5 - parent: 2 - - uid: 38991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,20.5 - parent: 2 - - uid: 38992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,22.5 - parent: 2 - - uid: 38993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,21.5 - parent: 2 - - uid: 38994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,23.5 - parent: 2 - - uid: 38995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,20.5 - parent: 2 - - uid: 38996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,20.5 - parent: 2 - uid: 38997 components: - type: Transform @@ -265800,21 +277558,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-50.5 parent: 2 - - uid: 39010 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 39011 - components: - - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 39012 - components: - - type: Transform - pos: 24.5,23.5 - parent: 2 - uid: 39013 components: - type: Transform @@ -266217,12 +277960,6 @@ entities: rot: 1.5707963267948966 rad pos: -67.5,-28.5 parent: 2 - - uid: 39090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,17.5 - parent: 2 - uid: 39091 components: - type: Transform @@ -266437,11 +278174,6 @@ entities: - type: Transform pos: -69.5,4.5 parent: 2 - - uid: 39132 - components: - - type: Transform - pos: 81.5,-50.5 - parent: 2 - uid: 39133 components: - type: Transform @@ -268004,6 +279736,71 @@ entities: parent: 2 - proto: WallSolidRust entities: + - uid: 35996 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 36281 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 + - uid: 36359 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 37390 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 2 + - uid: 37630 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 37660 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 37663 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 37664 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 37667 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 2 + - uid: 37684 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 + - uid: 37758 + components: + - type: Transform + pos: -40.5,3.5 + parent: 2 + - uid: 37759 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 + - uid: 38471 + components: + - type: Transform + pos: -44.5,5.5 + parent: 2 - uid: 39411 components: - type: Transform @@ -268071,16 +279868,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39422 - components: - - type: Transform - pos: 60.21232,5.681077 - parent: 2 - - uid: 39423 - components: - - type: Transform - pos: 60.21232,5.509202 - parent: 2 - uid: 39424 components: - type: Transform @@ -268134,6 +279921,13 @@ entities: showEnts: False occludes: True ent: null +- proto: WardrobeBotanistFilled + entities: + - uid: 26907 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 - proto: WardrobeCargoFilled entities: - uid: 39427 @@ -268141,6 +279935,20 @@ entities: - type: Transform pos: 11.5,-103.5 parent: 2 +- proto: WardrobeChapelFilled + entities: + - uid: 15788 + components: + - type: Transform + pos: 33.5,-73.5 + parent: 2 +- proto: WardrobeEngineeringFilled + entities: + - uid: 42445 + components: + - type: Transform + pos: 86.5,-63.5 + parent: 2 - proto: WardrobeFormal entities: - uid: 15530 @@ -268154,8 +279962,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8977377 - - 7.139109 + - 1.8978093 + - 7.139378 - 0 - 0 - 0 @@ -268172,11 +279980,11 @@ entities: showEnts: False occludes: True ents: - - 15531 - - 15534 - - 15535 - - 15532 + - 19761 - 15533 + - 15532 + - 15535 + - 15534 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -268215,40 +280023,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 27761 - components: - - type: Transform - pos: 86.5,-46.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 27762 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 39428 components: - type: Transform @@ -268281,11 +280055,6 @@ entities: parent: 2 - proto: WardrobeGreenFilled entities: - - uid: 39430 - components: - - type: Transform - pos: 86.5,-45.5 - parent: 2 - uid: 39431 components: - type: Transform @@ -268500,6 +280269,24 @@ entities: - type: Transform pos: 87.5,0.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -268507,6 +280294,7 @@ entities: occludes: True ents: - 19722 + - 15795 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -268522,8 +280310,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -268541,6 +280329,7 @@ entities: occludes: True ents: - 19725 + - 16161 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -268556,8 +280345,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -268575,6 +280364,7 @@ entities: occludes: True ents: - 30660 + - 27970 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -268584,31 +280374,206 @@ entities: - type: Transform pos: 39.5,5.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30790 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 39437 components: - type: Transform pos: 39.5,2.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30791 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 39438 components: - type: Transform pos: 48.5,4.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12518 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 39439 components: - type: Transform pos: 48.5,1.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30792 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 39440 components: - type: Transform pos: 46.5,10.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30793 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 39441 components: - type: Transform pos: 48.5,10.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30794 + - 27567 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 39442 components: - type: Transform @@ -268715,6 +280680,18 @@ entities: - 0 - 0 - 0 +- proto: WardrobeScienceFilled + entities: + - uid: 33348 + components: + - type: Transform + pos: -60.5,-64.5 + parent: 2 + - uid: 42441 + components: + - type: Transform + pos: -61.5,-64.5 + parent: 2 - proto: WardrobeVirologyFilled entities: - uid: 15782 @@ -268905,13 +280882,6 @@ entities: parent: 2 - type: WarpPoint location: Каюта капитана - - uid: 39469 - components: - - type: Transform - pos: 15.5,-98.5 - parent: 2 - missingComponents: - - WarpPoint - uid: 39470 components: - type: MetaData @@ -269025,6 +280995,11 @@ entities: parent: 2 - proto: WaterTankFull entities: + - uid: 15102 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 - uid: 39489 components: - type: Transform @@ -269147,6 +281122,11 @@ entities: parent: 2 - proto: WaterTankHighCapacity entities: + - uid: 29348 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 - uid: 39513 components: - type: Transform @@ -269157,21 +281137,13 @@ entities: - type: Transform pos: -17.5,-19.5 parent: 2 - - uid: 39515 - components: - - type: Transform - pos: 34.5,9.5 - parent: 2 - - uid: 39516 - components: - - type: Transform - pos: 6.5,1.5 - parent: 2 - - uid: 39517 + - uid: 42039 components: - type: Transform - pos: 46.5,22.5 + pos: 9.5,-0.5 parent: 2 + - type: Pullable + prevFixedRotation: True - proto: WaterVaporCanister entities: - uid: 39518 @@ -269382,6 +281354,20 @@ entities: - type: Transform pos: 1.5117247,-71.59696 parent: 2 +- proto: WeaponFlareGunSecurity + entities: + - uid: 19056 + components: + - type: MetaData + desc: Для стрельбы транквилизирующими патронами. + name: Капсульный пистолет зоотехника + - type: Transform + parent: 16307 + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - Contraband - proto: WeaponLaserCarbinePractice entities: - uid: 39544 @@ -269437,13 +281423,6 @@ entities: parent: 33672 - type: Physics canCollide: False -- proto: WeaponLauncherRocket - entities: - - uid: 39549 - components: - - type: Transform - pos: 10.523224,-13.563158 - parent: 2 - proto: WeaponMinigun entities: - uid: 16289 @@ -269470,6 +281449,15 @@ entities: - type: Transform pos: 12.479626,-19.42051 parent: 2 +- proto: WeaponPistolMk58 + entities: + - uid: 26422 + components: + - type: Transform + parent: 26427 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponPistolN1984 entities: - uid: 41102 @@ -269494,6 +281482,15 @@ entities: - type: Transform pos: -4.4610443,-4.4109497 parent: 40828 +- proto: WeaponRevolverDeckard + entities: + - uid: 15658 + components: + - type: Transform + parent: 15665 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponRevolverMateba entities: - uid: 39552 @@ -269503,7 +281500,7 @@ entities: parent: 2 - proto: WeaponRevolverPirate entities: - - uid: 26422 + - uid: 27600 components: - type: Transform parent: 26414 @@ -269568,22 +281565,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponShotgunEnforcer - entities: - - uid: 26424 - components: - - type: Transform - parent: 26423 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponShotgunImprovised - entities: - - uid: 39555 - components: - - type: Transform - pos: -72.63039,-1.5711503 - parent: 2 - proto: WeaponShotgunKammerer entities: - uid: 30912 @@ -269676,22 +281657,17 @@ entities: parent: 40828 - proto: WeaponTurretHostile entities: - - uid: 39557 + - uid: 28818 components: - type: Transform rot: -1.5707963267948966 rad - pos: 101.5,-90.5 + pos: 19.5,19.5 parent: 2 - - uid: 39558 + - uid: 39557 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 2 - - uid: 39559 - components: - - type: Transform - pos: 90.5,-81.5 + pos: 101.5,-90.5 parent: 2 - uid: 39560 components: @@ -269703,18 +281679,6 @@ entities: - type: Transform pos: 96.5,-86.5 parent: 2 - - uid: 39562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-74.5 - parent: 2 - - uid: 39563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-78.5 - parent: 2 - uid: 41605 components: - type: Transform @@ -269744,30 +281708,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,7.5 parent: 40828 - - uid: 41610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 40828 - - uid: 41611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 40828 - - uid: 41612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 40828 - - uid: 41613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 40828 - uid: 41614 components: - type: Transform @@ -269819,6 +281759,16 @@ entities: parent: 40828 - proto: WeaponTurretNanoTrasen entities: + - uid: 30795 + components: + - type: Transform + pos: 96.5,-74.5 + parent: 2 + - uid: 31716 + components: + - type: Transform + pos: 102.5,-78.5 + parent: 2 - uid: 39564 components: - type: Transform @@ -269835,6 +281785,30 @@ entities: - type: Transform pos: 98.5,-66.5 parent: 2 + - uid: 41610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 40828 + - uid: 41612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 40828 + - uid: 42077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 40828 + - uid: 42078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 40828 - proto: WeaponTurretSyndicateBroken entities: - uid: 39567 @@ -269847,6 +281821,11 @@ entities: - type: Transform pos: 17.5,-15.5 parent: 2 + - uid: 42430 + components: + - type: Transform + pos: 90.5,-81.5 + parent: 2 - proto: WeaponWaterBlaster entities: - uid: 39569 @@ -269896,6 +281875,13 @@ entities: - type: Transform pos: -85.5601,-21.50541 parent: 2 +- proto: WelderIndustrialAdvanced + entities: + - uid: 42320 + components: + - type: Transform + pos: -70.497986,-17.28866 + parent: 2 - proto: WelderMini entities: - uid: 39576 @@ -270082,6 +282068,34 @@ entities: - type: Transform pos: -6.5,-48.5 parent: 2 +- proto: WetFloorSign + entities: + - uid: 26659 + components: + - type: Transform + parent: 32193 + - type: Physics + canCollide: False + - uid: 26734 + components: + - type: Transform + parent: 32193 + - type: Physics + canCollide: False + - uid: 26762 + components: + - type: Transform + parent: 32193 + - type: Physics + canCollide: False +- proto: WetFloorSignMineExplosive + entities: + - uid: 26743 + components: + - type: Transform + parent: 32193 + - type: Physics + canCollide: False - proto: WhiteBishop entities: - uid: 2126 @@ -270216,6 +282230,34 @@ entities: parent: 2 - proto: Windoor entities: + - uid: 15726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,6.5 + parent: 2 + - uid: 17338 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 17339 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 27995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,7.5 + parent: 2 + - uid: 28816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,5.5 + parent: 2 - uid: 39617 components: - type: Transform @@ -270611,17 +282653,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 - - uid: 39684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-73.5 - parent: 2 - - uid: 39685 - components: - - type: Transform - pos: 3.5,-73.5 - parent: 2 - uid: 39686 components: - type: Transform @@ -270652,6 +282683,12 @@ entities: parent: 2 - proto: WindoorAssembly entities: + - uid: 23667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,21.5 + parent: 2 - uid: 39691 components: - type: Transform @@ -270759,6 +282796,18 @@ entities: - - Service - proto: WindoorHydroponicsLocked entities: + - uid: 17337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,8.5 + parent: 2 + - uid: 27823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,8.5 + parent: 2 - uid: 39705 components: - type: Transform @@ -270791,6 +282840,18 @@ entities: parent: 2 - proto: WindoorKitchenHydroponicsLocked entities: + - uid: 5078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,18.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 2 - uid: 39710 components: - type: Transform @@ -270832,16 +282893,6 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 39716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,20.5 - parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - uid: 39717 components: - type: Transform @@ -270858,25 +282909,6 @@ entities: - type: Transform pos: -58.5,-18.5 parent: 2 - - uid: 39720 - components: - - type: Transform - pos: 19.5,20.5 - parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - uid: 39721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - uid: 39722 components: - type: Transform @@ -270983,6 +283015,23 @@ entities: - - Medical - proto: WindoorSecureArmoryLocked entities: + - uid: 31765 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 31931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 2 + - uid: 33199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 2 - uid: 39737 components: - type: Transform @@ -271420,17 +283469,41 @@ entities: parent: 2 - proto: WindoorSecurePlasma entities: - - uid: 39804 + - uid: 25243 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-30.5 + pos: 5.5,-73.5 parent: 2 - - uid: 39805 + - uid: 25468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-28.5 + parent: 2 + - uid: 25469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-27.5 + parent: 2 + - uid: 30196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 2 + - uid: 39684 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-30.5 + pos: 4.5,-73.5 + parent: 2 + - uid: 39685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-73.5 parent: 2 - uid: 39806 components: @@ -271438,23 +283511,31 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-13.5 parent: 2 + - type: DoorBolt + boltsDown: True - uid: 39807 components: - type: Transform pos: 10.5,-12.5 parent: 2 + - type: DoorBolt + boltsDown: True - uid: 39808 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-13.5 parent: 2 + - type: DoorBolt + boltsDown: True - uid: 39809 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-14.5 parent: 2 + - type: DoorBolt + boltsDown: True - uid: 39810 components: - type: Transform @@ -271467,6 +283548,30 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-41.5 parent: 2 + - uid: 40604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-41.5 + parent: 2 + - uid: 42027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - uid: 42028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 42029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 - proto: WindoorSecureSalvageLocked entities: - uid: 39812 @@ -271904,12 +284009,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-73.5 parent: 2 - - uid: 39880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-73.5 - parent: 2 - uid: 39881 components: - type: Transform @@ -271932,16 +284031,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,13.5 parent: 2 - - uid: 39885 - components: - - type: Transform - pos: 27.5,23.5 - parent: 2 - - uid: 39886 - components: - - type: Transform - pos: 25.5,23.5 - parent: 2 - uid: 39887 components: - type: Transform @@ -272263,6 +284352,23 @@ entities: parent: 2 - proto: WindowDirectional entities: + - uid: 12517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,8.5 + parent: 2 + - uid: 19776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,4.5 + parent: 2 + - uid: 19782 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 - uid: 39942 components: - type: Transform @@ -273826,6 +285932,57 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: + - uid: 16244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,18.5 + parent: 2 + - uid: 16868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - uid: 18477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 2 + - uid: 18478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 2 + - uid: 30780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,18.5 + parent: 2 + - uid: 31292 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 34744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-40.5 + parent: 2 + - uid: 36623 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 39516 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 - uid: 40213 components: - type: Transform @@ -273854,11 +286011,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-38.5 parent: 2 - - uid: 40218 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 2 - uid: 40219 components: - type: Transform @@ -273870,18 +286022,6 @@ entities: rot: -1.5707963267948966 rad pos: 64.5,13.5 parent: 2 - - uid: 40221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 2 - - uid: 40222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 2 - uid: 40223 components: - type: Transform @@ -274121,11 +286261,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-19.5 parent: 2 - - uid: 40264 - components: - - type: Transform - pos: 24.5,-27.5 - parent: 2 - uid: 40265 components: - type: Transform @@ -274239,12 +286374,6 @@ entities: rot: 3.141592653589793 rad pos: 78.5,5.5 parent: 2 - - uid: 40284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 2 - uid: 40285 components: - type: Transform @@ -275665,18 +287794,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-52.5 parent: 2 - - uid: 40527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-29.5 - parent: 2 - - uid: 40528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-28.5 - parent: 2 - uid: 40529 components: - type: Transform @@ -276085,28 +288202,11 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-39.5 parent: 2 - - uid: 40602 - components: - - type: Transform - pos: -27.5,-38.5 - parent: 2 - uid: 40603 components: - type: Transform pos: -26.5,-38.5 parent: 2 - - uid: 40604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-39.5 - parent: 2 - - uid: 40605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-40.5 - parent: 2 - uid: 40606 components: - type: Transform @@ -276370,6 +288470,22 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 40828 + - uid: 41990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - uid: 41991 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 + - uid: 41999 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 - proto: Wirecutter entities: - uid: 40612 @@ -276395,24 +288511,6 @@ entities: - type: Transform pos: -69.5,2.5 parent: 2 -- proto: WoodenBench - entities: - - uid: 40616 - components: - - type: Transform - pos: 58.5,-37.5 - parent: 2 - - uid: 40617 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-41.5 - parent: 2 - - uid: 40618 - components: - - type: Transform - pos: 48.5,-37.5 - parent: 2 - proto: WoodenBuckler entities: - uid: 40619 @@ -276548,6 +288646,11 @@ entities: parent: 2 - proto: Wrench entities: + - uid: 3484 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 - uid: 40641 components: - type: Transform diff --git a/Resources/Maps/corvax_avrite.yml b/Resources/Maps/corvax_avrite.yml index ddf923de0ff..ce862953306 100644 --- a/Resources/Maps/corvax_avrite.yml +++ b/Resources/Maps/corvax_avrite.yml @@ -89,6 +89,7 @@ tilemap: 89: FloorShuttleGrey 77: FloorShuttleOrange 3: FloorShuttleWhite + 132: FloorSnowDug 96: FloorSteel 81: FloorSteelBurnt 51: FloorSteelCheckerDark @@ -163,7 +164,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: YAAAAAADYAAAAAABLQAAAAACYAAAAAAAYAAAAAAAYAAAAAADLQAAAAADYAAAAAACYAAAAAABawAAAAAAYAAAAAACYAAAAAACYwAAAAAAMAAAAAAAMAAAAAAAMAAAAAADYAAAAAACYAAAAAAALQAAAAADYAAAAAADYAAAAAACYAAAAAADLQAAAAADYAAAAAADYAAAAAACawAAAAAAYAAAAAACYAAAAAACYwAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAANAAAAAACQgAAAAAAQgAAAAADQgAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAANAAAAAADQgAAAAACLQAAAAADQgAAAAADIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAANAAAAAADQgAAAAADQgAAAAAAQgAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAANAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAMAAAAAACMAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: YAAAAAADYAAAAAABLQAAAAACYAAAAAAAYAAAAAAAYAAAAAADLQAAAAADYAAAAAACYAAAAAABawAAAAAAYAAAAAACYAAAAAACYwAAAAAAMAAAAAAAMAAAAAAAMAAAAAADYAAAAAACYAAAAAAALQAAAAADYAAAAAADYAAAAAACYAAAAAADLQAAAAADYAAAAAADYAAAAAACawAAAAAAYAAAAAACYAAAAAACYwAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAKAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAANAAAAAACQgAAAAAAQgAAAAADQgAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAANAAAAAADQgAAAAACLQAAAAADQgAAAAADIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAANAAAAAADQgAAAAADQgAAAAAAQgAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAANAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAMAAAAAACMAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIAAAAAAAIAAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAADwAAAAAADwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAMAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA version: 6 -1,0: ind: -1,0 @@ -179,19 +180,19 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: YwAAAAAAYwAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAfQAAAAADfQAAAAACfQAAAAAADgAAAAAADgAAAAAADQAAAAAAMAAAAAACYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAABfQAAAAABDgAAAAAADgAAAAACDgAAAAAAMAAAAAABYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABDgAAAAAADgAAAAACDgAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACPwAAAAAAPwAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAACFgAAAAABgQAAAAAAEwAAAAAAMAAAAAAAYwAAAAAAMAAAAAACPwAAAAAAPwAAAAAAPwAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAADFgAAAAACgQAAAAAAUAAAAAAAMAAAAAAAYwAAAAAAMAAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAgQAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAABFgAAAAACgQAAAAAAZwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAABPwAAAAAAPwAAAAAAPwAAAAAAgQAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAABgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAABMAAAAAABMAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAMAAAAAAAMAAAAAADYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAADMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAA + tiles: YwAAAAAAYwAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAfQAAAAADfQAAAAACfQAAAAAADgAAAAAADgAAAAAADQAAAAAAMAAAAAACYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAABfQAAAAABDgAAAAAADgAAAAACDgAAAAAAMAAAAAABYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABDgAAAAAADgAAAAACDgAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAACFgAAAAABgQAAAAAAEwAAAAAAMAAAAAAAYwAAAAAAMAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAADFgAAAAACgQAAAAAAUAAAAAAAMAAAAAAAYwAAAAAAMAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAgQAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAABFgAAAAACgQAAAAAAZwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAABDgAAAAAADgAAAAAADgAAAAAAgQAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAABgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAABMAAAAAABMAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAMAAAAAAAMAAAAAADYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAADMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAABYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACYwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAACYwAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADYwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAADwAAAAABIAAAAAAADwAAAAAAgQAAAAAADAAAAAADDAAAAAACDAAAAAAADAAAAAAADAAAAAADMAAAAAACYwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAABgQAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAAADAAAAAABMAAAAAABYwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAAAIAAAAAABIAAAAAADIAAAAAAAgQAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAAADAAAAAACMAAAAAABYwAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAADgQAAAAAADwAAAAADIAAAAAACIAAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAAAMAAAAAACMAAAAAADMAAAAAABYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAMAAAAAAA + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAABYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAYwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACYwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAACYwAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADYwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAADwAAAAABIAAAAAAADwAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAACYwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAABgQAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAABYwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAAAIAAAAAABIAAAAAADIAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAABYwAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAADgQAAAAAADwAAAAADIAAAAAACIAAAAAAAgQAAAAAADgAAAAAADgAAAAAAhAAAAAAAMAAAAAACMAAAAAADMAAAAAABYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAMAAAAAAA version: 6 0,1: ind: 0,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABYwAAAAAAYwAAAAAAMAAAAAABMAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAgQAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAAAMAAAAAACDQAAAAAADQAAAAAADQAAAAAAgQAAAAAAGgAAAAADKQAAAAACGgAAAAACKQAAAAABGgAAAAABgQAAAAAAgQAAAAAAMAAAAAABYwAAAAAAMAAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAAgQAAAAAAGgAAAAACKQAAAAABGgAAAAADKQAAAAACGgAAAAADgQAAAAAAbwAAAAAAMAAAAAABYwAAAAAAMAAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAGgAAAAAAKQAAAAACGgAAAAAAKQAAAAABGgAAAAAAKQAAAAABGgAAAAABYwAAAAAAYwAAAAAAMAAAAAACDQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAGgAAAAAAKQAAAAADGgAAAAACKQAAAAABGgAAAAADKQAAAAAAGgAAAAADYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAACKQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABYwAAAAAAYwAAAAAAbwAAAAAAbwAAAAAAKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAbwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAACMAAAAAADYwAAAAAAYwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAABKQAAAAAC + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAABYwAAAAAAYwAAAAAAMAAAAAABMAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAgQAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAAAMAAAAAACDQAAAAAADQAAAAAADQAAAAAAgQAAAAAAGgAAAAADKQAAAAACGgAAAAACKQAAAAABGgAAAAABgQAAAAAAgQAAAAAAMAAAAAABYwAAAAAAMAAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAAgQAAAAAAGgAAAAACKQAAAAABGgAAAAADKQAAAAACGgAAAAADgQAAAAAAbwAAAAAAMAAAAAABYwAAAAAAMAAAAAAADQAAAAAADQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAGgAAAAAAKQAAAAACGgAAAAAAKQAAAAABGgAAAAAAKQAAAAABGgAAAAABYwAAAAAAYwAAAAAAMAAAAAACDQAAAAAADQAAAAAADgAAAAAAhAAAAAAADgAAAAAAgQAAAAAAGgAAAAAAKQAAAAADGgAAAAACKQAAAAABGgAAAAADKQAAAAAAGgAAAAADYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAACKQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABYwAAAAAAYwAAAAAAbwAAAAAAbwAAAAAAKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAbwAAAAAAMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAACMAAAAAADYwAAAAAAYwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAABKQAAAAAC version: 6 -1,1: ind: -1,1 - tiles: bwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAMAAAAAAAMwAAAAACgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAMwAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAQwAAAAACQwAAAAAEQwAAAAAEMAAAAAABMAAAAAACMAAAAAADYwAAAAAAMwAAAAADgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAQwAAAAAFQwAAAAAFQwAAAAAFQwAAAAADQwAAAAAAMAAAAAAAYwAAAAAAMwAAAAACgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAXwAAAAAAQwAAAAACQwAAAAAFQwAAAAACQwAAAAADMAAAAAADYwAAAAAAMwAAAAABgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAQwAAAAAEQwAAAAACMAAAAAADYwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAABMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAADAAAAAAAYwAAAAAAYwAAAAAADAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAACQAAAAADCQAAAAACCQAAAAABfQAAAAADfQAAAAABCQAAAAADCQAAAAABCQAAAAADgQAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAACQAAAAACCQAAAAAACQAAAAABfQAAAAACfQAAAAACCQAAAAADCQAAAAAACQAAAAABgQAAAAAAYwAAAAAA + tiles: bwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAMAAAAAAAMwAAAAACgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAMwAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAMAAAAAABMAAAAAACMAAAAAADYwAAAAAAMwAAAAADgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAADgAAAAAADgAAAAAAhAAAAAAADQAAAAAADQAAAAAAMAAAAAAAYwAAAAAAMwAAAAACgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAADQAAAAAAMAAAAAADYwAAAAAAMwAAAAABgQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAMAAAAAADYwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAABMAAAAAABMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAABMAAAAAACYwAAAAAAYwAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAADAAAAAAAYwAAAAAAYwAAAAAADAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAACQAAAAADCQAAAAACCQAAAAABfQAAAAADfQAAAAABCQAAAAADCQAAAAABCQAAAAADgQAAAAAAYwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAACQAAAAACCQAAAAAACQAAAAABfQAAAAACfQAAAAACCQAAAAADCQAAAAAACQAAAAABgQAAAAAAYwAAAAAA version: 6 -2,-1: ind: -2,-1 @@ -227,7 +228,7 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: gQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAACAAAAAAADAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAACgAAAAABYwAAAAAAYwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAFAAAAAADFAAAAAABFAAAAAABgQAAAAAAYwAAAAAACgAAAAADYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFAAAAAABFAAAAAADFAAAAAACgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAACAAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAACOgAAAAADOgAAAAACgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: gQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAMAAAAAACYwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAACAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYwAAAAAACgAAAAABYwAAAAAAYwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAFAAAAAADFAAAAAABFAAAAAABgQAAAAAAYwAAAAAACgAAAAADYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAFAAAAAABFAAAAAADFAAAAAACgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAACAAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAACOgAAAAADOgAAAAACgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA version: 6 2,0: ind: 2,0 @@ -267,7 +268,7 @@ entities: version: 6 2,1: ind: 2,1 - tiles: gQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAAAMwAAAAAAMwAAAAACMwAAAAACbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAAAAgAAAAAAMwAAAAABMwAAAAAAMAAAAAACbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAADbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAADbwAAAAAABQAAAAADBQAAAAAABQAAAAADHwAAAAACfQAAAAABfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABQAAAAAABQAAAAADBQAAAAADfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAMwAAAAAAbwAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAACHwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABbwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAbwAAAAAAKAAAAAABgQAAAAAAgQAAAAAAKAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAMwAAAAAAbwAAAAAAIgAAAAACIgAAAAAAIgAAAAAAIgAAAAADIgAAAAAAIgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIgAAAAAAIgAAAAAAIgAAAAABIgAAAAABIgAAAAACIgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAADbwAAAAAAIgAAAAACIgAAAAAAIgAAAAADIgAAAAAAIgAAAAADIgAAAAAC + tiles: gQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAKAAAAAABbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAAAMwAAAAAAMwAAAAACMwAAAAACbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAAAAgAAAAAAMwAAAAABMwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAADbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAADbwAAAAAABQAAAAADBQAAAAAABQAAAAADHwAAAAACfQAAAAABfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABQAAAAAABQAAAAADBQAAAAADfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAMwAAAAAAbwAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAACHwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAABbwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAbwAAAAAAKAAAAAABgQAAAAAAgQAAAAAAKAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAMwAAAAAAbwAAAAAAIgAAAAACIgAAAAAAIgAAAAAAIgAAAAADIgAAAAAAIgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIgAAAAAAIgAAAAAAIgAAAAABIgAAAAABIgAAAAACIgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAKAAAAAADbwAAAAAAIgAAAAACIgAAAAAAIgAAAAADIgAAAAAAIgAAAAADIgAAAAAC version: 6 -4,0: ind: -4,0 @@ -307,7 +308,7 @@ entities: version: 6 -5,-3: ind: -5,-3 - tiles: gQAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAAgQAAAAAABQAAAAABfQAAAAABfQAAAAABfQAAAAABHwAAAAAABQAAAAABBQAAAAAAfQAAAAACfQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAABQAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAADgQAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAADBQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACgQAAAAAABQAAAAADBQAAAAACfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABgQAAAAAABQAAAAACBQAAAAADHwAAAAAAfQAAAAAAfQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAAfQAAAAABfQAAAAADfQAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADHwAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAUgAAAAAAgQAAAAAAgQAAAAAABQAAAAADHwAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAA + tiles: gQAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAAgQAAAAAABQAAAAABfQAAAAABfQAAAAABfQAAAAABHwAAAAAABQAAAAABBQAAAAAAfQAAAAACfQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAABQAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAADgQAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAADBQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACgQAAAAAABQAAAAADBQAAAAACfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABgQAAAAAABQAAAAACBQAAAAADHwAAAAAAfQAAAAAAfQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADgQAAAAAAfQAAAAABfQAAAAADfQAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADHwAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADHwAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -367,7 +368,7 @@ entities: version: 6 -5,1: ind: -5,1 - tiles: LQAAAAABLQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADBQAAAAAABQAAAAAABQAAAAADfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAACBQAAAAACBQAAAAACBQAAAAABMAAAAAACLQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAADfQAAAAADfQAAAAADfQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAMAAAAAACLQAAAAADgQAAAAAABQAAAAABBQAAAAABBQAAAAABfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACBQAAAAADfQAAAAAABQAAAAADfQAAAAAAfQAAAAACMAAAAAABLQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAALQAAAAADgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAMAAAAAADfQAAAAABMAAAAAAAgQAAAAAAYAAAAAAAIgAAAAACcwAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADgQAAAAAALwAAAAAAcwAAAAACLwAAAAAAYAAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfQAAAAACfQAAAAABfQAAAAADYAAAAAAALwAAAAAAcwAAAAAALwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAABgQAAAAAALwAAAAAAcwAAAAACLwAAAAAAYAAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAIgAAAAADIgAAAAADLwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHwAAAAACHwAAAAADHwAAAAAFfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA + tiles: LQAAAAABLQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADBQAAAAAABQAAAAAABQAAAAADfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAACBQAAAAACBQAAAAACBQAAAAABMAAAAAACLQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAADfQAAAAADfQAAAAADfQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAMAAAAAACLQAAAAADgQAAAAAABQAAAAABBQAAAAABBQAAAAABfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACBQAAAAADfQAAAAAABQAAAAADfQAAAAAAfQAAAAACMAAAAAABLQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAALQAAAAADgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAMAAAAAADfQAAAAABMAAAAAAAgQAAAAAAYAAAAAAAIgAAAAACcwAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAADgQAAAAAALwAAAAAAcwAAAAACLwAAAAAAYAAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfQAAAAACfQAAAAABfQAAAAADYAAAAAAALwAAAAAAcwAAAAAALwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAABgQAAAAAALwAAAAAAcwAAAAACLwAAAAAAYAAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAIgAAAAADIgAAAAADLwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAEwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA version: 6 -6,1: ind: -6,1 @@ -391,7 +392,7 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: GQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAAALQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAADGQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAACLQAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAGQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAAAfQAAAAADLQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAGQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAAAfQAAAAABLQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAGQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAABLQAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAGQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABAAAAAABfQAAAAAALQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAABBAAAAAABBAAAAAACBAAAAAABGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAGQAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAANgAAAAADNgAAAAADNgAAAAABNgAAAAABNgAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAADgQAAAAAAYAAAAAAAMAAAAAACYAAAAAABgQAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAMAAAAAABYAAAAAABgQAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADYAAAAAACMAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAANgAAAAACgQAAAAAANgAAAAABNgAAAAABNgAAAAACNgAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAANwAAAAACgQAAAAAADAAAAAABDAAAAAADKwAAAAACDAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAAgQAAAAAADAAAAAADDAAAAAABKwAAAAADDAAAAAABgQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAIgAAAAAAIgAAAAADIgAAAAADIgAAAAACIgAAAAABgQAAAAAA + tiles: GQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAAALQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAADGQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAACLQAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAGQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAAAfQAAAAADLQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAAAfQAAAAABLQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAABLQAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAGQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABAAAAAABfQAAAAAALQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAABBAAAAAABBAAAAAACBAAAAAABGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAGQAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAANgAAAAADNgAAAAADNgAAAAABNgAAAAABNgAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAADgQAAAAAAYAAAAAAAMAAAAAACYAAAAAABgQAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAMAAAAAABYAAAAAABgQAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADYAAAAAACMAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAANgAAAAACgQAAAAAANgAAAAABNgAAAAABNgAAAAACNgAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAANwAAAAACgQAAAAAADAAAAAABDAAAAAADKwAAAAACDAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAAgQAAAAAADAAAAAADDAAAAAABKwAAAAADDAAAAAABgQAAAAAAYAAAAAABMAAAAAAAYAAAAAAAIgAAAAAAIgAAAAADIgAAAAADIgAAAAACIgAAAAABgQAAAAAA version: 6 -4,2: ind: -4,2 @@ -403,7 +404,7 @@ entities: version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAfQAAAAADfQAAAAABHwAAAAAFfQAAAAACgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAADHwAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAHwAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAHwAAAAAEfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAfQAAAAACBQAAAAACfQAAAAADfQAAAAADZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACgQAAAAAAfQAAAAAAHwAAAAAEfQAAAAACfQAAAAADgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAFeAAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAeAAAAAAAMQAAAAABgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAIAAAAAACIAAAAAACIAAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAIAAAAAACIAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAADgQAAAAAAIAAAAAADIAAAAAABIAAAAAACgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAABAAAAAADBAAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAA + tiles: AAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAHwAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAfQAAAAADfQAAAAADZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAFeAAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAeAAAAAAAMQAAAAABgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAIAAAAAACIAAAAAACIAAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAIAAAAAACIAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAADgQAAAAAAIAAAAAADIAAAAAABIAAAAAACgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAABAAAAAADBAAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACbwAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAgQAAAAAAEwAAAAAA version: 6 3,-1: ind: 3,-1 @@ -463,7 +464,7 @@ entities: version: 6 -2,2: ind: -2,2 - tiles: fQAAAAACBAAAAAAABAAAAAAABAAAAAACgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAMAAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfQAAAAADfQAAAAADfQAAAAACfQAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAcgAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAABAAAAAABBAAAAAAAdQAAAAAABAAAAAACgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAcgAAAAAAfQAAAAACcgAAAAAAfQAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAMwAAAAABgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAACgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAABMwAAAAABMwAAAAADMwAAAAABMwAAAAABgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAADgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADMwAAAAADMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAMwAAAAADMwAAAAACfQAAAAADfQAAAAACfQAAAAADfQAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAA + tiles: fQAAAAACBAAAAAAABAAAAAAABAAAAAACgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAMAAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAAQAAAAAAfQAAAAADfQAAAAACfQAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAAQAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAABAAAAAABBAAAAAAAdQAAAAAABAAAAAACgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAcgAAAAAAfQAAAAACcgAAAAAAfQAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAMwAAAAABgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAACgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAABMwAAAAABMwAAAAADMwAAAAABMwAAAAABgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAADgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADMwAAAAADMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAMwAAAAADMwAAAAACfQAAAAADfQAAAAACfQAAAAADfQAAAAACgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAA version: 6 1,2: ind: 1,2 @@ -503,11 +504,11 @@ entities: version: 6 -2,3: ind: -2,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAADgQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAACfQAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAACPQAAAAADPQAAAAABPQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAABNwAAAAABNwAAAAAAPQAAAAADbwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAACgQAAAAAAQAAAAAAAQAAAAAAANwAAAAABPQAAAAABgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAANwAAAAACLQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAANwAAAAAALQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAQAAAAAAAPgAAAAAANwAAAAABLQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAPgAAAAAAPgAAAAAANwAAAAACPQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACgQAAAAAAgQAAAAAANwAAAAABNwAAAAAANwAAAAACPQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAABfQAAAAAANwAAAAAANwAAAAADNwAAAAABPQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAALQAAAAACPQAAAAAAPQAAAAADPQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAOQAAAAADOQAAAAADOQAAAAABOQAAAAADOQAAAAADFgAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAACfQAAAAABbwAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPQAAAAACPQAAAAADPQAAAAABPQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAABNwAAAAABNwAAAAAAPQAAAAADbwAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAACgQAAAAAAQAAAAAAAQAAAAAAANwAAAAABPQAAAAABgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAANwAAAAACLQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAANwAAAAAALQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAQAAAAAAAPgAAAAAANwAAAAABLQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAPgAAAAAAPgAAAAAANwAAAAACPQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACgQAAAAAAgQAAAAAANwAAAAABNwAAAAAANwAAAAACPQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAABfQAAAAAANwAAAAAANwAAAAADNwAAAAABPQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAALQAAAAACPQAAAAAAPQAAAAADPQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAOQAAAAADOQAAAAADOQAAAAABOQAAAAADOQAAAAADFgAAAAAA version: 6 -4,3: ind: -4,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAYAAAAAAAYAAAAAAAGgAAAAABGgAAAAABGgAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAGgAAAAACGgAAAAABGgAAAAABYAAAAAAAYAAAAAAAGgAAAAADGgAAAAABGgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAACNwAAAAACNwAAAAACNwAAAAADNwAAAAABNwAAAAAANwAAAAACNwAAAAADNwAAAAAANwAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACMAAAAAABMAAAAAABMAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACMAAAAAACMAAAAAACMAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABgQAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACEgAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAAAHAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAACIAAAAAABHAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABAAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAACIAAAAAADHAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAADEgAAAAAAEgAAAAAAIAAAAAADIAAAAAAAIAAAAAACHAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAgQAAAAAABAAAAAAAEgAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAAAHAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAABgQAAAAAABAAAAAABEgAAAAAAEgAAAAAAIAAAAAADIAAAAAACIAAAAAACHAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHwAAAAABfQAAAAADHwAAAAAFfQAAAAAAgQAAAAAABAAAAAAD + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAYAAAAAAAYAAAAAAAGgAAAAABGgAAAAABGgAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAGgAAAAACGgAAAAABGgAAAAABYAAAAAAAYAAAAAAAGgAAAAADGgAAAAABGgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAANwAAAAACNwAAAAACNwAAAAACNwAAAAADNwAAAAABNwAAAAAANwAAAAACNwAAAAADNwAAAAAANwAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACMAAAAAABMAAAAAABMAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACMAAAAAACMAAAAAACMAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABgQAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACEgAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAAAHAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAACIAAAAAABHAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABAAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAACIAAAAAADHAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAADEgAAAAAAEgAAAAAAIAAAAAADIAAAAAAAIAAAAAACHAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAgQAAAAAABAAAAAAAEgAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAAAHAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAABgQAAAAAABAAAAAABEgAAAAAAEgAAAAAAIAAAAAADIAAAAAACIAAAAAACHAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHwAAAAABfQAAAAADHwAAAAAFfQAAAAAAgQAAAAAABAAAAAAD version: 6 -3,4: ind: -3,4 @@ -523,7 +524,7 @@ entities: version: 6 -5,3: ind: -5,3 - tiles: BAAAAAACBAAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABAAAAAADBAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAABBAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACLQAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADMAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABLQAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACMAAAAAAAMAAAAAABYAAAAAABYAAAAAABYAAAAAADMAAAAAABMAAAAAABMAAAAAADLQAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAMAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADLQAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAHAAAAAAAIAAAAAACIAAAAAACIAAAAAABEgAAAAAABAAAAAACBAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAHAAAAAAAIAAAAAADIAAAAAACIAAAAAADEgAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAABIAAAAAADIAAAAAACIAAAAAABEgAAAAAABAAAAAACBAAAAAADgQAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAADBQAAAAACfQAAAAADgQAAAAAAHAAAAAAAIAAAAAAAIAAAAAABIAAAAAABEgAAAAAABAAAAAABBAAAAAACgQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAABIAAAAAACIAAAAAABIAAAAAABEgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABgQAAAAAAHAAAAAAAIAAAAAABIAAAAAACIAAAAAAAEgAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAACIAAAAAABIAAAAAADIAAAAAABEgAAAAAA + tiles: BAAAAAACBAAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABAAAAAADBAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAABBAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACLQAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADMAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABLQAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACMAAAAAAAMAAAAAABYAAAAAABYAAAAAABYAAAAAADMAAAAAABMAAAAAABMAAAAAADLQAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAMAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADLQAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAHAAAAAAAIAAAAAACIAAAAAACIAAAAAABEgAAAAAABAAAAAACBAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAHAAAAAAAIAAAAAADIAAAAAACIAAAAAADEgAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAABIAAAAAADIAAAAAACIAAAAAABEgAAAAAABAAAAAACBAAAAAADgQAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAADBQAAAAACfQAAAAADgQAAAAAAHAAAAAAAIAAAAAAAIAAAAAABIAAAAAABEgAAAAAABAAAAAABBAAAAAACgQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAABIAAAAAACIAAAAAABIAAAAAABEgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABgQAAAAAAHAAAAAAAIAAAAAABIAAAAAACIAAAAAAAEgAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAACIAAAAAABIAAAAAADIAAAAAABEgAAAAAA version: 6 -5,4: ind: -5,4 @@ -547,7 +548,7 @@ entities: version: 6 5,-4: ind: 5,-4 - tiles: YAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAHwAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAEwAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAHwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAHwAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAEwAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAHwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-5: ind: 3,-5 @@ -563,7 +564,7 @@ entities: version: 6 -6,3: ind: -6,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADLQAAAAAAYAAAAAAABAAAAAAABAAAAAACgAAAAAAAgAAAAAAAgQAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAACLQAAAAAATQAAAAACTQAAAAABTQAAAAADLQAAAAAAYAAAAAADBAAAAAAABAAAAAADgAAAAAAAgAAAAAAAgQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAACLQAAAAAATQAAAAADTQAAAAADTQAAAAACLQAAAAAAYAAAAAADBAAAAAABBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACLQAAAAACLQAAAAADTQAAAAACTQAAAAACTQAAAAACLQAAAAAALQAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABLQAAAAACLQAAAAAALQAAAAACLQAAAAADTQAAAAACTQAAAAADTQAAAAABTQAAAAABTQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAAAYAAAAAABLQAAAAADTQAAAAADTQAAAAACTQAAAAACTQAAAAADDAAAAAACDAAAAAABDAAAAAACTQAAAAADTQAAAAAATQAAAAAATQAAAAACLQAAAAAALQAAAAADLQAAAAADYAAAAAADLQAAAAADTQAAAAADTQAAAAACTQAAAAACTQAAAAABDAAAAAADDAAAAAAADAAAAAADTQAAAAABTQAAAAADTQAAAAABTQAAAAADLQAAAAADLQAAAAADLQAAAAABYAAAAAACLQAAAAADTQAAAAABTQAAAAABTQAAAAADTQAAAAACDAAAAAACDAAAAAADDAAAAAACTQAAAAABTQAAAAADTQAAAAADTQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAACTQAAAAACTQAAAAADTQAAAAAATQAAAAABTQAAAAAALQAAAAABLQAAAAABLQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAACLQAAAAABLQAAAAABTQAAAAACTQAAAAACTQAAAAAALQAAAAACLQAAAAADYAAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAABLQAAAAACTQAAAAACTQAAAAAATQAAAAACLQAAAAABYAAAAAADgQAAAAAABAAAAAACgAAAAAAAgAAAAAAAgQAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAAALQAAAAABTQAAAAAATQAAAAACTQAAAAAALQAAAAADYAAAAAABBAAAAAADBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAACBQAAAAAALQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAAAYAAAAAACBAAAAAACBAAAAAACgQAAAAAABAAAAAACBAAAAAADBAAAAAADBQAAAAADBQAAAAADBQAAAAABBQAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAABDQAAAAAABAAAAAADBAAAAAABgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADLQAAAAAAYAAAAAAABAAAAAAABAAAAAACgAAAAAAAgAAAAAAAgQAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAACLQAAAAAATQAAAAACTQAAAAABTQAAAAADLQAAAAAAYAAAAAADBAAAAAAABAAAAAADgAAAAAAAgAAAAAAAgQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAACLQAAAAAATQAAAAADTQAAAAADTQAAAAACLQAAAAAAYAAAAAADBAAAAAABBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACLQAAAAACLQAAAAADTQAAAAACTQAAAAACTQAAAAACLQAAAAAALQAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABLQAAAAACLQAAAAAALQAAAAACLQAAAAADTQAAAAACTQAAAAADTQAAAAABTQAAAAABTQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAAAYAAAAAABLQAAAAADTQAAAAADTQAAAAACTQAAAAACTQAAAAADDAAAAAACDAAAAAABDAAAAAACTQAAAAADTQAAAAAATQAAAAAATQAAAAACLQAAAAAALQAAAAADLQAAAAADYAAAAAADLQAAAAADTQAAAAADTQAAAAACTQAAAAACTQAAAAABDAAAAAADDAAAAAAADAAAAAADTQAAAAABTQAAAAADTQAAAAABTQAAAAADLQAAAAADLQAAAAADLQAAAAABYAAAAAACLQAAAAADTQAAAAABTQAAAAABTQAAAAADTQAAAAACDAAAAAACDAAAAAADDAAAAAACTQAAAAABTQAAAAADTQAAAAADTQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAACTQAAAAACTQAAAAADTQAAAAAATQAAAAABTQAAAAAALQAAAAABLQAAAAABLQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAACLQAAAAABLQAAAAABTQAAAAACTQAAAAACTQAAAAAALQAAAAACLQAAAAADYAAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAABLQAAAAACTQAAAAACTQAAAAAATQAAAAACLQAAAAABYAAAAAADgQAAAAAABAAAAAACgAAAAAAAgAAAAAAAgQAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAAALQAAAAABTQAAAAAATQAAAAACTQAAAAAALQAAAAADYAAAAAABBAAAAAADBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAACBQAAAAAALQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAAAYAAAAAACBAAAAAACBAAAAAACgQAAAAAABAAAAAACBAAAAAADBAAAAAADBQAAAAADBQAAAAADBQAAAAABBQAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAABMAAAAAAABAAAAAADBAAAAAABgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 -7,2: ind: -7,2 @@ -607,23 +608,23 @@ entities: version: 6 1,-5: ind: 1,-5 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWQAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAWQAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAWQAAAAADWQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAWQAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWQAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAWQAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAWQAAAAADWQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAWQAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAABQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABBQAAAAAAgQAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgwAAAAAAfQAAAAADBAAAAAABBAAAAAABBAAAAAACfQAAAAACgwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAfQAAAAADBAAAAAACBAAAAAADBAAAAAABfQAAAAADEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAAAHwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAfQAAAAABHwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAABBgAAAAADBgAAAAADMAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABfQAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAcwAAAAADcwAAAAACcwAAAAACgQAAAAAABgAAAAADMAAAAAABBgAAAAABMAAAAAACWQAAAAAAWQAAAAADWQAAAAACfQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAACcwAAAAABAwAAAAADcwAAAAABBgAAAAACBgAAAAACMAAAAAACBgAAAAABMAAAAAADWQAAAAABWQAAAAAAWQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAcwAAAAABcwAAAAADcwAAAAABgQAAAAAABgAAAAAAMAAAAAADBgAAAAACMAAAAAACWQAAAAAAWQAAAAAAWQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAABQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABBQAAAAAAgQAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgwAAAAAAfQAAAAADBAAAAAABBAAAAAABBAAAAAACfQAAAAACgwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAfQAAAAADBAAAAAACBAAAAAADBAAAAAABfQAAAAADEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAAAHwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAfQAAAAABHwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAABBgAAAAADBgAAAAADMAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABfQAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAcwAAAAADcwAAAAACcwAAAAACgQAAAAAABgAAAAADMAAAAAABBgAAAAABMAAAAAACWQAAAAAAWQAAAAADWQAAAAACfQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAACcwAAAAABAwAAAAADcwAAAAABBgAAAAACBgAAAAACMAAAAAACBgAAAAABMAAAAAADWQAAAAABWQAAAAAAWQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAcwAAAAABcwAAAAADcwAAAAABgQAAAAAABgAAAAAAMAAAAAADBgAAAAACMAAAAAACWQAAAAAAWQAAAAAAWQAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: gQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAHgAAAAAAgQAAAAAAUgAAAAAAUAAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADHwAAAAAGfQAAAAACAwAAAAAAAwAAAAAAAwAAAAADgQAAAAAAAwAAAAABAwAAAAACAwAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAfQAAAAACfQAAAAABHwAAAAADAwAAAAAAAwAAAAACAwAAAAAAgQAAAAAAAwAAAAACAwAAAAABAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAHwAAAAABfQAAAAABfQAAAAAAAwAAAAAAAwAAAAABAwAAAAACgQAAAAAAAwAAAAAAAwAAAAACAwAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABAwAAAAAAMAAAAAACgQAAAAAAMAAAAAAAAwAAAAADMAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAABQAAAAACBQAAAAAABQAAAAAAAwAAAAAAAwAAAAADAwAAAAACgQAAAAAAAwAAAAAAAwAAAAACAwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAABQAAAAADBQAAAAADBQAAAAABMAAAAAADAwAAAAABMAAAAAADgQAAAAAAMAAAAAABAwAAAAABMAAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAfQAAAAABfQAAAAADfQAAAAACSwAAAAABSwAAAAADSwAAAAACSwAAAAABSwAAAAADSwAAAAADSwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAwAAAAABcwAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAAASwAAAAADSwAAAAABSwAAAAACSwAAAAABSwAAAAABSwAAAAACSwAAAAACgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAC + tiles: gQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAHgAAAAAAgQAAAAAAUgAAAAAAUAAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADHwAAAAAGfQAAAAACAwAAAAAAAwAAAAAAAwAAAAADgQAAAAAAAwAAAAABAwAAAAACAwAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAfQAAAAACfQAAAAABHwAAAAADAwAAAAAAAwAAAAACAwAAAAAAgQAAAAAAAwAAAAACAwAAAAABAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAHwAAAAABfQAAAAABfQAAAAAAAwAAAAAAAwAAAAABAwAAAAACgQAAAAAAAwAAAAAAAwAAAAACAwAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAABAwAAAAAAMAAAAAACgQAAAAAAMAAAAAAAAwAAAAADMAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAABQAAAAACBQAAAAAABQAAAAAAAwAAAAAAAwAAAAADAwAAAAACgQAAAAAAAwAAAAAAAwAAAAACAwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAABQAAAAADBQAAAAADBQAAAAABMAAAAAADAwAAAAABMAAAAAADgQAAAAAAMAAAAAABAwAAAAABMAAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAfQAAAAABfQAAAAADfQAAAAACSwAAAAABSwAAAAADSwAAAAACSwAAAAABSwAAAAADSwAAAAADSwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAwAAAAABcwAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAAASwAAAAADSwAAAAABSwAAAAACSwAAAAABSwAAAAABSwAAAAACSwAAAAACgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAC version: 6 -2,-5: ind: -2,-5 - tiles: EwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACHwAAAAAAfQAAAAABfQAAAAADfQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAACfQAAAAAAfQAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAACgQAAAAAAdAAAAAADPQAAAAACdAAAAAACPQAAAAADdAAAAAABgQAAAAAAgQAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAABgQAAAAAAPQAAAAADFAAAAAAAPQAAAAAAFAAAAAADPQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAACgQAAAAAAdAAAAAABPQAAAAABFAAAAAAAPQAAAAACdAAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADBAAAAAABBAAAAAAABAAAAAACHwAAAAAFfQAAAAABfQAAAAAAgQAAAAAAPQAAAAACFAAAAAADPQAAAAACFAAAAAADPQAAAAACgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACBAAAAAACBAAAAAADBAAAAAADfQAAAAABfQAAAAADfQAAAAACgQAAAAAAdAAAAAABPQAAAAACdAAAAAADPQAAAAABdAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACBAAAAAADBAAAAAAABAAAAAAAfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAAQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAACdAAAAAAAdAAAAAACdAAAAAAAdAAAAAADdAAAAAADdAAAAAADcwAAAAABAwAAAAACAwAAAAADcwAAAAACgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAADAwAAAAADcwAAAAADgQAAAAAAgQAAAAAA + tiles: EwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACHwAAAAAAfQAAAAABfQAAAAADfQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAACfQAAAAAAfQAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAACgQAAAAAAdAAAAAADPQAAAAACdAAAAAACPQAAAAADdAAAAAABgQAAAAAAgQAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAABgQAAAAAAPQAAAAADFAAAAAAAPQAAAAAAFAAAAAADPQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAACgQAAAAAAdAAAAAABPQAAAAABFAAAAAAAPQAAAAACdAAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADBAAAAAABBAAAAAAABAAAAAACHwAAAAAFfQAAAAABfQAAAAAAgQAAAAAAPQAAAAACFAAAAAADPQAAAAACFAAAAAADPQAAAAACgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACBAAAAAACBAAAAAADBAAAAAADfQAAAAABfQAAAAADfQAAAAACgQAAAAAAdAAAAAABPQAAAAACdAAAAAADPQAAAAABdAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACBAAAAAADBAAAAAAABAAAAAAAfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAAQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAACdAAAAAAAdAAAAAACdAAAAAAAdAAAAAADdAAAAAADdAAAAAADcwAAAAABAwAAAAACAwAAAAADcwAAAAACgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAADAwAAAAADcwAAAAADgQAAAAAAgQAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAUgAAAAABEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAABAAAAAACOAAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAADbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAACAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAfQAAAAABgQAAAAAAOAAAAAACOAAAAAAAOAAAAAABOAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAANAAAAAACNAAAAAAANAAAAAACNAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAANAAAAAABNAAAAAACNAAAAAAANAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAABgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABLQAAAAABLQAAAAADLQAAAAACcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAABAwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAAC + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAUgAAAAABEwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAABAAAAAACOAAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAADbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAACAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAfQAAAAABgQAAAAAAOAAAAAACOAAAAAAAOAAAAAABOAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAANAAAAAACNAAAAAAANAAAAAACNAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAANAAAAAABNAAAAAACNAAAAAAANAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAABgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABLQAAAAABLQAAAAADLQAAAAACcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAABAwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAAC version: 6 5,-5: ind: 5,-5 @@ -651,7 +652,7 @@ entities: version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAACKAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgwAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAACgwAAAAAAgQAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAABQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAAAfQAAAAADBQAAAAAAgQAAAAAAgAAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAABQAAAAAAfQAAAAABfQAAAAACfQAAAAACfQAAAAADfQAAAAADBQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAABQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAAAfQAAAAABBQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAABQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAADfQAAAAACBQAAAAAAgQAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAACKAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgwAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAACgwAAAAAAgQAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAABQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAAAfQAAAAADBQAAAAAAgQAAAAAAgAAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAABQAAAAAAfQAAAAABfQAAAAACfQAAAAACfQAAAAADfQAAAAADBQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAABQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAAAfQAAAAABBQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAABQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAADfQAAAAACBQAAAAAAgQAAAAAAgAAAAAAA version: 6 -1,-6: ind: -1,-6 @@ -659,7 +660,7 @@ entities: version: 6 2,-6: ind: 2,-6 - tiles: gQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA + tiles: gQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA version: 6 3,4: ind: 3,4 @@ -711,7 +712,7 @@ entities: version: 6 -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAgQAAAAAAOQAAAAABgQAAAAAAOQAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAABOQAAAAACOQAAAAAAOQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAOQAAAAAAOQAAAAABOQAAAAACOQAAAAABOQAAAAADOQAAAAAAOQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAADAAAAAADgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAALQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAEwAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAABUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAUgAAAAACEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAUgAAAAAAUgAAAAACUgAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAUgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAgQAAAAAAOQAAAAABgQAAAAAAOQAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAABOQAAAAACOQAAAAAAOQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAOQAAAAAAOQAAAAABOQAAAAACOQAAAAABOQAAAAADOQAAAAAAOQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAADAAAAAADgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAALQAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAEwAAAAAAUgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAEwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAbwAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 7,-5: ind: 7,-5 @@ -719,7 +720,7 @@ entities: version: 6 -5,-6: ind: -5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUgAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAACgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAUgAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAACgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA version: 6 7,-4: ind: 7,-4 @@ -936,7 +937,7 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 11157: -29,-3 + 31413: -29,-3 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -950,7 +951,7 @@ entities: decals: 838: 68,-6 2239: 58,2 - 11158: -23,-3 + 31414: -23,-3 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -973,7 +974,6 @@ entities: 5141: -14.870786,74.28819 6511: 11.991004,-69.915535 6512: 18.008902,-72.49366 - 8205: 3.5264568,-21.851084 - node: zIndex: 60 color: '#FFFFFFFF' @@ -1031,8 +1031,6 @@ entities: 5146: -2.846736,79.86409 5147: -0.87798595,80.30159 5148: -0.92486095,81.207146 - 8206: 4.1306233,-20.851084 - 8207: 6.318124,-20.288584 - node: cleanable: True color: '#FFFFFFFF' @@ -1054,19 +1052,12 @@ entities: 5137: -5.2770357,73.71007 6172: -8.757884,76.60296 6173: -11.023509,75.79046 - 8208: 5.2868733,-20.7365 - 8209: 4.026457,-22.694834 - node: cleanable: True color: '#FFFFFFFF' id: Basalt7 decals: 15936: -49,-87 - - node: - color: '#FFFFFFFF' - id: Basalt8 - decals: - 8211: 7.099374,-21.684416 - node: color: '#FFFFFFFF' id: Basalt9 @@ -1074,7 +1065,6 @@ entities: 640: -110.27212,2.7929213 1205: -44.660824,46.463802 5132: -5.7753906,67.584366 - 8210: 2.9952068,-23.01775 - node: color: '#000000C3' id: Bot @@ -1233,15 +1223,6 @@ entities: 8201: 54,42 9561: 43,4 9562: 46,6 - 11148: -29,-3 - 11149: -29,-4 - 11150: -28,-4 - 11151: -27,-4 - 11152: -26,-4 - 11153: -25,-4 - 11154: -24,-4 - 11155: -23,-4 - 11156: -23,-3 12292: -37,-22 12293: -37,-21 12294: -37,-20 @@ -1254,7 +1235,6 @@ entities: 12301: -39,-30 12302: -39,-34 12303: -39,-35 - 12304: -34,-35 12305: -34,-34 12306: -34,-30 12307: -34,-29 @@ -1361,6 +1341,15 @@ entities: 21844: 102,-52 21845: 102,-62 21921: -36,-24 + 22289: -57,5 + 25836: -34,-35 + 31415: -29,-4 + 31416: -28,-4 + 31417: -27,-4 + 31418: -26,-4 + 31419: -25,-4 + 31420: -24,-4 + 31421: -23,-4 - node: cleanable: True color: '#FFFFFFFF' @@ -1515,6 +1504,7 @@ entities: 19935: -3,-42 19937: -5,-42 19938: 65,-8 + 33804: 87,-15 - node: cleanable: True color: '#FFFFFFFF' @@ -1684,11 +1674,6 @@ entities: 5305: 17,21 5556: 15,30 5557: 17,30 - - node: - color: '#3AB3DAFF' - id: BoxGreyscale - decals: - 4156: -51,5 - node: color: '#52B4E9FF' id: BoxGreyscale @@ -1778,6 +1763,11 @@ entities: id: BrickBoxOverlay decals: 3272: 6,59 + - node: + color: '#8080800C' + id: BrickBoxOverlay + decals: + 30770: -16,-9 - node: color: '#9FED5896' id: BrickBoxOverlay @@ -1823,11 +1813,21 @@ entities: id: BrickCornerOverlaySE decals: 5907: 11,-56 + - node: + color: '#D4D4D419' + id: BrickCornerOverlaySE + decals: + 30771: -16,-8 - node: color: '#52B4E996' id: BrickCornerOverlaySW decals: 5908: 9,-56 + - node: + color: '#D4D4D40A' + id: BrickEndOverlayW + decals: + 30123: 25,0 - node: color: '#334E6DC8' id: BrickLineOverlayN @@ -1854,6 +1854,11 @@ entities: id: BrickLineOverlayS decals: 5906: 10,-56 + - node: + color: '#999999FF' + id: BrickTileDarkBox + decals: + 30756: -16,-9 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -1864,12 +1869,11 @@ entities: 3496: 8,-1 3497: 11,1 3498: 11,-1 - 3499: -11,1 - 3500: -11,-1 4036: -42,8 4037: -42,6 4038: -46,2 21585: -61,-9 + 22292: -48,2 - node: color: '#B1AFB7FF' id: BrickTileDarkCornerNe @@ -1899,6 +1903,7 @@ entities: 21130: -1,6 21135: 3,6 21461: 1,-4 + 32456: 42,-22 - node: color: '#B1AFB7FF' id: BrickTileDarkCornerNw @@ -1929,12 +1934,18 @@ entities: 21128: 1,6 21129: -3,6 21462: -1,-4 + 32455: 38,-22 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 1210: -75,21 + - node: + color: '#999999FF' + id: BrickTileDarkCornerSe + decals: + 30758: -16,-8 - node: color: '#B1AFB7FF' id: BrickTileDarkCornerSe @@ -1961,9 +1972,9 @@ entities: 10939: -60,-13 13053: 39,29 13054: 38,28 - 21131: -1,4 21132: 3,4 21464: 1,-10 + 30733: -1,4 - node: color: '#B1AFB7FF' id: BrickTileDarkCornerSw @@ -1990,14 +2001,19 @@ entities: 10941: -63,-13 13059: 41,29 13060: 42,28 - 21133: -3,4 21134: 1,4 21465: -1,-10 + 31329: -3,4 - node: color: '#B8B8B8FF' id: BrickTileDarkEndE decals: 9449: 37,-4 + - node: + color: '#808080FF' + id: BrickTileDarkEndW + decals: + 30122: 25,0 - node: color: '#B8B8B8FF' id: BrickTileDarkEndW @@ -2009,6 +2025,12 @@ entities: decals: 16753: -45,-85 16754: -45,-89 + - node: + color: '#999999FF' + id: BrickTileDarkInnerNe + decals: + 30764: -16,-11 + 30765: -17,-10 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe @@ -2031,6 +2053,11 @@ entities: decals: 7643: 37,28 7644: 39,30 + - node: + color: '#999999FF' + id: BrickTileDarkInnerSw + decals: + 30768: -15,-7 - node: color: '#B8B8B8FF' id: BrickTileDarkInnerSw @@ -2048,6 +2075,11 @@ entities: decals: 21651: 124,-52 21652: 124,-62 + - node: + color: '#999999FF' + id: BrickTileDarkLineE + decals: + 30757: -17,-9 - node: color: '#B1AFB7FF' id: BrickTileDarkLineE @@ -2107,6 +2139,7 @@ entities: 21471: 1,-5 21515: 25,12 21518: 25,6 + 32453: 42,-23 - node: color: '#B1AFB7FF' id: BrickTileDarkLineN @@ -2128,26 +2161,30 @@ entities: color: '#DCDCDCFF' id: BrickTileDarkLineN decals: - 4242: -5,2 4243: -7,2 - 4244: -6,2 - 4251: -10,1 4258: 5,2 4259: 6,2 + - node: + color: '#E6E6E6FF' + id: BrickTileDarkLineN + decals: + 31304: -6,2 + 31305: -5,2 + 31306: -4,2 + 31307: -3,2 + 31308: -2,2 + 31309: -1,2 + 31312: 1,2 + 31313: 0,2 + 31315: 3,2 + 31316: 2,2 + 31317: 4,2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: 1738: 32,-19 2173: 45,-31 - 3477: -3,2 - 3478: -1,2 - 3479: 0,2 - 3480: 1,2 - 3481: 3,2 - 3489: -2,2 - 3490: 2,2 - 3786: 0,10 7621: 40,24 7653: 27,46 7656: 27,48 @@ -2179,13 +2216,15 @@ entities: 16870: -87,-44 21140: -2,6 21141: 2,6 - 21395: -4,2 21396: 4,2 21463: 0,-4 21530: 22,11 21531: 23,11 21532: 24,11 21533: 25,11 + 32457: 39,-22 + 32458: 40,-22 + 32459: 41,-22 - node: color: '#B1AFB7FF' id: BrickTileDarkLineS @@ -2211,7 +2250,6 @@ entities: 4239: -5,-2 4240: -6,-2 4241: -7,-2 - 4250: -10,-1 4252: 5,-2 4253: 6,-2 4254: 7,-2 @@ -2229,9 +2267,6 @@ entities: 3483: -2,-2 3484: -1,-2 3485: 0,-2 - 3486: 1,-2 - 3487: 2,-2 - 3488: 3,-2 7622: 40,30 7655: 27,48 7657: 27,51 @@ -2259,7 +2294,6 @@ entities: 14772: 24,-44 14773: 25,-44 14776: 26,-44 - 21142: -2,4 21143: 2,4 21397: -4,-2 21466: 0,-10 @@ -2267,12 +2301,22 @@ entities: 21527: 23,7 21528: 24,7 21529: 25,7 + 30734: -2,4 + 31330: 1,-2 + 31331: 2,-2 + 31332: 3,-2 + 31333: 4,-2 - node: color: '#334E6DC8' id: BrickTileDarkLineW decals: 21650: 112,-52 21653: 112,-62 + - node: + color: '#999999FF' + id: BrickTileDarkLineW + decals: + 30767: -15,-8 - node: color: '#B1AFB7FF' id: BrickTileDarkLineW @@ -2333,6 +2377,7 @@ entities: 21502: -1,-5 21516: 22,12 21517: 22,6 + 32454: 38,-23 - node: cleanable: True color: '#FFFFFFFF' @@ -2345,7 +2390,6 @@ entities: decals: 13752: 16,-9 13781: 16,9 - 13964: -16,-9 13993: -16,9 14644: -7,61 - node: @@ -2497,7 +2541,6 @@ entities: decals: 13711: 15,0 13802: 1,-17 - 13828: -13,0 13851: 1,18 - node: color: '#808080FF' @@ -2626,6 +2669,7 @@ entities: 2977: 71,-24 2978: 73,-26 2979: 69,-26 + 31654: 40,-9 - node: color: '#4B709CFF' id: BrickTileSteelEndS @@ -2685,6 +2729,7 @@ entities: 2973: 73,-24 2984: 69,-24 3005: 71,-26 + 31653: 40,-10 - node: color: '#4B709CFF' id: BrickTileSteelEndW @@ -2736,7 +2781,6 @@ entities: 14821: 9,-26 14822: 4,-26 14823: 18,0 - 14824: 25,0 14825: 32,0 14836: 44,0 - node: @@ -2812,7 +2856,6 @@ entities: decals: 4300: -7,-2 4301: -3,-2 - 4302: 1,-2 4303: 5,-2 21498: -1,-9 - node: @@ -2866,7 +2909,6 @@ entities: id: BrickTileSteelInnerNw decals: 4304: 7,-2 - 4305: 3,-2 4306: -1,-2 4307: -5,-2 21499: 1,-9 @@ -2928,8 +2970,6 @@ entities: id: BrickTileSteelInnerSe decals: 4296: 5,2 - 4297: 1,2 - 4298: -3,2 4299: -7,2 21501: -1,-5 - node: @@ -2987,9 +3027,6 @@ entities: color: '#DCDCDCFF' id: BrickTileSteelInnerSw decals: - 4292: -1,2 - 4293: -5,2 - 4294: 3,2 4295: 7,2 21500: 1,-5 - node: @@ -3283,7 +3320,6 @@ entities: decals: 4288: -6,-2 4289: -2,-2 - 4290: 2,-2 4291: 6,-2 21497: 0,-9 - node: @@ -3418,9 +3454,6 @@ entities: id: BrickTileSteelLineS decals: 4260: 6,2 - 4261: 2,2 - 4262: -2,2 - 4263: -6,2 21496: 0,-5 - node: color: '#FFFFFFFF' @@ -3700,9 +3733,9 @@ entities: decals: 13702: 13,-1 13796: -1,-18 - 13839: -15,-1 15330: -19,13 16695: -40,-82 + 31115: -15,-1 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNe @@ -3914,10 +3947,10 @@ entities: decals: 13876: -1,28 13903: 39,1 - 13951: -16,-8 13981: -16,10 14055: -41,1 14167: -27,28 + 30772: -16,-8 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerSe @@ -4066,6 +4099,11 @@ entities: id: BrickTileWhiteCornerSw decals: 1214: -75,23 + - node: + color: '#324767FF' + id: BrickTileWhiteEndE + decals: + 31373: -13,0 - node: cleanable: True color: '#FFB46EFF' @@ -4183,11 +4221,11 @@ entities: 13709: 12,-1 13710: 13,-2 13795: -2,-18 - 13799: -1,-19 - 13847: -16,-1 - 13848: -15,-2 13867: -2,17 16693: -40,-90 + 31301: -1,-19 + 31367: -15,-2 + 31368: -16,-1 - node: color: '#628E36FF' id: BrickTileWhiteInnerNe @@ -4206,8 +4244,6 @@ entities: 13817: -1,-28 13888: -2,26 13889: -1,25 - 13960: -16,-11 - 13961: -17,-10 13986: -17,8 13987: -16,7 14013: -8,49 @@ -4241,7 +4277,6 @@ entities: 15127: -8,57 15128: -41,18 15129: -41,12 - 15130: -41,7 15131: -45,-1 15132: -52,-1 15133: -62,-1 @@ -4264,11 +4299,14 @@ entities: 15150: 6,-27 15151: 11,-27 15152: 16,-27 - 15153: 21,-1 15154: 28,-1 15155: 35,-1 15156: 39,-8 15157: 39,-13 + 24393: -41,7 + 30115: 21,-1 + 30775: -17,-10 + 30776: -16,-11 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerNe @@ -4284,6 +4322,7 @@ entities: 14324: -73,52 14362: -41,52 14363: -42,53 + 31335: 1,-2 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe @@ -4330,9 +4369,9 @@ entities: 13704: 16,-1 13794: 2,-18 13798: 1,-19 - 13841: -13,-2 - 13842: -12,-1 13866: 2,17 + 31365: -12,-1 + 31366: -13,-2 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw @@ -4358,8 +4397,6 @@ entities: decals: 13732: 41,-2 13733: 42,-1 - 13751: 17,-10 - 13775: 17,8 13779: 16,7 13813: 1,-28 13816: 2,-27 @@ -4402,7 +4439,6 @@ entities: 15172: -13,15 15173: -13,7 15174: -13,-11 - 15175: -21,-1 15176: 15,-11 15177: 15,-17 15178: 9,-18 @@ -4421,11 +4457,14 @@ entities: 15191: 8,-27 15192: 13,-27 15193: 18,-27 - 15194: 24,-1 15195: 31,-1 15196: 38,-1 15197: 41,-8 15198: 41,-13 + 30116: 24,-1 + 30897: -21,-1 + 31686: 17,8 + 33159: 17,-10 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerNw @@ -4440,6 +4479,7 @@ entities: 14322: -71,52 14323: -70,53 14361: -39,52 + 31336: 3,-2 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw @@ -4499,10 +4539,10 @@ entities: 13708: 12,1 13782: 15,7 13792: -2,-16 - 13845: -15,2 - 13846: -16,1 13862: -2,19 13863: -1,20 + 31361: -16,1 + 31362: -15,2 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe @@ -4520,12 +4560,9 @@ entities: 13734: 38,1 13735: 39,2 13755: 15,-7 - 13778: 15,11 13812: -1,-24 13886: -1,29 13887: -2,28 - 13954: -17,-8 - 13955: -16,-7 13983: -17,10 13984: -16,11 14012: -2,51 @@ -4563,11 +4600,9 @@ entities: 15254: -15,11 15255: 13,11 15256: 13,-7 - 15257: 13,-15 15258: -9,-16 15259: 7,-16 15260: -15,-15 - 15261: -15,-7 15262: -24,1 15263: -31,1 15264: -38,1 @@ -4582,10 +4617,14 @@ entities: 15274: 11,-25 15275: 16,-25 15276: 21,1 - 15277: 28,1 15278: 35,1 15279: 39,-6 15280: 39,-11 + 30117: 28,1 + 31276: -16,-7 + 31285: -17,-8 + 31360: 13,-15 + 31683: 15,11 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerSe @@ -4598,6 +4637,8 @@ entities: decals: 14321: -73,56 14360: -42,55 + 31325: -3,2 + 31326: 1,2 - node: color: '#9FED5896' id: BrickTileWhiteInnerSe @@ -4656,11 +4697,11 @@ entities: 13705: 16,1 13706: 15,2 13793: 2,-16 - 13843: -12,1 - 13844: -13,2 13864: 1,20 13865: 2,19 15312: -30,5 + 31363: -13,2 + 31364: -12,1 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw @@ -4680,13 +4721,10 @@ entities: 13737: 42,1 13750: 17,-8 13764: 16,-7 - 13776: 17,10 - 13777: 16,11 13814: 1,-24 13815: 2,-25 13884: 2,28 13885: 1,29 - 13956: -15,-7 13985: -15,11 14011: 1,51 14019: -5,51 @@ -4712,23 +4750,17 @@ entities: 15200: 41,-6 15201: 38,1 15202: 31,1 - 15203: 24,1 - 15204: 15,11 15205: 15,17 15206: 9,19 15207: 15,-7 15208: 15,-15 - 15209: 9,-16 15210: -7,-16 - 15211: -13,-15 - 15212: -13,-7 15213: -13,11 15214: -13,17 15215: -7,19 15216: 8,-25 15217: 13,-25 15218: 18,-25 - 15219: -21,1 15220: -28,1 15221: -35,1 15222: -42,1 @@ -4749,6 +4781,15 @@ entities: 15237: -2,51 15238: -6,60 15272: -39,9 + 30114: 24,1 + 30778: -15,-7 + 30780: -13,-15 + 30896: -21,1 + 31277: -13,-7 + 31359: 9,-16 + 31682: 16,11 + 31685: 17,10 + 31687: 15,11 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerSw @@ -4763,6 +4804,9 @@ entities: 14320: -70,55 14359: -39,55 14562: -38,28 + 31322: -5,2 + 31323: -1,2 + 31324: 3,2 - node: color: '#9FED5896' id: BrickTileWhiteInnerSw @@ -4813,7 +4857,6 @@ entities: 13696: 12,0 13786: -2,-17 13859: -2,18 - 14364: -16,0 15323: -19,6 15324: -19,7 15328: -19,11 @@ -4826,6 +4869,7 @@ entities: 16669: -40,-87 16670: -40,-88 16671: -40,-89 + 31112: -16,0 - node: color: '#52B4E9FF' id: BrickTileWhiteLineE @@ -4864,7 +4908,6 @@ entities: 13906: 47,1 13907: 47,0 13908: 47,-1 - 13953: -17,-9 13982: -17,9 14015: -8,51 14016: -8,50 @@ -4929,7 +4972,6 @@ entities: 15026: -15,-16 15027: -15,-10 15028: -15,-9 - 15029: -15,-8 15030: 6,-26 15031: 11,-26 15032: 16,-26 @@ -4937,6 +4979,7 @@ entities: 15034: 28,0 15035: 35,0 15082: 7,41 + 30773: -17,-9 - node: color: '#96DAFFFF' id: BrickTileWhiteLineE @@ -4989,6 +5032,9 @@ entities: 17422: -54,96 17423: -54,95 17424: -54,95 + 31319: -7,1 + 31320: -7,0 + 31321: -7,-1 - node: color: '#9FED5896' id: BrickTileWhiteLineE @@ -5245,8 +5291,6 @@ entities: 14944: 14,7 14945: 8,17 14946: 14,15 - 14947: 22,-1 - 14948: 23,-1 14949: 29,-1 14950: 30,-1 14951: 36,-1 @@ -5266,6 +5310,8 @@ entities: 15083: 8,40 15084: 9,40 15085: 10,40 + 30111: 22,-1 + 30112: 23,-1 - node: color: '#96DAFFFF' id: BrickTileWhiteLineN @@ -5298,6 +5344,7 @@ entities: decals: 14314: -72,52 14356: -40,52 + 31334: 2,-2 - node: color: '#9FED5896' id: BrickTileWhiteLineN @@ -5485,10 +5532,7 @@ entities: 14850: 40,-11 14851: 36,1 14852: 37,1 - 14853: 29,1 - 14854: 30,1 14855: 22,1 - 14856: 23,1 14857: 14,11 14858: 14,17 14859: 8,19 @@ -5504,7 +5548,6 @@ entities: 14869: 7,-25 14870: 12,-25 14871: 17,-25 - 14872: -22,1 14873: -23,1 14874: -30,1 14875: -29,1 @@ -5546,6 +5589,10 @@ entities: 14981: -43,55 14982: -40,52 14983: -40,46 + 30108: 30,1 + 30109: 29,1 + 30110: 23,1 + 30895: -22,1 - node: color: '#96DAFFFF' id: BrickTileWhiteLineS @@ -5587,6 +5634,10 @@ entities: 14318: -72,56 14353: -41,55 14354: -40,55 + 30894: -22,1 + 31318: -6,2 + 31327: -2,2 + 31328: 2,2 - node: color: '#9FED5896' id: BrickTileWhiteLineS @@ -5709,7 +5760,6 @@ entities: id: BrickTileWhiteLineW decals: 13791: 2,-17 - 13834: -12,0 13858: 2,18 14365: 16,0 15302: -32,12 @@ -5731,6 +5781,7 @@ entities: 16681: -43,-90 16682: -43,-90 16683: -43,-91 + 31369: -12,0 - node: color: '#52B4E9FF' id: BrickTileWhiteLineW @@ -5754,10 +5805,8 @@ entities: decals: 13727: 42,0 13749: 17,-9 - 13774: 17,9 13809: 2,-26 13879: 2,27 - 13948: -15,-8 13949: -15,-9 13950: -15,-10 13977: -15,10 @@ -5784,7 +5833,6 @@ entities: 14997: -39,45 15036: 38,0 15037: 31,0 - 15038: 24,0 15039: 15,9 15040: 15,10 15041: 15,8 @@ -5800,9 +5848,6 @@ entities: 15051: -13,10 15052: -13,8 15053: -13,9 - 15054: -13,-10 - 15055: -13,-9 - 15056: -13,-8 15057: -13,-16 15058: -7,-17 15059: 8,-26 @@ -5831,6 +5876,12 @@ entities: 15086: -2,50 15087: -6,58 15088: -6,59 + 30113: 24,0 + 30779: -15,-8 + 31278: -13,-10 + 31279: -13,-9 + 31280: -13,-8 + 31684: 17,9 - node: color: '#96DAFFFF' id: BrickTileWhiteLineW @@ -5990,16 +6041,12 @@ entities: color: '#FFFFFFFF' id: BushAOne decals: - 1: -25,-3 908: -103,-1 6513: 1.3516278,-76.21758 - 13312: -16.369896,5.4938498 - 13588: 20,2 - node: color: '#FFFFFFFF' id: BushAThree decals: - 2: -25.456352,-2.9906468 907: -104,-2 15356: 29.57766,-71.88984 15357: 29.57766,-71.88984 @@ -6016,9 +6063,10 @@ entities: decals: 16829: -41,-83 17142: -38,89 - 20004: -103.8991,55.432346 20035: -108.94219,66.80342 20042: -103.51445,39.034008 + 22296: -49.616585,-86.03851 + 22298: -50.62075,-86.06364 - node: color: '#C7CFD07C' id: BushCOne @@ -6047,10 +6095,7 @@ entities: id: BushCOne decals: 906: -101,-1 - 3539: 0.061931133,7.177826 6350: -101.41183,-2.7686312 - 13516: -63,2 - 13532: -63.009872,-2.0162082 15286: 37.07539,-55.95293 17140: -50,89 19844: 30,37 @@ -6098,6 +6143,7 @@ entities: 18123: -73,-40 18124: -76,-44 18128: -79,-45 + 22270: -24.700853,22.793865 - node: color: '#8B8CA4E2' id: BushCTwo @@ -6127,12 +6173,9 @@ entities: color: '#FFFFFFFF' id: BushCTwo decals: - 0: -26,-3 637: -100.89421,8.992738 917: -104,-1 - 4153: -86,54 9215: 84.709404,-24.439508 - 13362: 16.81386,12.21085 15283: 28.888367,-37.221256 16821: -44,-90 16824: -45,-85 @@ -6147,11 +6190,6 @@ entities: id: BushCTwo decals: 15827: -64.711494,29.489738 - - node: - color: '#FFFFFFFF' - id: BushDThree - decals: - 8199: 5.5056233,-20.226084 - node: color: '#C7CFD089' id: Busha1 @@ -6168,19 +6206,12 @@ entities: decals: 635: -102.092125,11.003155 708: -104.89678,18.90071 - 8244: -4.342837,-22.742023 9222: 83.553154,-21.642633 - 13334: 16.129253,-13.934627 - 13359: 16.22011,4.1171 - 13514: -65.713,-2.0474582 - 13580: 26.72542,-2.093804 - 13608: 52,1 17147: -42,87 19842: 27,37 - 19999: -103.82098,63.725235 - 20000: -103.93035,52.432346 - 20008: -103.8366,44.279797 20019: -109,57 + 22295: -48.71381,-87.073235 + 25834: -65,44 - node: color: '#8B8CA4E2' id: Busha2 @@ -6226,9 +6257,6 @@ entities: id: Busha2 decals: 909: -102,-2 - 13311: -16.91677,13.540725 - 13335: 16.941753,-12.200252 - 13581: 25.834795,-2.109429 19351: -34,-82 19843: 24,37 - node: @@ -6308,7 +6336,6 @@ entities: decals: 634: -104.882866,7.919821 1192: -88,-14 - 13288: -17,-13 15281: 30.926634,-45.078316 16832: -43,-91 17143: -37,89 @@ -6353,12 +6380,12 @@ entities: color: '#FFFFFFFF' id: Bushb2 decals: - 13360: 16.798235,5.4921 16823: -46,-86 16826: -33,-88 16828: -43,-84 17132: -63,86 18119: -68,-37 + 22269: 11.997503,62.00251 - node: zIndex: 60 color: '#FFFFFFFF' @@ -6395,7 +6422,6 @@ entities: id: Bushb3 decals: 9212: 81.84287,-21.85721 - 13361: 16.141985,13.695225 16820: -39,-83 16825: -38,-89 17146: -41,87 @@ -6434,13 +6460,13 @@ entities: color: '#FFFFFFFF' id: Bushc2 decals: - 13310: -16.213646,12.1501 15352: 33.9766,-65.93899 16822: -45,-89 17144: -37,88 17151: -48,87 17153: -57,89 19874: -14.987721,-77.936424 + 22297: -49.845753,-86.96906 - node: color: '#8B8CA4E2' id: Bushc3 @@ -6458,7 +6484,6 @@ entities: id: Bushc3 decals: 4006: -58.000343,34.704094 - 13309: -16.88552,4.2282248 14453: 55.101177,-43.94642 14454: 55.101177,-43.94642 15282: 31.129759,-45.547066 @@ -6468,42 +6493,27 @@ entities: 15370: 27.154287,-70.25846 16622: 31.792,-90.441864 17150: -49,87 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bushc3 - decals: - 15942: -50,-87 + 22211: -63.02758,42.00908 + 22212: -68.01597,37.923046 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Bushc3 decals: 15287: 37.559765,-55.73418 - - node: - color: '#FFFFFFFF' - id: Bushd1 - decals: - 20010: -104.0866,45.311047 - node: color: '#FFFFFFFF' id: Bushd3 decals: 4007: -54.453465,34.699295 13515: -64.04112,2.0306668 - 13517: -63.712997,2.1712918 - 20018: -103.80535,55.968666 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 8202: 3.0264568,-21.39275 - 13518: -63.697372,1.9369168 16625: 31.838875,-90.11374 16635: 31.400547,-86.39195 16659: 35.936672,-72.54769 - 20009: -103.68035,45.26417 - 20011: -103.75848,45.529797 - node: color: '#FFFFFFFF' id: Bushe1 @@ -6511,20 +6521,11 @@ entities: 709: -104.5079,18.893766 710: -100.48755,19.77571 9238: 83.928154,-27.627008 - 13308: -16.072613,-13.910778 - 13606: 26.722322,2.0706012 15361: 17.694618,-79.71322 - - node: - color: '#FFFFFFFF' - id: Bushe2 - decals: - 8204: 6.682707,-19.95525 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 8187: 4.0472903,-21.257334 - 13524: -66.43175,2.0306668 19849: 25.193958,37.121845 20040: -104.82814,39.20661 - node: @@ -6542,10 +6543,7 @@ entities: 5111: -12.527111,80.199814 5112: -11.964611,80.137314 5113: -11.917736,80.46544 - 8186: 3.01604,-22.559416 9235: 84.06878,-20.220758 - 13523: -66.74425,2.1869168 - 13531: -60.837997,-2.0787082 15291: 26.894253,-43.624805 20041: -104.406265,39.20661 - node: @@ -6554,12 +6552,6 @@ entities: id: Bushf1 decals: 12722: -47,-61 - - node: - color: '#E0D9DDE6' - id: Bushf1 - decals: - 19231: -35,-79 - 19237: -53,-79 - node: color: '#FFFFFFFF' id: Bushf1 @@ -6570,13 +6562,11 @@ entities: 6315: -9.412165,88.75944 15359: 17.866493,-80.38509 15360: 18.288368,-80.05697 - 20006: -103.8991,53.432346 - node: color: '#FFFFFFFF' id: Bushf2 decals: 633: -109.081566,15.127165 - 19998: -103.9616,62.912735 - node: color: '#E0D9DDE6' id: Bushf3 @@ -6586,11 +6576,7 @@ entities: color: '#FFFFFFFF' id: Bushf3 decals: - 856: -27,-3 - 8188: 4.0472903,-22.70525 19845: 27,37 - 19997: -103.6491,62.756485 - 20005: -103.69598,53.47922 20057: -108.947235,50.130665 - node: color: '#FFFFFFFF' @@ -6598,13 +6584,11 @@ entities: decals: 6240: -5.382768,87.82672 6241: -4.476518,88.02985 - 13525: -65.66612,2.0462918 20058: -108.71844,49.75251 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 8203: 5.0681233,-21.038584 14448: 57.069927,-44.243294 20031: -103.11407,69.006546 - node: @@ -6622,9 +6606,6 @@ entities: color: '#FFFFFFFF' id: Bushh3 decals: - 13530: -60.869247,-1.938083 - 13590: 18.959795,2.062446 - 20012: -103.03973,45.04542 20036: -108.94219,66.506546 - node: color: '#3B4947A7' @@ -6648,33 +6629,13 @@ entities: decals: 632: -110.463066,11.762582 905: -105,-1 - 3830: -103,63 - 4150: -87,53 - 8245: -6.530337,-20.445148 9245: 81.709404,-28.236383 - 13299: -16.822613,-12.129528 - 13307: -16.525738,-4.723278 - 13352: 16.035503,-4.5424256 - 13353: 16.098003,-4.1049256 - 13354: 16.316753,-4.5111756 - 13376: 17.09511,4.4921 - 13519: -67.93175,2.0150418 - 13527: -62.150497,-2.0943332 - 13577: 23.522295,-2.125054 - 13585: 19.866045,2.046821 - 13587: 20.241045,2.078071 - 13589: 19.147295,1.9686961 - 13607: 52,-1 15362: 14.66687,-71.7433 15363: 15.244995,-72.16518 15364: 15.463745,-71.44643 - 15367: 20.518112,-72.46205 - 15368: 21.158737,-72.32143 19846: 24.990833,36.903095 19847: 25.272083,37.028095 19848: 25.443958,36.91872 - 19995: -104,60 - 20001: -103.97723,54.66672 20032: -102.31719,68.944046 20033: -102.08282,68.99092 - node: @@ -6687,66 +6648,25 @@ entities: color: '#FFFFFFFF' id: Bushi2 decals: - 13520: -67.60362,2.1556668 - 13528: -61.650497,-2.0005832 - 13579: 23.866045,-2.078179 - 13586: 20.66292,2.015571 - 13603: 27.076488,1.9386568 - 13604: 26.423712,1.9317122 - 13605: 26.6251,2.0358791 20037: -104.85939,39.065987 20038: -104.57814,39.222237 20039: -104.39064,39.01911 - - node: - color: '#E0D9DDE6' - id: Bushi3 - decals: - 19228: -52,-80 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 3832: -103,47 9249: 87.31878,-24.377008 - 13300: -16.306988,-13.676403 - 13301: -16.447613,-4.535778 - 13521: -67.4005,1.9837918 - 13529: -61.541122,-2.1880832 - 13578: 24.272295,-2.156304 - 20002: -103.66473,54.35422 - 20003: -103.97723,54.338596 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bushi3 - decals: - 15937: -55,-88 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 4151: -86,55 - 8197: 7.193124,-22.434416 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 857: -27,-3 19850: 24.100208,36.98122 - node: color: '#FFFFFFFF' id: Bushj2 decals: 6389: 4.8775463,76.81885 - 8195: 6.932707,-20.95525 - 13333: -16.30259,13.5876 - 20017: -103.7741,47.85792 20045: -102.88945,39.237133 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 3831: -103,54 - node: color: '#FFFFFFFF' id: Bushk1 @@ -6758,68 +6678,31 @@ entities: 6397: -17.322445,74.2251 14459: 55.116802,-43.50892 15365: 15.13562,-71.5558 - 15366: 20.830612,-71.77455 - 19996: -103.57098,60.318985 - - node: - color: '#FFFFFFFF' - id: Bushk2 - decals: - 5: -25.565727,-2.8893619 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 3969: -29.980495,33.162273 4362: -94,41 5116: 0.552366,72.74626 5117: 0.34924102,73.43376 - 13534: -67.9005,-1.953708 - - node: - color: '#FFFFFFFF' - id: Bushl1 - decals: - 13375: 16.141985,12.14835 - - node: - color: '#FFFFFFFF' - id: Bushl2 - decals: - 4152: -85,54 - 13380: 16.860735,5.820225 - node: color: '#FFFFFFFF' id: Bushl3 decals: 1191: -88,-18 - 13381: 17.12636,3.9452248 - - node: - color: '#FFFFFFFF' - id: Bushm3 - decals: - 13533: -62.962997,-1.922458 - 13602: 24.6876,2.285879 - - node: - color: '#FFFFFFFF' - id: Bushm4 - decals: - 8246: -2.9990869,-22.913898 - node: color: '#FFFFFFFF' id: Bushn1 decals: 6351: -102.44308,-2.6748812 - 13302: -16.572613,-12.301403 - 13332: -16.95884,12.321975 - 13358: 16.519878,-5.4330506 - 13377: 16.28261,4.320225 - 13526: -65.25987,-2.0474582 - 13582: 23.81917,-1.9844289 - 20007: -103.69598,53.557346 20034: -108.91094,65.55342 - - node: - color: '#FFFF00FF' - id: Caution - decals: - 2927: -72,19 + 22728: -16.37429,-12.055963 + 22832: -16.276402,-5.518416 + 23378: 16.116112,13.298845 + 23605: -16.996807,5.2500153 + 24052: 25.056765,2.2172356 + 24791: -62.673042,2.1416273 + 33567: -103.0964,53.876133 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' @@ -6847,7 +6730,6 @@ entities: decals: 2637: 69,-69 2656: 51,-69 - 2926: -70,19 4175: -44.008343,3.4439569 7690: 82,39 7691: 84,39 @@ -7106,9 +6988,9 @@ entities: color: '#FFFFFFFF' id: ConcreteTrimCornerNe decals: - 16020: 85,-4 16137: 85,1 16861: -85,-55 + 31340: 85,-4 - node: color: '#CA7EF2FF' id: ConcreteTrimCornerNw @@ -7367,11 +7249,11 @@ entities: 16012: 85,-8 16013: 85,-7 16014: 85,-6 - 16015: 85,-5 16024: 67,-7 16026: 67,-8 21062: -58,47 21093: -53,47 + 31341: 85,-5 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7425,15 +7307,15 @@ entities: color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 16016: 84,-4 - 16017: 83,-4 - 16018: 82,-4 21063: -57,46 21064: -56,46 21065: -55,46 21089: -52,46 21090: -51,46 21091: -50,46 + 31337: 82,-4 + 31338: 83,-4 + 31339: 84,-4 - node: color: '#323232FF' id: ConcreteTrimLineS @@ -7773,7 +7655,6 @@ entities: decals: 4165: -43,5 4166: -43,4 - 4167: -51,4 4168: -43,9 4169: -51,15 4170: -50,15 @@ -8586,8 +8467,6 @@ entities: 19306: -49,-79 19307: -49,-79 19308: -51,-79 - 19309: -52,-79 - 19310: -52,-79 19311: -54,-78 19312: -59,-85 19313: -58,-85 @@ -8599,6 +8478,17 @@ entities: 19320: -62,-83 19321: -62,-83 19323: -61,-84 + - node: + cleanable: True + color: '#FFFFFF41' + id: Dirt + decals: + 21937: -67,46 + 21938: -66,47 + 21939: -66,48 + 21940: -66,46 + 21941: -66,45 + 21943: -66,44 - node: cleanable: True color: '#FFFFFF69' @@ -8609,6 +8499,34 @@ entities: 9955: 13,-23 9956: 11,-24 9957: 11,-24 + - node: + cleanable: True + color: '#FFFFFF7F' + id: Dirt + decals: + 21944: -69,41 + 21946: -64,42 + 21947: -61,42 + 21948: -61,43 + 21949: -65,42 + 21950: -66,42 + 21951: -66,43 + 21952: -69,43 + 21953: -68,44 + 21954: -69,44 + - node: + cleanable: True + color: '#FFFFFF82' + id: Dirt + decals: + 22003: -6,-71 + 22004: -6,-70 + 22005: -5,-71 + 22006: -5,-72 + 22007: -6,-72 + 22008: -7,-72 + 22009: -7,-71 + 22010: -5,-70 - node: cleanable: True color: '#FFFFFF88' @@ -8631,6 +8549,22 @@ entities: 20812: -90,27 20813: -91,30 20814: -88,31 + - node: + cleanable: True + color: '#FFFFFF95' + id: Dirt + decals: + 22173: -70,39 + 22174: -69,39 + 22175: -71,39 + 22176: -72,39 + 22183: -60,50 + 22184: -61,50 + 22185: -60,51 + 22186: -62,50 + 22192: -69,50 + 22193: -69,51 + 22194: -68,51 - node: cleanable: True color: '#FFFFFF9E' @@ -8644,6 +8578,17 @@ entities: decals: 9951: 10,-23 9952: 9,-21 + 21926: -68,46 + 21927: -69,46 + 21928: -69,47 + 21929: -69,48 + 21930: -68,47 + 21931: -67,48 + 21932: -67,47 + 21933: -68,48 + 21934: -65,46 + 21935: -65,45 + 21936: -65,47 - node: cleanable: True color: '#FFFFFFA7' @@ -8897,6 +8842,22 @@ entities: 21893: -5,-74 21903: -6,-74 21904: -5,-78 + 33045: 85,-60 + 33046: 85,-61 + 33047: 86,-61 + 33048: 84,-60 + 33049: 84,-59 + 33050: 88,-59 + 33051: 87,-58 + 33052: 89,-56 + 33053: 88,-57 + 33054: 88,-56 + 33055: 87,-56 + 33056: 87,-55 + 33057: 88,-55 + 33058: 88,-54 + 33059: 89,-54 + 33060: 94,-58 - node: cleanable: True zIndex: 60 @@ -9034,7 +8995,6 @@ entities: id: DirtHeavy decals: 19238: -54,-78 - 19239: -52,-79 19240: -49,-79 19241: -49,-79 19242: -42,-80 @@ -9053,6 +9013,61 @@ entities: decals: 7300: 43,15 7301: 44,16 + - node: + cleanable: True + color: '#FFFFFF47' + id: DirtHeavy + decals: + 21980: -68,47 + - node: + cleanable: True + color: '#FFFFFF7F' + id: DirtHeavy + decals: + 21955: -68,46 + 21956: -69,46 + 21957: -68,48 + 21958: -68,48 + - node: + cleanable: True + color: '#FFFFFF82' + id: DirtHeavy + decals: + 21984: -6,-72 + 21985: -5,-71 + 21986: -6,-70 + 21987: -7,-71 + 22000: -7,-71 + 22001: -7,-69 + 22002: -6,-69 + - node: + cleanable: True + color: '#FFFFFF95' + id: DirtHeavy + decals: + 22169: -69,39 + 22179: -60,51 + 22180: -60,51 + 22181: -61,50 + 22187: -62,50 + 22188: -69,50 + 22189: -69,50 + 22190: -68,51 + 22191: -69,51 + 22195: -69,50 + 22196: -68,51 + 22199: -60,43 + 22200: -60,43 + 22201: -61,43 + 22202: -60,42 + 22203: -61,42 + 22204: -61,41 + 22205: -61,41 + 22206: -61,40 + 22207: -60,33 + 22208: -60,33 + 22209: -60,32 + 22210: -60,32 - node: cleanable: True color: '#FFFFFFA7' @@ -9206,13 +9221,31 @@ entities: 21908: 1,-79 21909: 1,-78 21910: 2,-78 + 22313: -52,-79 + 22314: -53,-80 + 22315: -53,-80 + 22316: -53,-79 + 33033: 85,-60 + 33034: 85,-60 + 33035: 85,-61 + 33036: 84,-60 + 33037: 84,-59 + 33061: 94,-58 + 33071: 101,-56 + 33074: 75,-57 + 33075: 73,-56 + 33076: 78,-55 + 33077: 76,-56 + 33078: 71,-53 + 33079: 71,-53 + 33080: 71,-54 + 33149: -65,32 - node: cleanable: True zIndex: 60 color: '#FFFFFFFF' id: DirtHeavy decals: - 15605: -71,39 15610: -89,40 15611: -89,41 15612: -90,41 @@ -9323,15 +9356,6 @@ entities: 19266: -48,-79 19267: -50,-79 19268: -50,-79 - 19269: -52,-80 - - node: - cleanable: True - zIndex: 90 - color: '#FF0000FF' - id: DirtHeavyMonotile - decals: - 12626: 79,-52 - 12627: 79,-52 - node: cleanable: True color: '#FFBE00FF' @@ -9341,6 +9365,38 @@ entities: 7305: 49,20 7306: 48,19 7307: 45,18 + - node: + cleanable: True + color: '#FFFFFF7F' + id: DirtHeavyMonotile + decals: + 21971: -65,47 + 21972: -65,47 + 21973: -65,47 + 21974: -65,47 + 21977: -69,47 + 21978: -69,47 + 21979: -68,47 + - node: + cleanable: True + color: '#FFFFFF82' + id: DirtHeavyMonotile + decals: + 21981: -6,-71 + 21982: -6,-71 + 21983: -6,-71 + 21999: -6,-70 + - node: + cleanable: True + color: '#FFFFFF95' + id: DirtHeavyMonotile + decals: + 22170: -70,39 + 22171: -71,39 + 22177: -60,50 + 22178: -60,50 + 22197: -69,51 + 22198: -69,51 - node: cleanable: True color: '#FFFFFFA7' @@ -9445,6 +9501,15 @@ entities: 21849: -37,-49 21894: -5,-75 21895: -5,-76 + 33038: 85,-61 + 33039: 85,-61 + 33040: 86,-61 + 33062: 95,-58 + 33069: 102,-56 + 33070: 102,-56 + 33072: 95,-58 + 33073: 77,-59 + 33150: -62,32 - node: cleanable: True zIndex: 60 @@ -9649,8 +9714,6 @@ entities: color: '#E0D9DDE6' id: DirtLight decals: - 19270: -53,-79 - 19271: -53,-79 19272: -53,-81 19273: -50,-79 19274: -51,-79 @@ -9679,6 +9742,33 @@ entities: decals: 7302: 44,18 7303: 45,16 + - node: + cleanable: True + color: '#FFFFFF7F' + id: DirtLight + decals: + 21959: -67,48 + 21960: -67,48 + 21961: -67,47 + 21962: -69,48 + 21963: -68,47 + 21964: -65,46 + 21965: -65,46 + 21966: -65,46 + 21967: -65,45 + - node: + cleanable: True + color: '#FFFFFF82' + id: DirtLight + decals: + 21988: -5,-70 + 21989: -5,-70 + 21990: -6,-69 + 21991: -5,-69 + 21992: -7,-72 + 21993: -7,-72 + 21995: -5,-72 + 21996: -5,-72 - node: cleanable: True color: '#FFFFFFA7' @@ -9855,6 +9945,20 @@ entities: 21853: -39,-48 21901: -5,-75 21902: -6,-74 + 22317: -52,-79 + 22318: -52,-80 + 33042: 84,-59 + 33043: 84,-60 + 33044: 84,-60 + 33063: 94,-56 + 33064: 95,-56 + 33065: 94,-56 + 33068: 102,-58 + 33152: -64,32 + 33153: -66,28 + 33154: -71,29 + 33155: -70,29 + 33156: -71,29 - node: cleanable: True zIndex: 60 @@ -10009,6 +10113,30 @@ entities: 19294: -33,-80 19295: -34,-82 19296: -32,-81 + - node: + cleanable: True + color: '#FFFFFF7F' + id: DirtMedium + decals: + 21968: -65,45 + 21969: -65,45 + 21970: -65,45 + 21975: -69,48 + 21976: -68,46 + - node: + cleanable: True + color: '#FFFFFF82' + id: DirtMedium + decals: + 21997: -5,-71 + 21998: -6,-72 + - node: + cleanable: True + color: '#FFFFFF95' + id: DirtMedium + decals: + 22172: -72,39 + 22182: -61,50 - node: cleanable: True color: '#FFFFFFE3' @@ -10079,6 +10207,10 @@ entities: 21897: -7,-76 21898: -7,-78 21900: -5,-74 + 33041: 86,-61 + 33066: 95,-56 + 33067: 101,-58 + 33151: -65,31 - node: cleanable: True zIndex: 60 @@ -10114,37 +10246,33 @@ entities: color: '#FFFFFFFF' id: FlowersBROne decals: - 3: -24.112602,-2.9593968 932: -102.56544,-1.2520137 - 3825: -103,53 4361: -93,41 - 13306: -16.166363,-4.223278 - 13325: -16.45884,4.7594748 - 13331: -16.27134,12.24385 13472: -12,29 - 13477: -90,9 - 13485: -63,23 - 13507: -67,-2 - 13511: -62,2 - 13512: -65,2 - 13595: 21.978891,2.02199 - 13938: 5.134237,-40.81522 - 16959: -47,2 - 17732: -63,25 20021: -109,58 20028: -105,69 + 22819: -17.042027,-4.471541 + 23374: 16.147362,12.90822 + 23699: -17.164516,12.166958 + 23873: 21.627075,-1.9810783 + 24051: 25.82239,2.1391106 + 33789: -103.48448,47.10969 + - node: + color: '#DCDCDCFF' + id: FlowersBRThree + decals: + 34210: -33.281155,34.426052 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: 968: -20.209776,-9.96015 - 1300: -53.00699,42.48617 - 3828: -103,46 - 3967: -30.667995,32.913303 - 13611: 52,1 20048: -108.890114,41.38544 20052: -108.991035,41.989594 - 21691: -63.028893,15.844278 + 22820: -16.057652,-4.455916 + 23511: 16.755424,5.02837 + 33591: -103.57553,60.593807 + 33790: -103.71886,47.82844 - node: color: '#FFFFFFFF' id: FlowersBRTwo @@ -10154,17 +10282,12 @@ entities: 6347: -102.19308,20.676249 8402: -49,-71 8403: -46,-71 - 13303: -16.947613,-13.332653 - 13328: -16.786964,13.1501 - 13341: 16.160503,-12.403377 - 13373: 16.62636,13.038975 13468: -12,29 - 13490: -56,23 - 13492: -56,16 - 16958: -42,7 19852: 28.115833,36.809345 20030: -105,69 21124: -19.15564,-68.93596 + 23875: 25.345825,-2.1060781 + 33595: -103.82553,63.61612 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -10175,20 +10298,21 @@ entities: 3557: -0.18806887,3.802826 6237: -3.5266738,75.8135 6238: 0.3952012,73.0027 - 8248: -3.7022119,-22.288898 8397: -56,-59 - 13382: 16.048235,5.77335 - 13596: 22.77056,2.0567122 - 19994: -104,62 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 3968: -29.605495,32.89768 6422: 3.5109367,74.09762 8406: -47,-70 8407: -45,-71 - 13343: 16.941753,-13.247127 + 33550: -103.763885,52.807495 + 33597: -103.651924,62.440155 + - node: + color: '#DCDCDCFF' + id: Flowersbr3 + decals: + 34208: -32.420044,34.273273 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -10202,106 +10326,118 @@ entities: 8398: -50,-59 8404: -47,-71 8405: -48,-70 - 13480: -76,9 - 17729: -62,29 21122: -22.89622,-68.93596 + 22824: -16.432652,-5.096541 + 24234: 5.8378925,-40.809784 + 32205: -56,23 + 32208: -56,16 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 706: -102.54379,19.807339 1188: -88,-16 - 3826: -103,56 6345: -102.42745,20.629374 8399: -49,-59 8400: -49,-70 8401: -48,-71 - 13305: -17.103863,-4.942028 - 13329: -16.27134,12.74385 - 13344: 16.629253,-13.590877 - 13355: 16.269878,-5.6361756 - 13356: 16.582378,-5.7455506 - 13357: 16.801128,-5.3080506 - 13383: 16.56386,4.96085 13469: -15,29 13470: -12,29 - 13486: -56,23 - 13506: -64,-2 - 13510: -67,-2 - 13513: -65,2 - 13599: 22.610836,2.02199 - 13940: 5.431112,-40.799595 - 16960: -42,7 - 20016: -103.57098,46.436047 20023: -109,57 20024: -109,57 + 33596: -103.82553,63.053623 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 707: -100.07547,18.879877 - 3823: -103,44 - 3827: -103,64 - 13323: -16.33384,5.1969748 13471: -12,29 - 13479: -76,9 - 13574: 20.116045,-2.125054 - 13612: 52,1 - 13613: 52,-3 - 17979: 40.001354,-9.213992 + 22823: -16.088902,-4.909041 + 33012: -29.467392,32.921074 + 33592: -103.10331,60.32297 + 33593: -103.17275,63.518906 + 33788: -103.89073,47.094067 + - node: + color: '#DCDCDCFF' + id: Flowerspv3 + decals: + 34209: -33.433933,34.620495 + 34211: -32.676987,34.162163 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 665: -113.0021,4.074559 - 858: -27,-3 930: -103.64356,-1.8613887 931: -101.50294,-1.0957637 1204: -42.942074,47.838802 - 1293: -45.01228,38.882465 3561: -0.18806887,4.896576 - 3562: 0.18693113,6.287201 6231: -8.857239,75.7129 6232: -11.091614,76.0879 - 8249: -5.702212,-22.570148 - 13326: -16.99009,13.759475 - 13372: 16.798235,13.288975 - 13374: 16.985735,12.570225 - 13482: -71,15 - 13483: -71,3 - 17730: -57,29 - 17731: -62,29 - 17733: -57,25 - 17978: 39.98649,-9.8086405 19390: -20,-80 19853: 29.053333,36.82497 20049: -108.84605,42.006386 20050: -108.83042,42.70951 20056: -108.90037,50.65308 + 22822: -16.776402,-4.518416 + 23512: 16.005424,4.887745 + 24152: -25.201271,-2.9946845 + 24476: -41.987247,6.9691396 + 25015: -63.934956,-2.0448704 + 31722: -71,15 + 32203: -63,23 + 32207: -63,16 + 32209: -56,16 + 32210: -56,23 + 33549: -103.25347,54.828327 + 33791: -103.09386,46.67219 + 33793: -103.31261,44.906567 + - node: + color: '#B3B3B3FF' + id: Flowersy1 + decals: + 33545: -103.937836,52.849236 + 33587: -103.11025,60.468807 + - node: + color: '#DCDCDCFF' + id: Flowersy1 + decals: + 34207: -33.531155,34.182995 + 34212: -32.406155,34.676052 - node: color: '#FFFFFFFF' id: Flowersy1 decals: 704: -101.21761,19.876783 - 3824: -103,48 - 3829: -103,62 - 3964: -39.987946,28.940845 6233: -13.154114,73.00977 6234: -15.060364,74.1504 6344: -103.3962,20.629374 6423: 3.0109367,77.23824 8408: -46,-70 - 13478: -90,9 - 13481: -71,15 - 13491: -63,23 - 13508: -62,2 - 13572: 19.709795,-2.156304 - 13597: 22.14556,1.9803233 20029: -105,69 20046: -108.91754,41.07294 20051: -108.8773,42.55326 21121: -23.08372,-68.96721 - 21690: -63.060143,15.906778 + 22515: 16.758846,-12.703752 + 22626: 16.5539,-5.015027 + 22727: -16.49929,-13.509088 + 22821: -16.229527,-4.580916 + 22825: -17.026402,-5.096541 + 23510: 16.380424,5.418995 + 23513: 16.630424,4.450245 + 23607: -16.028057,3.9531403 + 24065: 24.244265,2.0453606 + 24233: 5.1434484,-40.809784 + 24378: -46.974644,1.9268417 + 25014: -63.09102,-2.0865371 + 25413: -90.00949,8.9238 + 29929: -0.0028298497,5.342206 + 31520: -40,29 + 32652: -44.58081,38.90991 + 32742: -52.97289,42.51311 + 33011: -30.397947,32.884037 + 33594: -103.29775,62.852234 + 33787: -103.79698,44.92219 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -10312,56 +10448,48 @@ entities: 933: -100.48731,-1.7520137 1186: -88,-17 1190: -88,-15 - 3560: 0.21818113,6.693451 4360: -95,41 4368: -94,67 6352: -103.26756,-2.7686312 6353: -101.48631,-2.9405062 - 13324: -16.99009,4.2750998 - 13327: -16.36509,13.478225 - 13345: 16.957378,-13.965877 - 13368: 16.84511,13.7421 - 13369: 16.954485,13.4921 - 13370: 16.53261,13.195225 - 13371: 16.798235,12.788975 - 13379: 16.235735,5.132725 13467: -15,29 - 13484: -71,3 - 13487: -56,16 - 13598: 22.99278,2.0150456 - 13610: 52,-3 - 16957: -47,2 - 17727: -63,25 - 17728: -57,29 19851: 28.506458,36.903095 - 20015: -103.82098,46.342297 20022: -109,58 20055: -108.94724,50.762455 + 31651: 40,-9 + 32202: -63,23 + 33590: -103.10331,61.079918 + - node: + color: '#B3B3B3FF' + id: Flowersy3 + decals: + 33546: -103.14056,55.547077 + 33588: -103.72137,63.170197 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 4: -25.221977,-3.1000218 1203: -45.973324,46.120052 - 1294: -42.871655,38.819965 - 8247: -5.499087,-20.945148 - 13304: -16.385113,-5.754528 - 13330: -16.77134,12.540725 - 13342: 16.519878,-12.965877 - 13509: -64,-2 - 13573: 20.459795,-2.140679 - 17734: -57,25 20047: -108.91754,42.29169 21123: -18.84314,-68.982834 + 23874: 22.48645,-2.1373281 + 24151: -26.034916,-3.0432956 + 24477: -41.97336,6.9066396 + 32204: -56,23 + 33547: -103.48431,52.53666 + 33589: -103.7422,60.78825 - node: color: '#FFFFFFFF' id: Flowersy4 decals: 967: -20.834776,-10.007025 - 3558: 0.14005613,4.302826 3559: -0.23494387,6.084076 8409: -45,-70 - 13941: 5.899862,-40.81522 + 23608: -17.059307,3.9843903 + 31652: 40,-10 + 32206: -63,16 + 33548: -103.638885,55.265827 + 33792: -103.42198,44.469067 - node: color: '#0000FF3F' id: FullTileOverlayGreyscale @@ -10372,6 +10500,12 @@ entities: id: FullTileOverlayGreyscale decals: 19341: -28.499073,-79.995445 + - node: + color: '#646464FF' + id: FullTileOverlayGreyscale + decals: + 31302: -6,2 + 31303: -5,2 - node: color: '#808080FF' id: FullTileOverlayGreyscale @@ -10421,12 +10555,6 @@ entities: 703: -104.87505,19.843662 925: -103,-2 928: -100,-1 - 3814: -103,45 - 3815: -103,47 - 3816: -103,52 - 3817: -103,55 - 3818: -103,61 - 3819: -103,63 4358: -95,41 4364: -93,67 5072: -9.171772,75.82089 @@ -10441,21 +10569,9 @@ entities: 5081: -3.2811444,73.086525 5082: -2.781144,72.66465 12803: -83.8914,-15.975268 - 13290: -17,-14 - 13291: -17,-4 - 13314: -16.276146,13.2126 - 13320: -16.318214,5.8063498 - 13336: 16.254253,-12.887752 - 13346: 16.144878,-5.8393006 - 13363: 16.06386,12.4296 - 13501: -67,2 - 13567: 20,-2 - 13609: 52,-3 - 13935: 5.837362,-40.080845 14406: 56.89372,-44.34356 17113: -41,82 19872: -13.42758,-77.003654 - 20013: -103.91473,47.248547 21832: -36,-15 - node: cleanable: True @@ -10470,7 +10586,6 @@ entities: decals: 927: -101,-2 4000: -58.45347,30.454102 - 4142: -85,53 4363: -95,67 6328: -18.536121,76.36506 6329: -18.739246,75.349434 @@ -10479,16 +10594,11 @@ entities: 6420: 3.7296867,74.17574 6421: 2.9953117,77.48824 12807: -82.0789,-16.022144 - 13289: -16,-13 - 13313: -17.088646,12.321975 - 13318: -16.255714,4.7282248 13465: -15,29 - 13568: 20.647295,-2.078179 - 13591: 22.19417,2.046821 - 13933: 5.0404863,-40.924595 - 13936: 5.196737,-40.12772 20027: -103,69 20053: -108.91678,49.134 + 22277: -55,-88 + 22281: -55,-87 - node: cleanable: True color: '#FFFFFFFF' @@ -10508,14 +10618,10 @@ entities: decals: 924: -102,-1 1182: -88,-18 - 4143: -87,54 6340: -104,21 6348: -103.53683,-2.7217562 6409: 3.8859367,74.51949 - 13337: 17.035503,-13.919002 - 13378: 16.12636,5.27335 - 13592: 22.985836,2.02199 - 13934: 5.8061113,-40.97147 + 22300: -51.71797,-86.50114 - node: cleanable: True color: '#FFFFFFFF' @@ -10536,12 +10642,10 @@ entities: color: '#FFFFFFFF' id: Grassa4 decals: - 13350: 16.926128,-4.5424256 - 13364: 16.798235,13.27335 - 13502: -65,-2 - 13569: 19.28792,-2.093804 16840: -40.762135,-87.61317 17160: -59,88 + 22285: -51.16963,-87.1307 + 22302: -52.222866,-87.410866 - node: cleanable: True color: '#FFFFFFFF' @@ -10567,11 +10671,9 @@ entities: 926: -105,-2 1183: -88,-16 9185: 84.88975,-18.7804 - 13292: -16,-6 13466: -12,29 - 13503: -61,2 - 13522: -66.29112,1.9994168 17115: -43,84 + 22216: -69.0275,50.655235 - node: cleanable: True color: '#FFFFFFFF' @@ -10597,6 +10699,10 @@ entities: 3344: -3.4126067,40.859547 9200: 81.70225,-27.32056 14407: 57.01872,-45.18731 + 22215: -68.05231,49.972366 + 22272: -24.910923,20.527945 + 22287: -54.122753,-87.896324 + 22320: -52.89884,-79.742935 - node: cleanable: True color: '#FFFFFFFF' @@ -10607,6 +10713,13 @@ entities: 18055: 11.079984,61.14152 19723: -45.762356,13.050093 19738: -52.90718,76.67905 + - node: + angle: 0.6981317007977318 rad + color: '#FFFFFFFF' + id: Grassb1 + decals: + 22306: -53.52353,-86.742096 + 22307: -53.085564,-84.304596 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -10625,13 +10738,12 @@ entities: 652: -109.79851,13.925332 653: -112.05892,15.196166 1185: -88,-15 - 4144: -85,55 6187: -7.7349463,68.219315 6191: -8.078696,71.44438 6192: -5.6880713,75.56817 9203: 81.62412,-27.617435 - 13594: 21.624725,2.0289345 16843: -40.21526,-89.64442 + 22310: -49.172215,-83.347595 - node: cleanable: True color: '#FFFFFFFF' @@ -10658,8 +10770,10 @@ entities: 6184: -8.781821,68.531815 6185: -8.688071,68.79744 6186: -8.250571,68.719315 - 13297: -16,-5 16842: -41.293385,-90.59754 + 22288: -54.029003,-87.146324 + 22309: -49.991814,-83.17572 + 22319: -52.11759,-79.03981 - node: cleanable: True color: '#FFFFFFFF' @@ -10678,11 +10792,14 @@ entities: 3343: -2.6626067,46.43767 4002: -55.67221,34.750973 9183: 84.45225,-18.796024 - 13298: -16,-5 - 13367: 17.204485,12.9921 - 13401: -2.7607985,-21.650389 14403: 61.44484,-37.284607 21833: -34.91858,-15.036564 + 22214: -68.96719,40.072353 + 22271: -23.942173,20.059195 + 22274: -35,-79 + 22278: -53,-88 + 22299: -51.412415,-85.87614 + 22308: -51.91369,-83.91397 - node: cleanable: True color: '#FFFFFFFF' @@ -10724,30 +10841,25 @@ entities: 670: -105.46847,11.227407 671: -103.37472,10.96699 672: -104.81144,12.366351 - 3965: -30.87112,32.99143 4001: -56.062836,35.266598 6188: -5.5161963,69.125565 6189: -5.1411963,68.70369 6190: -5.6411963,68.45369 - 8224: -6.940938,-20.257648 - 8225: -5.769063,-20.601398 - 8226: -6.753438,-21.210773 - 8227: -4.644063,-21.288898 - 8228: -6.519063,-22.335773 - 8229: -3.362813,-22.148273 - 8230: -3.315938,-21.117023 - 8231: -5.019063,-22.242023 - 8232: -3.472188,-22.992023 - 8233: -6.003438,-23.085773 9181: 81.81162,-23.236073 9191: 83.18662,-27.336185 12805: -83.04765,-16.03777 - 13593: 21.478891,2.112268 14404: 62.16359,-37.909607 16841: -41.27776,-88.26942 16844: -40.348305,-88.38433 17158: -56,89 21834: -36.038994,-16.940657 + 22011: -66.9771,45.90751 + 22273: -26.037914,18.192436 + 22301: -52.065193,-85.785866 + 22303: -48.61571,-86.56266 + 22304: -52.480408,-86.53094 + 22311: -57.993008,-87.96836 + 22312: -51.96134,-80.055435 - node: cleanable: True color: '#FFFFFFFF' @@ -10783,43 +10895,32 @@ entities: color: '#FFFFFFFF' id: Grassc1 decals: - 1292: -43.996655,38.86684 3340: -3.621306,47.172047 3675: -0.018994689,5.410658 - 3963: -40.03482,29.01897 - 4148: -87,53 4359: -93,41 6331: -17.067371,74.45881 6343: -102,21 13295: -16,-4 - 13339: 16.254253,-12.450252 - 13505: -61,2 - node: color: '#FFFFFFFF' id: Grassc2 decals: 8396: -57,-59 - 13340: 16.863628,-13.747127 - node: color: '#FFFFFFFF' id: Grassc3 decals: 963: -20.88165,-9.944525 3339: -9.621305,42.015797 - 4147: -85,54 - 13347: 17.066753,-5.8549256 - node: color: '#FFFFFFFF' id: Grassc4 decals: 962: -20.1629,-9.913275 - 1291: -45.059155,38.92934 3554: -0.031818867,7.099701 3555: -0.09431887,3.865326 - 13293: -17,-5 - 13294: -16,-13 - 13317: -16.974464,5.1500998 - 13365: 17.048235,13.89835 + 24053: 24.35364,2.1078606 + 24232: 5.1179852,-40.115826 - node: zIndex: 60 color: '#FFFFFFFF' @@ -10827,51 +10928,89 @@ entities: decals: 15841: -60.207863,36.27486 - node: - cleanable: True - color: '#FFDFFFB7' + color: '#FFFFFF26' + id: Grassd1 + decals: + 25656: -86.450264,54.533955 + - node: + color: '#FFFFFF3B' id: Grassd1 decals: - 17936: 38.45624,-22.299706 - 17938: 41.622623,-22.4335 - 17939: 39.154926,-22.269974 - 17940: 39.363045,-23.251143 - 17941: 40.21256,-23.262316 + 32644: -43.865532,38.862286 + - node: + color: '#FFFFFF4A' + id: Grassd1 + decals: + 33772: -104.04698,46.531567 - node: color: '#FFFFFFFF' id: Grassd1 decals: 1200: -45.1452,49.057552 - 1298: -53.00414,42.990517 3336: -8.16818,47.547047 3345: -8.709482,42.984547 3551: -0.25056887,4.912201 3552: -0.20369387,5.912201 3668: -0.018994689,5.426283 - 3669: 0.18413055,5.082533 - 3966: -29.105495,32.975803 - 4145: -86,53 6332: -17.082996,76.880684 - 8212: 2.89104,-21.121916 - 8213: 6.099374,-19.89275 - 8214: 4.4743733,-22.215666 - 8215: 3.1202068,-23.246916 - 8216: 6.755624,-21.819834 - 8217: 5.0993733,-23.08025 - 8218: 6.9535403,-22.9865 - 8219: 7.036874,-19.934416 - 8220: 4.713957,-21.382334 - 8221: 4.2972903,-20.674 9188: 81.99912,-21.014774 - 13315: -16.16677,13.9626 - 13348: 16.191753,-4.9486756 16838: -40.585102,-83.20121 + 25592: -85.25235,53.211037 + 25596: -86.05443,53.16937 - node: - cleanable: True - color: '#FFDFFFB7' + color: '#B3B3B37F' + id: Grassd2 + decals: + 33543: -103.22951,53.91749 + - node: + color: '#FFFFFF26' + id: Grassd2 + decals: + 25657: -85.419014,53.35687 + - node: + color: '#FFFFFF31' + id: Grassd2 + decals: + 25008: -66.95357,-1.9965882 + - node: + color: '#FFFFFF3B' + id: Grassd2 + decals: + 32643: -44.962753,38.876175 + - node: + color: '#FFFFFF3E' + id: Grassd2 + decals: + 32200: -56,23 + - node: + color: '#FFFFFF4A' + id: Grassd2 + decals: + 33774: -103.90636,47.82844 + 33775: -103.17198,45.500317 + 33777: -104.00011,45.54719 + - node: + color: '#FFFFFF50' + id: Grassd2 + decals: + 32441: 41.07045,-22.148853 + 32442: 41.77184,-22.17663 + 32443: 40.813503,-22.87802 + 32444: 38.299614,-22.72524 + 32445: 39.50795,-22.732185 + - node: + color: '#FFFFFF60' id: Grassd2 decals: - 17935: 39.511703,-22.79029 - 17937: 40.56716,-23.043016 + 33005: -30.175724,32.97663 + - node: + color: '#FFFFFF7F' + id: Grassd2 + decals: + 33571: -103.93118,61.582954 + 33573: -103.87563,63.860687 + 33574: -103.132576,60.440605 + 33575: -103.965904,60.676716 - node: color: '#FFFFFFFF' id: Grassd2 @@ -10882,7 +11021,45 @@ entities: 4003: -55.984715,33.204098 16837: -38.835102,-83.10746 17124: -40,82 - 19991: -104,62 + 24064: 23.57239,2.0766106 + 25594: -86.950264,53.91937 + 25595: -86.012764,54.82562 + - node: + color: '#B3B3B37F' + id: Grassd3 + decals: + 33544: -103.76076,54.552906 + - node: + color: '#FFFFFF28' + id: Grassd3 + decals: + 32559: -43,52 + - node: + color: '#FFFFFF31' + id: Grassd3 + decals: + 25009: -65.37312,-2.0382547 + 25013: -62.16751,-2.0608602 + - node: + color: '#FFFFFF3E' + id: Grassd3 + decals: + 32201: -63,23 + - node: + color: '#FFFFFF4A' + id: Grassd3 + decals: + 33773: -103.12511,47.000317 + - node: + color: '#FFFFFF60' + id: Grassd3 + decals: + 33006: -29.157206,32.925705 + - node: + color: '#FFFFFF7F' + id: Grassd3 + decals: + 33572: -103.00063,63.534348 - node: color: '#FFFFFFFF' id: Grassd3 @@ -10890,35 +11067,28 @@ entities: 964: -20.81915,-9.96015 1201: -44.92645,47.135677 3337: -9.51193,45.96892 - 3545: 0.046306133,7.209076 3546: -0.00056886673,6.271576 3553: -0.18806887,5.709076 - 3822: -103,54 5092: -5.2008862,88.839676 5093: -5.404011,88.339676 5094: -5.669636,88.5428 5095: -3.2093072,76.225655 - 8234: -5.800313,-21.304523 - 8235: -5.034688,-20.288898 - 8236: -6.940938,-21.788898 - 8237: -6.784688,-22.804523 - 8238: -5.847188,-22.210773 - 8239: -4.769063,-22.820148 - 8240: -4.128438,-21.804523 - 8241: -4.144063,-22.554523 - 8242: -4.034688,-20.679523 - 8243: -6.128438,-19.960773 9180: 86.78612,-22.564198 9205: 86.62412,-27.117435 16836: -36.913227,-84.98246 16845: -40.660805,-88.056206 - 17977: 40,-10 + 25593: -86.89818,53.13812 + 25597: -85.18985,54.054787 - node: - cleanable: True - color: '#FFDFFFB7' + color: '#FFFFFF41' + id: Grasse1 + decals: + 31721: -71,15 + - node: + color: '#FFFFFF4A' id: Grasse1 decals: - 17934: 40.344177,-22.388903 + 33776: -103.14073,44.125317 - node: color: '#FFFFFFFF' id: Grasse1 @@ -10930,21 +11100,62 @@ entities: 694: -103.354225,18.895744 695: -104.2188,19.458244 696: -104.760475,18.999912 - 1299: -52.97289,43.38114 4365: -95,67 6341: -103,21 6342: -101,21 - 13316: -16.83384,13.071975 - 17976: 40,-9 + 25591: -85.231514,54.836037 + - node: + color: '#FFFFFF26' + id: Grasse2 + decals: + 25655: -85.43985,54.35687 + - node: + color: '#FFFFFF28' + id: Grasse2 + decals: + 29918: 0.011059046,4.8577485 + 29919: 0.011059046,4.8577485 + 29920: 0.045781255,6.2952485 + 29921: 0.018003464,4.211915 + 29922: 0.045781255,7.0174704 + 32558: -43,51 + - node: + color: '#FFFFFF2B' + id: Grasse2 + decals: + 31518: -40,29 + - node: + color: '#FFFFFF31' + id: Grasse2 + decals: + 25010: -63.67986,-2.0590882 + 25011: -62.895138,-2.0313106 + 25012: -64.48695,-2.0608602 + - node: + color: '#FFFFFF3B' + id: Grasse2 + decals: + 32642: -43.01831,38.855343 + - node: + color: '#FFFFFF3E' + id: Grasse2 + decals: + 32199: -56,16 + - node: + color: '#FFFFFF60' + id: Grasse2 + decals: + 33004: -31,33 + - node: + color: '#FFFFFF7F' + id: Grasse2 + decals: + 33570: -103.132576,61.881565 - node: color: '#FFFFFFFF' id: Grasse2 decals: 3338: -6.996306,40.56267 - 3547: 0.09318113,6.709076 - 3548: 0.21818113,3.505951 - 4146: -87,55 - 4149: -86,55 4357: -94,41 6325: -16.817371,77.568184 6326: -17.629871,77.95881 @@ -10962,17 +11173,80 @@ entities: 6417: 2.9328117,77.92574 6418: 2.8390617,77.80074 6419: 3.0578117,77.87887 - 13296: -17,-6 - 13338: 17.098003,-13.122127 - 13349: 16.988628,-5.3549256 - 13504: -65,-2 - 13570: 19.553545,-2.031304 - 13583: 24.88167,-2.031304 - 13584: 25.13167,-2.093804 16835: -42.397602,-87.17838 - 19992: -104,62 - 20014: -103.72723,47.10792 20054: -108.91089,49.43433 + - node: + color: '#B3B3B37F' + id: Grasse3 + decals: + 33540: -103.79201,55.427906 + 33541: -103.20867,52.82374 + 33542: -103.64617,52.35499 + - node: + color: '#FFFFFF26' + id: Grasse3 + decals: + 25654: -86.512764,53.533955 + - node: + color: '#FFFFFF28' + id: Grasse3 + decals: + 25411: -90,9 + 25412: -90,9 + 32556: -47,51 + 32557: -47,52 + - node: + color: '#FFFFFF31' + id: Grasse3 + decals: + 25007: -66.08551,-2.0660326 + - node: + color: '#FFFFFF37' + id: Grasse3 + decals: + 24746: -63.43348,2.0105512 + 24747: -65.47515,2.0591624 + 24748: -66.38487,2.0730512 + - node: + color: '#FFFFFF3B' + id: Grasse3 + decals: + 25086: 52,-3 + 25087: 52,-1 + 25088: 52,1 + 32641: -46.032196,38.952564 + - node: + color: '#FFFFFF3E' + id: Grasse3 + decals: + 32198: -63,16 + - node: + color: '#FFFFFF41' + id: Grasse3 + decals: + 25363: -76,9 + - node: + color: '#FFFFFF4A' + id: Grasse3 + decals: + 33770: -103.82823,44.719067 + 33771: -103.20323,46.17219 + - node: + color: '#FFFFFF50' + id: Grasse3 + decals: + 32446: 40.46628,-23.072464 + 32447: 41.66073,-23.00302 + - node: + color: '#FFFFFF69' + id: Grasse3 + decals: + 24749: -64.397484,2.005281 + - node: + color: '#FFFFFF7F' + id: Grasse3 + decals: + 33569: -103.903404,62.909344 - node: color: '#FFFFFFA8' id: Grasse3 @@ -10986,15 +11260,9 @@ entities: decals: 661: -94.19171,11.138813 669: -103.44763,11.81074 - 1297: -53.00414,42.178017 3335: -2.386931,42.078297 - 3540: 0.030681133,3.959076 3541: -0.047443867,4.209076 3542: -0.047443867,4.834076 - 3543: 0.10880613,5.849701 - 3544: 0.046306133,6.349701 - 3820: -103,62 - 3821: -103,46 3998: -53.312843,30.71972 3999: -53.60972,30.37597 4366: -94,67 @@ -11011,22 +11279,19 @@ entities: 5100: -15.030475,73.95823 6193: -5.7505713,76.03742 6194: -9.209789,73.17168 - 13319: -16.99009,4.2438498 - 13366: 16.25136,12.89835 - 13571: 20.334795,-2.062554 16833: -42.663227,-91.17838 16834: -44.225727,-90.13151 16839: -42.772602,-84.29496 17120: -45,83 17122: -41,82 17123: -39,82 + 25590: -86.89818,54.846455 - node: color: '#FFFFFFFF' id: GrayConcreteTrimBox decals: 4104: -45,11 4105: -48,11 - 7089: 38,21 16128: 72,-3 16129: 72,-1 - node: @@ -11076,10 +11341,10 @@ entities: 13430: -2,-20 13431: -4,-19 13432: 4,21 - 13943: 6,-40 16244: 58,1 16261: -26,-86 20575: -17,32 + 24184: 6,-40 - node: color: '#898989FF' id: GrayConcreteTrimCornerNw @@ -11114,10 +11379,10 @@ entities: 13384: -4,21 13433: 2,-20 13434: 4,-19 - 13942: 5,-40 16235: 54,1 16255: -30,-86 20576: -19,32 + 24183: 5,-40 - node: color: '#ACACACFF' id: GrayConcreteTrimCornerSe @@ -11152,10 +11417,10 @@ entities: 13435: 4,-20 13436: -4,20 13437: -2,21 - 13944: 6,-41 16239: 55,-3 16243: 58,-1 20580: -17,30 + 24185: 6,-41 - node: cleanable: True color: '#FFFFFFFF' @@ -11197,10 +11462,10 @@ entities: 13438: 2,21 13439: 4,20 13440: -4,-20 - 13945: 5,-41 16234: 54,-3 16249: -30,-91 20581: -19,30 + 24186: 5,-41 - node: color: '#FFFFFFFF' id: GrayConcreteTrimEndE @@ -11542,7 +11807,6 @@ entities: 13422: 2,23 13423: 2,22 13424: 2,-23 - 13425: 2,-22 13426: 2,-21 13427: -2,-23 13428: -2,-22 @@ -11563,6 +11827,7 @@ entities: 21562: 7,-4 21723: -57,16 21724: -57,23 + 22341: 2,-22 - node: cleanable: True color: '#FFFFFFFF' @@ -11694,7 +11959,6 @@ entities: 16035: 72,-5 16036: 73,-5 16037: 74,-5 - 16038: 75,-5 16039: 76,-5 16040: 77,-5 16041: 78,-5 @@ -11735,7 +11999,6 @@ entities: 16258: -27,-86 16259: -27,-86 16260: -27,-86 - 19827: 4,-28 20577: -18,32 21557: 6,-5 21558: 7,-5 @@ -11906,7 +12169,6 @@ entities: 16246: -30,-91 16247: -29,-91 16248: -28,-91 - 19828: 4,-28 20579: -18,30 21694: -63,17 21695: -56,17 @@ -11958,8 +12220,6 @@ entities: 3329: -9,44 3330: -9,46 3331: -9,45 - 4079: -51,5 - 4080: -51,4 4101: -48,7 4565: 15,27 5704: -27,-46 @@ -12028,7 +12288,6 @@ entities: 13442: -2,-22 13443: -2,-21 13444: 2,-23 - 13445: 2,-22 13446: 2,-21 13447: 2,22 13448: 2,23 @@ -12055,6 +12314,9 @@ entities: 21560: 7,-4 21696: -62,16 21697: -62,23 + 22290: -51,4 + 22291: -51,5 + 22342: 2,-22 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -12234,6 +12496,7 @@ entities: 2341: 66,-46 2342: 67,-46 2343: 68,-46 + 22293: -48,2 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -12449,6 +12712,12 @@ entities: decals: 12552: 88,-60 12553: 87,-59 + - node: + color: '#999999FF' + id: MiniTileDarkInnerNe + decals: + 30762: -17,-10 + 30763: -16,-11 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNe @@ -12546,7 +12815,6 @@ entities: decals: 2903: 69,-64 2906: 51,-64 - 3511: 4,-2 9023: 124,-58 9030: 123,-58 9031: 122,-58 @@ -12659,9 +12927,9 @@ entities: color: '#4A3519FF' id: MiniTileLineOverlayE decals: - 2634: -72,3 2635: -77,9 2636: -72,15 + 24480: -72,3 - node: color: '#DA8929FF' id: MiniTileLineOverlayE @@ -12907,23 +13175,11 @@ entities: id: MiniTileSteelEndN decals: 1313: -42,43 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileSteelEndN - decals: - 17975: 40,-9 - node: color: '#8BDA8EFF' id: MiniTileSteelEndS decals: 1314: -42,42 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileSteelEndS - decals: - 17974: 40,-10 - node: color: '#8BDA8EFF' id: MiniTileSteelEndW @@ -12986,7 +13242,6 @@ entities: 1927: -62,8 2217: 53,-4 2218: 53,0 - 2219: 53,-2 2558: -89,8 2561: -75,8 2562: -70,14 @@ -13054,7 +13309,6 @@ entities: decals: 1912: -65,9 1925: -62,10 - 2220: 53,-2 2221: 53,0 2222: 53,2 2551: -70,16 @@ -13102,7 +13356,6 @@ entities: 1918: -62,9 1929: -65,9 2542: -77,9 - 2544: -72,3 2546: -72,15 2579: 77,-31 4113: -88,53 @@ -13118,11 +13371,9 @@ entities: 13753: 15,-11 13754: 15,-7 13765: 15,7 - 13766: 15,11 - 13946: -16,-7 - 13947: -16,-11 13975: -16,7 13976: -16,11 + 24479: -72,3 - node: color: '#334E6DC8' id: MiniTileSteelLineN @@ -13364,7 +13615,6 @@ entities: decals: 1936: -62,9 2223: 53,-3 - 2224: 53,-1 2225: 53,1 2543: -89,9 2545: -70,15 @@ -13384,8 +13634,6 @@ entities: 13759: 16,-11 13762: 16,-7 13767: 16,7 - 13768: 16,11 - 13937: -15,-7 13939: -15,-11 13973: -15,11 13974: -15,7 @@ -13450,16 +13698,16 @@ entities: color: '#4B709CFF' id: MiniTileWhiteCornerNe decals: - 9749: -12,2 - 9767: -10,-15 9823: 16,2 9860: 3,20 - 9970: 17,11 9995: 14,18 9996: 15,17 9997: 13,19 - 10223: -22,2 10224: -35,2 + 30749: -10,-15 + 31423: -22,2 + 31436: -12,2 + 31674: 17,11 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerNe @@ -13499,6 +13747,7 @@ entities: 2139: 59,9 2164: 86,2 2237: 59,2 + 31350: 69,4 - node: color: '#C6FF91FF' id: MiniTileWhiteCornerNe @@ -13548,6 +13797,7 @@ entities: id: MiniTileWhiteCornerNe decals: 10369: 51,4 + 31344: 69,4 - node: color: '#DE3A3ACC' id: MiniTileWhiteCornerNe @@ -13645,17 +13895,17 @@ entities: color: '#4B709CFF' id: MiniTileWhiteCornerNw decals: - 9752: -16,2 - 9800: 10,-15 9820: 12,2 9859: -3,20 9964: -14,18 9965: -13,19 9966: -15,17 - 10040: -17,-7 10137: -17,11 10225: -37,2 - 10226: -30,2 + 31273: -17,-7 + 31358: 10,-15 + 31422: -30,2 + 31426: -16,2 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerNw @@ -13842,13 +14092,15 @@ entities: color: '#4B709CFF' id: MiniTileWhiteCornerSe decals: - 9750: -12,-2 9827: 16,-2 10008: 15,-17 10009: 14,-18 - 10066: 3,-19 10216: -35,-2 - 10222: -22,-2 + 31299: 3,-19 + 31412: -22,-2 + 31435: -12,-2 + 31675: 17,7 + 33158: 17,-11 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerSe @@ -13971,6 +14223,7 @@ entities: 12763: -72,-28 12780: -72,-37 19924: -3,-42 + 25835: -34,-35 - node: color: '#FF9821FF' id: MiniTileWhiteCornerSe @@ -14032,15 +14285,15 @@ entities: color: '#4B709CFF' id: MiniTileWhiteCornerSw decals: - 9751: -16,-2 9832: 12,-2 - 10033: -17,-11 10041: -14,-18 10042: -15,-17 - 10053: -3,-19 10138: -17,7 10215: -37,-2 - 10221: -30,-2 + 31272: -17,-11 + 31295: -3,-19 + 31411: -30,-2 + 31427: -16,-2 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerSw @@ -14162,7 +14415,6 @@ entities: id: MiniTileWhiteCornerSw decals: 13681: -32,-37 - 13682: -34,-35 - node: color: '#FFA647FF' id: MiniTileWhiteCornerSw @@ -14186,7 +14438,7 @@ entities: color: '#4B709CFF' id: MiniTileWhiteEndE decals: - 10228: -22,-4 + 31380: -22,-4 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndE @@ -14224,7 +14476,7 @@ entities: color: '#4B709CFF' id: MiniTileWhiteEndW decals: - 10227: -30,-4 + 31379: -30,-4 - node: color: '#EFB341FF' id: MiniTileWhiteEndW @@ -14261,19 +14513,19 @@ entities: 9983: 14,17 9985: 3,19 9986: 1,20 - 9990: -13,-15 - 9991: -10,-16 10002: 15,-15 10125: -11,16 10207: 16,1 10229: -35,1 - 10230: -22,1 - 11144: -29,-4 - 11145: -23,-4 - 13632: -13,2 13758: 15,-7 - 13783: 15,11 17933: -12,16 + 30750: -10,-16 + 30751: -13,-15 + 30893: -22,1 + 31409: -29,-4 + 31410: -23,-4 + 31437: -13,2 + 31679: 15,11 - node: color: '#792DA9FF' id: MiniTileWhiteInnerNe @@ -14379,16 +14631,16 @@ entities: 9987: -1,20 9988: -13,18 9989: -14,17 - 9992: 10,-16 - 9993: 13,-15 10121: 11,16 10231: -30,1 - 11142: -29,-4 - 11143: -23,-4 - 13630: -16,1 - 13631: -15,2 - 13971: -15,-7 13991: -15,11 + 30738: -15,-7 + 31356: 13,-15 + 31357: 10,-16 + 31407: -23,-4 + 31408: -29,-4 + 31430: -16,1 + 31431: -15,2 - node: color: '#792DA9FF' id: MiniTileWhiteInnerNw @@ -14411,8 +14663,8 @@ entities: color: '#BC863FFF' id: MiniTileWhiteInnerNw decals: - 2247: 53,-2 2248: 53,0 + 31377: 53,-2 - node: color: '#C6FF91FF' id: MiniTileWhiteInnerNw @@ -14507,7 +14759,6 @@ entities: id: MiniTileWhiteInnerSe decals: 10010: 14,-17 - 10067: 3,-18 10123: 12,15 10124: -13,15 10126: -11,17 @@ -14515,13 +14766,14 @@ entities: 10208: 16,-1 10232: -35,-1 10233: -22,-1 - 11139: -29,-2 - 11140: -23,-2 - 13633: -13,-2 13693: 15,-2 13757: 15,-11 17930: -13,16 17931: -12,17 + 31300: 3,-18 + 31403: -29,-2 + 31404: -23,-2 + 31439: -13,-2 - node: color: '#792DA9FF' id: MiniTileWhiteInnerSe @@ -14533,6 +14785,8 @@ entities: decals: 13871: 1,26 13898: 41,-1 + 30760: -15,-7 + 31681: 15,11 - node: color: '#96DAFFFF' id: MiniTileWhiteInnerSe @@ -14636,19 +14890,19 @@ entities: decals: 9994: 13,-2 10043: -14,-17 - 10054: -3,-18 10099: 12.998371,14.999188 10120: 11,17 10133: -12,15 - 10155: -1,-19 10234: -30,-1 - 11134: -29,-2 - 11135: -23,-2 - 13628: -15,-2 - 13629: -16,-1 13972: -15,-11 13992: -15,7 17932: -12,16 + 31293: -1,-19 + 31296: -3,-18 + 31405: -29,-2 + 31406: -23,-2 + 31428: -15,-2 + 31429: -16,-1 - node: color: '#792DA9FF' id: MiniTileWhiteInnerSw @@ -14671,8 +14925,8 @@ entities: color: '#BC863FFF' id: MiniTileWhiteInnerSw decals: - 2249: 53,-2 2250: 53,0 + 31378: 53,-2 - node: color: '#C6FF91FF' id: MiniTileWhiteInnerSw @@ -14766,19 +15020,12 @@ entities: color: '#4B709CFF' id: MiniTileWhiteLineE decals: - 9753: -13,-3 9754: -13,-4 9755: -13,-5 9756: -13,-6 - 9757: -13,-7 - 9758: -13,-8 - 9759: -13,-9 - 9760: -13,-10 9761: -13,-11 9762: -13,-12 9763: -13,-13 - 9764: -13,-14 - 9782: -13,3 9784: -13,4 9786: -13,5 9789: -13,6 @@ -14797,9 +15044,6 @@ entities: 9856: 1,23 9857: 1,22 9858: 1,21 - 9967: 17,10 - 9968: 17,8 - 9969: 17,7 9971: 15,14 9972: 15,13 9973: 15,12 @@ -14815,13 +15059,10 @@ entities: 10005: 15,-12 10007: 15,-15 10139: 17,-7 - 10140: 17,-11 10147: 1,-20 10148: 1,-21 10149: 1,-22 10150: 1,-23 - 11128: -29,-3 - 11129: -23,-3 12029: -45,-29 12048: -55,-29 12049: -55,-31 @@ -14830,10 +15071,21 @@ entities: 12069: -59,-28 12312: -45,-31 12490: -59,-29 - 13697: -12,0 13720: 17,-8 - 13721: 17,-10 17928: -13,15 + 30746: -13,-14 + 31281: -13,-10 + 31282: -13,-9 + 31283: -13,-8 + 31284: -13,-7 + 31396: -23,-3 + 31397: -29,-3 + 31433: -13,3 + 31434: -13,-3 + 31438: -12,0 + 31676: 17,8 + 31677: 17,10 + 33157: 17,-10 - node: color: '#52B4E9FF' id: MiniTileWhiteLineE @@ -14848,6 +15100,11 @@ entities: 807: 58,-26 2202: 58,-27 2203: 58,-25 + - node: + color: '#808080FF' + id: MiniTileWhiteLineE + decals: + 30759: -15,-8 - node: color: '#96DAFFFF' id: MiniTileWhiteLineE @@ -14932,8 +15189,6 @@ entities: 1854: 81,0 1855: 81,1 1856: 81,2 - 1868: 69,3 - 1870: 69,4 1884: 63,5 1885: 63,6 2113: 86,4 @@ -14949,6 +15204,7 @@ entities: 2208: 59,-3 2209: 59,-4 2255: 90,-15 + 31351: 69,3 - node: color: '#C6FF91FF' id: MiniTileWhiteLineE @@ -15089,6 +15345,7 @@ entities: 10373: 51,-1 10374: 51,-3 10378: 51,-4 + 31342: 69,3 - node: color: '#DE3A3ACC' id: MiniTileWhiteLineE @@ -15165,7 +15422,6 @@ entities: 10354: 41,5 10355: 41,4 10356: 41,2 - 11686: -34,-35 11687: -34,-34 11688: -34,-33 11689: -34,-32 @@ -15425,8 +15681,6 @@ entities: color: '#4B709CFF' id: MiniTileWhiteLineN decals: - 9765: -12,-15 - 9766: -11,-15 9768: -9,-16 9769: -8,-16 9770: -7,-16 @@ -15444,9 +15698,6 @@ entities: 9783: 6,-16 9785: 7,-16 9787: 8,-16 - 9788: 9,-16 - 9792: 11,-15 - 9794: 12,-15 9861: -2,20 9862: 2,20 9863: -4,19 @@ -15468,35 +15719,17 @@ entities: 9879: 11,19 9880: 12,19 10001: 17,-7 - 10162: -17,1 - 10163: -18,1 - 10164: -19,1 - 10165: -20,1 - 10166: -21,1 10183: 18,1 10186: 19,1 10188: 20,1 10190: 21,1 10191: 22,1 - 10192: 23,1 - 10193: 24,1 - 10194: 25,1 - 10195: 26,1 - 10196: 27,1 - 10197: 28,1 10235: -34,1 10236: -33,1 10237: -32,1 10238: -31,1 - 10239: -29,2 10248: -28,2 10253: -24,2 - 10254: -23,2 - 11116: -28,-4 - 11117: -27,-4 - 11118: -26,-4 - 11119: -25,-4 - 11120: -24,-4 12030: -45,-29 12031: -46,-29 12032: -48,-29 @@ -15514,10 +15747,34 @@ entities: 12060: -60,-28 12061: -59,-28 13763: 16,-7 - 13784: 16,11 - 13967: -16,-7 13989: -16,11 14366: 17,1 + 30095: 23,1 + 30096: 24,1 + 30097: 25,1 + 30098: 26,1 + 30099: 27,1 + 30100: 28,1 + 30747: -12,-15 + 30748: -11,-15 + 30890: -21,1 + 30891: -20,1 + 30892: -19,1 + 30906: -18,1 + 30907: -17,1 + 31275: -16,-7 + 31352: 9,-16 + 31353: 11,-15 + 31354: 12,-15 + 31388: -28,-4 + 31389: -27,-4 + 31390: -27,-4 + 31391: -26,-4 + 31392: -25,-4 + 31393: -24,-4 + 31424: -29,2 + 31425: -23,2 + 31678: 16,11 - node: color: '#52B4E996' id: MiniTileWhiteLineN @@ -15648,8 +15905,6 @@ entities: 1865: 72,2 1866: 71,2 1867: 70,2 - 1875: 69,4 - 1878: 68,4 1879: 66,4 1880: 65,4 1881: 64,4 @@ -15667,6 +15922,7 @@ entities: 2235: 54,2 2251: 52,0 2252: 52,-2 + 31349: 68,4 - node: color: '#C6FF91FF' id: MiniTileWhiteLineN @@ -15675,8 +15931,6 @@ entities: 10325: 33,1 10326: 32,1 10327: 31,1 - 10328: 30,1 - 10331: 29,1 10400: -40,28 10401: -42,28 10402: -43,28 @@ -15805,6 +16059,8 @@ entities: 14559: -36,28 14560: -37,28 14561: -38,28 + 30106: 29,1 + 30107: 30,1 - node: color: '#D381C996' id: MiniTileWhiteLineN @@ -15901,6 +16157,7 @@ entities: decals: 10367: 48,4 10368: 49,4 + 31343: 68,4 - node: color: '#DE3A3A96' id: MiniTileWhiteLineN @@ -16284,8 +16541,6 @@ entities: 9835: 8,17 9836: 9,17 9837: 10,17 - 9975: 17,7 - 10006: 17,-11 10011: 13,-18 10012: 12,-18 10013: 11,-18 @@ -16295,33 +16550,15 @@ entities: 10017: 7,-18 10018: 6,-18 10019: 5,-18 - 10020: 4,-18 - 10021: 2,-19 - 10022: -2,-19 - 10023: -4,-18 10024: -5,-18 10025: -6,-18 10026: -7,-18 10027: -8,-18 10028: -9,-18 - 10029: -10,-18 - 10030: -11,-18 - 10031: -12,-18 - 10032: -13,-18 - 10157: -17,-1 - 10158: -18,-1 - 10159: -19,-1 - 10160: -20,-1 - 10161: -21,-1 10167: 17,-1 10168: 18,-1 10169: 19,-1 10170: 20,-1 - 10171: 21,-1 - 10172: 22,-1 - 10173: 23,-1 - 10174: 24,-1 - 10175: 25,-1 10176: 27,-1 10177: 26,-1 10178: 28,-1 @@ -16329,18 +16566,6 @@ entities: 10218: -33,-1 10219: -32,-1 10220: -31,-1 - 11111: -28,-2 - 11112: -27,-2 - 11113: -26,-2 - 11114: -25,-2 - 11115: -24,-2 - 11121: -29,-4 - 11122: -28,-4 - 11123: -27,-4 - 11124: -26,-4 - 11125: -25,-4 - 11126: -24,-4 - 11127: -23,-4 12026: -49,-31 12027: -47,-31 12028: -45,-31 @@ -16360,9 +16585,40 @@ entities: 13785: 16,7 13868: -3,17 13869: -2,17 - 13970: -16,-11 13990: -16,7 17929: -11,17 + 30101: 25,-1 + 30102: 24,-1 + 30103: 23,-1 + 30104: 21,-1 + 30105: 22,-1 + 30743: -16,-11 + 30898: -21,-1 + 30899: -20,-1 + 30900: -19,-1 + 30902: -18,-1 + 30903: -17,-1 + 31286: -13,-18 + 31287: -12,-18 + 31288: -12,-18 + 31289: -11,-18 + 31290: -10,-18 + 31291: -4,-18 + 31294: -2,-19 + 31297: 4,-18 + 31298: 2,-19 + 31381: -29,-4 + 31382: -28,-4 + 31383: -27,-4 + 31384: -26,-4 + 31385: -25,-4 + 31386: -24,-4 + 31387: -23,-4 + 31398: -28,-2 + 31399: -27,-2 + 31400: -26,-2 + 31401: -25,-2 + 31402: -24,-2 - node: color: '#52B4E996' id: MiniTileWhiteLineS @@ -16904,7 +17160,6 @@ entities: 11682: -38,-35 11683: -39,-35 11684: -35,-35 - 11685: -34,-35 11702: -59,-32 11703: -60,-32 11704: -61,-32 @@ -17130,7 +17385,6 @@ entities: color: '#4B709CFF' id: MiniTileWhiteLineW decals: - 9801: 13,-14 9802: 13,-13 9803: 13,-12 9804: 13,-11 @@ -17158,30 +17412,21 @@ entities: 9851: -1,23 9852: -1,24 9853: -1,25 - 9958: -17,-8 - 9959: -17,-10 9960: -15,-15 - 9961: -15,-3 - 9962: -15,3 9963: -15,15 - 10034: -15,-12 10035: -15,-13 10036: -15,-14 10037: -15,-4 10038: -15,-5 - 10039: -15,-6 10141: -15,12 10142: -15,13 10143: -15,14 10144: -15,4 10145: -15,5 10146: -15,6 - 10151: -1,-20 10152: -1,-21 10153: -1,-22 10154: -1,-23 - 11130: -23,-3 - 11131: -29,-3 12050: -57,-29 12051: -57,-31 12052: -63,-28 @@ -17191,6 +17436,16 @@ entities: 12056: -63,-32 13694: 12,0 13722: 13,-10 + 30737: -15,-6 + 30744: -17,-10 + 30752: -15,-12 + 31111: -15,-3 + 31274: -17,-8 + 31292: -1,-20 + 31355: 13,-14 + 31394: -23,-3 + 31395: -29,-3 + 31432: -15,3 - node: color: '#52B4E9FF' id: MiniTileWhiteLineW @@ -17267,8 +17522,6 @@ entities: decals: 1896: 61,6 1897: 61,4 - 1898: 61,3 - 1899: 61,2 1900: 61,1 1901: 61,-1 1902: 61,-3 @@ -17287,9 +17540,11 @@ entities: 2156: 83,0 2230: 53,-4 2244: 53,1 - 2245: 53,-1 2246: 53,-3 2256: 89,-15 + 31347: 61,2 + 31348: 61,3 + 31374: 53,-1 - node: color: '#C6FF91FF' id: MiniTileWhiteLineW @@ -17308,7 +17563,6 @@ entities: 10494: -41,11 10495: -41,10 10496: -41,9 - 10497: -41,7 10637: -41,2 10638: -41,3 10640: -41,4 @@ -17375,6 +17629,7 @@ entities: 11443: -77,56 14332: -73,56 14340: -41,52 + 24392: -41,7 - node: color: '#D381C9CC' id: MiniTileWhiteLineW @@ -17430,6 +17685,8 @@ entities: 1818: 82,-16 10351: 48,-4 18003: 48,-3 + 31345: 61,2 + 31346: 61,3 - node: color: '#DE3A3ACC' id: MiniTileWhiteLineW @@ -17782,8 +18039,6 @@ entities: 14511: 7,-26 14512: 12,-26 14513: 17,-26 - 14514: 22,0 - 14515: 23,0 14516: 29,0 14517: 30,0 14518: 36,0 @@ -17815,8 +18070,6 @@ entities: 14376: 14,10 14377: 14,9 14378: 14,8 - 14379: 22,0 - 14380: 23,0 14381: 29,0 14382: 30,0 14383: 36,0 @@ -17878,6 +18131,8 @@ entities: 14537: -55,54 14538: -63,54 14539: -69,54 + 30119: 22,0 + 30120: 23,0 - node: color: '#FFFFFFFF' id: OldConcreteTrimCornerNe @@ -18093,32 +18348,6 @@ entities: 16524: -24,-89 16536: -25,-89 16538: -26,-90 - - node: - zIndex: 30 - color: '#00000015' - id: OriginStationSign4 - decals: - 13257: -74,31 - 13258: -74,32 - 13259: -73,33 - 13260: -73,32 - 13261: -73,31 - 13262: -72,33 - 13263: -71,33 - 13264: -71,32 - 13265: -71,31 - 13266: -72,31 - 13267: -70,31 - 13268: -70,32 - 13269: -70,33 - 13270: -69,33 - 13271: -69,32 - 13272: -68,32 - 13273: -74,31 - 13274: -73,31 - 13275: -72,31 - 13276: -71,31 - 13277: -70,31 - node: color: '#00000018' id: OriginStationSign4 @@ -18390,8 +18619,6 @@ entities: decals: 3415: -8,1 3416: -7,2 - 3417: -6,2 - 3418: -5,2 3419: -5,1 3420: -6,1 3421: -7,1 @@ -19101,22 +19328,6 @@ entities: decals: 9636: 5,-28 9637: 5,-28 - 13132: -74,35 - 13133: -74,36 - 13134: -73,36 - 13135: -73,35 - 13136: -72,34 - 13137: -72,35 - 13138: -71,36 - 13139: -71,35 - 13140: -71,34 - 13141: -70,36 - 13142: -70,35 - 13143: -70,34 - 13144: -69,36 - 13145: -69,34 - 13146: -68,36 - 13147: -68,35 - node: color: '#00000057' id: OriginStationSign4 @@ -19247,25 +19458,9 @@ entities: color: '#00000063' id: OriginStationSign4 decals: - 3403: -11,1 - 3404: -10,1 - 3405: -10,0 - 3406: -10,-1 - 3407: -11,-1 - 3408: 10,1 3409: 11,1 - 3410: 10,0 - 3411: 10,-1 3412: 11,-1 3413: 11,0 - 3414: -11,0 - - node: - color: '#00000069' - id: OriginStationSign4 - decals: - 15436: -67,35 - 15437: -67,35 - 15438: -67,35 - node: color: '#0000006C' id: OriginStationSign4 @@ -19613,8 +19808,6 @@ entities: 17082: 11,-42 17088: 13,-45 17090: 13,-46 - 17091: 14,-46 - 17093: 15,-46 17094: 16,-46 17095: 17,-46 17097: 18,-46 @@ -19624,6 +19817,8 @@ entities: 21218: 9,6 21219: 9,5 21220: 9,4 + 32460: 14,-46 + 32461: 15,-46 - node: color: '#FFFFFFFF' id: Remains @@ -19646,13 +19841,9 @@ entities: decals: 4004: -54.219093,30.438473 6195: -5.2315726,73.496956 - 8250: -6.733462,-21.585773 12792: -82.96953,-19.13152 - 13575: 21.553545,-2.078179 - 13600: 25.132044,2.0289345 17152: -85.625206,1.0253956 19871: -15.318205,-76.17553 - 19993: -104,61 20025: -104,69 - node: color: '#8B8CA4E2' @@ -19672,8 +19863,6 @@ entities: 6196: -10.668888,73.26258 6197: -10.153263,76.028206 6346: -101.34933,20.785624 - 13321: -17.036964,5.7750998 - 13601: 24.236212,2.0636568 - node: color: '#8B8CA4E2' id: Rock03 @@ -19718,9 +19907,7 @@ entities: color: '#FFFFFFFF' id: Rock04 decals: - 1289: -45.94978,38.913715 12788: -82.12578,-12.944018 - 13322: -16.17759,4.1032248 14414: 57.051895,-38.443962 16846: -35.94399,-88.01508 20026: -109,65 @@ -19738,10 +19925,8 @@ entities: color: '#FFFFFFFF' id: Rock05 decals: - 8251: -4.608462,-23.117023 12787: -82.92265,-12.912768 12796: -82.11015,-19.10027 - 13351: 16.848003,-4.1361756 17155: -84.48458,-0.55272937 19870: -18.599455,-77.659904 - node: @@ -19754,9 +19939,7 @@ entities: id: Rock06 decals: 966: -20.678526,-10.0539 - 1290: -43.402905,38.851215 6198: -14.012638,74.23133 - 13576: 22.38167,-2.093804 - node: color: '#00000041' id: Rust @@ -21091,9 +21274,6 @@ entities: 2382: 83,-41 3359: -46,18 3360: -46,19 - 3458: -10,1 - 3459: -10,0 - 3460: -10,-1 5782: -35,-43 5783: -35,-45 5784: -33,-45 @@ -21149,6 +21329,9 @@ entities: 21634: 134,-55 21672: 124,-62 21673: 124,-52 + 30155: -10,-1 + 30156: -10,0 + 30157: -10,1 - node: color: '#3EB388FF' id: WarnLineGreyscaleE @@ -21176,14 +21359,14 @@ entities: id: WarnLineGreyscaleE decals: 10129: 15,16 - 10130: 17,9 10136: 15,-16 11611: -45,-30 12072: -59,-30 12073: -55,-30 - 13634: -12,-1 - 13635: -12,1 13719: 17,-9 + 31440: -12,-1 + 31441: -12,1 + 31680: 17,9 - node: color: '#52B4E9FF' id: WarnLineGreyscaleE @@ -21774,12 +21957,12 @@ entities: id: WarnLineGreyscaleW decals: 10127: -15,16 - 10128: -17,-9 10131: 12,-1 10132: 12,1 10134: -15,-16 12070: -53,-30 12071: -57,-30 + 30745: -17,-9 - node: color: '#52B4E9FF' id: WarnLineGreyscaleW @@ -22152,9 +22335,6 @@ entities: 2339: 66,-37 2383: 81,-41 2385: 81,-36 - 3467: 10,1 - 3468: 10,0 - 3469: 10,-1 5899: 15,-40 6817: 38,-46 6818: 38,-45 @@ -22224,6 +22404,9 @@ entities: 21640: 128,-60 21670: 112,-52 21671: 112,-62 + 30158: 10,-1 + 30159: 10,0 + 30160: 10,1 - node: zIndex: 1 color: '#0000000C' @@ -22258,9 +22441,6 @@ entities: 2378: 82,-35 2814: 55,-55 2817: 65,-55 - 2924: -71,19 - 2925: -70,19 - 2928: -72,19 5888: 10,-39 5895: 14,-48 5896: 16,-39 @@ -22447,11 +22627,6 @@ entities: decals: 21607: -29,-57 21616: -28,-61 - - node: - color: '#CDCCCDFF' - id: WoodTrimThinCornerNe - decals: - 13101: -69,33 - node: color: '#CDCCD3FF' id: WoodTrimThinCornerNe @@ -22577,11 +22752,6 @@ entities: 21590: -27,-60 21606: -31,-57 21617: -31,-61 - - node: - color: '#CDCCCDFF' - id: WoodTrimThinCornerNw - decals: - 13100: -73,33 - node: color: '#CDCCD3FF' id: WoodTrimThinCornerNw @@ -23020,11 +23190,6 @@ entities: decals: 1482: -47,63 1483: -41,63 - - node: - color: '#CDCCCDFF' - id: WoodTrimThinInnerNe - decals: - 13106: -69,32 - node: color: '#D4D4D4FF' id: WoodTrimThinInnerNe @@ -23115,11 +23280,6 @@ entities: decals: 21589: -65,-9 21605: -23,-60 - - node: - color: '#CDCCCDFF' - id: WoodTrimThinInnerNw - decals: - 13105: -73,32 - node: color: '#D4D4D4FF' id: WoodTrimThinInnerNw @@ -23362,13 +23522,6 @@ entities: id: WoodTrimThinLineE decals: 5636: -18,56 - - node: - color: '#CDCCCDFF' - id: WoodTrimThinLineE - decals: - 13107: -68,35 - 13108: -68,36 - 13109: -68,36 - node: color: '#CDCCD0FF' id: WoodTrimThinLineE @@ -23681,6 +23834,13 @@ entities: 20390: -30,37 20520: -29,31 21348: -4,-12 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 34192: -32,34 + 34193: -32,35 - node: angle: 0.17453292519943295 rad color: '#FFFFFFFF' @@ -23756,11 +23916,6 @@ entities: 1491: -40.991108,63.688316 1492: -41.000366,63.549423 1493: -40.991108,63.40128 - - node: - color: '#C3C5BDFF' - id: WoodTrimThinLineN - decals: - 15434: -67,35 - node: color: '#C7BFC3FF' id: WoodTrimThinLineN @@ -23807,26 +23962,6 @@ entities: id: WoodTrimThinLineN decals: 11534: -52,-4 - - node: - color: '#CDCCCDFF' - id: WoodTrimThinLineN - decals: - 13097: -74,32 - 13098: -68,32 - 13099: -68,32 - 13102: -72,33 - 13103: -71,33 - 13104: -70,33 - 13115: -74,36 - 13116: -73,36 - 13117: -71,36 - 13118: -70,36 - 13119: -69,36 - 13120: -69,36 - 13121: -68,36 - 13122: -68,36 - 13123: -68,36 - 13131: -74,33 - node: color: '#CDCCD3FF' id: WoodTrimThinLineN @@ -23878,10 +24013,17 @@ entities: id: WoodTrimThinLineN decals: 21006: -47,-14 - 21007: -46,-14 21008: -45,-14 21017: -52,80 21018: -53,80 + 31168: -46,-14 + 33024: -74,31 + 33025: -73,31 + 33026: -72,31 + 33027: -71,31 + 33028: -70,31 + 33029: -69,31 + 33030: -68,31 - node: color: '#D6CFD9FF' id: WoodTrimThinLineN @@ -23914,13 +24056,6 @@ entities: 1542: -42,66 1543: -46,67 1544: -42,67 - - node: - zIndex: 30 - angle: 0.5235987755982988 rad - color: '#D9D2D0FF' - id: WoodTrimThinLineN - decals: - 13182: -69.82245,35.532387 - node: color: '#D9DFE9FF' id: WoodTrimThinLineN @@ -24059,13 +24194,6 @@ entities: id: WoodTrimThinLineN decals: 1993: -52.124813,62.55855 - - node: - zIndex: 30 - angle: -0.3490658503988659 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 13174: -70.121544,32.544136 - node: angle: -0.19198621771937624 rad color: '#FFFFFFFF' @@ -24079,21 +24207,6 @@ entities: decals: 10210: -30.871998,-78.83211 10211: -27.028248,-71.46511 - - node: - zIndex: 30 - angle: -0.17453292519943295 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 13179: -74.23092,29.188131 - - node: - zIndex: 30 - angle: -0.10471975511965978 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 13177: -72.79342,30.172506 - 13178: -72.35592,31.141256 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -24224,12 +24337,21 @@ entities: 21331: -6,-4 21332: -5,-4 21333: -4,-4 + 34186: -33,33 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineN decals: 5257: -60,67 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 34187: -33,33 + 34188: -32,33 + 34189: -34,33 - node: angle: 0.17453292519943295 rad color: '#FFFFFFFF' @@ -24246,27 +24368,12 @@ entities: decals: 1990: -53.709564,63.136314 10212: -26.606373,-71.80886 - - node: - zIndex: 30 - angle: 0.3490658503988659 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 13173: -68.777794,31.575386 - node: angle: 0.4537856055185257 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: 1991: -53.658638,62.96039 - - node: - zIndex: 30 - angle: 0.5235987755982988 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 13172: -71.79342,30.591011 - 13176: -72.69967,30.641256 - node: angle: 0.5934119456780721 rad color: '#FFFFFFFF' @@ -24279,13 +24386,6 @@ entities: id: WoodTrimThinLineN decals: 1996: -53.696182,63.961464 - - node: - zIndex: 30 - angle: 1.2217304763960306 rad - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 13181: -72.444275,30.714373 - node: color: '#2E211AFF' id: WoodTrimThinLineNWhite @@ -24324,11 +24424,6 @@ entities: decals: 11602: -49,-8 11603: -48,-8 - - node: - color: '#C3C5BDFF' - id: WoodTrimThinLineS - decals: - 15435: -67,35 - node: color: '#C7BFC3FF' id: WoodTrimThinLineS @@ -24370,17 +24465,6 @@ entities: decals: 5638: -20,55 5639: -19,55 - - node: - color: '#CDCCCDFF' - id: WoodTrimThinLineS - decals: - 13124: -72,34 - 13125: -72,34 - 13126: -71,34 - 13127: -70,34 - 13128: -69,34 - 13129: -69,34 - 13130: -69,34 - node: color: '#CDCCD0FF' id: WoodTrimThinLineS @@ -24454,6 +24538,7 @@ entities: 21005: -45,-19 21022: -53,84 21023: -52,84 + 33031: -71,30 - node: color: '#D9DFE9FF' id: WoodTrimThinLineS @@ -24651,9 +24736,6 @@ entities: 2873: -72,6 2874: -71,6 2875: -70,6 - 2929: -72,19 - 2930: -71,19 - 2931: -70,19 2980: -79,10 2983: -87,10 3216: -2,54 @@ -24744,6 +24826,14 @@ entities: id: WoodTrimThinLineS decals: 5254: -60,66 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 34194: -34,36 + 34195: -33,36 + 34196: -32,36 - node: angle: 0.3490658503988659 rad color: '#FFFFFFFF' @@ -24861,15 +24951,6 @@ entities: id: WoodTrimThinLineW decals: 5637: -21,56 - - node: - color: '#CDCCCDFF' - id: WoodTrimThinLineW - decals: - 13110: -74,33 - 13111: -74,35 - 13112: -74,35 - 13113: -74,36 - 13114: -74,36 - node: color: '#CDCCD0FF' id: WoodTrimThinLineW @@ -25182,6 +25263,13 @@ entities: 20435: -34,30 20521: -31,31 21349: -8,-13 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 34190: -34,34 + 34191: -34,35 - node: color: '#2E211AFF' id: WoodTrimThinLineWWhite @@ -25224,13 +25312,6 @@ entities: 15800: -86.6082,38.851242 15801: -86.561325,38.788742 15802: -86.63945,38.773117 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#411C00FF' - id: body - decals: - 7518: -15.136648,-71.42611 - node: cleanable: True color: '#FFFFFF50' @@ -25279,74 +25360,16 @@ entities: decals: 19333: -22.682224,-82.381546 - node: - color: '#A4582F97' + cleanable: True + color: '#289F5009' id: brush decals: - 8101: -7.2794094,22.480179 - 8102: -6.9356594,22.386429 - 8103: -6.5606594,22.527054 - 8104: -6.4669094,22.652054 - 8105: -6.4981594,23.277054 - 8106: -6.5294094,22.980179 - 8107: -7.2169094,22.558304 - 8108: -6.8731594,22.527054 - 8109: -6.9200344,22.917679 - 8110: -7.1544094,22.980179 - 8111: -6.9356594,23.620804 - 8112: -6.3731594,22.902054 - 8113: -6.3106594,22.917679 - 8114: -5.6856594,23.183304 - 8115: -5.5137844,23.198929 - 8116: -5.0137844,23.323929 - 8117: -4.7481594,23.402054 - 8118: -4.5919094,23.402054 - 8119: -4.5606594,24.105179 - 8120: -4.3419094,24.542679 - 8121: -4.3575344,24.245804 - 8122: -4.3262844,23.761429 - 8123: -4.4825344,23.620804 - 8124: -4.7481594,23.511429 - 8125: -5.1544094,23.433304 - 8126: -5.6700344,23.355179 - 8127: -5.8262844,23.245804 - 8128: -6.0294094,23.136429 - 8129: -6.2637844,23.105179 - 8130: -6.5450344,23.433304 - 8131: -6.2950344,23.464554 - 8132: -6.0294094,23.511429 - 8133: -5.2950344,23.761429 - 8134: -5.1231594,24.073929 - 8135: -5.1231594,24.386429 - 8136: -5.5294094,24.136429 - 8137: -5.8575344,24.120804 - 8138: -6.2794094,24.261429 - 8139: -6.8106594,24.214554 - 8140: -7.1231594,24.105179 - 8141: -7.1075344,23.667679 - 8142: -7.4356594,23.402054 - 8143: -7.2481594,23.636429 - 8144: -6.7169094,23.870804 - 8145: -6.1387844,24.042679 - 8146: -6.1544094,23.792679 - 8147: -6.3419094,23.386429 - 8148: -6.9356594,23.042679 - 8149: -7.3887844,24.339554 - 8150: -5.8731594,24.261429 - 8151: -7.3106594,22.433304 - 8152: -4.4981594,24.183304 - 8153: -6.1231594,22.948929 - 8154: -4.2012844,24.120804 - 8155: -4.0606594,24.323929 - 8156: -3.8575344,24.355179 - 8157: -3.7325344,24.417679 - 8158: -4.1700344,24.339554 - 8159: -7.3419094,22.386429 - 8160: -7.4512844,22.245804 - 8161: -7.5137844,22.136429 - 8162: -7.1856594,22.167679 - 8163: -7.4825344,21.933304 - 8164: -4.2169094,23.948929 - 8165: -3.8731594,24.089554 + 33143: -69.40667,41.370113 + 33144: -69.170555,41.529835 + 33145: -69.00389,41.842335 + 33146: -69.12889,42.043724 + 33147: -69.34417,42.182613 + 33148: -69.37889,42.265945 - node: color: '#AF936980' id: brush @@ -25558,22 +25581,10 @@ entities: 8072: 5.285129,22.964554 8073: 5.613254,22.667679 8074: 5.894504,22.183304 - 8075: 6.316379,22.152054 - 8076: 6.910129,21.964554 8077: 5.519504,24.417679 8078: 5.644504,23.933304 8079: 5.941379,23.605179 8080: 6.207004,23.105179 - 8081: 6.613254,22.808304 - 8082: 6.863254,22.698929 - 8083: 7.128879,22.652054 - 8084: 6.519504,24.339554 - 8085: 6.566379,23.870804 - 8086: 6.707004,23.261429 - 8087: 7.050754,23.027054 - 8088: 7.097629,24.152054 - 8089: 7.144504,23.730179 - 8090: 7.207004,23.589554 8091: 5.066379,21.917679 8092: 7.316379,21.370804 - node: @@ -25581,6 +25592,582 @@ entities: id: brush decals: 19332: -22.494724,-82.143654 + - node: + color: '#FFFFFF02' + id: brush + decals: + 29746: 27.9699,0.06273466 + 29747: 27.9699,-0.07789034 + 30056: -1.7986588,3.2088346 + 30057: -1.8264366,3.3014271 + 30061: -2.1921775,3.2551308 + - node: + color: '#FFFFFF06' + id: brush + decals: + 34142: -31.926409,35.234455 + 34143: -31.889372,35.1789 + 34144: -31.91252,34.901123 + 34145: -31.889372,34.70205 + 34146: -31.940298,35.100197 + 34147: -32.102337,35.18816 + 34148: -32.259743,35.18353 + 34149: -32.277283,35.20148 + 34150: -32.490246,35.206112 + 34151: -32.670803,35.20148 + 34152: -32.814323,35.192223 + 34153: -33.124508,35.19685 + 34154: -33.420803,35.21074 + 34155: -33.605988,35.22463 + 34156: -33.754135,35.22 + 34157: -31.998861,34.684856 + 34158: -32.00349,34.851524 + - node: + color: '#FFFFFF0C' + id: brush + decals: + 31452: -39.838726,29.15767 + 31453: -39.80632,29.125261 + 32537: -46.908905,50.6898 + 32538: -46.95057,50.8148 + 32539: -46.978348,50.995354 + 32540: -46.98529,51.26619 + 32541: -47.01307,51.53008 + 32542: -46.971405,51.6273 + 32543: -46.915848,51.84258 + 32544: -46.853348,51.41202 + 32545: -46.895016,51.53702 + 32546: -46.908905,51.72452 + 32547: -46.92279,51.97452 + 32548: -46.957516,52.1273 + 32549: -47.12418,52.0648 + 32550: -47.18668,52.009243 + 32551: -47.256126,51.72452 + 32552: -47.228348,51.90508 + 32553: -47.304737,52.09952 + 32554: -47.006126,51.696743 + 32555: -46.98529,51.41897 + - node: + color: '#FFFFFF12' + id: brush + decals: + 31602: 39.887077,-9.62848 + 31603: 39.910225,-9.443295 + 31604: 39.98893,-9.355332 + 31605: 40.044483,-9.494221 + 31606: 39.933372,-9.952555 + 31607: 40.039852,-10.031258 + 31608: 40.10004,-10.0682955 + 31609: 40.08615,-10.142369 + 31610: 39.905594,-10.114592 + 31611: 40.09541,-9.804406 + 31612: 40.155594,-9.75348 + 31613: 40.10004,-8.971073 + 31614: 40.007446,-8.9016285 + - node: + color: '#FFFFFF14' + id: brush + decals: + 33490: -103.67157,51.954273 + 33491: -103.97365,51.995937 + 33492: -104.03615,52.058437 + 33493: -104.01532,52.287605 + 33494: -103.6924,52.193855 + 33495: -103.5674,52.475105 + 33496: -103.47365,52.204273 + 33497: -103.463234,52.506355 + 33498: -103.20282,52.381355 + 33499: -104.088234,52.162605 + 33500: -104.088234,52.245937 + 33501: -104.09865,52.433437 + 33502: -103.619484,52.756355 + 33503: -103.72365,52.891773 + 33504: -103.64032,53.131355 + 33505: -103.60907,52.933437 + 33506: -103.775734,52.995937 + 33507: -103.92157,53.339687 + 33508: -103.994484,53.266773 + 33509: -103.963234,53.006355 + 33510: -103.5674,53.580414 + 33511: -103.6299,53.392914 + 33512: -103.744484,53.361664 + 33513: -103.76532,53.65333 + 33514: -103.931984,53.476246 + 33515: -104.025734,53.65333 + 33516: -104.04657,53.517914 + 33517: -104.0674,53.59083 + 33518: -104.10907,53.538746 + - node: + color: '#FFFFFF15' + id: brush + decals: + 33221: -103.65519,63.593155 + 33222: -103.78019,63.343155 + 33223: -103.87394,63.343155 + 33224: -103.97811,63.624405 + 33225: -104.04061,63.624405 + 33226: -103.88436,63.311905 + 33227: -103.85311,62.832737 + 33228: -103.926025,62.707737 + 33229: -103.707275,62.363987 + 33230: -103.62394,62.13482 + 33231: -104.03019,61.395237 + 33232: -104.113525,61.530655 + 33233: -104.00936,62.020237 + 33234: -103.91561,62.25982 + 33235: -103.988525,61.093155 + 33236: -104.051025,60.895237 + 33237: -104.051025,60.676487 + 33238: -103.56144,60.395237 + 33239: -103.269775,60.113987 + 33240: -103.72811,60.030655 + 33241: -103.988525,59.999405 + 33242: -103.88436,59.936905 + 33243: -103.269775,59.91607 + 33244: -103.00936,59.905655 + 33245: -102.97811,60.22857 + 33246: -103.019775,60.82232 + 33247: -103.04061,61.582737 + 33248: -103.03019,62.082737 + 33249: -102.957275,62.57232 + 33250: -102.91561,62.988987 + 33251: -102.90519,63.363987 + 33252: -102.90519,63.686905 + 33253: -102.957275,63.88482 + 33254: -103.00936,63.624405 + 33255: -103.051025,63.29107 + 33256: -103.07186,63.16607 + 33257: -103.113525,63.50982 + 33258: -103.53019,63.530655 + 33259: -103.10311,63.22857 + 33260: -103.34269,63.47857 + 33261: -103.144775,63.301487 + 33262: -103.64932,64.05783 + 33263: -103.77432,64.07866 + 33264: -103.90974,64.068245 + 33265: -104.01391,64.068245 + 33266: -104.08682,64.068245 + 33267: -103.57641,64.07866 + 33268: -103.17016,64.07866 + 33269: -103.02432,64.07866 + 33270: -102.85766,64.08908 + 33271: -103.18057,64.08908 + 33272: -103.45141,64.099495 + 33273: -103.39932,64.10991 + 33274: -103.08682,64.10991 + 33275: -102.87849,64.10991 + 33276: -102.87849,64.10991 + 33277: -102.90974,63.74533 + 33278: -102.93057,63.484913 + 33279: -102.94099,63.33908 + 33280: -102.94099,63.068245 + 33281: -102.97224,62.755745 + - node: + color: '#FFFFFF1B' + id: brush + decals: + 25762: -86.56485,55.076057 + 25763: -86.30443,55.159393 + 25764: -85.9711,55.128143 + 25765: -87.012764,54.680225 + 25766: -87.02318,54.284393 + 25767: -87.02318,54.003143 + 25768: -86.9711,53.721893 + 25769: -87.1586,53.753143 + 25770: -87.137764,53.471893 + 25771: -84.96068,54.138557 + 25772: -84.9711,53.846893 + 31745: -62.4342,29.264378 + 31746: -62.35087,29.076878 + 31747: -62.90642,29.090767 + 31748: -62.78142,29.257433 + 31749: -62.57309,29.354656 + 31750: -63.28837,29.2366 + 31751: -63.239758,29.2366 + 31752: -63.080036,29.2991 + 31753: -63.3092,29.021322 + 31754: -63.267536,28.9866 + 31755: -62.892536,29.306046 + 31756: -62.41337,29.285212 + 31757: -62.27448,28.87549 + 31758: -62.60781,28.868546 + - node: + color: '#FFFFFF25' + id: brush + decals: + 33626: -104.154884,47.93973 + 33627: -104.18266,48.12723 + 33628: -104.127106,48.175842 + 33629: -103.66183,48.12723 + 33630: -103.391,48.18279 + 33631: -103.141,48.1689 + 33632: -102.967384,48.12723 + 33633: -102.93266,48.085564 + 33634: -102.92572,47.96751 + 33635: -102.9535,47.76612 + 33636: -103.11322,47.45362 + 33637: -103.321556,47.24529 + 33638: -103.04378,47.68973 + 33639: -103.22433,47.398064 + 33640: -103.64794,47.20362 + 33641: -103.91183,47.15501 + 33642: -104.189606,47.24529 + 33643: -104.14794,47.398064 + 33644: -104.189606,47.12723 + 33645: -104.05766,46.90501 + 33646: -103.752106,46.87029 + 33647: -103.467384,46.925842 + 33648: -103.23822,47.14112 + 33649: -103.05072,47.50918 + 33650: -103.016,47.81473 + 33651: -102.946556,47.53001 + 33652: -103.071556,47.175842 + 33653: -103.30766,46.93279 + 33654: -102.96044,47.849453 + 33655: -102.9535,47.50223 + 33656: -103.02294,47.18279 + 33657: -103.252106,46.94668 + 33658: -103.529884,46.82168 + 33659: -103.41878,47.21751 + 33660: -103.654884,46.99529 + 33661: -103.884056,46.7939 + 33662: -104.071556,46.64112 + 33663: -103.467384,43.898064 + 33664: -103.59933,43.89112 + 33665: -103.66878,43.95362 + 33666: -103.62016,44.13418 + 33667: -103.516,44.349453 + 33668: -103.384056,44.50223 + 33669: -103.18266,44.57862 + 33670: -103.592384,44.148064 + 33671: -103.509056,44.488342 + 33672: -103.35628,44.64112 + 33673: -103.21044,44.70362 + 33674: -103.092384,44.64112 + 33675: -103.05766,44.50223 + 33676: -103.02294,44.43973 + 33677: -102.98128,44.474453 + 33678: -102.967384,44.62723 + 33679: -102.99516,44.786953 + 33680: -102.904884,44.62029 + 33681: -102.9535,44.7939 + - node: + color: '#FFFFFF28' + id: brush + decals: + 32574: -46.31692,38.647007 + 32575: -46.344696,38.778954 + 32576: -46.33081,38.903954 + 32577: -46.14331,38.890064 + 32578: -46.06692,38.577564 + 32579: -45.747475,38.584507 + 32580: -45.650253,38.723396 + 32581: -45.803032,38.459507 + 32582: -45.483585,38.674786 + 32583: -45.12942,38.841454 + 32584: -46.12942,38.876175 + 32585: -45.844696,38.945618 + 32586: -46.25442,38.890064 + 32587: -46.344696,39.049786 + 32588: -45.740532,38.647007 + 32589: -45.25442,38.591454 + 32590: -44.900253,38.605343 + 32591: -44.483585,38.612286 + 32592: -42.664143,39.008118 + 32593: -42.69192,38.987286 + 32594: -42.70581,38.785896 + 32595: -42.796085,38.702564 + 32596: -43.01831,38.68173 + 32597: -43.323864,38.695618 + 32598: -42.553032,38.688675 + 32599: -42.851643,38.792843 + 32600: -43.025253,38.876175 + 32601: -42.62942,38.841454 + 32602: -42.81692,38.966454 + 32603: -43.011364,38.61923 + 32604: -43.483585,38.688675 + 32605: -43.657196,38.653954 + 32606: -43.858585,38.61923 + 32607: -43.14331,38.598396 + 32608: -43.907196,38.758118 + 32609: -44.19192,38.876175 + 33217: -103.144775,62.530655 + 33218: -103.363525,62.905655 + 33219: -103.34269,63.124405 + 33220: -103.12394,63.343155 + - node: + color: '#FFFFFF2B' + id: brush + decals: + 32462: -42.770245,50.72452 + 32463: -42.90219,50.73841 + 32464: -42.985523,50.73841 + 32465: -43.034134,50.82869 + 32466: -42.6383,50.710632 + 32467: -42.735523,50.7523 + 32468: -42.735523,50.90508 + 32469: -42.72858,51.071743 + 32470: -42.7633,51.34952 + 32471: -42.80497,50.82869 + 32472: -42.957745,50.95369 + 32473: -43.04108,51.182854 + 32474: -43.02719,50.64119 + 32475: -43.096634,50.71758 + 32476: -43.08969,51.134243 + 32477: -43.06886,51.460632 + 32478: -43.110523,51.66202 + 32479: -42.686913,51.28702 + 32480: -42.749413,51.821743 + 32481: -42.66608,51.3148 + 32482: -42.686913,51.55091 + 32498: -47.31168,50.70369 + 32499: -47.256126,50.76619 + 32500: -47.283905,51.1898 + 32501: -47.283905,51.3148 + 32502: -47.033905,50.67591 + 32503: -47.020016,50.710632 + 32504: -46.99918,50.95369 + 32505: -46.929737,51.11341 + 32506: -47.29779,50.78702 + 32507: -47.353348,50.946743 + 32508: -47.36029,51.32869 + 32511: -47.395016,50.523132 + 32512: -47.07557,50.59952 + 32513: -46.915848,50.648132 + 32514: -46.95057,51.148132 + 32528: -47.290848,51.32869 + 32529: -47.26307,51.523132 + 32530: -47.31168,51.70369 + 32531: -47.304737,51.97452 + 32532: -47.006126,51.91202 + 32533: -47.020016,51.523132 + 32534: -47.02696,51.28702 + 32535: -47.290848,51.571743 + 32536: -47.33946,51.73147 + - node: + color: '#FFFFFF33' + id: brush + decals: + 23908: 20.274227,1.8995059 + 23909: 20.992977,1.8526309 + 23910: 21.071102,1.8838809 + 23911: 21.446102,1.9620059 + 23912: 21.711727,2.0088809 + 23913: 22.024227,2.0713809 + 23914: 22.305477,2.1182559 + 23915: 22.664852,2.1651309 + 23916: 22.852352,2.1807559 + 23917: 23.305477,2.2276309 + 23918: 23.571102,2.2588809 + 23919: 23.758602,2.3370059 + 23920: 21.024227,2.1026309 + 23921: 21.477352,2.2276309 + 23922: 22.039852,2.2745059 + 23923: 22.539852,2.2745059 + 23924: 23.039852,2.2745059 + 33805: -32.971035,34.317505 + 33806: -33.059,34.294353 + 33807: -33.216404,34.428616 + 33808: -33.02659,34.58139 + 33809: -32.7627,34.442505 + 33810: -32.859924,34.215652 + 33811: -33.035847,34.173985 + - node: + color: '#FFFFFF34' + id: brush + decals: + 24380: -41.82562,7.216209 + 24381: -41.84645,7.216209 + 24382: -41.86034,7.20232 + 24383: -41.902008,7.1953754 + 24384: -41.93673,7.1953754 + 24385: -41.978397,7.1953754 + 24386: -42.006172,7.1953754 + 24387: -42.027008,7.1953754 + 24388: -42.054787,7.1953754 + 24389: -42.07562,7.1953754 + 24390: -41.915897,7.174542 + 24394: -41.924747,7.073306 + 24395: -41.924747,7.003862 + 24396: -41.924747,6.948306 + 24397: -42.001137,7.003862 + 24398: -41.97336,7.1080284 + - node: + color: '#FFFFFF37' + id: brush + decals: + 24159: 5.506874,-40.541172 + 24160: 5.4235406,-40.45784 + 24161: 5.611041,-40.374508 + 24162: 5.7152076,-40.50645 + 24163: 5.611041,-40.64534 + 24164: 5.5138187,-40.56895 + 24165: 5.2846518,-40.58284 + 24166: 5.208263,-40.39534 + 24167: 5.4652076,-40.277283 + 24168: 5.8054852,-40.27034 + 24169: 5.9027076,-40.54812 + 24170: 5.673541,-40.749508 + 24171: 5.3471518,-40.79812 + 24172: 5.0971518,-40.50645 + 24173: 5.4165964,-40.20784 + 24174: 5.9513187,-40.22173 + 24175: 6.006874,-40.638393 + 24176: 5.770763,-40.825893 + 24177: 5.333263,-40.79812 + 24178: 5.0554852,-40.36062 + 24179: 5.3540964,-40.08284 + - node: + color: '#FFFFFF3E' + id: brush + decals: + 31938: -57.139633,29.263853 + 31939: -57.125744,29.124964 + 31940: -57.097965,28.958298 + 31941: -56.924355,29.187464 + 31942: -56.882687,29.388853 + 31943: -56.702133,29.277742 + 31944: -56.729908,29.215242 + 32025: -55.692432,24.639448 + 32026: -55.796597,24.67417 + 32027: -55.914654,24.820004 + 32028: -55.796597,24.917225 + 32029: -55.84521,24.743614 + 32030: -55.747986,25.083893 + 32031: -55.89382,24.97278 + 32032: -56.15771,24.757504 + 32033: -56.275764,25.028336 + 32034: -56.247986,24.896393 + 32035: -56.213264,24.965836 + 32036: -56.088264,25.09778 + 32037: -56.463264,25.04917 + 32038: -56.539654,25.153336 + 32039: -56.491043,24.792225 + 32040: -56.734097,25.04917 + 32041: -56.859097,25.083893 + 32042: -56.78271,24.729725 + 32043: -57.03271,24.792225 + 32044: -57.074375,24.778336 + 32045: -57.046597,25.090836 + 32046: -63.254375,24.715836 + 32047: -63.233543,24.743614 + 32048: -63.108543,24.826948 + 32049: -63.025208,24.92417 + 32050: -63.296043,24.667225 + 32051: -63.302986,24.750559 + 32052: -63.282154,24.931114 + 32053: -63.254375,25.042225 + 32054: -63.358543,25.03528 + 32055: -63.337708,25.09778 + 32056: -63.219654,24.688059 + 32057: -63.046043,24.681114 + 32058: -62.914097,24.695004 + 32059: -62.747433,24.701948 + 32060: -62.441875,24.813059 + 32061: -63.018265,24.750559 + 32062: -62.872433,24.938059 + 32063: -62.754375,25.021393 + 32064: -62.747433,24.653336 + 32065: -62.664097,24.854725 + 32066: -62.601597,24.993614 + 32067: -62.552986,25.028336 + 32068: -62.691875,24.556114 + 32069: -62.573822,24.618614 + 32070: -62.386322,24.715836 + 32071: -62.261322,24.792225 + 32072: -62.157154,24.820004 + 32073: -62.427986,24.701948 + 32074: -62.233543,24.701948 + 32075: -62.032154,24.708893 + 32076: -61.927986,24.715836 + 32077: -62.171043,24.98667 + 32078: -62.101597,25.021393 + 32079: -61.955765,25.007504 + 32085: -55.786602,15.779232 + 32086: -55.71253,15.765343 + 32087: -55.707897,15.672752 + 32088: -55.90234,15.649603 + 32089: -62.880077,16.149603 + 32090: -62.926376,16.117195 + 32091: -63.116188,16.0709 + 32092: -63.26434,16.140343 + 32093: -63.26434,16.001455 + 32094: -56.050457,22.903341 + 32095: -56.059715,22.968155 + 32096: -56.059715,23.116304 + 32097: -55.90231,23.093155 + - node: + color: '#FFFFFF41' + id: brush + decals: + 24327: -47.20381,2.121286 + 24328: -47.20381,2.1143417 + 24329: -47.1552,2.0935082 + 24330: -47.20381,2.0032306 + 24331: -47.057976,2.0518417 + 24332: -46.988533,2.0032306 + 24333: -47.148254,1.9060082 + - node: + color: '#FFFFFF6C' + id: brush + decals: + 33607: -103.37016,43.932114 + 33608: -103.467384,44.091835 + 33609: -103.35628,44.376556 + 33610: -103.18266,44.404335 + 33611: -102.904884,44.390446 + 33612: -104.009056,47.44668 + 33613: -103.634056,47.38418 + 33614: -103.37016,47.488342 + 33615: -103.30766,47.710564 + 33616: -103.35628,47.925842 + 33617: -103.60628,48.05779 + 33618: -104.064606,48.099453 + 33619: -104.09933,47.88418 + 33620: -104.11322,47.68973 + 33621: -104.08544,47.474453 + 33622: -103.91878,48.03001 + 33623: -103.641,48.113342 + 33624: -103.279884,48.1064 + 33625: -103.10628,47.9814 + - node: + color: '#FFFFFF6F' + id: brush + decals: + 23324: 17.225487,14.205095 + 23325: 16.006737,14.205095 + 23326: 17.100487,11.986345 + 23327: 17.178612,11.97072 + 23328: 16.537987,11.955095 + - node: + color: '#FFFFFF7F' + id: brush + decals: + 25032: 51.908592,1.1923652 + 25033: 52.033592,1.206254 + 25034: 51.998867,1.1090317 + 25035: 51.85998,0.97708726 + 25036: 52.005814,0.7756984 + 25037: 52.10998,1.0118096 + 25038: 51.866924,-1.19634 + 25039: 51.943314,-1.119951 + 25040: 52.04748,-1.1893954 + 25041: 52.061367,-1.2241178 + 25042: 51.950256,-0.9532844 + 25043: 52.005814,-0.86300665 + 25044: 52.10998,-0.8282844 + 25045: 51.818314,-1.07134 + 25046: 51.894703,-0.8768955 + 25047: 52.179424,-1.182451 + - node: + color: '#FFFFFFFF' + id: brush + decals: + 23611: -16.869236,13.107656 + 23612: -16.509861,13.420156 + 23613: -16.150486,13.029531 + 23614: -16.541111,12.670156 + 24482: -71.1904,3.182149 - node: cleanable: True color: '#FFFFFF7C' @@ -25607,6 +26194,62 @@ entities: id: burnt4 decals: 21735: 76,-28 + - node: + color: '#FFFFFFFF' + id: bushsnowa1 + decals: + 25095: 52,-1 + - node: + color: '#FFFFFFFF' + id: bushsnowa2 + decals: + 22512: 17.084198,-13.122502 + 22729: -16.81179,-12.290338 + 23375: 16.037987,14.22072 + 23379: 17.241112,13.31447 + 23879: 19.8302,-2.0123281 + 24058: 19.838015,1.9672356 + 24789: -63.273247,2.1788921 + - node: + color: '#FFFFFFFF' + id: bushsnowa3 + decals: + 22513: 16.381073,-12.544377 + 22627: 16.819525,-5.218152 + 22628: 16.2414,-3.796277 + 23312: 6.1873074,24.209465 + 23313: -6.5550375,24.209465 + 23519: 17.192924,3.87212 + 23881: 23.064575,-2.2154531 + 24182: 5.9721518,-40.27034 + 25018: -66.7815,-1.8643149 + 29933: 0.28883684,6.3977613 + - node: + color: '#FFFFFFFF' + id: bushsnowb1 + decals: + 22817: -15.9482765,-3.877791 + 22818: -16.995152,-3.877791 + 22833: 17.089249,-5.838723 + 23604: -16.246807,5.5312653 + 23697: -16.117641,14.073208 + 24157: -25.593323,-2.972115 + 24788: -65.01828,1.9913921 + - node: + color: '#FFFFFFFF' + id: bushsnowb2 + decals: + 22828: -17.042027,-4.862166 + 23880: 23.61145,-1.8560783 + 24056: 20.213015,2.3422356 + 24575: -71.07465,3.1497416 + - node: + color: '#FFFFFFFF' + id: bushsnowb3 + decals: + 22514: 16.943573,-12.106877 + 24057: 20.63489,1.9984856 + 24063: 22.79114,2.2016106 - node: color: '#FFFFFF6B' id: carp @@ -25633,41 +26276,6 @@ entities: 19568: -12.696622,-89.08169 19569: -8.321622,-88.11294 19570: -6.290372,-85.90981 - - node: - cleanable: True - angle: 0.3490658503988659 rad - color: '#411C00FF' - id: clown - decals: - 7513: -13.996023,-70.23861 - - node: - cleanable: True - angle: 1.9198621771937625 rad - color: '#411C00FF' - id: clown - decals: - 7514: -16.136648,-70.11361 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#411C00FF' - id: clown - decals: - 7517: -14.230398,-71.92611 - - node: - cleanable: True - angle: 3.490658503988659 rad - color: '#411C00FF' - id: clown - decals: - 7515: -15.964773,-71.76986 - - node: - cleanable: True - angle: 6.632251157578453 rad - color: '#411C00FF' - id: clown - decals: - 7516: -16.417898,-70.92611 - node: color: '#FF00006B' id: clown @@ -25720,6 +26328,15 @@ entities: id: cyr_g decals: 16850: -24.768799,-89.97761 + - node: + cleanable: True + color: '#001C475A' + id: dot + decals: + 22222: 4.3689337,64.457436 + 22223: 4.498564,64.50374 + 22224: 4.804119,64.25374 + 22225: 5.0865264,64.51299 - node: cleanable: True color: '#2209001F' @@ -25770,6 +26387,36 @@ entities: 20681: -68.08006,78.31132 20682: -67.95969,78.57058 20683: -67.96895,78.45484 + - node: + cleanable: True + color: '#289F501B' + id: dot + decals: + 33118: -69.17269,41.20082 + 33119: -69.35325,41.652206 + 33120: -69.07547,41.56193 + 33121: -69.26991,41.68693 + 33122: -69.19353,42.110542 + 33123: -68.992134,42.256374 + 33124: -68.91575,42.339706 + 33125: -69.408806,42.43693 + 33126: -69.33241,42.416096 + 33127: -69.304634,42.256374 + 33128: -69.346306,42.492485 + 33129: -69.054634,41.770264 + 33130: -68.82547,41.881374 + 33131: -69.242134,41.895264 + 33132: -69.26991,41.81193 + 33133: -69.32547,41.603596 + 33134: -69.401855,41.485542 + 33135: -69.429634,41.478596 + 33136: -69.38797,41.096653 + 33137: -69.36019,42.423042 + 33138: -69.401855,42.485542 + 33139: -69.45741,42.520264 + 33140: -69.45047,42.291096 + 33141: -69.45047,42.353596 + 33142: -69.50603,42.541096 - node: cleanable: True color: '#2E09003D' @@ -25787,6 +26434,140 @@ entities: 20732: -68.01596,78.01433 20733: -68.14096,78.05137 20734: -68.16411,78.15322 + - node: + cleanable: True + color: '#3E26151B' + id: dot + decals: + 22089: -69.481224,48.34799 + 22090: -69.481224,48.40354 + 22091: -69.47659,48.43132 + 22092: -69.4627,48.449837 + 22093: -69.44418,48.463726 + 22094: -69.40715,48.486874 + 22095: -69.37011,48.491505 + 22096: -69.25437,48.47299 + 22097: -69.36085,48.477615 + 22098: -69.453445,48.477615 + 22099: -69.481224,48.468357 + 22100: -69.48585,48.463726 + 22101: -69.51826,48.491505 + 22102: -69.481224,48.505394 + 22103: -69.40715,48.505394 + 22104: -69.34233,48.514652 + 22105: -69.37937,48.491505 + 22106: -69.51826,48.47299 + 22107: -69.53677,48.408173 + 22108: -69.513626,48.357246 + 22109: -69.49048,48.27854 + 22110: -69.49511,48.422062 + 22111: -69.52752,48.2878 + 22112: -69.47659,48.449837 + 22113: -69.49974,48.357246 + 22114: -69.508995,48.264652 + 22115: -69.50437,48.199837 + 22116: -69.50437,48.135025 + 22117: -69.50437,48.07021 + 22118: -69.50437,48.014652 + - node: + cleanable: True + color: '#3E261528' + id: dot + decals: + 22119: -69.49048,48.44521 + 22120: -69.49974,48.40354 + 22121: -69.49974,48.31095 + 22122: -69.49974,48.255394 + 22123: -69.50437,48.18595 + 22124: -69.513626,48.047062 + 22125: -69.416405,48.47299 + 22126: -69.33308,48.486874 + 22127: -69.26826,48.496136 + 22128: -69.166405,48.496136 + 22146: -70.14807,39.37992 + 22147: -70.03696,39.430847 + 22148: -69.884186,39.477142 + 22149: -69.842514,39.416958 + 22150: -69.67585,39.477142 + 22151: -69.78696,39.467884 + 22152: -69.935104,39.49566 + 22153: -69.79622,39.477142 + 22154: -69.95363,39.467884 + 22155: -69.93048,39.481773 + 22156: -69.86566,39.398438 + 22157: -69.80085,39.4077 + 22158: -69.95826,39.3614 + 22159: -69.80548,39.305847 + 22160: -69.949,39.37529 + 22161: -70.03696,39.4077 + 22162: -69.91659,39.287327 + 22163: -69.99529,39.24566 + 22164: -69.99066,39.449364 + 22165: -70.16196,39.481773 + 22166: -70.1527,39.49103 + 22167: -70.26381,39.5327 + 22168: -70.314735,39.4864 + - node: + cleanable: True + color: '#3E722844' + id: dot + decals: + 22015: -65.42471,44.9374 + 22016: -65.27888,45.07629 + 22017: -64.84832,46.228054 + 22018: -64.73026,46.09611 + 22019: -64.67471,45.90861 + 22020: -64.8136,45.880833 + 22021: -64.73721,45.998886 + 22022: -64.65388,46.137775 + 22023: -64.709435,45.769722 + 22024: -64.82054,45.568333 + 22025: -65.00804,45.741943 + 22026: -65.181656,46.137775 + 22027: -65.10526,45.839165 + 22028: -65.23721,45.985 + 22029: -65.3136,46.186386 + 22030: -65.1886,46.394722 + 22031: -65.146935,45.90861 + 22032: -64.82054,45.769722 + 22033: -64.84138,45.519722 + 22034: -64.54971,45.78361 + 22035: -64.5636,45.825275 + 22036: -64.584435,45.6725 + 22037: -64.59832,45.998886 + 22038: -64.57054,46.068333 + 22039: -64.556656,45.679443 + 22040: -64.59138,45.436386 + 22041: -64.57054,45.741943 + 22042: -64.59832,45.686386 + 22043: -64.639984,45.505833 + 22044: -64.709435,45.832222 + 22045: -64.67471,45.519722 + 22046: -64.681656,45.86 + 22047: -64.646935,45.429443 + - node: + cleanable: True + color: '#3E722853' + id: dot + decals: + 22050: -64.71862,45.71893 + 22051: -64.602875,45.59856 + 22052: -64.672325,45.658745 + 22053: -64.76955,45.658745 + 22054: -64.760284,45.663372 + 22055: -64.764915,45.700413 + - node: + cleanable: True + color: '#3E7228B7' + id: dot + decals: + 22049: -64.71862,45.793003 + - node: + cleanable: True + color: '#3E7228FF' + id: dot + decals: + 22048: -64.635284,45.7143 - node: cleanable: True color: '#440F0941' @@ -25845,6 +26626,59 @@ entities: 20786: -67.91876,75.39065 20787: -67.995155,75.66148 20788: -68.057655,75.946205 + - node: + cleanable: True + color: '#664F2E37' + id: dot + decals: + 22056: -68.595985,45.55689 + 22057: -68.56821,45.570778 + 22058: -68.52191,45.593925 + 22059: -68.508026,45.649483 + 22060: -68.665436,45.524483 + 22061: -68.48951,45.543 + 22062: -68.415436,45.52911 + 22063: -68.35988,45.51985 + 22064: -67.60229,48.509342 + 22065: -67.55136,48.495453 + 22066: -67.532845,48.467678 + 22067: -67.52821,48.42601 + 22068: -67.343025,48.52323 + 22069: -67.45414,48.500084 + 22070: -67.500435,48.467678 + 22071: -67.51432,48.43527 + 22072: -67.52821,48.32879 + 22073: -67.01895,48.018604 + 22074: -67.02358,48.088047 + 22075: -67.02358,48.16212 + 22076: -67.10692,48.000084 + 22077: -66.912476,48.004715 + 22078: -67.005066,47.902863 + 22081: -68.40321,48.01302 + 22082: -68.60692,48.01302 + 22083: -67.02116,48.491837 + 22084: -67.08597,48.496468 + 22085: -66.95171,48.491837 + 22086: -66.99801,48.450172 + 22087: -67.016525,48.413136 + 22088: -66.93319,48.501095 + - node: + cleanable: True + color: '#765C0F15' + id: dot + decals: + 22242: 10.725544,61.81163 + 22243: 10.762581,61.769962 + 22244: 10.855173,61.871815 + 22245: 10.882951,61.825516 + 22250: 10.174618,61.844036 + 22251: 10.202395,61.746815 + 22252: 10.183877,61.700516 + 22253: 10.063506,61.700516 + 22263: 10.26721,61.44138 + 22265: 10.234803,61.5386 + 22266: 10.424618,61.631195 + 22268: 9.781099,61.626564 - node: cleanable: True color: '#AE0000AE' @@ -25853,6 +26687,866 @@ entities: 17901: -21.352276,44.6285 17902: -21.173887,44.539307 17903: -21.188753,44.360912 + - node: + color: '#CAC29837' + id: dot + decals: + 23179: -7.2124267,21.918285 + 23180: -7.1186767,21.918285 + 23181: -6.9468017,21.918285 + 23182: -6.8530517,21.918285 + 23183: -6.7436767,21.90266 + 23184: -7.0249267,21.824535 + 23185: -7.1186767,21.80891 + 23186: -7.0718017,21.80891 + 23187: -6.8686767,21.80891 + 23188: -7.0405517,21.80891 + 23189: -7.1655517,21.80891 + 23190: -6.9468017,21.793285 + 23191: -6.9624267,21.793285 + 23192: -7.0561767,21.762035 + 23193: -6.8843017,21.762035 + 23194: -7.0718017,21.74641 + 23195: -6.6811767,21.887035 + 23196: -6.6655517,21.887035 + 23197: -6.6186767,21.887035 + 23198: -6.8686767,21.887035 + 23199: -6.6030517,21.887035 + 23200: -6.7436767,21.87141 + 23201: -6.9311767,21.84016 + 23202: -6.5874267,21.855785 + 23203: -6.4936767,21.855785 + 23204: -6.4468017,21.87141 + 23205: -6.6186767,21.87141 + 23206: -6.6811767,21.855785 + 23207: -6.7436767,21.824535 + 23208: -6.8530517,21.824535 + 23209: -6.5093017,21.87141 + 23210: -6.3686767,21.87141 + 23211: -6.3999267,21.855785 + 23212: -6.5561767,21.855785 + 23213: -3.4064736,22.43391 + 23214: -3.4064736,22.480785 + 23215: -3.3439736,22.605785 + 23216: -3.3439736,22.52766 + 23217: -3.6252236,22.34016 + - node: + color: '#FFFFFF06' + id: dot + decals: + 34159: -34.17759,34.529266 + 34160: -34.17759,34.529266 + 34161: -34.17759,34.529266 + 34162: -34.247032,34.293156 + 34163: -34.247032,34.293156 + 34164: -34.247032,34.293156 + 34165: -31.807217,34.001488 + 34166: -31.807217,34.001488 + 34167: -31.807217,34.001488 + 34168: -31.807217,34.001488 + 34169: -31.807217,34.001488 + 34170: -31.7887,34.23297 + 34171: -31.858143,34.348713 + 34172: -31.811848,34.46445 + 34173: -31.79333,34.47834 + 34174: -31.756292,34.418156 + - node: + color: '#FFFFFF0C' + id: dot + decals: + 26578: -15.508732,-5.6666083 + 26580: -15.430607,-5.5728583 + 26632: -12.489966,-6.5582976 + - node: + color: '#FFFFFF12' + id: dot + decals: + 32748: -52.5938,42.097992 + 32749: -52.5938,42.146603 + 32750: -52.586853,42.091045 + 32751: -52.600742,42.11188 + 32752: -52.586853,42.146603 + 32753: -52.586853,42.084103 + 32754: -52.586853,42.06327 + 32755: -52.60769,42.278545 + 32756: -52.586853,42.278545 + 32757: -52.57991,42.347992 + 32758: -52.57991,42.320213 + 32759: -52.57991,42.243824 + 32760: -52.5938,42.42438 + 32761: -52.57991,42.48688 + 32762: -52.57991,42.618824 + 32763: -52.57991,42.62577 + 32764: -52.586853,42.50077 + 32765: -52.586853,42.597992 + 32766: -52.60769,42.50077 + 32767: -52.85769,41.597992 + 32768: -52.947968,41.584103 + 32769: -52.85769,41.591045 + 32770: -52.87852,41.591045 + 32771: -53.37852,41.618824 + 32772: -53.39241,41.68827 + 32773: -53.4063,41.827156 + 32774: -53.37852,41.896603 + 32775: -53.37852,41.993824 + 32776: -53.385468,42.091045 + 32777: -53.37852,42.202156 + 32778: -53.39241,42.542435 + 32779: -53.399353,42.584103 + 32780: -53.4063,42.868824 + 32781: -52.57413,43.426163 + 32782: -52.581078,43.446995 + 32783: -52.594967,43.45394 + 32784: -28.612751,32.606697 + 32785: -28.591919,32.59975 + 32786: -28.612751,32.67614 + 32787: -28.619696,32.69697 + 32788: -28.598864,32.620583 + 32789: -28.64053,32.59975 + 32790: -28.75164,32.606697 + 32791: -28.647474,32.620583 + 32792: -28.612751,32.64142 + 32793: -28.619696,32.731697 + 32794: -28.584974,32.59975 + 32795: -28.591919,32.75253 + 32796: -28.591919,33.342808 + 32797: -28.612751,33.38447 + 32798: -28.598864,33.419197 + 32799: -28.591919,33.419197 + 32800: -28.668308,33.41225 + 32801: -28.723864,33.41225 + 32802: -28.793308,33.419197 + 32803: -28.723864,33.45392 + 32804: -28.668308,33.41225 + 32805: -28.786364,33.39142 + 32806: -28.68914,33.370583 + 32807: -28.661364,33.370583 + 32808: -28.696085,33.308083 + 32809: -28.619696,33.28725 + 32810: -28.682196,33.32197 + 32811: -28.737751,33.26642 + 32812: -28.75164,33.25253 + 32813: -28.64053,33.33586 + 32814: -28.64053,33.25253 + 32815: -28.62664,33.183083 + 32816: -28.605808,33.30114 + 32817: -28.605808,33.183083 + 32818: -28.612751,33.34975 + 32819: -28.807196,33.33586 + 32820: -28.730808,33.41225 + 32821: -28.779419,33.39836 + 32822: -28.668308,33.38447 + 32823: -28.598864,33.39836 + 32824: -28.64053,33.38447 + 32825: -28.668308,33.25947 + 32826: -28.62664,33.245583 + 32827: -28.668308,32.64142 + 32828: -28.82803,32.63447 + 32829: -28.758585,32.61364 + 32830: -28.730808,32.59975 + 32831: -28.918308,32.63447 + 32832: -28.68914,32.69697 + 32833: -28.807196,32.745583 + 32834: -28.682196,32.77336 + 32835: -28.654419,32.78725 + 32836: -28.737751,32.81503 + 32837: -28.633585,32.94697 + 32838: -28.619696,32.794197 + 32839: -28.612751,32.67614 + 32840: -28.598864,32.967808 + 32841: -28.605808,33.11364 + 32842: -28.633585,33.09975 + 32843: -28.647474,32.88447 + 32844: -31.411835,32.57197 + 32845: -31.384058,32.59975 + 32846: -31.370169,32.64142 + 32847: -31.35628,32.75253 + 32848: -31.314613,32.794197 + 32849: -31.397947,32.620583 + 32850: -31.397947,32.71086 + 32851: -31.397947,32.81503 + 32852: -31.397947,32.72475 + 32853: -31.384058,32.61364 + 32854: -31.29378,32.606697 + 32855: -31.189613,32.620583 + 32856: -31.516003,32.64836 + 32857: -31.397947,32.606697 + 32858: -31.391003,32.67614 + 32859: -31.370169,32.78725 + 32860: -31.307669,32.77336 + 32861: -31.307669,32.66225 + 32862: -31.266003,32.75253 + 32863: -31.259058,32.76642 + 32864: -31.342392,32.620583 + 32865: -31.175724,32.64142 + 32866: -31.16878,32.72475 + 32867: -31.307669,32.620583 + 32868: -31.314613,32.66225 + 32869: -31.314613,32.780308 + 32870: -31.397947,33.39142 + 32871: -31.404892,33.41225 + 32872: -31.349335,33.419197 + 32873: -31.286835,33.34975 + 32874: -31.314613,33.32892 + 32875: -31.363224,33.32197 + 32876: -31.391003,33.280308 + 32877: -31.384058,33.36364 + 32878: -31.266003,33.342808 + 32879: -31.259058,33.27336 + 32880: -31.377113,33.294197 + 32881: -31.307669,33.36364 + 32882: -31.224335,33.405308 + 32883: -31.134058,33.39142 + 33896: -33.91502,33.875267 + 33897: -34.01224,33.926193 + 33898: -33.90576,33.981747 + 33899: -33.715946,34.051193 + 33900: -33.822426,34.21323 + 33901: -33.864094,34.04193 + 33902: -33.90113,34.051193 + 33903: -33.91965,34.102116 + 33904: -32.507614,33.704243 + 33905: -32.586315,33.662575 + 33906: -32.6928,33.662575 + 33907: -32.614094,33.662575 + 33908: -32.79465,33.685722 + 33909: -32.65576,33.607018 + 33910: -32.66502,33.630165 + 33911: -32.66502,33.769054 + 33912: -32.715946,33.782944 + 33913: -32.66965,33.59776 + 33914: -32.78076,33.58387 + 33915: -31.840752,35.266422 + 33916: -31.826864,35.18309 + 33917: -31.863901,35.113647 + 33918: -31.914827,35.18309 + 33919: -31.924086,35.159943 + 33920: -32.02131,35.0905 + 33921: -32.058346,35.118275 + 33922: -31.947233,35.104385 + 33923: -32.025936,35.034943 + 33924: -32.095383,35.007164 + 33925: -32.13242,35.08587 + 33926: -32.062973,34.979385 + 33927: -31.855991,35.03148 + 33928: -31.934696,34.98981 + 33929: -31.967104,34.92037 + 33930: -31.99488,34.87407 + 33931: -32.070187,34.894043 + 33932: -32.051666,35.10238 + 33933: -32.11185,34.95886 + 33934: -32.195187,35.037563 + 33935: -32.11185,34.894043 + 33936: -32.181297,34.861637 + 33937: -32.199814,34.880154 + 34007: -34.15136,35.48433 + 34008: -34.26247,35.48433 + 34009: -34.32497,35.463493 + 34010: -34.331913,35.37322 + 34011: -34.318024,35.47044 + 34012: -34.255524,35.48433 + 34013: -34.331913,35.352383 + 34014: -34.35969,35.262108 + 34015: -34.220802,35.491272 + 34016: -34.21386,35.42183 + 34017: -34.318024,35.33155 + 34018: -34.220802,35.366272 + 34019: -34.29025,35.28294 + 34020: -34.193024,35.414883 + 34021: -34.095802,35.414883 + 34022: -34.033302,35.47044 + 34023: -34.255524,35.366272 + 34024: -34.318024,35.23433 + 34025: -34.35275,35.074608 + 34026: -34.32497,34.928772 + - node: + color: '#FFFFFF19' + id: dot + decals: + 25807: -85.049286,54.258514 + 25808: -84.97984,54.24463 + 25809: -84.93818,54.18213 + 25810: -84.93818,54.11963 + 25811: -84.9729,54.07796 + 25812: -84.93124,54.00157 + 25813: -85.0354,53.862682 + 25814: -87.18142,54.039295 + 25815: -87.20457,53.98374 + 25816: -87.21382,53.905037 + 25817: -87.21845,53.905037 + 25818: -87.25549,53.969852 + 25819: -87.23697,54.016148 + 25820: -87.22308,53.88189 + 25821: -87.320305,53.821705 + 25822: -87.24623,53.77078 + 25823: -87.315674,53.932816 + 25824: -87.27864,53.937443 + 25825: -87.38512,53.830963 + 25826: -84.93917,53.917095 + 25827: -84.892296,54.042095 + 25828: -84.892296,54.08897 + 25829: -84.90792,54.167095 + 25830: -84.87667,54.042095 + 25831: -84.87667,53.93272 + 25832: -84.93917,53.792095 + 34175: -34.27018,34.76075 + 34176: -32.251663,33.72834 + 34177: -32.04796,33.936676 + - node: + color: '#FFFFFF22' + id: dot + decals: + 23802: 21.252075,-2.3248281 + 23803: 20.845825,-2.0435781 + 23804: 20.79895,-1.9029533 + 23805: 21.2677,-1.9342033 + 23806: 22.86145,-2.2935781 + 23807: 23.0802,-2.4967031 + 23808: 23.127075,-2.3873281 + 23809: 23.04895,-2.2310781 + 23810: 23.033325,-2.2310781 + 23811: 23.127075,-1.9498283 + 23812: 23.033325,-1.7935783 + 23813: 22.86145,-1.8248283 + 23814: 23.1427,-1.8404533 + 23815: 23.252075,-1.9185783 + 23816: 22.939575,-2.0279531 + 23817: 23.158325,-2.0904531 + 23818: 25.127075,-2.2623281 + 23819: 24.845825,-2.2779531 + 23820: 25.377075,-2.2935781 + 23821: 24.9552,-2.3560781 + 23822: 24.79895,-2.3717031 + 23823: 24.98645,-2.4029531 + - node: + color: '#FFFFFF25' + id: dot + decals: + 26933: -2.686574,3.5249033 + 26936: -2.4689813,3.390644 + 26937: -2.5384257,3.3767552 + - node: + color: '#FFFFFF28' + id: dot + decals: + 25584: 85.22486,-3.762564 + 25585: 85.24801,-3.7764528 + 25586: 85.16931,-3.799601 + - node: + angle: 2.9321531433504737 rad + color: '#FFFFFF2B' + id: dot + decals: + 29943: -0.12017369,4.869145 + 29944: -0.11554408,4.943219 + 29945: -0.073877394,4.7997007 + 29946: 0.009455919,4.790441 + 29947: 0.009455919,4.901552 + 29948: 0.0650115,4.8969226 + 29949: 0.041863322,4.8506265 + 29950: -0.0044329762,4.7719226 + 29951: -0.073877394,4.781182 + 29952: -0.1062848,4.7858114 + 29953: -0.1062848,4.7950706 + 29954: -0.009062588,4.7719226 + 29955: -0.046099663,4.80433 + 29956: 0.06038189,4.7858114 + 29957: 0.051122546,4.80433 + 29958: -0.08313668,4.8135896 + 29959: -0.0923959,4.822849 + 29960: -0.009062588,4.8274784 + 29961: 0.08815968,4.855256 + 29962: 0.08815968,4.8598857 + 29963: -0.08313668,4.822849 + 29964: -0.022951484,4.8598857 + - node: + color: '#FFFFFF2E' + id: dot + decals: + 23478: 15.710892,4.6153407 + 23479: 15.695267,4.4434657 + 23480: 15.695267,4.2715907 + 23481: 16.367142,4.5684657 + 23482: 16.742142,4.3184657 + 23483: 16.664017,4.0684657 + 23484: 16.585892,5.2247157 + 23485: 17.101517,5.0684657 + 23486: 16.398392,5.0840907 + 23487: 16.257767,5.1465907 + 23488: 15.976517,5.0215907 + 23489: 15.820267,5.2247157 + 23490: 15.882767,5.2715907 + 23491: 15.804642,5.2090907 + 23492: 16.070267,5.5059657 + 23493: 16.195267,5.4122157 + 23494: 15.789017,5.1309657 + 23495: 15.664017,5.1465907 + 23496: 15.757767,5.3028407 + 23497: 15.773392,5.3340907 + 23498: 16.429642,5.2715907 + 23499: 16.335892,4.9122157 + 23500: 16.539017,4.5684657 + 23501: 16.773392,4.5372157 + 23502: 16.929642,4.7247157 + 23503: 16.851517,4.5215907 + 23504: 17.117142,4.4434657 + 23505: 16.914017,4.4590907 + 23506: 16.695267,4.4122157 + 23507: 16.914017,4.6153407 + 23508: 16.804642,4.5215907 + 23509: 17.023392,4.5684657 + 24522: -71.43114,2.6960378 + 24523: -71.43114,2.682149 + 24524: -71.42188,2.6590009 + 24525: -71.42188,2.6358528 + 24526: -71.42188,2.6173341 + 24527: -71.42188,2.608075 + 24528: -71.42188,2.594186 + 24529: -71.43577,2.5710378 + 24530: -71.43577,2.5664082 + 24531: -70.69503,3.3488157 + 24532: -70.65336,3.371964 + 24533: -70.62558,3.3765936 + 24534: -70.611694,3.3765936 + 24535: -70.58855,3.3812232 + 24536: -70.58855,3.358075 + 24537: -70.583916,3.344186 + 24538: -70.583916,3.3025193 + 24539: -70.65336,3.3256674 + 24540: -70.68114,3.3164082 + 24541: -70.69503,3.2562232 + 24542: -70.65799,3.307149 + 24543: -70.7228,3.2886305 + 24544: -70.741325,3.270112 + 24545: -70.77836,3.3488157 + 24546: -70.69503,3.3534453 + 24547: -70.63947,3.2654824 + 24548: -70.69503,3.1728897 + 24549: -70.6904,3.1543713 + 24550: -70.67188,2.7145565 + 24551: -70.67188,2.6543713 + 24552: -70.65799,2.6219637 + 24553: -70.60706,2.6404824 + 24554: -70.644104,2.6034453 + 24555: -70.75058,2.608075 + 24556: -70.85243,2.6543713 + 24557: -70.71355,2.6728897 + 24558: -70.676506,2.8858528 + 24559: -70.708916,2.9228897 + 24560: -70.96818,2.7284453 + 24561: -70.99596,2.7006676 + 24562: -70.63484,3.057149 + 24563: -70.65336,3.145112 + 24564: -70.60243,3.0340009 + 24565: -70.583916,2.932149 + 24566: -70.579285,2.7747416 + 24567: -70.583916,2.7052972 + 24568: -70.616325,2.5988157 + 24569: -70.69965,2.5895565 + 24570: -70.866325,2.5895565 + 24571: -71.02836,2.5988157 + 24572: -71.0978,2.5988157 + 25126: -2.5576875,-58.251038 + 25127: -2.4743543,-58.153816 + 25128: -2.5715764,-58.042706 + 25129: -2.5715764,-58.014927 + 25130: -2.564632,-57.98715 + 25131: -2.5368543,-57.94548 + 25132: -2.3701875,-58.13298 + 25133: -2.4604654,-58.17465 + 25134: -2.5924098,-58.08437 + 25135: -2.3979654,-58.08437 + 25136: -2.4812987,-57.952427 + 25137: -2.3979654,-57.827427 + 25138: -2.4465764,-58.028816 + 25139: -2.4326875,-57.97326 + 25140: -2.4049098,-57.99409 + 25141: -2.5437987,-57.69548 + 25142: -2.4465764,-57.89687 + 25143: -2.3979654,-57.98715 + 25144: -2.5368543,-57.903816 + 25145: -2.425743,-57.966316 + 25146: -1.5090765,-58.28576 + 25147: -1.5368543,-58.24409 + 25148: -1.6340765,-58.20937 + 25149: -1.5576875,-58.355206 + 25150: -1.5924098,-58.355206 + 25151: -1.6687987,-58.29965 + 25152: -1.6201875,-58.251038 + 25176: -2.0993543,-58.251038 + 25177: -2.189632,-58.403816 + 25178: -2.2729654,-58.466316 + 25179: -2.363243,-58.49409 + 25180: -2.3701875,-58.202427 + - node: + color: '#FFFFFF31' + id: dot + decals: + 24966: -64.179245,-1.6563104 + 24967: -64.07508,-1.6354771 + 24968: -64.15841,-1.6701993 + 24969: -64.08897,-1.8021437 + 24970: -64.13758,-1.9063104 + 24971: -64.08202,-2.0451994 + 24972: -64.1098,-2.2465882 + 24973: -63.693134,-2.086866 + 24974: -63.720913,-2.1701994 + 24975: -63.783413,-2.1701994 + 24976: -63.991745,-2.0313106 + 24977: -63.804245,-2.1701994 + 24978: -63.332024,-1.9688104 + 24979: -63.200077,-2.010477 + 24980: -63.040356,-2.197977 + 24981: -63.540356,-1.8854771 + 24982: -63.484802,-2.1215882 + 24983: -63.609802,-2.086866 + 24984: -63.130634,-2.1701994 + 24985: -62.825077,-2.010477 + 24986: -62.873688,-2.1424215 + 24987: -62.943134,-2.2257547 + 24988: -62.686188,-1.8646437 + 24989: -62.533413,-1.8160326 + 24990: -62.686188,-1.7951993 + 24991: -62.463966,-1.6840882 + 24992: -62.429245,-1.6701993 + 24993: -62.894524,-1.7882549 + 24994: -62.950077,-1.9271437 + 24995: -62.845913,-2.086866 + 24996: -62.970913,-2.0799215 + 25792: -85.13115,54.030853 + 25793: -85.179756,53.968353 + 25794: -85.10337,53.8503 + 25795: -84.97837,53.87113 + 25796: -85.00615,53.801685 + 25797: -85.08948,54.190575 + 25798: -85.207535,54.19752 + 25799: -85.16587,54.253075 + 25800: -85.38115,54.329464 + 25801: -85.395035,54.33641 + 25802: -85.35337,54.2878 + 25803: -85.44365,54.2253 + 25804: -85.30127,54.38789 + 25805: -85.02846,54.25157 + 25806: -85.0979,54.18907 + - node: + color: '#FFFFFF33' + id: dot + decals: + 23952: 23.821102,2.3682559 + 23953: 23.961727,2.4151309 + 23954: 24.211727,2.4151309 + 23955: 24.508602,2.4151309 + 23956: 24.836727,2.4151309 + 23957: 25.008602,2.4307559 + 23958: 24.430477,2.4307559 + 23959: 24.149227,2.3995059 + 23960: 23.899227,2.2276309 + 23961: 23.883602,2.2901309 + 23962: 23.883602,2.3526309 + 23963: 23.758602,2.3838809 + 23964: 24.071102,2.3995059 + 23965: 23.852352,2.4776309 + 23966: 23.883602,2.4463809 + 23967: 23.977352,2.4151309 + 23968: 23.914852,2.3838809 + 23969: 23.930477,2.4151309 + 23970: 23.992977,2.4620059 + 23983: 24.8481,2.3370059 + 23984: 25.00435,2.3682559 + 23985: 24.87935,2.2901309 + 23986: 24.613726,2.2745059 + 23987: 24.832476,2.1807559 + 23988: 24.5981,2.1651309 + 23989: 24.44185,2.1651309 + 23990: 24.769976,2.2432559 + 23991: 24.7231,2.2120059 + 23992: 24.4106,2.1963809 + 23993: 24.207476,2.3370059 + 23994: 24.0981,2.2120059 + 23995: 24.082476,2.1651309 + 23996: 24.363726,2.3682559 + 23997: 24.4731,2.3995059 + 23998: 24.19185,2.0870059 + 23999: 23.582476,2.0245059 + 24000: 23.176226,1.9463809 + 24001: 22.44185,1.9776309 + 24002: 23.00435,1.8526309 + 24028: 26.957476,2.3838809 + 24029: 26.801226,2.3682559 + 24030: 26.5981,2.2588809 + 24031: 25.957476,2.1963809 + 24032: 26.50435,1.7901309 + 24033: 26.176226,1.7588809 + 24034: 26.082476,1.7588809 + 24035: 26.301226,1.7588809 + 24036: 26.06685,1.7745059 + 24037: 26.301226,1.8682559 + 24038: 26.207476,1.9776309 + - node: + color: '#FFFFFF34' + id: dot + decals: + 24409: -42.390026,7.4066396 + 24410: -42.403915,7.4135838 + 24411: -42.403915,7.4344172 + 24412: -42.383083,7.4344172 + 24413: -42.362247,7.4344172 + 24414: -42.341415,7.4344172 + 24415: -42.327526,7.4344172 + 24416: -42.362247,7.4066396 + 24417: -42.369194,7.316362 + 24418: -42.369194,7.2816396 + 24419: -42.369194,7.2330284 + 24420: -42.362247,7.3371954 + 24421: -42.376137,7.2746954 + 24422: -42.383083,7.1844172 + 24423: -42.390026,7.1427507 + 24424: -42.396973,7.0941396 + 24425: -42.396973,7.038584 + 24426: -42.396973,7.010806 + 24427: -42.390026,6.9621954 + 24428: -42.390026,6.8927507 + 24429: -42.390026,6.823306 + 24430: -42.383083,6.753862 + 24431: -42.355305,6.948306 + 24432: -42.306694,6.9830284 + 24433: -42.34836,6.864973 + 24434: -42.34836,6.8302507 + 24435: -42.313637,6.9205284 + 24436: -42.265026,6.885806 + 24437: -42.306694,6.885806 + 24438: -42.265026,6.941362 + 24439: -42.209473,6.9691396 + 24440: -42.244194,7.1844172 + 24441: -42.188637,6.851084 + 24442: -42.063637,6.9066396 + 24443: -42.278915,7.0455284 + 24444: -42.265026,7.198306 + 24445: -41.980305,7.0594172 + 24446: -41.702526,6.885806 + 24447: -41.688637,6.885806 + 24448: -41.688637,6.823306 + 24449: -41.758083,6.788584 + 24450: -41.771973,6.823306 + 24451: -41.792805,6.8441396 + 24452: -41.855305,6.823306 + 24453: -41.626137,6.698306 + 24454: -41.619194,6.6080284 + 24455: -41.612247,6.5802507 + 24456: -41.612247,6.614973 + 24457: -41.633083,6.7121954 + 24458: -41.633083,6.7955284 + 24459: -41.633083,6.8927507 + 24460: -41.633083,6.9552507 + 24461: -41.633083,7.066362 + 24462: -41.633083,7.1566396 + 24463: -41.626137,7.239973 + 24464: -41.605305,7.3371954 + 24465: -41.605305,7.385806 + 24466: -41.619194,7.4205284 + 24467: -41.640026,7.3441396 + 24468: -41.612247,7.2816396 + 24469: -41.612247,7.1635838 + 24470: -41.619194,7.066362 + 24471: -41.619194,6.989973 + 24472: -41.605305,6.9205284 + 24473: -41.59836,6.8441396 + 24474: -41.59836,6.7677507 + - node: + color: '#FFFFFF35' + id: dot + decals: + 23218: -4.3701344,22.022572 + 23219: -4.3232594,21.803822 + 23220: -4.4638844,21.663197 + 23221: -3.9795094,22.366322 + 23222: -3.9013844,22.303822 + 23223: -4.1513844,22.428822 + 23224: -4.0888844,22.428822 + 23225: -3.4795094,23.022572 + 23226: -3.5107594,22.710072 + 23227: -3.6513844,22.585072 + 23228: -3.6045094,22.491322 + 23229: -2.8076344,23.553822 + 23230: -2.9795094,23.366322 + 23231: -2.7763844,23.428822 + 23232: -2.7451344,23.397572 + 23233: -3.5420094,22.444447 + 23234: -3.4482594,22.710072 + 23235: -4.3232594,21.663197 + 23236: -4.2138844,21.741322 + 23237: -4.3232594,21.647572 + 23238: -4.2607594,21.819447 + 23239: -4.3701344,21.725697 + 23240: -4.5732594,22.319447 + 23241: -4.5420094,22.131947 + 23242: -4.8232594,22.085072 + 23243: -4.3701344,22.319447 + 23244: -4.1045094,22.225697 + 23245: -4.1826344,22.178822 + - node: + color: '#FFFFFF37' + id: dot + decals: + 24727: -63.49598,1.7813845 + 24728: -63.732094,1.989718 + 24729: -63.523758,2.0383291 + 24730: -62.75987,2.4341624 + 24731: -62.891815,2.4619403 + 24732: -63.023758,2.4133291 + 24733: -62.905704,2.4202733 + 24734: -62.815426,2.2952733 + 24735: -63.57237,2.3855512 + 24736: -63.68348,2.4341624 + 24737: -63.593204,2.489718 + 24738: -65.47515,2.3855512 + 24739: -65.46126,2.4827733 + 24740: -65.56542,2.5036068 + 24741: -64.87098,1.7605512 + 24742: -64.74598,1.7049956 + 24743: -63.38487,2.1494403 + 24744: -63.24598,2.2744403 + 24745: -63.32237,2.427218 + - node: + color: '#FFFFFF41' + id: dot + decals: + 24341: -47.439922,1.6073971 + 24342: -47.41909,1.6629527 + 24343: -47.432976,1.6143415 + 24344: -47.29409,1.6004527 + 24345: -47.252422,1.5935082 + 24346: -47.432976,1.5935082 + 24347: -47.35659,1.5935082 + 24348: -47.29409,1.5796194 + 24349: -47.238533,1.572675 + 24350: -47.148254,1.572675 + 24351: -47.071865,1.572675 + 24352: -47.009365,1.5657306 + 24353: -46.9677,1.5657306 + 24354: -46.85659,1.5657306 + 24355: -46.773254,1.5518415 + 24356: -46.82881,1.6073971 + 24357: -46.7802,1.6004527 + 24358: -46.696865,1.5865638 + 24359: -46.648254,1.5865638 + 24360: -46.5927,1.5865638 + 24361: -46.564922,1.5935082 + 24362: -46.57881,2.4060082 + 24363: -46.60659,2.4060082 + 24364: -46.662144,2.3990638 + 24365: -46.696865,2.3990638 + 24366: -46.752422,2.3990638 + 24367: -46.821865,2.3921194 + 24368: -46.884365,2.3851748 + 24369: -46.988533,2.3851748 + 24370: -47.07881,2.3851748 + 24371: -47.162144,2.3921194 + 24372: -47.2177,2.3921194 + 24373: -47.314922,2.3921194 + 24374: -47.398254,2.3921194 + 24375: -47.446865,2.3921194 + - node: + color: '#FFFFFF4A' + id: dot + decals: + 22781: -15.7139015,-4.080916 + 22782: -15.6826515,-4.096541 + 22783: -15.6670265,-4.268416 + 22784: -15.7295265,-5.409041 + 22785: -15.6670265,-5.237166 + 22786: -15.6982765,-5.143416 + 22787: -15.6982765,-5.159041 + 22788: -15.7764015,-5.252791 + 22789: -17.385777,-5.393416 + 22790: -17.432652,-5.565291 + 22791: -17.432652,-5.627791 + 22792: -17.307652,-5.690291 + 22793: -17.448277,-5.627791 + 22794: -17.354527,-5.737166 + 22795: -17.448277,-4.018416 + 22796: -17.448277,-4.112166 + 22797: -17.307652,-3.987166 + 22798: -17.338902,-4.096541 + 22799: -17.073277,-3.971541 + 22800: -16.901402,-3.846541 + 22801: -17.135777,-3.799666 + 22802: -17.385777,-5.284041 + 22803: -17.120152,-5.549666 + - node: + color: '#FFFFFF63' + id: dot + decals: + 25785: -84.97837,54.190575 + 25786: -85.054756,54.1003 + 25787: -84.96448,54.01002 + 25788: -85.35337,54.169743 + 25789: -85.28392,54.26002 + 25790: -85.22837,54.30863 + 25791: -85.0617,53.96141 + 32745: -52.57991,42.17438 + 32746: -52.586853,42.36188 + 32747: -52.57991,42.507713 + - node: + color: '#FFFFFF6C' + id: dot + decals: + 22903: 2.6625996,22.070044 + 22904: 2.9594746,21.835669 + 22905: 3.0219746,21.945044 + 22906: 3.2563496,21.710669 + 22907: 3.3032246,21.663794 + 22908: 3.3500996,21.570044 + 22909: 3.4907246,21.570044 + 22910: 2.6000996,22.085669 + 22911: 2.5688496,22.179419 + 22912: 2.5688496,22.304419 + 22913: 2.6000996,22.757544 + - node: + color: '#FFFFFF79' + id: dot + decals: + 24751: -68.4499,2.4497252 + 24752: -68.46378,2.4011142 + 24753: -68.46378,2.3386142 + 24754: -68.47768,2.255281 + 24755: -68.47768,2.1580586 + 24756: -68.47768,2.102503 + 24757: -68.47768,1.9983363 + 24758: -68.48462,1.880281 + 24759: -68.24156,2.4983363 + 24760: -68.17906,2.4983363 + 24761: -68.09573,2.477503 + 24762: -67.998505,2.4636142 + 24763: -67.92906,2.4636142 + 24764: -67.79018,2.4636142 + 24765: -67.66518,2.4636142 + 24766: -67.567955,2.442781 + 24767: -67.436005,2.442781 + 24768: -67.34573,2.4913921 + 24769: -67.1999,2.4913921 + 24770: -67.05406,2.4913921 + 24771: -66.85962,2.4844475 + 24772: -66.67906,2.4844475 + 24773: -66.46378,2.4844475 + 24774: -66.26934,2.4913921 + 24775: -66.123505,2.4913921 + - node: + color: '#FFFFFF85' + id: dot + decals: + 33528: -103.8174,52.288746 + 33529: -103.213234,51.851246 + 33530: -103.01532,53.09083 + 33531: -103.088234,53.27833 + 33532: -103.89032,54.569996 + 33533: -103.17157,53.944996 + 33534: -103.78615,53.90333 + 33535: -103.42157,54.37208 + 33536: -103.03615,55.069996 + 33537: -103.10907,55.674164 + 33538: -102.9424,55.77833 + 33539: -103.73407,55.74708 - node: color: '#FFFFFFFF' id: dot @@ -25880,6 +27574,15 @@ entities: 21118: 17.582691,-28.54554 21119: 17.700748,-28.55943 21120: 17.804914,-28.552485 + 24798: -60.54518,-1.5853049 + 24799: -60.579906,-1.5922493 + 24800: -60.566017,-1.6339159 + 24801: -60.566017,-1.6825271 + 24802: -60.67018,-1.6200271 + 24803: -68.4577,-1.5853049 + 24804: -68.4577,-1.6408603 + 24805: -68.38131,-1.5991937 + 24806: -68.44381,-1.7103049 - node: color: '#0000FF6B' id: face @@ -25964,69 +27667,49 @@ entities: 7530: -14.893635,-68.86629 7531: -14.833449,-68.86629 7532: -14.879746,-68.8524 - - node: - cleanable: True - angle: 0.3490658503988659 rad - color: '#411C00D9' - id: footprint - decals: - 7525: -15.111228,-69.48203 - 7526: -15.07419,-69.48203 - 7527: -15.139006,-69.519066 - 7528: -15.055672,-69.53758 - - node: - cleanable: True - angle: 0.5235987755982988 rad - color: '#411C00D9' - id: footprint - decals: - 7519: -14.555672,-70.56073 - 7520: -14.564931,-70.62092 - 7521: -14.476969,-70.60703 - 7522: -14.676043,-69.954254 - 7523: -14.606598,-69.9774 - 7524: -14.583449,-70.00055 - - node: - cleanable: True - angle: 1.2217304763960306 rad - color: '#411C00D9' - id: footprint - decals: - 7533: -14.139006,-71.12092 - 7534: -14.194561,-71.046844 - 7535: -13.870487,-71.02833 - 7536: -13.764006,-71.06536 - 7537: -13.791783,-71.051476 - 7538: -14.208449,-71.144066 - 7539: -14.314931,-71.10703 - node: color: '#FFFFFFFF' id: ghost decals: 16942: -84.79293,-45.789604 - node: - color: '#1E5026FF' + color: '#FFFFFFFF' id: grasssnow decals: - 8168: 4.372939,-23.127125 - 8169: 4.872939,-22.674 - 8170: 5.513564,-22.252125 - 8171: 5.747939,-21.689625 - 8172: 6.372939,-21.627125 - 8173: 7.247939,-21.424 - 8174: 7.294814,-21.924 - 8175: 6.451064,-22.45525 - 8176: 5.716689,-23.002125 - 8177: 5.091689,-23.408375 - 8178: 7.388564,-22.658375 - 8179: 6.669814,-23.220875 - 8180: 7.357314,-23.377125 + 22333: -6,24 + 22363: 6.004059,-20.002157 + 23596: -16.106796,5.872243 + 24040: 19.9106,2.0088809 + - node: + color: '#FFFFFFFF' + id: grasssnow01 + decals: + 22347: -5,-20 + 22508: 16.162323,-13.263127 + 22726: -16.56179,-12.024713 + 23371: 17.100487,14.06447 + 23600: -15.838387,4.7968903 + 23601: -17.010262,5.3281403 + 23868: 25.314575,-2.0592031 + 32565: -47,52 + 34205: -33.801987,34.370495 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow01 decals: 9588: 13,-31 + - node: + color: '#FFFFFFFF' + id: grasssnow02 + decals: + 22334: -7,23 + 22360: -5.2736945,-20.220907 + 22362: 3.0353088,-20.955282 + 22616: 16.207388,-5.296277 + 23693: -16.805141,13.916958 + 33554: -103.77431,55.078327 + 33584: -103.901924,60.142418 - node: cleanable: True color: '#FFFFFFFF' @@ -26036,6 +27719,28 @@ entities: 9552: 21.718866,-37.159477 9578: 13,-29 9585: 12,-37 + - node: + color: '#FFFFFFFF' + id: grasssnow03 + decals: + 22331: -5,23 + 22503: 17.037323,-12.122502 + 22617: 17.007025,-4.077527 + 22826: -16.776402,-4.987166 + 23516: 16.317924,5.731495 + 23599: -16.77531,5.0468903 + 23860: 20.3302,-2.1529531 + 24043: 21.62935,2.0245059 + 24573: -70.986694,2.9738157 + 24750: -67.95332,1.9913921 + 24777: -66.75412,1.9636142 + 25090: 52,-1 + 31519: -40,29 + 32229: -62,29 + 32562: -43,52 + 32649: -44.108585,38.854355 + 33551: -103.795135,53.609577 + 34203: -32.121433,34.981606 - node: cleanable: True color: '#FFFFFFFF' @@ -26044,12 +27749,49 @@ entities: 9559: 22.093868,-35.159477 9583: 10,-37 9587: 13,-29 + - node: + color: '#FFFFFFFF' + id: grasssnow04 + decals: + 22504: 16.381073,-13.919377 + 22725: -15.9680395,-11.680963 + 23703: -16.398891,12.166958 + 23869: 21.48645,-1.9654533 + 23883: 22.64592,-2.0123281 + 24047: 23.269976,2.5870059 + 24148: -24.812693,-2.819882 + 24781: -63.342884,2.165003 + 24786: -62.15728,2.2344475 + 25019: -67.49051,-2.0240371 + 25775: -84.96068,53.190712 + 32212: -56,16 + 32563: -47,52 + 32567: -43,52 + 32650: -44.08081,39.000187 + 33578: -103.48525,60.184082 + 34204: -33.378376,34.099663 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow04 decals: 9581: 11,-35 + - node: + color: '#FFFFFFFF' + id: grasssnow05 + decals: + 22369: 5.1431556,-20.717556 + 22618: 16.64765,-5.530652 + 22718: -17.03054,-12.243463 + 23367: 17.100487,12.53322 + 23515: 17.1148,5.762745 + 23517: 16.08355,3.950245 + 23859: 19.814575,-2.1060781 + 24042: 21.269976,2.0870059 + 25774: -86.512764,53.680225 + 32216: -56,23 + 33552: -103.46181,53.494995 + 33783: -103.93761,44.14094 - node: cleanable: True color: '#FFFFFFFF' @@ -26057,12 +27799,70 @@ entities: decals: 9580: 10,-34 9582: 11,-36 + - node: + color: '#FFFFFFFF' + id: grasssnow06 + decals: + 22368: 6.1119056,-21.045681 + 22507: 16.099823,-12.825627 + 22811: -15.9639015,-4.127791 + 23704: -15.852016,13.338833 + 24048: 23.9731,2.0088809 + 24054: 24.13489,1.9516106 + 24377: -47.04409,1.8296194 + 24780: -64.90085,2.0122252 + 24787: -61.053112,1.9566698 + 25025: -62.369263,-2.114315 + 25092: 52,-3 + 25777: -84.887764,54.805294 + 25778: -86.06485,54.128212 + 29928: 0.20550346,5.6199837 + 32217: -56,23 + 32438: 38.371223,-23.02438 + 32564: -47,52 + 33558: -103.045135,55.85893 + 33581: -103.50609,63.482697 + 33786: -103.42198,46.031567 + 34206: -32.267265,34.349663 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow06 decals: 9571: 25,-34 + - node: + color: '#FFFFFFFF' + id: grasssnow07 + decals: + 22330: 7,22 + 22348: -7,-20 + 22367: 6.9712806,-20.592556 + 22375: 3.62532,-21.031004 + 22381: 4.5209785,-22.868708 + 22506: 16.224823,-12.138127 + 22623: 16.21015,-4.077527 + 22810: -16.948277,-3.987166 + 23863: 26.689575,-2.2467031 + 23867: 23.752075,-2.3092031 + 23882: 22.067795,-2.1529531 + 24044: 22.5981,1.9776309 + 24149: -23.958527,-3.1393263 + 24150: -26.47936,-3.0837708 + 24778: -65.68467,2.0122252 + 25658: -86.450264,54.461037 + 29923: 0.06661463,6.988099 + 29927: 0.011059046,6.0019884 + 32215: -63,23 + 32224: -57,25 + 32439: 39.41289,-22.246603 + 32448: 41.237114,-22.329409 + 32648: -43.108585,38.840466 + 32741: -52.908073,42.93171 + 33007: -30.777576,32.81922 + 33009: -29.027576,32.777557 + 33580: -103.94359,63.920197 + 33586: -103.45053,60.732697 + 34201: -33.815876,34.995495 - node: cleanable: True color: '#FFFFFFFF' @@ -26071,6 +27871,30 @@ entities: 9560: 22,-36 9579: 13,-30 9586: 11,-33 + - node: + color: '#FFFFFFFF' + id: grasssnow08 + decals: + 22359: -6.4611945,-21.720907 + 22364: 5.3462806,-20.780056 + 22719: -17.12429,-13.946588 + 22808: -16.104527,-5.971541 + 23369: 17.006737,13.955095 + 23692: -16.914516,13.948208 + 23861: 20.8302,-2.2310781 + 23864: 25.7677,-2.1685781 + 24147: -27.444637,-3.118493 + 25020: -65.83079,-2.1907039 + 29926: 0.024948,6.5367103 + 32226: -56.336346,24.820862 + 32228: -57,29 + 32449: 41.764893,-22.718298 + 32561: -43,51 + 33008: -30.161835,32.814594 + 33553: -104.00347,54.265827 + 33582: -103.09637,63.809082 + 33779: -104.03136,47.85969 + 33785: -103.78136,45.531567 - node: cleanable: True color: '#FFFFFFFF' @@ -26079,6 +27903,29 @@ entities: 9547: 25.21887,-33.987606 9548: 25.203245,-34.37823 9568: 25,-35 + - node: + color: '#FFFFFFFF' + id: grasssnow09 + decals: + 22349: -3,-21 + 22382: 5.2516556,-21.806208 + 22622: 16.6164,-5.155652 + 22717: -17.014915,-13.962213 + 23307: 6.9212537,23.233438 + 23862: 26.970825,-1.9810783 + 24376: -47.002422,2.0518417 + 24776: -67.62912,2.102503 + 25089: 52,-3 + 29925: 0.004114628,4.731155 + 31521: -40,29 + 32211: -63,16 + 32214: -63,23 + 32223: -62,25 + 32440: 39.44545,-23.072464 + 32450: 41.28573,-22.905798 + 33577: -103.1172,61.22575 + 33585: -103.75609,61.809082 + 33780: -103.81261,47.17219 - node: cleanable: True color: '#FFFFFFFF' @@ -26100,7 +27947,42 @@ entities: decals: 8093: 4.925754,23.855179 8094: 5.925754,22.605179 - 8095: 6.769504,23.870804 + 22329: 7,24 + 22332: -7,24 + 22343: -5,-21 + 22356: -3.165865,-22.706892 + 22620: 16.1789,-5.874402 + 22720: -16.12429,-13.993463 + 22809: -16.948277,-5.877791 + 23366: 17.053612,13.486345 + 23370: 16.194237,14.03322 + 23514: 17.036674,4.043995 + 23595: -16.981796,4.559743 + 23597: -16.884686,5.9843903 + 23690: -16.508266,13.104458 + 23858: 19.002075,-2.0592031 + 23866: 24.29895,-2.0123281 + 24039: 19.051226,2.1026309 + 24041: 20.707476,2.1026309 + 24046: 27.019976,2.0713809 + 24146: -27.937693,-2.979604 + 24180: 5.56243,-40.43006 + 24475: -42,7 + 24783: -61.692,2.0886142 + 25021: -64.83964,-2.0448704 + 25022: -60.994263,-2.0379262 + 25091: 52,1 + 25773: -85.55443,53.794807 + 29924: -0.0028298497,3.981155 + 31723: -71,15 + 32222: -63,25 + 32227: -56,29 + 32230: -63,29 + 32560: -47,51 + 32645: -45.948864,38.937687 + 33576: -103.14497,62.77436 + 33778: -103.21886,47.79719 + 34197: -32.975597,34.4845 - node: cleanable: True color: '#FFFFFFFF' @@ -26115,14 +27997,66 @@ entities: id: grasssnow11 decals: 8098: 5.019504,22.839554 - 8099: 7.253879,23.058304 8100: 5.847629,24.230179 + 22357: -5.0861945,-22.892782 + 22358: -6.8205695,-21.142782 + 22366: 6.7837806,-19.842556 + 22371: 4.820829,-19.788622 + 22374: 3.00032,-21.859129 + 22380: 5.5053535,-23.243708 + 22505: 15.943573,-14.106877 + 22509: 17.256073,-12.763127 + 22621: 17.1164,-4.327527 + 22723: -17.15554,-13.337213 + 22812: -16.542027,-3.846541 + 23308: 6.9056287,23.280313 + 23368: 17.272362,12.62697 + 23373: 17.006737,11.97072 + 23525: 16.39605,5.043995 + 23598: -15.8846855,5.2187653 + 23609: -17.10642,4.3151464 + 23691: -16.180141,14.120083 + 23694: -15.992641,13.682583 + 23705: -15.867641,11.916958 + 23865: 24.61145,-2.0435781 + 24049: 24.50435,2.3213809 + 24050: 17.295565,-4.925019 + 24574: -70.94965,2.8673341 + 24785: -62.226723,2.2622252 + 25024: -62.153984,-2.2462595 + 25093: 52,-1 + 31522: -40,29 + 32566: -43,52 + 32740: -53.06548,42.454857 + 33010: -28.83776,32.759037 + 33557: -103.90972,51.976894 + 33559: -103.90972,56.01518 + 33579: -103.97137,62.934082 + 33781: -103.04698,44.92219 + 33784: -103.25011,44.35969 + 34198: -33.635323,34.706722 + 34202: -33.989487,33.787163 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow11 decals: 9554: 21.421993,-35.487602 + - node: + color: '#FFFFFFFF' + id: grasssnow12 + decals: + 22365: 5.0181556,-19.951931 + 22721: -16.37429,-13.415338 + 22722: -16.15554,-13.024713 + 23695: -17.398891,12.901333 + 23702: -16.117641,12.698208 + 24784: -63.0045,2.0747252 + 25023: -62.049816,-2.0587595 + 32213: -56,16 + 32647: -42.997475,38.937687 + 33556: -103.138885,53.424812 + 34199: -32.142265,34.08867 - node: cleanable: True color: '#FFFFFFFF' @@ -26133,6 +28067,30 @@ entities: 9575: 13,-34 9576: 14,-32 9577: 16,-29 + - node: + color: '#FFFFFFFF' + id: grasssnow13 + decals: + 22344: -5,-22 + 22370: 4.7994056,-19.858181 + 22502: 17.006073,-13.950627 + 22619: 16.9914,-5.827527 + 23299: 5.2568836,23.237743 + 23309: 6.9056287,21.420938 + 23310: 5.7947383,22.053215 + 23372: 16.084862,12.298845 + 23696: -16.367641,12.698208 + 24045: 26.50435,2.1182559 + 24779: -65.66384,2.1441698 + 24782: -61.04617,2.102503 + 25776: -86.96068,53.159462 + 32225: -56,25 + 32646: -45.184975,39.014076 + 32739: -53.107147,42.24679 + 33555: -103.19097,52.265827 + 33583: -103.14497,60.12853 + 33782: -103.18761,44.14094 + 34200: -32.475597,33.989376 - node: cleanable: True color: '#FFFFFFFF' @@ -26141,11 +28099,27 @@ entities: 9556: 21.156368,-36.065723 9565: 25,-37 9574: 10,-36 + - node: + color: '#DCDCDCFF' + id: grasssnowa1 + decals: + 34219: -32.066216,34.574184 - node: color: '#FFFFFFFF' id: grasssnowa1 decals: 8096: 5.847629,23.698929 + 22326: -6,23 + 22350: -3,-21 + 22376: 3.90657,-21.343504 + 22631: 16.160576,-12.089986 + 23606: -16.481182,4.5312653 + 24061: 27.088015,1.9984856 + 31656: 40.026344,-9.009821 + 32237: -57,29 + 32655: -43.219696,38.826576 + 33566: -103.82557,55.542797 + 33598: -103.012344,63.91082 - node: cleanable: True color: '#FFFFFFFF' @@ -26153,29 +28127,199 @@ entities: decals: 9591: 13,-31 9594: 21,-37 + - node: + color: '#FFFFFFFF' + id: grasssnowa2 + decals: + 22335: -3,24 + 22379: 4.90657,-23.040583 + 22827: -16.026402,-5.190291 + 23376: 17.131737,14.142595 + 23878: 25.689575,-2.1998281 + 25031: -60.952095,-2.0448704 + 25784: -85.064354,53.412262 + 32238: -56.42476,29.125265 + 32437: 39.928165,-22.928366 + 33565: -103.03472,53.05772 + 33798: -103.01573,45.553574 + 33802: -104.028114,45.68368 + 33803: -103.98124,47.980556 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa2 decals: 9593: 24,-37 + - node: + color: '#DCDCDCFF' + id: grasssnowa3 + decals: + 34216: -32.093655,34.919106 + - node: + color: '#FFFFFFFF' + id: grasssnowa3 + decals: + 22336: -5,21 + 22340: 7,24 + 22355: -4.30649,-22.785017 + 23520: 16.442924,5.96587 + 23700: -17.086391,13.073208 + 23872: 26.1427,-2.0904531 + 24795: -67.05207,2.02644 + 32221: -56,16 + 32231: -63,25 + 33568: -103.14848,55.907383 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa3 decals: 9592: 25,-35 + - node: + color: '#DCDCDCFF' + id: grasssnowb1 + decals: + 34218: -32.95325,35.018917 + 34220: -33.936695,34.703617 + - node: + color: '#FFFFFFFF' + id: grasssnowb1 + decals: + 22354: -4.259615,-21.394392 + 22361: 3.037911,-22.986532 + 22624: 16.694525,-4.296277 + 22629: 16.21015,-5.874402 + 22630: 17.08515,-3.920888 + 22730: -16.171165,-12.696588 + 22733: -16.057652,-13.930896 + 22829: -16.073277,-5.659041 + 22830: -16.917027,-5.580916 + 23314: -5.8519125,23.69384 + 23377: 16.631737,13.798845 + 23381: 16.100487,12.173845 + 23518: 17.099174,5.887745 + 23602: -16.057137,5.9062653 + 23698: -16.852016,13.995083 + 23706: 3.8927822,-22.773394 + 23707: -5.0714235,-20.039019 + 23708: -5.572811,22.372309 + 23877: 24.345825,-2.0279531 + 24060: 22.10364,2.1234856 + 24155: -23.992617,-3.0224624 + 24790: -66.1274,2.0608363 + 24793: -61.804348,2.0194955 + 25027: -65.9968,-2.0657039 + 25029: -64.32165,-2.1282039 + 31655: 40.035603,-9.741866 + 32219: -63,23 + 32235: -63.036053,29.073181 + 32569: -47,51 + 32654: -42.844696,38.95852 + 32743: -52.95437,42.087185 + 33015: -28.958132,32.948853 + 33560: -103.857635,54.591347 + 33599: -103.922066,63.952484 + 33604: -103.8542,61.31089 + 33796: -104.01573,44.022324 + 33797: -103.85948,45.97545 + - node: + color: '#DCDCDCFF' + id: grasssnowb2 + decals: + 34215: -32.871433,33.919106 + - node: + color: '#FFFFFFFF' + id: grasssnowb2 + decals: + 22337: -6,22 + 22352: -6.228365,-22.238142 + 22372: 5.43782,-20.765379 + 22831: -17.010777,-6.018416 + 23523: 17.036674,4.74712 + 23524: 16.3023,4.34087 + 24059: 21.32239,2.1078606 + 24154: -26.624561,-3.0085733 + 24156: -24.444006,-3.0641289 + 24181: 5.3888187,-40.603672 + 25017: -67.20592,-2.0587595 + 25028: -63.60111,-2.051815 + 25782: -86.845604,54.021637 + 29932: 0.09439242,6.0366507 + 32239: -55.903927,29.073181 + 32434: 38.10004,-23.053366 + 32568: -47,52 + 33564: -103.90972,52.27647 + 33601: -103.92978,62.01836 + 33800: -104.028114,46.71493 + - node: + color: '#DCDCDCFF' + id: grasssnowb3 + decals: + 34213: -33.77421,34.00244 + - node: + color: '#FFFFFFFF' + id: grasssnowb3 + decals: + 22511: 16.756073,-13.778752 + 22625: 16.2414,-4.358777 + 22731: -16.952415,-12.821588 + 23521: 16.08355,5.918995 + 23526: 16.057913,-5.1298757 + 23709: 5.328627,22.403559 + 23870: 19.04895,-2.0592031 + 23876: 20.61145,-2.0279531 + 24055: 19.025515,2.0609856 + 24062: 26.44739,2.0141106 + 24379: -46.939922,1.9546194 + 24478: -41.980305,6.9969172 + 25016: -67.93508,-2.0587595 + 25094: 52,1 + 25414: -90,9 + 25779: -86.67928,53.15588 + 25781: -86.82998,54.865387 + 31724: -71,15 + 32218: -56,23 + 32433: 39.209415,-22.38149 + 32435: 39.00629,-23.03774 + 32653: -44.990532,38.930744 + 33014: -29.907206,32.96274 + 33563: -103.03472,52.09939 + 33600: -102.99922,62.70586 + 33801: -103.059364,46.40243 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowb3 decals: 9590: 10,-35 + - node: + color: '#DCDCDCFF' + id: grasssnowc1 + decals: + 34217: -33.885323,35.023273 - node: color: '#FFFFFFFF' id: grasssnowc1 decals: - 8097: 6.941379,22.058304 + 22351: -7,-22 + 22377: 6.90657,-22.257519 + 23380: 17.006737,12.43947 + 24792: -60.998795,2.0542178 + 25026: -64.98259,-2.0657039 + 25364: -76,9 + 29931: -0.0028298497,6.9880395 + 31523: -40,29 + 32233: -55.979946,24.962072 + 32236: -62,29 + 32432: 38.303165,-22.240866 + 32451: 41.745277,-22.24583 + 32570: -43,52 + 32651: -46.025253,38.89602 + 33013: -31.018316,32.94422 + 33562: -103.75347,53.685097 + 33602: -103.08255,61.997524 + 33794: -103.12511,44.0692 + 33799: -103.04374,47.918056 - node: cleanable: True color: '#FFFFFFFF' @@ -26184,83 +28328,404 @@ entities: 9589: 15,-29 - node: color: '#FFFFFFFF' - id: guy - decals: - 19396: -28.020496,-80.59884 + id: grasssnowc2 + decals: + 22353: -6.884615,-20.191267 + 22378: 6.31282,-22.710644 + 23701: -16.398891,12.213833 + 25780: -85.14248,54.834137 + 25783: -85.751854,52.974762 + 32220: -63,16 + 32234: -56.87578,24.930822 + 32452: 40.960556,-23.079165 + 32571: -43,51 + 32744: -52.96363,43.017742 + 33561: -103.08681,54.070515 + 33603: -104.006165,60.050602 + 33795: -103.87511,44.428574 - node: - cleanable: True - angle: 0.3490658503988659 rad - color: '#411C004A' - id: line + color: '#DCDCDCFF' + id: grasssnowc3 decals: - 7504: -16.535389,-70.46003 - 7505: -16.254139,-70.30378 - 7506: -16.066639,-70.08503 - 7507: -16.222889,-70.100655 - 7508: -14.582264,-72.422714 - 7509: -14.707264,-72.56334 - 7510: -14.707264,-72.25084 - 7511: -15.082264,-72.485214 - 7512: -15.176014,-72.860214 + 34214: -32.142265,33.93994 - node: - cleanable: True - angle: 0.8726646259971648 rad - color: '#411C004A' - id: line - decals: - 7501: -16.205656,-70.1346 - 7502: -16.096281,-70.46272 - 7503: -15.752531,-70.93147 + color: '#FFFFFFFF' + id: grasssnowc3 + decals: + 22373: 7.078445,-19.890379 + 22510: 16.459198,-13.356877 + 22732: -16.96804,-13.930963 + 23311: 7.0447383,22.78759 + 23522: 16.161674,3.950245 + 23603: -16.949932,5.8437653 + 23871: 27.0177,-2.0435781 + 24153: -27.846886,-2.9807956 + 24794: -68.02429,1.977829 + 25030: -62.391094,-2.0934815 + 25096: 52,-3 + 29930: -0.009774268,4.0366507 + 32232: -62,25 + 32436: 40.19379,-22.178366 - node: - cleanable: True - angle: 1.0471975511965976 rad - color: '#411C004A' - id: line + color: '#FFFFFFFF' + id: guy decals: - 7490: -16.440031,-70.47835 - 7491: -16.096281,-70.5721 - 7492: -15.690031,-70.5721 - 7493: -15.408781,-71.04085 - 7494: -15.736906,-70.8221 - 7495: -15.377531,-71.22835 - 7496: -16.455656,-70.6346 - 7497: -16.455656,-70.60335 - 7498: -16.533781,-70.52522 - 7499: -16.502531,-70.47835 - 7500: -16.518156,-70.11897 + 19396: -28.020496,-80.59884 - node: - cleanable: True - angle: 0.5235987755982988 rad - color: '#411C009B' - id: line - decals: - 7482: -14.143156,-70.7596 - 7483: -13.861906,-71.21272 - 7484: -13.768156,-71.72835 - 7485: -13.908781,-71.04085 - 7486: -13.705656,-71.77522 + color: '#FFFFFF02' + id: largebrush + decals: + 29091: -16.998621,1.8543248 + - node: + color: '#FFFFFF0C' + id: largebrush + decals: + 32420: 38.94464,-22.6992 + 32421: 38.764084,-22.421421 + 32422: 38.875195,-22.220032 + 32423: 39.465473,-22.226976 + 32424: 39.896027,-22.226976 + 32425: 40.215473,-22.289476 + 32426: 40.50714,-22.62281 + 32427: 39.861305,-22.900587 + 32428: 39.38214,-23.0117 + 32429: 40.389084,-22.296421 + 32430: 40.777973,-22.150587 + 32431: 41.347416,-22.171421 + - node: + color: '#FFFFFF0F' + id: largebrush + decals: + 33738: -103.89794,47.07981 + 33739: -103.85628,46.7187 + 33740: -103.87016,46.447865 + 33741: -103.89794,46.211754 + 33742: -103.814606,46.00342 + 33743: -103.36322,47.725643 + 33744: -103.28683,47.48259 + 33745: -103.266,47.01731 + 33746: -103.29378,46.69092 + 33747: -103.321556,46.413143 + 33748: -103.342384,46.100643 + 33749: -103.196556,47.79509 + 33750: -103.08544,47.336754 + 33751: -103.071556,46.822865 + 33752: -103.7035,44.302032 + 33753: -103.766,44.19092 + 33754: -103.8285,44.121475 + 33755: -103.89794,44.100643 + 33756: -103.86322,44.26731 + 33757: -103.85628,44.621475 + 33758: -103.814606,44.92009 + 33759: -103.61322,45.183975 + 33760: -103.33544,45.163143 + 33761: -103.29378,44.864532 + 33762: -103.696556,44.7812 + 33763: -103.717384,45.54509 + 33764: -103.41878,45.98259 + 33765: -103.24516,45.802032 + 33766: -103.21044,45.42009 + 33767: -103.17572,45.711754 + 33768: -103.189606,46.496475 + 33769: -103.2035,47.01731 + - node: + color: '#FFFFFF12' + id: largebrush + decals: + 25640: -86.50235,53.773537 + 25641: -86.49193,53.51312 + 25642: -86.24193,53.367287 + 25643: -85.825264,53.283955 + 25644: -85.56485,53.429787 + 25645: -85.37735,53.70062 + 25646: -85.30443,54.304787 + 25647: -85.4711,54.586037 + 25648: -85.93985,54.648537 + 25649: -86.37735,54.492287 + 25650: -86.669014,54.502705 + 25651: -86.64818,53.95062 + 25652: -86.700264,53.408955 + 25653: -85.2211,53.336037 + 31600: 40,-9 + 31601: 40,-10 + 32266: 39.249325,-22.963232 + 32267: 39.110435,-23.053509 + 32268: 39.04099,-22.643787 + 32269: 39.332657,-22.754898 + 32270: 39.520157,-23.136843 + 32271: 40.700714,-23.032677 + 32272: 40.36738,-22.997953 + 32273: 40.193768,-23.004898 + 32274: 40.47849,-22.546564 + 32275: 40.61738,-22.553509 + 32276: 40.693768,-22.886843 + 32277: 40.096546,-22.386843 + 32278: 40.610435,-22.553509 + 32279: 40.735435,-22.657677 + 32280: 41.086475,-22.434525 + 32281: 41.162865,-22.434525 + 32282: 41.211475,-22.212303 + 32283: 41.433697,-22.420635 + 32284: 41.683697,-22.42758 + 32285: 41.850365,-22.24008 + 32286: 41.850365,-22.42758 + - node: + color: '#FFFFFF14' + id: largebrush + decals: + 33349: -103.72224,54.730915 + 33350: -103.75349,55.043415 + 33351: -103.72224,55.387165 + 33352: -103.63891,55.605915 + 33353: -103.54516,55.2205 + 33354: -103.47224,54.668415 + 33355: -103.23266,54.553833 + 33356: -103.12849,55.105915 + 33357: -103.13891,55.533 + 33358: -103.17016,55.75175 + 33359: -103.17016,55.908 + 33367: -103.82641,52.25817 + 33376: -103.33682,53.747753 + 33377: -103.29516,53.61234 + 33381: -103.14932,53.48734 + 33382: -103.10766,53.28942 + 33383: -103.10766,53.01859 + 33384: -103.11807,52.79984 + 33385: -103.17016,53.435253 + 33386: -103.10766,53.20609 + 33387: -103.08682,52.85192 + 33388: -103.08682,52.58109 + 33389: -103.09724,52.466503 + 33390: -103.13891,52.32067 + 33391: -103.34724,52.29984 + 33400: -103.11807,53.03942 + 33476: -103.588234,53.751343 + 33477: -103.66115,53.626343 + 33478: -103.73407,53.605507 + 33479: -103.681984,53.845093 + 33480: -103.57782,53.740925 + 33481: -103.713234,53.522175 + 33482: -103.588234,53.730507 + 33483: -103.431984,53.678425 + 33484: -103.54657,53.522175 + 33485: -103.66115,53.605507 + 33486: -103.79657,53.845093 + 33487: -103.84865,53.688843 + 33488: -103.494484,52.220093 + 33489: -103.463234,51.980507 + - node: + color: '#FFFFFF22' + id: largebrush + decals: + 23715: 19.961332,-2.1060781 + 23716: 20.086332,-2.1060781 + 23717: 20.258207,-2.0904531 + 23718: 20.476957,-2.0904531 + 23719: 20.695707,-2.1060781 + 23720: 19.961332,-2.0748281 + 23721: 20.086332,-2.0748281 + 23722: 20.226957,-2.0748281 + 23723: 20.320707,-2.0748281 + 23724: 19.992582,-2.1060781 + 23725: 20.039457,-2.1060781 + 23726: 24.320707,-2.0904531 + 23727: 24.258207,-2.0904531 + 23728: 24.242582,-2.1060781 + 23729: 24.133207,-2.1060781 + 23730: 24.086332,-2.1060781 + 23731: 23.992582,-2.1060781 + 23732: 23.898832,-2.1060781 + 23733: 23.820707,-2.0904531 + 23734: 23.726957,-2.0904531 + 23735: 23.555082,-2.1060781 + 23736: 24.383207,-2.0748281 + 23737: 24.476957,-2.0748281 + 23738: 24.539457,-2.0748281 + 23739: 24.633207,-2.0904531 + 23740: 24.695707,-2.0748281 + 23741: 24.742582,-2.0748281 + 23742: 26.070707,-2.1373281 + 23743: 26.008207,-2.1373281 + 23744: 25.961332,-2.1373281 + 23745: 25.914457,-2.1373281 + 23746: 25.851957,-2.1373281 + 23747: 25.805082,-2.1217031 + 23748: 25.695707,-2.1217031 + 23749: 25.414457,-2.1373281 + 23750: 25.258207,-2.1217031 + 23751: 24.383207,-2.0904531 + 23752: 24.476957,-2.0904531 - node: - cleanable: True - color: '#411C00BA' - id: line - decals: - 7479: -15.174406,-72.35335 - 7480: -14.955656,-71.99397 + color: '#FFFFFF26' + id: largebrush + decals: + 25599: -85.9086,53.971455 + 25600: -86.044014,54.13812 + 25601: -86.18985,54.086037 + 25602: -86.31485,53.846455 + 25603: -85.950264,53.658955 + 25604: -85.62735,53.690205 + 25605: -85.5336,54.10687 + 25606: -85.9711,54.273537 + 25607: -86.4711,53.992287 + 25637: -86.43985,54.179787 + 25638: -86.419014,54.304787 + 25639: -86.08568,54.408955 + - node: + color: '#FFFFFF28' + id: largebrush + decals: + 25382: -90,9 + 32572: -46,39 + 32573: -43,39 + - node: + color: '#FFFFFF31' + id: largebrush + decals: + 31688: -71,15 + 33160: -104,64 + 33161: -103,64 + 33162: -103,61 + 33163: -103,60 + 33167: -103.16561,60.54107 + 33168: -103.60311,60.988987 + 33169: -103.19686,61.54107 + 33171: -103.051025,61.832737 + 33172: -103.051025,61.311905 + 33173: -103.09269,60.530655 + 33174: -103.082275,60.020237 + 33177: -103.96769,60.030655 + 33178: -103.926025,60.457737 + 33179: -103.81144,61.207737 + 33180: -103.78019,61.561905 + 33181: -103.53019,61.999405 + 33182: -103.113525,62.405655 + 33183: -103.18644,62.780655 + 33184: -103.21769,63.10357 + 33185: -103.176025,63.176487 + - node: + color: '#FFFFFF3E' + id: largebrush + decals: + 32240: 38.013214,-23.077814 + 32241: 38.013214,-23.077814 + 32242: 38.30488,-22.911148 + 32243: 38.534046,-23.150732 + 32244: 41.981964,-23.067398 + 32245: 41.971546,-22.931982 + 32246: 41.919464,-22.723648 + 32247: 41.721546,-22.713232 + 32248: 41.534046,-22.796564 + 32249: 41.58613,-23.098648 + 32250: 40.877796,-23.067398 + 32251: 40.89863,-22.661148 + 32252: 41.252796,-22.598648 + 32253: 40.877796,-23.056982 + 32254: 38.52363,-22.879898 + 32255: 38.284046,-22.556982 + 32260: 38.690296,-23.171564 + 32265: 40.58613,-23.192398 + - node: + color: '#FFFFFF3F' + id: largebrush + decals: + 33291: -103.08682,53.47867 + 33292: -103.20141,53.921238 + 33293: -103.18057,54.275406 + 33294: -103.18057,54.671238 + 33295: -103.44099,54.889988 + 33296: -103.69099,54.827488 + 33297: -103.81599,54.379574 + 33298: -103.79516,54.192074 + 33299: -103.89932,54.681656 + 33300: -103.85766,55.244156 + 33301: -103.62849,55.525406 + 33302: -103.29516,55.431656 + 33303: -103.31599,54.910824 + 33304: -103.86807,54.046238 + 33305: -103.89932,53.952488 + 33306: -103.11807,53.973324 + 33307: -103.10766,54.254574 + 33308: -103.09724,54.598324 + 33309: -103.05557,55.098324 + - node: + color: '#FFFFFF4D' + id: largebrush + decals: + 25598: -85.9711,53.940205 - node: - cleanable: True - angle: 1.0471975511965976 rad - color: '#411C00CD' - id: line - decals: - 7487: -16.440031,-70.33772 - 7488: -16.049406,-70.5096 - 7489: -15.783781,-70.90022 + color: '#FFFFFF50' + id: largebrush + decals: + 31725: -63,16 + 31726: -56,16 + 31727: -56,23 + 31728: -63,23 + 31729: -63,25 + 31730: -62,25 + 31731: -57,25 + 31732: -56,25 + 31734: -56,29 + 31735: -62,29 + 31736: -63,29 + - node: + color: '#FFFFFF6F' + id: largebrush + decals: + 23315: 16.116112,14.00197 + 23316: 16.553612,14.017595 + 23317: 16.897362,14.048845 + 23318: 16.991112,14.03322 + 23319: 17.022362,12.142595 + 23320: 17.006737,12.517595 + 23321: 17.006737,12.93947 + 23322: 17.053612,13.361345 + 23323: 17.022362,13.642595 + - node: + color: '#FFFFFFAB' + id: largebrush + decals: + 33282: -103.53474,53.937 + 33283: -103.46182,54.25992 + 33284: -103.69099,54.32242 + 33285: -103.54516,53.85367 + 33286: -103.28474,53.75992 - node: - cleanable: True - color: '#411C00F2' - id: line - decals: - 7481: -14.955656,-72.22835 + color: '#FFFFFFFF' + id: largebrush + decals: + 23382: 17.023392,5.9397736 + 23527: -17.02854,5.887868 + 23528: -16.231665,5.903493 + 23529: -17.012915,5.044118 + 23610: -16.525486,13.060781 + 23710: 18.961332,-2.0748281 + 23711: 19.883207,-2.1060781 + 23712: 27.008207,-2.0592031 + 23713: 26.086332,-2.0592031 + 23714: 24.351957,-2.1060781 + 23884: 19.034698,2.0713809 + 23885: 19.847198,2.1026309 + 23886: 20.659698,2.1338809 + 24071: -24,-3 + 24072: -28,-3 + 24073: -27,-3 + 24576: -68.00229,1.9966624 + 24577: -67.15507,2.0036068 + 24578: -66.28025,2.0036068 + 24579: -60.985607,2.0036068 + 24580: -61.936996,2.0036068 + 24807: -68.027145,-2.0228047 + 24808: -67.12437,-2.071416 + 24809: -60.970768,-2.0853047 + 24810: -61.838825,-2.0783603 + 24811: -65.01091,-2.0853047 + 29763: -0.020662904,3.9187803 + 29766: -0.027607322,3.9341373 + 29768: -0.03455174,7.0313597 + 29769: 0.041837096,7.0521927 + 33605: -103.74169,47.772865 + 33606: -103.06982,44.06974 - node: color: '#FFFFFF03' id: line @@ -26639,6 +29104,12 @@ entities: 20706: -67.97358,78.64465 20707: -67.97821,78.40854 20708: -68.019875,78.57058 + - node: + angle: 2.9321531433504737 rad + color: '#341F06FF' + id: shortline + decals: + 29935: 0.04121983,5.3626966 - node: cleanable: True color: '#440F0941' @@ -26647,6 +29118,12 @@ entities: 20744: -68.02374,78.50429 20745: -67.92189,78.42558 20746: -67.963554,78.29595 + - node: + cleanable: True + color: '#664F2E37' + id: shortline + decals: + 22079: -68.51432,47.75376 - node: color: '#FFFFFF03' id: shortline @@ -26714,17 +29191,10 @@ entities: id: skull decals: 4216: -55.019886,34.995995 - - node: - color: '#D0D0D0FF' - id: slash - decals: - 3666: 0.04350543,5.270033 - 3688: 0.04350543,5.301283 - node: color: '#FFFFFFFF' id: slash decals: - 3682: 0.04350543,5.301283 14402: 43.85416,-49.193798 - node: cleanable: True @@ -26737,6 +29207,44 @@ entities: 20655: -67.927284,78.84373 20656: -67.83006,78.649284 20657: -68.16802,78.66317 + - node: + cleanable: True + color: '#289F5009' + id: smallbrush + decals: + 33085: -69.45047,41.23426 + 33086: -69.341095,41.29676 + 33087: -69.23172,41.70301 + 33088: -69.20047,41.85926 + 33089: -69.278595,41.312386 + 33090: -69.122345,41.718636 + 33091: -69.276855,41.478596 + 33092: -69.04769,41.65984 + 33093: -69.06853,41.88832 + 33094: -69.17269,42.041096 + 33095: -69.00603,42.166096 + 33096: -69.214355,42.110542 + 33097: -69.20047,42.353596 + 33098: -69.304634,42.32582 + 33099: -69.339355,42.381374 + 33100: -69.35325,42.298042 + 33101: -69.39491,42.360542 + 33102: -69.464355,42.270264 + 33103: -69.11019,42.214706 + 33104: -69.31853,42.096653 + 33105: -69.07547,41.943874 + 33106: -69.36019,41.99943 + 33107: -69.242134,41.818874 + 33108: -69.20741,41.610542 + 33109: -69.436584,41.478596 + 33110: -69.339355,41.367485 + 33111: -69.25603,41.45082 + 33112: -68.98519,41.82582 + 33113: -69.08241,42.096653 + 33114: -69.01297,42.18693 + 33115: -69.11019,42.298042 + 33116: -69.346306,42.339706 + 33117: -69.339355,42.346653 - node: cleanable: True color: '#3B09002B' @@ -26752,6 +29260,3204 @@ entities: id: smallbrush decals: 17900: -21.203617,44.806896 + - node: + color: '#CAC29837' + id: smallbrush + decals: + 23123: -4.4059734,22.168285 + 23124: -4.3278484,22.27766 + 23125: -4.2497234,22.34016 + 23126: -4.1403484,22.387035 + 23127: -4.0778484,22.418285 + 23128: -4.2028484,22.24641 + 23129: -4.3590984,22.074535 + 23130: -4.1872234,22.34016 + 23131: -4.3122234,22.168285 + 23132: -3.6403484,22.512035 + 23133: -3.9059734,22.355785 + 23134: -4.1090984,22.324535 + 23135: -4.3278484,21.80891 + 23136: -4.3903484,21.730785 + 23137: -4.3590984,21.68391 + 23138: -4.3278484,21.762035 + 23139: -4.3122234,21.699535 + 23140: -4.2653484,21.637035 + 23141: -4.3903484,21.62141 + 23142: -4.3278484,21.574535 + 23143: -4.1403484,21.55891 + 23144: -3.2497234,23.18391 + 23145: -3.3434734,23.12141 + 23146: -3.2497234,23.21516 + 23147: -3.0465984,23.43391 + 23148: -2.7340984,23.449535 + 23149: -2.6559734,23.43391 + 23150: -2.6247234,23.512035 + 23151: -2.6715984,23.37141 + 23152: -2.9059734,23.293285 + 23153: -3.0465984,23.230785 + 23154: -3.2028484,23.168285 + 23155: -3.3747234,22.918285 + 23156: -3.4215984,22.71516 + 23157: -3.5465984,22.574535 + 23158: -3.8122234,22.34016 + 23159: -3.6403484,22.355785 + 23160: -3.5309734,22.49641 + 23161: -3.3278484,22.90266 + 23162: -3.6559734,22.62141 + 23163: -3.7497234,22.387035 + 23164: -3.9840984,22.27766 + 23165: -6.6247234,21.84016 + 23166: -6.6559734,21.77766 + 23167: -6.8903484,21.824535 + 23168: -6.9840984,21.84016 + 23169: -6.8278484,21.93391 + 23170: -6.5934734,22.043285 + 23171: -6.7965984,21.90266 + 23172: -6.8747234,21.887035 + 23173: -6.8590984,21.887035 + 23174: -6.7653484,21.93391 + 23175: -6.8747234,21.949535 + 23176: -6.7340984,21.93391 + 23177: -7.0622234,21.980785 + 23178: -7.1090984,21.87141 + - node: + color: '#FFFFFF02' + id: smallbrush + decals: + 29653: 20.743753,-1.3785608 + 29654: 20.695143,-1.4410608 + 29701: 22.83574,1.3493463 + 29702: 22.932962,1.3632351 + 29727: 27.80481,0.06099862 + 30964: -15.927444,-0.8104812 + 30997: -16.073278,-0.76881444 + 31011: -14.934389,-2.185481 + - node: + color: '#FFFFFF05' + id: smallbrush + decals: + 28728: -21.838902,-1.3491697 + - node: + color: '#FFFFFF06' + id: smallbrush + decals: + 34027: -34.16525,35.13016 + 34028: -34.18608,34.991272 + 34029: -34.11664,34.949608 + 34030: -34.005524,34.963493 + 34031: -34.12358,34.85933 + 34032: -34.17219,34.81072 + 34033: -34.033302,34.824608 + 34034: -34.158302,35.102383 + 34035: -33.970802,35.289883 + 34036: -33.880524,35.352383 + 34037: -33.755524,35.31766 + 34038: -33.92219,35.35933 + 34039: -34.06108,35.33155 + 34040: -34.04719,35.366272 + 34041: -33.818024,35.38016 + 34042: -33.60275,35.352383 + 34043: -33.62358,35.31766 + 34044: -33.98469,35.15794 + 34045: -34.19997,33.68572 + 34046: -34.193024,33.64405 + 34047: -34.206913,33.56766 + 34048: -34.23469,33.602383 + 34049: -34.18608,33.650993 + 34050: -34.019413,33.803772 + 34051: -33.970802,33.73433 + 34052: -34.005524,33.65794 + 34053: -33.96386,33.650993 + 34054: -33.894413,33.664883 + 34055: -34.12358,33.63016 + 34056: -34.15136,33.65794 + 34057: -34.17914,33.70655 + 34058: -34.24858,33.75516 + 34059: -34.22775,33.83155 + 34060: -34.06108,33.78294 + 34061: -34.05414,33.92183 + 34062: -33.970802,33.775993 + 34063: -34.02636,33.89405 + 34064: -33.85969,33.73433 + 34065: -33.97775,33.67183 + 34066: -33.845802,33.637108 + 34067: -33.693024,33.65794 + 34068: -33.72775,33.72044 + 34069: -34.07497,33.789883 + 34070: -34.16525,33.99822 + 34071: -34.17219,34.12322 + 34072: -34.144413,33.84544 + 34073: -34.06108,34.31766 + 34074: -34.07497,34.08155 + 34075: -34.081913,34.33155 + 34076: -34.04025,34.06072 + 34077: -33.79025,33.62322 + 34078: -33.60275,33.67183 + 34079: -33.331913,33.699608 + 34080: -33.220802,33.72044 + 34081: -33.533302,33.72044 + 34082: -33.568024,33.81072 + 34083: -33.36664,33.81766 + 34084: -33.48469,33.72044 + 34085: -33.380524,33.74822 + 34086: -34.16522,34.720074 + 34087: -34.16059,34.5997 + 34088: -34.16059,34.4747 + 34089: -34.16059,34.312664 + 34090: -34.15596,34.104332 + 34091: -34.16522,34.03026 + 34092: -34.17448,34.24322 + 34093: -34.15596,34.62748 + 34094: -34.14207,34.761738 + 34095: -32.868923,33.738247 + 34096: -32.980034,33.747505 + 34097: -33.03096,33.7151 + 34098: -32.77633,33.719727 + 34099: -33.14207,33.719727 + 34100: -32.855034,33.659542 + 34101: -33.109665,33.650284 + 34102: -32.929108,33.68732 + 34103: -32.475407,33.7151 + 34104: -32.28096,33.738247 + 34105: -32.725407,33.82621 + 34106: -32.26707,33.766026 + 34107: -32.42448,33.733616 + 34108: -32.248554,33.71047 + 34109: -32.39207,33.747505 + 34110: -32.14207,33.756767 + 34111: -31.801476,33.651615 + 34112: -31.773699,33.60995 + 34113: -31.75981,33.60069 + 34114: -31.796846,33.60069 + 34115: -31.787586,33.60069 + 34116: -31.912586,33.74421 + 34117: -31.87092,33.809025 + 34118: -31.935736,33.656246 + 34119: -31.824623,33.85995 + 34120: -31.85703,33.679394 + 34121: -31.773699,33.901615 + 34122: -31.810736,33.762726 + 34123: -31.787586,33.74884 + 34124: -31.782957,33.82754 + 34125: -31.778328,33.74884 + 34126: -31.88481,33.670135 + 34127: -32.09777,33.60995 + 34128: -31.968143,33.59143 + 34129: -31.977402,33.59143 + 34130: -32.213512,33.60995 + 34131: -32.370922,33.61458 + 34132: -31.944994,33.62384 + 34133: -31.727402,33.929394 + 34134: -31.769068,34.184025 + 34135: -31.87555,33.98495 + 34136: -32.046844,34.049763 + 34137: -31.88018,34.040504 + 34138: -31.986662,34.184025 + 34139: -31.829254,34.23958 + 34140: -31.819994,34.396988 + 34141: -31.824623,34.45254 + - node: + color: '#FFFFFF07' + id: smallbrush + decals: + 27707: -28.61509,-2.6654418 + - node: + color: '#FFFFFF09' + id: smallbrush + decals: + 30022: -1.4861588,3.2875383 + - node: + color: '#FFFFFF0C' + id: smallbrush + decals: + 26757: 18.017889,8.57187 + 26758: 18.316502,8.5371475 + 26760: 18.004002,8.523259 + 26761: 18.260944,8.44687 + 26765: 18.017889,9.50937 + 26766: 18.177612,9.6204815 + 26768: 17.976223,9.419092 + 26769: 18.177612,9.5163145 + 26770: 18.399834,9.613537 + 26771: 18.622057,9.6829815 + 29887: -0.24982953,5.9271927 + 29888: -0.35399616,5.948026 + 29889: -0.3956629,5.8021927 + 29890: -0.3956629,6.1146927 + 29891: -0.31232953,5.6841373 + 29892: -0.20121849,5.7327485 + 29893: -0.110940695,5.823026 + 29894: -0.11788511,5.6216373 + 29895: -0.048440695,5.6424704 + 29896: -0.15260732,5.4549704 + 29897: -0.013718486,5.3785815 + 29898: -0.1734407,5.3299704 + 29899: -0.19427395,5.4063597 + 29900: -0.2637185,5.4063597 + 29901: -0.25677395,5.350804 + 29902: -0.03455174,5.260526 + 29903: 0.16683722,5.135526 + 29904: -0.22899616,4.9549704 + 29905: -0.34705174,4.8716373 + 29906: -0.3053851,4.8646927 + 29907: -0.13871849,4.9827485 + 29908: 0.02794826,5.1563597 + 29909: -0.2081629,5.274415 + 29910: -0.13871849,5.573026 + 29911: -0.2637185,5.8091373 + 29912: -0.37482953,5.8021927 + 29913: -0.3678851,5.711915 + 29914: -0.3956629,5.5035815 + 29915: -0.3956629,5.4410815 + 29916: -0.34010732,6.010526 + 29917: -0.3331629,6.2188597 + 31449: -40.07484,29.315077 + 31461: -40.06558,29.29193 + 31462: -39.922062,29.27804 + 31467: -39.977615,29.26415 + 31469: -40.213726,29.26415 + 31470: -40.250767,29.241003 + 31471: -40.260025,29.26415 + 31472: -40.29243,29.26878 + 31473: -40.329468,29.222485 + 31474: -40.273914,29.134521 + 31475: -40.246136,29.092854 + 31476: -40.246136,29.190077 + 31477: -40.047062,29.26415 + 31478: -39.90354,29.26415 + 31479: -40.130394,29.129892 + 31480: -40.158173,28.875261 + 31481: -40.07021,29.083595 + 31482: -40.135025,29.097485 + 31483: -40.06095,29.092854 + 31484: -39.996136,29.15304 + 31505: -39.94521,28.930817 + 31506: -39.82021,29.02341 + 31507: -39.704468,29.16693 + 31508: -39.625767,29.15304 + 31509: -39.69058,29.01878 + 31510: -39.66743,29.000261 + 31511: -39.67669,29.176188 + 31512: -39.829468,28.963224 + 31513: -40.04243,28.801188 + 31514: -40.204468,28.78267 + 31515: -40.172062,28.991003 + 31516: -40.227615,28.787298 + 31517: -40.31095,28.750261 + - node: + color: '#FFFFFF11' + id: smallbrush + decals: + 29336: 22.60565,1.7969346 + 29337: 22.665836,1.7367494 + 29338: 22.841763,1.7274902 + 29339: 22.688984,1.7228606 + 29340: 22.841763,1.7737865 + 29341: 23.073244,1.8571198 + 29342: 22.72602,1.7784162 + 29343: 22.485281,1.6719346 + 29344: 22.286207,1.6534162 + 29345: 22.62239,1.797914 + - node: + color: '#FFFFFF12' + id: smallbrush + decals: + 31615: 40.058372,-8.915517 + 31616: 40.257446,-8.818295 + 31617: 40.33615,-8.994221 + 31618: 40.174114,-8.771998 + 31619: 40.169483,-8.781258 + 31620: 40.299114,-8.892369 + 31621: 40.104668,-8.818295 + 31622: 40.141705,-8.998851 + 31623: 39.919483,-8.915517 + 31624: 40.150967,-9.012739 + 31625: 39.924114,-8.7766285 + 31626: 39.951893,-8.748851 + 31627: 40.044483,-8.813665 + 31628: 40.104668,-9.105332 + 31629: 40.229668,-8.7766285 + 31630: 39.896336,-8.88311 + 31631: 40.10004,-9.086814 + 31632: 39.94263,-9.193295 + 31633: 39.808372,-9.207184 + 31634: 39.94263,-8.87848 + 31635: 39.83152,-9.947925 + 31636: 39.766705,-9.864592 + 31637: 39.8593,-9.7349615 + 31638: 39.780594,-9.966443 + 31639: 39.762077,-9.771998 + 31640: 39.785225,-10.017369 + 31641: 39.900967,-10.1099615 + 31642: 39.762077,-9.924776 + 31643: 40.11393,-9.957184 + 31644: 39.905594,-9.670147 + 31645: 39.83152,-9.549776 + 31646: 40.07226,-9.75811 + 31647: 40.123188,-9.9432955 + 31648: 40.22041,-9.739592 + 31649: 40.11393,-10.040517 + 31650: 39.919483,-10.1099615 + 32287: 41.510086,-23.25397 + 32288: 41.40592,-23.36508 + 32289: 41.385086,-23.30258 + 32290: 41.447586,-23.37897 + 32291: 41.39203,-23.44147 + 32292: 41.510086,-23.47619 + 32924: -30.807669,32.75947 + 32925: -30.634058,32.717808 + 32926: -30.953503,32.69003 + 32927: -30.974335,32.683083 + 32928: -30.613224,32.731697 + 32929: -30.377113,32.75253 + 32930: -30.342392,32.73864 + 32931: -30.634058,32.745583 + 32932: -30.363224,32.72475 + 32933: -29.897947,32.717808 + 32934: -30.647947,32.717808 + 32935: -30.377113,32.717808 + 32936: -30.252113,32.71086 + 32937: -30.120169,32.71086 + 32938: -29.98128,32.69697 + 32939: -29.849335,32.69697 + 32940: -29.703503,32.70392 + 32941: -29.495169,32.71086 + 32942: -29.224335,32.717808 + 32943: -29.307669,32.71086 + 32944: -29.647947,32.71086 + 32945: -29.897947,32.70392 + 32946: -29.29378,32.95392 + 32947: -29.60628,33.00253 + 32948: -29.391003,33.07197 + 32949: -29.203503,33.14142 + 32950: -29.550724,33.155308 + 32951: -29.16878,33.245583 + 32952: -29.064613,33.27336 + 32953: -28.911835,33.28725 + 32954: -29.099335,33.294197 + 32955: -29.397947,33.294197 + 32956: -29.647947,33.308083 + 32957: -29.175724,33.30114 + 32958: -29.120169,33.30114 + 32959: -29.495169,33.32197 + 32960: -29.536835,33.32197 + 32961: -29.127113,33.308083 + 32962: -29.439613,33.294197 + 32963: -29.536835,33.294197 + 32964: -29.147947,33.294197 + 32965: -29.279892,33.294197 + 32966: -29.710447,33.294197 + 32967: -29.870169,33.28725 + 32968: -30.057669,33.28725 + 32969: -30.328503,33.294197 + 32970: -30.620169,33.30114 + 32971: -30.286835,33.28725 + 32972: -30.724335,33.280308 + 32973: -31.002113,33.280308 + 32974: -31.154892,33.28725 + 32975: -30.759058,33.294197 + 32976: -31.036835,33.294197 + 32977: -30.703503,33.294197 + 32978: -30.54378,33.294197 + 32979: -30.120169,33.280308 + 32980: -30.904892,33.22475 + 32981: -30.453503,33.11364 + 32982: -30.863224,32.995583 + 32983: -30.432669,32.98864 + 32984: -30.35628,32.97475 + 32985: -29.828503,32.98864 + 32986: -30.41878,33.03725 + 32987: -29.870169,33.058083 + 32988: -30.120169,33.044197 + 32989: -29.85628,33.044197 + 32990: -29.738224,33.044197 + 32991: -29.620169,33.03725 + 32992: -30.272947,33.03725 + 32993: -30.397947,33.030308 + 32994: -30.849335,33.00947 + 32995: -30.592392,33.030308 + 32996: -30.564613,33.02336 + 32997: -30.717392,33.02336 + 32998: -30.147947,32.89836 + 32999: -30.113224,32.919197 + 33000: -30.203503,33.11364 + 33001: -30.10628,33.08586 + 33002: -29.696558,32.933083 + 33003: -29.252113,33.044197 + 33844: -32.355293,34.299522 + 33845: -32.355293,34.049522 + 33846: -32.473347,34.049522 + 33847: -32.167793,33.973133 + 33848: -32.362236,34.160633 + 33849: -31.966404,34.3898 + 33850: -32.355293,34.59119 + 33851: -32.14696,34.723133 + 33852: -32.362236,34.771748 + 33853: -32.25807,34.94536 + 33854: -32.605293,34.84119 + 33855: -32.563625,35.00091 + 33856: -32.966404,34.93841 + 33857: -33.473347,34.88286 + 33858: -33.38307,34.68147 + 33859: -33.653904,34.7648 + 33860: -33.667793,34.6398 + 33861: -33.563625,34.49397 + 33862: -33.69557,34.29258 + 33863: -33.737236,34.1398 + 33864: -33.688625,34.07036 + 33865: -33.744183,34.04258 + 33866: -33.480293,34.00786 + 33867: -33.306683,33.924522 + 33938: -32.15352,34.755154 + 33939: -32.27852,34.69497 + 33940: -32.185925,35.06071 + 33941: -32.371113,35.079227 + 33942: -32.635,34.97738 + 33943: -32.718334,35.023674 + 33944: -32.852592,35.08849 + 33945: -32.87574,35.19497 + 33946: -32.968334,35.144043 + 33947: -32.5994,35.17611 + 33948: -32.64555,35.20818 + 33949: -32.839996,35.175774 + 33950: -32.65496,35.132668 + 33951: -32.89802,35.251484 + 33952: -33.152653,35.27926 + 33953: -33.138763,35.145 + 33954: -33.31006,34.90889 + 33955: -33.31469,35.05241 + 33956: -33.101727,35.05241 + 33957: -33.374874,34.92278 + 33958: -33.54617,35.001484 + 33959: -33.731358,35.05241 + 33960: -33.356358,34.92741 + 33961: -33.71747,34.77463 + 33962: -33.67117,34.885742 + 33963: -33.407284,34.853333 + 33964: -33.384132,35.02463 + 33965: -33.587837,35.098705 + 33966: -33.518394,34.950558 + 33967: -33.782284,34.816296 + 33968: -33.652653,34.645 + 33978: -32.055923,35.197227 + 33979: -32.00037,35.24584 + 33980: -32.31287,35.23195 + 33981: -32.451756,35.21806 + 33982: -33.87843,35.09544 + 33983: -34.06593,35.116272 + 33984: -33.857597,34.852383 + 33985: -33.822876,34.81072 + 33986: -33.822876,35.06072 + 33987: -33.656208,35.116272 + 33988: -33.871487,34.70655 + 33989: -33.961765,34.574608 + 33990: -33.968708,34.31766 + 33991: -33.92704,34.09544 + 33992: -33.854427,33.887108 + 33993: -33.757206,33.76905 + 33994: -33.53498,33.775993 + 33995: -33.37526,33.92183 + 33996: -33.257206,33.949608 + 33997: -33.791927,33.866272 + 33998: -33.569706,33.900993 + 33999: -33.47248,33.900993 + 34000: -33.70165,34.074608 + 34001: -33.618317,33.99822 + 34002: -34.24164,35.37322 + 34003: -34.15136,35.37322 + 34004: -34.02636,35.40794 + 34005: -34.24164,35.26905 + 34006: -34.26247,35.17183 + - node: + color: '#FFFFFF14' + id: smallbrush + decals: + 33310: -102.77432,54.855915 + 33311: -102.80557,55.18925 + 33312: -102.81599,55.449665 + 33313: -102.81599,55.616333 + 33314: -102.81599,55.824665 + 33315: -102.83682,55.928833 + 33316: -102.82641,55.553833 + 33317: -102.87849,55.908 + 33318: -102.97224,56.012165 + 33319: -103.10766,55.116333 + 33320: -103.18057,55.085083 + 33321: -103.19099,56.022583 + 33322: -103.15974,55.647583 + 33323: -103.14932,55.7205 + 33324: -103.19099,55.710083 + 33325: -103.32641,56.074665 + 33326: -103.34724,55.928833 + 33327: -103.40974,55.512165 + 33328: -103.52432,56.116333 + 33329: -103.60766,55.87675 + 33330: -103.70141,56.053833 + 33331: -103.82641,56.137165 + 33332: -104.03474,55.710083 + 33333: -104.11807,56.043415 + 33334: -104.18057,55.62675 + 33335: -104.18057,55.512165 + 33336: -104.22224,55.866333 + 33337: -104.21182,56.105915 + 33338: -104.22224,56.168415 + 33339: -104.23266,55.81425 + 33340: -104.23266,55.25175 + 33341: -104.20141,54.803833 + 33342: -104.20141,54.8455 + 33343: -104.23266,55.460083 + 33344: -104.19099,55.918415 + 33345: -104.11807,56.199665 + 33346: -103.99307,55.62675 + 33347: -103.95141,55.00175 + 33348: -103.90974,54.855915 + 33411: -103.06599,52.58109 + 33412: -103.05557,52.57067 + 33414: -103.05557,52.685253 + 33415: -103.07641,52.94567 + 33416: -102.95141,52.92484 + 33417: -103.01391,53.11234 + 33418: -102.78474,53.060253 + 33419: -102.93057,53.22692 + 33420: -103.05557,53.22692 + 33421: -102.89032,56.189846 + 33422: -102.78615,56.231514 + 33423: -102.806984,56.189846 + 33424: -102.7549,56.283596 + 33425: -102.73407,56.189846 + 33426: -102.806984,56.002346 + 33427: -102.78615,56.17943 + 33428: -102.869484,56.27318 + 33429: -102.963234,56.283596 + 33430: -102.775734,56.21068 + 33431: -102.994484,56.044014 + 33432: -102.9424,56.064846 + 33433: -103.23407,56.096096 + 33434: -103.04657,56.221096 + 33435: -103.10907,56.252346 + 33436: -103.181984,56.21068 + 33437: -103.025734,56.21068 + 33438: -102.8799,56.231514 + 33439: -102.78615,56.27318 + 33440: -102.78615,55.908596 + 33441: -102.78615,55.887764 + 33442: -102.79657,51.813736 + 33443: -102.76532,51.730507 + 33444: -102.76532,51.720093 + 33461: -103.275734,51.782593 + 33462: -103.03615,51.865925 + 33463: -102.97365,52.063843 + 33464: -102.869484,51.845093 + 33465: -102.838234,51.772175 + 33466: -102.79657,51.886757 + 33467: -102.806984,52.011757 + 33468: -103.97365,51.761757 + 33469: -104.17157,51.751343 + 33470: -104.244484,51.813843 + 33471: -104.244484,51.907593 + 33472: -104.16115,51.803425 + 33473: -104.213234,51.813843 + 33474: -103.70282,51.793007 + 33475: -103.79657,51.886757 + 33519: -104.150734,53.486664 + 33520: -104.1924,53.351246 + 33521: -104.213234,53.205414 + - node: + color: '#FFFFFF15' + id: smallbrush + decals: + 32320: 39.19464,-23.240866 + 32321: 39.326584,-23.43531 + 32322: 39.097416,-23.338087 + 32323: 39.041862,-22.720032 + 32324: 38.75714,-22.8867 + 32325: 39.208527,-23.206144 + 32326: 39.548805,-23.400587 + 32327: 39.500195,-23.428366 + 32328: 40.034916,-23.31031 + 32329: 40.062695,-23.282532 + 32330: 40.034916,-23.171421 + 32331: 40.187695,-22.990866 + 32332: 40.13214,-22.7617 + 32333: 40.38214,-22.657532 + 32334: 40.38214,-22.43531 + 32335: 40.562695,-22.338087 + 32336: 40.93075,-22.12281 + 32337: 41.583527,-22.18531 + 32338: 41.722416,-21.983921 + 32339: 41.833527,-22.303366 + 32340: 41.93075,-22.025587 + 32341: 42.048805,-22.331144 + 32342: 42.06964,-22.032532 + 32343: 42.048805,-22.039476 + 32344: 42.000195,-21.93531 + 32345: 41.715473,-21.914476 + 32346: 42.034916,-22.282532 + 32347: 42.041862,-21.8242 + 32348: 41.639084,-21.87281 + 32349: 41.486305,-21.956142 + 32350: 41.576584,-22.351976 + 32351: 41.909916,-21.983921 + 32352: 42.048805,-22.240866 + 32353: 41.687695,-22.129755 + 32354: 41.826584,-22.2617 + 32355: 41.722416,-22.143644 + 32356: 42.090473,-22.24781 + 32357: 41.958527,-22.115866 + 32358: 42.146027,-22.268644 + 32359: 41.465473,-22.101976 + 32360: 41.361305,-22.081144 + 32361: 41.048805,-22.171421 + 32362: 41.027973,-21.928366 + 32363: 41.201584,-22.12281 + 32364: 41.291862,-21.865866 + 32365: 41.361305,-21.942255 + 32366: 40.909916,-22.0117 + 32367: 41.00714,-22.143644 + 32368: 40.527973,-21.928366 + 32369: 40.715473,-22.1367 + 32370: 40.340473,-22.004755 + 32371: 40.24325,-22.101976 + 32372: 40.583527,-21.914476 + 32373: 39.458527,-21.956142 + 32374: 39.215473,-22.2617 + 32375: 39.750195,-22.331144 + 32376: 39.798805,-22.18531 + 32377: 39.284916,-22.150587 + 32378: 39.514084,-22.233921 + 32379: 38.764084,-22.289476 + 32380: 38.764084,-22.601976 + 32381: 38.916862,-22.1367 + 32382: 38.55575,-22.108921 + 32383: 38.514084,-22.025587 + 32384: 38.250195,-22.1992 + 32385: 37.916862,-22.032532 + 32386: 37.916862,-22.428366 + 32387: 37.861305,-22.490866 + 32388: 37.798805,-22.442255 + 32389: 37.764084,-22.3242 + 32390: 37.764084,-22.1367 + 32391: 37.923805,-21.93531 + 32392: 38.125195,-22.157532 + 32393: 38.097416,-21.907532 + 32394: 38.222416,-22.081144 + 32395: 38.49325,-21.838087 + 32396: 38.61825,-22.164476 + 32397: 38.396027,-22.518644 + 32398: 38.104362,-22.213087 + 32399: 38.097416,-22.358921 + 32400: 38.479362,-22.365866 + 32401: 38.500195,-22.393644 + 32402: 38.166862,-22.414476 + 32403: 38.38214,-22.331144 + 32404: 38.36825,-22.470032 + 32405: 38.61825,-22.671421 + 32406: 38.75714,-22.68531 + 32407: 38.326584,-22.546421 + 32408: 39.13214,-22.678366 + 32409: 38.958527,-22.43531 + 32410: 38.923805,-22.303366 + 32411: 39.000195,-22.37281 + 32412: 38.840473,-22.1992 + 32413: 38.74325,-22.101976 + 32414: 39.097416,-22.24781 + 32415: 38.833527,-21.976976 + 32416: 39.00714,-21.983921 + 32417: 38.722416,-21.775587 + 32418: 39.298805,-21.983921 + 32419: 39.298805,-22.018642 + 32615: -42.89331,38.855343 + 32616: -43.011364,39.077564 + 32617: -43.046085,39.202564 + 32618: -43.115532,39.167843 + 32619: -43.344696,39.105343 + 32620: -43.45581,39.098396 + 32621: -43.414143,38.876175 + 32622: -43.858585,39.098396 + 32623: -43.934975,39.11923 + 32624: -43.997475,39.195618 + 32625: -43.75442,39.098396 + 32626: -44.733585,38.903954 + 32627: -44.671085,39.147007 + 32628: -44.608585,39.049786 + 32629: -44.587753,38.695618 + 32630: -44.858585,38.640064 + 32631: -44.914143,38.598396 + 32632: -44.64331,38.55673 + 32633: -44.948864,38.605343 + 32634: -45.337753,38.667843 + 32635: -45.226643,39.05673 + 32636: -45.546085,39.112286 + 32637: -45.553032,39.188675 + 32638: -45.462753,38.945618 + 32639: -45.511364,39.160896 + 32640: -44.365532,39.091454 + - node: + color: '#FFFFFF18' + id: smallbrush + decals: + 24187: 4.81243,-40.58284 + 24188: 4.756874,-40.42312 + 24189: 4.8263187,-40.249508 + 24190: 4.8263187,-40.200893 + 24191: 4.62493,-40.499508 + 24192: 4.7221518,-40.666172 + 24193: 4.9235406,-40.72173 + 24194: 4.7638187,-40.52034 + 24195: 4.81243,-40.45784 + 24196: 4.7777076,-40.61756 + 24197: 4.8471518,-40.666172 + 24198: 4.833263,-40.374508 + 24199: 4.7915964,-40.263393 + 24200: 4.8679852,-40.19395 + 24201: 5.4790964,-41.11062 + 24202: 5.444374,-41.187008 + 24203: 5.194374,-41.14534 + 24204: 5.3888187,-41.263393 + 24205: 5.2152076,-41.249508 + 24206: 5.1735406,-41.228672 + 24207: 5.4860406,-41.249508 + 24208: 5.798541,-41.24256 + 24209: 5.49993,-41.18006 + 24210: 5.4165964,-41.18006 + 24211: 5.3263187,-41.152283 + 24212: 5.2013187,-41.11062 + 24213: 6.1388187,-40.86756 + 24214: 6.173541,-40.825893 + 24215: 6.2221518,-40.67312 + 24216: 6.208263,-40.52034 + 24217: 6.298541,-40.603672 + 24218: 6.3054852,-40.652283 + 24219: 6.2915964,-40.69395 + 24220: 6.3124294,-40.49256 + 24221: 5.6527076,-39.70784 + 24222: 5.5207634,-39.77034 + 24223: 5.409652,-39.777283 + 24224: 5.256874,-39.791172 + 24225: 5.18743,-39.839783 + 24226: 5.409652,-39.72173 + 24227: 5.5207634,-39.80506 + 24228: 5.3332634,-39.74256 + 24229: 5.24993,-39.777283 + 24230: 5.24993,-39.94395 + 24231: 5.222152,-40.075893 + 31695: -71.31561,15.138871 + 31696: -71.36422,14.937483 + 31697: -71.25311,14.784705 + 31698: -71.18366,14.7360935 + 31699: -70.94061,15.0902605 + 31700: -70.7045,15.1110935 + 31701: -70.68366,15.118038 + 31702: -70.62116,15.229149 + 31703: -70.662834,15.041649 + 31704: -70.61422,14.9027605 + 31705: -70.64894,14.749983 + 31706: -70.73228,14.791649 + 31707: -70.642,14.729149 + 31708: -70.635056,14.694427 + 31709: -70.64894,14.7985935 + 31710: -70.69061,14.888871 + 31711: -70.71838,15.0277605 + 31712: -70.75311,15.104149 + 31713: -70.71838,14.9027605 + 31714: -70.89894,14.847205 + 31715: -71.00311,14.7985935 + 31716: -70.73922,15.062483 + 31717: -70.85728,15.187483 + 31718: -70.93366,15.166649 + 31719: -70.92672,14.993038 + 31720: -71.037834,14.8610935 + - node: + color: '#FFFFFF1B' + id: smallbrush + decals: + 25659: -87.262764,52.711037 + 25660: -87.27318,52.690205 + 25661: -87.25235,52.79437 + 25662: -87.24193,52.971455 + 25663: -87.2211,53.023537 + 25664: -87.294014,52.70062 + 25665: -86.96068,52.63812 + 25666: -87.3461,52.76312 + 25667: -86.9086,52.815205 + 25668: -87.05443,53.01312 + 25669: -87.0336,52.836037 + 25670: -86.575264,52.70062 + 25671: -87.05443,52.836037 + 25672: -87.08568,52.711475 + 25673: -86.64818,52.659393 + 25674: -86.481514,52.711475 + 25675: -86.87735,52.898975 + 25676: -86.71068,52.794807 + 25677: -86.93985,53.023975 + 25678: -87.18985,52.930225 + 25679: -87.30443,53.148975 + 25680: -87.2836,53.346893 + 25681: -87.1586,53.503143 + 25682: -87.05443,53.253143 + 25683: -86.92943,53.107307 + 25684: -86.700264,53.367725 + 25685: -86.83568,53.055225 + 25686: -86.50235,52.919807 + 25687: -86.50235,52.878143 + 25688: -86.2836,52.826057 + 25689: -85.9086,52.732307 + 25690: -86.31485,52.857307 + 25691: -86.39818,53.086475 + 25692: -86.68985,53.169807 + 25693: -86.64818,53.315643 + 25694: -86.56485,53.461475 + 25695: -84.700264,52.659393 + 25696: -84.67943,52.721893 + 25697: -85.0336,52.732307 + 25698: -84.89818,52.784393 + 25699: -84.71068,52.742725 + 25700: -84.919014,52.898975 + 25701: -84.71068,52.909393 + 25702: -84.637764,52.648975 + 25703: -84.75235,52.701057 + 25704: -84.762764,53.055225 + 25705: -84.762764,53.326057 + 25706: -84.731514,52.951057 + 25707: -84.80443,52.742725 + 25708: -84.80443,52.878143 + 25709: -85.0961,52.794807 + 25710: -85.21068,52.711475 + 25711: -84.9711,53.076057 + 25712: -85.044014,53.294807 + 25713: -84.93985,53.398975 + 25714: -84.887764,52.971893 + 25715: -84.887764,53.336475 + 25716: -84.825264,53.451057 + 25717: -84.856514,53.721893 + 25718: -85.106514,52.971893 + 25719: -85.2836,52.846893 + 25720: -85.4711,52.742725 + 25721: -85.71068,52.721893 + 25722: -85.30443,52.951057 + 25723: -85.4711,53.076057 + 25724: -85.200264,53.169807 + 25725: -84.75235,55.253143 + 25726: -84.731514,55.273975 + 25727: -84.75235,55.273975 + 25728: -84.80443,55.253143 + 25729: -84.96068,55.253143 + 25730: -85.06485,55.326057 + 25731: -84.6586,55.315643 + 25732: -84.68985,55.294807 + 25733: -84.700264,55.211475 + 25734: -84.71068,55.065643 + 25735: -84.77318,54.940643 + 25736: -84.762764,55.076057 + 25737: -84.7211,54.919807 + 25738: -84.74193,54.732307 + 25739: -84.9086,54.586475 + 25740: -84.87735,55.044807 + 25741: -84.794014,54.794807 + 25742: -85.0961,55.034393 + 25743: -85.05443,55.107307 + 25744: -85.325264,55.055225 + 25745: -85.2211,55.180225 + 25746: -85.106514,55.253143 + 25747: -85.33568,55.253143 + 25748: -85.7211,55.273975 + 25749: -85.4711,55.201057 + 25750: -87.2836,55.263557 + 25751: -87.294014,55.273975 + 25752: -87.169014,55.315643 + 25753: -86.981514,55.315643 + 25754: -87.106514,55.221893 + 25755: -87.169014,55.065643 + 25756: -87.1586,54.846893 + 25757: -87.044014,55.107307 + 25758: -86.75235,55.086475 + 25759: -86.9086,54.898975 + 25760: -86.919014,55.086475 + 25761: -86.74193,55.201057 + 25896: -3.391959,-19.361666 + 31737: -62.59392,29.319933 + 31738: -62.58698,29.354656 + 31739: -62.64948,29.347712 + 31740: -62.566147,29.160212 + 31741: -62.705036,29.139378 + 31742: -62.67031,29.3616 + 31743: -62.503647,29.215767 + 31744: -62.60087,29.389378 + 31759: -62.54531,28.708822 + 31760: -62.53837,28.743546 + 31761: -62.427258,28.903267 + 31762: -62.57309,28.771322 + 31763: -62.6842,28.764378 + 31764: -62.54531,28.958822 + 31765: -62.739758,28.7991 + 31766: -62.9967,28.778267 + 31767: -63.080036,28.771322 + 31768: -61.78142,28.757433 + 31769: -61.753647,28.757433 + 31770: -61.72587,28.715767 + 31771: -61.7467,28.833822 + 31772: -61.753647,28.993546 + 31773: -61.79531,29.271322 + 31774: -61.802258,29.215767 + 31775: -61.7467,29.396322 + 31776: -61.802258,29.472712 + 31777: -61.91337,29.278267 + 31778: -61.9342,29.417156 + 31779: -62.03142,29.403267 + 31780: -62.0592,29.368546 + 31781: -62.142536,29.4241 + 31782: -62.267536,29.2991 + 31783: -62.114758,29.319933 + 31784: -61.955036,29.201878 + 31785: -62.03837,29.0491 + 31786: -61.90642,29.007433 + 31787: -61.91337,28.917156 + 31788: -61.9967,28.847712 + 31789: -62.08698,28.81299 + 31790: -61.85781,28.743546 + 31791: -62.10781,28.7991 + 31792: -62.114758,28.771322 + 31793: -62.19809,28.910212 + 31794: -62.0592,29.146322 + 31795: -62.03837,28.81299 + 31796: -61.88559,28.806046 + 31797: -61.84392,29.097712 + 31798: -61.84392,29.06299 + 31799: -61.83698,28.910212 + 31800: -61.830036,29.097712 + 31801: -61.8092,28.854656 + 32683: -53.144474,41.965656 + 32684: -53.16299,41.933247 + 32685: -53.186142,42.05362 + 32686: -53.144474,42.252693 + 32687: -53.30651,41.937878 + 32688: -53.241695,41.910824 + 32689: -53.2741,41.957123 + 32690: -53.29262,42.08675 + 32691: -53.264843,42.20249 + 32692: -53.260216,42.35527 + 32693: -53.241695,42.503418 + 32694: -53.116695,42.121647 + 32695: -53.102806,42.24202 + 32696: -53.07966,42.505905 + 32697: -52.69077,42.005905 + 32698: -52.69077,41.894794 + 32699: -52.700027,41.904057 + 32700: -52.727806,42.10313 + 32701: -52.732437,42.24202 + 32702: -52.72318,42.029057 + 32703: -52.718548,42.23739 + 32704: -52.70929,42.413315 + 32705: -52.713917,42.529057 + 32706: -52.713917,42.70961 + 32707: -52.70466,42.96424 + 32708: -52.70466,43.172573 + 32709: -52.6954,43.096405 + 32710: -52.68151,42.860294 + 32711: -52.755585,43.207516 + 32712: -52.741695,43.04548 + 32713: -52.737064,42.93437 + 32714: -52.732437,42.814 + 32715: -52.732437,42.689 + 32716: -53.05651,43.212147 + 32717: -53.1491,43.096405 + 32718: -53.130585,42.92974 + 32719: -53.237064,43.244556 + 32720: -53.264843,43.096405 + 32721: -53.264843,43.013073 + 32722: -53.241695,43.226036 + 32723: -53.264843,43.082516 + 32724: -53.255585,42.989925 + 32725: -53.246326,43.19363 + 32726: -53.297253,43.04548 + 32727: -53.269474,43.221405 + 32728: -53.278732,43.14733 + 32729: -53.278732,43.216778 + 32730: -53.17688,42.9042 + 32731: -53.172253,42.67735 + 32732: -52.987064,42.6542 + 32733: -52.91762,42.63568 + 32734: -52.889843,42.42735 + 32735: -52.968548,42.172718 + 32736: -52.92688,42.056976 + 32737: -52.98678,42.501423 + 32738: -52.996037,42.751423 + - node: + color: '#FFFFFF22' + id: smallbrush + decals: + 22873: 4.1000996,22.320044 + 22874: 4.1782246,22.413794 + 22875: 4.4282246,22.413794 + 22876: 3.8032246,22.882544 + 22877: 3.9282246,23.023169 + 22878: 3.7875996,23.241919 + 22879: 2.6625996,21.976294 + 22880: 2.6469746,21.788794 + 22881: 2.6469746,21.648169 + 22882: 2.7094746,21.616919 + 22883: 3.0688496,21.663794 + 22884: 2.8188496,21.679419 + 22885: 2.7875996,21.695044 + 22886: 2.6938496,22.023169 + 22887: 2.6782246,22.351294 + 22888: 2.6469746,22.023169 + 22889: 2.7407246,21.741919 + 22890: 2.9750996,21.663794 + 22891: 3.1313496,21.632544 + 22892: 3.1313496,21.632544 + 22893: 2.7407246,21.695044 + 22894: 2.7094746,21.679419 + 22895: 2.6625996,21.632544 + 22896: 2.6469746,21.632544 + 22897: 2.6625996,21.820044 + 23753: 24.820707,-1.8248283 + 23754: 24.898832,-1.8873283 + 23755: 24.851957,-2.0435781 + 23756: 24.695707,-2.2310781 + 23757: 24.898832,-2.4029531 + 23758: 25.601957,-2.1529531 + 23759: 25.398832,-2.2779531 + 23760: 25.492582,-2.2935781 + 23761: 25.633207,-2.1217031 + 23762: 25.601957,-1.9498283 + 23763: 25.648832,-1.8560783 + 23764: 23.430082,-2.2154531 + 23765: 23.211332,-2.2779531 + 23766: 23.758207,-2.3404531 + 23767: 23.930082,-2.3404531 + 23768: 23.664457,-2.1842031 + 23769: 23.976957,-2.1060781 + 23770: 23.961332,-1.9029533 + 23771: 23.836332,-1.8560783 + 23772: 20.461332,-2.0279531 + 23773: 20.492582,-2.2467031 + 23774: 21.101957,-2.3092031 + 23775: 20.367582,-2.2310781 + 23776: 20.133207,-2.1685781 + 23777: 20.945707,-2.0435781 + 23778: 20.101957,-1.9029533 + 23779: 20.492582,-1.8404533 + 23780: 20.430082,-1.8248283 + 23781: 20.595825,-2.2935781 + 23782: 20.8302,-2.3560781 + 23783: 20.502075,-2.3717031 + 23784: 20.3302,-2.3560781 + 23785: 20.127075,-2.3560781 + 23824: 24.877075,-2.3717031 + 23825: 24.720825,-2.2623281 + 23826: 24.783325,-1.9654533 + 23827: 24.92395,-1.8717033 + 23828: 24.814575,-2.2154531 + 23829: 24.9552,-2.3560781 + 23830: 25.564575,-2.3092031 + 23831: 25.42395,-2.2467031 + 23832: 25.595825,-2.0748281 + 23833: 25.42395,-1.8873283 + 23834: 25.595825,-1.7935783 + 23835: 25.564575,-2.2154531 + 23836: 25.6427,-2.2935781 + 23837: 25.6427,-2.1685781 + 23838: 25.627075,-1.9342033 + 23839: 27.42395,-2.0123281 + 23840: 27.408325,-2.1685781 + 23841: 27.3927,-2.3092031 + 23842: 27.377075,-2.4029531 + 23843: 27.345825,-2.4498281 + 23844: 27.345825,-2.1842031 + 23845: 27.3927,-1.9810783 + 23846: 27.439575,-2.2779531 + 23847: 27.439575,-2.3717031 + 23848: 27.408325,-2.4810781 + 23849: 21.189575,-2.3404531 + 23850: 21.627075,-2.3717031 + 23851: 21.095825,-2.3404531 + 23852: 21.595825,-2.4498281 + 23853: 21.283325,-2.3717031 + 23854: 21.42395,-2.4654531 + 23855: 20.908325,-2.4498281 + 23856: 20.73645,-2.3717031 + 23857: 21.877075,-2.5123281 + 25063: 51.804424,-3.1160972 + 25064: 51.825256,-2.9216528 + 25065: 51.901646,-2.7410972 + 25066: 52.075256,-2.7133193 + 25067: 52.033592,-3.0119305 + 25068: 51.853035,-2.9008193 + 25069: 51.929424,-2.942486 + 25070: 51.818314,-3.1230416 + 25071: 51.839146,-3.1508193 + 25072: 52.144703,-2.879986 + 25073: 52.158592,-3.1022081 + 25074: 52.17248,-3.067486 + 25075: 52.151646,-2.9772081 + 25076: 52.193314,-3.0952637 + 25077: 52.179424,-2.9702637 + 25078: 52.221092,-3.0535972 + 25079: 52.17248,-2.8244305 + 25080: 52.158592,-2.706375 + 25081: 52.269703,-2.7341528 + 25082: 51.776646,-3.0744305 + 25083: 51.79748,-3.129986 + 25084: 51.769703,-2.9980416 + 25085: 51.762756,-2.831375 + - node: + color: '#FFFFFF25' + id: smallbrush + decals: + 33682: -102.87016,44.53001 + 33683: -102.85628,44.62029 + 33684: -102.842384,44.773064 + 33685: -102.8285,44.613342 + 33686: -102.814606,44.53001 + 33687: -102.779884,44.59251 + 33688: -102.779884,44.773064 + 33689: -102.779884,44.911953 + 33690: -102.779884,45.175842 + 33691: -102.80072,44.51612 + 33692: -102.814606,44.71751 + 33693: -102.8285,44.988342 + 33694: -102.80766,45.25223 + 33695: -102.779884,45.45362 + 33696: -102.766,45.460564 + 33697: -102.93266,45.14112 + 33698: -103.03683,44.925842 + 33699: -103.17572,44.64112 + 33700: -103.029884,45.20362 + 33701: -103.29378,45.03001 + 33702: -102.98128,45.25223 + 33703: -102.84933,45.536953 + 33704: -102.80072,45.773064 + - node: + color: '#FFFFFF26' + id: smallbrush + decals: + 24080: -24.937693,-3.2077477 + 24081: -24.882137,-3.214692 + 24082: -24.847416,-3.2216365 + 24083: -24.812693,-3.2216365 + 24084: -24.777971,-3.2216365 + 24085: -24.743248,-3.2216365 + 24086: -24.736305,-3.0827477 + 24087: -24.680748,-3.089692 + 24088: -24.618248,-3.0827477 + 24089: -24.590471,-3.0688589 + 24090: -24.548805,-3.0341365 + 24091: -24.507137,-2.9924698 + 24092: -24.465471,-2.9438589 + 24093: -24.437693,-2.8744144 + 24094: -24.423805,-2.8049698 + 24095: -24.47936,-2.9230254 + 24096: -24.66686,-2.9855254 + 24097: -24.812693,-2.9855254 + 24098: -24.41686,-2.8049698 + 24099: -24.521027,-2.8049698 + 24100: -24.625193,-2.8119144 + 24103: -24.555748,-2.7980254 + 24104: -24.646027,-3.1313589 + 24105: -24.875193,-3.1591365 + 24106: -25.083527,-3.1730254 + 24107: -25.277971,-3.1869144 + 24108: -24.736305,-3.2008033 + 24109: -25.055748,-3.2077477 + 24110: -26.750193,-3.1938589 + 24111: -26.652971,-3.228581 + 24112: -26.590471,-3.228581 + 24114: -26.555748,-3.2216365 + 24115: -26.507137,-3.214692 + 24116: -26.47936,-3.2077477 + 24117: -26.423805,-3.2077477 + 24118: -26.611305,-3.228581 + 24123: -26.618248,-3.2077477 + 24124: -26.548805,-3.1244144 + 24125: -26.527971,-3.0827477 + 24126: -26.527971,-2.9994144 + 24127: -26.527971,-2.9577477 + 24128: -26.521027,-2.8883033 + 24129: -26.521027,-2.8119144 + 24130: -26.534916,-2.7702477 + 24131: -26.527971,-2.7980254 + 24132: -26.521027,-2.9230254 + 24133: -26.444637,-3.0202477 + 24134: -26.340471,-3.0827477 + 24135: -26.548805,-2.7424698 + 24136: -26.527971,-2.7424698 + 24137: -26.451582,-2.8049698 + 24138: -26.333527,-2.8466365 + 24139: -26.277971,-2.902192 + 24140: -26.54186,-2.916081 + 24141: -26.437693,-2.9924698 + 24142: -26.271027,-3.0341365 + 25608: -86.2211,54.127705 + 25609: -86.481514,54.315205 + 25610: -86.325264,54.41937 + 25611: -86.49193,53.961037 + 25612: -86.39818,53.73187 + 25613: -86.64818,53.971455 + 25614: -86.39818,54.07562 + 25615: -86.231514,54.398537 + 25616: -85.7836,54.565205 + 25617: -85.887764,54.398537 + 25618: -86.106514,54.502705 + 25619: -85.7836,54.51312 + 25620: -85.544014,54.346455 + 25621: -85.325264,54.065205 + 25622: -85.544014,53.85687 + 25623: -85.2211,53.815205 + 25624: -85.52318,54.01312 + 25625: -85.4086,53.846455 + 25626: -85.5961,53.523537 + 25627: -85.919014,53.408955 + 25628: -86.27318,53.45062 + 25629: -86.294014,53.54437 + 25630: -85.89818,53.38812 + 25631: -86.5961,53.51312 + 25632: -86.4086,53.221455 + 25633: -85.887764,53.117287 + 25634: -85.575264,53.502705 + 25635: -85.89818,53.13812 + 25636: -86.169014,53.158955 + - node: + color: '#FFFFFF28' + id: smallbrush + decals: + 25329: -76.30391,9.323406 + 25330: -76.227516,9.309517 + 25331: -76.08169,9.330351 + 25332: -75.977516,9.330351 + 25333: -76.27613,9.274796 + 25334: -76.290016,9.247017 + 25335: -76.12335,9.122017 + 25336: -75.92891,9.184517 + 25337: -76.14419,9.247017 + 25338: -76.227516,9.122017 + 25339: -76.199745,8.955351 + 25340: -76.29697,9.184517 + 25341: -76.28307,9.066462 + 25342: -76.290016,8.934517 + 25343: -76.290016,8.837296 + 25344: -76.11641,8.784618 + 25345: -75.97057,8.701284 + 25346: -75.96363,8.992951 + 25347: -75.817795,8.999896 + 25348: -75.81085,8.645729 + 25349: -75.85947,8.867951 + 25350: -76.040016,9.111007 + 25351: -75.85947,9.048507 + 25352: -76.130295,9.055451 + 25353: -76.21363,8.81934 + 25354: -76.192795,8.715174 + 25355: -76.24835,8.666562 + 25356: -76.199745,9.159618 + 25357: -76.14419,9.249896 + 25358: -76.03307,8.951284 + 25359: -76.130295,9.111007 + 25360: -76.165016,8.916562 + 25361: -76.074745,8.972118 + 25383: -90.308105,9.333523 + 25384: -90.25255,9.333523 + 25385: -90.210884,9.326578 + 25386: -90.20393,9.243245 + 25387: -90.25255,9.1738 + 25388: -90.148384,9.2988 + 25389: -89.933105,9.340467 + 25390: -89.94005,9.2988 + 25391: -89.745605,9.3613 + 25392: -89.898384,9.104356 + 25393: -90.09283,9.014078 + 25394: -90.00949,8.868245 + 25395: -90.11366,9.159912 + 25396: -90.17616,8.8613 + 25397: -90.183105,9.1738 + 25398: -90.03727,9.264078 + 25399: -89.95393,9.076578 + 25400: -89.933105,8.9238 + 25401: -89.88449,9.264078 + 25402: -89.808105,8.930745 + 25403: -89.96783,9.243245 + 25404: -90.00949,9.3613 + 25405: -89.835884,9.257134 + 25406: -89.92616,8.916856 + 25407: -90.26643,8.909912 + 25408: -90.12755,8.743245 + 25409: -90.12755,8.6738 + 25410: -89.81505,8.826578 + 32610: -43.289143,38.945618 + 32611: -43.559975,39.098396 + 32612: -43.601643,39.209507 + 32613: -42.976643,38.772007 + 32614: -43.483585,38.883118 + - node: + color: '#FFFFFF2B' + id: smallbrush + decals: + 32483: -42.645245,50.620354 + 32484: -42.61747,51.17591 + 32485: -42.61747,51.446743 + 32486: -42.63136,51.65508 + 32487: -42.61747,51.98841 + 32488: -42.624413,52.1273 + 32489: -42.60358,52.23841 + 32490: -42.7633,51.398132 + 32491: -42.80497,51.76619 + 32492: -42.895245,52.11341 + 32493: -42.971634,51.73147 + 32494: -43.020245,52.09952 + 32495: -42.846634,50.85647 + 32496: -43.082745,51.370354 + 32497: -43.15219,51.73147 + 32523: -46.756126,52.10647 + 32524: -46.756126,52.210632 + 32525: -46.770016,52.23841 + 32526: -46.818626,52.03702 + 32527: -46.790848,51.696743 + - node: + angle: 2.9321531433504737 rad + color: '#FFFFFF2B' + id: smallbrush + decals: + 29936: -0.090081096,4.718682 + 29937: -0.090081096,4.697849 + 29938: 0.021030009,4.7117376 + 29939: 0.041863322,4.635349 + 29940: -0.04841447,4.642293 + 29941: 0.15297449,4.7950706 + 29942: -0.034525573,4.6492376 + - node: + color: '#FFFFFF2E' + id: smallbrush + decals: + 24483: -70.954285,3.2793713 + 24484: -70.90799,3.2840009 + 24485: -70.85243,3.2747416 + 24486: -70.79225,3.2747416 + 24487: -70.89873,3.2654824 + 24488: -70.90336,3.2377045 + 24489: -70.894104,3.1867785 + 24490: -70.88484,3.1127045 + 24491: -70.93577,3.0340009 + 24492: -70.89873,3.1867785 + 24493: -70.87096,3.1636305 + 24494: -70.87558,3.0710378 + 24495: -70.954285,2.983075 + 24496: -71.04225,2.91826 + 24497: -71.144104,2.8997416 + 24498: -71.18577,2.9136305 + 24499: -71.19965,2.932149 + 24500: -71.208916,2.895112 + 24501: -71.17188,2.9043713 + 24502: -70.991325,3.0154824 + 24503: -70.90799,2.9784453 + 24504: -71.07465,2.8997416 + 24505: -71.16725,2.8534453 + 24506: -70.87558,2.8534453 + 24507: -70.82465,3.0154824 + 24508: -71.10243,2.8395565 + 24509: -71.23206,2.8673341 + 24510: -71.21818,2.8858528 + 24511: -71.25521,2.8997416 + 24512: -71.27373,2.8627045 + 24513: -71.27836,2.8395565 + 24514: -71.29225,2.9645565 + 24515: -71.29688,3.020112 + 24516: -71.29688,2.969186 + 24517: -71.28762,2.8349268 + 24518: -71.28762,2.8164082 + 24519: -71.28299,2.733075 + 24520: -71.26447,2.7238157 + 24521: -71.27373,2.719186 + 25153: -1.7521319,-57.99409 + 25154: -1.6687987,-57.98715 + 25155: -1.5299098,-57.980206 + 25156: -1.3840765,-57.86215 + 25157: -1.3979653,-57.59826 + 25158: -1.5576875,-57.66076 + 25159: -1.3076875,-57.64687 + 25160: -1.5785209,-57.75798 + 25161: -1.5437987,-57.626038 + 25162: -1.4257431,-57.639927 + 25163: -1.3840765,-57.653816 + 25164: -2.5368543,-57.68159 + 25165: -2.6618543,-57.667706 + 25166: -2.7729654,-57.68159 + 25167: -2.4326875,-57.74409 + 25168: -2.4049098,-57.938538 + 25169: -2.613243,-57.97326 + 25170: -2.1826875,-57.99409 + 25171: -2.3701875,-58.028816 + 25172: -1.9535209,-58.09826 + 25173: -1.9882431,-58.264927 + 25174: -2.300743,-58.264927 + 25175: -1.6201875,-58.24409 + 32884: -28.717392,33.294197 + 32885: -28.724335,33.14836 + 32886: -28.717392,32.72475 + 32887: -28.717392,32.73864 + 32888: -28.717392,33.00253 + 32889: -28.863224,32.780308 + 32890: -29.029892,32.745583 + 32891: -28.904892,32.981697 + 32892: -28.863224,33.06503 + 32893: -28.891003,33.14836 + 32894: -29.050724,33.19003 + 32895: -31.286835,32.69003 + 32896: -31.147947,32.717808 + 32897: -31.057669,32.75253 + 32898: -31.245169,32.88447 + 32899: -31.29378,32.88447 + 32900: -31.272947,33.044197 + 32901: -31.210447,33.16225 + 32902: -31.279892,33.31503 + 32903: -31.217392,33.294197 + 32904: -30.974335,33.25253 + 32905: -31.120169,33.217808 + 32906: -30.620169,33.20392 + 32907: -30.988224,33.12753 + 32908: -31.057669,33.07892 + 32909: -30.884058,33.00253 + 32910: -31.161835,32.94697 + 32911: -31.022947,32.86364 + 32912: -31.002113,32.76642 + 32913: -30.925724,32.73864 + 32914: -30.842392,32.717808 + 32915: -31.071558,32.72475 + 32916: -30.779892,32.72475 + 32917: -29.154892,32.780308 + 32918: -29.536835,32.73864 + 32919: -29.175724,32.73864 + 32920: -29.411835,32.808083 + 32921: -29.016003,32.933083 + 32922: -29.252113,33.01642 + 32923: -28.967392,33.044197 + - node: + color: '#FFFFFF31' + id: smallbrush + decals: + 22914: 2.7094746,22.320044 + 22915: 2.7875996,21.913794 + 22916: 2.9594746,21.866919 + 22917: 3.4907246,21.679419 + 22918: 3.3500996,21.726294 + 22919: 3.0844746,21.991919 + 22920: 4.6469746,20.679419 + 22921: 4.6782246,20.679419 + 22922: 4.6469746,20.929419 + 22923: 4.6625996,20.616919 + 22924: 4.8032246,20.616919 + 22925: 5.0688496,20.648169 + 22926: 4.8813496,20.804419 + 22927: 4.5844746,21.163794 + 22928: 5.1313496,21.632544 + 22929: 5.3813496,21.445044 + 22930: 5.5844746,21.351294 + 22931: 2.6469746,24.382544 + 22932: 2.7563496,24.382544 + 22933: 2.9750996,24.366919 + 22934: 2.7719746,24.335669 + 22935: 2.7094746,24.241919 + 22936: 2.7094746,24.070044 + 22937: 2.6469746,24.304419 + 22938: 2.6625996,24.101294 + 22939: 2.6782246,24.351294 + 22940: 2.9282246,24.460669 + 22941: 3.4907246,24.366919 + 22942: 3.1782246,23.991919 + 22943: 3.0844746,23.570044 + 22944: 3.2719746,23.288794 + 22945: 3.0688496,23.507544 + 22946: 3.1782246,23.679419 + 22947: 3.3032246,23.413794 + 22948: 3.0063496,23.382544 + 22949: 3.1782246,23.148169 + 22950: 3.4594746,23.335669 + 22951: 4.1157246,23.554419 + 22952: 4.0063496,23.398169 + 22953: 4.5219746,22.273169 + 22954: 4.7719746,21.991919 + 22955: 5.0375996,21.788794 + 22956: 6.7875996,21.101294 + 22957: 7.0844746,21.132544 + 22958: 7.4125996,21.351294 + 22973: -4.702834,22.55891 + 22974: -2.6715844,21.793285 + 22975: -2.6247094,21.68391 + 22976: -2.7340844,21.62141 + 22977: -3.1247094,21.637035 + 22978: -3.2653344,21.68391 + 22979: -2.6872094,22.02766 + 22980: -3.5309594,23.762035 + 22981: -3.5309594,23.855785 + 22982: -3.4059594,23.62141 + 22983: -3.3434594,23.52766 + 22984: -3.7028344,23.52766 + 22985: -3.7965844,23.62141 + 22986: -3.7653344,23.699535 + 22988: -3.5465844,23.512035 + 22989: -3.7184594,23.77766 + 22990: -3.6872094,23.77766 + 22991: -3.6715844,24.012035 + 22992: -3.7184594,24.09016 + 22993: -3.6872094,23.99641 + 22994: -3.6715844,23.793285 + 22995: -4.030959,23.762035 + 22996: -4.030959,24.043285 + 22997: -3.8747094,24.074535 + 22998: -3.8590844,23.824535 + 22999: -3.8278344,23.77766 + 23000: -3.8903344,24.18391 + 23001: -4.171584,24.043285 + 23002: -3.6872094,23.87141 + 23003: -4.046584,23.74641 + 23004: -3.6559594,23.65266 + 23005: -3.3903344,23.52766 + 23006: -3.3903344,23.55891 + 23007: -3.6872094,23.65266 + 23008: -3.2028344,23.43391 + 23010: -3.1872094,23.30891 + 23011: -3.3590844,23.480785 + 23013: -6.093459,21.137035 + 23014: -5.780959,21.37141 + 23015: -5.468459,21.699535 + 23016: -5.734084,21.387035 + 23017: -5.890334,21.12141 + 23018: -6.218459,21.230785 + 23019: -6.218459,21.574535 + 23020: -6.577834,21.324535 + 23021: -6.984084,21.230785 + 23022: -7.327834,21.34016 + 23023: -7.421584,21.137035 + 23024: -7.062209,21.262035 + 23025: -7.312209,21.418285 + 23026: -7.280959,21.230785 + 23027: -6.640334,21.21516 + 23028: -6.218459,21.262035 + 23029: -5.921584,21.18391 + 23030: -6.421584,21.43391 + 23031: -6.609084,21.30891 + 23032: -6.874709,21.34016 + 23033: -6.530959,21.21516 + 23034: -6.296584,21.37141 + 23035: -6.202834,21.30891 + 24812: -66.888336,-2.3769715 + 24813: -66.805,-2.3561382 + 24814: -66.7425,-2.3561382 + 24815: -66.700836,-2.3561382 + 24816: -66.659164,-2.370027 + 24817: -66.603615,-2.3630826 + 24818: -66.763336,-2.2728047 + 24819: -66.62444,-2.3422494 + 24820: -66.52722,-2.3353047 + 24821: -66.68,-2.057527 + 24822: -66.388336,-2.2866936 + 24823: -66.68694,-2.1408603 + 24824: -66.700836,-2.0853047 + 24825: -66.450836,-2.2936382 + 24826: -66.61056,-2.2728047 + 24827: -66.43,-2.370027 + 24828: -66.534164,-2.3630826 + 24829: -66.200836,-2.4255826 + 24830: -66.67306,-2.370027 + 24831: -66.27722,-2.432527 + 24832: -66.103615,-2.432527 + 24833: -65.65222,-2.3561382 + 24834: -65.33278,-2.1894715 + 24835: -65.42306,-2.245027 + 24836: -65.56889,-2.3561382 + 24837: -65.784164,-2.4116936 + 24838: -65.46472,-1.8491937 + 24839: -65.48556,-1.9533603 + 24840: -65.513336,-2.0991936 + 24841: -65.58278,-2.2311382 + 24842: -65.43694,-1.9116937 + 24843: -65.42306,-1.8144715 + 24844: -65.43,-1.8005825 + 24845: -65.478615,-2.0158603 + 24846: -65.50639,-2.1616936 + 24847: -65.450836,-2.258916 + 24848: -65.409164,-2.0297494 + 24849: -65.39528,-1.8630825 + 24850: -65.33278,-1.9672493 + 24851: -65.346664,-2.1547494 + 24852: -65.38139,-1.9394715 + 24853: -65.37444,-1.9741937 + 24854: -65.40222,-2.2380824 + 24855: -65.534164,-2.3769715 + 24856: -65.513336,-2.446416 + 24857: -65.388336,-2.321416 + 24858: -65.49944,-2.4047494 + 24859: -65.56194,-2.432527 + 24860: -66.67306,-2.1343014 + 24861: -66.70778,-1.9676349 + 24862: -66.700836,-1.8565238 + 24863: -66.7425,-1.8426349 + 24864: -66.67306,-2.1065238 + 24865: -66.65222,-2.064857 + 24866: -66.69389,-1.9190238 + 24867: -66.721664,-1.8009682 + 24868: -66.721664,-1.7801349 + 24869: -66.763336,-1.877357 + 24870: -66.54806,-2.127357 + 24871: -66.68,-1.9120793 + 24872: -66.43694,-1.7870793 + 24873: -66.305,-2.0787458 + 24874: -66.659164,-1.8565238 + 24875: -66.21472,-2.0440238 + 24876: -66.103615,-2.189857 + 24877: -65.763336,-2.030135 + 24878: -65.6175,-1.8565238 + 24879: -65.79806,-1.9676349 + 24880: -66.221664,-1.8704126 + 24881: -65.784164,-1.9120793 + 24882: -65.8675,-2.155135 + 24883: -66.06889,-2.2454126 + 24884: -65.83826,-2.3873487 + 24885: -64.609085,-2.3223963 + 24886: -64.49798,-2.3924215 + 24887: -64.60214,-2.2813106 + 24888: -64.616035,-2.1424215 + 24889: -64.359085,-2.3090882 + 24890: -64.6577,-2.1771438 + 24891: -64.359085,-2.3646438 + 24892: -64.56742,-2.3438106 + 24893: -64.45631,-2.4063106 + 24894: -64.546585,-2.4063106 + 24895: -64.3452,-2.4063106 + 24896: -64.57436,-2.3299215 + 24897: -64.37298,-2.3785326 + 24898: -64.53964,-1.9896437 + 24899: -64.51881,-1.9688104 + 24900: -64.44936,-2.336866 + 24901: -64.52576,-2.4063106 + 24902: -64.56742,-2.336866 + 24903: -64.57436,-1.9896437 + 24904: -64.609085,-1.7604771 + 24905: -64.51186,-1.7326993 + 24906: -64.41464,-1.8438104 + 24907: -64.2202,-1.836866 + 24908: -64.3452,-1.7882549 + 24909: -64.38686,-1.774366 + 24910: -64.41464,-1.8160326 + 24911: -64.57436,-1.8160326 + 24912: -64.60214,-1.8299215 + 24913: -64.49798,-1.9896437 + 24914: -64.359085,-2.1424215 + 24915: -64.171585,-2.274366 + 24916: -64.1577,-2.385477 + 24917: -63.81742,-2.3785326 + 24918: -63.68548,-2.3438106 + 24919: -64.07436,-2.399366 + 24920: -64.33131,-2.3646438 + 24921: -64.41464,-2.1076994 + 24922: -64.60214,-1.9410326 + 24923: -63.775753,-2.4132547 + 24924: -63.5327,-2.3785326 + 24925: -63.24103,-2.3021438 + 24926: -62.24798,-2.2882547 + 24927: -62.35909,-2.3715882 + 24928: -62.49103,-2.3785326 + 24929: -62.33131,-2.3438106 + 24930: -62.3452,-2.3785326 + 24931: -62.29659,-2.3785326 + 24932: -62.23409,-2.3090882 + 24933: -62.2827,-1.7813104 + 24934: -62.2827,-1.8507549 + 24935: -62.2827,-1.9688104 + 24936: -62.30353,-2.0313106 + 24937: -62.31742,-2.0938106 + 24938: -62.261864,-1.9826993 + 24939: -62.30353,-2.010477 + 24940: -62.199364,-1.9688104 + 24941: -62.1577,-1.8576993 + 24942: -62.17853,-1.9965882 + 24943: -62.20631,-2.1701994 + 24944: -62.17159,-1.961866 + 24945: -62.199364,-2.1146438 + 24946: -62.24103,-2.2465882 + 24947: -62.31742,-2.3090882 + 24948: -62.102142,-2.3507547 + 24949: -62.24103,-2.3785326 + 24950: -62.36603,-2.3785326 + 24951: -62.54659,-2.3715882 + 24952: -62.74103,-2.3715882 + 24953: -63.08131,-2.3785326 + 24954: -62.50492,-2.1424215 + 24955: -62.61603,-2.024366 + 24956: -62.4077,-1.8715882 + 24957: -62.37992,-1.9201993 + 24958: -62.56742,-2.1285326 + 24997: -62.470913,-2.260477 + 24998: -62.644524,-2.3160326 + 24999: -62.790356,-2.336866 + 25000: -62.970913,-2.3507547 + 25001: -63.207024,-2.3646438 + 25002: -63.352856,-2.3785326 + 25003: -62.241745,-1.7813104 + 25004: -62.477856,-1.7882549 + 25005: -62.755634,-1.8160326 + 25006: -62.498688,-1.8646437 + 31485: -40.130394,29.217854 + 31486: -40.232246,29.13915 + 31487: -40.273914,29.222485 + 31488: -40.19984,29.26878 + 31489: -40.033173,29.26878 + 31490: -39.90354,29.180817 + 31491: -40.144283,29.046558 + 31492: -39.866505,29.190077 + 31493: -39.736877,29.213224 + 31494: -39.68595,29.250261 + 31495: -39.639652,28.875261 + 31496: -39.658173,28.796558 + 31497: -39.662804,28.741003 + 31498: -39.67669,28.722485 + 31499: -39.66743,28.703966 + 31500: -39.885025,28.722485 + 31501: -40.023914,28.856743 + 31502: -39.718357,28.884521 + 31503: -39.838726,29.111374 + 31504: -39.69521,28.930817 + 31689: -71.350334,15.243038 + 31690: -71.197556,15.249983 + 31691: -70.892,15.249983 + 31692: -71.27394,15.187483 + 31693: -71.19061,14.999983 + 31694: -71.11422,15.145816 + - node: + color: '#FFFFFF33' + id: smallbrush + decals: + 23084: -4.327834,23.77766 + 23085: -4.359084,23.27766 + 23086: -4.249709,23.012035 + 23087: -4.249709,22.762035 + 23088: -4.421584,22.49641 + 23089: -4.655959,22.34016 + 23090: -4.640334,22.387035 + 23091: -4.437209,22.668285 + 23092: -4.374709,22.99641 + 23093: -4.390334,23.21516 + 23094: -4.343459,23.62141 + 23095: -4.109084,23.793285 + 23096: -4.109084,23.65266 + 23097: -4.265334,23.293285 + 23098: -4.249709,22.918285 + 23099: -3.8590844,23.605785 + 23100: -4.155959,23.293285 + 23101: -4.218459,23.137035 + 23102: -5.124709,21.668285 + 23103: -5.359084,21.418285 + 23104: -2.6791427,21.93391 + 23105: -2.6791427,21.77766 + 23106: -2.6791427,21.668285 + 23107: -2.6791427,21.605785 + 23108: -2.5853927,21.574535 + 23109: -2.6322677,21.574535 + 23110: -2.9447677,21.605785 + 23111: -3.1010177,21.605785 + 23112: -3.0385177,21.77766 + 23113: -2.9135177,21.855785 + 23114: -2.8041427,21.949535 + 23115: -2.6947677,22.18391 + 23116: -2.6478927,22.387035 + 23117: -3.3978927,23.40266 + 23118: -3.4447677,23.27766 + 23119: -6.522893,21.30891 + 23120: -7.366643,21.27766 + 23121: -7.366643,21.05891 + 23122: -7.335393,20.84016 + 23925: 21.383602,1.9620059 + 23926: 21.711727,1.9307559 + 23927: 22.071102,2.0245059 + 23928: 22.492977,2.1026309 + 23929: 22.899227,2.1338809 + 23930: 23.164852,2.1338809 + 23931: 23.492977,2.2120059 + 23932: 23.867977,2.3213809 + 23933: 24.133602,2.3370059 + 23934: 24.430477,2.3526309 + 23935: 24.727352,2.4151309 + 23936: 24.071102,2.3838809 + 23937: 23.680477,2.3526309 + 23938: 23.367977,2.3213809 + 23939: 22.711727,2.2588809 + 23940: 23.399227,2.3057559 + 23941: 22.617977,2.1182559 + 23942: 21.867977,2.0088809 + 23971: 21.133602,1.9151309 + 23972: 21.367977,1.8995059 + 23973: 21.758602,2.0245059 + 23974: 22.008602,2.1026309 + 23975: 22.383602,2.1338809 + 23976: 22.696102,2.1338809 + 23977: 23.071102,2.1338809 + 23978: 23.633602,2.1651309 + 23979: 23.649227,2.3838809 + 23980: 23.914852,2.4151309 + 23981: 24.149227,2.4151309 + 23982: 24.727352,2.4151309 + 24003: 27.363726,2.3370059 + 24004: 27.363726,2.2901309 + 24005: 27.37935,2.1495059 + 24006: 27.394976,1.9620059 + 24012: 26.738726,1.7120059 + 24013: 26.5356,1.7120059 + 24014: 26.988726,1.7745059 + 24015: 27.0981,1.8838809 + 24016: 27.19185,2.0870059 + 24017: 27.301226,2.0870059 + 24018: 26.832476,1.8995059 + 24019: 27.176226,2.1963809 + 24020: 27.12935,2.3370059 + 24021: 26.75435,1.9151309 + 24022: 26.957476,2.1963809 + 29773: -0.3678851,6.5035815 + 29774: -0.3609407,6.399415 + 29775: -0.31927395,6.288304 + 29776: -0.25677395,6.5660815 + 29777: -0.083162904,6.635526 + 29778: -0.12482953,6.4063597 + 29779: 0.17378163,6.5938597 + 29780: 0.2015593,6.5313597 + 29782: 0.06961489,6.5313597 + 29784: 0.2848928,6.4688597 + 29785: 0.18767047,6.3299704 + 29786: 0.2640593,6.2674704 + 29787: 0.3196149,6.3160815 + 29788: 0.3196149,6.288304 + 29789: 0.3473928,6.198026 + 29790: 0.3265593,6.2535815 + 29791: 0.3265593,6.073026 + 29792: 0.29878163,5.9688597 + 29793: 0.29878163,6.4341373 + 29794: 0.29878163,6.524415 + 29795: 0.29878163,6.2674704 + 29796: 0.18072605,6.475804 + 29797: 0.1390593,6.2952485 + 29798: 0.08350372,6.510526 + 29799: 0.03489268,6.3091373 + 29800: -0.06232953,6.6285815 + 29801: 0.09044814,6.461915 + 29802: -0.09010732,6.5591373 + 29803: -0.110940695,6.2535815 + 29804: -0.24288511,6.3091373 + 29805: -0.3609407,6.2396927 + 29806: -0.40260732,6.3438597 + 29807: -0.37482953,6.0591373 + 29808: -0.22205174,6.461915 + 29809: -0.1456629,6.5313597 + 29810: 0.041837096,6.211915 + 29811: -0.055385113,6.5174704 + 29812: 0.13211489,6.2952485 + 29813: -0.027607322,6.4202485 + 29814: -0.27760732,4.3924704 + 29815: -0.3262185,4.573026 + 29816: -0.3262185,4.385526 + 29817: -0.34010732,4.448026 + 29818: -0.3678851,4.5035815 + 29819: -0.38177395,4.538304 + 29820: -0.4234407,4.6841373 + 29821: -0.3331629,4.3924704 + 29822: -0.37482953,4.5521927 + 29823: -0.34705174,4.3716373 + 29824: -0.34010732,4.461915 + 29825: -0.25677395,4.7674704 + 29826: -0.28455174,4.5660815 + 29827: -0.22205174,4.4549704 + 29828: -0.083162904,4.3785815 + 29829: -0.2081629,4.448026 + 29830: -0.11788511,4.4202485 + 29831: 0.00017046928,4.385526 + 29832: -0.10399616,4.5660815 + 29833: 0.18767047,4.3716373 + 29834: 0.00017046928,4.6216373 + 29835: 0.21544814,4.3577485 + 29836: 0.29183722,4.448026 + 29837: 0.39600372,4.2327485 + 29838: 0.3196149,4.3299704 + 29839: 0.33350372,4.1771927 + 29840: 0.33350372,4.0035815 + 29841: 0.3265593,3.795248 + 29842: 0.3265593,3.732748 + 29843: 0.33350372,3.6980262 + 29844: 0.2571149,3.9133039 + 29845: 0.25017047,4.163304 + 29846: 0.27100372,4.4410815 + 29847: 0.31267047,4.600804 + 29848: 0.33350372,4.2952485 + 29849: 0.25017047,4.6424704 + 29850: 0.2571149,4.4827485 + 29851: 0.14600372,4.4202485 + 29852: 0.1390593,4.8646927 + 29853: 0.11822605,4.4410815 + 29854: 0.00017046928,4.4688597 + 29855: -0.16649616,4.5938597 + 29856: -0.2359407,4.5174704 + 29857: -0.055385113,4.4966373 + 29858: 0.08350372,4.8299704 + 29859: 0.23628163,4.5035815 + 29860: 0.27100372,4.961915 + 29861: 0.31267047,4.524415 + 29862: 0.29878163,4.4827485 + 29863: 0.29183722,4.948026 + 29864: 0.3265593,4.586915 + 29865: 0.3473928,4.475804 + 29866: 0.3196149,4.948026 + 29867: 0.29183722,4.7813597 + 29868: 0.2848928,4.6841373 + 29869: 0.2848928,4.948026 + 29870: 0.2848928,5.1077485 + 29871: 0.29183722,5.3646927 + 29872: 0.3265593,5.0174704 + 29873: 0.31267047,4.7813597 + 29874: 0.2848928,4.725804 + 29875: -0.11788511,4.7535815 + 29876: 0.104337215,5.0035815 + 29877: 0.14600372,5.0035815 + 29878: 0.2640593,5.7327485 + 29879: 0.31267047,5.5174704 + 29880: 0.2640593,5.9271927 + 29881: 0.29878163,5.8438597 + 29882: -0.24982953,5.975804 + 29883: -0.29149616,5.6216373 + 29884: -0.16649616,5.9966373 + 29885: -0.06927395,5.885526 + 29886: 0.02794826,5.9688597 + 33812: -33.068256,34.155468 + 33813: -33.336773,34.118427 + 33814: -33.568256,34.22954 + 33815: -33.785847,34.47491 + 33816: -33.25344,34.405468 + 33817: -33.429367,34.21102 + 33818: -33.12844,34.187874 + 33819: -33.221035,34.215652 + 33820: -32.600662,34.22954 + 33821: -32.494183,34.34991 + 33822: -32.415478,34.183243 + 33823: -32.586773,34.01658 + 33824: -32.600662,33.905468 + 33825: -32.5127,33.84991 + 33826: -32.961773,33.933243 + 33827: -33.42011,33.97954 + 33828: -33.48955,34.00269 + 33829: -33.424736,34.146206 + 33830: -33.484924,34.35454 + 33831: -33.461773,34.405468 + 33832: -33.193256,34.47491 + 33833: -33.457146,34.632317 + 33834: -32.859924,34.590652 + 33835: -32.600662,34.437874 + 33836: -32.74881,34.22028 + 33837: -32.480293,34.549522 + 33838: -32.362236,34.521748 + 33839: -32.417793,34.73008 + 33840: -32.480293,34.71619 + 33841: -32.216404,34.38286 + 33842: -32.431683,34.299522 + 33843: -32.723347,34.3273 + - node: + color: '#FFFFFF34' + id: smallbrush + decals: + 22834: -17.415768,-4.2736435 + 23631: -16.962986,13.623281 + 23632: -16.697361,13.842031 + 23633: -16.384861,13.857656 + 23634: -16.212986,13.795156 + 23635: -15.931735,12.826406 + 23636: -16.087986,12.482656 + 23637: -16.197361,12.326406 + 23638: -16.400486,12.232656 + 23639: -16.759861,12.217031 + 23640: -16.947361,12.310781 + 23641: -17.056736,12.513906 + 23642: -17.087986,12.732656 + 23656: -17.369236,14.373281 + 23657: -17.275486,14.420156 + 23658: -17.103611,14.482656 + 23659: -17.337986,14.388906 + 23660: -17.431736,14.107656 + 23661: -17.291111,14.232656 + 23662: -16.978611,14.232656 + 23663: -17.181736,14.092031 + 23664: -17.009861,13.951406 + 24399: -42.271973,6.628862 + 24400: -42.230305,6.6427507 + 24401: -42.09836,6.6427507 + 24402: -42.03586,6.6427507 + 24403: -41.952526,6.663584 + 24404: -42.015026,6.691362 + 24405: -42.063637,6.8302507 + 24406: -41.896973,6.9621954 + 24407: -42.03586,6.726084 + 24408: -41.72336,6.6705284 + - node: + color: '#FFFFFF35' + id: smallbrush + decals: + 23246: 6.1759105,21.163197 + 23247: 5.6759105,21.241322 + 23248: 5.3321605,21.413197 + 23249: 5.1446605,21.600697 + 23250: 5.5509105,21.225697 + 23251: 7.1602855,21.178822 + 23252: 7.4102855,21.038197 + 23253: 7.4259105,20.850697 + 23254: 7.3634105,20.725697 + 23255: 7.1915355,20.663197 + 23256: 7.3790355,20.710072 + 23257: 7.2071605,20.647572 + 23258: 7.0977855,20.678822 + 23259: 7.1290355,20.960072 + 23260: 7.1290355,20.897572 + 23261: 6.8477855,21.131947 + 23262: 7.2852855,21.319447 + 23263: 7.3165355,21.085072 + 23264: 7.3165355,21.335072 + 23265: 7.3165355,21.022572 + 23266: 7.3165355,20.694447 + 23267: 7.3634105,20.616322 + 23268: 7.1759105,20.819447 + 23269: 6.9884105,20.678822 + 23270: 6.9102855,20.725697 + 23271: 6.9102855,20.944447 + 23272: 6.7384105,21.053822 + 23273: 6.7696605,21.085072 + 23274: 6.6759105,20.694447 + 23275: 6.4884105,20.678822 + 23276: 6.8165355,20.647572 + 23277: 6.9571605,20.710072 + 23278: 6.6915355,20.850697 + 23279: 6.6446605,20.975697 + 23280: 3.912178,22.189497 + 23281: 3.959053,21.986372 + 23282: 4.287178,21.970747 + 23283: 4.224678,22.220747 + 23284: 4.662178,21.986372 + 23285: 4.552803,21.939497 + 23286: 4.693428,21.626997 + 23287: 4.599678,21.580122 + 23288: 4.615303,21.392622 + 23289: 4.693428,21.798872 + 23290: 4.537178,21.845747 + 23291: 4.474678,21.767622 + 23292: 4.287178,21.689497 + 23293: 3.912178,21.580122 + 23294: 3.802803,21.580122 + 23295: 4.505928,21.642622 + 23296: 4.818428,21.830122 + 23297: 4.677803,21.470747 + 23298: 4.568428,21.173872 + - node: + color: '#FFFFFF37' + id: smallbrush + decals: + 24581: -65.97515,2.3161068 + 24582: -65.93348,2.3161068 + 24583: -65.891815,2.3161068 + 24584: -65.83626,2.302218 + 24585: -65.83626,2.2674956 + 24586: -65.8432,2.1980512 + 24587: -65.87098,2.052218 + 24588: -65.88487,1.8994403 + 24589: -65.88487,1.7883291 + 24590: -65.891815,1.71194 + 24591: -65.89876,1.6911068 + 24592: -65.87792,1.7049956 + 24593: -65.8432,1.7049956 + 24594: -65.81542,1.7049956 + 24595: -65.79459,1.7327735 + 24596: -65.78765,1.6911068 + 24597: -65.73209,1.802218 + 24598: -65.80848,1.9411068 + 24599: -65.81542,2.1008291 + 24600: -65.63487,2.0591624 + 24601: -65.87792,1.9688845 + 24602: -65.63487,1.8855512 + 24603: -66.079315,2.1494403 + 24604: -65.82237,2.1911068 + 24605: -65.89876,2.2674956 + 24606: -65.71126,2.3161068 + 24607: -65.89876,2.3786068 + 24608: -65.38487,2.1633291 + 24609: -65.49598,1.989718 + 24610: -65.60709,1.8786068 + 24611: -65.38487,1.7952735 + 24612: -65.7182,1.739718 + 24613: -65.66265,1.739718 + 24614: -65.50292,1.739718 + 24615: -65.91265,1.7674956 + 24616: -65.766815,1.8508291 + 24617: -65.704315,2.0452733 + 24618: -65.97515,2.2744403 + 24619: -65.6557,2.2813845 + 24620: -61.426537,2.2952733 + 24621: -61.44737,2.3161068 + 24622: -61.440426,2.3230512 + 24623: -61.475147,2.3091624 + 24624: -61.49598,2.2952733 + 24625: -61.586258,2.3230512 + 24626: -61.711258,2.3230512 + 24627: -61.88487,2.3230512 + 24628: -61.982094,2.3230512 + 24629: -62.051537,2.3230512 + 24630: -62.204315,2.3230512 + 24631: -62.343204,2.3230512 + 24632: -62.176537,2.3369403 + 24633: -62.00987,2.3369403 + 24634: -61.877926,2.3299956 + 24635: -61.704315,2.3230512 + 24636: -60.648758,2.3438845 + 24637: -60.641815,2.3438845 + 24638: -60.711258,2.3161068 + 24639: -60.780704,2.3091624 + 24640: -60.94737,2.3161068 + 24641: -61.002926,2.3161068 + 24642: -61.155704,2.3230512 + 24643: -60.961258,2.3508291 + 24644: -61.232094,2.3508291 + 24645: -61.537647,2.364718 + 24646: -61.857094,2.364718 + 24647: -62.211258,2.3577733 + 24648: -62.398758,2.3508291 + 24649: -62.44737,2.3438845 + 24650: -62.523758,2.3161068 + 24651: -62.662647,2.302218 + 24652: -62.57237,2.3161068 + 24653: -62.38487,2.3161068 + 24654: -62.343204,2.3230512 + 24655: -62.63487,2.3230512 + 24656: -62.391815,2.302218 + 24657: -62.537647,2.1911068 + 24658: -62.600147,2.1355512 + 24659: -62.475147,2.0661068 + 24660: -62.454315,2.052218 + 24661: -62.544594,2.1008291 + 24662: -62.440426,2.0591624 + 24663: -62.50987,1.9619403 + 24664: -62.516815,1.8786068 + 24665: -62.49598,1.7813845 + 24666: -62.523758,1.7466624 + 24667: -62.669594,1.7466624 + 24668: -62.898758,1.7674956 + 24669: -62.600147,1.7327735 + 24670: -62.454315,1.7188845 + 24671: -62.586258,1.71194 + 24672: -62.794594,1.7258291 + 24673: -62.55848,1.7883291 + 24674: -62.391815,1.8508291 + 24675: -62.502926,1.9202733 + 24676: -62.49598,1.8994403 + 24677: -62.44737,1.9549956 + 24678: -62.74598,2.0036068 + 24679: -62.287647,2.0244403 + 24680: -62.43348,2.0730512 + 24681: -62.364037,2.177218 + 24682: -62.62098,2.2119403 + 24683: -62.544594,2.239718 + 24684: -62.294594,2.2119403 + 24685: -62.419594,2.0105512 + 24686: -62.461258,1.71194 + 24687: -63.141815,1.8161068 + 24688: -63.287647,1.7536068 + 24689: -62.655704,1.8994403 + 24690: -63.037647,1.9827733 + 24691: -62.773758,2.1633291 + 24692: -62.766815,2.1841624 + 24693: -64.16959,2.3508291 + 24694: -64.25292,2.3230512 + 24695: -64.52376,2.2883291 + 24696: -64.63487,2.3161068 + 24697: -64.579315,2.302218 + 24698: -64.30154,2.3369403 + 24699: -64.75987,2.427218 + 24700: -64.85015,2.3438845 + 24701: -65.12792,2.3091624 + 24702: -65.23209,2.3994403 + 24703: -64.00987,2.4063845 + 24704: -63.88487,2.4133291 + 24705: -64.48209,2.1911068 + 24706: -64.50987,2.0313845 + 24707: -64.75987,2.0036068 + 24708: -64.93348,2.2119403 + 24709: -64.46126,1.9966624 + 24710: -64.329315,1.9688845 + 24711: -64.52376,2.2536068 + 24712: -64.30154,1.9758291 + 24713: -64.42654,2.2119403 + 24714: -64.42654,2.0661068 + 24715: -64.41959,2.2674956 + 24716: -63.989037,2.1911068 + 24717: -63.989037,1.9827733 + 24718: -64.19737,1.9480512 + 24719: -63.50987,1.7605512 + 24720: -63.718204,1.8438845 + 24721: -63.829315,2.0452733 + 24722: -63.537647,2.0244403 + 24723: -63.94737,1.8161068 + 24724: -64.12098,1.802218 + 24725: -63.787647,1.6911068 + 24726: -63.62098,1.7327735 + - node: + color: '#FFFFFF3B' + id: smallbrush + decals: + 23332: 16.350487,12.34572 + 23333: 16.475487,12.56447 + 23334: 15.772362,13.59572 + 23335: 15.803612,13.517595 + 23336: 16.256737,13.53322 + 23337: 16.444237,13.580095 + 23338: 16.475487,13.37697 + 23339: 16.116112,13.517595 + 23340: 16.522362,13.392595 + 23341: 16.537987,12.923845 + 23342: 16.194237,13.43947 + 23343: 16.537987,13.205095 + 23344: 16.475487,12.736345 + 23345: 16.303612,13.267595 + 23346: 16.162987,12.12697 + 23347: 15.897362,11.767595 + 23349: 15.725487,11.84572 + 23350: 15.819237,13.37697 + 23582: -17.325415,4.169118 + 23583: -17.05979,4.059743 + 23584: -16.700415,4.090993 + 23585: -16.419165,4.309743 + 23586: -16.24729,4.465993 + 23587: -16.05979,4.669118 + 23588: -15.90354,4.840993 + 23589: -15.950415,4.544118 + - node: + color: '#FFFFFF3E' + id: smallbrush + decals: + 31827: -62.96892,29.090767 + 31828: -63.10087,28.847712 + 31829: -63.13559,28.958822 + 31830: -63.13559,29.181046 + 31831: -63.267536,28.778267 + 31832: -63.267536,29.021322 + 31833: -63.32309,29.264378 + 31834: -63.21892,29.340767 + 31835: -63.364758,29.382435 + 31836: -62.84392,29.382435 + 31837: -62.580036,29.229656 + 31838: -62.63559,28.951878 + 31839: -62.97587,28.9866 + 31840: -62.15856,29.028267 + 31841: -61.957172,29.222712 + 31842: -61.85995,29.306046 + 31843: -61.804394,29.368546 + 31844: -61.79745,29.243546 + 31845: -62.228004,29.215767 + 31846: -62.207172,29.021322 + 31847: -62.839115,29.1116 + 31848: -62.007046,29.4241 + 31859: -56.27852,29.405674 + 31861: -55.681297,28.801508 + 31862: -55.570187,28.690397 + 31863: -55.695187,28.71123 + 31864: -55.702133,28.829287 + 31865: -55.584076,29.093174 + 31866: -55.570187,28.815397 + 31867: -55.938244,28.787619 + 31868: -55.764633,28.732063 + 31869: -55.931297,28.732063 + 31870: -55.639633,29.169563 + 31871: -55.618797,29.176508 + 31872: -55.639633,29.377897 + 31873: -55.625744,29.440397 + 31874: -55.736855,29.301508 + 31875: -55.896576,29.315397 + 31876: -55.820187,29.315397 + 31877: -55.847965,29.259842 + 31878: -55.910465,29.030674 + 31906: -56.09102,28.975119 + 31907: -56.174355,28.815956 + 31908: -56.15352,28.704844 + 31909: -56.21602,28.802067 + 31910: -56.584076,28.954844 + 31911: -56.257687,29.038177 + 31912: -56.209076,29.163177 + 31913: -56.15352,29.218733 + 31914: -56.084076,29.350677 + 31915: -56.014633,29.371511 + 31916: -55.882687,29.371511 + 31917: -55.611855,29.003456 + 31918: -56.472965,29.187464 + 31919: -56.584076,29.222187 + 31920: -56.424355,29.270798 + 31921: -56.521576,29.333298 + 31922: -56.459076,29.395798 + 31923: -56.542408,29.388853 + 31924: -56.452133,29.020798 + 31925: -56.375744,28.86802 + 31926: -56.604908,28.854132 + 31927: -56.667408,28.812464 + 31928: -56.257687,28.784687 + 31929: -56.563244,28.812464 + 31930: -56.84102,28.840242 + 31931: -56.764633,28.895798 + 31932: -56.688244,29.097187 + 31933: -56.639633,29.194408 + 31934: -57.229908,29.402742 + 31935: -57.271576,29.402742 + 31936: -57.243797,29.347187 + 31937: -57.084076,29.291632 + 31945: -56.514633,28.784687 + 31946: -56.604908,28.749964 + 31947: -56.764633,28.74302 + 31948: -56.917408,28.749964 + 31949: -57.007687,28.74302 + 31950: -57.139633,28.74302 + 31951: -57.202133,28.729132 + 31952: -57.243797,28.715242 + 31953: -57.222965,28.86802 + 31954: -57.174355,28.791632 + 31955: -56.625744,28.847187 + 31956: -56.410465,28.770798 + 31957: -56.34102,28.916632 + 31958: -56.389633,29.05552 + 31959: -56.222965,28.951353 + 31960: -56.577133,28.74302 + 31961: -56.736855,28.736076 + 31962: -56.875744,28.729132 + 31963: -56.389633,29.187464 + 31964: -56.285465,29.326353 + 31965: -56.327133,29.402742 + 31966: -56.27852,29.402742 + 31967: -56.486855,29.173576 + 31968: -56.507687,29.187464 + 31969: -56.584076,29.319408 + 31970: -56.424355,29.05552 + 31971: -56.709076,29.187464 + 31972: -56.472965,29.256908 + 31973: -56.535465,29.333298 + 31974: -56.327133,28.999964 + 31975: -56.02852,29.138853 + 31976: -56.021576,28.979132 + 31977: -55.868797,29.076353 + 31978: -56.02852,29.069408 + 31979: -56.299355,29.298576 + 31980: -56.660465,29.034687 + 31981: -56.90352,29.048576 + 31982: -56.750744,29.298576 + 31983: -56.646576,29.361076 + 31984: -56.414654,24.632504 + 31985: -56.53271,24.632504 + 31986: -56.567432,24.632504 + 31987: -56.525764,24.72278 + 31988: -56.449375,24.576948 + 31989: -56.64382,24.632504 + 31990: -56.40771,24.618614 + 31991: -56.491043,24.97278 + 31992: -56.491043,24.820004 + 31993: -56.636875,24.570004 + 31994: -56.636875,24.67417 + 31995: -56.83132,24.903336 + 31996: -56.629932,24.625559 + 31997: -56.803543,24.771393 + 31998: -56.754932,24.590836 + 31999: -56.977154,24.681114 + 32000: -57.060486,24.618614 + 32001: -56.997986,24.542225 + 32002: -57.185486,24.583893 + 32003: -57.122986,24.53528 + 32004: -56.727154,24.72278 + 32005: -56.414654,24.556114 + 32006: -56.296597,24.54917 + 32007: -56.185486,24.53528 + 32008: -56.178543,24.715836 + 32009: -56.199375,24.521393 + 32010: -56.046597,24.667225 + 32011: -56.088264,24.528336 + 32012: -55.984097,24.618614 + 32013: -55.928543,24.61167 + 32014: -55.824375,24.67417 + 32015: -55.83132,24.514448 + 32016: -55.713264,24.590836 + 32017: -55.671597,24.653336 + 32018: -55.629932,24.67417 + 32019: -55.713264,24.79917 + 32020: -55.560486,24.59778 + 32021: -55.616043,24.653336 + 32022: -55.65771,24.979725 + 32023: -55.588264,24.882504 + 32024: -55.650764,25.007504 + 32080: -62.499477,25.223991 + 32081: -62.531887,25.23325 + 32082: -62.541145,25.214731 + 32083: -62.406887,25.1314 + 32084: -62.517998,24.895287 + 32098: -56.23101,22.977415 + 32099: -56.24953,23.130192 + 32100: -56.27268,23.232044 + 32101: -56.25879,23.31075 + 32102: -56.180084,23.380192 + 32103: -56.189346,23.40797 + 32104: -56.240273,23.426489 + 32105: -55.98101,23.43575 + 32106: -55.948605,23.42186 + 32107: -56.21712,23.255192 + 32108: -55.930084,23.431118 + 32109: -55.809715,23.357044 + 32110: -55.73101,23.227415 + 32111: -55.768047,23.43575 + 32112: -55.601383,23.384823 + 32113: -55.596752,23.352415 + 32114: -55.555084,22.884823 + 32115: -55.573605,22.778341 + 32116: -55.61064,22.79686 + 32117: -63.4332,23.315952 + 32118: -63.377644,23.427063 + 32119: -63.28968,23.33447 + 32120: -63.34987,23.408545 + 32121: -63.27579,23.371508 + 32122: -63.396164,23.32984 + 32123: -63.437828,23.251137 + 32124: -63.359127,23.45484 + 32125: -63.104496,23.436321 + 32126: -63.002644,23.45484 + 32127: -63.17857,23.371508 + 32128: -63.280422,23.22799 + 32129: -63.30357,23.408545 + 32130: -63.19709,23.195581 + 32131: -63.030422,23.348358 + 32132: -62.90079,23.366877 + 32133: -62.83598,23.390026 + 32134: -62.80357,23.371508 + 32135: -62.771164,23.394655 + 32136: -62.738754,23.255766 + 32137: -62.729496,23.015026 + 32138: -62.8082,23.130766 + 32139: -63.382275,23.195581 + 32140: -63.423943,23.093729 + 32141: -63.391533,22.917803 + 32142: -63.45635,22.792803 + 32143: -63.391533,22.760395 + 32144: -63.40079,22.732618 + 32145: -63.34987,23.010395 + 32146: -63.016533,22.737247 + 32147: -63.17857,22.755766 + 32148: -62.780422,22.815952 + 32149: -62.96098,22.936321 + 32150: -63.113754,23.07521 + 32151: -62.840607,22.811321 + 32152: -62.905422,23.033545 + 32153: -63.340805,15.652735 + 32154: -63.382473,15.58329 + 32155: -63.39173,15.652735 + 32156: -63.363956,15.819401 + 32157: -63.345436,15.578659 + 32158: -63.470436,15.597179 + 32159: -63.271362,15.546253 + 32160: -63.373215,15.532364 + 32161: -63.373215,15.648106 + 32162: -63.396362,16.023106 + 32163: -63.29451,16.111067 + 32164: -63.521362,16.203661 + 32165: -63.470436,16.22218 + 32166: -63.192657,15.490697 + 32167: -62.951916,15.481438 + 32168: -62.82229,15.689772 + 32169: -62.76673,15.546253 + 32170: -62.762104,15.536995 + 32171: -56.141273,16.106438 + 32172: -56.201458,16.180511 + 32173: -56.233868,16.231438 + 32174: -56.266273,16.273106 + 32175: -56.266273,16.282364 + 32176: -56.118126,16.286993 + 32177: -56.108868,16.189772 + 32178: -55.97461,16.259216 + 32179: -55.937572,16.20829 + 32180: -55.80794,16.291624 + 32181: -55.645905,16.240698 + 32182: -56.034794,16.106438 + 32183: -55.937572,15.962919 + 32184: -55.92831,16.09718 + 32185: -55.8635,15.9351425 + 32186: -56.150536,15.972179 + 32187: -56.007015,15.9351425 + 32188: -56.076458,15.976809 + 32189: -56.007015,15.870327 + 32190: -56.108868,15.726809 + 32191: -56.16442,15.620327 + 32192: -56.20609,15.657364 + 32193: -56.2385,15.657364 + 32194: -56.247757,15.606438 + 32195: -56.22461,15.884216 + 32196: -55.71072,16.115698 + 32197: -55.66442,16.217548 + - node: + color: '#FFFFFF41' + id: smallbrush + decals: + 24334: -47.314922,1.7393415 + 24335: -46.877422,1.7462859 + 24336: -47.182976,1.7671194 + 24337: -46.82881,2.2393417 + 24338: -46.662144,2.2532306 + 24339: -46.620476,2.1282306 + 24340: -46.634365,1.7462859 + - node: + color: '#FFFFFF44' + id: smallbrush + decals: + 31802: -61.78142,28.771322 + 31803: -61.78142,28.979656 + 31804: -61.73281,29.153267 + 31805: -61.91337,29.264378 + 31806: -61.830036,28.896322 + 31807: -62.03142,28.8616 + 31808: -61.8717,28.792156 + 31809: -62.14948,28.840767 + 31810: -61.92031,28.840767 + 31811: -62.10781,28.785212 + 31812: -62.364758,28.778267 + 31813: -62.35781,28.778267 + 31814: -61.92031,28.910212 + 31815: -62.330036,29.132433 + 31816: -61.753647,28.917156 + 31817: -61.83698,29.021322 + - node: + color: '#FFFFFF4A' + id: smallbrush + decals: + 22422: 17.381073,-11.810002 + 22423: 17.396698,-12.060002 + 22424: 17.240448,-11.825627 + 22425: 17.162323,-11.747502 + 22426: 17.334198,-11.778752 + 22427: 17.490448,-11.747502 + 22428: 17.365448,-14.231877 + 22429: 17.349823,-14.325627 + 22430: 17.287323,-14.403752 + 22431: 17.146698,-14.435002 + 22432: 17.474823,-14.388127 + 22433: 17.459198,-14.013127 + 22434: 16.881073,-14.403752 + 22435: 15.709198,-14.247502 + 22436: 15.709198,-14.325627 + 22437: 15.787323,-14.388127 + 22438: 15.912323,-14.388127 + 22439: 16.084198,-14.419377 + 22440: 15.787323,-14.138127 + 22441: 15.756073,-14.106877 + 22442: 15.787323,-13.872502 + 22448: 15.787323,-12.060002 + 22449: 15.787323,-11.903752 + 22450: 15.771698,-11.794377 + 22451: 15.865448,-11.731877 + 22452: 16.052948,-11.731877 + 22453: 16.131073,-11.731877 + 22454: 16.349823,-11.731877 + 22455: 16.459198,-11.731877 + 22456: 16.740448,-11.716252 + 22457: 16.834198,-11.747502 + 22458: 17.037323,-11.763127 + 22459: 15.943573,-14.263127 + 22460: 16.115448,-14.356877 + 22461: 16.552948,-14.356877 + 22462: 16.427948,-14.356877 + 22463: 16.302948,-14.388127 + 22464: 16.756073,-14.356877 + 22465: 16.943573,-14.356877 + 22466: 17.396698,-13.935002 + 22467: 17.427948,-13.747502 + 22468: 17.427948,-13.638127 + 22469: 17.427948,-13.372502 + 22470: 17.412323,-13.216252 + 22471: 17.396698,-13.028752 + 22472: 17.396698,-12.856877 + 22473: 17.396698,-12.606877 + 22474: 17.365448,-12.466252 + 22475: 17.349823,-12.341252 + 22476: 15.709198,-13.669377 + 22477: 15.771698,-13.481877 + 22478: 15.771698,-13.341252 + 22479: 15.771698,-13.169377 + 22480: 15.787323,-12.935002 + 22481: 15.818573,-12.778752 + 22482: 15.818573,-12.622502 + 22483: 15.834198,-12.450627 + 22484: 15.865448,-12.278752 + 22485: 15.912323,-12.122502 + 22486: 16.006073,-11.981877 + 22487: 16.084198,-11.888127 + 22488: 15.677948,-12.247502 + 22489: 15.740448,-12.481877 + 22734: -17.338902,-5.830916 + 22735: -17.338902,-5.955916 + 22736: -17.338902,-6.096541 + 22737: -17.338902,-6.127791 + 22738: -17.307652,-6.174666 + 22739: -17.260777,-6.205916 + 22740: -17.354527,-6.268416 + 22741: -17.167027,-6.190291 + 22742: -17.088902,-6.190291 + 22743: -16.932652,-6.221541 + 22744: -17.323277,-3.846541 + 22745: -17.323277,-3.768416 + 22746: -17.323277,-3.659041 + 22747: -17.292027,-3.643416 + 22748: -17.167027,-3.596541 + 22749: -17.057652,-3.580916 + 22750: -15.9795265,-3.612166 + 22751: -15.8701515,-3.612166 + 22752: -15.8076515,-3.612166 + 22753: -15.7607765,-3.659041 + 22754: -15.7451515,-3.752791 + 22755: -15.7451515,-3.877791 + 22756: -15.7139015,-5.768416 + 22757: -15.7139015,-5.940291 + 22761: -15.7920265,-6.205916 + 22762: -15.9014015,-6.252791 + 22763: -16.120152,-6.268416 + 22765: -16.713902,-6.205916 + 22766: -16.510777,-6.205916 + 22767: -16.401402,-6.221541 + 22768: -16.838902,-3.643416 + 22769: -16.604527,-3.627791 + 22770: -16.448277,-3.596541 + 22771: -16.245152,-3.596541 + 22772: -16.182652,-3.643416 + 32293: 41.412865,-23.337303 + 32294: 41.357307,-23.399803 + 32295: 41.426754,-22.955359 + 32296: 41.510086,-23.233135 + 32297: 41.260086,-23.337303 + 32298: 41.378143,-23.156746 + 32299: 41.294807,-23.198414 + 32300: 41.246197,-23.267859 + 32301: 41.57953,-23.37897 + 32302: 41.95453,-23.358135 + 32303: 42.010086,-23.392859 + 32304: 41.482307,-23.260914 + 32305: 41.037865,-23.323414 + 32306: 38.451584,-23.212303 + 32307: 38.437695,-23.05258 + 32308: 38.56964,-23.031746 + 32309: 38.451584,-23.330359 + 32310: 38.187695,-23.24008 + 32311: 37.979362,-23.372025 + 32312: 37.923805,-22.97619 + 32313: 38.00714,-22.858135 + 32314: 37.923805,-23.122025 + 32315: 38.187695,-23.10119 + 32316: 38.111305,-22.712303 + 32317: 38.30575,-23.03869 + 32318: 38.576584,-23.149803 + 32319: 38.597416,-23.37897 + - node: + color: '#FFFFFF50' + id: smallbrush + decals: + 22516: 15.754263,-3.686902 + 22517: 16.004263,-3.671277 + 22518: 15.785513,-3.827527 + 22519: 15.769888,-4.030652 + 22520: 16.176138,-3.640027 + 22521: 16.410513,-3.640027 + 22522: 16.691763,-3.640027 + 22523: 17.082388,-3.655652 + 22524: 17.285513,-3.718152 + 22525: 17.441763,-3.827527 + 22526: 17.379263,-3.718152 + 22527: 17.379263,-3.686902 + 22528: 17.269888,-3.608777 + 22529: 17.051138,-3.608777 + 22530: 16.691763,-3.608777 + 22531: 16.879263,-3.593152 + 22532: 17.426138,-4.030652 + 22537: 15.707388,-6.046277 + 22538: 15.707388,-6.108777 + 22539: 15.769888,-6.186902 + 22540: 15.754263,-6.249402 + 22541: 15.973013,-6.202527 + 22542: 16.285513,-6.202527 + 22543: 16.019888,-6.202527 + 22544: 15.801138,-5.874402 + 22545: 15.801138,-5.671277 + 22546: 15.848013,-5.405652 + 22547: 15.910513,-5.921277 + 22548: 16.176138,-5.983777 + 22549: 16.394888,-6.202527 + 22550: 16.551138,-6.202527 + 22551: 16.816763,-6.233777 + 22552: 17.035513,-6.233777 + 22553: 17.269888,-6.233777 + 22554: 17.316763,-6.218152 + 22555: 17.348013,-6.155652 + 22556: 17.363638,-6.061902 + 22557: 17.394888,-5.905652 + 22558: 17.238638,-6.077527 + 22559: 17.019888,-6.140027 + 22560: 17.394888,-5.686902 + 22561: 17.394888,-5.577527 + 22562: 17.410513,-5.468152 + 22563: 17.394888,-5.358777 + 22564: 17.379263,-5.124402 + 22565: 17.379263,-4.952527 + 22566: 17.379263,-4.733777 + 22567: 17.379263,-4.546277 + 22568: 17.332388,-4.343152 + 22569: 17.254263,-4.202527 + 22570: 17.160513,-4.061902 + 22571: 17.051138,-3.952527 + 22572: 17.144888,-3.874402 + 22573: 17.394888,-4.171277 + 22574: 17.410513,-4.265027 + 22575: 15.832388,-3.983777 + 22576: 15.785513,-4.249402 + 22577: 15.785513,-4.405652 + 22578: 15.988638,-3.905652 + 22579: 16.191763,-3.796277 + 22580: 16.285513,-3.796277 + 22581: 16.598013,-3.780652 + 22582: 16.879263,-3.843152 + 22583: 15.785513,-4.530652 + 22584: 15.785513,-4.827527 + 22586: 15.785513,-5.296277 + 22587: 15.879263,-5.468152 + 22588: 15.973013,-5.686902 + 22589: 16.098013,-5.811902 + 22607: 15.769888,-5.093152 + 22608: 15.769888,-4.983777 + 22609: 15.785513,-5.218152 + 22610: 15.832388,-5.624402 + 22632: -17.327415,-14.009088 + 22633: -17.358665,-14.180963 + 22634: -17.358665,-14.352838 + 22635: -17.28054,-14.415338 + 22636: -17.18679,-14.415338 + 22637: -16.858665,-14.446588 + 22638: -17.06179,-14.446588 + 22639: -17.358665,-14.337213 + 22640: -17.421165,-13.977838 + 22641: -17.37429,-13.759088 + 22642: -17.37429,-13.415338 + 22643: -17.37429,-13.212213 + 22644: -17.358665,-11.915338 + 22645: -17.389915,-11.837213 + 22646: -17.358665,-11.759088 + 22647: -17.31179,-11.712213 + 22648: -17.15554,-11.696588 + 22649: -16.99929,-11.696588 + 22650: -15.9367895,-11.743463 + 22651: -15.8430395,-11.727838 + 22652: -15.7961645,-11.727838 + 22656: -15.7180395,-14.196588 + 22657: -15.7180395,-14.259088 + 22658: -15.7805395,-14.337213 + 22659: -15.8742895,-14.352838 + 22660: -16.014915,-14.352838 + 22661: -15.7649145,-14.368463 + 22662: -16.077415,-14.352838 + 22663: -16.296165,-14.352838 + 22664: -16.546165,-14.368463 + 22665: -16.87429,-14.352838 + 22666: -15.7649145,-14.118463 + 22667: -15.7649145,-13.946588 + 22668: -15.7649145,-12.180963 + 22669: -15.7805395,-12.462213 + 22670: -15.8117895,-12.712213 + 22671: -17.296165,-12.102838 + 22672: -17.327415,-12.274713 + 22673: -17.389915,-12.493463 + 22674: -17.43679,-12.759088 + 22675: -17.40554,-12.977838 + 22676: -17.421165,-13.305963 + 22677: -17.43679,-13.618463 + 22678: -17.358665,-13.977838 + 22679: -17.18679,-14.212213 + 22680: -17.264915,-13.930963 + 22681: -17.046165,-14.134088 + 22682: -16.796165,-14.259088 + 22683: -16.09304,-14.087213 + 22684: -15.9836645,-14.024713 + 22685: -15.9367895,-13.899713 + 22686: -15.8430395,-13.680963 + 22687: -15.8117895,-13.462213 + 22688: -15.7961645,-13.165338 + 22689: -15.7180395,-12.915338 + 22690: -16.014915,-11.868463 + 22691: -16.108665,-11.821588 + 22692: -15.9836645,-12.071588 + 22693: -15.9211645,-12.134088 + 22694: -16.21804,-11.727838 + 22695: -16.43679,-11.743463 + 22696: -16.702415,-11.743463 + 22697: -16.93679,-11.743463 + 22698: -17.06179,-11.868463 + 22699: -17.202415,-12.040338 + - node: + color: '#FFFFFF5D' + id: smallbrush + decals: + 23036: -7.234084,21.387035 + 23037: -6.734084,21.27766 + 23038: -6.249709,21.34016 + 23039: -6.077834,21.34016 + 23040: -6.655959,21.43391 + 23041: -6.077834,21.355785 + 23042: -5.671584,21.355785 + 23043: -5.468459,21.480785 + 23044: -5.405959,21.71516 + 23045: -5.390334,21.99641 + 23046: -5.218459,22.293285 + 23047: -4.937209,22.387035 + 23048: -5.062209,22.262035 + 23049: -4.687209,22.355785 + 23053: -4.359084,23.418285 + 23054: -4.249709,23.71516 + 23055: -4.140334,23.855785 + 23056: -4.140334,23.949535 + 23057: -4.093459,24.15266 + 23058: -3.9528344,24.27766 + 23059: -3.8278344,24.34016 + 23060: -3.7340844,24.40266 + 23061: -4.249709,24.418285 + 23062: -4.437209,24.37141 + 23063: -4.140334,24.355785 + 23064: -3.6559594,24.49641 + 23065: -3.4528344,24.512035 + 23066: -3.3590844,24.512035 + 23067: -3.5778344,24.40266 + 23068: -3.8122094,24.262035 + 23069: -4.843459,22.449535 + 23070: -5.062209,22.168285 + 23071: -5.234084,21.99641 + 23072: -5.187209,22.387035 + 23073: -5.374709,22.21516 + 23074: -4.874709,22.52766 + 23075: -5.218459,22.30891 + 23076: -5.312209,22.012035 + 23077: -4.640334,22.27766 + 23078: -5.015334,22.074535 + 23079: -5.265334,21.74641 + 25104: -2.4604654,-57.63298 + 25105: -2.425743,-57.639927 + 25106: -2.3701875,-57.667706 + 25107: -2.363243,-57.74409 + 25108: -2.2937987,-57.79965 + 25109: -2.175743,-57.778816 + 25110: -2.0368543,-57.80659 + 25111: -1.8424098,-57.653816 + 25112: -1.5993543,-57.77187 + 25113: -1.6410209,-57.75798 + 25114: -1.5507431,-57.626038 + 25115: -1.5854654,-57.716316 + 25116: -1.7729654,-57.855206 + 25117: -1.5924098,-57.688538 + 25118: -1.9535209,-57.86909 + 25119: -2.1965764,-57.86215 + 25120: -1.9743543,-58.001038 + - node: + color: '#FFFFFF60' + id: smallbrush + decals: + 22835: -5.3207283,-19.767242 + 22836: -5.3051033,-20.001617 + 22837: -5.2582283,-20.095367 + 22838: -5.1176033,-20.251617 + 22839: -4.9301033,-20.345367 + 22840: -4.6957283,-20.360992 + 22841: -5.2426033,-19.673492 + 22842: -5.0551033,-19.814117 + 22843: -4.9769783,-20.126617 + 22844: -4.7582283,-20.126617 + 22845: 6.8196936,-20.532867 + 22846: 6.6790686,-20.767242 + 22847: 6.6009436,-21.032867 + 22848: 6.7728186,-21.251617 + 22849: 7.1790686,-21.314117 + 22850: 7.3196936,-21.314117 + 22851: 6.8665686,-20.579742 + 22852: 7.2571936,-20.564117 + 22853: 7.3665686,-20.767242 + 22854: 7.3821936,-21.079742 + 22855: 6.6790686,-21.261576 + 22856: 6.5696936,-21.230326 + 22857: -5.443637,-19.603073 + 22858: 4.0219746,24.007544 + 22859: 3.9282246,24.148169 + 22860: 3.8813496,23.726294 + 22869: 4.0688496,22.632544 + 22870: 4.4907246,22.163794 + 22871: 4.1938496,22.835669 + 22872: 4.4125996,22.366919 + 32656: -53.29262,43.333828 + 32657: -53.158363,43.338455 + 32658: -53.047253,43.384754 + 32659: -53.033363,43.28753 + 32660: -52.764843,43.338455 + 32661: -52.7741,43.343086 + 32662: -52.862064,43.218086 + 32663: -52.713917,43.30142 + 32664: -52.83429,43.18105 + 32665: -52.82966,43.03753 + 32666: -52.903732,42.894012 + 32667: -53.08429,43.144012 + 32668: -53.014843,43.29679 + 32669: -52.92688,43.375492 + 32670: -52.91299,43.42642 + 32671: -53.2741,41.694942 + 32672: -53.232437,41.75513 + 32673: -53.158363,41.931057 + 32674: -53.130585,41.70883 + 32675: -53.028732,41.681057 + 32676: -52.991695,41.815315 + 32677: -52.977806,42.00513 + 32678: -52.6954,41.671795 + 32679: -52.82966,41.8755 + 32680: -52.755585,41.787537 + 32681: -52.84818,42.231983 + 32682: -52.825027,42.282906 + - node: + color: '#FFFFFF66' + id: smallbrush + decals: + 23411: 15.914017,5.9903407 + 23412: 16.023392,6.0684657 + 23413: 16.148392,6.1153407 + 23414: 16.335892,6.0997157 + 23415: 16.539017,5.9590907 + 23416: 16.554642,6.0528407 + 23417: 16.601517,6.0372157 + 23418: 16.523392,5.6934657 + 23419: 16.617142,5.5840907 + 23420: 16.726517,5.5059657 + 23421: 17.085892,5.3809657 + 23422: 17.289017,5.3340907 + 23423: 17.117142,5.4278407 + 23424: 17.148392,5.2090907 + 23425: 17.335892,4.2403407 + 23426: 17.351517,4.1465907 + 23427: 17.367142,4.0840907 + 23428: 17.367142,3.9278407 + 23429: 17.320267,3.8653407 + 23430: 17.085892,3.8028407 + 23431: 17.242142,3.7403407 + 23432: 17.007767,3.7403407 + 23433: 17.398392,4.1153407 + 23434: 17.414017,4.0372157 + 23435: 17.398392,3.8809657 + 23436: 16.710892,3.7872157 + 23437: 16.914017,3.8809657 + 23438: 17.132767,4.1309657 + 23439: 17.210892,4.3340907 + 23440: 17.148392,4.9122157 + 23441: 17.101517,5.1465907 + 23442: 16.835892,5.4278407 + 23443: 15.742142,4.1622157 + 23444: 15.773392,4.0528407 + 23445: 15.851517,3.8809657 + 23446: 16.070267,3.7403407 + 23447: 16.117142,3.8340907 + 23448: 16.476517,3.7715907 + 23449: 16.257767,3.8497157 + 23450: 16.054642,4.0215907 + 23451: 15.820267,5.6465907 + 23452: 15.789017,5.5528407 + 23453: 15.789017,5.4590907 + 23454: 15.804642,5.5372157 + 23455: 16.007767,5.8340907 + 23456: 16.242142,5.8497157 + 23457: 16.367142,5.7403407 + 23458: 16.273392,6.0059657 + 23459: 16.539017,6.0684657 + 23460: 16.570267,6.0528407 + 23461: 16.007767,5.6622157 + 23462: 16.085892,5.5840907 + 23463: 16.007767,5.3965907 + 23464: 16.351517,5.6622157 + 23541: -17.356665,4.575368 + 23542: -17.30979,4.731618 + 23543: -17.34104,4.559743 + 23544: -17.34104,4.481618 + 23545: -17.325415,4.325368 + 23546: -17.106665,4.778493 + 23547: -17.106665,4.559743 + 23548: -17.09104,4.403493 + 23549: -16.93479,4.825368 + 23550: -16.93479,4.637868 + 23551: -16.84104,4.465993 + 23552: -16.74729,4.762868 + 23553: -16.68479,4.606618 + 23554: -16.575415,4.528493 + 23555: -16.575415,4.903493 + 23556: -16.49729,4.762868 + 23557: -16.43479,4.684743 + 23558: -16.34104,4.950368 + 23559: -16.262915,4.856618 + 23560: -16.200415,4.794118 + 23561: -16.34104,5.262868 + 23562: -16.27854,5.137868 + 23563: -16.18479,5.075368 + 23564: -16.15354,5.372243 + 23565: -16.05979,5.169118 + 23566: -15.96604,5.090993 + 23567: -15.887915,4.981618 + 23568: -15.87229,5.372243 + 23569: -15.794165,5.247243 + 23570: -15.71604,5.137868 + 23571: -15.71604,5.325368 + 23572: -15.794165,5.294118 + 23573: -15.99729,5.294118 + 23574: -16.137915,5.137868 + 23575: -16.294165,4.903493 + 23576: -16.481665,4.669118 + 23577: -16.856665,4.465993 + 23578: -17.24729,4.465993 + 23579: -17.24729,4.200368 + 23580: -16.919165,4.200368 + 23581: -16.606665,4.372243 + - node: + color: '#FFFFFF6C' + id: smallbrush + decals: + 22898: 2.6469746,21.632544 + 22899: 2.6313496,21.835669 + 22900: 2.9282246,21.616919 + 22901: 3.1469746,21.616919 + - node: + color: '#FFFFFF76' + id: smallbrush + decals: + 23300: 6.43167,24.347275 + 23301: 6.43167,24.208385 + 23302: 6.4177814,23.944496 + 23303: 6.3275037,23.708385 + 23304: 5.7163925,24.381996 + 23305: 5.7719483,24.16672 + 23306: 5.876115,23.972275 + - node: + color: '#FFFFFF7F' + id: smallbrush + decals: + 23615: -16.056736,12.779531 + 23616: -16.166111,12.592031 + 23617: -16.353611,12.388906 + 23618: -16.666111,12.404531 + 23619: -16.822361,12.545156 + 23620: -17.025486,12.763906 + 23621: -17.119236,12.935781 + 23622: -17.150486,13.232656 + 23623: -17.056736,13.420156 + 23624: -16.916111,13.529531 + 23625: -16.728611,13.623281 + 23626: -16.541111,13.701406 + 23627: -16.212986,13.670156 + 23628: -16.119236,13.545156 + 23629: -15.994235,13.326406 + 23630: -15.931735,13.076406 + 25050: 51.707203,-3.3105416 + 25051: 51.707203,-3.3522081 + 25052: 51.825256,-3.3244305 + 25053: 51.901646,-3.2341528 + 25054: 51.92248,-3.393875 + 25055: 51.998867,-3.4772081 + 25056: 52.082203,-3.3660972 + 25057: 52.096092,-3.1091528 + 25058: 52.123867,-2.8730416 + 25059: 52.214146,-3.2341528 + 25060: 52.221092,-3.4285972 + 25061: 52.228035,-3.3522081 + 25062: 51.866924,-2.9910972 + - node: + color: '#FFFFFFB1' + id: smallbrush + decals: + 31818: -61.94809,28.868546 + 31819: -61.864758,28.792156 + 31820: -61.82309,29.007433 + 31821: -61.816147,29.153267 + 31822: -63.2467,29.069933 + 31823: -63.205036,29.12549 + 31824: -63.128647,29.2991 + 31825: -62.739758,29.2366 + 31826: -62.864758,29.368546 + - node: + color: '#FFFFFFFF' + id: smallbrush + decals: + 23383: 17.367142,5.3965907 + 23384: 17.367142,5.1934657 + 23385: 17.367142,4.9434657 + 23386: 17.367142,4.8497157 + 23387: 17.351517,4.4903407 + 23388: 17.351517,4.3653407 + 23389: 17.367142,4.6465907 + 23390: 17.398392,3.6465907 + 23391: 17.273392,3.6153407 + 23392: 17.148392,3.6153407 + 23393: 17.007767,3.6153407 + 23394: 16.867142,3.6153407 + 23395: 16.648392,3.6153407 + 23396: 16.492142,3.6153407 + 23397: 16.210892,3.5997157 + 23398: 15.914017,3.6309657 + 23399: 15.835892,3.6309657 + 23400: 15.773392,3.6309657 + 23401: 15.726517,3.7090907 + 23402: 15.742142,3.8653407 + 23403: 15.726517,6.2403407 + 23404: 15.882767,6.2872157 + 23405: 16.039017,6.2715907 + 23406: 16.226517,6.2403407 + 23407: 16.398392,6.2403407 + 23408: 15.789017,5.9903407 + 23409: 15.789017,5.8809657 + 23410: 15.804642,5.7715907 + 23530: -16.43479,5.340993 + 23531: -16.12229,5.450368 + 23532: -16.40354,5.137868 + 23533: -16.544165,4.950368 + 23534: -16.27854,5.372243 + 23535: -15.93479,5.481618 + 23536: -15.762915,6.231618 + 23537: -15.74729,6.059743 + 23538: -15.74729,5.856618 + 23539: -15.71604,5.669118 + 23540: -15.71604,5.512868 + 23887: 21.352352,2.3838809 + 23888: 21.289852,2.3682559 + 23889: 21.242977,2.1651309 + 23890: 21.227352,1.9307559 + 23891: 21.524227,2.2745059 + 23892: 21.649227,2.3838809 + 23893: 21.899227,2.3995059 + 23894: 22.352352,2.3838809 + 23895: 21.914852,2.3370059 + 23896: 22.242977,2.3526309 + 23897: 22.977352,2.3526309 + 23898: 23.430477,2.3213809 + 23899: 22.508602,2.3838809 + 23900: 22.836727,2.3838809 + 23901: 23.180477,2.3526309 + 23902: 23.274227,2.3838809 + 23903: 23.664852,2.3838809 + 23904: 22.227352,2.2745059 + 23905: 21.727352,2.2120059 + 23906: 21.524227,2.1338809 + 23907: 21.258602,1.9932559 + 24075: -27.491148,-2.9994144 + 24076: -27.505037,-2.7841365 + 24077: -24.507137,-3.214692 + 24078: -24.396027,-3.0480254 + 24079: -24.722416,-3.2216365 + 24796: -68.35566,-2.383916 + 24797: -60.656292,-2.370027 + 25097: -2.391021,-57.653816 + 25098: -2.266021,-57.68159 + 25099: -2.175743,-57.66076 + 25100: -1.9326875,-57.61215 + 25101: -1.7868543,-57.653816 + 25102: -1.7451875,-57.730206 + 25103: -1.6479654,-57.639927 + 29770: -0.34010732,6.5591373 + 29771: 0.3196149,6.6216373 + 29772: 0.35433722,6.461915 - node: cleanable: True color: '#FFFFFF6C' @@ -26775,6 +32481,29 @@ entities: decals: 1825: 87,-16 1826: 87,-16 + - node: + cleanable: True + color: '#001C475A' + id: splatter + decals: + 22217: 4.775727,64.27801 + 22218: 4.431977,64.46551 + 22219: 4.89031,64.59051 + 22220: 5.213227,64.59051 + 22221: 3.8706026,64.60974 + - node: + cleanable: True + color: '#289F502B' + id: splatter + decals: + 33083: -69.372345,41.749886 + 33084: -69.54422,41.42176 + - node: + cleanable: True + color: '#289F504D' + id: splatter + decals: + 33082: -69.341095,41.968636 - node: cleanable: True color: '#37160041' @@ -26796,78 +32525,33 @@ entities: 1420: -22.97315,35.893066 - node: cleanable: True - color: '#411C008F' + color: '#3E261528' id: splatter decals: - 7441: -16.627531,-70.52522 - 7442: -16.440031,-70.33772 - 7443: -16.361906,-69.72835 - 7444: -16.158781,-69.58772 - 7445: -16.549406,-70.0096 - 7446: -16.533781,-70.49397 - 7447: -16.471281,-71.0096 - 7448: -16.768156,-71.6346 - 7449: -16.533781,-72.0096 - 7450: -15.971281,-72.1971 - 7451: -15.830656,-72.5096 - 7452: -15.330656,-72.58772 - 7453: -14.627531,-72.35335 - 7454: -14.049406,-69.68147 - 7455: -13.986906,-70.05647 - 7456: -13.861906,-70.5721 - 7457: -13.674406,-70.93147 - 7458: -13.408781,-71.35335 - 7459: -13.518156,-72.02522 - 7460: -13.877531,-70.61897 - 7461: -14.049406,-69.52522 - 7462: -13.830656,-70.02522 - 7463: -13.424406,-70.58772 - 7464: -13.549406,-71.08772 - 7465: -13.908781,-72.11897 - 7466: -14.205656,-72.36897 - 7467: -14.752531,-72.5721 - 7468: -14.143156,-72.47835 - 7469: -13.674406,-72.16585 - 7470: -13.830656,-71.60335 - 7471: -13.768156,-71.58772 - 7472: -13.721281,-71.96272 - 7473: -13.455656,-72.4471 - 7474: -16.346281,-71.55647 - 7475: -16.408781,-71.22835 - 7476: -16.908781,-71.16585 - 7477: -16.486906,-71.85335 - 7478: -16.111906,-72.40022 + 22129: -69.44418,48.43132 + 22130: -69.133995,48.519283 + 22131: -69.39326,48.324837 + 22132: -69.52752,48.0841 + 22133: -69.423485,45.476643 + 22134: -69.59478,45.59701 + 22135: -69.72441,45.967384 + 22136: -69.47904,45.564606 + 22137: -69.25682,45.370163 + 22138: -69.06238,45.37942 + 22139: -69.56238,45.305347 + 22140: -69.62719,45.490532 + 22141: -69.766075,45.79146 + 22142: -69.98141,39.296585 + 22143: -69.884186,39.4864 + 22144: -69.60641,39.36603 + 22145: -70.36566,39.50955 - node: cleanable: True - color: '#411C00FF' + color: '#3E722844' id: splatter decals: - 7415: -16.299406,-69.55647 - 7416: -16.674406,-69.77522 - 7417: -16.752531,-70.29085 - 7418: -13.815031,-69.77522 - 7419: -13.424406,-70.08772 - 7420: -13.471281,-70.85335 - 7421: -13.502531,-71.46272 - 7422: -13.627531,-69.60335 - 7423: -13.643156,-69.6346 - 7424: -13.533781,-70.24397 - 7425: -13.471281,-70.71272 - 7426: -16.533781,-72.16585 - 7427: -16.158781,-72.5721 - 7428: -15.658781,-72.54085 - 7429: -15.205656,-72.54085 - 7430: -14.440031,-72.72835 - 7431: -13.674406,-72.3221 - 7432: -13.408781,-72.11897 - 7433: -13.299406,-72.47835 - 7434: -13.924406,-72.47835 - 7435: -13.971281,-72.58772 - 7436: -14.377531,-72.60335 - 7437: -15.080656,-72.58772 - 7438: -16.205656,-72.68147 - 7439: -16.346281,-72.27522 - 7440: -16.627531,-71.7596 + 22013: -64.792145,45.40985 + 22014: -65.05604,45.64596 - node: cleanable: True color: '#41391B56' @@ -27347,6 +33031,27 @@ entities: id: splatter decals: 4200: -55.168823,30.590828 + - node: + cleanable: True + color: '#765C0F15' + id: splatter + decals: + 22226: 10.127386,62.404694 + 22227: 9.863498,62.34914 + 22228: 9.849608,62.63386 + 22229: 10.071831,62.619972 + 22230: 10.342664,62.731083 + 22231: 10.189886,62.59914 + 22232: 9.592664,62.231083 + 22233: 9.057942,62.140804 + 22234: 9.391275,62.53664 + 22235: 9.64822,62.58525 + 22236: 10.099043,62.558815 + 22237: 10.210155,62.558815 + 22238: 9.812006,62.531036 + 22239: 10.619062,62.44154 + 22240: 10.739432,62.44154 + 22241: 10.494062,62.418392 - node: color: '#7A8B6AFF' id: splatter @@ -27618,6 +33323,80 @@ entities: 19523: -18.060596,-82.52903 19524: -18.044971,-81.90403 19525: -18.013721,-82.37278 + - node: + color: '#FFFFFF09' + id: splatter + decals: + 34182: -32.140034,34.20548 + 34183: -32.098366,34.83048 + 34184: -33.968735,34.54344 + 34185: -33.945587,33.997143 + - node: + color: '#FFFFFF0C' + id: splatter + decals: + 27194: -11.452228,-1.6756625 + - node: + color: '#FFFFFF12' + id: splatter + decals: + 23677: -16.728611,14.138906 + 23678: -16.478611,14.185781 + 23679: -16.056736,13.857656 + 23680: -16.025486,13.420156 + 23681: -15.97861,12.388906 + 23682: -16.166111,12.154531 + 23683: -16.556736,12.092031 + 23684: -16.978611,12.154531 + 23685: -16.978611,12.654531 + 23686: -17.103611,13.232656 + 23687: -17.150486,12.592031 + 23688: -16.712986,12.310781 + 23689: -16.275486,12.170156 + 33868: -32.50807,34.36897 + 33869: -32.424736,34.43841 + 33870: -33.098347,34.348133 + 33871: -33.19557,34.21619 + 33872: -33.237236,34.16758 + 33873: -33.112236,34.11897 + 33874: -33.00807,34.049522 + 33875: -33.299736,34.04258 + 33876: -33.105293,34.29258 + 33877: -33.45946,34.37591 + 33878: -33.626125,34.459248 + 33879: -33.202515,34.4523 + 33880: -33.487236,34.674522 + 33881: -32.952515,34.59119 + 33882: -32.77196,34.487022 + 33883: -32.702515,34.299522 + 33884: -32.438625,34.35508 + 33885: -32.44557,34.52869 + 33886: -33.660847,34.38286 + 33887: -33.466404,34.299522 + 33888: -33.473347,34.160633 + 33889: -33.515015,34.46619 + 33890: -33.244183,34.7023 + 33891: -33.549736,34.56341 + 33892: -33.688625,34.584248 + 33893: -32.640015,34.68147 + 33894: -32.306683,34.5773 + 33895: -32.327515,34.34119 + 33969: -32.51416,35.01755 + 33970: -32.37064,34.92033 + 33971: -32.85212,34.749035 + 33972: -33.25027,35.05459 + 33973: -33.50953,35.022182 + 33974: -33.50027,34.864777 + 33975: -32.222492,34.897182 + 33976: -32.190083,34.57311 + 33977: -32.35675,34.17473 + - node: + color: '#FFFFFF14' + id: splatter + decals: + 33522: -103.53615,52.788746 + 33523: -103.76532,52.924164 + 33524: -103.82782,53.02833 - node: angle: -1.5707963267948966 rad color: '#FFFFFF18' @@ -27646,6 +33425,96 @@ entities: 19709: -13.937003,-85.48109 19710: -13.421378,-85.18421 19711: -13.843253,-85.29359 + - node: + color: '#FFFFFF19' + id: splatter + decals: + 34178: -33.03355,33.8155 + 34179: -33.348366,33.965984 + 34180: -32.714108,34.053947 + 34181: -33.862255,34.904552 + - node: + color: '#FFFFFF22' + id: splatter + decals: + 23786: 20.3927,-2.1217031 + 23787: 20.6427,-2.0592031 + 23788: 21.0802,-2.0279531 + 23789: 23.783325,-2.0279531 + 23790: 23.2677,-2.1373281 + 23791: 23.2677,-2.0435781 + 23792: 23.658325,-2.0904531 + 23793: 23.92395,-2.1998281 + 23794: 24.158325,-1.8873283 + 23795: 24.8302,-2.0592031 + 23796: 24.98645,-2.1217031 + 23797: 25.8927,-2.0279531 + 23798: 25.54895,-2.0748281 + 23799: 25.0802,-2.1217031 + 23800: 20.79895,-2.2935781 + 23801: 20.252075,-2.1060781 + - node: + color: '#FFFFFF25' + id: splatter + decals: + 33705: -103.842384,43.99529 + 33706: -103.502106,44.09251 + 33707: -103.641,44.3564 + 33708: -103.717384,44.550842 + 33709: -103.79378,44.82862 + 33710: -103.59933,44.62029 + 33711: -103.33544,44.43279 + 33712: -103.23822,44.786953 + 33713: -103.33544,45.03001 + 33714: -103.35628,45.18973 + 33715: -103.17572,44.95362 + 33716: -103.74516,44.224453 + 33717: -103.891,44.224453 + 33718: -103.127106,45.148064 + 33719: -103.134056,45.43279 + 33720: -102.946556,45.4814 + 33721: -102.939606,45.15501 + 33722: -103.96044,47.45362 + 33723: -103.946556,47.113342 + 33724: -104.016,46.75223 + 33725: -104.02294,46.46751 + 33726: -104.016,46.25223 + 33727: -103.814606,46.56473 + 33728: -103.66183,47.26612 + 33729: -103.55766,47.51612 + 33730: -103.467384,47.07168 + 33731: -103.46044,46.710564 + 33732: -103.4535,46.43973 + 33733: -103.27294,46.87723 + 33734: -103.141,47.411953 + 33735: -103.08544,47.62723 + 33736: -103.071556,47.2939 + 33737: -103.05766,47.085564 + - node: + color: '#FFFFFF28' + id: splatter + decals: + 25362: -76.01919,9.00684 + 33197: -103.74894,62.13482 + 33198: -103.40519,62.47857 + 33199: -103.59269,62.895237 + 33200: -103.54061,63.75982 + 33201: -103.613525,63.44732 + 33202: -103.69686,63.32232 + 33203: -103.88436,63.645233 + 33204: -103.88436,63.895233 + 33205: -103.88436,60.155655 + 33206: -103.84269,60.00982 + 33207: -103.46769,60.395237 + 33208: -103.207275,60.16607 + 33209: -103.176025,60.155655 + 33210: -103.22811,60.895237 + 33211: -103.551025,61.13482 + 33212: -103.738525,61.13482 + 33213: -103.582275,61.436905 + 33214: -103.238525,61.780655 + 33215: -103.16561,61.238987 + 33216: -103.18644,60.82232 - node: cleanable: True color: '#FFFFFF2B' @@ -27653,6 +33522,269 @@ entities: decals: 4214: -53.801136,34.245995 4215: -54.00426,34.60537 + - node: + color: '#FFFFFF2E' + id: splatter + decals: + 22902: 2.9438496,21.976294 + 23466: 16.835892,5.4747157 + 23467: 17.007767,4.9122157 + 23468: 17.039017,4.6309657 + 23469: 17.085892,4.3028407 + 23470: 16.867142,3.9747157 + 23471: 16.460892,3.9122157 + 23472: 15.976517,4.3184657 + 23473: 16.132767,4.1465907 + 23474: 16.351517,4.0059657 + 23475: 16.039017,4.3028407 + 23476: 16.851517,4.6934657 + 23477: 16.710892,5.3809657 + 25121: -2.238243,-57.77187 + 25122: -2.050743,-57.73715 + 25123: -1.8562987,-57.78576 + 25124: -1.9535209,-57.938538 + 25125: -1.6826875,-57.74409 + - node: + color: '#FFFFFF31' + id: splatter + decals: + 24959: -62.20631,-2.0521438 + 24960: -62.463253,-2.1563106 + 24961: -64.52576,-2.0590882 + 24962: -64.303535,-2.1146438 + 24963: -63.602142,-2.1563106 + 24964: -66.70227,-2.072977 + 24965: -65.43838,-2.1007547 + 33186: -103.37394,60.249405 + 33187: -103.88436,60.093155 + - node: + color: '#FFFFFF33' + id: splatter + decals: + 23943: 20.727352,2.1651309 + 23944: 20.727352,2.0557559 + 23945: 21.274227,1.9776309 + 23946: 21.742977,2.0088809 + 23947: 22.102352,2.0713809 + 23948: 22.446102,2.1651309 + 23949: 22.883602,2.2276309 + 23950: 23.492977,2.2120059 + 23951: 24.196102,2.2120059 + 24023: 27.207476,1.9776309 + 24024: 26.894976,2.0088809 + 24025: 26.6606,2.0401309 + 24026: 26.582476,1.8995059 + 24027: 27.269976,2.2745059 + - node: + color: '#FFFFFF34' + id: splatter + decals: + 23643: -17.072361,13.623281 + 23644: -16.634861,13.842031 + 23645: -16.259861,13.638906 + 23646: -16.150486,12.748281 + 23647: -16.212986,12.435781 + 23648: -16.556736,12.232656 + 23649: -16.900486,12.342031 + 23650: -16.197361,12.607656 + 23651: -16.103611,12.998281 + 23652: -16.041111,13.373281 + 23653: -16.181736,13.545156 + 23654: -16.134861,12.748281 + 23655: -16.087986,12.404531 + 23665: -16.837986,14.076406 + 23666: -17.119236,13.826406 + 23667: -16.791111,13.560781 + 23668: -16.619236,13.763906 + 23669: -17.166111,14.232656 + 23670: -17.181736,13.670156 + 23671: -16.994236,13.342031 + 23672: -16.900486,13.029531 + 23673: -16.650486,14.013906 + 23674: -16.541111,13.826406 + 23675: -16.228611,13.810781 + 23676: -16.228611,14.185781 + - node: + color: '#FFFFFF3B' + id: splatter + decals: + 23351: 16.116112,13.955095 + 23352: 16.850487,14.00197 + 23353: 16.897362,13.50197 + 23354: 16.991112,12.90822 + 23355: 16.959862,12.31447 + 23356: 16.772362,12.142595 + 23357: 17.006737,12.31447 + 23358: 17.147362,12.84572 + 23359: 17.131737,13.28322 + 23360: 16.334862,13.50197 + 23361: 16.569237,13.12697 + 23362: 16.616112,12.736345 + 23363: 16.475487,12.455095 + 23364: 16.147362,12.142595 + 23365: 16.366112,12.861345 + 23590: -16.044165,4.825368 + 23591: -16.15354,4.544118 + 23592: -16.55979,4.262868 + 23593: -16.96604,4.169118 + 23594: -17.02854,4.137868 + - node: + color: '#FFFFFF41' + id: splatter + decals: + 33525: -103.76532,53.236664 + 33526: -103.85907,52.049164 + 33527: -103.57782,52.226246 + - node: + color: '#FFFFFF4A' + id: splatter + decals: + 22490: 17.146698,-12.028752 + 22491: 17.193573,-14.013127 + 22492: 16.240448,-14.169377 + 22493: 16.052948,-14.028752 + 22494: 16.302948,-12.122502 + 22495: 17.146698,-12.810002 + 22496: 17.318573,-13.200627 + 22497: 17.302948,-12.810002 + 22498: 17.177948,-12.606877 + 22499: 16.224823,-12.685002 + 22500: 16.177948,-12.263127 + 22501: 16.302948,-12.044377 + 22773: -17.010777,-3.940291 + 22774: -16.635777,-3.862166 + 22775: -16.120152,-3.815291 + 22776: -15.9951515,-5.549666 + 22777: -16.026402,-5.752791 + 22778: -16.229527,-5.955916 + 22779: -16.745152,-5.971541 + 22780: -17.042027,-5.924666 + - node: + color: '#FFFFFF50' + id: splatter + decals: + 22590: 16.879263,-3.780652 + 22591: 17.113638,-4.296277 + 22592: 17.051138,-3.968152 + 22593: 17.301138,-4.171277 + 22594: 17.301138,-4.577527 + 22595: 16.988638,-4.108777 + 22596: 16.269888,-3.843152 + 22597: 16.519888,-3.780652 + 22598: 16.019888,-4.093152 + 22599: 16.082388,-5.827527 + 22602: 16.160513,-5.827527 + 22603: 16.379263,-5.968152 + 22604: 16.066763,-5.218152 + 22605: 15.988638,-5.124402 + 22606: 16.035513,-5.030652 + 22611: 16.910513,-5.733777 + 22612: 17.004263,-5.905652 + 22613: 16.738638,-5.999402 + 22614: 17.144888,-5.108777 + 22615: 17.191763,-5.311902 + 22700: -17.202415,-14.227838 + 22701: -16.796165,-13.696588 + 22702: -17.15554,-13.399713 + 22703: -16.96804,-13.946588 + 22704: -16.671165,-14.227838 + 22705: -16.858665,-14.118463 + 22706: -16.858665,-14.071588 + 22707: -17.139915,-13.930963 + 22708: -16.40554,-14.134088 + 22709: -16.15554,-14.040338 + 22710: -15.9680395,-12.384088 + 22711: -15.9992895,-12.227838 + 22712: -16.139915,-12.071588 + 22713: -16.858665,-11.946588 + 22714: -17.077415,-12.321588 + 22715: -16.06179,-13.305963 + 22716: -16.077415,-13.665338 + - node: + color: '#FFFFFF60' + id: splatter + decals: + 22861: 4.0532246,23.945044 + 22862: 4.1938496,23.132544 + 22863: 5.1313496,21.757544 + 22864: 5.6000996,21.648169 + 22865: 6.0375996,21.413794 + 22866: 7.0063496,21.132544 + 22867: 7.2407246,21.085669 + 22868: 6.2407246,21.163794 + - node: + color: '#FFFFFF66' + id: splatter + decals: + 23465: 16.257767,5.6465907 + - node: + color: '#FFFFFF6C' + id: splatter + decals: + 33188: -103.38436,60.145237 + 33189: -103.894775,60.457737 + 33190: -103.457275,60.79107 + 33191: -103.332275,63.66607 + 33192: -103.32186,63.85357 + 33193: -103.56144,63.926483 + 33194: -103.051025,63.66607 + 33195: -103.019775,63.97857 + 33196: -103.519775,62.593155 + - node: + angle: 2.9321531433504737 rad + color: '#341F06FF' + id: thinline + decals: + 29934: 0.017763913,5.2380395 + - node: + cleanable: True + color: '#664F2E37' + id: thinline + decals: + 22080: -68.495804,47.75376 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF12' + id: thinline + decals: + 31657: 16.286486,11.653593 + 31658: 16.237873,11.681371 + 31659: 16.071207,11.69526 + 31660: 16.085096,11.653593 + 31661: 16.085096,11.69526 + 31662: 16.265652,11.709148 + 31663: 16.307318,11.646648 + 31664: 16.439262,11.646648 + 31665: 16.564262,11.716093 + 31666: 16.710096,11.688315 + 31667: 16.765652,11.639705 + 31668: 16.897596,11.660538 + 31669: 16.967041,11.716093 + 31670: 17.022596,11.681371 + 31671: 17.029541,11.674426 + 31672: 17.029541,11.716093 + 31673: 16.126762,11.750815 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF14' + id: thinline + decals: + 33445: -103.244484,51.678425 + 33446: -103.213234,51.751343 + 33447: -103.181984,51.793007 + 33448: -103.17157,51.834675 + 33449: -103.150734,51.907593 + 33450: -103.3799,51.668007 + 33451: -103.400734,51.688843 + 33452: -103.42157,51.740925 + 33453: -103.4424,51.751343 + 33454: -103.525734,51.699257 + 33455: -103.588234,51.720093 + 33456: -103.619484,51.824257 + 33457: -103.6924,51.709675 + 33458: -103.806984,51.668007 + 33459: -103.91115,51.668007 + 33460: -103.994484,51.709675 - node: cleanable: True color: '#FFFFFFFF' @@ -27846,7 +33978,8 @@ entities: -4,-4: 0: 61167 -5,-4: - 0: 830 + 0: 318 + 2: 512 -4,-3: 0: 65534 -5,-3: @@ -27858,7 +33991,8 @@ entities: -5,-1: 0: 61488 -4,-5: - 0: 60431 + 3: 1 + 0: 60430 -3,-4: 0: 127 1: 24576 @@ -28072,7 +34206,8 @@ entities: -7,-1: 0: 65295 -7,-5: - 0: 30477 + 0: 29453 + 2: 1024 -7,0: 0: 4095 -6,-4: @@ -28232,7 +34367,8 @@ entities: 7,-7: 0: 65521 7,-6: - 0: 48050 + 2: 16 + 0: 48034 7,-9: 0: 45499 8,-8: @@ -28312,7 +34448,8 @@ entities: -10,-4: 0: 48063 -10,-3: - 0: 47931 + 0: 45883 + 2: 2048 -10,-2: 0: 48058 -10,-1: @@ -28490,7 +34627,8 @@ entities: 1: 7 0: 30464 -6,-7: - 0: 65319 + 0: 65315 + 2: 4 -6,-6: 0: 56719 -5,-8: @@ -28510,7 +34648,7 @@ entities: 0: 65295 -8,8: 0: 4607 - 2: 60928 + 4: 60928 -7,5: 0: 48059 -7,6: @@ -28888,26 +35026,27 @@ entities: 0: 65395 -15,7: 0: 4223 - 3: 49152 + 5: 49152 -15,8: 0: 4401 - 3: 52428 + 5: 52428 -14,5: 0: 52701 -14,6: 0: 65480 -14,7: 0: 15 - 3: 28672 + 5: 28672 -14,8: - 3: 30583 + 5: 30583 0: 128 -13,8: 0: 65535 -8,-12: 0: 65520 -8,-11: - 0: 65535 + 0: 53247 + 2: 12288 -9,-12: 0: 61443 -9,-11: @@ -29376,7 +35515,8 @@ entities: -8,-17: 0: 65521 -8,-15: - 0: 61156 + 0: 28388 + 2: 32768 -7,-16: 0: 65520 -7,-14: @@ -29386,7 +35526,8 @@ entities: -7,-17: 0: 65524 -7,-15: - 0: 61006 + 0: 52302 + 3: 8704 -6,-16: 0: 48056 -6,-15: @@ -29521,7 +35662,8 @@ entities: -19,6: 0: 63255 -19,7: - 0: 52236 + 0: 34828 + 2: 17408 -19,8: 0: 56780 -18,5: @@ -29701,7 +35843,7 @@ entities: 0: 30583 -8,9: 0: 65297 - 2: 238 + 4: 238 -8,10: 0: 65375 -8,11: @@ -29770,7 +35912,8 @@ entities: 1: 34952 21,-13: 1: 52360 - 0: 3 + 3: 1 + 0: 2 22,-12: 1: 3919 22,-10: @@ -29866,7 +36009,8 @@ entities: 16,-2: 0: 65535 16,-1: - 0: 65535 + 0: 63487 + 2: 2048 13,1: 0: 64394 13,2: @@ -29963,15 +36107,18 @@ entities: 17,4: 1: 63934 18,1: - 0: 65535 + 0: 65503 + 2: 32 18,2: - 0: 30576 + 0: 14192 + 6: 16384 18,3: 1: 58096 18,4: 1: 8994 19,1: - 0: 65535 + 0: 65533 + 2: 2 19,2: 0: 255 1: 61440 @@ -30138,7 +36285,8 @@ entities: 5,-11: 0: 15295 5,-10: - 0: 63743 + 0: 63727 + 2: 16 5,-13: 0: 65535 6,-12: @@ -30462,10 +36610,10 @@ entities: 1: 61064 12,14: 1: 4606 - 2: 49152 + 4: 49152 12,15: 1: 4369 - 2: 52428 + 4: 52428 8,-16: 0: 65293 8,-17: @@ -31277,7 +37425,7 @@ entities: 1: 1928 4,17: 1: 12835 - 2: 2184 + 4: 2184 4,18: 1: 3918 -4,18: @@ -31363,7 +37511,8 @@ entities: 4,-19: 0: 57956 3,-19: - 0: 43808 + 0: 43776 + 2: 32 3,-18: 0: 3855 4,-18: @@ -31551,7 +37700,7 @@ entities: 1: 36067 8,17: 1: 4369 - 2: 3276 + 4: 3276 8,18: 1: 53023 7,18: @@ -31562,18 +37711,18 @@ entities: 1: 36655 9,17: 1: 8738 - 2: 2184 + 4: 2184 9,19: 1: 34 10,17: - 2: 273 + 4: 273 1: 17476 10,18: 1: 8015 10,19: 1: 68 11,17: - 2: 1911 + 4: 1911 11,18: 1: 16271 12,16: @@ -31587,21 +37736,21 @@ entities: 4,19: 1: 68 5,17: - 2: 273 + 4: 273 1: 17476 5,18: 1: 8015 5,19: 1: 68 6,17: - 2: 819 + 4: 819 1: 34952 6,18: 1: 16271 6,19: 1: 136 7,17: - 2: 1638 + 4: 1638 4,-24: 1: 3948 3,-24: @@ -31735,7 +37884,7 @@ entities: 13,18: 1: 814 13,15: - 2: 4369 + 4: 4369 1: 17484 14,16: 1: 62815 @@ -31753,7 +37902,7 @@ entities: 1: 36863 13,14: 1: 17532 - 2: 4096 + 4: 4096 14,13: 1: 20293 14,14: @@ -32738,6 +38887,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -32768,6 +38947,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.57087 + - 88.67137 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -32848,22 +39042,6 @@ entities: - type: ContainedSolution containerName: drink container: 3642 - - uid: 12153 - components: - - type: MetaData - - type: Transform - parent: 12152 - - type: Solution - solution: - maxVol: 1 - name: food - reagents: - - data: [] - ReagentId: Fiber - Quantity: 1 - - type: ContainedSolution - containerName: food - container: 12152 - uid: 12773 components: - type: MetaData @@ -33042,47 +39220,6 @@ entities: - type: ContainedSolution containerName: food container: 21467 - - uid: 53727 - components: - - type: MetaData - name: grid - - type: Transform - pos: -0.5,-0.4375 - parent: 1 - - type: MapGrid - chunks: - -5,1: - ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: [] - - type: GridAtmosphere - version: 2 - data: - chunkSize: 4 - - type: GasTileOverlay - - type: IFF - flags: HideLabel - - type: NavMap - uid: 53898 components: - type: MetaData @@ -35894,19 +42031,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -35934,14 +42071,30 @@ entities: data: tiles: 0,0: - 0: 20479 + 0: 1 + 1: 20478 -1,0: - 0: 52428 + 1: 52428 0,-1: - 0: 62464 + 1: 62464 -1,-1: - 0: 52224 + 1: 52224 uniqueMixes: + - volume: 2500 + temperature: 293.14984 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -36145,6 +42298,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 16195 + - uid: 17743 + components: + - type: Transform + parent: 29618 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 29618 - uid: 19915 components: - type: Transform @@ -36473,6 +42633,16 @@ entities: - type: DeviceList devices: - 48182 + - uid: 6966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-93.5 + parent: 2 + - type: DeviceList + devices: + - 45933 + - 3821 - uid: 7416 components: - type: Transform @@ -36486,6 +42656,16 @@ entities: - 45501 - 8133 - 8141 + - uid: 7514 + components: + - type: Transform + pos: -49.5,-84.5 + parent: 2 + - type: DeviceList + devices: + - 51529 + - 51532 + - 51531 - uid: 7657 components: - type: Transform @@ -36819,19 +42999,7 @@ entities: - 51615 - 23686 - 51613 - - uid: 23688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-74.5 - parent: 2 - - type: DeviceList - devices: - - 51602 - - 51610 - - 51683 - - 51682 - - 24239 + - 58153 - uid: 25000 components: - type: Transform @@ -38358,6 +44526,8 @@ entities: - 48183 - 48184 - 50437 + - 4460 + - 14797 - uid: 50566 components: - type: Transform @@ -39025,11 +45195,9 @@ entities: - 47492 - 47491 - 47486 - - 55454 - 55453 - 55449 - 46123 - - 55448 - 47490 - 47494 - 31706 @@ -40082,7 +46250,6 @@ entities: - 50979 - 22311 - 50980 - - 50988 - uid: 50982 components: - type: Transform @@ -40399,7 +46566,6 @@ entities: - type: DeviceList devices: - 50965 - - 50988 - 50980 - 22311 - 50979 @@ -40701,18 +46867,6 @@ entities: - 51428 - 51430 - 47170 - - uid: 51432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-20.5 - parent: 2 - - type: DeviceList - devices: - - 51433 - - 47169 - - 21670 - - 51431 - uid: 51438 components: - type: Transform @@ -40757,7 +46911,6 @@ entities: - 51441 - 51435 - 51461 - - 21670 - 51464 - 51459 - 51460 @@ -40862,41 +47015,6 @@ entities: - 47866 - 51509 - 57549 - - uid: 51530 - components: - - type: Transform - pos: -47.5,-85.5 - parent: 2 - - type: DeviceList - devices: - - 51529 - - 51532 - - 51531 - - uid: 51556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-72.5 - parent: 2 - - type: DeviceList - devices: - - 22270 - - 51527 - - 50242 - - 47823 - - 51543 - - 51555 - - uid: 51557 - components: - - type: Transform - pos: -47.5,-77.5 - parent: 2 - - type: DeviceList - devices: - - 51533 - - 51537 - - 51525 - - 51546 - uid: 51558 components: - type: Transform @@ -40905,12 +47023,6 @@ entities: parent: 2 - type: DeviceList devices: - - 51537 - - 51525 - - 22270 - - 51527 - - 51539 - - 22307 - 51565 - 51553 - uid: 51563 @@ -40920,11 +47032,19 @@ entities: parent: 2 - type: DeviceList devices: - - 51539 - - 22307 + - 51533 + - 51546 - 51543 - - 51554 + - 22270 - 51544 + - 51555 + - 50242 + - 47823 + - 16139 + - 1425 + - 11501 + - 16141 + - 15145 - uid: 51573 components: - type: Transform @@ -40959,54 +47079,8 @@ entities: devices: - 22312 - 43047 - - 51595 - 51593 - - uid: 51601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-77.5 - parent: 2 - - type: DeviceList - devices: - - 51600 - - 51595 - - 51596 - - 51602 - - uid: 51605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-80.5 - parent: 2 - - type: DeviceList - devices: - - 51606 - - 51596 - - uid: 51608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-85.5 - parent: 2 - - type: DeviceList - devices: - - 51684 - - 51590 - - 51609 - - 51607 - - uid: 51621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-88.5 - parent: 2 - - type: DeviceList - devices: - - 51613 - - 45933 - - 51622 - - 3518 + - 9090 - uid: 51640 components: - type: Transform @@ -41908,7 +47982,7 @@ entities: - type: Transform pos: -38.5,29.5 parent: 2 - - uid: 2618 + - uid: 405 components: - type: Transform pos: -40.5,29.5 @@ -42368,6 +48442,16 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-12.5 parent: 2 + - uid: 7117 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 - uid: 7581 components: - type: Transform @@ -42569,25 +48653,31 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,3.5 parent: 2 - - uid: 10630 + - uid: 2603 components: - type: Transform - pos: 1.5,-2.5 + rot: 1.5707963267948966 rad + pos: -7.5,1.5 parent: 2 - - uid: 10636 + - uid: 4187 components: - type: Transform - pos: 2.5,3.5 + pos: -10.5,1.5 parent: 2 - - uid: 10647 + - uid: 4198 components: - type: Transform - pos: -10.5,1.5 + pos: -10.5,-0.5 parent: 2 - - uid: 10648 + - uid: 10630 components: - type: Transform - pos: -10.5,-0.5 + pos: 1.5,-2.5 + parent: 2 + - uid: 10636 + components: + - type: Transform + pos: 2.5,3.5 parent: 2 - uid: 10654 components: @@ -42609,11 +48699,6 @@ entities: - type: Transform pos: 8.5,-0.5 parent: 2 - - uid: 10658 - components: - - type: Transform - pos: -7.5,1.5 - parent: 2 - uid: 10659 components: - type: Transform @@ -43044,19 +49129,6 @@ entities: linkedPorts: 23683: - DoorStatus: DoorBolt - - uid: 26042 - components: - - type: MetaData - name: шлюз - - type: Transform - pos: -76.5,79.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 26178: - - DoorStatus: DoorBolt - uid: 29622 components: - type: MetaData @@ -43317,6 +49389,11 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: + - uid: 13234 + components: + - type: Transform + pos: -76.5,79.5 + parent: 2 - uid: 26178 components: - type: MetaData @@ -43326,10 +49403,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 26042: - - DoorStatus: DoorBolt - uid: 27785 components: - type: MetaData @@ -43821,6 +49894,12 @@ entities: - type: Transform pos: -42.5,57.5 parent: 2 + - uid: 5044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,2.5 + parent: 2 - uid: 5486 components: - type: Transform @@ -43877,6 +49956,11 @@ entities: - type: Transform pos: -65.5,9.5 parent: 2 + - uid: 7955 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 - uid: 8666 components: - type: Transform @@ -43904,6 +49988,11 @@ entities: - type: Transform pos: -48.5,25.5 parent: 2 + - uid: 9060 + components: + - type: Transform + pos: -71.5,3.5 + parent: 2 - uid: 9068 components: - type: Transform @@ -43934,16 +50023,6 @@ entities: - type: Transform pos: -71.5,15.5 parent: 2 - - uid: 9264 - components: - - type: Transform - pos: -71.5,3.5 - parent: 2 - - uid: 9265 - components: - - type: Transform - pos: -69.5,3.5 - parent: 2 - uid: 9477 components: - type: Transform @@ -44016,21 +50095,11 @@ entities: - type: Transform pos: -41.5,6.5 parent: 2 - - uid: 22046 - components: - - type: Transform - pos: -47.5,2.5 - parent: 2 - uid: 22048 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 22049 - components: - - type: Transform - pos: -45.5,2.5 - parent: 2 - uid: 23218 components: - type: Transform @@ -44096,6 +50165,11 @@ entities: - type: Transform pos: -52.5,90.5 parent: 2 + - uid: 57978 + components: + - type: Transform + pos: -69.5,3.5 + parent: 2 - uid: 67000 components: - type: Transform @@ -44324,6 +50398,11 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-41.5 parent: 2 + - uid: 40193 + components: + - type: Transform + pos: 30.5,-46.5 + parent: 2 - proto: AirlockMaintAtmoLocked entities: - uid: 13281 @@ -44779,6 +50858,11 @@ entities: - type: Transform pos: 7.5,32.5 parent: 2 + - uid: 14782 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 2 - uid: 15648 components: - type: Transform @@ -44968,6 +51052,12 @@ entities: - type: Transform pos: 15.5,41.5 parent: 2 + - uid: 22086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,30.5 + parent: 2 - uid: 23300 components: - type: Transform @@ -45113,11 +51203,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-80.5 parent: 2 - - uid: 28033 - components: - - type: Transform - pos: -72.5,37.5 - parent: 2 - uid: 28119 components: - type: Transform @@ -45154,11 +51239,6 @@ entities: rot: -1.5707963267948966 rad pos: -65.5,49.5 parent: 2 - - uid: 30742 - components: - - type: Transform - pos: -69.5,30.5 - parent: 2 - uid: 30907 components: - type: Transform @@ -45230,6 +51310,21 @@ entities: - type: Transform pos: -68.5,-5.5 parent: 2 + - uid: 58220 + components: + - type: Transform + pos: 23.5,-72.5 + parent: 2 + - uid: 58370 + components: + - type: Transform + pos: 25.5,-73.5 + parent: 2 + - uid: 58371 + components: + - type: Transform + pos: 28.5,-69.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 16298 @@ -45377,6 +51472,11 @@ entities: rot: 3.141592653589793 rad pos: -18.5,18.5 parent: 2 + - uid: 11580 + components: + - type: Transform + pos: -25.5,22.5 + parent: 2 - uid: 19466 components: - type: Transform @@ -45859,16 +51959,6 @@ entities: - type: Transform pos: -71.5,49.5 parent: 2 - - uid: 7117 - components: - - type: Transform - pos: -10.5,-37.5 - parent: 2 - - uid: 7119 - components: - - type: Transform - pos: -10.5,-32.5 - parent: 2 - uid: 8046 components: - type: Transform @@ -46073,6 +52163,11 @@ entities: - type: Transform pos: -39.5,-39.5 parent: 2 + - uid: 19167 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 2 - uid: 20152 components: - type: MetaData @@ -46146,11 +52241,6 @@ entities: - type: Transform pos: -41.5,-35.5 parent: 2 - - uid: 20583 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 2 - uid: 21614 components: - type: Transform @@ -46505,14 +52595,14 @@ entities: - type: DeviceNetwork deviceLists: - 48431 - - uid: 3518 + - uid: 3821 components: - type: Transform - pos: 31.5,-91.5 + pos: 31.5,-93.5 parent: 2 - type: DeviceNetwork deviceLists: - - 51621 + - 6966 - uid: 4321 components: - type: Transform @@ -46645,6 +52735,14 @@ entities: - type: DeviceNetwork deviceLists: - 22114 + - uid: 22270 + components: + - type: Transform + pos: -36.5,-78.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51563 - uid: 22334 components: - type: Transform @@ -46702,14 +52800,6 @@ entities: deviceLists: - 51240 - 56574 - - uid: 24239 - components: - - type: Transform - pos: -2.5,-77.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23688 - uid: 24266 components: - type: Transform @@ -49291,14 +55381,6 @@ entities: - type: DeviceNetwork deviceLists: - 51429 - - uid: 51431 - components: - - type: Transform - pos: -69.5,-25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51432 - uid: 51440 components: - type: Transform @@ -49418,7 +55500,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 51530 + - 7514 - uid: 51546 components: - type: Transform @@ -49426,7 +55508,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 51557 + - 51563 - uid: 51553 components: - type: Transform @@ -49435,14 +55517,6 @@ entities: - type: DeviceNetwork deviceLists: - 51558 - - uid: 51554 - components: - - type: Transform - pos: -36.5,-79.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51563 - uid: 51555 components: - type: Transform @@ -49450,7 +55524,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 51556 + - 51563 - uid: 51574 components: - type: Transform @@ -49475,30 +55549,6 @@ entities: - type: DeviceNetwork deviceLists: - 51594 - - uid: 51600 - components: - - type: Transform - pos: -5.5,-74.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51601 - - uid: 51606 - components: - - type: Transform - pos: -6.5,-81.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51605 - - uid: 51607 - components: - - type: Transform - pos: 2.5,-87.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51608 - uid: 51641 components: - type: Transform @@ -50964,14 +57014,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-3.5 parent: 2 - - uid: 39804 - components: - - type: MetaData - name: Склад инструментов - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,4.5 - parent: 2 - uid: 39805 components: - type: MetaData @@ -51250,6 +57292,12 @@ entities: rot: 1.5707963267948966 rad pos: -91.5,30.5 parent: 2 + - uid: 51601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,5.5 + parent: 2 - uid: 52126 components: - type: MetaData @@ -51455,7 +57503,7 @@ entities: - uid: 27752 components: - type: Transform - pos: -51.587746,-77.31074 + pos: -51.684555,-77.261536 parent: 2 - uid: 32826 components: @@ -51679,6 +57727,11 @@ entities: - type: Transform pos: -18.396976,3.4411325 parent: 2 + - uid: 58168 + components: + - type: Transform + pos: -68.167564,46.335274 + parent: 2 - proto: Ashtray entities: - uid: 2285 @@ -51807,6 +57860,11 @@ entities: - type: Transform pos: -24.084034,47.224567 parent: 2 + - uid: 58167 + components: + - type: Transform + pos: -68.667564,48.804024 + parent: 2 - proto: AsimovCircuitBoard entities: - uid: 8963 @@ -51918,12 +57976,6 @@ entities: - type: Transform pos: -15.5,-92.5 parent: 2 - - uid: 7133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-84.5 - parent: 2 - uid: 7144 components: - type: Transform @@ -52964,6 +59016,11 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-41.5 parent: 2 + - uid: 17744 + components: + - type: Transform + pos: 30.5,-46.5 + parent: 2 - uid: 22870 components: - type: Transform @@ -53477,6 +59534,11 @@ entities: - type: Transform pos: -23.311893,-90.641785 parent: 2 + - uid: 58037 + components: + - type: Transform + pos: -70.42699,35.298832 + parent: 2 - proto: BaseComputer entities: - uid: 10946 @@ -54305,6 +60367,18 @@ entities: - type: Transform pos: -50.500946,63.675247 parent: 2 + - uid: 24752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-71.5 + parent: 2 + - uid: 26163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-71.5 + parent: 2 - proto: BenchBlueComfy entities: - uid: 5922 @@ -54605,6 +60679,49 @@ entities: - type: Transform pos: -21.019669,-84.620125 parent: 2 +- proto: BigPresentBox + entities: + - uid: 4235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.536415,34.726944 + parent: 2 + - uid: 6329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.821136,34.588055 + parent: 2 + - uid: 6352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.953521,-57.417706 + parent: 2 + - uid: 57656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5110784,-40.46727 + parent: 2 + - uid: 58170 + components: + - type: Transform + pos: 13.206072,-28.55458 + parent: 2 +- proto: Biogenerator + entities: + - uid: 6333 + components: + - type: Transform + pos: -50.5,51.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 - proto: BiomassReclaimer entities: - uid: 15749 @@ -54839,36 +60956,11 @@ entities: - type: Transform pos: -80.5,-32.5 parent: 2 - - uid: 31722 - components: - - type: Transform - pos: 29.5,-69.5 - parent: 2 - - uid: 31751 - components: - - type: Transform - pos: 23.5,-72.5 - parent: 2 - - uid: 31796 - components: - - type: Transform - pos: 2.5,-76.5 - parent: 2 - uid: 31802 components: - type: Transform pos: 10.5,-74.5 parent: 2 - - uid: 31803 - components: - - type: Transform - pos: 7.5,-72.5 - parent: 2 - - uid: 32081 - components: - - type: Transform - pos: 16.5,-72.5 - parent: 2 - uid: 43722 components: - type: Transform @@ -55363,9 +61455,10 @@ entities: - uid: 23011 components: - type: MetaData + desc: Книга в твёрдом переплёте. На ее обложке красуется огромное, жирное число - 1984. name: Джордж Оруэлл "1984" - type: Transform - pos: -51.62803,-14.421933 + pos: -51.41963,-14.370058 parent: 2 - type: Paper stampedBy: @@ -55480,6 +61573,11 @@ entities: + - uid: 50988 + components: + - type: Transform + pos: -72.74053,33.358047 + parent: 2 - proto: BookChemicalCompendium entities: - uid: 18018 @@ -55632,14 +61730,6 @@ entities: - type: Transform pos: -72.5,64.5 parent: 2 -- proto: BookRandom - entities: - - uid: 10488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.522644,6.1906343 - parent: 2 - proto: BookRandomStory entities: - uid: 4272 @@ -56052,11 +62142,6 @@ entities: - type: Transform pos: -5.510134,46.499264 parent: 2 - - uid: 14618 - components: - - type: Transform - pos: 14.473629,-54.32386 - parent: 2 - uid: 18484 components: - type: Transform @@ -57976,6 +64061,12 @@ entities: - Timer: Open - proto: BrokenBottle entities: + - uid: 10792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.431915,35.656166 + parent: 2 - uid: 15105 components: - type: Transform @@ -58117,11 +64208,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.567332,-19.32577 parent: 2 - - uid: 27924 - components: - - type: Transform - pos: -66.32496,-84.31056 - parent: 2 - uid: 42807 components: - type: Transform @@ -58162,13 +64248,12 @@ entities: - uid: 13356 components: - type: Transform - rot: 18.84955592153876 rad - pos: -19.13105,-47.485474 + pos: -19.480867,-47.474037 parent: 2 - uid: 13357 components: - type: Transform - pos: -19.5373,-47.5636 + pos: -24.730867,-45.020912 parent: 2 - uid: 14696 components: @@ -58600,6 +64685,11 @@ entities: - type: Transform pos: -52.5,81.5 parent: 2 + - uid: 3352 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 - uid: 3372 components: - type: Transform @@ -58665,6 +64755,11 @@ entities: - type: Transform pos: -63.5,-65.5 parent: 2 + - uid: 5568 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 - uid: 5710 components: - type: Transform @@ -58690,6 +64785,11 @@ entities: - type: Transform pos: 66.5,-27.5 parent: 2 + - uid: 6344 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 - uid: 6350 components: - type: Transform @@ -58780,6 +64880,11 @@ entities: - type: Transform pos: -60.5,86.5 parent: 2 + - uid: 7694 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 - uid: 7784 components: - type: Transform @@ -59130,6 +65235,11 @@ entities: - type: Transform pos: -108.5,53.5 parent: 2 + - uid: 10795 + components: + - type: Transform + pos: -26.5,21.5 + parent: 2 - uid: 10796 components: - type: Transform @@ -59200,6 +65310,11 @@ entities: - type: Transform pos: -68.5,72.5 parent: 2 + - uid: 11579 + components: + - type: Transform + pos: -28.5,23.5 + parent: 2 - uid: 11724 components: - type: Transform @@ -59410,6 +65525,21 @@ entities: - type: Transform pos: 17.5,39.5 parent: 2 + - uid: 14798 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + pos: -26.5,23.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 - uid: 14963 components: - type: Transform @@ -59515,6 +65645,11 @@ entities: - type: Transform pos: -8.5,-85.5 parent: 2 + - uid: 17244 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 - uid: 17359 components: - type: Transform @@ -62725,6 +68860,11 @@ entities: - type: Transform pos: -60.5,87.5 parent: 2 + - uid: 31189 + components: + - type: Transform + pos: -17.5,-90.5 + parent: 2 - uid: 31207 components: - type: Transform @@ -79420,16 +85560,6 @@ entities: - type: Transform pos: -55.5,7.5 parent: 2 - - uid: 40193 - components: - - type: Transform - pos: -51.5,4.5 - parent: 2 - - uid: 40194 - components: - - type: Transform - pos: -50.5,4.5 - parent: 2 - uid: 40195 components: - type: Transform @@ -88935,11 +95065,6 @@ entities: - type: Transform pos: 19.5,-70.5 parent: 2 - - uid: 44105 - components: - - type: Transform - pos: 18.5,-70.5 - parent: 2 - uid: 44106 components: - type: Transform @@ -90525,6 +96650,11 @@ entities: - type: Transform pos: -33.5,81.5 parent: 2 + - uid: 46047 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 - uid: 47237 components: - type: Transform @@ -91225,26 +97355,6 @@ entities: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 50555 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 2 - - uid: 50556 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 2 - - uid: 50557 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 2 - - uid: 50558 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 2 - uid: 50559 components: - type: Transform @@ -91670,6 +97780,11 @@ entities: - type: Transform pos: 36.5,30.5 parent: 2 + - uid: 51602 + components: + - type: Transform + pos: -51.5,5.5 + parent: 2 - uid: 51631 components: - type: Transform @@ -92525,21 +98640,6 @@ entities: - type: Transform pos: -79.5,27.5 parent: 2 - - uid: 55663 - components: - - type: Transform - pos: -73.5,32.5 - parent: 2 - - uid: 55676 - components: - - type: Transform - pos: -73.5,33.5 - parent: 2 - - uid: 55677 - components: - - type: Transform - pos: -73.5,34.5 - parent: 2 - uid: 55678 components: - type: Transform @@ -92550,6 +98650,11 @@ entities: - type: Transform pos: -74.5,35.5 parent: 2 + - uid: 55680 + components: + - type: Transform + pos: -18.5,-90.5 + parent: 2 - uid: 55688 components: - type: Transform @@ -92560,21 +98665,6 @@ entities: - type: Transform pos: -83.5,73.5 parent: 2 - - uid: 55690 - components: - - type: Transform - pos: -73.5,31.5 - parent: 2 - - uid: 55691 - components: - - type: Transform - pos: -72.5,31.5 - parent: 2 - - uid: 55692 - components: - - type: Transform - pos: -71.5,31.5 - parent: 2 - uid: 55693 components: - type: Transform @@ -94020,6 +100110,66 @@ entities: - type: Transform pos: -71.5,-75.5 parent: 2 + - uid: 57566 + components: + - type: Transform + pos: -19.5,-90.5 + parent: 2 + - uid: 57567 + components: + - type: Transform + pos: -20.5,-90.5 + parent: 2 + - uid: 57637 + components: + - type: Transform + pos: -71.5,35.5 + parent: 2 + - uid: 57664 + components: + - type: Transform + pos: -68.5,34.5 + parent: 2 + - uid: 58106 + components: + - type: Transform + pos: -107.5,40.5 + parent: 2 + - uid: 58107 + components: + - type: Transform + pos: -108.5,40.5 + parent: 2 + - uid: 58108 + components: + - type: Transform + pos: -109.5,40.5 + parent: 2 + - uid: 58109 + components: + - type: Transform + pos: -107.5,68.5 + parent: 2 + - uid: 58110 + components: + - type: Transform + pos: -108.5,68.5 + parent: 2 + - uid: 58111 + components: + - type: Transform + pos: -109.5,68.5 + parent: 2 + - uid: 58261 + components: + - type: Transform + pos: -69.5,34.5 + parent: 2 + - uid: 58363 + components: + - type: Transform + pos: -72.5,35.5 + parent: 2 - uid: 67167 components: - type: Transform @@ -112081,7 +118231,7 @@ entities: - uid: 4282 components: - type: Transform - pos: -50.54087,-77.38886 + pos: -50.403305,-77.417786 parent: 2 - uid: 9016 components: @@ -112330,6 +118480,11 @@ entities: - type: Transform pos: 38.5,-67.5 parent: 2 + - uid: 7978 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 - uid: 8079 components: - type: Transform @@ -114065,11 +120220,6 @@ entities: - type: Transform pos: -31.5,-86.5 parent: 2 - - uid: 26117 - components: - - type: Transform - pos: -69.5,29.5 - parent: 2 - uid: 26270 components: - type: Transform @@ -114185,11 +120335,6 @@ entities: - type: Transform pos: -66.5,-77.5 parent: 2 - - uid: 27038 - components: - - type: Transform - pos: -69.5,30.5 - parent: 2 - uid: 27039 components: - type: Transform @@ -115180,11 +121325,6 @@ entities: - type: Transform pos: -80.5,72.5 parent: 2 - - uid: 28729 - components: - - type: Transform - pos: -69.5,31.5 - parent: 2 - uid: 28731 components: - type: Transform @@ -115250,11 +121390,6 @@ entities: - type: Transform pos: -66.5,-63.5 parent: 2 - - uid: 28946 - components: - - type: Transform - pos: -70.5,31.5 - parent: 2 - uid: 28974 components: - type: Transform @@ -115750,11 +121885,6 @@ entities: - type: Transform pos: 37.5,13.5 parent: 2 - - uid: 30145 - components: - - type: Transform - pos: -72.5,31.5 - parent: 2 - uid: 30147 components: - type: Transform @@ -115810,11 +121940,6 @@ entities: - type: Transform pos: 35.5,-77.5 parent: 2 - - uid: 30276 - components: - - type: Transform - pos: -71.5,31.5 - parent: 2 - uid: 30277 components: - type: Transform @@ -116015,6 +122140,11 @@ entities: - type: Transform pos: 33.5,-85.5 parent: 2 + - uid: 30804 + components: + - type: Transform + pos: -51.5,5.5 + parent: 2 - uid: 30865 components: - type: Transform @@ -116135,11 +122265,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 32066 - components: - - type: Transform - pos: -73.5,31.5 - parent: 2 - uid: 32617 components: - type: Transform @@ -123400,16 +129525,6 @@ entities: - type: Transform pos: -54.5,5.5 parent: 2 - - uid: 39839 - components: - - type: Transform - pos: -51.5,4.5 - parent: 2 - - uid: 39840 - components: - - type: Transform - pos: -50.5,4.5 - parent: 2 - uid: 39841 components: - type: Transform @@ -124400,11 +130515,6 @@ entities: - type: Transform pos: -66.5,-40.5 parent: 2 - - uid: 40919 - components: - - type: Transform - pos: -73.5,32.5 - parent: 2 - uid: 40922 components: - type: Transform @@ -126535,11 +132645,6 @@ entities: - type: Transform pos: -83.5,52.5 parent: 2 - - uid: 50967 - components: - - type: Transform - pos: -73.5,33.5 - parent: 2 - uid: 51058 components: - type: Transform @@ -126590,11 +132695,6 @@ entities: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 51287 - components: - - type: Transform - pos: -73.5,34.5 - parent: 2 - uid: 51344 components: - type: Transform @@ -126625,6 +132725,11 @@ entities: - type: Transform pos: 29.5,-41.5 parent: 2 + - uid: 51607 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 - uid: 51620 components: - type: Transform @@ -127610,6 +133715,21 @@ entities: - type: Transform pos: -83.5,74.5 parent: 2 + - uid: 55690 + components: + - type: Transform + pos: -70.5,31.5 + parent: 2 + - uid: 55691 + components: + - type: Transform + pos: -70.5,29.5 + parent: 2 + - uid: 55692 + components: + - type: Transform + pos: -70.5,30.5 + parent: 2 - uid: 55735 components: - type: Transform @@ -129460,6 +135580,36 @@ entities: - type: Transform pos: 78.5,-28.5 parent: 2 + - uid: 57620 + components: + - type: Transform + pos: -70.5,33.5 + parent: 2 + - uid: 57622 + components: + - type: Transform + pos: -70.5,34.5 + parent: 2 + - uid: 57628 + components: + - type: Transform + pos: -70.5,35.5 + parent: 2 + - uid: 57644 + components: + - type: Transform + pos: -71.5,35.5 + parent: 2 + - uid: 57663 + components: + - type: Transform + pos: -70.5,32.5 + parent: 2 + - uid: 58362 + components: + - type: Transform + pos: -72.5,35.5 + parent: 2 - uid: 67299 components: - type: Transform @@ -129862,7 +136012,7 @@ entities: - uid: 9045 components: - type: Transform - pos: -50.556496,-77.23261 + pos: -50.45018,-77.230286 parent: 2 - uid: 10848 components: @@ -131913,42 +138063,6 @@ entities: - type: Transform pos: -59.5,-87.5 parent: 2 - - uid: 55432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,31.5 - parent: 2 - - uid: 55433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,32.5 - parent: 2 - - uid: 55434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,33.5 - parent: 2 - - uid: 55435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,34.5 - parent: 2 - - uid: 55436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,35.5 - parent: 2 - - uid: 55437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,36.5 - parent: 2 - proto: CarpetBlue entities: - uid: 2915 @@ -133700,6 +139814,192 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,38.5 parent: 2 + - uid: 51287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,36.5 + parent: 2 + - uid: 51520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,35.5 + parent: 2 + - uid: 51606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,34.5 + parent: 2 + - uid: 55663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,33.5 + parent: 2 + - uid: 55676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,33.5 + parent: 2 + - uid: 55677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,35.5 + parent: 2 + - uid: 56703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,34.5 + parent: 2 + - uid: 56704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,32.5 + parent: 2 + - uid: 57615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,33.5 + parent: 2 + - uid: 57617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,36.5 + parent: 2 + - uid: 57618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,36.5 + parent: 2 + - uid: 57619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,35.5 + parent: 2 + - uid: 57621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,34.5 + parent: 2 + - uid: 57623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,34.5 + parent: 2 + - uid: 57624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,36.5 + parent: 2 + - uid: 57626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,33.5 + parent: 2 + - uid: 57636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,32.5 + parent: 2 + - uid: 57671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,32.5 + parent: 2 + - uid: 58222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,33.5 + parent: 2 + - uid: 58223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,35.5 + parent: 2 + - uid: 58246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,32.5 + parent: 2 + - uid: 58247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,34.5 + parent: 2 + - uid: 58248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,33.5 + parent: 2 + - uid: 58251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,35.5 + parent: 2 + - uid: 58255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,36.5 + parent: 2 + - uid: 58256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,35.5 + parent: 2 + - uid: 58259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,33.5 + parent: 2 + - uid: 58360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,35.5 + parent: 2 + - uid: 58361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,32.5 + parent: 2 + - uid: 58364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,34.5 + parent: 2 + - uid: 58365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,34.5 + parent: 2 - proto: CartridgeRocket entities: - uid: 11757 @@ -134164,6 +140464,11 @@ entities: rot: 1.5707963267948966 rad pos: 77.5,-44.5 parent: 2 + - uid: 3518 + components: + - type: Transform + pos: 30.5,-90.5 + parent: 2 - uid: 3576 components: - type: Transform @@ -134204,11 +140509,23 @@ entities: - type: Transform pos: 90.5,4.5 parent: 2 + - uid: 3776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,12.5 + parent: 2 - uid: 3816 components: - type: Transform pos: 34.5,11.5 parent: 2 + - uid: 3903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,11.5 + parent: 2 - uid: 3978 components: - type: Transform @@ -134646,18 +140963,36 @@ entities: rot: 1.5707963267948966 rad pos: 94.5,2.5 parent: 2 + - uid: 5339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,15.5 + parent: 2 - uid: 5343 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,3.5 parent: 2 + - uid: 5350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,15.5 + parent: 2 - uid: 5355 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,4.5 parent: 2 + - uid: 5366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,15.5 + parent: 2 - uid: 5379 components: - type: Transform @@ -134668,21 +141003,11 @@ entities: - type: Transform pos: 94.5,12.5 parent: 2 - - uid: 5381 - components: - - type: Transform - pos: 94.5,13.5 - parent: 2 - uid: 5382 components: - type: Transform pos: 94.5,14.5 parent: 2 - - uid: 5383 - components: - - type: Transform - pos: 94.5,15.5 - parent: 2 - uid: 5385 components: - type: Transform @@ -134733,11 +141058,6 @@ entities: - type: Transform pos: 92.5,14.5 parent: 2 - - uid: 5395 - components: - - type: Transform - pos: 92.5,15.5 - parent: 2 - uid: 5397 components: - type: Transform @@ -134853,16 +141173,6 @@ entities: - type: Transform pos: 87.5,14.5 parent: 2 - - uid: 5425 - components: - - type: Transform - pos: 87.5,15.5 - parent: 2 - - uid: 5426 - components: - - type: Transform - pos: 81.5,13.5 - parent: 2 - uid: 5427 components: - type: Transform @@ -134881,12 +141191,8 @@ entities: - uid: 5430 components: - type: Transform - pos: 86.5,14.5 - parent: 2 - - uid: 5432 - components: - - type: Transform - pos: 81.5,12.5 + rot: 3.141592653589793 rad + pos: 81.5,13.5 parent: 2 - uid: 5433 components: @@ -134903,11 +141209,6 @@ entities: - type: Transform pos: 85.5,13.5 parent: 2 - - uid: 5437 - components: - - type: Transform - pos: 81.5,11.5 - parent: 2 - uid: 5438 components: - type: Transform @@ -134970,6 +141271,12 @@ entities: rot: 3.141592653589793 rad pos: -66.5,-35.5 parent: 2 + - uid: 6100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,13.5 + parent: 2 - uid: 6353 components: - type: Transform @@ -135033,6 +141340,11 @@ entities: - type: Transform pos: -71.5,-39.5 parent: 2 + - uid: 6971 + components: + - type: Transform + pos: 30.5,-89.5 + parent: 2 - uid: 7177 components: - type: Transform @@ -135133,6 +141445,11 @@ entities: - type: Transform pos: 19.5,-16.5 parent: 2 + - uid: 9079 + components: + - type: Transform + pos: 33.5,-89.5 + parent: 2 - uid: 9091 components: - type: Transform @@ -135636,51 +141953,11 @@ entities: - type: Transform pos: -30.5,-50.5 parent: 2 - - uid: 14780 - components: - - type: Transform - pos: 15.5,-69.5 - parent: 2 - - uid: 14781 - components: - - type: Transform - pos: 15.5,-69.5 - parent: 2 - - uid: 14782 - components: - - type: Transform - pos: 14.5,-69.5 - parent: 2 - - uid: 14783 - components: - - type: Transform - pos: 13.5,-69.5 - parent: 2 - - uid: 14784 - components: - - type: Transform - pos: 12.5,-69.5 - parent: 2 - - uid: 14785 - components: - - type: Transform - pos: 11.5,-69.5 - parent: 2 - uid: 14786 components: - type: Transform pos: 10.5,-69.5 parent: 2 - - uid: 14787 - components: - - type: Transform - pos: 9.5,-69.5 - parent: 2 - - uid: 14788 - components: - - type: Transform - pos: 9.5,-70.5 - parent: 2 - uid: 14789 components: - type: Transform @@ -135711,36 +141988,6 @@ entities: - type: Transform pos: 12.5,-73.5 parent: 2 - - uid: 14795 - components: - - type: Transform - pos: 3.5,-71.5 - parent: 2 - - uid: 14796 - components: - - type: Transform - pos: 3.5,-72.5 - parent: 2 - - uid: 14797 - components: - - type: Transform - pos: 4.5,-71.5 - parent: 2 - - uid: 14798 - components: - - type: Transform - pos: 4.5,-72.5 - parent: 2 - - uid: 14799 - components: - - type: Transform - pos: 1.5,-75.5 - parent: 2 - - uid: 14800 - components: - - type: Transform - pos: 2.5,-75.5 - parent: 2 - uid: 14802 components: - type: Transform @@ -135802,6 +142049,11 @@ entities: - type: Transform pos: 31.5,48.5 parent: 2 + - uid: 15146 + components: + - type: Transform + pos: -41.5,-77.5 + parent: 2 - uid: 15206 components: - type: Transform @@ -136940,6 +143192,11 @@ entities: - type: Transform pos: 101.5,-56.5 parent: 2 + - uid: 17754 + components: + - type: Transform + pos: -39.5,-79.5 + parent: 2 - uid: 17806 components: - type: Transform @@ -137099,6 +143356,11 @@ entities: - type: Transform pos: -0.5,-81.5 parent: 2 + - uid: 18858 + components: + - type: Transform + pos: -42.5,-79.5 + parent: 2 - uid: 18935 components: - type: Transform @@ -139279,11 +145541,6 @@ entities: - type: Transform pos: -75.5,74.5 parent: 2 - - uid: 26307 - components: - - type: Transform - pos: -36.5,-77.5 - parent: 2 - uid: 26314 components: - type: Transform @@ -143835,6 +150092,68 @@ entities: rot: 3.141592653589793 rad pos: -84.5,73.5 parent: 2 + - uid: 57613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-17.5 + parent: 2 + - uid: 57614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-17.5 + parent: 2 + - uid: 57971 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 57972 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 57973 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 57974 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 + - uid: 57975 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 58158 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 58159 + components: + - type: Transform + pos: 33.5,-79.5 + parent: 2 + - uid: 58160 + components: + - type: Transform + pos: 35.5,-79.5 + parent: 2 + - uid: 58161 + components: + - type: Transform + pos: -61.5,-36.5 + parent: 2 + - uid: 58162 + components: + - type: Transform + pos: -61.5,-39.5 + parent: 2 - uid: 67386 components: - type: Transform @@ -144246,16 +150565,6 @@ entities: - type: Transform pos: 49.5,-24.5 parent: 2 - - uid: 16139 - components: - - type: Transform - pos: -14.5,-70.5 - parent: 2 - - uid: 16141 - components: - - type: Transform - pos: -10.5,-70.5 - parent: 2 - uid: 16177 components: - type: Transform @@ -144703,11 +151012,6 @@ entities: - type: Transform pos: 34.5,-72.5 parent: 2 - - uid: 26167 - components: - - type: Transform - pos: -45.5,-56.5 - parent: 2 - uid: 27765 components: - type: Transform @@ -144720,6 +151024,11 @@ entities: rot: -1.5707963267948966 rad pos: -90.5,24.5 parent: 2 + - uid: 27924 + components: + - type: Transform + pos: -46.5,-56.5 + parent: 2 - uid: 28829 components: - type: Transform @@ -144968,6 +151277,16 @@ entities: - type: Transform pos: -67.5,51.5 parent: 2 + - uid: 58226 + components: + - type: Transform + pos: 22.5,-71.5 + parent: 2 + - uid: 58254 + components: + - type: Transform + pos: 21.5,-71.5 + parent: 2 - uid: 67388 components: - type: Transform @@ -146981,18 +153300,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.536266,-63.33123 parent: 2 - - uid: 11579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,34.5 - parent: 2 - - uid: 11580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,34.5 - parent: 2 - uid: 11713 components: - type: Transform @@ -147319,11 +153626,6 @@ entities: rot: -1.5707963267948966 rad pos: 77.88902,-62.40361 parent: 2 - - uid: 21496 - components: - - type: Transform - pos: -71.42799,34.654514 - parent: 2 - uid: 21951 components: - type: Transform @@ -147346,26 +153648,6 @@ entities: - type: Transform pos: -71.46814,-10.288743 parent: 2 - - uid: 22158 - components: - - type: Transform - pos: -72.50612,34.623264 - parent: 2 - - uid: 22160 - components: - - type: Transform - pos: -71.47487,35.654514 - parent: 2 - - uid: 22161 - components: - - type: Transform - pos: -69.45924,35.654514 - parent: 2 - - uid: 22166 - components: - - type: Transform - pos: -69.44362,34.779514 - parent: 2 - uid: 22984 components: - type: Transform @@ -147471,12 +153753,6 @@ entities: rot: 1.5707963267948966 rad pos: -71.44697,75.557594 parent: 2 - - uid: 30096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,35.5 - parent: 2 - uid: 30346 components: - type: Transform @@ -147567,12 +153843,6 @@ entities: rot: -1.5707963267948966 rad pos: -75.35884,-48.31057 parent: 2 - - uid: 41539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,35.5 - parent: 2 - uid: 43949 components: - type: Transform @@ -147907,10 +154177,10 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,67.5 parent: 2 - - uid: 26163 + - uid: 13292 components: - type: Transform - pos: -45.5,-57.5 + pos: -46.5,-57.5 parent: 2 - proto: Cigar entities: @@ -148161,6 +154431,24 @@ entities: - type: Transform pos: 83.69148,-62.873005 parent: 2 + - uid: 58163 + components: + - type: Transform + rot: -0.6981317007977318 rad + pos: -68.33944,48.98373 + parent: 2 + - uid: 58164 + components: + - type: Transform + rot: 1.0995574287564276 rad + pos: -68.167564,48.6 + parent: 2 + - uid: 58165 + components: + - type: Transform + rot: 0.33161255787892263 rad + pos: -68.073814,48.936855 + parent: 2 - proto: CigarGold entities: - uid: 5444 @@ -148291,6 +154579,11 @@ entities: - type: Transform pos: 9.692179,-19.084362 parent: 2 + - uid: 58166 + components: + - type: Transform + pos: -66.730064,48.81965 + parent: 2 - proto: CigCartonBlack entities: - uid: 4752 @@ -148416,13 +154709,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,33.5 parent: 2 -- proto: ClockworkGrille - entities: - - uid: 15866 - components: - - type: Transform - pos: 38.5,21.5 - parent: 2 - proto: ClockworkGrilleBroken entities: - uid: 28904 @@ -148487,6 +154773,12 @@ entities: - type: Transform pos: 16.5,47.5 parent: 2 + - uid: 57612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 2 - proto: CloningPod entities: - uid: 15567 @@ -148732,6 +155024,11 @@ entities: - type: Transform pos: -57.5,77.5 parent: 2 + - uid: 24536 + components: + - type: Transform + pos: -33.5,73.5 + parent: 2 - uid: 24652 components: - type: Transform @@ -148887,11 +155184,6 @@ entities: - type: Transform pos: -53.5,-51.5 parent: 2 - - uid: 31187 - components: - - type: Transform - pos: -31.5,75.5 - parent: 2 - uid: 31258 components: - type: Transform @@ -148972,6 +155264,26 @@ entities: - type: Transform pos: 69.5,-18.5 parent: 2 + - uid: 58135 + components: + - type: Transform + pos: -83.5,55.5 + parent: 2 + - uid: 58136 + components: + - type: Transform + pos: -87.5,55.5 + parent: 2 + - uid: 58141 + components: + - type: Transform + pos: -83.5,53.5 + parent: 2 + - uid: 58142 + components: + - type: Transform + pos: -87.5,53.5 + parent: 2 - uid: 67400 components: - type: Transform @@ -149625,8 +155937,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -149643,9 +155955,9 @@ entities: showEnts: False occludes: True ents: + - 24483 - 24504 - 24494 - - 24483 - 24480 paper_label: !type:ContainerSlot showEnts: False @@ -149787,6 +156099,43 @@ entities: - type: Transform pos: -18.5,-13.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 42268 + components: + - type: Transform + pos: 84.5,-49.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 42277 + - 42276 + - 42274 + - 42269 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 51414 components: - type: Transform @@ -149924,6 +156273,24 @@ entities: - type: Transform pos: 13.5,-74.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 14842 components: - type: Transform @@ -149959,6 +156326,11 @@ entities: - type: Transform pos: -76.5,-66.5 parent: 2 + - uid: 21670 + components: + - type: Transform + pos: -42.5,-47.5 + parent: 2 - uid: 22218 components: - type: Transform @@ -150085,6 +156457,11 @@ entities: - type: Transform pos: -57.5,-42.5 parent: 2 + - uid: 24743 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 - uid: 24834 components: - type: Transform @@ -150193,11 +156570,47 @@ entities: - type: Transform pos: -25.5,-17.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 28887 components: - type: Transform pos: -36.5,-9.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 29016 components: - type: Transform @@ -150389,11 +156802,6 @@ entities: - 0 - 0 - 0 - - uid: 31189 - components: - - type: Transform - pos: -32.5,75.5 - parent: 2 - uid: 31247 components: - type: Transform @@ -150571,6 +156979,11 @@ entities: - type: Transform pos: -19.5,49.5 parent: 2 + - uid: 57668 + components: + - type: Transform + pos: -67.5,31.5 + parent: 2 - proto: ClosetRadiationSuit entities: - uid: 15465 @@ -151095,6 +157508,11 @@ entities: - type: Transform pos: -12.536257,-49.312706 parent: 2 + - uid: 58022 + components: + - type: Transform + pos: 77.5035,-52.297695 + parent: 2 - proto: ClothingBackpackDuffelSyndicate entities: - uid: 29065 @@ -151339,12 +157757,6 @@ entities: - type: Transform pos: -67.5,20.5 parent: 2 - - uid: 46834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -72.50874,30.463995 - parent: 2 - proto: ClothingBeltSyndieHolster entities: - uid: 51452 @@ -151693,15 +158105,6 @@ entities: - type: Transform pos: -2.5900269,-11.5877075 parent: 53899 -- proto: ClothingEyesHudMedSec - entities: - - uid: 20444 - components: - - type: Transform - parent: 20443 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingEyesHudSecurity entities: - uid: 20049 @@ -151888,8 +158291,20 @@ entities: - type: Transform pos: -34.48196,83.624115 parent: 2 + - uid: 42274 + components: + - type: Transform + parent: 42268 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHandsGlovesColorYellow entities: + - uid: 10859 + components: + - type: Transform + pos: -46.448357,6.2328815 + parent: 2 - uid: 11691 components: - type: Transform @@ -151983,12 +158398,6 @@ entities: - type: Transform pos: 51.479298,-60.52999 parent: 2 - - uid: 10881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.752,9.570277 - parent: 2 - uid: 14996 components: - type: Transform @@ -152057,7 +158466,7 @@ entities: - uid: 21508 components: - type: Transform - pos: -54.644108,-32.25592 + pos: -54.623978,-32.40963 parent: 2 - uid: 44963 components: @@ -152090,11 +158499,6 @@ entities: - type: Transform pos: -49.613777,73.19917 parent: 2 - - uid: 21067 - components: - - type: Transform - pos: 84.32838,-64.10775 - parent: 2 - uid: 25229 components: - type: Transform @@ -152107,12 +158511,6 @@ entities: parent: 2 - proto: ClothingHandsGlovesFingerlessInsulated entities: - - uid: 10880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.6895,5.570277 - parent: 2 - uid: 14394 components: - type: Transform @@ -152230,7 +158628,7 @@ entities: - uid: 13380 components: - type: Transform - pos: -19.48347,-44.435593 + pos: -20.502048,-44.34102 parent: 2 - proto: ClothingHandsGlovesNitrile entities: @@ -152345,11 +158743,6 @@ entities: - type: Transform pos: 27.409616,-74.35787 parent: 2 - - uid: 31092 - components: - - type: Transform - pos: -70.45982,36.615936 - parent: 2 - proto: ClothingHeadHatBeretHoS entities: - uid: 5869 @@ -152528,11 +158921,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24039 - components: - - type: Transform - pos: -13.845925,-35.797493 - parent: 2 - uid: 25496 components: - type: Transform @@ -152561,43 +158949,18 @@ entities: - uid: 35944 components: - type: Transform - pos: -31.493496,-35.432056 - parent: 2 - - uid: 35945 - components: - - type: Transform - pos: -30.82162,-35.650806 - parent: 2 - - uid: 35946 - components: - - type: Transform - pos: -30.524746,-36.088306 + pos: -31.653122,-35.62503 parent: 2 - uid: 35947 components: - type: Transform - pos: -30.493496,-36.588306 + pos: -30.746874,-36.46878 parent: 2 - uid: 40105 components: - type: Transform pos: -66.29648,-26.344986 parent: 2 - - uid: 42268 - components: - - type: Transform - pos: -14.411201,-36.529835 - parent: 2 - - uid: 42269 - components: - - type: Transform - pos: -14.246088,-36.162914 - parent: 2 - - uid: 42278 - components: - - type: Transform - pos: -13.387279,-35.614033 - parent: 2 - uid: 54773 components: - type: Transform @@ -152910,10 +159273,62 @@ entities: parent: 2 - proto: ClothingHeadHatRichard entities: - - uid: 20552 + - uid: 58366 components: - type: Transform - pos: -61.847824,-3.2309923 + pos: -70.52178,35.568604 + parent: 2 +- proto: ClothingHeadHatSantahat + entities: + - uid: 9054 + components: + - type: Transform + pos: -2.5866847,-62.274204 + parent: 2 + - uid: 10947 + components: + - type: Transform + pos: 23.201124,-10.156194 + parent: 2 + - uid: 57878 + components: + - type: Transform + pos: -1.4475975,-57.534023 + parent: 2 + - uid: 57879 + components: + - type: Transform + pos: -1.4619966,-57.565273 + parent: 2 + - uid: 57880 + components: + - type: Transform + pos: -1.4619966,-57.565273 + parent: 2 + - uid: 58053 + components: + - type: Transform + pos: 65.242035,10.795944 + parent: 2 + - uid: 58178 + components: + - type: Transform + pos: -48.62239,-21.365158 + parent: 2 + - uid: 58186 + components: + - type: Transform + pos: -15.663071,-6.477934 + parent: 2 + - uid: 58697 + components: + - type: Transform + pos: 17.495459,-10.387469 + parent: 2 + - uid: 58698 + components: + - type: Transform + pos: 23.623,-10.203069 parent: 2 - proto: ClothingHeadHatShrineMaidenWig entities: @@ -152932,7 +159347,7 @@ entities: - uid: 51630 components: - type: Transform - pos: -20.31489,-41.284134 + pos: -20.398306,-41.26974 parent: 2 - proto: ClothingHeadHatSurgcapBlue entities: @@ -153038,11 +159453,6 @@ entities: parent: 2 - proto: ClothingHeadHatYellowsoft entities: - - uid: 10874 - components: - - type: Transform - pos: -50.520847,4.806264 - parent: 2 - uid: 10875 components: - type: Transform @@ -153196,15 +159606,6 @@ entities: - type: Transform pos: 8.472168,-4.271103 parent: 66965 -- proto: ClothingHeadHelmetSecurityMedic - entities: - - uid: 32372 - components: - - type: Transform - parent: 20443 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHeadHelmetTemplar entities: - uid: 6505 @@ -153237,12 +159638,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadsetBrigmedic - entities: - - uid: 26924 + - uid: 42269 components: - type: Transform - parent: 20443 + parent: 42268 - type: Physics canCollide: False - type: InsideEntityStorage @@ -153258,7 +159657,7 @@ entities: - uid: 21086 components: - type: Transform - pos: 84.79713,-64.154625 + pos: 84.54136,-63.45401 parent: 2 - uid: 28308 components: @@ -153315,15 +159714,6 @@ entities: - type: Transform pos: 69.60373,-12.584481 parent: 2 -- proto: ClothingMaskBreath - entities: - - uid: 26427 - components: - - type: Transform - parent: 4623 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingMaskBreathMedical entities: - uid: 15514 @@ -153639,13 +160029,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.11133,71.788734 parent: 2 -- proto: ClothingMaskMime - entities: - - uid: 22187 - components: - - type: Transform - pos: -70.500244,32.32257 - parent: 2 - proto: ClothingMaskMuzzle entities: - uid: 7494 @@ -153812,13 +160195,6 @@ entities: - type: Transform pos: 83.5796,-51.487667 parent: 2 -- proto: ClothingMaskSexyMime - entities: - - uid: 22062 - components: - - type: Transform - pos: -68.45406,36.589138 - parent: 2 - proto: ClothingMaskSterile entities: - uid: 8907 @@ -154055,11 +160431,6 @@ entities: parent: 66965 - proto: ClothingNeckScarfStripedSyndieGreen entities: - - uid: 21064 - components: - - type: Transform - pos: 84.344,-63.623375 - parent: 2 - uid: 21704 components: - type: Transform @@ -154108,23 +160479,6 @@ entities: - type: Transform pos: 1.3744736,0.22704315 parent: 56354 -- proto: ClothingNeckTieDet - entities: - - uid: 30572 - components: - - type: MetaData - desc: Иногда может быть использовал для удушения. - name: галстук АВД - - type: Transform - pos: -0.65950525,61.16825 - parent: 2 -- proto: ClothingNeckUSSPPin - entities: - - uid: 10945 - components: - - type: Transform - pos: 0.6707386,2.723315 - parent: 2 - proto: ClothingOuterAerostaticBomberJacket entities: - uid: 21945 @@ -154259,15 +160613,6 @@ entities: - type: Transform pos: 8.472168,-4.646103 parent: 66965 -- proto: ClothingOuterCoatAMG - entities: - - uid: 35482 - components: - - type: Transform - parent: 20443 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterCoatBomber entities: - uid: 20097 @@ -154376,6 +160721,15 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterCoatLabSecurityMedic + entities: + - uid: 14795 + components: + - type: Transform + parent: 20443 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterCoatParamedicWB entities: - uid: 18091 @@ -154455,38 +160809,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterHardsuitBrigmedic - entities: - - uid: 27683 - components: - - type: Transform - parent: 20443 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]35%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]20%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]20%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]30%[/color]. - priority: 0 - component: Armor - title: null - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterHardsuitERTEngineer entities: - uid: 54203 @@ -154579,13 +160901,6 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterHardsuitLuxury entities: - - uid: 4624 - components: - - type: Transform - parent: 4623 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 52095 components: - type: Transform @@ -154872,6 +161187,18 @@ entities: rot: -0.3490658503988659 rad pos: -56.546814,-51.738876 parent: 2 +- proto: ClothingOuterSanta + entities: + - uid: 57882 + components: + - type: Transform + pos: -2.2898097,-62.47733 + parent: 2 + - uid: 58052 + components: + - type: Transform + pos: 65.648285,10.561569 + parent: 2 - proto: ClothingOuterStraightjacket entities: - uid: 11845 @@ -154975,15 +161302,6 @@ entities: parent: 12620 - type: Physics canCollide: False -- proto: ClothingOuterVestArmorMedSec - entities: - - uid: 35878 - components: - - type: Transform - parent: 20443 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterVestHazard entities: - uid: 23538 @@ -155073,23 +161391,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,3.5 parent: 2 -- proto: ClothingRandomSpawner - entities: - - uid: 6966 - components: - - type: Transform - pos: -69.5,25.5 - parent: 2 - - uid: 6971 - components: - - type: Transform - pos: -70.5,25.5 - parent: 2 - - uid: 6973 - components: - - type: Transform - pos: -71.5,25.5 - parent: 2 - proto: ClothingShoesAerostatic entities: - uid: 21944 @@ -155184,17 +161485,6 @@ entities: - type: Transform pos: 53.469215,14.635051 parent: 2 - - uid: 56703 - components: - - type: Transform - pos: -61.472824,-3.5903673 - parent: 2 - - type: ContainerContainer - containers: - item: !type:ContainerSlot - showEnts: False - occludes: True - ent: 56704 - proto: ClothingShoesBootsJackFilled entities: - uid: 9192 @@ -155384,6 +161674,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingShoesBootsSalvage + entities: + - uid: 13290 + components: + - type: Transform + pos: 29.643213,-82.68493 + parent: 2 - proto: ClothingShoesBootsWinterMed entities: - uid: 18093 @@ -155401,15 +161698,31 @@ entities: parent: 2 - proto: ClothingShoesBootsWork entities: - - uid: 21509 + - uid: 13262 + components: + - type: Transform + pos: -40.501865,-56.44255 + parent: 2 +- proto: ClothingShoesCentcomBlack + entities: + - uid: 19170 components: - type: MetaData - desc: Покажи силу робаста - name: GreyTide Boots King + desc: Чертовски тяжелая обувь из вольфрамового сплава. Кому вообще могла прийти идея создать их? + name: чертовски тяжелая обувь - type: Transform - pos: -40.444695,-56.587856 + pos: -89.48056,23.553356 parent: 2 - - type: NoSlip + - type: Clothing + unequipDelay: 10 + - type: ClothingSpeedModifier + sprintModifier: 0.4 + walkModifier: 0.4 + - type: FootstepModifier + footstepSoundCollection: !type:SoundPathSpecifier + params: + variation: 0.14 + path: /Audio/Effects/Footsteps/largethud.ogg - proto: ClothingShoesColorBlack entities: - uid: 6509 @@ -155437,56 +161750,72 @@ entities: - uid: 13297 components: - type: Transform - pos: -28.72854,-40.25138 - parent: 2 + parent: 26342 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13298 components: - type: Transform - pos: -28.72854,-40.56388 - parent: 2 + parent: 26342 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13299 components: - type: Transform - pos: -28.306665,-40.25138 - parent: 2 + parent: 26342 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13300 components: - type: Transform - pos: -28.29104,-40.56388 - parent: 2 - - uid: 13301 + parent: 26342 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16069 components: - type: Transform - pos: -27.72854,-40.267006 - parent: 2 - - uid: 13302 + parent: 16060 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19866 components: - type: Transform - pos: -27.275417,-40.267006 - parent: 2 - - uid: 13303 + parent: 9330 + - type: Physics + canCollide: False + - uid: 27028 components: - type: Transform - pos: -27.744165,-40.56388 - parent: 2 - - uid: 13304 + parent: 26714 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27029 components: - type: Transform - pos: -27.275415,-40.579506 - parent: 2 - - uid: 16069 + parent: 26714 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27476 components: - type: Transform - parent: 16060 + parent: 26714 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 19866 + - uid: 27923 components: - type: Transform - parent: 9330 + parent: 26714 - type: Physics canCollide: False + - type: InsideEntityStorage - uid: 52796 components: - type: Transform @@ -155663,7 +161992,7 @@ entities: - uid: 21075 components: - type: Transform - pos: 84.4065,-64.4515 + pos: 84.41636,-64.14151 parent: 2 - uid: 52874 components: @@ -155697,11 +162026,6 @@ entities: parent: 52449 - type: Physics canCollide: False - - uid: 53187 - components: - - type: Transform - pos: 29.580547,-82.72471 - parent: 2 - proto: ClothingShoeSlippersDuck entities: - uid: 26218 @@ -155799,11 +162123,6 @@ entities: parent: 9330 - type: Physics canCollide: False - - uid: 21465 - components: - - type: Transform - pos: -54.589527,-32.4797 - parent: 2 - proto: ClothingShoesTourist entities: - uid: 12197 @@ -155855,6 +162174,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 42276 + components: + - type: Transform + parent: 42268 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingShoesWizard entities: - uid: 44133 @@ -155884,11 +162210,6 @@ entities: - type: Transform pos: -48.717037,74.76356 parent: 2 - - uid: 13518 - components: - - type: Transform - pos: -2.6258273,-62.38485 - parent: 2 - uid: 55708 components: - type: MetaData @@ -155972,12 +162293,6 @@ entities: parent: 2 - type: Physics canCollide: False - - uid: 10876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.443813,4.6148477 - parent: 2 - proto: ClothingUniformJumpskirtDetective entities: - uid: 15774 @@ -156006,6 +162321,13 @@ entities: - type: Transform pos: 22.919146,-14.205698 parent: 2 + - uid: 42277 + components: + - type: Transform + parent: 42268 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingUniformJumpskirtJanimaidmini entities: - uid: 20038 @@ -156042,27 +162364,31 @@ entities: - uid: 13309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.626282,-40.975327 - parent: 2 + parent: 26714 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.641907,-40.5222 - parent: 2 + parent: 26714 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.454407,-40.975327 - parent: 2 + parent: 26714 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.454407,-40.506577 - parent: 2 + parent: 26714 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingUniformJumpskirtPsychologist entities: - uid: 16061 @@ -156072,12 +162398,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.964832,-69.29767 - parent: 2 - proto: ClothingUniformJumpskirtSchool entities: - uid: 8104 @@ -156526,27 +162846,31 @@ entities: - uid: 13313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.610657,-40.975327 - parent: 2 + parent: 26342 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.626282,-40.506577 - parent: 2 + parent: 26342 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.423157,-40.99095 - parent: 2 + parent: 26342 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.485657,-40.49095 - parent: 2 + parent: 26342 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPsychologist entities: - uid: 16067 @@ -156791,11 +163115,6 @@ entities: - type: Transform pos: 59.5,-36.5 parent: 2 - - uid: 23215 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 2 - uid: 28076 components: - type: Transform @@ -156885,6 +163204,11 @@ entities: rot: 3.141592653589793 rad pos: -114.5,8.5 parent: 2 + - uid: 5069 + components: + - type: Transform + pos: -45.5,-13.5 + parent: 2 - uid: 5504 components: - type: Transform @@ -157359,6 +163683,23 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-8.5 parent: 2 + - uid: 58081 + components: + - type: Transform + pos: -70.5,35.5 + parent: 2 + - uid: 58368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,34.5 + parent: 2 + - uid: 58375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,34.5 + parent: 2 - uid: 67415 components: - type: Transform @@ -157402,6 +163743,12 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,46.5 parent: 2 + - uid: 28084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-75.5 + parent: 2 - uid: 55581 components: - type: Transform @@ -157596,6 +163943,17 @@ entities: parent: 2 - proto: ComputerCargoOrders entities: + - uid: 5197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-7.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: 80.5,9.5 + parent: 2 - uid: 7957 components: - type: Transform @@ -157614,12 +163972,6 @@ entities: parent: 2 - proto: ComputerCargoShuttle entities: - - uid: 4993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-7.5 - parent: 2 - uid: 57224 components: - type: Transform @@ -157828,12 +164180,6 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,9.5 parent: 2 - - uid: 10858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,5.5 - parent: 2 - uid: 12995 components: - type: Transform @@ -158082,6 +164428,12 @@ entities: rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 2 + - uid: 10793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,6.5 + parent: 2 - uid: 15800 components: - type: Transform @@ -158093,11 +164445,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,44.5 parent: 2 - - uid: 17244 - components: - - type: Transform - pos: 80.5,9.5 - parent: 2 - uid: 20126 components: - type: Transform @@ -158242,8 +164589,20 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,6.5 parent: 2 + - uid: 14785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-14.5 + parent: 2 - proto: ComputerShuttleSalvage entities: + - uid: 5066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,7.5 + parent: 2 - uid: 55568 components: - type: Transform @@ -159056,24 +165415,6 @@ entities: - type: Transform pos: -52.5,64.5 parent: 2 - - uid: 22045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,31.5 - parent: 2 - - uid: 22059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,31.5 - parent: 2 - - uid: 22078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,36.5 - parent: 2 - uid: 25921 components: - type: Transform @@ -159240,12 +165581,11 @@ entities: occludes: True ents: - 52093 - - 52094 - 52095 paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: null + ent: 52094 - proto: CrateCommandSecure entities: - uid: 44141 @@ -159259,8 +165599,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -159279,6 +165619,7 @@ entities: ents: - 52445 - 52446 + - 52444 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -159351,11 +165692,6 @@ entities: - type: Transform pos: -81.5,-60.5 parent: 2 - - uid: 24689 - components: - - type: Transform - pos: -77.5,37.5 - parent: 2 - uid: 25425 components: - type: Transform @@ -160712,10 +167048,10 @@ entities: air: volume: 200 immutable: False - temperature: 99.422104 + temperature: 293.14786 moles: - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -160732,14 +167068,14 @@ entities: showEnts: False occludes: True ents: - - 71026 - - 71019 - - 71020 - - 71022 - - 71025 - - 71023 - - 71024 - 71021 + - 71024 + - 71023 + - 71025 + - 71022 + - 71020 + - 71019 + - 71026 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -160765,11 +167101,47 @@ entities: - type: Transform pos: 67.5,-1.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 8346 components: - type: Transform pos: 73.5,5.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 53725 components: - type: Transform @@ -160799,28 +167171,28 @@ entities: showEnts: False occludes: True ents: - - 52427 - - 53773 - - 52055 - - 52425 - - 52426 - - 52063 - - 52075 - - 52080 - - 52056 - - 53775 - - 52053 - - 53641 - - 53642 - - 52054 - - 52051 - - 52081 - - 44148 - - 44146 - - 52062 + - 44149 - 53772 + - 52062 + - 44146 + - 44148 + - 52081 + - 52051 + - 52054 + - 53642 + - 53641 + - 52053 + - 53775 + - 52056 + - 52080 + - 52075 + - 52063 + - 52426 + - 52425 + - 52055 + - 53773 + - 52427 - 53776 - - 44149 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -161033,6 +167405,24 @@ entities: - type: Transform pos: 28.5,-22.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: CrateTrashCartFilled entities: - uid: 411 @@ -161069,6 +167459,29 @@ entities: showEnts: False occludes: True ent: null + - uid: 2618 + components: + - type: Transform + pos: -73.5,31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 6320 components: - type: Transform @@ -161094,6 +167507,24 @@ entities: - type: Transform pos: 20.5,-38.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 23149 components: - type: Transform @@ -161208,6 +167639,29 @@ entities: - type: Transform pos: -68.5,-71.5 parent: 2 + - uid: 58382 + components: + - type: Transform + pos: -73.5,30.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: CrateTrashCartJani entities: - uid: 6388 @@ -161243,8 +167697,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -161261,10 +167715,9 @@ entities: showEnts: False occludes: True ents: - - 52444 - - 16212 - - 16219 - 16220 + - 16219 + - 16212 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -161677,6 +168130,15 @@ entities: - type: Transform pos: 33.494385,5.7261047 parent: 66965 +- proto: CrowbarYellow + entities: + - uid: 11371 + components: + - type: MetaData + desc: Многофункциональный инструмент предназначенный для открытия дверей и замков. Кто-то нацарапал на ней слово "Кочерга." + - type: Transform + pos: 22.823757,-14.657478 + parent: 2 - proto: CryogenicSleepUnit entities: - uid: 5014 @@ -161814,6 +168276,11 @@ entities: - type: Transform pos: 34.5,-91.5 parent: 2 + - uid: 13296 + components: + - type: Transform + pos: -67.5,-73.5 + parent: 2 - uid: 21226 components: - type: Transform @@ -161824,11 +168291,6 @@ entities: - type: Transform pos: 3.5,-90.5 parent: 2 - - uid: 27476 - components: - - type: Transform - pos: -67.5,-73.5 - parent: 2 - uid: 30412 components: - type: Transform @@ -161935,65 +168397,64 @@ entities: parent: 2 - proto: CurtainsGreen entities: - - uid: 13241 + - uid: 13301 components: - type: Transform pos: -26.5,-45.5 parent: 2 - - uid: 13248 + - uid: 13302 components: - type: Transform - pos: -18.5,-44.5 + rot: 1.5707963267948966 rad + pos: -18.5,-45.5 parent: 2 - - uid: 13262 + - uid: 13304 components: - type: Transform - pos: -18.5,-45.5 + pos: -26.5,-44.5 parent: 2 - uid: 13340 components: - type: Transform pos: -26.5,-46.5 parent: 2 - - uid: 13367 - components: - - type: Transform - pos: -26.5,-44.5 - parent: 2 - - uid: 13370 + - uid: 13373 components: - type: Transform - pos: -25.5,-44.5 + pos: -18.5,-46.5 parent: 2 - - uid: 13371 + - uid: 21828 components: - type: Transform - pos: -22.5,-44.5 + pos: -70.5,-54.5 parent: 2 - - uid: 13372 + - uid: 21829 components: - type: Transform - pos: -21.5,-44.5 + pos: -69.5,-54.5 parent: 2 - - uid: 13373 + - uid: 21830 components: - type: Transform - pos: -18.5,-46.5 + pos: -68.5,-54.5 parent: 2 - - uid: 21828 + - uid: 24239 components: - type: Transform - pos: -70.5,-54.5 + rot: 1.5707963267948966 rad + pos: -25.5,-44.5 parent: 2 - - uid: 21829 + - uid: 24278 components: - type: Transform - pos: -69.5,-54.5 + rot: 1.5707963267948966 rad + pos: -19.5,-44.5 parent: 2 - - uid: 21830 + - uid: 28186 components: - type: Transform - pos: -68.5,-54.5 + rot: 1.5707963267948966 rad + pos: -18.5,-44.5 parent: 2 - uid: 43955 components: @@ -162284,6 +168745,12 @@ entities: - type: Transform pos: -55.5,-22.5 parent: 2 + - uid: 10881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 2 - uid: 20006 components: - type: Transform @@ -162294,12 +168761,6 @@ entities: - type: Transform pos: -85.5,-45.5 parent: 2 - - uid: 46047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-11.5 - parent: 2 - proto: CurtainsWhiteOpen entities: - uid: 5801 @@ -163609,15 +170070,6 @@ entities: text: Комната отдыха - type: WarpPoint location: СЕР - Комната отдыха - - uid: 4235 - components: - - type: Transform - pos: -32.5,34.5 - parent: 2 - - type: NavMapBeacon - text: Столовая - - type: WarpPoint - location: СЕР - Столовая - uid: 5279 components: - type: Transform @@ -164750,12 +171202,6 @@ entities: - type: Transform pos: -29.5,43.5 parent: 2 - - uid: 36214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,34.5 - parent: 2 - uid: 36230 components: - type: Transform @@ -165681,6 +172127,12 @@ entities: rot: 3.141592653589793 rad pos: 66.5,-10.5 parent: 2 + - uid: 57578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,100.5 + parent: 2 - proto: DisposalJunction entities: - uid: 9437 @@ -165947,6 +172399,12 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-25.5 parent: 2 + - uid: 57575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,100.5 + parent: 2 - proto: DisposalJunctionFlipped entities: - uid: 6208 @@ -165967,6 +172425,12 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-16.5 parent: 2 + - uid: 13372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-36.5 + parent: 2 - uid: 17158 components: - type: Transform @@ -166298,11 +172762,6 @@ entities: - type: Transform pos: -14.5,-89.5 parent: 2 - - uid: 24730 - components: - - type: Transform - pos: -70.5,29.5 - parent: 2 - uid: 25265 components: - type: Transform @@ -166497,6 +172956,18 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,31.5 parent: 2 + - uid: 13248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-36.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-36.5 + parent: 2 - uid: 13965 components: - type: Transform @@ -171026,11 +177497,6 @@ entities: - type: Transform pos: -10.5,-37.5 parent: 2 - - uid: 35937 - components: - - type: Transform - pos: -10.5,-36.5 - parent: 2 - uid: 35938 components: - type: Transform @@ -172293,17 +178759,6 @@ entities: - type: Transform pos: -32.5,36.5 parent: 2 - - uid: 36218 - components: - - type: Transform - pos: -32.5,35.5 - parent: 2 - - uid: 36219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,34.5 - parent: 2 - uid: 36220 components: - type: Transform @@ -173904,12 +180359,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,12.5 parent: 2 - - uid: 42277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-37.5 - parent: 2 - uid: 42300 components: - type: Transform @@ -178779,6 +185228,36 @@ entities: rot: 1.5707963267948966 rad pos: 70.5,-10.5 parent: 2 + - uid: 57572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,100.5 + parent: 2 + - uid: 57573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,100.5 + parent: 2 + - uid: 57574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,100.5 + parent: 2 + - uid: 57579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,101.5 + parent: 2 + - uid: 57580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,101.5 + parent: 2 - proto: DisposalPipeBroken entities: - uid: 24197 @@ -178870,6 +185349,12 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-1.5 parent: 2 + - uid: 13534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-36.5 + parent: 2 - uid: 14772 components: - type: Transform @@ -179352,17 +185837,6 @@ entities: - type: Transform pos: -40.5,-65.5 parent: 2 - - uid: 42274 - components: - - type: Transform - pos: -13.5,-36.5 - parent: 2 - - uid: 42276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-38.5 - parent: 2 - uid: 42568 components: - type: Transform @@ -179586,6 +186060,16 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,7.5 parent: 2 + - uid: 57576 + components: + - type: Transform + pos: -39.5,102.5 + parent: 2 + - uid: 57577 + components: + - type: Transform + pos: -37.5,102.5 + parent: 2 - proto: DisposalUnit entities: - uid: 1864 @@ -179758,6 +186242,11 @@ entities: - type: Transform pos: -68.5,67.5 parent: 2 + - uid: 13384 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 - uid: 13683 components: - type: Transform @@ -179813,6 +186302,11 @@ entities: - type: Transform pos: 3.5,-7.5 parent: 2 + - uid: 19168 + components: + - type: Transform + pos: -66.5,-27.5 + parent: 2 - uid: 20004 components: - type: Transform @@ -179843,11 +186337,6 @@ entities: - type: Transform pos: 25.5,-49.5 parent: 2 - - uid: 21588 - components: - - type: Transform - pos: -66.5,-27.5 - parent: 2 - uid: 22115 components: - type: Transform @@ -180023,11 +186512,6 @@ entities: - type: Transform pos: -40.5,-65.5 parent: 2 - - uid: 42265 - components: - - type: Transform - pos: -13.5,-36.5 - parent: 2 - uid: 42567 components: - type: Transform @@ -180898,11 +187382,6 @@ entities: - type: Transform pos: -1.5839367,80.05369 parent: 2 - - uid: 19653 - components: - - type: Transform - pos: 24.050106,-36.135323 - parent: 2 - uid: 19654 components: - type: Transform @@ -180927,8 +187406,7 @@ entities: - uid: 21913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.54766,-53.71548 + pos: -74.21208,-53.27104 parent: 2 - uid: 24428 components: @@ -180956,6 +187434,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 27766 + components: + - type: Transform + pos: 23.99946,-36.01836 + parent: 2 - uid: 28261 components: - type: Transform @@ -181452,8 +187935,7 @@ entities: - uid: 19317 components: - type: Transform - rot: 14.137166941154069 rad - pos: 82.47404,-23.40319 + pos: 84.30544,-22.549707 parent: 2 - type: Openable opened: True @@ -181607,16 +188089,6 @@ entities: - type: Transform pos: -19.48014,-11.345164 parent: 2 - - uid: 10947 - components: - - type: Transform - pos: 0.4752115,2.5045648 - parent: 2 - - uid: 10992 - components: - - type: Transform - pos: 0.2720865,2.5670648 - parent: 2 - uid: 11893 components: - type: Transform @@ -182385,12 +188857,6 @@ entities: rot: 3.141592653589793 rad pos: 20.800426,58.943165 parent: 2 - - uid: 5069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.489395,9.800206 - parent: 2 - uid: 6232 components: - type: Transform @@ -182454,14 +188920,12 @@ entities: - uid: 13277 components: - type: Transform - rot: 18.84955592153876 rad - pos: -13.386446,-41.047062 + pos: -13.962156,-40.24791 parent: 2 - uid: 13278 components: - type: Transform - rot: 18.84955592153876 rad - pos: -13.167696,-40.953312 + pos: -13.696531,-40.326035 parent: 2 - uid: 22323 components: @@ -182775,7 +189239,7 @@ entities: - uid: 13275 components: - type: Transform - pos: -13.386944,-40.408928 + pos: -13.868406,-40.388535 parent: 2 - uid: 13276 components: @@ -186380,11 +192844,6 @@ entities: parent: 2 - proto: FigureSpawner entities: - - uid: 25588 - components: - - type: Transform - pos: 11.5,-90.5 - parent: 2 - uid: 25592 components: - type: Transform @@ -186456,11 +192915,6 @@ entities: - type: Transform pos: -8.5,12.5 parent: 2 - - uid: 27766 - components: - - type: Transform - pos: 25.5,-74.5 - parent: 2 - proto: filingCabinetRandom entities: - uid: 8001 @@ -188437,6 +194891,20 @@ entities: parent: 66965 - proto: Firelock entities: + - uid: 1425 + components: + - type: Transform + pos: -36.5,-77.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51563 + - uid: 2877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,30.5 + parent: 2 - uid: 3181 components: - type: Transform @@ -188455,6 +194923,14 @@ entities: - type: DeviceNetwork deviceLists: - 50960 + - uid: 9090 + components: + - type: Transform + pos: -7.5,-76.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51594 - uid: 9868 components: - type: Transform @@ -188474,6 +194950,14 @@ entities: deviceLists: - 51056 - 22272 + - uid: 11501 + components: + - type: Transform + pos: -35.5,-77.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51563 - uid: 11862 components: - type: Transform @@ -188484,44 +194968,49 @@ entities: deviceLists: - 51056 - 22272 - - uid: 18326 + - uid: 15145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,85.5 + pos: -40.5,-80.5 parent: 2 - type: DeviceNetwork deviceLists: - - 56574 - - uid: 21670 + - 51563 + - uid: 16139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-29.5 + pos: -37.5,-77.5 parent: 2 - type: DeviceNetwork deviceLists: - - 51432 - - 51463 - - uid: 21674 + - 51563 + - uid: 16141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,70.5 + pos: -41.5,-80.5 parent: 2 - type: DeviceNetwork deviceLists: - - 25000 - - 22272 - - uid: 22270 + - 51563 + - uid: 18326 components: - type: Transform - pos: -41.5,-77.5 + rot: 1.5707963267948966 rad + pos: -61.5,85.5 parent: 2 - type: DeviceNetwork deviceLists: - - 51556 - - 51558 + - 56574 + - uid: 21674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25000 + - 22272 - uid: 22273 components: - type: Transform @@ -188541,16 +195030,6 @@ entities: deviceLists: - 51479 - 51483 - - uid: 22307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-79.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51563 - - 51558 - uid: 22311 components: - type: Transform @@ -188578,12 +195057,6 @@ entities: deviceLists: - 53124 - 50975 - - uid: 26708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,37.5 - parent: 2 - uid: 28699 components: - type: Transform @@ -188608,7 +195081,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 51621 + - 6966 - uid: 46387 components: - type: Transform @@ -188743,16 +195216,6 @@ entities: deviceLists: - 50975 - 51048 - - uid: 50988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 50975 - - 51048 - uid: 51051 components: - type: Transform @@ -189158,9 +195621,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51432 - uid: 51435 components: - type: Transform @@ -189322,25 +195782,6 @@ entities: deviceLists: - 51507 - 21676 - - uid: 51525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-78.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51557 - - 51558 - - uid: 51527 - components: - - type: Transform - pos: -40.5,-77.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51556 - - 51558 - uid: 51531 components: - type: Transform @@ -189349,7 +195790,7 @@ entities: - type: DeviceNetwork deviceLists: - 21676 - - 51530 + - 7514 - uid: 51532 components: - type: Transform @@ -189358,7 +195799,7 @@ entities: - type: DeviceNetwork deviceLists: - 21676 - - 51530 + - 7514 - uid: 51533 components: - type: Transform @@ -189367,27 +195808,7 @@ entities: - type: DeviceNetwork deviceLists: - 21676 - - 51557 - - uid: 51537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-79.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51557 - - 51558 - - uid: 51539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-78.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 51563 - - 51558 - uid: 51543 components: - type: Transform @@ -189395,7 +195816,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 51556 - 51563 - uid: 51544 components: @@ -189453,53 +195873,6 @@ entities: - type: DeviceNetwork deviceLists: - 51591 - - 51608 - - uid: 51595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-76.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51594 - - 51601 - - uid: 51596 - components: - - type: Transform - pos: -6.5,-78.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51601 - - 51605 - - uid: 51602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-76.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51601 - - 23688 - - uid: 51609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-89.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51608 - - uid: 51610 - components: - - type: Transform - pos: -1.5,-79.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23688 - uid: 51613 components: - type: Transform @@ -189509,7 +195882,6 @@ entities: - type: DeviceNetwork deviceLists: - 23685 - - 51621 - uid: 51615 components: - type: Transform @@ -189526,7 +195898,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 51621 - 51640 - uid: 51623 components: @@ -189565,31 +195936,6 @@ entities: - type: DeviceNetwork deviceLists: - 51685 - - uid: 51682 - components: - - type: Transform - pos: -0.5,-73.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23688 - - uid: 51683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-78.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 23688 - - uid: 51684 - components: - - type: Transform - pos: 1.5,-83.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51608 - uid: 51690 components: - type: Transform @@ -189648,8 +195994,34 @@ entities: - type: DeviceNetwork deviceLists: - 51508 + - uid: 58153 + components: + - type: Transform + pos: 25.5,-88.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23685 - proto: FirelockEdge entities: + - uid: 4460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50436 + - uid: 14797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50436 - uid: 23302 components: - type: Transform @@ -193398,7 +199770,6 @@ entities: - type: DeviceNetwork deviceLists: - 50922 - - 51432 - 50233 - uid: 47170 components: @@ -194767,7 +201138,7 @@ entities: - type: DeviceNetwork deviceLists: - 50292 - - 51556 + - 51563 - uid: 47824 components: - type: Transform @@ -195798,7 +202169,7 @@ entities: - type: DeviceNetwork deviceLists: - 50241 - - 51556 + - 51563 - uid: 50254 components: - type: Transform @@ -197731,6 +204102,11 @@ entities: - type: Transform pos: 7.5,-28.5 parent: 2 + - uid: 23682 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 - proto: Flash entities: - uid: 12183 @@ -198310,6 +204686,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 26167 + components: + - type: Transform + pos: -34.5,-62.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 26333 components: - type: Transform @@ -198375,6 +204758,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 57568 + components: + - type: Transform + pos: -59.5,50.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 67469 components: - type: Transform @@ -198426,12 +204816,24 @@ entities: - type: Transform pos: 76.88255,-51.551895 parent: 2 +- proto: FloorTileItemSteelMaint + entities: + - uid: 57665 + components: + - type: Transform + pos: 27.992336,-80.6987 + parent: 2 + - uid: 58224 + components: + - type: Transform + pos: 27.664211,-77.72995 + parent: 2 - proto: FloorTileItemTechmaint entities: - uid: 14647 components: - type: Transform - pos: 11.896925,-71.10906 + pos: 11.690011,-71.433655 parent: 2 - uid: 14659 components: @@ -198446,22 +204848,7 @@ entities: - uid: 14818 components: - type: Transform - pos: 29.7354,-71.94971 - parent: 2 - - uid: 14819 - components: - - type: Transform - pos: 24.970478,-72.20678 - parent: 2 - - uid: 14820 - components: - - type: Transform - pos: 24.219744,-69.57471 - parent: 2 - - uid: 14821 - components: - - type: Transform - pos: 22.227716,-72.659904 + pos: 31.820702,-69.546104 parent: 2 - uid: 14830 components: @@ -199283,34 +205670,6 @@ entities: - type: Transform pos: -53.5,-88.5 parent: 2 -- proto: FloraRockSolid01 - entities: - - uid: 17753 - components: - - type: Transform - pos: -6.558303,23.653564 - parent: 2 -- proto: FloraRockSolid02 - entities: - - uid: 17728 - components: - - type: Transform - pos: -6.2481594,21.480179 - parent: 2 -- proto: FloraRockSolid03 - entities: - - uid: 17727 - components: - - type: Transform - pos: -3.3887844,24.573929 - parent: 2 -- proto: FloraTree01 - entities: - - uid: 17470 - components: - - type: Transform - pos: 6.353304,-22.3615 - parent: 2 - proto: FloraTree02 entities: - uid: 3053 @@ -199329,22 +205688,8 @@ entities: - type: Transform pos: -109.82262,5.8065844 parent: 2 -- proto: FloraTree03 - entities: - - uid: 2603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.782745,-22.818901 - parent: 2 - proto: FloraTree04 entities: - - uid: 3323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.181183,-22.725151 - parent: 2 - uid: 5123 components: - type: Transform @@ -199368,21 +205713,16 @@ entities: parent: 2 - proto: FloraTree05 entities: - - uid: 10856 + - uid: 17736 components: - type: Transform - pos: -85.43367,54.41161 + pos: -47.5,-86.5 parent: 2 - uid: 18363 components: - type: Transform pos: -48.199867,-70.03037 parent: 2 - - uid: 22842 - components: - - type: Transform - pos: 6.090758,-40.060085 - parent: 2 - proto: FloraTree06 entities: - uid: 5127 @@ -199396,6 +205736,52 @@ entities: rot: -1.5707963267948966 rad pos: -110.31337,14.822002 parent: 2 +- proto: FloraTreeConifer01 + entities: + - uid: 17470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.9461102,-40.053867 + parent: 2 + - uid: 22184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 2 +- proto: FloraTreeConifer02 + entities: + - uid: 17624 + components: + - type: Transform + pos: 24.389744,-34.337658 + parent: 2 + - uid: 22185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.0367384,-21.538624 + parent: 2 + - uid: 58169 + components: + - type: Transform + pos: 11.541351,-34.097363 + parent: 2 +- proto: FloraTreeConifer03 + entities: + - uid: 9103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.4474,54.49666 + parent: 2 + - uid: 22939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 2 - proto: FloraTreeLarge01 entities: - uid: 4916 @@ -199455,50 +205841,75 @@ entities: rot: 1.5707963267948966 rad pos: -11.963481,76.495674 parent: 2 - - uid: 17996 +- proto: FloraTreeSnow01 + entities: + - uid: 22049 components: - type: Transform - pos: -5.764712,-22.742023 + rot: 1.5707963267948966 rad + pos: 5.50176,-22.012743 parent: 2 -- proto: FloraTreeSnow01 - entities: - uid: 22874 components: - type: Transform pos: 14.596069,-29.308952 parent: 2 -- proto: FloraTreeSnow02 - entities: - - uid: 22875 + - uid: 57666 components: - type: Transform - pos: 11.322582,-34.158028 + pos: 38.913868,-22.297705 parent: 2 - - uid: 22876 +- proto: FloraTreeSnow03 + entities: + - uid: 22155 components: - type: Transform - pos: 24.261028,-34.6108 + rot: 1.5707963267948966 rad + pos: -2.5,-22.5 parent: 2 -- proto: FloraTreeSnow03 +- proto: FloraTreeSnow04 entities: - - uid: 17622 + - uid: 12152 components: - type: Transform - pos: 5.552454,24.011429 + pos: 6.8808966,22.337303 parent: 2 -- proto: FloraTreeSnow04 + - uid: 17727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,23.5 + parent: 2 + - uid: 57667 + components: + - type: Transform + pos: 41.78,-22.229233 + parent: 2 +- proto: FloraTreeSnow05 entities: - - uid: 17624 + - uid: 17728 + components: + - type: Transform + pos: 5.486345,23.977928 + parent: 2 + - uid: 17996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,22.5 + parent: 2 + - uid: 57681 components: - type: Transform - pos: 7.318079,22.277054 + pos: 40.498287,-22.665224 parent: 2 -- proto: FloraTreeStump +- proto: FloraTreeStumpConifer entities: - - uid: 17730 + - uid: 22875 components: - type: Transform - pos: -3.3262844,22.808304 + rot: 1.5707963267948966 rad + pos: -4.9856253,-22.153368 parent: 2 - proto: FluteInstrument entities: @@ -199759,7 +206170,7 @@ entities: components: - type: Transform rot: 0.4014257279586958 rad - pos: 22.302797,-14.5622225 + pos: 22.102797,-14.462222 parent: 2 - proto: FoodBoxDonkpocket entities: @@ -200467,14 +206878,12 @@ entities: - uid: 13335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.386446,-41.500187 + pos: -14.649656,-40.34166 parent: 2 - uid: 13337 components: - type: Transform - rot: 18.84955592153876 rad - pos: -13.198946,-41.468937 + pos: -14.462156,-40.326035 parent: 2 - proto: FoodCondimentPacketKetchup entities: @@ -200491,13 +206900,6 @@ entities: - type: Transform pos: -76.69452,-18.250626 parent: 2 -- proto: FoodCornTrash - entities: - - uid: 15087 - components: - - type: Transform - pos: 25.782978,-72.441154 - parent: 2 - proto: FoodDonkpocket entities: - uid: 67473 @@ -200650,6 +207052,13 @@ entities: - type: Transform pos: 3.9244213,76.45947 parent: 2 +- proto: FoodFrozenFreezy + entities: + - uid: 58636 + components: + - type: Transform + pos: -45.45031,31.474321 + parent: 2 - proto: FoodFrozenPopsicleBerry entities: - uid: 4251 @@ -200985,13 +207394,6 @@ entities: - type: Transform pos: -26.636427,49.6767 parent: 2 -- proto: FoodLily - entities: - - uid: 23682 - components: - - type: Transform - pos: 17.46781,-10.39287 - parent: 2 - proto: FoodMealNachosCuban entities: - uid: 21959 @@ -201058,13 +207460,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodMeatClown - entities: - - uid: 23699 - components: - - type: Transform - pos: -54.56859,31.472355 - parent: 2 - proto: FoodMeatCooked entities: - uid: 42341 @@ -201194,1177 +207589,5609 @@ entities: - uid: 23707 components: - type: Transform - pos: -53.262577,39.631084 + pos: -53.262577,39.631084 + parent: 2 + - uid: 23708 + components: + - type: Transform + pos: -53.512577,39.55296 + parent: 2 + - uid: 52053 + components: + - type: MetaData + desc: Не о чем плакать, ведь это просто лук.. лук.. + name: Mister_onion + - type: Transform + parent: 53725 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodOrange + entities: + - uid: 20137 + components: + - type: Transform + pos: -60.480377,-20.453974 + parent: 2 + - uid: 20138 + components: + - type: Transform + pos: -60.667877,-20.438349 + parent: 2 + - uid: 20139 + components: + - type: Transform + pos: -60.496002,-20.344599 + parent: 2 +- proto: FoodPacketEnergyTrash + entities: + - uid: 51339 + components: + - type: Transform + pos: -50.81514,100.23626 + parent: 2 +- proto: FoodPelmeniBowl + entities: + - uid: 20663 + components: + - type: Transform + pos: -75.78827,-18.36 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 6892 + components: + - type: Transform + pos: -73.40362,20.516977 + parent: 2 + - uid: 6893 + components: + - type: Transform + pos: -73.74737,20.751352 + parent: 2 + - uid: 15005 + components: + - type: Transform + pos: 14.485073,-65.58852 + parent: 2 +- proto: FoodPieCherry + entities: + - uid: 23676 + components: + - type: Transform + pos: -49.62258,30.793201 + parent: 2 +- proto: FoodPineapple + entities: + - uid: 7127 + components: + - type: Transform + pos: -66.5,-23.5 + parent: 2 +- proto: FoodPizzaDankSlice + entities: + - uid: 14087 + components: + - type: Transform + pos: -90.86147,-44.139576 + parent: 2 + - uid: 14088 + components: + - type: Transform + pos: -88.6129,-52.48699 + parent: 2 + - uid: 14812 + components: + - type: Transform + pos: -83.753525,-51.377617 + parent: 2 +- proto: FoodPizzaPineapple + entities: + - uid: 22068 + components: + - type: Transform + pos: -74.58865,-29.233013 + parent: 2 +- proto: FoodPlate + entities: + - uid: 5822 + components: + - type: Transform + pos: -26.480177,49.692326 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: -47.51079,35.807465 + parent: 2 + - uid: 9853 + components: + - type: Transform + pos: -17.021214,22.789946 + parent: 2 + - uid: 14730 + components: + - type: Transform + pos: -1.548388,-67.30601 + parent: 2 + - uid: 15808 + components: + - type: Transform + pos: 35.57887,-60.467663 + parent: 2 +- proto: FoodPlatePlastic + entities: + - uid: 12106 + components: + - type: Transform + pos: -63.500496,59.657925 + parent: 2 + - uid: 25495 + components: + - type: Transform + pos: -71.50747,-40.20917 + parent: 2 +- proto: FoodPlateSmall + entities: + - uid: 6143 + components: + - type: Transform + pos: -47.47954,35.619965 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: -47.463917,35.44809 + parent: 2 + - uid: 9358 + components: + - type: Transform + pos: -75.52673,18.43534 + parent: 2 + - uid: 13133 + components: + - type: Transform + pos: -65.002556,-42.403526 + parent: 2 + - uid: 19849 + components: + - type: Transform + pos: -35.204338,-40.37989 + parent: 2 + - uid: 20100 + components: + - type: Transform + pos: -48.5136,-20.951069 + parent: 2 + - uid: 22038 + components: + - type: Transform + pos: -44.864975,-9.331411 + parent: 2 + - uid: 67475 + components: + - type: Transform + pos: 6.276919,20.57455 + parent: 66965 +- proto: FoodPlateSmallPlastic + entities: + - uid: 14854 + components: + - type: Transform + pos: 1.6148453,-68.29874 + parent: 2 + - uid: 25498 + components: + - type: Transform + pos: -72.429344,-40.381046 + parent: 2 + - uid: 25500 + components: + - type: Transform + pos: -70.616844,-40.381046 + parent: 2 +- proto: FoodPlateSmallTrash + entities: + - uid: 6145 + components: + - type: Transform + pos: -48.19829,34.994965 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: -50.546696,66.515015 + parent: 2 + - uid: 13128 + components: + - type: Transform + pos: -71.58937,-45.527275 + parent: 2 + - uid: 13130 + components: + - type: Transform + pos: -72.667496,-47.38665 + parent: 2 + - uid: 15107 + components: + - type: Transform + pos: 18.716545,-74.79738 + parent: 2 + - uid: 19331 + components: + - type: Transform + pos: 84.58669,-23.018457 + parent: 2 + - uid: 23047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.053776,-38.69099 + parent: 2 + - uid: 23048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.116276,-40.021156 + parent: 2 + - uid: 25594 + components: + - type: Transform + pos: -59.52144,-38.42507 + parent: 2 + - uid: 26230 + components: + - type: Transform + pos: -43.60793,-84.13608 + parent: 2 + - uid: 26231 + components: + - type: Transform + pos: -43.32668,-84.24545 + parent: 2 + - uid: 26232 + components: + - type: Transform + pos: -35.510174,-86.19423 + parent: 2 + - uid: 26233 + components: + - type: Transform + pos: -37.49455,-87.147354 + parent: 2 + - uid: 26543 + components: + - type: Transform + pos: -87.07754,-48.76173 + parent: 2 + - uid: 26544 + components: + - type: Transform + pos: -84.32754,-49.824234 + parent: 2 + - uid: 26545 + components: + - type: Transform + pos: -94.48379,-47.69923 + parent: 2 +- proto: FoodPlateTin + entities: + - uid: 9888 + components: + - type: Transform + pos: -49.441097,32.47271 + parent: 2 +- proto: FoodPlateTrash + entities: + - uid: 8033 + components: + - type: Transform + pos: 6.595563,-69.99574 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: -51.49982,61.60738 + parent: 2 + - uid: 12791 + components: + - type: Transform + pos: -63.28813,-42.171528 + parent: 2 + - uid: 15069 + components: + - type: Transform + pos: 9.439313,-71.71449 + parent: 2 + - uid: 15070 + components: + - type: Transform + pos: 12.736886,-71.29303 + parent: 2 + - uid: 15088 + components: + - type: Transform + pos: 14.111188,-72.05824 + parent: 2 + - uid: 15089 + components: + - type: Transform + pos: 18.482126,-81.74668 + parent: 2 + - uid: 19330 + components: + - type: Transform + pos: 84.46169,-23.252832 + parent: 2 + - uid: 23157 + components: + - type: Transform + pos: 37.76347,-53.493526 + parent: 2 + - uid: 23513 + components: + - type: Transform + pos: 34.553535,-67.07935 + parent: 2 + - uid: 23514 + components: + - type: Transform + pos: 34.539364,-65.72918 + parent: 2 + - uid: 26187 + components: + - type: Transform + pos: -42.904984,-90.459854 + parent: 2 + - uid: 26229 + components: + - type: Transform + pos: -38.51418,-83.47983 + parent: 2 +- proto: FoodPotato + entities: + - uid: 52063 + components: + - type: MetaData + desc: Гений, родившийся не в то время, не в том месте.. + name: LagInPotato + - type: Transform + parent: 53725 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodRiceBoiled + entities: + - uid: 53796 + components: + - type: MetaData + desc: Теплая миска с рисом, которым питались основатели станции. + - type: Transform + pos: -32.003624,-2.378239 + parent: 2 +- proto: FoodSaladCaesar + entities: + - uid: 67135 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67136 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67137 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67138 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67139 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSaladHerb + entities: + - uid: 67140 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67141 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67142 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSnackBoritos + entities: + - uid: 12823 + components: + - type: Transform + parent: 12820 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSnackChips + entities: + - uid: 10485 + components: + - type: Transform + pos: 3.3392222,-71.28217 + parent: 2 + - uid: 52101 + components: + - type: Transform + pos: -66.59662,6.6314754 + parent: 2 + - uid: 52102 + components: + - type: Transform + pos: -66.33099,6.6158504 + parent: 2 +- proto: FoodSnackChocolate + entities: + - uid: 7583 + components: + - type: Transform + pos: 11.254166,-28.489285 + parent: 2 + - uid: 16070 + components: + - type: Transform + parent: 16060 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16071 + components: + - type: Transform + parent: 16060 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27935 + components: + - type: Transform + pos: -47.676487,97.54744 + parent: 2 + - uid: 27946 + components: + - type: Transform + pos: -47.176487,96.844315 + parent: 2 + - uid: 51416 + components: + - type: Transform + pos: -14.76681,-61.03669 + parent: 2 + - uid: 53827 + components: + - type: Transform + pos: -56.104214,21.611847 + parent: 2 + - uid: 55488 + components: + - type: Transform + pos: 19.559834,-60.374218 + parent: 2 +- proto: FoodSnackEnergy + entities: + - uid: 12822 + components: + - type: Transform + parent: 12820 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 55487 + components: + - type: Transform + pos: 19.50037,-60.270157 + parent: 2 +- proto: FoodSnackEnergyBar + entities: + - uid: 12826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.63997,38.557076 + parent: 2 +- proto: FoodSnackPistachios + entities: + - uid: 52103 + components: + - type: Transform + pos: -66.59662,6.5846004 + parent: 2 + - uid: 52105 + components: + - type: Transform + pos: -66.31537,6.6002254 + parent: 2 +- proto: FoodSnackPopcorn + entities: + - uid: 22741 + components: + - type: Transform + pos: -26.7099,-33.349045 + parent: 2 + - uid: 22742 + components: + - type: Transform + pos: -26.24115,-33.3334 + parent: 2 + - uid: 22743 + components: + - type: Transform + pos: -18.706848,-33.31776 + parent: 2 + - uid: 22744 + components: + - type: Transform + pos: -18.300598,-33.395966 + parent: 2 + - uid: 28008 + components: + - type: Transform + pos: -53.4574,100.48738 + parent: 2 + - uid: 28009 + components: + - type: Transform + pos: -53.7074,100.628006 + parent: 2 + - uid: 28010 + components: + - type: Transform + pos: -53.441776,100.17488 + parent: 2 + - uid: 28013 + components: + - type: Transform + pos: -53.7074,100.26863 + parent: 2 +- proto: FoodSnackRaisins + entities: + - uid: 51415 + components: + - type: Transform + pos: -14.438685,-61.177315 + parent: 2 +- proto: FoodSnackSemki + entities: + - uid: 3812 + components: + - type: Transform + pos: -6.730415,88.49496 + parent: 2 +- proto: FoodSnackSyndi + entities: + - uid: 52106 + components: + - type: Transform + pos: -74.527115,12.64157 + parent: 2 +- proto: FoodSoupBeetRed + entities: + - uid: 23659 + components: + - type: Transform + pos: -36.5,32.75 + parent: 2 +- proto: FoodSoupMeatball + entities: + - uid: 67476 + components: + - type: Transform + pos: 1.5663261,18.699316 + parent: 66965 +- proto: FoodSoupMiso + entities: + - uid: 67143 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67144 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67145 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSoupMushroom + entities: + - uid: 20104 + components: + - type: Transform + pos: -115.47603,9.711614 + parent: 2 + - uid: 67146 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67147 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67148 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67149 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSoupNettle + entities: + - uid: 67150 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67151 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67152 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSoupPea + entities: + - uid: 67153 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67154 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67155 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67156 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 67157 + components: + - type: Transform + parent: 67061 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTacoShell + entities: + - uid: 21863 + components: + - type: Transform + pos: -78.55292,-5.4312887 + parent: 2 +- proto: FoodTinBeans + entities: + - uid: 30781 + components: + - type: Transform + pos: 63.343067,10.720699 + parent: 2 + - uid: 30782 + components: + - type: Transform + pos: 63.639942,10.783199 + parent: 2 +- proto: FoodTinBeansTrash + entities: + - uid: 15078 + components: + - type: Transform + pos: 14.155571,-69.62074 + parent: 2 + - uid: 23143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.477108,-35.009247 + parent: 2 + - uid: 23144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.430233,-38.14987 + parent: 2 + - uid: 26408 + components: + - type: Transform + pos: -90.98848,-47.574623 + parent: 2 + - uid: 30779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.639942,9.892574 + parent: 2 +- proto: FoodTinMRE + entities: + - uid: 30783 + components: + - type: Transform + pos: 61.624317,9.720699 + parent: 2 + - uid: 30784 + components: + - type: Transform + pos: 61.499317,9.548824 + parent: 2 +- proto: FoodTinMRETrash + entities: + - uid: 8903 + components: + - type: Transform + pos: 10.158063,-73.07387 + parent: 2 + - uid: 9205 + components: + - type: Transform + pos: 17.389946,-74.77699 + parent: 2 + - uid: 14471 + components: + - type: Transform + pos: 3.9097848,-74.685 + parent: 2 + - uid: 15067 + components: + - type: Transform + pos: 5.923688,-72.23012 + parent: 2 + - uid: 15072 + components: + - type: Transform + pos: 9.126813,-70.49574 + parent: 2 + - uid: 23506 + components: + - type: Transform + pos: 43.641388,-63.47616 + parent: 2 + - uid: 23507 + components: + - type: Transform + pos: 40.360138,-63.28866 + parent: 2 + - uid: 23509 + components: + - type: Transform + pos: 45.89996,-54.699585 + parent: 2 + - uid: 23517 + components: + - type: Transform + pos: 30.370678,-64.58375 + parent: 2 + - uid: 23518 + components: + - type: Transform + pos: 39.062702,-67.34937 + parent: 2 + - uid: 23520 + components: + - type: Transform + pos: 25.619265,-66.70875 + parent: 2 + - uid: 26398 + components: + - type: Transform + pos: -94.53082,-48.621105 + parent: 2 + - uid: 26399 + components: + - type: Transform + pos: -85.20909,-49.683605 + parent: 2 + - uid: 30780 + components: + - type: Transform + pos: 62.358692,11.001949 + parent: 2 +- proto: FoodTinPeaches + entities: + - uid: 27015 + components: + - type: Transform + pos: 53.33166,16.596632 + parent: 2 + - uid: 27016 + components: + - type: Transform + pos: 53.45666,16.768507 + parent: 2 + - uid: 27017 + components: + - type: Transform + pos: 53.61291,16.596632 + parent: 2 + - uid: 30777 + components: + - type: Transform + pos: 61.733692,10.736324 + parent: 2 + - uid: 30778 + components: + - type: Transform + pos: 61.436817,10.626949 + parent: 2 +- proto: FoodTinPeachesMaint + entities: + - uid: 24644 + components: + - type: Transform + pos: -66.37721,27.594013 + parent: 2 + - uid: 24645 + components: + - type: Transform + pos: -66.64284,27.578388 + parent: 2 + - uid: 24646 + components: + - type: Transform + pos: -66.48659,27.719013 + parent: 2 +- proto: FoodTinPeachesMaintOpen + entities: + - uid: 24647 + components: + - type: Transform + pos: -67.39284,28.562763 + parent: 2 +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 5330 + components: + - type: Transform + pos: 24.290903,-77.56066 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: 24.587778,-77.29504 + parent: 2 + - uid: 23154 + components: + - type: Transform + pos: 29.777647,-47.73175 + parent: 2 + - uid: 23155 + components: + - type: Transform + pos: 38.54298,-55.567177 + parent: 2 + - uid: 23156 + components: + - type: Transform + pos: 41.51173,-53.192177 + parent: 2 + - uid: 23516 + components: + - type: Transform + pos: 36.720028,-65.87623 + parent: 2 + - uid: 24648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.89284,26.859638 + parent: 2 + - uid: 26546 + components: + - type: Transform + pos: -94.45254,-47.19923 + parent: 2 +- proto: FoodTinPeachesTrash + entities: + - uid: 6376 + components: + - type: Transform + pos: 22.478607,-77.40441 + parent: 2 + - uid: 15074 + components: + - type: Transform + pos: 18.077446,-83.41678 + parent: 2 + - uid: 15077 + components: + - type: Transform + pos: 17.749321,-73.15199 + parent: 2 + - uid: 23145 + components: + - type: Transform + pos: 32.133358,-54.605324 + parent: 2 + - uid: 23146 + components: + - type: Transform + pos: 38.352108,-53.214703 + parent: 2 + - uid: 23503 + components: + - type: Transform + pos: 45.03229,-55.23962 + parent: 2 +- proto: FoodTomato + entities: + - uid: 28099 + components: + - type: Transform + pos: -43.509876,96.560555 + parent: 2 + - uid: 28102 + components: + - type: Transform + pos: -41.572376,94.654305 + parent: 2 + - uid: 30828 + components: + - type: Transform + pos: -41.39326,61.53008 + parent: 2 + - uid: 30829 + components: + - type: Transform + pos: -44.565136,60.53008 + parent: 2 + - uid: 52055 + components: + - type: MetaData + desc: Она потомок рода помидоров... + name: whysodora + - type: Transform + parent: 53725 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Football + entities: + - uid: 12684 + components: + - type: Transform + pos: -4.776064,79.73675 + parent: 2 + - uid: 21423 + components: + - type: Transform + pos: -31.521069,-25.355053 + parent: 2 +- proto: ForensicPad + entities: + - uid: 19991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.37872,-5.302908 + parent: 2 + - uid: 20029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.488094,-5.365408 + parent: 2 + - uid: 20082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.62872,-5.490408 + parent: 2 + - uid: 20164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.33751,-19.770199 + parent: 2 + - uid: 20165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.446884,-19.723324 + parent: 2 +- proto: Fork + entities: + - uid: 14817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.532763,-67.80601 + parent: 2 + - uid: 20308 + components: + - type: Transform + pos: -31.824013,-29.300835 + parent: 2 + - uid: 20309 + components: + - type: Transform + pos: -23.331194,-29.39468 + parent: 2 + - uid: 20831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.303894,-18.51625 + parent: 2 +- proto: ForkPlastic + entities: + - uid: 20277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.464634,-29.347757 + parent: 2 + - uid: 20307 + components: + - type: Transform + pos: -25.549944,-29.441605 + parent: 2 +- proto: FuelDispenser + entities: + - uid: 13740 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 2 +- proto: Fulton1 + entities: + - uid: 9254 + components: + - type: Transform + pos: -59.42467,-86.37983 + parent: 2 +- proto: GarlandsOff + entities: + - uid: 3323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-32.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-24.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: 36.5,37.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-19.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-20.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-26.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 2 + - uid: 7133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-20.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-60.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + pos: -47.5,57.5 + parent: 2 + - uid: 9255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,54.5 + parent: 2 + - uid: 9264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,3.5 + parent: 2 + - uid: 9265 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 9275 + components: + - type: Transform + pos: 128.5,-55.5 + parent: 2 + - uid: 9324 + components: + - type: Transform + pos: 134.5,-55.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: 133.5,-55.5 + parent: 2 + - uid: 9447 + components: + - type: Transform + pos: 129.5,-55.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - uid: 9908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-58.5 + parent: 2 + - uid: 10394 + components: + - type: Transform + pos: 127.5,-55.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,55.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-9.5 + parent: 2 + - uid: 10689 + components: + - type: Transform + pos: -48.5,57.5 + parent: 2 + - uid: 10794 + components: + - type: Transform + pos: 33.5,37.5 + parent: 2 + - uid: 10874 + components: + - type: Transform + pos: -46.5,57.5 + parent: 2 + - uid: 10876 + components: + - type: Transform + pos: -38.5,57.5 + parent: 2 + - uid: 10887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-11.5 + parent: 2 + - uid: 10899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-11.5 + parent: 2 + - uid: 10945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,25.5 + parent: 2 + - uid: 10992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-23.5 + parent: 2 + - uid: 11036 + components: + - type: Transform + pos: 30.5,45.5 + parent: 2 + - uid: 11206 + components: + - type: Transform + pos: 128.5,-57.5 + parent: 2 + - uid: 11269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,49.5 + parent: 2 + - uid: 12153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-9.5 + parent: 2 + - uid: 14052 + components: + - type: Transform + pos: -99.5,64.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-14.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,25.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,46.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,29.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-17.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + pos: 30.5,41.5 + parent: 2 + - uid: 14526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-23.5 + parent: 2 + - uid: 14618 + components: + - type: Transform + pos: -101.5,64.5 + parent: 2 + - uid: 14780 + components: + - type: Transform + pos: -39.5,57.5 + parent: 2 + - uid: 14781 + components: + - type: Transform + pos: -40.5,57.5 + parent: 2 + - uid: 14800 + components: + - type: Transform + pos: 31.5,45.5 + parent: 2 + - uid: 14819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,25.5 + parent: 2 + - uid: 14820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,25.5 + parent: 2 + - uid: 14821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 2 + - uid: 14921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,47.5 + parent: 2 + - uid: 15087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 2 + - uid: 15148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-1.5 + parent: 2 + - uid: 15149 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 15153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,25.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,46.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,44.5 + parent: 2 + - uid: 16178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-27.5 + parent: 2 + - uid: 17507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-27.5 + parent: 2 + - uid: 19981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-23.5 + parent: 2 + - uid: 20218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - uid: 20445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,34.5 + parent: 2 + - uid: 20446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,33.5 + parent: 2 + - uid: 20552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,48.5 + parent: 2 + - uid: 20665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-23.5 + parent: 2 + - uid: 20801 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 21064 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 21067 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 21420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + - uid: 21465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,36.5 + parent: 2 + - uid: 21496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,41.5 + parent: 2 + - uid: 21519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,34.5 + parent: 2 + - uid: 21772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,36.5 + parent: 2 + - uid: 22045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,38.5 + parent: 2 + - uid: 22054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,38.5 + parent: 2 + - uid: 22059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-27.5 + parent: 2 + - uid: 22060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 2 + - uid: 22061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,10.5 + parent: 2 + - uid: 22062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-27.5 + parent: 2 + - uid: 22076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-27.5 + parent: 2 + - uid: 22078 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 22089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-26.5 + parent: 2 + - uid: 22093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,5.5 + parent: 2 + - uid: 22109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,47.5 + parent: 2 + - uid: 22158 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 22160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,49.5 + parent: 2 + - uid: 22161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,6.5 + parent: 2 + - uid: 22166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,49.5 + parent: 2 + - uid: 22175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,46.5 + parent: 2 + - uid: 22187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,11.5 + parent: 2 + - uid: 22201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,9.5 + parent: 2 + - uid: 22258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,8.5 + parent: 2 + - uid: 22293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-14.5 + parent: 2 + - uid: 22717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-13.5 + parent: 2 + - uid: 22718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-30.5 + parent: 2 + - uid: 23596 + components: + - type: Transform + pos: -100.5,64.5 + parent: 2 + - uid: 23597 + components: + - type: Transform + pos: -100.5,60.5 + parent: 2 + - uid: 24187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-17.5 + parent: 2 + - uid: 24188 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 24195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-36.5 + parent: 2 + - uid: 24196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-34.5 + parent: 2 + - uid: 24198 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 24786 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 25155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - uid: 25617 + components: + - type: Transform + pos: -104.5,64.5 + parent: 2 + - uid: 26117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-35.5 + parent: 2 + - uid: 26156 + components: + - type: Transform + pos: 9.5,-55.5 + parent: 2 + - uid: 26708 + components: + - type: Transform + pos: 11.5,-55.5 + parent: 2 + - uid: 26810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-31.5 + parent: 2 + - uid: 26924 + components: + - type: Transform + pos: 9.5,-59.5 + parent: 2 + - uid: 27038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 2 + - uid: 27678 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 2 + - uid: 27683 + components: + - type: Transform + pos: 11.5,-59.5 + parent: 2 + - uid: 28033 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 28062 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 28729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,14.5 + parent: 2 + - uid: 28946 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - uid: 30078 + components: + - type: Transform + pos: -101.5,60.5 + parent: 2 + - uid: 30145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,24.5 + parent: 2 + - uid: 30276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,20.5 + parent: 2 + - uid: 30560 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 30742 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 30847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,1.5 + parent: 2 + - uid: 31092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,24.5 + parent: 2 + - uid: 31395 + components: + - type: Transform + pos: -105.5,64.5 + parent: 2 + - uid: 31443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,21.5 + parent: 2 + - uid: 31722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-40.5 + parent: 2 + - uid: 31751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,18.5 + parent: 2 + - uid: 32081 + components: + - type: Transform + pos: -1.5,-67.5 + parent: 2 + - uid: 32223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-64.5 + parent: 2 + - uid: 32393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,30.5 + parent: 2 + - uid: 32402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,14.5 + parent: 2 + - uid: 32411 + components: + - type: Transform + pos: -45.5,-20.5 + parent: 2 + - uid: 32489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-26.5 + parent: 2 + - uid: 35482 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 + - uid: 35878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,47.5 + parent: 2 + - uid: 40680 + components: + - type: Transform + pos: -105.5,48.5 + parent: 2 + - uid: 40688 + components: + - type: Transform + pos: -99.5,60.5 + parent: 2 + - uid: 40919 + components: + - type: Transform + pos: 33.5,48.5 + parent: 2 + - uid: 44105 + components: + - type: Transform + pos: 35.5,48.5 + parent: 2 + - uid: 46834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,18.5 + parent: 2 + - uid: 47481 + components: + - type: Transform + pos: -106.5,60.5 + parent: 2 + - uid: 47672 + components: + - type: Transform + pos: -94.5,43.5 + parent: 2 + - uid: 50555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,42.5 + parent: 2 + - uid: 50556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,44.5 + parent: 2 + - uid: 50557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + - uid: 50558 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 50967 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - uid: 51596 + components: + - type: Transform + pos: -106.5,64.5 + parent: 2 + - uid: 57627 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 57630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,14.5 + parent: 2 + - uid: 57631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,13.5 + parent: 2 + - uid: 57632 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 57633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,25.5 + parent: 2 + - uid: 57634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,20.5 + parent: 2 + - uid: 57635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,20.5 + parent: 2 + - uid: 57639 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 57645 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 57646 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 57647 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 57648 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 57649 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 57650 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 57651 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 57653 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 57654 + components: + - type: Transform + pos: -50.5,29.5 + parent: 2 + - uid: 57672 + components: + - type: Transform + pos: 42.5,-27.5 + parent: 2 + - uid: 57673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,15.5 + parent: 2 + - uid: 57674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,47.5 + parent: 2 + - uid: 57675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,47.5 + parent: 2 + - uid: 57680 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 2 + - uid: 57682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 57683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,35.5 + parent: 2 + - uid: 57686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,35.5 + parent: 2 + - uid: 57693 + components: + - type: Transform + pos: -49.5,29.5 + parent: 2 + - uid: 57694 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 57695 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 57696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-18.5 + parent: 2 + - uid: 57698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-31.5 + parent: 2 + - uid: 57699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-37.5 + parent: 2 + - uid: 57700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-37.5 + parent: 2 + - uid: 57702 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 57703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + - uid: 57704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,1.5 + parent: 2 + - uid: 57705 + components: + - type: Transform + pos: -2.5,-67.5 + parent: 2 + - uid: 57706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 2 + - uid: 57707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-8.5 + parent: 2 + - uid: 57708 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 57709 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 2 + - uid: 57710 + components: + - type: Transform + pos: 44.5,-17.5 + parent: 2 + - uid: 57711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-11.5 + parent: 2 + - uid: 57712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 57713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 2 + - uid: 57714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 2 + - uid: 57715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 2 + - uid: 57716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 2 + - uid: 57717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 2 + - uid: 57718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 2 + - uid: 57719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 57720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 57721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 2 + - uid: 57722 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 2 + - uid: 57723 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 57724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - uid: 57725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 2 + - uid: 57726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 2 + - uid: 57727 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 57728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-4.5 + parent: 2 + - uid: 57729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 136.5,-56.5 + parent: 2 + - uid: 57730 + components: + - type: Transform + pos: 135.5,-57.5 + parent: 2 + - uid: 57731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 2 + - uid: 57732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - uid: 57733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 2 + - uid: 57734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-9.5 + parent: 2 + - uid: 57735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 2 + - uid: 57736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 2 + - uid: 57737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 2 + - uid: 57741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,13.5 + parent: 2 + - uid: 57742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 2 + - uid: 57743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 2 + - uid: 57744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 57745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + - uid: 57746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + - uid: 57747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-16.5 + parent: 2 + - uid: 57749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + - uid: 57750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - uid: 57751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - uid: 57752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 2 + - uid: 57753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 2 + - uid: 57754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + - uid: 57755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 + - uid: 57756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + - uid: 57757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 2 + - uid: 57758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - uid: 57759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-18.5 + parent: 2 + - uid: 57760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-18.5 + parent: 2 + - uid: 57761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-18.5 + parent: 2 + - uid: 57762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - uid: 57763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-14.5 + parent: 2 + - uid: 57764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-17.5 + parent: 2 + - uid: 57765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-28.5 + parent: 2 + - uid: 57766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-28.5 + parent: 2 + - uid: 57767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-28.5 + parent: 2 + - uid: 57768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-28.5 + parent: 2 + - uid: 57769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-28.5 + parent: 2 + - uid: 57770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-28.5 + parent: 2 + - uid: 57771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-34.5 + parent: 2 + - uid: 57772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-34.5 + parent: 2 + - uid: 57773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-34.5 + parent: 2 + - uid: 57774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-34.5 + parent: 2 + - uid: 57775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-34.5 + parent: 2 + - uid: 57776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-34.5 + parent: 2 + - uid: 57777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-22.5 + parent: 2 + - uid: 57778 + components: + - type: Transform + pos: 134.5,-57.5 + parent: 2 + - uid: 57779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-18.5 + parent: 2 + - uid: 57780 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - uid: 57781 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 57782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-13.5 + parent: 2 + - uid: 57783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-15.5 + parent: 2 + - uid: 57784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-16.5 + parent: 2 + - uid: 57785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,24.5 + parent: 2 + - uid: 57786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 2 + - uid: 57787 + components: + - type: Transform + pos: -0.5,52.5 + parent: 2 + - uid: 57788 + components: + - type: Transform + pos: 0.5,52.5 + parent: 2 + - uid: 57789 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 57790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,24.5 + parent: 2 + - uid: 57791 + components: + - type: Transform + pos: 133.5,-57.5 + parent: 2 + - uid: 57792 + components: + - type: Transform + pos: 135.5,-55.5 + parent: 2 + - uid: 57793 + components: + - type: Transform + pos: 129.5,-57.5 + parent: 2 + - uid: 57794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,42.5 + parent: 2 + - uid: 57795 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 57796 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 57797 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 57798 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 57799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-16.5 + parent: 2 + - uid: 57800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-15.5 + parent: 2 + - uid: 57801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-21.5 + parent: 2 + - uid: 57802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-21.5 + parent: 2 + - uid: 57803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-21.5 + parent: 2 + - uid: 57804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-21.5 + parent: 2 + - uid: 57805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,39.5 + parent: 2 + - uid: 57806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-16.5 + parent: 2 + - uid: 57807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-16.5 + parent: 2 + - uid: 57808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 + - uid: 57809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-14.5 + parent: 2 + - uid: 57810 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 57811 + components: + - type: Transform + pos: -48.5,-8.5 + parent: 2 + - uid: 57812 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 57813 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 57814 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 2 + - uid: 57820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-28.5 + parent: 2 + - uid: 57821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 2 + - uid: 57822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-28.5 + parent: 2 + - uid: 57823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-28.5 + parent: 2 + - uid: 57824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 2 + - uid: 57825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-30.5 + parent: 2 + - uid: 57826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-31.5 + parent: 2 + - uid: 57827 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 57828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-14.5 + parent: 2 + - uid: 57829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-14.5 + parent: 2 + - uid: 57830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-14.5 + parent: 2 + - uid: 57831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,40.5 + parent: 2 + - uid: 57832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,25.5 + parent: 2 + - uid: 57833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,43.5 + parent: 2 + - uid: 57834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,44.5 + parent: 2 + - uid: 57835 + components: + - type: Transform + pos: -39.5,38.5 + parent: 2 + - uid: 57836 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 57837 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 57838 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 57839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,0.5 + parent: 2 + - uid: 57840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + - uid: 57841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,39.5 + parent: 2 + - uid: 57842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,37.5 + parent: 2 + - uid: 57843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,38.5 + parent: 2 + - uid: 57844 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 57845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-54.5 + parent: 2 + - uid: 57846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-53.5 + parent: 2 + - uid: 57847 + components: + - type: Transform + pos: 127.5,-57.5 + parent: 2 + - uid: 57848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-55.5 + parent: 2 + - uid: 57849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-55.5 + parent: 2 + - uid: 57850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 57851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,-14.5 + parent: 2 + - uid: 57852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,-13.5 + parent: 2 + - uid: 57853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,-15.5 + parent: 2 + - uid: 57854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,-16.5 + parent: 2 + - uid: 57855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,-17.5 + parent: 2 + - uid: 57856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-16.5 + parent: 2 + - uid: 57857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-54.5 + parent: 2 + - uid: 57858 + components: + - type: Transform + pos: -36.5,41.5 + parent: 2 + - uid: 57859 + components: + - type: Transform + pos: -34.5,41.5 + parent: 2 + - uid: 57860 + components: + - type: Transform + pos: -33.5,41.5 + parent: 2 + - uid: 57861 + components: + - type: Transform + pos: -32.5,41.5 + parent: 2 + - uid: 57862 + components: + - type: Transform + pos: -31.5,41.5 + parent: 2 + - uid: 57863 + components: + - type: Transform + pos: -35.5,41.5 + parent: 2 + - uid: 57864 + components: + - type: Transform + pos: -31.5,46.5 + parent: 2 + - uid: 57865 + components: + - type: Transform + pos: -30.5,46.5 + parent: 2 + - uid: 57866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-53.5 + parent: 2 + - uid: 57867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-53.5 + parent: 2 + - uid: 57870 + components: + - type: Transform + pos: -105.5,60.5 + parent: 2 + - uid: 57881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-60.5 + parent: 2 + - uid: 57883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-59.5 + parent: 2 + - uid: 57884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 2 + - uid: 57885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,29.5 + parent: 2 + - uid: 57886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,29.5 + parent: 2 + - uid: 57887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,29.5 + parent: 2 + - uid: 57888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,29.5 + parent: 2 + - uid: 57889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,25.5 + parent: 2 + - uid: 57890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 + - uid: 57891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 2 + - uid: 57892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,35.5 + parent: 2 + - uid: 57893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-61.5 + parent: 2 + - uid: 57894 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 2 + - uid: 57895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,47.5 + parent: 2 + - uid: 57896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-39.5 + parent: 2 + - uid: 57897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-61.5 + parent: 2 + - uid: 57898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-57.5 + parent: 2 + - uid: 57899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-59.5 + parent: 2 + - uid: 57900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-60.5 + parent: 2 + - uid: 57901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-58.5 + parent: 2 + - uid: 57902 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 2 + - uid: 57903 + components: + - type: Transform + pos: 1.5,-61.5 + parent: 2 + - uid: 57904 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 2 + - uid: 57905 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 2 + - uid: 57906 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 2 + - uid: 57907 + components: + - type: Transform + pos: 15.5,-50.5 + parent: 2 + - uid: 57908 + components: + - type: Transform + pos: 18.5,-50.5 + parent: 2 + - uid: 57909 + components: + - type: Transform + pos: 17.5,-50.5 + parent: 2 + - uid: 57910 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 57911 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 57912 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 57913 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 57914 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 57915 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 2 + - uid: 57916 + components: + - type: Transform + pos: 13.5,-48.5 + parent: 2 + - uid: 57917 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 + - uid: 57918 + components: + - type: Transform + pos: 15.5,-48.5 + parent: 2 + - uid: 57919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-40.5 + parent: 2 + - uid: 57920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-42.5 + parent: 2 + - uid: 57923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-42.5 + parent: 2 + - uid: 57924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-63.5 + parent: 2 + - uid: 57925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-63.5 + parent: 2 + - uid: 57926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-63.5 + parent: 2 + - uid: 57927 + components: + - type: Transform + pos: 45.5,-32.5 + parent: 2 + - uid: 57928 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 2 + - uid: 57929 + components: + - type: Transform + pos: 45.5,-30.5 + parent: 2 + - uid: 57930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-46.5 + parent: 2 + - uid: 57931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-46.5 + parent: 2 + - uid: 57932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-46.5 + parent: 2 + - uid: 57933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-46.5 + parent: 2 + - uid: 57934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-46.5 + parent: 2 + - uid: 57935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-46.5 + parent: 2 + - uid: 57936 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 57937 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 2 + - uid: 57938 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - uid: 57939 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 57940 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 + - uid: 57941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-42.5 + parent: 2 + - uid: 57942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-63.5 + parent: 2 + - uid: 57943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-63.5 + parent: 2 + - uid: 57944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-63.5 + parent: 2 + - uid: 57945 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 57946 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 2 + - uid: 57947 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 2 + - uid: 57948 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 57949 + components: + - type: Transform + pos: -20.5,-56.5 + parent: 2 + - uid: 57950 + components: + - type: Transform + pos: -19.5,-56.5 + parent: 2 + - uid: 57951 + components: + - type: Transform + pos: -20.5,-63.5 + parent: 2 + - uid: 57952 + components: + - type: Transform + pos: -18.5,-63.5 + parent: 2 + - uid: 57953 + components: + - type: Transform + pos: -19.5,-63.5 + parent: 2 + - uid: 57954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-43.5 + parent: 2 + - uid: 57955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-44.5 + parent: 2 + - uid: 57956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-53.5 + parent: 2 + - uid: 57957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-59.5 + parent: 2 + - uid: 57958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-60.5 + parent: 2 + - uid: 57959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-61.5 + parent: 2 + - uid: 57960 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 57961 + components: + - type: Transform + pos: 85.5,6.5 + parent: 2 + - uid: 57962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,1.5 + parent: 2 + - uid: 57963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,3.5 + parent: 2 + - uid: 57964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 + parent: 2 + - uid: 57965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-2.5 + parent: 2 + - uid: 57966 + components: + - type: Transform + pos: 86.5,6.5 + parent: 2 + - uid: 57967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-7.5 + parent: 2 + - uid: 57968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-5.5 + parent: 2 + - uid: 57969 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 + - uid: 57970 + components: + - type: Transform + pos: 54.5,-4.5 + parent: 2 + - uid: 57980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-26.5 + parent: 2 + - uid: 57981 + components: + - type: Transform + pos: 46.5,-30.5 + parent: 2 + - uid: 57982 + components: + - type: Transform + pos: 44.5,-30.5 + parent: 2 + - uid: 57983 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 2 + - uid: 57984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,3.5 + parent: 2 + - uid: 57985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,0.5 + parent: 2 + - uid: 57986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,2.5 + parent: 2 + - uid: 57987 + components: + - type: Transform + pos: 75.5,3.5 + parent: 2 + - uid: 57988 + components: + - type: Transform + pos: 72.5,3.5 + parent: 2 + - uid: 57989 + components: + - type: Transform + pos: 78.5,10.5 + parent: 2 + - uid: 57990 + components: + - type: Transform + pos: 80.5,10.5 + parent: 2 + - uid: 57991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,10.5 + parent: 2 + - uid: 57992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,9.5 + parent: 2 + - uid: 57993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,8.5 + parent: 2 + - uid: 57994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,10.5 + parent: 2 + - uid: 57995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,9.5 + parent: 2 + - uid: 57996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,8.5 + parent: 2 + - uid: 57997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,4.5 + parent: 2 + - uid: 57998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,4.5 + parent: 2 + - uid: 57999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,4.5 + parent: 2 + - uid: 58000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,4.5 + parent: 2 + - uid: 58001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,4.5 + parent: 2 + - uid: 58002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,4.5 + parent: 2 + - uid: 58003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,4.5 + parent: 2 + - uid: 58004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,4.5 + parent: 2 + - uid: 58005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,4.5 + parent: 2 + - uid: 58006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,14.5 + parent: 2 + - uid: 58007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,14.5 + parent: 2 + - uid: 58008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,14.5 + parent: 2 + - uid: 58009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,14.5 + parent: 2 + - uid: 58010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,14.5 + parent: 2 + - uid: 58011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,5.5 + parent: 2 + - uid: 58012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,4.5 + parent: 2 + - uid: 58013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,13.5 + parent: 2 + - uid: 58014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,14.5 + parent: 2 + - uid: 58015 + components: + - type: Transform + pos: -71.5,19.5 + parent: 2 + - uid: 58016 + components: + - type: Transform + pos: -69.5,19.5 + parent: 2 + - uid: 58017 + components: + - type: Transform + pos: -70.5,19.5 + parent: 2 + - uid: 58018 + components: + - type: Transform + pos: 79.5,10.5 + parent: 2 + - uid: 58019 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 58021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,53.5 + parent: 2 + - uid: 58023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,53.5 + parent: 2 + - uid: 58025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-33.5 + parent: 2 + - uid: 58026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-35.5 + parent: 2 + - uid: 58027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,6.5 + parent: 2 + - uid: 58028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,6.5 + parent: 2 + - uid: 58029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,6.5 + parent: 2 + - uid: 58030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,64.5 + parent: 2 + - uid: 58031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,64.5 + parent: 2 + - uid: 58032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,53.5 + parent: 2 + - uid: 58033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,52.5 + parent: 2 + - uid: 58034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,49.5 + parent: 2 + - uid: 58035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,52.5 + parent: 2 + - uid: 58036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 2 + - uid: 58039 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 58040 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 58041 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 58042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,31.5 + parent: 2 + - uid: 58043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,32.5 + parent: 2 + - uid: 58044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,35.5 + parent: 2 + - uid: 58045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,36.5 + parent: 2 + - uid: 58046 + components: + - type: Transform + pos: 55.5,8.5 + parent: 2 + - uid: 58047 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - uid: 58048 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 58049 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 58050 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - uid: 58051 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 58054 + components: + - type: Transform + pos: 90.5,-16.5 + parent: 2 + - uid: 58055 + components: + - type: Transform + pos: 89.5,-16.5 + parent: 2 + - uid: 58056 + components: + - type: Transform + pos: 89.5,-12.5 + parent: 2 + - uid: 58057 + components: + - type: Transform + pos: 90.5,-12.5 + parent: 2 + - uid: 58058 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 58059 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 58060 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 58061 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 58062 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 58063 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 58064 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - uid: 58065 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 58066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,52.5 + parent: 2 + - uid: 58067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,52.5 + parent: 2 + - uid: 58068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,52.5 + parent: 2 + - uid: 58069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,29.5 + parent: 2 + - uid: 58070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,29.5 + parent: 2 + - uid: 58071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,29.5 + parent: 2 + - uid: 58072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-30.5 + parent: 2 + - uid: 58073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-29.5 + parent: 2 + - uid: 58074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-29.5 + parent: 2 + - uid: 58075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-20.5 + parent: 2 + - uid: 58078 + components: + - type: Transform + pos: -7.5,72.5 + parent: 2 + - uid: 58079 + components: + - type: Transform + pos: -5.5,72.5 + parent: 2 + - uid: 58080 + components: + - type: Transform + pos: -6.5,72.5 + parent: 2 + - uid: 58082 + components: + - type: Transform + pos: 36.5,42.5 + parent: 2 + - uid: 58083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,45.5 + parent: 2 + - uid: 58084 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 58085 + components: + - type: Transform + pos: -40.5,3.5 + parent: 2 + - uid: 58086 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 58087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,57.5 + parent: 2 + - uid: 58088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,57.5 + parent: 2 + - uid: 58089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,57.5 + parent: 2 + - uid: 58090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,51.5 + parent: 2 + - uid: 58091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,51.5 + parent: 2 + - uid: 58092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,51.5 + parent: 2 + - uid: 58093 + components: + - type: Transform + pos: -99.5,56.5 + parent: 2 + - uid: 58094 + components: + - type: Transform + pos: -101.5,56.5 + parent: 2 + - uid: 58095 + components: + - type: Transform + pos: -100.5,56.5 + parent: 2 + - uid: 58096 + components: + - type: Transform + pos: -99.5,52.5 + parent: 2 + - uid: 58097 + components: + - type: Transform + pos: -101.5,52.5 + parent: 2 + - uid: 58098 + components: + - type: Transform + pos: -100.5,52.5 + parent: 2 + - uid: 58099 + components: + - type: Transform + pos: -104.5,52.5 + parent: 2 + - uid: 58100 + components: + - type: Transform + pos: -106.5,52.5 + parent: 2 + - uid: 58101 + components: + - type: Transform + pos: -105.5,52.5 + parent: 2 + - uid: 58102 + components: + - type: Transform + pos: -104.5,56.5 + parent: 2 + - uid: 58103 + components: + - type: Transform + pos: -105.5,56.5 + parent: 2 + - uid: 58104 + components: + - type: Transform + pos: -106.5,56.5 + parent: 2 + - uid: 58105 + components: + - type: Transform + pos: -104.5,60.5 + parent: 2 + - uid: 58112 + components: + - type: Transform + pos: -104.5,48.5 + parent: 2 + - uid: 58113 + components: + - type: Transform + pos: -106.5,48.5 + parent: 2 + - uid: 58114 + components: + - type: Transform + pos: -104.5,44.5 + parent: 2 + - uid: 58115 + components: + - type: Transform + pos: -105.5,44.5 + parent: 2 + - uid: 58116 + components: + - type: Transform + pos: -106.5,44.5 + parent: 2 + - uid: 58117 + components: + - type: Transform + pos: -100.5,44.5 + parent: 2 + - uid: 58118 + components: + - type: Transform + pos: -99.5,44.5 + parent: 2 + - uid: 58119 + components: + - type: Transform + pos: -101.5,44.5 + parent: 2 + - uid: 58120 + components: + - type: Transform + pos: -101.5,48.5 + parent: 2 + - uid: 58121 + components: + - type: Transform + pos: -99.5,48.5 + parent: 2 + - uid: 58122 + components: + - type: Transform + pos: -100.5,48.5 + parent: 2 + - uid: 58123 + components: + - type: Transform + pos: -94.5,65.5 + parent: 2 + - uid: 58124 + components: + - type: Transform + pos: -92.5,65.5 + parent: 2 + - uid: 58125 + components: + - type: Transform + pos: -93.5,65.5 + parent: 2 + - uid: 58126 + components: + - type: Transform + pos: -92.5,43.5 + parent: 2 + - uid: 58127 + components: + - type: Transform + pos: -93.5,43.5 + parent: 2 + - uid: 58129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,46.5 + parent: 2 + - uid: 58130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,44.5 + parent: 2 + - uid: 58131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,45.5 + parent: 2 + - uid: 58132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,62.5 + parent: 2 + - uid: 58133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,63.5 + parent: 2 + - uid: 58134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,64.5 + parent: 2 + - uid: 58152 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 58155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,24.5 + parent: 2 + - uid: 58156 + components: + - type: Transform + pos: 28.5,37.5 + parent: 2 + - uid: 58157 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 58179 + components: + - type: Transform + pos: 30.5,37.5 + parent: 2 + - uid: 58180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 2 + - uid: 58181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-0.5 + parent: 2 + - uid: 58185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,21.5 + parent: 2 + - uid: 58187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-37.5 + parent: 2 + - uid: 58188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 2 + - uid: 58189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,14.5 + parent: 2 + - uid: 58190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,13.5 + parent: 2 + - uid: 58191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,25.5 + parent: 2 + - uid: 58192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,13.5 + parent: 2 + - uid: 58193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-18.5 + parent: 2 + - uid: 58194 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 58196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 + - uid: 58197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-65.5 + parent: 2 + - uid: 58198 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 58199 + components: + - type: Transform + pos: -47.5,-20.5 + parent: 2 + - uid: 58200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-65.5 + parent: 2 + - uid: 58201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-63.5 + parent: 2 + - uid: 58202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,14.5 + parent: 2 + - uid: 58203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,25.5 + parent: 2 + - uid: 58204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,34.5 + parent: 2 + - uid: 58205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-26.5 + parent: 2 + - uid: 58206 + components: + - type: Transform + pos: 34.5,48.5 + parent: 2 + - uid: 58207 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 + - uid: 58208 + components: + - type: Transform + pos: 45.5,56.5 + parent: 2 + - uid: 58209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,21.5 + parent: 2 + - uid: 58210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,21.5 + parent: 2 + - uid: 58211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,44.5 + parent: 2 + - uid: 58212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,44.5 + parent: 2 + - uid: 58213 + components: + - type: Transform + pos: 28.5,45.5 + parent: 2 + - uid: 58214 + components: + - type: Transform + pos: 26.5,45.5 + parent: 2 + - uid: 58215 + components: + - type: Transform + pos: 36.5,56.5 parent: 2 - - uid: 23708 + - uid: 58216 components: - type: Transform - pos: -53.512577,39.55296 + rot: 3.141592653589793 rad + pos: 52.5,44.5 parent: 2 - - uid: 52053 + - uid: 58217 components: - - type: MetaData - desc: Не о чем плакать, ведь это просто лук.. лук.. - name: Mister_onion - type: Transform - parent: 53725 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodOrange - entities: - - uid: 20137 + rot: -1.5707963267948966 rad + pos: 31.5,32.5 + parent: 2 + - uid: 58218 components: - type: Transform - pos: -60.480377,-20.453974 + rot: -1.5707963267948966 rad + pos: 23.5,32.5 parent: 2 - - uid: 20138 + - uid: 58219 components: - type: Transform - pos: -60.667877,-20.438349 + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 parent: 2 - - uid: 20139 + - uid: 58232 components: - type: Transform - pos: -60.496002,-20.344599 + rot: 3.141592653589793 rad + pos: 19.5,-23.5 parent: 2 -- proto: FoodPacketEnergyTrash - entities: - - uid: 51339 + - uid: 58233 components: - type: Transform - pos: -50.81514,100.23626 + pos: 24.5,37.5 parent: 2 -- proto: FoodPelmeniBowl - entities: - - uid: 20663 + - uid: 58234 components: - type: Transform - pos: -75.78827,-18.36 + pos: 26.5,37.5 parent: 2 -- proto: FoodPieBananaCream - entities: - - uid: 6892 + - uid: 58235 components: - type: Transform - pos: -73.40362,20.516977 + rot: -1.5707963267948966 rad + pos: 31.5,9.5 parent: 2 - - uid: 6893 + - uid: 58237 components: - type: Transform - pos: -73.74737,20.751352 + rot: -1.5707963267948966 rad + pos: 26.5,-7.5 parent: 2 - - uid: 15005 + - uid: 58238 components: - type: Transform - pos: 14.485073,-65.58852 + rot: -1.5707963267948966 rad + pos: 31.5,8.5 parent: 2 -- proto: FoodPieCherry - entities: - - uid: 23676 + - uid: 58239 components: - type: Transform - pos: -49.62258,30.793201 + rot: -1.5707963267948966 rad + pos: 31.5,33.5 parent: 2 -- proto: FoodPieMeat - entities: - - uid: 11036 + - uid: 58240 components: - type: Transform - pos: 7.601644,2.5810122 + rot: -1.5707963267948966 rad + pos: 31.5,34.5 parent: 2 -- proto: FoodPineapple - entities: - - uid: 7127 + - uid: 58241 components: - type: Transform - pos: -66.5,-23.5 + pos: 27.5,37.5 parent: 2 -- proto: FoodPizzaDankSlice - entities: - - uid: 14087 + - uid: 58264 components: - type: Transform - pos: -90.86147,-44.139576 + rot: 3.141592653589793 rad + pos: 4.5,-37.5 parent: 2 - - uid: 14088 + - uid: 58265 components: - type: Transform - pos: -88.6129,-52.48699 + rot: -1.5707963267948966 rad + pos: 44.5,48.5 parent: 2 - - uid: 14812 + - uid: 58266 components: - type: Transform - pos: -83.753525,-51.377617 + pos: -38.5,12.5 parent: 2 -- proto: FoodPizzaPineapple - entities: - - uid: 22068 + - uid: 58267 components: - type: Transform - pos: -74.58865,-29.233013 + pos: -39.5,12.5 parent: 2 -- proto: FoodPlate - entities: - - uid: 5822 + - uid: 58268 components: - type: Transform - pos: -26.480177,49.692326 + pos: -39.5,3.5 parent: 2 - - uid: 6142 + - uid: 58269 components: - type: Transform - pos: -47.51079,35.807465 + pos: -38.5,3.5 parent: 2 - - uid: 9853 + - uid: 58270 components: - type: Transform - pos: -17.021214,22.789946 + pos: -42.5,11.5 parent: 2 - - uid: 14730 + - uid: 58271 components: - type: Transform - pos: -1.548388,-67.30601 + rot: 3.141592653589793 rad + pos: -71.5,24.5 parent: 2 - - uid: 15808 + - uid: 58272 components: - type: Transform - pos: 35.57887,-60.467663 + rot: 3.141592653589793 rad + pos: -82.5,20.5 parent: 2 -- proto: FoodPlatePlastic - entities: - - uid: 12106 + - uid: 58273 components: - type: Transform - pos: -63.500496,59.657925 + rot: 3.141592653589793 rad + pos: -78.5,20.5 parent: 2 - - uid: 25495 + - uid: 58274 components: - type: Transform - pos: -71.50747,-40.20917 + pos: 41.5,24.5 parent: 2 -- proto: FoodPlateSmall - entities: - - uid: 6143 + - uid: 58275 components: - type: Transform - pos: -47.47954,35.619965 + pos: 40.5,24.5 parent: 2 - - uid: 6144 + - uid: 58276 components: - type: Transform - pos: -47.463917,35.44809 + pos: 29.5,37.5 parent: 2 - - uid: 9358 + - uid: 58277 components: - type: Transform - pos: -75.52673,18.43534 + pos: 21.5,24.5 parent: 2 - - uid: 13133 + - uid: 58278 components: - type: Transform - pos: -65.002556,-42.403526 + pos: 20.5,24.5 parent: 2 - - uid: 19849 + - uid: 58279 components: - type: Transform - pos: -35.204338,-40.37989 + rot: 3.141592653589793 rad + pos: 36.5,24.5 parent: 2 - - uid: 20100 + - uid: 58280 components: - type: Transform - pos: -48.5136,-20.951069 + rot: 3.141592653589793 rad + pos: 32.5,24.5 parent: 2 - - uid: 22038 + - uid: 58281 components: - type: Transform - pos: -44.864975,-9.331411 + rot: 1.5707963267948966 rad + pos: 3.5,-38.5 parent: 2 - - uid: 67475 + - uid: 58282 components: - type: Transform - pos: 6.276919,20.57455 - parent: 66965 -- proto: FoodPlateSmallPlastic - entities: - - uid: 14854 + rot: -1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 2 + - uid: 58283 components: - type: Transform - pos: 1.6148453,-68.29874 + rot: -1.5707963267948966 rad + pos: 8.5,-44.5 parent: 2 - - uid: 25498 + - uid: 58284 components: - type: Transform - pos: -72.429344,-40.381046 + rot: 1.5707963267948966 rad + pos: 3.5,-39.5 parent: 2 - - uid: 25500 + - uid: 58285 components: - type: Transform - pos: -70.616844,-40.381046 + rot: 3.141592653589793 rad + pos: -47.5,25.5 parent: 2 -- proto: FoodPlateSmallTrash - entities: - - uid: 6145 + - uid: 58286 components: - type: Transform - pos: -48.19829,34.994965 + rot: 3.141592653589793 rad + pos: 47.5,14.5 parent: 2 - - uid: 7959 + - uid: 58287 components: - type: Transform - pos: -50.546696,66.515015 + rot: 3.141592653589793 rad + pos: 48.5,14.5 parent: 2 - - uid: 13128 + - uid: 58288 components: - type: Transform - pos: -71.58937,-45.527275 + rot: 3.141592653589793 rad + pos: 45.5,14.5 parent: 2 - - uid: 13130 + - uid: 58290 components: - type: Transform - pos: -72.667496,-47.38665 + rot: 3.141592653589793 rad + pos: 48.5,21.5 parent: 2 - - uid: 13534 + - uid: 58292 components: - type: Transform - pos: 82.43991,-24.29616 + rot: 3.141592653589793 rad + pos: -60.5,25.5 parent: 2 - - uid: 15107 + - uid: 58293 components: - type: Transform - pos: 18.716545,-74.79738 + rot: 3.141592653589793 rad + pos: -59.5,25.5 parent: 2 - - uid: 19323 + - uid: 58294 components: - type: Transform - pos: 82.66792,-24.124285 + rot: 3.141592653589793 rad + pos: -57.5,21.5 parent: 2 - - uid: 19331 + - uid: 58295 components: - type: Transform - pos: 86.18355,-22.38991 + rot: 3.141592653589793 rad + pos: -86.5,13.5 parent: 2 - - uid: 23047 + - uid: 58296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.053776,-38.69099 + rot: 3.141592653589793 rad + pos: -84.5,13.5 parent: 2 - - uid: 23048 + - uid: 58297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.116276,-40.021156 + rot: 3.141592653589793 rad + pos: 33.5,-18.5 parent: 2 - - uid: 24187 + - uid: 58298 components: - type: Transform - pos: -72.09246,33.34386 + rot: 3.141592653589793 rad + pos: 33.5,-20.5 parent: 2 - - uid: 24188 + - uid: 58300 components: - type: Transform - pos: -70.451836,31.37511 + pos: 27.5,-31.5 parent: 2 - - uid: 25594 + - uid: 58301 components: - type: Transform - pos: -59.52144,-38.42507 + pos: 28.5,-31.5 parent: 2 - - uid: 26230 + - uid: 58302 components: - type: Transform - pos: -43.60793,-84.13608 + pos: -0.5,-67.5 parent: 2 - - uid: 26231 + - uid: 58303 components: - type: Transform - pos: -43.32668,-84.24545 + rot: 1.5707963267948966 rad + pos: 31.5,27.5 parent: 2 - - uid: 26232 + - uid: 58304 components: - type: Transform - pos: -35.510174,-86.19423 + rot: 1.5707963267948966 rad + pos: 31.5,26.5 parent: 2 - - uid: 26233 + - uid: 58305 components: - type: Transform - pos: -37.49455,-87.147354 + pos: 23.5,-10.5 parent: 2 - - uid: 26543 + - uid: 58306 components: - type: Transform - pos: -87.07754,-48.76173 + rot: 3.141592653589793 rad + pos: -23.5,-26.5 parent: 2 - - uid: 26544 + - uid: 58307 components: - type: Transform - pos: -84.32754,-49.824234 + pos: 22.5,-10.5 parent: 2 - - uid: 26545 + - uid: 58308 components: - type: Transform - pos: -94.48379,-47.69923 + pos: -19.5,-6.5 parent: 2 -- proto: FoodPlateTin - entities: - - uid: 9888 + - uid: 58310 components: - type: Transform - pos: -49.441097,32.47271 + rot: 1.5707963267948966 rad + pos: -60.5,-65.5 parent: 2 -- proto: FoodPlateTrash - entities: - - uid: 8033 + - uid: 58311 components: - type: Transform - pos: 6.595563,-69.99574 + rot: 3.141592653589793 rad + pos: -47.5,-65.5 parent: 2 - - uid: 8478 + - uid: 58312 components: - type: Transform - pos: -51.49982,61.60738 + rot: 3.141592653589793 rad + pos: -44.5,-65.5 parent: 2 - - uid: 12791 + - uid: 58314 components: - type: Transform - pos: -63.28813,-42.171528 + pos: -46.5,-20.5 parent: 2 - - uid: 15069 + - uid: 58315 components: - type: Transform - pos: 9.439313,-71.71449 + rot: 1.5707963267948966 rad + pos: -60.5,-67.5 parent: 2 - - uid: 15070 + - uid: 58316 components: - type: Transform - pos: 11.892438,-70.40199 + rot: 1.5707963267948966 rad + pos: -60.5,-66.5 parent: 2 - - uid: 15088 + - uid: 58317 components: - type: Transform - pos: 14.111188,-72.05824 + rot: 3.141592653589793 rad + pos: -46.5,-65.5 parent: 2 - - uid: 15089 + - uid: 58318 components: - type: Transform - pos: 18.482126,-81.74668 + rot: 3.141592653589793 rad + pos: 58.5,30.5 parent: 2 - - uid: 19330 + - uid: 58319 components: - type: Transform - pos: 86.49605,-22.04616 + rot: 3.141592653589793 rad + pos: 56.5,30.5 parent: 2 - - uid: 23157 + - uid: 58320 components: - type: Transform - pos: 37.76347,-53.493526 + rot: 3.141592653589793 rad + pos: 40.5,14.5 parent: 2 - - uid: 23513 + - uid: 58321 components: - type: Transform - pos: 34.553535,-67.07935 + rot: 3.141592653589793 rad + pos: 56.5,34.5 parent: 2 - - uid: 23514 + - uid: 58322 components: - type: Transform - pos: 34.539364,-65.72918 + rot: 3.141592653589793 rad + pos: 57.5,34.5 parent: 2 - - uid: 26187 + - uid: 58323 components: - type: Transform - pos: -42.904984,-90.459854 + rot: 3.141592653589793 rad + pos: 54.5,30.5 parent: 2 - - uid: 26229 + - uid: 58324 components: - type: Transform - pos: -38.51418,-83.47983 + rot: 3.141592653589793 rad + pos: 55.5,30.5 parent: 2 -- proto: FoodPotato - entities: - - uid: 52063 + - uid: 58325 components: - - type: MetaData - desc: Гений, родившийся не в то время, не в том месте.. - name: LagInPotato - type: Transform - parent: 53725 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodRiceBoiled - entities: - - uid: 53796 + rot: 3.141592653589793 rad + pos: 25.5,25.5 + parent: 2 + - uid: 58326 components: - - type: MetaData - desc: Теплая миска с рисом, которым питались основатели станции. - type: Transform - pos: -32.003624,-2.378239 + rot: 3.141592653589793 rad + pos: 55.5,34.5 parent: 2 -- proto: FoodSaladCaesar - entities: - - uid: 67135 + - uid: 58327 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67136 + rot: 3.141592653589793 rad + pos: -31.5,-26.5 + parent: 2 + - uid: 58328 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67137 + rot: 1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 2 + - uid: 58329 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67138 + pos: -44.5,-20.5 + parent: 2 + - uid: 58331 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67139 + rot: 3.141592653589793 rad + pos: 32.5,-20.5 + parent: 2 + - uid: 58332 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSaladHerb - entities: - - uid: 67140 + rot: -1.5707963267948966 rad + pos: 44.5,43.5 + parent: 2 + - uid: 58333 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67141 + rot: -1.5707963267948966 rad + pos: 44.5,46.5 + parent: 2 + - uid: 58334 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67142 + rot: 1.5707963267948966 rad + pos: 49.5,-25.5 + parent: 2 + - uid: 58335 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSnackBoritos - entities: - - uid: 12823 + rot: 1.5707963267948966 rad + pos: 49.5,-24.5 + parent: 2 + - uid: 58336 components: - type: Transform - parent: 12820 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSnackChips - entities: - - uid: 10485 + pos: 44.5,56.5 + parent: 2 + - uid: 58337 components: - type: Transform - pos: 3.3392222,-71.28217 + pos: 43.5,56.5 parent: 2 - - uid: 52101 + - uid: 58338 components: - type: Transform - pos: -66.59662,6.6314754 + rot: 3.141592653589793 rad + pos: 34.5,18.5 parent: 2 - - uid: 52102 + - uid: 58339 components: - type: Transform - pos: -66.33099,6.6158504 + rot: 3.141592653589793 rad + pos: 37.5,18.5 parent: 2 -- proto: FoodSnackChocolate - entities: - - uid: 7583 + - uid: 58340 components: - type: Transform - pos: 11.254166,-28.489285 + rot: 3.141592653589793 rad + pos: 44.5,21.5 parent: 2 - - uid: 16070 + - uid: 58341 components: - type: Transform - parent: 16060 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16071 + rot: 3.141592653589793 rad + pos: 47.5,21.5 + parent: 2 + - uid: 58342 components: - type: Transform - parent: 16060 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 27935 + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 2 + - uid: 58343 components: - type: Transform - pos: -47.676487,97.54744 + rot: 3.141592653589793 rad + pos: 36.5,18.5 parent: 2 - - uid: 27946 + - uid: 58344 components: - type: Transform - pos: -47.176487,96.844315 + rot: 1.5707963267948966 rad + pos: -41.5,20.5 parent: 2 - - uid: 51416 + - uid: 58345 components: - type: Transform - pos: -14.76681,-61.03669 + rot: 3.141592653589793 rad + pos: 48.5,44.5 parent: 2 - - uid: 53827 + - uid: 58346 components: - type: Transform - pos: -56.104214,21.611847 + rot: 3.141592653589793 rad + pos: 51.5,44.5 parent: 2 - - uid: 55488 + - uid: 58347 components: - type: Transform - pos: 19.559834,-60.374218 + pos: 26.5,54.5 parent: 2 -- proto: FoodSnackEnergy - entities: - - uid: 12822 + - uid: 58348 components: - type: Transform - parent: 12820 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 55487 + pos: 28.5,54.5 + parent: 2 + - uid: 58351 components: - type: Transform - pos: 19.50037,-60.270157 + rot: 3.141592653589793 rad + pos: 53.5,44.5 parent: 2 -- proto: FoodSnackEnergyBar - entities: - - uid: 12826 + - uid: 58352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.63997,38.557076 + rot: 3.141592653589793 rad + pos: 49.5,44.5 parent: 2 -- proto: FoodSnackPistachios - entities: - - uid: 52103 + - uid: 58353 components: - type: Transform - pos: -66.59662,6.5846004 + rot: 3.141592653589793 rad + pos: 54.5,34.5 parent: 2 - - uid: 52105 + - uid: 58354 components: - type: Transform - pos: -66.31537,6.6002254 + pos: 36.5,48.5 parent: 2 -- proto: FoodSnackPopcorn - entities: - - uid: 22741 + - uid: 58355 components: - type: Transform - pos: -26.7099,-33.349045 + pos: 33.5,42.5 parent: 2 - - uid: 22742 + - uid: 58356 components: - type: Transform - pos: -26.24115,-33.3334 + rot: -1.5707963267948966 rad + pos: 31.5,31.5 parent: 2 - - uid: 22743 + - uid: 58357 components: - type: Transform - pos: -18.706848,-33.31776 + rot: 3.141592653589793 rad + pos: 44.5,14.5 parent: 2 - - uid: 22744 + - uid: 58358 components: - type: Transform - pos: -18.300598,-33.395966 + rot: -1.5707963267948966 rad + pos: 23.5,31.5 parent: 2 - - uid: 28008 + - uid: 58359 components: - type: Transform - pos: -53.4574,100.48738 + rot: -1.5707963267948966 rad + pos: 23.5,34.5 parent: 2 - - uid: 28009 + - uid: 58381 components: - type: Transform - pos: -53.7074,100.628006 + pos: 31.5,-30.5 parent: 2 - - uid: 28010 + - uid: 58383 components: - type: Transform - pos: -53.441776,100.17488 + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 parent: 2 - - uid: 28013 + - uid: 58384 components: - type: Transform - pos: -53.7074,100.26863 + rot: 3.141592653589793 rad + pos: 72.5,-37.5 parent: 2 -- proto: FoodSnackRaisins - entities: - - uid: 51415 + - uid: 58385 components: - type: Transform - pos: -14.438685,-61.177315 + rot: 1.5707963267948966 rad + pos: -41.5,18.5 parent: 2 -- proto: FoodSnackSemki - entities: - - uid: 3812 + - uid: 58386 components: - type: Transform - pos: -6.730415,88.49496 + rot: 1.5707963267948966 rad + pos: -41.5,17.5 parent: 2 -- proto: FoodSnackSyndi - entities: - - uid: 52106 + - uid: 58387 components: - type: Transform - pos: -74.527115,12.64157 + rot: 1.5707963267948966 rad + pos: -41.5,19.5 parent: 2 -- proto: FoodSoupBeetRed - entities: - - uid: 23659 + - uid: 58388 components: - type: Transform - pos: -36.5,32.75 + rot: 1.5707963267948966 rad + pos: -37.5,20.5 parent: 2 -- proto: FoodSoupMeatball - entities: - - uid: 67476 + - uid: 58389 components: - type: Transform - pos: 1.5663261,18.699316 - parent: 66965 -- proto: FoodSoupMiso - entities: - - uid: 67143 + rot: 1.5707963267948966 rad + pos: -37.5,21.5 + parent: 2 + - uid: 58390 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67144 + rot: 1.5707963267948966 rad + pos: -37.5,23.5 + parent: 2 + - uid: 58391 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67145 + rot: 1.5707963267948966 rad + pos: -37.5,24.5 + parent: 2 + - uid: 58392 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSoupMushroom - entities: - - uid: 20104 + pos: -36.5,20.5 + parent: 2 + - uid: 58393 components: - type: Transform - pos: -115.47603,9.711614 + pos: -34.5,20.5 parent: 2 - - uid: 67146 + - uid: 58394 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67147 + pos: -35.5,20.5 + parent: 2 + - uid: 58395 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67148 + rot: -1.5707963267948966 rad + pos: -31.5,22.5 + parent: 2 + - uid: 58396 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67149 + rot: -1.5707963267948966 rad + pos: -31.5,24.5 + parent: 2 + - uid: 58397 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSoupNettle - entities: - - uid: 67150 + rot: -1.5707963267948966 rad + pos: -31.5,23.5 + parent: 2 + - uid: 58398 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67151 + rot: 3.141592653589793 rad + pos: -17.5,25.5 + parent: 2 + - uid: 58399 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67152 + rot: 3.141592653589793 rad + pos: -18.5,25.5 + parent: 2 + - uid: 58400 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSoupPea - entities: - - uid: 67153 + rot: 3.141592653589793 rad + pos: -16.5,25.5 + parent: 2 + - uid: 58401 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67154 + rot: 3.141592653589793 rad + pos: -11.5,25.5 + parent: 2 + - uid: 58402 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67155 + rot: 3.141592653589793 rad + pos: -10.5,25.5 + parent: 2 + - uid: 58403 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67156 + rot: 3.141592653589793 rad + pos: -8.5,25.5 + parent: 2 + - uid: 58404 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 67157 + rot: 3.141592653589793 rad + pos: -9.5,25.5 + parent: 2 + - uid: 58405 components: - type: Transform - parent: 67061 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodTacoShell - entities: - - uid: 21863 + rot: 1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 2 + - uid: 58406 components: - type: Transform - pos: -78.55292,-5.4312887 + rot: -1.5707963267948966 rad + pos: 123.5,-55.5 parent: 2 -- proto: FoodTinBeans - entities: - - uid: 30781 + - uid: 58407 components: - type: Transform - pos: 63.343067,10.720699 + rot: -1.5707963267948966 rad + pos: 123.5,-56.5 parent: 2 - - uid: 30782 + - uid: 58408 components: - type: Transform - pos: 63.639942,10.783199 + rot: -1.5707963267948966 rad + pos: 123.5,-57.5 parent: 2 -- proto: FoodTinBeansTrash - entities: - - uid: 15078 + - uid: 58409 components: - type: Transform - pos: 14.155571,-69.62074 + rot: -1.5707963267948966 rad + pos: 113.5,-55.5 parent: 2 - - uid: 23143 + - uid: 58410 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.477108,-35.009247 + pos: 113.5,-57.5 parent: 2 - - uid: 23144 + - uid: 58411 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.430233,-38.14987 + pos: 113.5,-56.5 parent: 2 - - uid: 26408 + - uid: 58412 components: - type: Transform - pos: -90.98848,-47.574623 + rot: -1.5707963267948966 rad + pos: 100.5,-55.5 parent: 2 - - uid: 30779 + - uid: 58413 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.639942,9.892574 + pos: 100.5,-56.5 parent: 2 -- proto: FoodTinMRE - entities: - - uid: 30783 + - uid: 58414 components: - type: Transform - pos: 61.624317,9.720699 + rot: -1.5707963267948966 rad + pos: 100.5,-57.5 parent: 2 - - uid: 30784 + - uid: 58415 components: - type: Transform - pos: 61.499317,9.548824 + rot: -1.5707963267948966 rad + pos: 96.5,-55.5 parent: 2 -- proto: FoodTinMRETrash - entities: - - uid: 8903 + - uid: 58416 components: - type: Transform - pos: 10.158063,-73.07387 + rot: -1.5707963267948966 rad + pos: 96.5,-57.5 parent: 2 - - uid: 9205 + - uid: 58417 components: - type: Transform - pos: 17.389946,-74.77699 + rot: -1.5707963267948966 rad + pos: 96.5,-56.5 parent: 2 - - uid: 14471 + - uid: 58419 components: - type: Transform - pos: 3.9097848,-74.685 + pos: -4.5,-42.5 parent: 2 - - uid: 15067 + - uid: 58420 components: - type: Transform - pos: 5.923688,-72.23012 + pos: -6.5,-42.5 parent: 2 - - uid: 15072 + - uid: 58421 components: - type: Transform - pos: 9.126813,-70.49574 + rot: -1.5707963267948966 rad + pos: -1.5,-41.5 parent: 2 - - uid: 23506 + - uid: 58422 components: - type: Transform - pos: 43.641388,-63.47616 + rot: -1.5707963267948966 rad + pos: -1.5,-40.5 parent: 2 - - uid: 23507 + - uid: 58423 components: - type: Transform - pos: 40.360138,-63.28866 + rot: -1.5707963267948966 rad + pos: -1.5,-38.5 parent: 2 - - uid: 23509 + - uid: 58424 components: - type: Transform - pos: 45.89996,-54.699585 + rot: -1.5707963267948966 rad + pos: -1.5,-39.5 parent: 2 - - uid: 23517 + - uid: 58425 components: - type: Transform - pos: 30.370678,-64.58375 + rot: 3.141592653589793 rad + pos: -2.5,-37.5 parent: 2 - - uid: 23518 + - uid: 58426 components: - type: Transform - pos: 39.062702,-67.34937 + rot: 3.141592653589793 rad + pos: -4.5,-37.5 parent: 2 - - uid: 23520 + - uid: 58427 components: - type: Transform - pos: 25.619265,-66.70875 + rot: 3.141592653589793 rad + pos: -6.5,-37.5 parent: 2 - - uid: 26398 + - uid: 58431 components: - type: Transform - pos: -94.53082,-48.621105 + pos: 66.5,5.5 parent: 2 - - uid: 26399 + - uid: 58432 components: - type: Transform - pos: -85.20909,-49.683605 + pos: 65.5,5.5 parent: 2 - - uid: 30780 + - uid: 58433 components: - type: Transform - pos: 62.358692,11.001949 + pos: 68.5,5.5 parent: 2 -- proto: FoodTinPeaches - entities: - - uid: 27015 + - uid: 58434 components: - type: Transform - pos: 53.33166,16.596632 + pos: 69.5,5.5 parent: 2 - - uid: 27016 + - uid: 58647 components: - type: Transform - pos: 53.45666,16.768507 + pos: -29.5,2.5 parent: 2 - - uid: 27017 + - uid: 58648 components: - type: Transform - pos: 53.61291,16.596632 + pos: -27.5,2.5 parent: 2 - - uid: 30777 + - uid: 58649 components: - type: Transform - pos: 61.733692,10.736324 + pos: -26.5,2.5 parent: 2 - - uid: 30778 + - uid: 58650 components: - type: Transform - pos: 61.436817,10.626949 + pos: -25.5,2.5 parent: 2 -- proto: FoodTinPeachesMaint - entities: - - uid: 24644 + - uid: 58651 components: - type: Transform - pos: -66.37721,27.594013 + pos: -24.5,2.5 parent: 2 - - uid: 24645 + - uid: 58652 components: - type: Transform - pos: -66.64284,27.578388 + pos: -23.5,2.5 parent: 2 - - uid: 24646 + - uid: 58653 components: - type: Transform - pos: -66.48659,27.719013 + pos: -22.5,2.5 parent: 2 -- proto: FoodTinPeachesMaintOpen - entities: - - uid: 24647 + - uid: 58654 components: - type: Transform - pos: -67.39284,28.562763 + pos: -28.5,2.5 parent: 2 -- proto: FoodTinPeachesMaintTrash - entities: - - uid: 5330 + - uid: 58655 components: - type: Transform - pos: 24.290903,-77.56066 + pos: -21.5,2.5 parent: 2 - - uid: 5630 + - uid: 58695 components: - type: Transform - pos: 24.587778,-77.29504 + pos: 5.5,-3.5 parent: 2 - - uid: 23154 + - uid: 58731 components: - type: Transform - pos: 29.777647,-47.73175 + pos: 22.5,12.5 parent: 2 - - uid: 23155 + - uid: 58732 components: - type: Transform - pos: 38.54298,-55.567177 + pos: 23.5,12.5 parent: 2 - - uid: 23156 + - uid: 58733 components: - type: Transform - pos: 41.51173,-53.192177 + pos: 25.5,12.5 parent: 2 - - uid: 23516 + - uid: 58734 components: - type: Transform - pos: 36.720028,-65.87623 + pos: 24.5,12.5 parent: 2 - - uid: 24648 + - uid: 58735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.89284,26.859638 + pos: 22.5,6.5 parent: 2 - - uid: 26546 + - uid: 58736 components: - type: Transform - pos: -94.45254,-47.19923 + pos: 24.5,6.5 parent: 2 -- proto: FoodTinPeachesTrash - entities: - - uid: 6376 + - uid: 58737 components: - type: Transform - pos: 22.478607,-77.40441 + pos: 25.5,6.5 parent: 2 - - uid: 15074 + - uid: 58738 components: - type: Transform - pos: 18.077446,-83.41678 + pos: 23.5,6.5 parent: 2 - - uid: 15077 + - uid: 58742 components: - type: Transform - pos: 17.749321,-73.15199 + pos: 15.5,12.5 parent: 2 - - uid: 23145 + - uid: 58743 components: - type: Transform - pos: 32.133358,-54.605324 + pos: 14.5,12.5 parent: 2 - - uid: 23146 + - uid: 58744 components: - type: Transform - pos: 38.352108,-53.214703 + pos: 13.5,12.5 parent: 2 - - uid: 23503 + - uid: 58745 components: - type: Transform - pos: 45.03229,-55.23962 + pos: 15.5,6.5 parent: 2 - - uid: 30775 + - uid: 58746 components: - type: Transform - pos: 63.655567,11.720699 + pos: 13.5,6.5 parent: 2 -- proto: FoodTomato - entities: - - uid: 28099 + - uid: 58747 components: - type: Transform - pos: -43.509876,96.560555 + pos: 14.5,6.5 parent: 2 - - uid: 28102 + - uid: 58748 components: - type: Transform - pos: -41.572376,94.654305 + pos: -14.5,6.5 parent: 2 - - uid: 30828 + - uid: 58749 components: - type: Transform - pos: -41.39326,61.53008 + pos: -13.5,6.5 parent: 2 - - uid: 30829 + - uid: 58750 components: - type: Transform - pos: -44.565136,60.53008 + pos: -12.5,6.5 parent: 2 - - uid: 52055 + - uid: 58751 components: - - type: MetaData - desc: Она потомок рода помидоров... - name: whysodora - type: Transform - parent: 53725 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Football - entities: - - uid: 12684 + pos: -14.5,12.5 + parent: 2 + - uid: 58752 components: - type: Transform - pos: -4.776064,79.73675 + pos: -12.5,12.5 parent: 2 - - uid: 21423 + - uid: 58753 components: - type: Transform - pos: -31.521069,-25.355053 + pos: -13.5,12.5 parent: 2 -- proto: ForensicPad - entities: - - uid: 19991 + - uid: 58754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.37872,-5.302908 + pos: -14.5,-5.5 parent: 2 - - uid: 20029 + - uid: 58755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.488094,-5.365408 + pos: -13.5,-5.5 parent: 2 - - uid: 20082 + - uid: 58756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.62872,-5.490408 + pos: -12.5,-5.5 parent: 2 - - uid: 20164 + - uid: 58757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.33751,-19.770199 + pos: -14.5,-11.5 parent: 2 - - uid: 20165 + - uid: 58758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.446884,-19.723324 + pos: -13.5,-11.5 parent: 2 -- proto: Fork - entities: - - uid: 14817 + - uid: 58759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.532763,-67.80601 + pos: -12.5,-11.5 parent: 2 - - uid: 20308 + - uid: 58760 components: - type: Transform - pos: -31.824013,-29.300835 + pos: 15.5,-11.5 parent: 2 - - uid: 20309 + - uid: 58761 components: - type: Transform - pos: -23.331194,-29.39468 + pos: 13.5,-11.5 parent: 2 - - uid: 20831 + - uid: 58762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.303894,-18.51625 + pos: 14.5,-11.5 parent: 2 -- proto: ForkPlastic - entities: - - uid: 20277 + - uid: 58763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.464634,-29.347757 + pos: 15.5,-5.5 parent: 2 - - uid: 20307 + - uid: 58764 components: - type: Transform - pos: -25.549944,-29.441605 + pos: 14.5,-5.5 parent: 2 -- proto: FuelDispenser - entities: - - uid: 13740 + - uid: 58765 components: - type: Transform - pos: 14.5,-44.5 + pos: 13.5,-5.5 parent: 2 -- proto: Fulton - entities: - - uid: 47479 + - uid: 58793 components: - type: Transform - pos: -59.538002,-86.10438 + pos: 0.5,2.5 parent: 2 - - uid: 47481 + - uid: 58795 components: - type: Transform - pos: -59.24447,-86.4346 + pos: 7.5,-3.5 parent: 2 -- proto: FultonBeacon - entities: - - uid: 47672 + - uid: 58796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.48345,-87.43988 + pos: 6.5,-3.5 parent: 2 - proto: GasAnalyzer entities: @@ -208176,13 +219003,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23658 - components: - - type: Transform - pos: -31.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 23732 components: - type: Transform @@ -240518,14 +251338,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 14562 components: - type: Transform @@ -240550,14 +251362,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 14904 components: - type: Transform @@ -248368,17 +259172,6 @@ entities: - 50742 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 55454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 50742 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 55492 components: - type: Transform @@ -251936,17 +262729,6 @@ entities: - 55521 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 55448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 50742 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 55490 components: - type: Transform @@ -252414,11 +263196,6 @@ entities: - type: Transform pos: -67.5,-6.5 parent: 2 - - uid: 30560 - components: - - type: Transform - pos: 55.5,-15.5 - parent: 2 - proto: Girder entities: - uid: 11528 @@ -252457,6 +263234,21 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-41.5 parent: 2 + - uid: 14783 + components: + - type: Transform + pos: 11.5,-70.5 + parent: 2 + - uid: 14784 + components: + - type: Transform + pos: 7.5,-72.5 + parent: 2 + - uid: 14787 + components: + - type: Transform + pos: 12.5,-73.5 + parent: 2 - uid: 15097 components: - type: Transform @@ -255022,6 +265814,11 @@ entities: - type: Transform pos: 2.5,79.5 parent: 2 + - uid: 6778 + components: + - type: Transform + pos: 78.5,-15.5 + parent: 2 - uid: 7079 components: - type: Transform @@ -255332,6 +266129,11 @@ entities: - type: Transform pos: -70.5,63.5 parent: 2 + - uid: 9256 + components: + - type: Transform + pos: 23.5,-92.5 + parent: 2 - uid: 9456 components: - type: Transform @@ -256030,6 +266832,11 @@ entities: - type: Transform pos: 80.5,10.5 parent: 2 + - uid: 13236 + components: + - type: Transform + pos: -74.5,-78.5 + parent: 2 - uid: 13260 components: - type: Transform @@ -258323,6 +269130,16 @@ entities: - type: Transform pos: 10.5,-9.5 parent: 2 + - uid: 18861 + components: + - type: Transform + pos: -72.5,-78.5 + parent: 2 + - uid: 18914 + components: + - type: Transform + pos: -74.5,-80.5 + parent: 2 - uid: 18919 components: - type: Transform @@ -258348,6 +269165,11 @@ entities: - type: Transform pos: -51.5,29.5 parent: 2 + - uid: 19323 + components: + - type: Transform + pos: -72.5,-80.5 + parent: 2 - uid: 19393 components: - type: Transform @@ -258806,11 +269628,6 @@ entities: - type: Transform pos: 15.5,-99.5 parent: 2 - - uid: 22197 - components: - - type: Transform - pos: -78.5,33.5 - parent: 2 - uid: 22925 components: - type: Transform @@ -258889,11 +269706,6 @@ entities: - type: Transform pos: 11.5,-96.5 parent: 2 - - uid: 23563 - components: - - type: Transform - pos: -74.5,-62.5 - parent: 2 - uid: 23564 components: - type: Transform @@ -258954,11 +269766,21 @@ entities: - type: Transform pos: -86.5,72.5 parent: 2 + - uid: 24718 + components: + - type: Transform + pos: -81.5,33.5 + parent: 2 - uid: 24721 components: - type: Transform pos: 13.5,-99.5 parent: 2 + - uid: 24776 + components: + - type: Transform + pos: -75.5,77.5 + parent: 2 - uid: 24872 components: - type: Transform @@ -259312,6 +270134,11 @@ entities: - type: Transform pos: -67.5,82.5 parent: 2 + - uid: 26042 + components: + - type: Transform + pos: -77.5,77.5 + parent: 2 - uid: 26072 components: - type: Transform @@ -259367,6 +270194,11 @@ entities: - type: Transform pos: -89.5,-51.5 parent: 2 + - uid: 26307 + components: + - type: Transform + pos: -75.5,79.5 + parent: 2 - uid: 26347 components: - type: Transform @@ -259945,6 +270777,11 @@ entities: - type: Transform pos: -88.5,75.5 parent: 2 + - uid: 28198 + components: + - type: Transform + pos: -77.5,33.5 + parent: 2 - uid: 28205 components: - type: Transform @@ -260406,11 +271243,6 @@ entities: - type: Transform pos: -71.5,-61.5 parent: 2 - - uid: 29912 - components: - - type: Transform - pos: -74.5,-64.5 - parent: 2 - uid: 30219 components: - type: Transform @@ -260507,6 +271339,11 @@ entities: - type: Transform pos: -48.5,101.5 parent: 2 + - uid: 31187 + components: + - type: Transform + pos: -75.5,33.5 + parent: 2 - uid: 31304 components: - type: Transform @@ -260602,11 +271439,6 @@ entities: - type: Transform pos: 7.5,-7.5 parent: 2 - - uid: 40765 - components: - - type: Transform - pos: -13.5,-83.5 - parent: 2 - uid: 41801 components: - type: Transform @@ -260627,6 +271459,11 @@ entities: - type: Transform pos: -79.5,33.5 parent: 2 + - uid: 42284 + components: + - type: Transform + pos: -77.5,79.5 + parent: 2 - uid: 42386 components: - type: Transform @@ -260657,6 +271494,16 @@ entities: - type: Transform pos: 89.5,-39.5 parent: 2 + - uid: 45448 + components: + - type: Transform + pos: 29.5,-98.5 + parent: 2 + - uid: 45452 + components: + - type: Transform + pos: 31.5,-98.5 + parent: 2 - uid: 46018 components: - type: Transform @@ -260689,6 +271536,16 @@ entities: - type: Transform pos: 56.5,12.5 parent: 2 + - uid: 51431 + components: + - type: Transform + pos: 31.5,-96.5 + parent: 2 + - uid: 51432 + components: + - type: Transform + pos: 29.5,-96.5 + parent: 2 - uid: 51616 components: - type: Transform @@ -262077,11 +272934,6 @@ entities: - type: Transform pos: 101.5,-68.5 parent: 2 - - uid: 52896 - components: - - type: Transform - pos: -11.5,-83.5 - parent: 2 - uid: 52897 components: - type: Transform @@ -264008,11 +274860,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,4.5 parent: 55142 - - uid: 55680 - components: - - type: Transform - pos: -77.5,33.5 - parent: 2 - uid: 55871 components: - type: Transform @@ -264414,6 +275261,46 @@ entities: - type: Transform pos: 47.5,74.5 parent: 2 + - uid: 57569 + components: + - type: Transform + pos: -79.5,74.5 + parent: 2 + - uid: 57570 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 + - uid: 57571 + components: + - type: Transform + pos: -81.5,74.5 + parent: 2 + - uid: 58128 + components: + - type: Transform + pos: 24.5,-92.5 + parent: 2 + - uid: 58149 + components: + - type: Transform + pos: 21.5,-92.5 + parent: 2 + - uid: 58150 + components: + - type: Transform + pos: 20.5,-92.5 + parent: 2 + - uid: 58151 + components: + - type: Transform + pos: 22.5,-92.5 + parent: 2 + - uid: 58376 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 - uid: 67689 components: - type: Transform @@ -267022,11 +277909,6 @@ entities: - type: Transform pos: 20.5,-8.5 parent: 2 - - uid: 16178 - components: - - type: Transform - pos: 18.5,-8.5 - parent: 2 - uid: 18519 components: - type: Transform @@ -267037,6 +277919,11 @@ entities: - type: Transform pos: 20.5,9.5 parent: 2 + - uid: 58330 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 - proto: HolofanProjector entities: - uid: 13062 @@ -267327,8 +278214,7 @@ entities: - uid: 13377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.489521,-44.444542 + pos: -19.34867,-45.65352 parent: 2 - uid: 14699 components: @@ -267367,7 +278253,7 @@ entities: - uid: 13379 components: - type: Transform - pos: -20.083271,-44.303917 + pos: -19.551794,-45.40352 parent: 2 - uid: 21753 components: @@ -267648,11 +278534,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,80.5 parent: 2 - - uid: 29749 - components: - - type: Transform - pos: -39.5,-69.5 - parent: 2 - uid: 30299 components: - type: Transform @@ -268915,16 +279796,6 @@ entities: - type: Transform pos: 118.45978,-47.619328 parent: 2 - - uid: 20665 - components: - - type: Transform - pos: 18.494701,-70.56067 - parent: 2 - - uid: 21706 - components: - - type: Transform - pos: -71.35392,-53.484142 - parent: 2 - uid: 42279 components: - type: Transform @@ -268967,11 +279838,6 @@ entities: - type: Transform pos: 8.441973,-72.74134 parent: 2 - - uid: 51520 - components: - - type: Transform - pos: 28.53325,-69.55543 - parent: 2 - proto: Lantern entities: - uid: 9641 @@ -269040,8 +279906,22 @@ entities: - uid: 29618 components: - type: Transform - pos: -51.35723,-78.569176 + pos: -51.028305,-77.292786 parent: 2 + - type: HandheldLight + toggleActionEntity: 17743 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 17743 + - type: ActionsContainer - proto: LanternFlash entities: - uid: 15183 @@ -269095,6 +279975,11 @@ entities: - type: Transform pos: 68.47065,-22.159117 parent: 2 + - uid: 14972 + components: + - type: Transform + pos: -20.632397,-44.18857 + parent: 2 - uid: 15641 components: - type: Transform @@ -269105,6 +279990,11 @@ entities: - type: Transform pos: 37.69297,-4.747262 parent: 2 + - uid: 23563 + components: + - type: Transform + pos: -20.413647,-44.40732 + parent: 2 - uid: 24065 components: - type: Transform @@ -269180,6 +280070,24 @@ entities: color: '#FF0000FF' - type: Physics canCollide: False +- proto: LedLightTube + entities: + - uid: 5395 + components: + - type: Transform + parent: 5383 + - type: Physics + canCollide: False + - uid: 51525 + components: + - type: Transform + pos: 82.38357,-24.061773 + parent: 2 + - uid: 51527 + components: + - type: Transform + pos: 82.49294,-24.218023 + parent: 2 - proto: Left4ZedChemistryBottle entities: - uid: 11650 @@ -269311,6 +280219,36 @@ entities: lightSoftness: 1 lightRadius: 1.1 color: '#FF0000FF' + - uid: 57670 + components: + - type: Transform + parent: 57669 + - type: LightBulb + lightRadius: 3.5 + lightEnergy: 0.3 + color: '#03E7FCFF' + - type: Physics + canCollide: False + - uid: 58231 + components: + - type: Transform + parent: 58230 + - type: LightBulb + lightRadius: 3.5 + lightEnergy: 0.3 + color: '#FCD303FF' + - type: Physics + canCollide: False + - uid: 58250 + components: + - type: Transform + parent: 58249 + - type: LightBulb + lightRadius: 3.5 + lightEnergy: 0.3 + color: '#FC0303FF' + - type: Physics + canCollide: False - proto: LightBulbBroken entities: - uid: 15019 @@ -269526,42 +280464,6 @@ entities: parent: 9510 - type: Physics canCollide: False - - uid: 19168 - components: - - type: Transform - parent: 19167 - - type: Physics - canCollide: False - - uid: 19170 - components: - - type: Transform - parent: 19169 - - type: Physics - canCollide: False - - uid: 19172 - components: - - type: Transform - parent: 19171 - - type: Physics - canCollide: False - - uid: 19174 - components: - - type: Transform - parent: 19173 - - type: Physics - canCollide: False - - uid: 19176 - components: - - type: Transform - parent: 19175 - - type: Physics - canCollide: False - - uid: 19188 - components: - - type: Transform - parent: 19187 - - type: Physics - canCollide: False - uid: 19191 components: - type: Transform @@ -269625,15 +280527,15 @@ entities: - type: Transform pos: 16.5,21.5 parent: 2 - - uid: 26504 + - uid: 18402 components: - type: Transform - pos: 31.5,52.5 + pos: -31.5,75.5 parent: 2 - - uid: 31190 + - uid: 26504 components: - type: Transform - pos: -33.5,73.5 + pos: 31.5,52.5 parent: 2 - proto: LiveLetLiveCircuitBoard entities: @@ -271440,8 +282342,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -271458,30 +282360,21 @@ entities: showEnts: False occludes: True ents: - - 10815 + - 1758 + - 1757 + - 14795 - 24712 - - 27683 - - 35482 + - 21564 + - 35877 + - 20447 + - 20448 + - 10815 - 23774 - - 35878 - 20449 - 35847 - 32377 - 32488 - 32441 - - 21519 - - 1758 - - 1757 - - 32372 - - 21564 - - 20444 - - 27678 - - 20445 - - 35877 - - 26924 - - 20446 - - 20447 - - 20448 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -271553,6 +282446,24 @@ entities: - type: Transform pos: -28.5,-56.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: LockerClown entities: - uid: 6782 @@ -272450,6 +283361,24 @@ entities: - type: Transform pos: 77.5,4.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 8208 components: - type: Transform @@ -273059,12 +283988,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,45.5 parent: 2 - - uid: 6300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,49.5 - parent: 2 - uid: 7568 components: - type: Transform @@ -273623,8 +284546,23 @@ entities: - type: Transform pos: -68.5,51.5 parent: 2 + - uid: 58024 + components: + - type: Transform + pos: 79.5,-65.5 + parent: 2 - proto: MaintenancePlantSpawner entities: + - uid: 821 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: 78.5,-54.5 + parent: 2 - uid: 4295 components: - type: Transform @@ -273665,6 +284603,16 @@ entities: - type: Transform pos: 34.5,-70.5 parent: 2 + - uid: 9259 + components: + - type: Transform + pos: 82.5,-58.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + pos: -40.5,-71.5 + parent: 2 - uid: 15415 components: - type: Transform @@ -273715,11 +284663,6 @@ entities: - type: Transform pos: 28.5,-47.5 parent: 2 - - uid: 23206 - components: - - type: Transform - pos: 29.5,-46.5 - parent: 2 - uid: 23207 components: - type: Transform @@ -273885,6 +284828,11 @@ entities: - type: Transform pos: -53.5,-45.5 parent: 2 + - uid: 28956 + components: + - type: Transform + pos: -40.5,-70.5 + parent: 2 - uid: 29184 components: - type: Transform @@ -274191,11 +285139,6 @@ entities: parent: 2 - proto: MaterialCloth1 entities: - - uid: 3821 - components: - - type: Transform - pos: -11.378685,71.41114 - parent: 2 - uid: 4530 components: - type: MetaData @@ -274204,51 +285147,6 @@ entities: - type: Transform pos: -29.339325,45.62529 parent: 2 - - uid: 5044 - components: - - type: Transform - pos: -11.659935,71.739265 - parent: 2 - - uid: 14018 - components: - - type: Transform - pos: -11.70681,71.37989 - parent: 2 - - uid: 14048 - components: - - type: Transform - pos: -11.33181,71.739265 - parent: 2 - - uid: 14050 - components: - - type: Transform - pos: -1.7603338,71.78614 - parent: 2 - - uid: 14051 - components: - - type: Transform - pos: -1.3384588,71.72364 - parent: 2 - - uid: 14052 - components: - - type: Transform - pos: -1.7915838,71.34864 - parent: 2 - - uid: 14053 - components: - - type: Transform - pos: -1.4165838,71.41114 - parent: 2 - - uid: 14054 - components: - - type: Transform - pos: -1.3540838,71.239265 - parent: 2 - - uid: 14055 - components: - - type: Transform - pos: -11.252931,71.307755 - parent: 2 - uid: 28130 components: - type: Transform @@ -274369,12 +285267,6 @@ entities: - type: Transform pos: -61.468277,-47.5881 parent: 2 - - uid: 21772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -67.399475,31.542627 - parent: 2 - proto: MatterBinStockPart entities: - uid: 3847 @@ -274519,6 +285411,16 @@ entities: - type: Transform pos: 23.5,-54.5 parent: 2 + - uid: 13242 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 - uid: 13293 components: - type: Transform @@ -274618,6 +285520,71 @@ entities: - type: Transform pos: 3.5,-61.5 parent: 2 +- proto: MediumPresentBox + entities: + - uid: 4565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.383636,34.706112 + parent: 2 + - uid: 5720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.6618543,-57.33437 + parent: 2 + - uid: 6330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.01558,34.963055 + parent: 2 + - uid: 6331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.84197,34.956112 + parent: 2 + - uid: 9217 + components: + - type: Transform + pos: 13.530517,-28.463383 + parent: 2 + - uid: 57655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.254134,-40.65477 + parent: 2 + - uid: 57659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.8583007,-40.49505 + parent: 2 + - uid: 57871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.1479654,-57.34826 + parent: 2 + - uid: 57877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.0299098,-57.626038 + parent: 2 + - uid: 58171 + components: + - type: Transform + pos: 13.134683,-28.81755 + parent: 2 + - uid: 58172 + components: + - type: Transform + pos: 13.259683,-29.053661 + parent: 2 - proto: Medkit entities: - uid: 18314 @@ -274862,6 +285829,11 @@ entities: - type: Transform pos: -6.4837666,-73.45044 parent: 2 + - uid: 22307 + components: + - type: Transform + pos: -66.48482,-84.41986 + parent: 2 - uid: 23310 components: - type: Transform @@ -275105,12 +286077,7 @@ entities: - uid: 12408 components: - type: Transform - pos: 23.335777,-10.324744 - parent: 2 - - uid: 51036 - components: - - type: Transform - pos: -14.502115,-19.53111 + pos: 23.419874,-10.421819 parent: 2 - uid: 52445 components: @@ -275145,12 +286112,6 @@ entities: - type: InsideEntityStorage - proto: Mirror entities: - - uid: 5720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,8.5 - parent: 2 - uid: 8901 components: - type: Transform @@ -275233,6 +286194,18 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,42.5 parent: 2 + - uid: 51595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,3.5 + parent: 2 + - uid: 51600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,4.5 + parent: 2 - uid: 51721 components: - type: Transform @@ -275293,6 +286266,16 @@ entities: rot: 3.141592653589793 rad pos: -38.5,98.5 parent: 2 + - uid: 58377 + components: + - type: Transform + pos: 45.5,-27.5 + parent: 2 + - uid: 58379 + components: + - type: Transform + pos: 44.5,-27.5 + parent: 2 - uid: 67738 components: - type: Transform @@ -275462,8 +286445,7 @@ entities: - uid: 13355 components: - type: Transform - rot: 18.84955592153876 rad - pos: -19.3498,-47.141724 + pos: -19.683992,-47.224037 parent: 2 - uid: 16199 components: @@ -275802,6 +286784,8 @@ entities: - type: Transform pos: 26.5,-43.5 parent: 2 + - type: TimedSpawner + intervalSeconds: 660 - uid: 24280 components: - type: Transform @@ -275924,11 +286908,6 @@ entities: - type: Transform pos: 8.56226,-71.445076 parent: 2 - - uid: 14526 - components: - - type: Transform - pos: 18.12295,-70.6482 - parent: 2 - uid: 14912 components: - type: Transform @@ -276034,6 +287013,14 @@ entities: - type: Transform pos: -59.595413,18.490135 parent: 2 +- proto: NewYearTree0 + entities: + - uid: 5219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.466404,35.30994 + parent: 2 - proto: NitrogenCanister entities: - uid: 602 @@ -276101,6 +287088,11 @@ entities: - type: Transform pos: -89.5,17.5 parent: 2 + - uid: 22072 + components: + - type: Transform + pos: -32.5,75.5 + parent: 2 - uid: 23061 components: - type: Transform @@ -276201,11 +287193,6 @@ entities: - type: Transform pos: -46.5,76.5 parent: 2 - - uid: 31191 - components: - - type: Transform - pos: -31.5,71.5 - parent: 2 - uid: 34929 components: - type: Transform @@ -276291,13 +287278,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 26437 - components: - - type: Transform - parent: 4623 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 44969 components: - type: Transform @@ -276533,11 +287513,6 @@ entities: - type: Transform pos: -15.532654,-21.703056 parent: 2 - - uid: 27923 - components: - - type: Transform - pos: -66.65308,-84.56056 - parent: 2 - uid: 55486 components: - type: Transform @@ -276885,11 +287860,6 @@ entities: - type: Transform pos: -21.5,16.5 parent: 2 - - uid: 32223 - components: - - type: Transform - pos: 23.5,-70.5 - parent: 2 - uid: 34930 components: - type: Transform @@ -276950,13 +287920,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25382 - components: - - type: Transform - parent: 4623 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 44970 components: - type: Transform @@ -277697,72 +288660,6 @@ entities: rot: 3.141592653589793 rad pos: -13.519823,40.67157 parent: 2 - - uid: 12152 - components: - - type: MetaData - name: Объявление о пропаже - - type: Transform - rot: 2.443460952792061 rad - pos: -96.38474,52.56008 - parent: 2 - - type: Paper - stampState: paper_stamp-detective - stampedBy: - - stampedColor: '#BB3232FF' - stampedName: Поисковое Бюро "Атхара" - content: >2 - - [color=red][head=1]Объявление!!![/head][/color] - - [head=3]"Пропажа важного существа!!!"[/head] - - - Прошу!!! Помогите!!!! У меня пропала моя любимая уточка по имени Федя!!! Она такая.. жёлтенькая! Красивенькая! иии... резиновая!! Отзывается на: Федя, Федоря или Каневский. - - - Подпись:[italic]БоулКиллс[/italic] - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - TableLayer - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 12153 - uid: 12156 components: - type: Transform @@ -277832,35 +288729,6 @@ entities: fibers: - чёрные синтетические волокна fingerprints: [] - - uid: 12808 - components: - - type: Transform - rot: -3.490658503988659 rad - pos: -15.108807,59.592625 - parent: 2 - - type: Paper - content: >2- - - - Со станции на станцию гуляет легенда о том, что в ночное время по коридорам - бегает белая, как снег девица, и красный, как кровь мальчишка. - - - Все, кто видел их вместе - либо по случаю счастья был их званным гостем для мини-представления, либо же, до конца своей жизни были очарованы их красотой, из-за чего не могли нормально сдерживать свой рассудок и моральный дух, после чего уходили в глубочайший депрессивный сон, из которого даже удары ножевыми предметами не будили разочаровавшихся. - - - Я поведую вам историю, об одной загулявшейся девушке.. что бегала одна одинёшенька.. по обесточенной станции. - - - - В одной о-о-очень далёкой смене, девушка..... - - uid: 13126 - components: - - type: Transform - rot: -3.839724354387525 rad - pos: -14.716447,59.695873 - parent: 2 - - type: Paper - content: '... ходила по обесточенным коридорам, её должность была из отдела командования, а именно, она являлась капитаном станции. Без малейшего понимания, куда она направляется, разными телодвижениями рук пыталась найти любые ориентиры в пространстве, и случайно коснулась холодного плеча белой, мелько сияющей девицы. Затем, от неожиданности встретить кого-либо в темноте, отходя, другим боком врезалась в маленького, красноволосого мальчика, который так-же мельком сиял. После немногих извинений, капитан приподняла мальчика, и потрепав немного его за волосы, аккуратно поправила его рубашку. Капитан, пытаясь рассмотреть лики их лиц, улыбчиво спросила: "Ребята, вы чего делаете одни, да и ещё в полной темноте коридорах нашей станции?". После вопроса, последнее, что услышала и увидела капитан в ту ночь, это прекрасное ангельское пение от этих ребятишек и их чудные милые лица. Девушка, как представитель командования, или же по нашему обычному, бравый офицер от корпорации - покланялась и тут же хотела выразить свой комплимент в их сторону, за чудное пение. Но вдруг, на станции восстановилась подача питания и включился свет. Протерев глаза от неожиданного яркого сияния желто-небесных лампочек, капитан никого перед собой так и не увидела, а на полу валялись костюмы девицы и мальчишки. В ту ночь, как выяснила позже капитан, этих ребят никто так и не видел. А их голос и чудное пение, она запомнила на всю жизнь.' - uid: 15178 components: - type: Transform @@ -277886,6 +288754,26 @@ entities: - type: Transform pos: 26.481289,-56.39932 parent: 2 + - uid: 15866 + components: + - type: Transform + pos: -72.27178,32.592422 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: -30.073572,-75.504524 + parent: 2 + - uid: 17753 + components: + - type: Transform + pos: -26.729822,-75.4264 + parent: 2 + - uid: 17795 + components: + - type: Transform + pos: -27.089197,-75.4264 + parent: 2 - uid: 18526 components: - type: Transform @@ -277904,18 +288792,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.089855,-72.319954 parent: 2 - - uid: 18815 - components: - - type: Transform - pos: -27.246109,-75.46058 - parent: 2 - - type: Paper - content: >- - -А что он говорит? - - -Да хер его знает говорит что бикырадын все лечит. - - -Хорошо, как же круто я что я купил диплом на интерна :D. - uid: 18838 components: - type: Transform @@ -277973,29 +288849,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.38201654,-38.815407 parent: 2 - - uid: 19809 - components: - - type: Transform - pos: -30.253502,-75.50148 - parent: 2 - - type: Paper - content: "\n\n\n\n ХАХХАХАХАХХАХА\n\n\n\n ДО чеГО МеДиЦИнА ДоШлА !\n ДыРЫ ЛаТАют ПодоРожНиКом! \n\n\n \n\n ХАХАХа \n\n\n АХХАХАХ\n\n\n АХХАХХАХА" - - uid: 19818 - components: - - type: Transform - pos: -29.783628,-75.53273 - parent: 2 - - type: Paper - content: >2- - - - - - ПХахХАхАХ - - - Как бабка завещала - Ещё б плюнули хахахах! - uid: 19847 components: - type: Transform @@ -278101,35 +288954,6 @@ entities: parent: 2 - type: Paper content: " О\n Х\n\n З\n Р\n Я\n \n Я\n\n Т\n У\n Д\n А\n П\n О\n Л\n Е\n З" - - uid: 21965 - components: - - type: Transform - rot: 6.283185307179586 rad - pos: -10.495178,-70.42451 - parent: 2 - - type: Paper - content: > - День третий? Четвёртый? Я не знаю сколько меня тут уже держат. Я пытаюсь объяснить всем, что они в опасности. - - Меня не слушают, говорят, что мне нужна помощь - - Но ОН всё ещё там, лежит в отделе, готовый в любую минуту вырваться и уничтожить нас всех - - Я.. Я не могу позволить этого. Он придёт за мной, а потом и за другими... - - Врач приходит три раза в день, я смогла украсть шприц из его кармана, мне нужно действовать, пока он не заметил пропажу снотворного - - Я спасу нас всех. - - uid: 22175 - components: - - type: Transform - pos: -67.595505,36.53454 - parent: 2 - - uid: 22293 - components: - - type: Transform - pos: -67.505264,36.615658 - parent: 2 - uid: 22810 components: - type: Transform @@ -278145,16 +288969,6 @@ entities: - type: Transform pos: 6.5693493,-33.471577 parent: 2 - - uid: 23002 - components: - - type: MetaData - name: записка - - type: Transform - rot: 2.792526803190927 rad - pos: 60.204865,-40.26134 - parent: 2 - - type: Paper - content: "МАМА! Если ты это читаешь, то это значит, что я прохожу важнейший турнир во всей галактике!! И только не надо начинать как обычно: \"Со своими игрульками совсем рихнулся\". Как хочу, так и прожигаю остатки своей жизни! Ты меня совсем не понимаешь!!! бе бе бе! Не приходи сюда больше...\n \n\n Твой сын, будущий геймер по космонавтикам.." - uid: 23363 components: - type: Transform @@ -278679,24 +289493,6 @@ entities: content: Здесь покоится великий, мудрый и сильный шахтёр Джонас Шварцнегер... - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 52109 - components: - - type: Transform - rot: -2.2689280275926285 rad - pos: -13.494157,-67.377106 - parent: 2 - - type: Paper - stampState: paper_stamp-psychologist - stampedBy: - - stampedColor: '#0082AEFF' - stampedName: stamp-component-stamped-name-psychologist - content: >2- - [head=2]ВЫ НЕ ПОНИМАЕТЕ!!![/head] - [head=2]ВО ВСЕМ ВИНОВАТЫ ВУЛЬПЫ!!![/head] - В ТОМ, ЧТО МЫ ЖИВЕМ ПЛОХО!!! В ТОМ, ЧТО НАШИ ЗАРПЛАТЫ МАЛЕНЬКИЕ!!! В ТОМ, ЧТО НАША КОРПОРАЦИЯ ЗАСРАННАЯ!!! - - - Диагноз: Пассивная агрессия. - uid: 52436 components: - type: MetaData @@ -279158,6 +289954,17 @@ entities: - type: Transform pos: 7.5443296,12.505732 parent: 2 + - uid: 58221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.211334,34.658268 + parent: 2 + - uid: 58374 + components: + - type: Transform + pos: -71.398834,34.627018 + parent: 2 - proto: PaperBin entities: - uid: 18816 @@ -279473,37 +290280,6 @@ entities: parent: 52449 - type: Physics canCollide: False - - uid: 71036 - components: - - type: Transform - pos: 0.4539795,1.6979828 - parent: 71010 - - type: Paper - content: >- - Дорогие друзья! - - - Хочу поделиться с вами легендой о космическом корабле "Летучий Голландец". Многие, наверняка, слышали о нем и знают его трагическую историю. - - - Считается, что этот корабль был создан давным-давно, когда еще не было таких технологических возможностей, как сейчас. Странным образом он выжил до наших дней. - - - Как гласит легенда, капитан пиратов Ти-Джууи прилетел на каторгу за спасением своей возлюбленной Елены. Он собирался освободить ее из рук главы службы безопасности, но его попытка была предотвращена и он был убит. - - - В ответ на этот кошмарный поступок капитан пиратов проклял эту каторгу и заклинал, чтобы его душа поддерживала вечное питание на его корабле. - - - Легенда гласит, что "Летучий Голландец" несет в себе зло и ужас, а те, кто встретят его на своем пути, обречены на несчастье. Но многие считают эту историю просто сказкой, придуманной космическими пиратами, чтобы развлечь себя в долгих полетах. - - - Какова правда - мы не знаем. Но если вы встретите "Летучий Голландец" в своем пути - будьте осторожны и готовы к невероятным приключениям. - - - С любовью, - - Елена Фаллен - proto: PaperRolling1 entities: - uid: 15141 @@ -279511,16 +290287,6 @@ entities: - type: Transform pos: 18.55438,-80.63441 parent: 2 - - uid: 15148 - components: - - type: Transform - pos: 21.48344,-71.92519 - parent: 2 - - uid: 15149 - components: - - type: Transform - pos: 4.3545837,-72.17519 - parent: 2 - uid: 15150 components: - type: Transform @@ -279531,11 +290297,6 @@ entities: - type: Transform pos: 6.6045837,-69.53457 parent: 2 - - uid: 15153 - components: - - type: Transform - pos: 12.307709,-73.47207 - parent: 2 - uid: 15154 components: - type: Transform @@ -279551,11 +290312,6 @@ entities: - type: Transform pos: 14.354013,-71.56582 parent: 2 - - uid: 15157 - components: - - type: Transform - pos: 19.479013,-70.56582 - parent: 2 - uid: 23100 components: - type: Transform @@ -279614,11 +290370,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.60409,5.1139784 parent: 2 - - uid: 19812 - components: - - type: Transform - pos: -30.049253,-75.548355 - parent: 2 - uid: 23103 components: - type: Transform @@ -280752,18 +291503,6 @@ entities: - type: Transform pos: 58.65759,42.402607 parent: 2 -- proto: PlasticBanana - entities: - - uid: 17743 - components: - - type: Transform - pos: -4.2486186,21.486713 - parent: 2 - - uid: 17744 - components: - - type: Transform - pos: -4.42223,21.479769 - parent: 2 - proto: PlasticFlapsAirtightClear entities: - uid: 4237 @@ -280839,7 +291578,7 @@ entities: - type: MetaData name: Ko4erga - type: Transform - pos: 9.748261,-83.45553 + pos: 9.521642,-83.31838 parent: 2 - proto: PlushieAtmosian entities: @@ -280941,11 +291680,6 @@ entities: parent: 2 - proto: PlushieHolocarp entities: - - uid: 4198 - components: - - type: Transform - pos: -96.130356,3.6737065 - parent: 2 - uid: 5384 components: - type: Transform @@ -280958,11 +291692,6 @@ entities: - type: Transform pos: -0.435089,-36.3242 parent: 2 - - uid: 22996 - components: - - type: Transform - pos: 59.498062,-43.514107 - parent: 2 - uid: 25391 components: - type: Transform @@ -280976,7 +291705,7 @@ entities: - uid: 29769 components: - type: Transform - pos: -4.494076,-82.13641 + pos: -4.510707,-82.15156 parent: 2 - uid: 30540 components: @@ -281066,11 +291795,6 @@ entities: - type: Transform pos: 94.51052,-0.505754 parent: 2 - - uid: 4187 - components: - - type: Transform - pos: -98.35368,2.22579 - parent: 2 - proto: PlushieNar entities: - uid: 27010 @@ -281135,7 +291859,7 @@ entities: - uid: 4174 components: - type: Transform - pos: -93.88959,3.4026263 + pos: -95.29674,7.5756807 parent: 2 - uid: 8587 components: @@ -281166,7 +291890,7 @@ entities: - uid: 4211 components: - type: Transform - pos: -94.67202,4.81954 + pos: -95.12486,7.3881807 parent: 2 - uid: 15545 components: @@ -281414,6 +292138,11 @@ entities: - type: Transform pos: -73.5,-3.5 parent: 2 + - uid: 18689 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 66965 - uid: 24071 components: - type: Transform @@ -281470,11 +292199,6 @@ entities: parent: 2 - proto: PosterBroken entities: - - uid: 5568 - components: - - type: Transform - pos: 10.5,-71.5 - parent: 2 - uid: 20223 components: - type: Transform @@ -281729,6 +292453,13 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 26048 + components: + - type: Transform + pos: -32.5,-81.5 + parent: 2 - proto: PosterContrabandLustyExomorph entities: - uid: 20451 @@ -281805,6 +292536,11 @@ entities: rot: 1.5707963267948966 rad pos: -72.5,-54.5 parent: 2 + - uid: 24754 + components: + - type: Transform + pos: 86.5,-59.5 + parent: 2 - proto: PosterContrabandRise entities: - uid: 24445 @@ -282072,11 +292808,6 @@ entities: parent: 54737 - proto: PosterLegitIan entities: - - uid: 5507 - components: - - type: Transform - pos: -25.5,22.5 - parent: 2 - uid: 11026 components: - type: Transform @@ -282096,10 +292827,11 @@ entities: - type: Transform pos: 22.5,-62.5 parent: 2 - - uid: 28062 + - uid: 58418 components: - type: Transform - pos: 72.5,-53.5 + rot: -1.5707963267948966 rad + pos: 72.5,-50.5 parent: 2 - proto: PosterLegitMime entities: @@ -282116,10 +292848,10 @@ entities: rot: 3.141592653589793 rad pos: -34.5,72.5 parent: 2 - - uid: 10944 + - uid: 10991 components: - type: Transform - pos: 0.5,3.5 + pos: 0.5,-2.5 parent: 2 - uid: 11027 components: @@ -282552,16 +293284,6 @@ entities: - type: Transform pos: 16.5,2.5 parent: 2 - - uid: 22717 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 2 - - uid: 22718 - components: - - type: Transform - pos: -15.5,2.5 - parent: 2 - uid: 23386 components: - type: Transform @@ -282577,6 +293299,16 @@ entities: - type: Transform pos: -49.5,91.5 parent: 2 + - uid: 58349 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 58350 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 - uid: 67767 components: - type: Transform @@ -282776,26 +293508,6 @@ entities: - type: Transform pos: -40.5,-28.5 parent: 2 - - uid: 22692 - components: - - type: Transform - pos: 14.5,18.5 - parent: 2 - - uid: 22693 - components: - - type: Transform - pos: -13.5,18.5 - parent: 2 - - uid: 22694 - components: - - type: Transform - pos: 13.513338,-17.694237 - parent: 2 - - uid: 22695 - components: - - type: Transform - pos: -12.548566,-17.678612 - parent: 2 - uid: 22817 components: - type: Transform @@ -282909,6 +293621,21 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 2 + - uid: 18031 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 18032 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - uid: 18037 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 - uid: 18173 components: - type: Transform @@ -282920,6 +293647,11 @@ entities: showEnts: False occludes: True ent: 18174 + - uid: 18815 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 - uid: 19979 components: - type: Transform @@ -282930,16 +293662,6 @@ entities: - type: Transform pos: -21.5,-1.5 parent: 2 - - uid: 19981 - components: - - type: Transform - pos: -21.5,2.5 - parent: 2 - - uid: 19982 - components: - - type: Transform - pos: -29.5,2.5 - parent: 2 - uid: 22583 components: - type: Transform @@ -282975,6 +293697,16 @@ entities: - type: Transform pos: 8.5,10.5 parent: 2 + - uid: 58289 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 58291 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 - proto: PottedPlant23 entities: - uid: 24599 @@ -283051,13 +293783,6 @@ entities: - type: Transform pos: -19.42367,-9.06045 parent: 2 -- proto: PottedPlant6 - entities: - - uid: 13384 - components: - - type: Transform - pos: -20.479868,-47.58977 - parent: 2 - proto: PottedPlant7 entities: - uid: 22791 @@ -283173,6 +293898,11 @@ entities: - type: Transform pos: -54.5,91.5 parent: 2 + - uid: 58138 + components: + - type: Transform + pos: -87.5,54.5 + parent: 2 - proto: PottedPlantAlt3 entities: - uid: 6382 @@ -283235,6 +293965,11 @@ entities: - type: Transform pos: -4.75,-13.7 parent: 2 + - uid: 58137 + components: + - type: Transform + pos: -83.5,54.5 + parent: 2 - proto: PottedPlantAlt4 entities: - uid: 4597 @@ -283294,11 +294029,6 @@ entities: - type: Transform pos: 6.7025967,49.362206 parent: 2 - - uid: 17736 - components: - - type: Transform - pos: -4.5,21.5 - parent: 2 - uid: 23872 components: - type: Transform @@ -283380,11 +294110,6 @@ entities: - type: Transform pos: -28.449495,-9.37295 parent: 2 - - uid: 55430 - components: - - type: Transform - pos: -32.5,34.9375 - parent: 2 - proto: PottedPlantBioluminscent entities: - uid: 7841 @@ -283484,6 +294209,11 @@ entities: - type: Transform pos: -99.5,50.5 parent: 2 + - uid: 11374 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 - uid: 11940 components: - type: Transform @@ -283509,11 +294239,6 @@ entities: - type: Transform pos: 15.5,-41.5 parent: 2 - - uid: 13758 - components: - - type: Transform - pos: 13.5,-43.5 - parent: 2 - uid: 13759 components: - type: Transform @@ -283609,6 +294334,16 @@ entities: - type: Transform pos: 36.5,-69.5 parent: 2 + - uid: 58260 + components: + - type: Transform + pos: -72.5,36.5 + parent: 2 + - uid: 58263 + components: + - type: Transform + pos: -68.5,36.5 + parent: 2 - uid: 67769 components: - type: Transform @@ -283706,11 +294441,6 @@ entities: - type: Transform pos: -73.5,18.5 parent: 2 - - uid: 20801 - components: - - type: Transform - pos: 77.5,-52.5 - parent: 2 - uid: 25494 components: - type: Transform @@ -283730,14 +294460,24 @@ entities: parent: 2 - uid: 15822 components: + - type: MetaData + desc: Выглядит не очень здоровым... + name: комнатное растение - type: Transform pos: 27.5,-56.5 parent: 2 - - uid: 26342 + missingComponents: + - StealTarget + - uid: 23688 components: + - type: MetaData + desc: Выглядит не очень здоровым... + name: комнатное растение - type: Transform - pos: -35.5,-74.5 + pos: -38.5,-76.5 parent: 2 + missingComponents: + - StealTarget - proto: PowerCageHigh entities: - uid: 54939 @@ -284098,11 +294838,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-83.5 parent: 2 - - uid: 5079 - components: - - type: Transform - pos: 23.5,-69.5 - parent: 2 - uid: 8819 components: - type: Transform @@ -284114,6 +294849,12 @@ entities: - type: Transform pos: -15.5,-74.5 parent: 2 + - uid: 10858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-86.5 + parent: 2 - uid: 18927 components: - type: Transform @@ -284177,16 +294918,17 @@ entities: rot: -1.5707963267948966 rad pos: -74.5,40.5 parent: 2 - - uid: 24159 + - uid: 24002 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,83.5 + pos: -39.5,-51.5 parent: 2 - - uid: 24278 + - uid: 24159 components: - type: Transform - pos: -37.5,-47.5 + rot: 3.141592653589793 rad + pos: -37.5,83.5 parent: 2 - uid: 24367 components: @@ -284600,12 +295342,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-51.5 parent: 2 - - uid: 26714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-51.5 - parent: 2 - uid: 26715 components: - type: Transform @@ -285206,11 +295942,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-86.5 parent: 2 - - uid: 30804 - components: - - type: Transform - pos: -49.5,-85.5 - parent: 2 - uid: 30848 components: - type: Transform @@ -285253,6 +295984,12 @@ entities: rot: 1.5707963267948966 rad pos: -88.5,40.5 parent: 2 + - uid: 51605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,20.5 + parent: 2 - uid: 51885 components: - type: Transform @@ -285264,6 +296001,12 @@ entities: rot: 1.5707963267948966 rad pos: -69.5,-25.5 parent: 2 + - uid: 58228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-71.5 + parent: 2 - proto: PoweredLEDLightPostSmall entities: - uid: 7766 @@ -286610,6 +297353,12 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,64.5 parent: 2 + - uid: 11375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,52.5 + parent: 2 - uid: 11376 components: - type: Transform @@ -288055,6 +298804,12 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,7.5 parent: 2 + - uid: 19818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,7.5 + parent: 2 - uid: 19909 components: - type: Transform @@ -288714,6 +299469,12 @@ entities: - type: Transform pos: -72.5,-29.5 parent: 2 + - uid: 21706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,3.5 + parent: 2 - uid: 22003 components: - type: Transform @@ -290168,12 +300929,6 @@ entities: rot: 1.5707963267948966 rad pos: -106.5,48.5 parent: 2 - - uid: 71444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,52.5 - parent: 2 - proto: PoweredlightBlue entities: - uid: 605 @@ -290204,17 +300959,6 @@ entities: - type: Transform pos: -50.5,-13.5 parent: 2 - - uid: 9032 - components: - - type: Transform - pos: -55.5,7.5 - parent: 2 - - uid: 9033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,3.5 - parent: 2 - uid: 13986 components: - type: Transform @@ -290314,6 +301058,22 @@ entities: parent: 54737 - proto: PoweredlightEmpty entities: + - uid: 5383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-25.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 5395 + - type: ApcPowerReceiver + powerLoad: 12 + - type: DamageOnInteract + isDamageActive: False - uid: 8847 components: - type: Transform @@ -290513,11 +301273,96 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,7.5 parent: 2 + - uid: 11395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,6.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,12.5 + parent: 2 + - uid: 11637 + components: + - type: Transform + pos: -77.5,10.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,6.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + pos: -82.5,8.5 + parent: 2 + - uid: 13518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,10.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,16.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: -67.5,18.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,8.5 + parent: 2 + - uid: 14050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,12.5 + parent: 2 + - uid: 14051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,37.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,37.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,49.5 + parent: 2 + - uid: 14055 + components: + - type: Transform + pos: -110.5,43.5 + parent: 2 - uid: 14617 components: - type: Transform pos: 18.5,-53.5 parent: 2 + - uid: 14893 + components: + - type: Transform + pos: -110.5,59.5 + parent: 2 - uid: 15043 components: - type: Transform @@ -290530,6 +301375,12 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,11.5 parent: 2 + - uid: 17622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,37.5 + parent: 2 - uid: 18823 components: - type: Transform @@ -290646,6 +301497,23 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,51.5 parent: 2 + - uid: 23593 + components: + - type: Transform + pos: -110.5,51.5 + parent: 2 + - uid: 23594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,57.5 + parent: 2 + - uid: 23595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,71.5 + parent: 2 - uid: 24527 components: - type: Transform @@ -290669,6 +301537,12 @@ entities: - type: Transform pos: 131.5,-53.5 parent: 2 + - uid: 24730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,65.5 + parent: 2 - uid: 24835 components: - type: Transform @@ -290699,12 +301573,6 @@ entities: rot: 1.5707963267948966 rad pos: 105.5,-52.5 parent: 2 - - uid: 24975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-25.5 - parent: 2 - uid: 25004 components: - type: Transform @@ -290797,59 +301665,38 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,63.5 parent: 2 -- proto: PoweredlightOrange - entities: - - uid: 7947 + - uid: 40679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,12.5 + rot: 1.5707963267948966 rad + pos: -104.5,71.5 parent: 2 - - uid: 9054 + - uid: 40681 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,6.5 + pos: -101.5,37.5 parent: 2 - - uid: 9060 + - uid: 43538 components: - type: Transform - pos: -77.5,10.5 + rot: -1.5707963267948966 rad + pos: -101.5,71.5 parent: 2 - - uid: 9079 + - uid: 47479 components: - type: Transform rot: 1.5707963267948966 rad - pos: -74.5,12.5 - parent: 2 - - uid: 9090 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,10.5 - parent: 2 - - uid: 9103 - components: - - type: Transform - pos: -82.5,8.5 + pos: -97.5,71.5 parent: 2 +- proto: PoweredlightOrange + entities: - uid: 9188 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,18.5 parent: 2 - - uid: 9217 - components: - - type: Transform - pos: -67.5,18.5 - parent: 2 - - uid: 9324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,16.5 - parent: 2 - uid: 9414 components: - type: Transform @@ -290862,18 +301709,6 @@ entities: rot: -1.5707963267948966 rad pos: -69.5,23.5 parent: 2 - - uid: 9434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,8.5 - parent: 2 - - uid: 9447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,6.5 - parent: 2 - uid: 9794 components: - type: Transform @@ -290890,12 +301725,6 @@ entities: rot: 3.141592653589793 rad pos: -63.5,7.5 parent: 2 - - uid: 10394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,37.5 - parent: 2 - uid: 10508 components: - type: Transform @@ -290908,45 +301737,6 @@ entities: rot: -1.5707963267948966 rad pos: -110.5,68.5 parent: 2 - - uid: 10518 - components: - - type: Transform - pos: -108.5,59.5 - parent: 2 - - uid: 10563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,37.5 - parent: 2 - - uid: 10669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,49.5 - parent: 2 - - uid: 10672 - components: - - type: Transform - pos: -110.5,43.5 - parent: 2 - - uid: 10675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,65.5 - parent: 2 - - uid: 10676 - components: - - type: Transform - pos: -110.5,59.5 - parent: 2 - - uid: 10677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,37.5 - parent: 2 - uid: 11045 components: - type: Transform @@ -290958,11 +301748,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,30.5 parent: 2 - - uid: 11206 - components: - - type: Transform - pos: -108.5,51.5 - parent: 2 - uid: 11263 components: - type: Transform @@ -290973,12 +301758,6 @@ entities: - type: Transform pos: -91.5,41.5 parent: 2 - - uid: 11269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,57.5 - parent: 2 - uid: 11275 components: - type: Transform @@ -290991,40 +301770,6 @@ entities: rot: 3.141592653589793 rad pos: -91.5,67.5 parent: 2 - - uid: 11371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,71.5 - parent: 2 - - uid: 11374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,57.5 - parent: 2 - - uid: 11375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,41.5 - parent: 2 - - uid: 11395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,65.5 - parent: 2 - - uid: 11419 - components: - - type: Transform - pos: -108.5,67.5 - parent: 2 - - uid: 11637 - components: - - type: Transform - pos: -110.5,51.5 - parent: 2 - uid: 13116 components: - type: Transform @@ -291036,12 +301781,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,55.5 parent: 2 - - uid: 14893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,69.5 - parent: 2 - uid: 19140 components: - type: Transform @@ -291136,65 +301875,12 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-31.5 parent: 2 - - uid: 30078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,71.5 - parent: 2 - - uid: 40679 - components: - - type: Transform - pos: -108.5,43.5 - parent: 2 - - uid: 40680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,37.5 - parent: 2 - - uid: 40681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,49.5 - parent: 2 - - uid: 40688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,71.5 - parent: 2 - - uid: 43538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,71.5 - parent: 2 - uid: 53826 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,20.5 parent: 2 - - uid: 71404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,39.5 - parent: 2 - - uid: 71405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,39.5 - parent: 2 - - uid: 71410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,69.5 - parent: 2 - proto: PoweredlightPink entities: - uid: 3055 @@ -291500,84 +302186,6 @@ entities: ent: 9511 - type: ApcPowerReceiver powerLoad: 60 - - uid: 19167 - components: - - type: Transform - pos: 94.5,9.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 19168 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 19169 - components: - - type: Transform - pos: 94.5,15.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 19170 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 19171 - components: - - type: Transform - pos: 94.5,2.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 19172 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 19173 - components: - - type: Transform - pos: 94.5,-3.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 19174 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 19175 - components: - - type: Transform - pos: 87.5,15.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 19176 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 19187 - components: - - type: Transform - pos: 81.5,13.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 19188 - - type: ApcPowerReceiver - powerLoad: 60 - uid: 19190 components: - type: Transform @@ -291949,6 +302557,12 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-67.5 parent: 2 + - uid: 5425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-27.5 + parent: 2 - uid: 5484 components: - type: Transform @@ -292305,6 +302919,11 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,64.5 parent: 2 + - uid: 13240 + components: + - type: Transform + pos: -36.5,-47.5 + parent: 2 - uid: 14604 components: - type: Transform @@ -292807,12 +303426,6 @@ entities: - type: Transform pos: -86.5,-47.5 parent: 2 - - uid: 26810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,31.5 - parent: 2 - uid: 26883 components: - type: Transform @@ -292919,12 +303532,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,95.5 parent: 2 - - uid: 31395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,20.5 - parent: 2 - uid: 33873 components: - type: Transform @@ -293238,12 +303845,6 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-42.5 parent: 2 - - uid: 21203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-27.5 - parent: 2 - uid: 25777 components: - type: Transform @@ -293440,6 +304041,53 @@ entities: powerLoad: 60 - type: DamageOnInteract isDamageActive: False + - uid: 57669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,34.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 57670 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 58230 + components: + - type: Transform + pos: -70.5,36.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 58231 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 58249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,34.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 58250 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False - proto: PrefilledSyringe entities: - uid: 52 @@ -293459,6 +304107,151 @@ entities: solution@injector: !type:ContainerSlot ent: 53 - type: InsideEntityStorage +- proto: PresentRandom + entities: + - uid: 19982 + components: + - type: Transform + pos: 11.161327,-35.23021 + parent: 2 + - uid: 57676 + components: + - type: Transform + pos: 25.242826,-7.6739197 + parent: 2 + - uid: 57677 + components: + - type: Transform + pos: 25.745161,-8.20517 + parent: 2 + - uid: 57684 + components: + - type: Transform + pos: 10.429528,-35.22315 + parent: 2 + - uid: 57685 + components: + - type: Transform + pos: 10.585777,-35.613773 + parent: 2 + - uid: 57687 + components: + - type: Transform + pos: 24.751282,-35.029373 + parent: 2 + - uid: 57688 + components: + - type: Transform + pos: 24.720032,-35.45125 + parent: 2 + - uid: 57977 + components: + - type: Transform + pos: -3.363019,-12.856503 + parent: 2 + - uid: 58182 + components: + - type: Transform + pos: -4.6857224,-8.174836 + parent: 2 + - uid: 58183 + components: + - type: Transform + pos: -4.3575974,-8.612336 + parent: 2 + - uid: 58184 + components: + - type: Transform + pos: -4.2348733,-7.799836 + parent: 2 +- proto: PresentRandomAsh + entities: + - uid: 40194 + components: + - type: Transform + parent: 20296 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 57652 + components: + - type: Transform + pos: -41.80748,-20.44275 + parent: 2 + - uid: 57679 + components: + - type: MetaData + name: подарок для ГСБ + - type: Transform + pos: -61.306164,-5.492338 + parent: 2 + - uid: 57690 + components: + - type: Transform + pos: 85.31259,-60.636276 + parent: 2 + - uid: 57691 + components: + - type: Transform + pos: -43.512344,-90.661026 + parent: 2 + - uid: 57692 + components: + - type: Transform + pos: -89.66902,26.399006 + parent: 2 + - uid: 57701 + components: + - type: Transform + pos: -7.365347,4.4080267 + parent: 2 + - uid: 57738 + components: + - type: Transform + pos: -30.759062,-29.60266 + parent: 2 + - uid: 57739 + components: + - type: Transform + pos: -25.430937,-28.430784 + parent: 2 + - uid: 57740 + components: + - type: Transform + pos: -18.216204,-29.63391 + parent: 2 + - uid: 58428 + components: + - type: Transform + pos: -41.291855,-20.2865 + parent: 2 + - uid: 58429 + components: + - type: Transform + pos: -41.354355,-20.6615 + parent: 2 +- proto: PresentRandomCash + entities: + - uid: 57678 + components: + - type: Transform + pos: 25.39945,-8.72227 + parent: 2 + - uid: 57689 + components: + - type: Transform + pos: 24.220032,-35.20125 + parent: 2 + - uid: 57697 + components: + - type: Transform + pos: 5.611073,5.293449 + parent: 2 + - uid: 58430 + components: + - type: Transform + pos: -47.72663,-25.66698 + parent: 2 - proto: PrinterDoc entities: - uid: 4670 @@ -295091,11 +305884,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,37.5 parent: 2 - - uid: 405 - components: - - type: Transform - pos: -20.5,-8.5 - parent: 2 - uid: 948 components: - type: Transform @@ -295119,29 +305907,12 @@ entities: rot: 3.141592653589793 rad pos: -51.5,32.5 parent: 2 - - uid: 1952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,14.5 - parent: 2 - uid: 2543 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,15.5 parent: 2 - - uid: 2877 - components: - - type: Transform - pos: -19.5,-8.5 - parent: 2 - - uid: 2983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,-2.5 - parent: 2 - uid: 3170 components: - type: Transform @@ -295311,12 +306082,6 @@ entities: rot: 1.5707963267948966 rad pos: -106.5,11.5 parent: 2 - - uid: 3903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,2.5 - parent: 2 - uid: 3939 components: - type: Transform @@ -295455,22 +306220,12 @@ entities: rot: -1.5707963267948966 rad pos: -107.5,15.5 parent: 2 - - uid: 5197 - components: - - type: Transform - pos: 93.5,9.5 - parent: 2 - uid: 5206 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-61.5 parent: 2 - - uid: 5215 - components: - - type: Transform - pos: 92.5,9.5 - parent: 2 - uid: 5235 components: - type: Transform @@ -295483,43 +306238,22 @@ entities: rot: 3.141592653589793 rad pos: 68.5,-61.5 parent: 2 - - uid: 5250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,10.5 - parent: 2 - uid: 5255 components: - type: Transform rot: 3.141592653589793 rad - pos: 93.5,15.5 - parent: 2 - - uid: 5257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,15.5 + pos: -32.5,35.5 parent: 2 - uid: 5260 components: - type: Transform - pos: 93.5,-3.5 - parent: 2 - - uid: 5261 - components: - - type: Transform - pos: 92.5,-3.5 - parent: 2 - - uid: 5264 - components: - - type: Transform - pos: 89.5,-3.5 + pos: -32.5,34.5 parent: 2 - uid: 5265 components: - type: Transform - pos: 88.5,-3.5 + rot: 3.141592653589793 rad + pos: -31.5,35.5 parent: 2 - uid: 5271 components: @@ -295533,28 +306267,39 @@ entities: pos: -98.5,17.5 parent: 2 - uid: 5331 + components: + - type: Transform + pos: -31.5,34.5 + parent: 2 + - uid: 5342 components: - type: Transform rot: 1.5707963267948966 rad - pos: 94.5,1.5 + pos: 94.5,-2.5 parent: 2 - - uid: 5339 + - uid: 5365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + - uid: 5426 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,-0.5 parent: 2 - - uid: 5350 + - uid: 5432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,2.5 + rot: 1.5707963267948966 rad + pos: 94.5,1.5 parent: 2 - - uid: 5365 + - uid: 5437 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,24.5 + pos: 94.5,13.5 parent: 2 - uid: 5490 components: @@ -295776,51 +306521,11 @@ entities: - type: Transform pos: 87.5,-23.5 parent: 2 - - uid: 6328 - components: - - type: Transform - pos: 93.5,3.5 - parent: 2 - - uid: 6329 - components: - - type: Transform - pos: 92.5,3.5 - parent: 2 - - uid: 6330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,8.5 - parent: 2 - - uid: 6331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,8.5 - parent: 2 - - uid: 6332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,7.5 - parent: 2 - - uid: 6333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,4.5 - parent: 2 - - uid: 6361 + - uid: 6285 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 2 - - uid: 6362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-9.5 + pos: 94.5,11.5 parent: 2 - uid: 6595 components: @@ -295828,18 +306533,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,72.5 parent: 2 - - uid: 6724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,12.5 - parent: 2 - - uid: 6778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,11.5 - parent: 2 - uid: 7084 components: - type: Transform @@ -296192,6 +306885,11 @@ entities: - type: Transform pos: -62.5,-6.5 parent: 2 + - uid: 10944 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 - uid: 11108 components: - type: Transform @@ -296461,22 +307159,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-46.5 parent: 2 - - uid: 13237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-40.5 - parent: 2 - - uid: 13292 - components: - - type: Transform - pos: -28.5,-40.5 - parent: 2 - - uid: 13296 - components: - - type: Transform - pos: -27.5,-40.5 - parent: 2 - uid: 13326 components: - type: Transform @@ -296947,42 +307629,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-79.5 parent: 2 - - uid: 19178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,15.5 - parent: 2 - - uid: 19179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,15.5 - parent: 2 - - uid: 19182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,13.5 - parent: 2 - - uid: 19183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,13.5 - parent: 2 - - uid: 19184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,13.5 - parent: 2 - - uid: 19185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,13.5 - parent: 2 - uid: 19336 components: - type: Transform @@ -297403,24 +308049,6 @@ entities: rot: 1.5707963267948966 rad pos: -83.5,-12.5 parent: 2 - - uid: 22061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,33.5 - parent: 2 - - uid: 22076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,33.5 - parent: 2 - - uid: 22093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,33.5 - parent: 2 - uid: 24420 components: - type: Transform @@ -297998,6 +308626,28 @@ entities: rot: 1.5707963267948966 rad pos: 124.5,-61.5 parent: 2 + - uid: 58242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 2 + - uid: 58244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - uid: 58245 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 58252 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 - uid: 67827 components: - type: Transform @@ -298029,12 +308679,6 @@ entities: parent: 2 - proto: RailingCorner entities: - - uid: 2426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,2.5 - parent: 2 - uid: 3156 components: - type: Transform @@ -298114,23 +308758,6 @@ entities: rot: 1.5707963267948966 rad pos: -105.5,8.5 parent: 2 - - uid: 3771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,15.5 - parent: 2 - - uid: 3772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,11.5 - parent: 2 - - uid: 3776 - components: - - type: Transform - pos: 94.5,-3.5 - parent: 2 - uid: 3937 components: - type: Transform @@ -298161,22 +308788,23 @@ entities: rot: -1.5707963267948966 rad pos: -109.5,7.5 parent: 2 - - uid: 4565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,13.5 - parent: 2 - uid: 4735 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,30.5 parent: 2 - - uid: 5219 + - uid: 5257 components: - type: Transform - pos: 94.5,9.5 + rot: 3.141592653589793 rad + pos: -33.5,35.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,34.5 parent: 2 - uid: 5605 components: @@ -298200,17 +308828,6 @@ entities: rot: -1.5707963267948966 rad pos: 85.5,-23.5 parent: 2 - - uid: 6326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,8.5 - parent: 2 - - uid: 6327 - components: - - type: Transform - pos: 94.5,3.5 - parent: 2 - uid: 7379 components: - type: Transform @@ -298271,17 +308888,11 @@ entities: parent: 2 - type: Physics canCollide: False - - uid: 13236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-40.5 - parent: 2 - - uid: 13240 + - uid: 13303 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-40.5 + rot: 1.5707963267948966 rad + pos: -18.5,-44.5 parent: 2 - uid: 14951 components: @@ -298303,24 +308914,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,65.5 parent: 2 - - uid: 18689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,13.5 - parent: 2 - - uid: 19177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,15.5 - parent: 2 - - uid: 19180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,14.5 - parent: 2 - uid: 19579 components: - type: Transform @@ -298347,18 +308940,6 @@ entities: rot: 3.141592653589793 rad pos: -63.5,-22.5 parent: 2 - - uid: 22060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,33.5 - parent: 2 - - uid: 22089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,33.5 - parent: 2 - uid: 22840 components: - type: Transform @@ -298781,17 +309362,6 @@ entities: rot: 3.141592653589793 rad pos: -99.5,17.5 parent: 2 - - uid: 5366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,-0.5 - parent: 2 - - uid: 5368 - components: - - type: Transform - pos: 94.5,-0.5 - parent: 2 - uid: 5493 components: - type: Transform @@ -298827,18 +309397,6 @@ entities: - type: Transform pos: -29.5,54.5 parent: 2 - - uid: 6343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 2 - - uid: 6344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-8.5 - parent: 2 - uid: 6602 components: - type: Transform @@ -298962,28 +309520,6 @@ entities: rot: -1.5707963267948966 rad pos: -63.5,-5.5 parent: 2 - - uid: 9254 - components: - - type: Transform - pos: -71.5,24.5 - parent: 2 - - uid: 9255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,24.5 - parent: 2 - - uid: 9256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,24.5 - parent: 2 - - uid: 9259 - components: - - type: Transform - pos: -70.5,24.5 - parent: 2 - uid: 9266 components: - type: Transform @@ -299223,16 +309759,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,66.5 parent: 2 - - uid: 13242 - components: - - type: Transform - pos: -31.5,-41.5 - parent: 2 - - uid: 13243 - components: - - type: Transform - pos: -30.5,-41.5 - parent: 2 - uid: 13328 components: - type: Transform @@ -299460,16 +309986,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-68.5 parent: 2 - - uid: 19181 - components: - - type: Transform - pos: 87.5,14.5 - parent: 2 - - uid: 19186 - components: - - type: Transform - pos: 86.5,13.5 - parent: 2 - uid: 19583 components: - type: Transform @@ -299636,6 +310152,12 @@ entities: - type: Transform pos: -65.5,-11.5 parent: 2 + - uid: 24039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-44.5 + parent: 2 - uid: 25256 components: - type: Transform @@ -299973,6 +310495,18 @@ entities: rot: 3.141592653589793 rad pos: 124.5,-50.5 parent: 2 + - uid: 58243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 2 + - uid: 58253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 2 - proto: RailingRound entities: - uid: 4942 @@ -299981,12 +310515,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,8.5 parent: 2 - - uid: 5342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-0.5 - parent: 2 - uid: 10266 components: - type: Transform @@ -300027,12 +310555,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 2 - - uid: 11501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-44.5 - parent: 2 - uid: 12766 components: - type: Transform @@ -300045,23 +310567,17 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-44.5 parent: 2 - - uid: 13229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-44.5 - parent: 2 - - uid: 13234 + - uid: 13255 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-44.5 + pos: -25.5,-44.5 parent: 2 - - uid: 13255 + - uid: 13367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-44.5 + rot: -1.5707963267948966 rad + pos: -19.5,-44.5 parent: 2 - uid: 24808 components: @@ -301128,6 +311644,11 @@ entities: - type: Transform pos: -17.5,-75.5 parent: 2 + - uid: 19653 + components: + - type: Transform + pos: -72.5,31.5 + parent: 2 - uid: 20227 components: - type: Transform @@ -301473,6 +311994,16 @@ entities: - type: Transform pos: -9.5,56.5 parent: 2 + - uid: 57640 + components: + - type: Transform + pos: -68.5,33.5 + parent: 2 + - uid: 57641 + components: + - type: Transform + pos: -71.5,36.5 + parent: 2 - proto: RandomSpawner100 entities: - uid: 3418 @@ -301510,11 +312041,6 @@ entities: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 14921 - components: - - type: Transform - pos: 18.5,-70.5 - parent: 2 - uid: 15044 components: - type: Transform @@ -301775,11 +312301,6 @@ entities: - type: Transform pos: -83.5,36.5 parent: 2 - - uid: 24776 - components: - - type: Transform - pos: -77.5,36.5 - parent: 2 - uid: 24777 components: - type: Transform @@ -301805,11 +312326,6 @@ entities: - type: Transform pos: -64.5,35.5 parent: 2 - - uid: 24786 - components: - - type: Transform - pos: -69.5,32.5 - parent: 2 - uid: 24787 components: - type: Transform @@ -301865,11 +312381,6 @@ entities: - type: Transform pos: -71.5,-3.5 parent: 2 - - uid: 25155 - components: - - type: Transform - pos: -71.5,36.5 - parent: 2 - uid: 25156 components: - type: Transform @@ -302240,12 +312751,6 @@ entities: - type: Transform pos: -70.5,-38.5 parent: 2 - - uid: 42284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-38.5 - parent: 2 - uid: 42504 components: - type: Transform @@ -302416,6 +312921,26 @@ entities: - type: Transform pos: -57.5,37.5 parent: 2 + - uid: 51537 + components: + - type: Transform + pos: 84.5,-23.5 + parent: 2 + - uid: 51539 + components: + - type: Transform + pos: 84.5,-24.5 + parent: 2 + - uid: 51554 + components: + - type: Transform + pos: 84.5,-21.5 + parent: 2 + - uid: 51556 + components: + - type: Transform + pos: 85.5,-24.5 + parent: 2 - uid: 56629 components: - type: Transform @@ -304360,11 +314885,6 @@ entities: - type: Transform pos: -30.5,-39.5 parent: 2 - - uid: 1425 - components: - - type: Transform - pos: -31.5,-39.5 - parent: 2 - uid: 1611 components: - type: Transform @@ -305160,6 +315680,12 @@ entities: - type: Transform pos: 60.5,1.5 parent: 2 + - uid: 6724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-15.5 + parent: 2 - uid: 6732 components: - type: Transform @@ -306499,11 +317025,6 @@ entities: - type: Transform pos: 122.5,-54.5 parent: 2 - - uid: 18402 - components: - - type: Transform - pos: -79.5,33.5 - parent: 2 - uid: 18445 components: - type: Transform @@ -306556,12 +317077,6 @@ entities: - type: Transform pos: -19.5,-26.5 parent: 2 - - uid: 21265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-64.5 - parent: 2 - uid: 21266 components: - type: Transform @@ -306640,11 +317155,6 @@ entities: - type: Transform pos: 25.5,25.5 parent: 2 - - uid: 22072 - components: - - type: Transform - pos: -78.5,33.5 - parent: 2 - uid: 22079 components: - type: Transform @@ -306655,10 +317165,10 @@ entities: - type: Transform pos: -85.5,-1.5 parent: 2 - - uid: 22204 + - uid: 22219 components: - type: Transform - pos: -77.5,33.5 + pos: -79.5,33.5 parent: 2 - uid: 22235 components: @@ -306709,16 +317219,20 @@ entities: rot: 3.141592653589793 rad pos: 52.5,-44.5 parent: 2 + - uid: 24153 + components: + - type: Transform + pos: -77.5,33.5 + parent: 2 - uid: 24206 components: - type: Transform pos: 68.5,-49.5 parent: 2 - - uid: 24536 + - uid: 24689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-83.5 + pos: -31.5,-39.5 parent: 2 - uid: 24715 components: @@ -306963,6 +317477,11 @@ entities: - type: Transform pos: 58.5,14.5 parent: 2 + - uid: 28978 + components: + - type: Transform + pos: -74.5,-80.5 + parent: 2 - uid: 29074 components: - type: Transform @@ -306981,6 +317500,16 @@ entities: rot: 1.5707963267948966 rad pos: -107.5,67.5 parent: 2 + - uid: 29181 + components: + - type: Transform + pos: -74.5,-78.5 + parent: 2 + - uid: 29182 + components: + - type: Transform + pos: -75.5,79.5 + parent: 2 - uid: 29183 components: - type: Transform @@ -307166,6 +317695,11 @@ entities: rot: 1.5707963267948966 rad pos: -110.5,48.5 parent: 2 + - uid: 29749 + components: + - type: Transform + pos: 31.5,-96.5 + parent: 2 - uid: 29753 components: - type: Transform @@ -307190,6 +317724,11 @@ entities: rot: -1.5707963267948966 rad pos: -70.5,-61.5 parent: 2 + - uid: 29912 + components: + - type: Transform + pos: 29.5,-96.5 + parent: 2 - uid: 30101 components: - type: Transform @@ -307216,11 +317755,51 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-21.5 parent: 2 + - uid: 30775 + components: + - type: Transform + pos: -72.5,-78.5 + parent: 2 + - uid: 30906 + components: + - type: Transform + pos: -72.5,-80.5 + parent: 2 + - uid: 31191 + components: + - type: Transform + pos: -81.5,33.5 + parent: 2 - uid: 33397 components: - type: Transform pos: -51.5,94.5 parent: 2 + - uid: 35937 + components: + - type: Transform + pos: -77.5,77.5 + parent: 2 + - uid: 35945 + components: + - type: Transform + pos: -75.5,77.5 + parent: 2 + - uid: 35946 + components: + - type: Transform + pos: -77.5,79.5 + parent: 2 + - uid: 40765 + components: + - type: Transform + pos: -81.5,74.5 + parent: 2 + - uid: 41311 + components: + - type: Transform + pos: 31.5,-98.5 + parent: 2 - uid: 41432 components: - type: Transform @@ -307272,6 +317851,11 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-76.5 parent: 2 + - uid: 42278 + components: + - type: Transform + pos: 29.5,-98.5 + parent: 2 - uid: 43763 components: - type: Transform @@ -307306,8 +317890,7 @@ entities: - uid: 43895 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-83.5 + pos: -79.5,74.5 parent: 2 - uid: 43924 components: @@ -307355,12 +317938,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,101.5 parent: 2 - - uid: 45448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-62.5 - parent: 2 - uid: 45453 components: - type: Transform @@ -307396,6 +317973,11 @@ entities: - type: Transform pos: 8.5,-7.5 parent: 2 + - uid: 50987 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 - uid: 51107 components: - type: Transform @@ -307558,6 +318140,11 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-80.5 parent: 2 + - uid: 52896 + components: + - type: Transform + pos: -75.5,33.5 + parent: 2 - uid: 54446 components: - type: Transform @@ -307694,6 +318281,37 @@ entities: - type: Transform pos: 10.5,5.5 parent: 2 + - uid: 57625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,21.5 + parent: 2 + - uid: 57815 + components: + - type: Transform + pos: 24.5,-92.5 + parent: 2 + - uid: 57816 + components: + - type: Transform + pos: 21.5,-92.5 + parent: 2 + - uid: 57817 + components: + - type: Transform + pos: 23.5,-92.5 + parent: 2 + - uid: 57818 + components: + - type: Transform + pos: 20.5,-92.5 + parent: 2 + - uid: 57819 + components: + - type: Transform + pos: 22.5,-92.5 + parent: 2 - uid: 67843 components: - type: Transform @@ -308821,10 +319439,15 @@ entities: parent: 2 - proto: SeedExtractor entities: - - uid: 6301 + - uid: 5368 components: - type: Transform - pos: -48.5,51.5 + pos: -47.5,49.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + pos: -23.5,-47.5 parent: 2 - uid: 14693 components: @@ -309065,6 +319688,16 @@ entities: rot: -1.5707963267948966 rad pos: 80.1662,-58.27113 parent: 2 + - uid: 21265 + components: + - type: Transform + pos: 84.543495,-21.617512 + parent: 2 + - uid: 21509 + components: + - type: Transform + pos: 84.699745,-24.586262 + parent: 2 - uid: 21872 components: - type: Transform @@ -309087,23 +319720,6 @@ entities: - type: Transform pos: -64.33797,36.671486 parent: 2 - - uid: 24195 - components: - - type: Transform - pos: -72.196144,35.78086 - parent: 2 - - uid: 24196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -73.539894,32.296486 - parent: 2 - - uid: 24198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.36802,35.671486 - parent: 2 - uid: 26040 components: - type: Transform @@ -312534,48 +323150,6 @@ entities: linkedPorts: 26208: - Pressed: Toggle - - uid: 32393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-73.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31803: - - Pressed: Toggle - - uid: 32402 - components: - - type: Transform - pos: 27.5,-71.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31751: - - Pressed: Toggle - - uid: 32411 - components: - - type: Transform - pos: 1.5,-74.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31796: - - Pressed: Toggle - 31722: - - Pressed: Toggle - 31802: - - Pressed: Toggle - - uid: 32489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-76.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 10191: - - Pressed: Toggle - uid: 54972 components: - type: MetaData @@ -312790,10 +323364,6 @@ entities: rot: 3.141592653589793 rad pos: -62.5,6.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7694: - - Pressed: DoorBolt - uid: 6223 components: - type: MetaData @@ -312831,10 +323401,6 @@ entities: rot: 3.141592653589793 rad pos: -61.5,6.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7700: - - Pressed: DoorBolt - uid: 8050 components: - type: Transform @@ -314229,6 +324795,12 @@ entities: parent: 2 - proto: SignDirectionalSolar entities: + - uid: 14796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-89.5 + parent: 2 - uid: 15690 components: - type: Transform @@ -314313,12 +324885,6 @@ entities: - type: Transform pos: 46.5,-56.5 parent: 2 - - uid: 71363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-88.5 - parent: 2 - uid: 71364 components: - type: Transform @@ -315284,11 +325850,6 @@ entities: parent: 2 - proto: SignSecureMed entities: - - uid: 9275 - components: - - type: Transform - pos: -70.5,19.5 - parent: 2 - uid: 18886 components: - type: Transform @@ -315841,11 +326402,11 @@ entities: - type: Transform pos: -19.5,58.5 parent: 2 - - uid: 13220 + - uid: 13271 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-43.5 + rot: -1.5707963267948966 rad + pos: -19.5,-47.5 parent: 2 - uid: 13570 components: @@ -315962,6 +326523,12 @@ entities: - type: Transform pos: 79.5,-25.5 parent: 2 + - uid: 28855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 2 - uid: 40689 components: - type: Transform @@ -316008,6 +326575,179 @@ entities: rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 55142 +- proto: SmallPresentBox + entities: + - uid: 1952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.302614,34.92226 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.46928,34.491707 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.552616,34.644485 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.439192,34.497776 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.071136,34.761665 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.821136,34.733887 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.286415,34.511665 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 5381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.196136,34.671387 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 6300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.8165,34.375965 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 57657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.580523,-40.633938 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 57658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.2402453,-40.37699 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 57660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.018023,-40.633938 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 57872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.3354654,-57.292706 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 57873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.2243543,-57.53576 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 57874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.0924098,-57.47326 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 57875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.7104654,-57.466316 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 57876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.8701875,-57.61215 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 58173 + components: + - type: Transform + pos: 13.468017,-28.671717 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 58174 + components: + - type: Transform + pos: 13.72496,-28.50505 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 58175 + components: + - type: Transform + pos: 13.669405,-28.75505 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 58176 + components: + - type: Transform + pos: 13.093017,-28.977272 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 58177 + components: + - type: Transform + pos: 13.273572,-29.227272 + parent: 2 + - type: Fixtures + fixtures: {} - proto: SmartFridge entities: - uid: 14632 @@ -318589,11 +329329,6 @@ entities: - type: Transform pos: 32.5,-7.5 parent: 2 - - uid: 29597 - components: - - type: Transform - pos: -52.5,-79.5 - parent: 2 - uid: 30347 components: - type: Transform @@ -318644,6 +329379,11 @@ entities: - type: Transform pos: -82.5,26.5 parent: 2 + - uid: 57585 + components: + - type: Transform + pos: -53.5,-77.5 + parent: 2 - proto: SpaceVillainArcade entities: - uid: 20990 @@ -318811,18 +329551,6 @@ entities: - type: Transform pos: -15.5,-57.5 parent: 2 -- proto: SpawnMobCatGeneric - entities: - - uid: 18030 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 2 - - uid: 18031 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 2 - proto: SpawnMobCatKitten entities: - uid: 9758 @@ -318830,11 +329558,6 @@ entities: - type: Transform pos: -45.5,24.5 parent: 2 - - uid: 18032 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 2 - proto: SpawnMobCatRuntime entities: - uid: 56454 @@ -318893,36 +329616,6 @@ entities: - type: Transform pos: -56.5,-81.5 parent: 2 - - uid: 28084 - components: - - type: Transform - pos: -14.5,-70.5 - parent: 2 - - uid: 28855 - components: - - type: Transform - pos: -13.5,-71.5 - parent: 2 - - uid: 28956 - components: - - type: Transform - pos: -14.5,-69.5 - parent: 2 - - uid: 28978 - components: - - type: Transform - pos: -15.5,-71.5 - parent: 2 - - uid: 29181 - components: - - type: Transform - pos: -15.5,-69.5 - parent: 2 - - uid: 29182 - components: - - type: Transform - pos: -13.5,-70.5 - parent: 2 - uid: 30422 components: - type: Transform @@ -318971,18 +329664,6 @@ entities: - type: Transform pos: 6.5,-6.5 parent: 2 -- proto: SpawnMobFrog - entities: - - uid: 17507 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 2 - - uid: 17795 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 2 - proto: SpawnMobGorillaLargo entities: - uid: 3397 @@ -319009,21 +329690,6 @@ entities: - type: Transform pos: -21.5,21.5 parent: 2 - - uid: 17748 - components: - - type: Transform - pos: -5.5,22.5 - parent: 2 - - uid: 17749 - components: - - type: Transform - pos: -4.5,23.5 - parent: 2 - - uid: 52422 - components: - - type: Transform - pos: -5.5,24.5 - parent: 2 - proto: SpawnMobMcGriff entities: - uid: 20090 @@ -319138,11 +329804,59 @@ entities: - type: Transform pos: 7.5,23.5 parent: 2 - - uid: 52421 + - uid: 17730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 2 + - uid: 18030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 2 + - uid: 19809 components: - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 2 + - uid: 22692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 2 + - uid: 22693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,22.5 + parent: 2 + - uid: 22694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,24.5 + parent: 2 + - uid: 22695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,23.5 + parent: 2 + - uid: 22842 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,23.5 parent: 2 + - uid: 22876 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 - proto: SpawnMobPossumMorty entities: - uid: 52381 @@ -319164,18 +329878,6 @@ entities: - type: Transform pos: -17.5,44.5 parent: 2 -- proto: SpawnMobSlug - entities: - - uid: 52419 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 2 - - uid: 52420 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 2 - proto: SpawnMobSmallPurpleSnake entities: - uid: 30482 @@ -319321,6 +330023,13 @@ entities: - type: Transform pos: -31.5,59.5 parent: 2 +- proto: SpawnPointBrigmedic + entities: + - uid: 19169 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 - proto: SpawnPointCaptain entities: - uid: 57285 @@ -319450,11 +330159,6 @@ entities: - type: Transform pos: -23.5,-62.5 parent: 2 - - uid: 18914 - components: - - type: Transform - pos: -34.5,-62.5 - parent: 2 - proto: SpawnPointClown entities: - uid: 6808 @@ -320113,11 +330817,6 @@ entities: - type: Transform pos: -43.5,-4.5 parent: 2 - - uid: 28186 - components: - - type: Transform - pos: -14.5,-70.5 - parent: 2 - uid: 52405 components: - type: Transform @@ -320130,11 +330829,6 @@ entities: parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 6100 - components: - - type: Transform - pos: -34.5,33.5 - parent: 2 - uid: 6101 components: - type: Transform @@ -320235,6 +330929,16 @@ entities: parent: 2 - proto: SpawnVendingMachineRestockDrink entities: + - uid: 13220 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 13237 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 - uid: 30747 components: - type: Transform @@ -320531,30 +331235,6 @@ entities: - type: Transform pos: -50.5,6.5 parent: 2 - - uid: 10792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,48.5 - parent: 2 - - uid: 10793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,49.5 - parent: 2 - - uid: 10794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,49.5 - parent: 2 - - uid: 10795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,47.5 - parent: 2 - uid: 10890 components: - type: Transform @@ -321301,6 +331981,12 @@ entities: - type: Transform pos: -70.5,60.5 parent: 2 + - uid: 6301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,49.5 + parent: 2 - uid: 6318 components: - type: Transform @@ -321311,6 +331997,24 @@ entities: - type: Transform pos: -18.5,-9.5 parent: 2 + - uid: 6326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,47.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,48.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,49.5 + parent: 2 - uid: 7226 components: - type: Transform @@ -321475,21 +332179,11 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-44.5 parent: 2 - - uid: 13249 - components: - - type: Transform - pos: -27.5,-40.5 - parent: 2 - uid: 13283 components: - type: Transform pos: -64.5,-10.5 parent: 2 - - uid: 13290 - components: - - type: Transform - pos: -28.5,-40.5 - parent: 2 - uid: 14635 components: - type: Transform @@ -321642,18 +332336,6 @@ entities: rot: 1.5707963267948966 rad pos: -81.5,-16.5 parent: 2 - - uid: 22201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,33.5 - parent: 2 - - uid: 22258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,33.5 - parent: 2 - uid: 26115 components: - type: Transform @@ -321876,13 +332558,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-7.5 parent: 2 -- proto: StationMapAssembly - entities: - - uid: 25617 - components: - - type: Transform - pos: -65.5,-34.5 - parent: 2 - proto: StationMapBroken entities: - uid: 15003 @@ -323206,7 +333881,7 @@ entities: - uid: 27753 components: - type: Transform - pos: -51.35337,-77.46699 + pos: -51.528305,-77.449036 parent: 2 - uid: 32814 components: @@ -323257,39 +333932,6 @@ entities: parent: 2 - proto: SuitStorageBase entities: - - uid: 4623 - components: - - type: Transform - pos: 74.5,11.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25382 - - 26427 - - 26437 - - 4624 - uid: 20107 components: - type: MetaData @@ -323648,6 +334290,11 @@ entities: - type: Transform pos: -28.5,7.5 parent: 2 + - uid: 4993 + components: + - type: Transform + pos: 74.5,11.5 + parent: 2 - uid: 6472 components: - type: Transform @@ -324195,6 +334842,38 @@ entities: parent: 2 - type: SurveillanceCamera id: 'ЦИИ: Космос ядро север' + - uid: 56860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,9.5 + parent: 2 + - type: SurveillanceCamera + id: Офис квартирмейстера + - uid: 56861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-11.5 + parent: 2 + - type: SurveillanceCamera + id: Дальняя комната ГСБ + - uid: 56881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-9.5 + parent: 2 + - type: SurveillanceCamera + id: Офис ГСБ + - uid: 56883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-7.5 + parent: 2 + - type: SurveillanceCamera + id: Комната ГСБ - uid: 56919 components: - type: Transform @@ -324288,6 +334967,13 @@ entities: - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering + - uid: 23699 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - type: SurveillanceCamera + id: Снаружи приёмной - uid: 51111 components: - type: Transform @@ -324573,8 +335259,41 @@ entities: parent: 2 - type: SurveillanceCamera id: Газодобытчики 3 + - uid: 58154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,17.5 + parent: 2 - proto: SurveillanceCameraGeneral entities: + - uid: 4412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Вокс-Бокс + - uid: 5264 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Столовая - uid: 7110 components: - type: Transform @@ -324601,6 +335320,14 @@ entities: - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral + - uid: 11227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,45.5 + parent: 2 + - type: SurveillanceCamera + id: '[ДАННЫЕ УДАЛЕНЫ]' - uid: 12113 components: - type: Transform @@ -324676,13 +335403,9 @@ entities: - uid: 17774 components: - type: Transform - pos: 6.5,-22.5 + rot: 3.141592653589793 rad + pos: 6.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Джунгли - uid: 17788 components: - type: Transform @@ -324755,12 +335478,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,54.5 parent: 2 - - uid: 23668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-15.5 - parent: 2 - uid: 24458 components: - type: Transform @@ -324798,12 +335515,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: 'Зал ожидания №1: низ ' - - uid: 40685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,30.5 - parent: 2 - uid: 41064 components: - type: Transform @@ -325201,6 +335912,16 @@ entities: parent: 2 - type: SurveillanceCamera id: Зал ожидания 5 верх + - uid: 56865 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 56867 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 - uid: 56869 components: - type: Transform @@ -325233,6 +335954,12 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,96.5 parent: 2 + - uid: 56879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 2 - uid: 56884 components: - type: Transform @@ -325315,6 +336042,57 @@ entities: - SurveillanceCameraGeneral nameSet: True id: СБ-МЕД + - uid: 57137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,15.5 + parent: 2 + - uid: 57140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,6.5 + parent: 2 + - uid: 57275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,28.5 + parent: 2 + - uid: 57335 + components: + - type: Transform + pos: -51.5,25.5 + parent: 2 + - uid: 57552 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 57564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,34.5 + parent: 2 + - uid: 57565 + components: + - type: Transform + pos: 9.5,40.5 + parent: 2 + - uid: 58147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,7.5 + parent: 2 + - uid: 58148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,7.5 + parent: 2 - proto: SurveillanceCameraMedical entities: - uid: 21 @@ -325344,6 +336122,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-62.5 parent: 2 + - uid: 23668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-53.5 + parent: 2 - uid: 51755 components: - type: Transform @@ -325524,6 +336308,28 @@ entities: parent: 2 - type: SurveillanceCamera id: Палаты стазис + - uid: 56866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-49.5 + parent: 2 + - uid: 56880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-53.5 + parent: 2 + - uid: 56882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-62.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + id: коридор комнаты персонала - uid: 56900 components: - type: Transform @@ -326540,6 +337346,14 @@ entities: - SurveillanceCameraService nameSet: True id: Столовая + - uid: 40685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,24.5 + parent: 2 + - type: SurveillanceCamera + id: Офис репортёров - uid: 51569 components: - type: Transform @@ -326559,13 +337373,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Ринг - - uid: 51711 - components: - - type: Transform - pos: -33.5,30.5 - parent: 2 - - type: SurveillanceCamera - id: Ресторан - uid: 51723 components: - type: Transform @@ -326630,17 +337437,6 @@ entities: - SurveillanceCameraService nameSet: True id: Комната отдыха - - uid: 51747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Офис новостей - uid: 51748 components: - type: Transform @@ -326703,6 +337499,14 @@ entities: - SurveillanceCameraService nameSet: True id: Барменская + - uid: 56856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: Морозильник - uid: 56920 components: - type: Transform @@ -326740,14 +337544,11 @@ entities: - uid: 51703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,7.5 + rot: -1.5707963267948966 rad + pos: 61.5,3.5 parent: 2 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Утилизаторская + id: Вход - uid: 51704 components: - type: Transform @@ -326769,7 +337570,14 @@ entities: setupAvailableNetworks: - SurveillanceCameraSupply nameSet: True - id: Холл + id: Приёмная + - uid: 51747 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 2 + - type: SurveillanceCamera + id: конвейер - uid: 51772 components: - type: Transform @@ -326792,6 +337600,37 @@ entities: - SurveillanceCameraSupply nameSet: True id: Утилизаторский док + - uid: 56857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-9.5 + parent: 2 + - type: SurveillanceCamera + id: конвейер + - uid: 56859 + components: + - type: Transform + pos: 63.5,-7.5 + parent: 2 + - type: SurveillanceCamera + id: Консоль заказов + - uid: 56862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,8.5 + parent: 2 + - type: SurveillanceCamera + id: Утилизаторская 2 + - uid: 56863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,7.5 + parent: 2 + - type: SurveillanceCamera + id: Утилизаторская 1 - proto: SurveillanceCameraWirelessRouterConstructed entities: - uid: 18488 @@ -326914,11 +337753,6 @@ entities: rot: 3.141592653589793 rad pos: -28.580593,-75.45205 parent: 2 - - uid: 18858 - components: - - type: Transform - pos: -9.464832,-69.37579 - parent: 2 - uid: 22811 components: - type: Transform @@ -327814,6 +338648,12 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-40.5 parent: 2 + - uid: 13229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-51.5 + parent: 2 - uid: 13368 components: - type: Transform @@ -328878,6 +339718,12 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,71.5 parent: 2 + - uid: 24025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-51.5 + parent: 2 - uid: 24162 components: - type: Transform @@ -329547,12 +340393,6 @@ entities: - type: Transform pos: -45.5,-47.5 parent: 2 - - uid: 30906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-75.5 - parent: 2 - uid: 30924 components: - type: Transform @@ -329935,6 +340775,36 @@ entities: - type: Transform pos: -72.5,-73.5 parent: 2 + - uid: 58139 + components: + - type: Transform + pos: -83.5,54.5 + parent: 2 + - uid: 58140 + components: + - type: Transform + pos: -87.5,54.5 + parent: 2 + - uid: 58143 + components: + - type: Transform + pos: -85.5,52.5 + parent: 2 + - uid: 58144 + components: + - type: Transform + pos: -85.5,56.5 + parent: 2 + - uid: 58145 + components: + - type: Transform + pos: -85.5,47.5 + parent: 2 + - uid: 58146 + components: + - type: Transform + pos: -85.5,61.5 + parent: 2 - uid: 67890 components: - type: Transform @@ -330691,6 +341561,28 @@ entities: - type: Transform pos: 10.5,-85.5 parent: 2 + - uid: 58225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,35.5 + parent: 2 + - uid: 58262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,35.5 + parent: 2 + - uid: 58367 + components: + - type: Transform + pos: -67.5,33.5 + parent: 2 + - uid: 58369 + components: + - type: Transform + pos: -73.5,33.5 + parent: 2 - proto: TableFancyBlack entities: - uid: 1897 @@ -330986,18 +341878,6 @@ entities: - type: Transform pos: 9.5,-8.5 parent: 2 - - uid: 55421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,35.5 - parent: 2 - - uid: 55422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,34.5 - parent: 2 - proto: TableFancyCyan entities: - uid: 18547 @@ -331640,6 +342520,11 @@ entities: - type: Transform pos: -2.5,-12.5 parent: 53899 + - uid: 58229 + components: + - type: Transform + pos: -70.5,33.5 + parent: 2 - proto: TablePlasmaGlass entities: - uid: 3051 @@ -332867,12 +343752,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-18.5 parent: 2 - - uid: 31443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-71.5 - parent: 2 - uid: 32362 components: - type: Transform @@ -333995,11 +344874,6 @@ entities: - type: Transform pos: -19.5,24.5 parent: 2 - - uid: 10991 - components: - - type: Transform - pos: 0.5,2.5 - parent: 2 - uid: 11114 components: - type: Transform @@ -334303,8 +345177,7 @@ entities: - uid: 13266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-44.5 + pos: -14.5,-40.5 parent: 2 - uid: 13270 components: @@ -334312,12 +345185,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-40.5 parent: 2 - - uid: 13271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-41.5 - parent: 2 - uid: 13364 components: - type: Transform @@ -334685,24 +345552,6 @@ entities: - type: Transform pos: -84.5,-0.5 parent: 2 - - uid: 22054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,36.5 - parent: 2 - - uid: 22086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,36.5 - parent: 2 - - uid: 22109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,36.5 - parent: 2 - uid: 22340 components: - type: Transform @@ -334875,11 +345724,6 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,23.5 parent: 2 - - uid: 30847 - components: - - type: Transform - pos: -72.5,30.5 - parent: 2 - uid: 31050 components: - type: Transform @@ -334923,6 +345767,16 @@ entities: - type: Transform pos: -46.5,92.5 parent: 2 + - uid: 51621 + components: + - type: Transform + pos: -70.5,24.5 + parent: 2 + - uid: 51683 + components: + - type: Transform + pos: -70.5,23.5 + parent: 2 - uid: 52018 components: - type: Transform @@ -336439,6 +347293,56 @@ entities: parent: 2 - proto: TowelColorWhite entities: + - uid: 10518 + components: + - type: Transform + pos: -1.216754,71.72904 + parent: 2 + - uid: 10563 + components: + - type: Transform + pos: -1.732379,71.69779 + parent: 2 + - uid: 10647 + components: + - type: Transform + pos: -1.748004,71.32279 + parent: 2 + - uid: 10648 + components: + - type: Transform + pos: -1.216754,71.32279 + parent: 2 + - uid: 10669 + components: + - type: Transform + pos: -11.690197,71.38529 + parent: 2 + - uid: 10672 + components: + - type: Transform + pos: -14.362635,55.45866 + parent: 2 + - uid: 10675 + components: + - type: Transform + pos: -11.205822,71.36967 + parent: 2 + - uid: 10676 + components: + - type: Transform + pos: -11.205822,71.80717 + parent: 2 + - uid: 10677 + components: + - type: Transform + pos: -14.40951,55.193035 + parent: 2 + - uid: 10856 + components: + - type: Transform + pos: -11.658947,71.82279 + parent: 2 - uid: 11984 components: - type: Transform @@ -336476,6 +347380,14 @@ entities: - type: Transform pos: -79.48691,20.714064 parent: 2 +- proto: ToyAmongPequeno + entities: + - uid: 58720 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -28.308588,2.4397652 + parent: 2 - proto: ToyFigurineAtmosTech entities: - uid: 13064 @@ -336821,6 +347733,11 @@ entities: - type: Transform pos: -52.84532,-89.73904 parent: 2 + - uid: 57979 + components: + - type: Transform + pos: -94.86822,3.9663057 + parent: 2 - uid: 67918 components: - type: Transform @@ -336835,11 +347752,6 @@ entities: parent: 2 - proto: ToySpawner entities: - - uid: 18037 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 2 - uid: 23757 components: - type: Transform @@ -336925,31 +347837,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 20445 - components: - - type: Transform - parent: 20443 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20446 - components: - - type: Transform - parent: 20443 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21519 - components: - - type: Transform - parent: 20443 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 52444 components: - type: Transform - parent: 16211 + parent: 44141 - type: Physics canCollide: False - type: InsideEntityStorage @@ -337002,6 +347893,26 @@ entities: - type: Transform pos: -85.67287,67.65238 parent: 2 + - uid: 57629 + components: + - type: Transform + pos: -69.20928,36.693604 + parent: 2 + - uid: 57638 + components: + - type: Transform + pos: -67.25616,35.693604 + parent: 2 + - uid: 57661 + components: + - type: Transform + pos: -73.72491,35.58423 + parent: 2 + - uid: 58077 + components: + - type: Transform + pos: -73.49053,35.80298 + parent: 2 - proto: TrashBagBlue entities: - uid: 20070 @@ -337059,12 +347970,12 @@ entities: - uid: 15050 components: - type: Transform - pos: 14.141774,-72.830185 + pos: 13.780412,-73.113014 parent: 2 - uid: 15055 components: - type: Transform - pos: 19.313328,-69.75206 + pos: 22.655552,-72.518555 parent: 2 - uid: 15057 components: @@ -337745,11 +348656,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 14972 - components: - - type: Transform - pos: -54.76493,-86.72749 - parent: 2 - uid: 21293 components: - type: MetaData @@ -337797,24 +348703,12 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,15.5 parent: 2 - - uid: 10859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,4.5 - parent: 2 - uid: 10861 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,8.5 parent: 2 - - uid: 10862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,4.5 - parent: 2 - uid: 12571 components: - type: Transform @@ -338132,40 +349026,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-42.5 parent: 2 -- proto: UraniumWindow - entities: - - uid: 71037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 71010 - - uid: 71038 - components: - - type: Transform - pos: 2.5,2.5 - parent: 71010 - - uid: 71039 - components: - - type: Transform - pos: 3.5,1.5 - parent: 71010 - - uid: 71040 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 71010 - - uid: 71041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 71010 - - uid: 71042 - components: - - type: Transform - pos: 3.5,0.5 - parent: 71010 - proto: Urn entities: - uid: 12612 @@ -338742,7 +349602,7 @@ entities: - uid: 6286 components: - type: Transform - pos: -49.5,51.5 + pos: -48.5,51.5 parent: 2 - uid: 11649 components: @@ -338894,10 +349754,10 @@ entities: parent: 66965 - proto: VendingMachineSeeds entities: - - uid: 6285 + - uid: 6332 components: - type: Transform - pos: -50.5,51.5 + pos: -49.5,51.5 parent: 2 - uid: 13341 components: @@ -347854,12 +358714,6 @@ entities: - type: Transform pos: -4.5,55.5 parent: 2 - - uid: 5066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-15.5 - parent: 2 - uid: 5077 components: - type: Transform @@ -352637,16 +363491,6 @@ entities: - type: Transform pos: -62.5,90.5 parent: 2 - - uid: 15145 - components: - - type: Transform - pos: -72.5,-78.5 - parent: 2 - - uid: 15146 - components: - - type: Transform - pos: -72.5,-80.5 - parent: 2 - uid: 15159 components: - type: Transform @@ -355777,11 +366621,6 @@ entities: - type: Transform pos: -53.5,-76.5 parent: 2 - - uid: 17754 - components: - - type: Transform - pos: -75.5,77.5 - parent: 2 - uid: 17757 components: - type: Transform @@ -357260,6 +368099,11 @@ entities: - type: Transform pos: -73.5,-36.5 parent: 2 + - uid: 21965 + components: + - type: Transform + pos: -74.5,-64.5 + parent: 2 - uid: 21967 components: - type: Transform @@ -357307,6 +368151,11 @@ entities: - type: Transform pos: -29.5,-10.5 parent: 2 + - uid: 22197 + components: + - type: Transform + pos: -78.5,33.5 + parent: 2 - uid: 22199 components: - type: Transform @@ -357318,6 +368167,11 @@ entities: - type: Transform pos: -74.5,31.5 parent: 2 + - uid: 22204 + components: + - type: Transform + pos: -11.5,-83.5 + parent: 2 - uid: 22205 components: - type: Transform @@ -357349,11 +368203,6 @@ entities: rot: 1.5707963267948966 rad pos: -79.5,28.5 parent: 2 - - uid: 22219 - components: - - type: Transform - pos: -81.5,33.5 - parent: 2 - uid: 22220 components: - type: Transform @@ -357544,31 +368393,6 @@ entities: - type: Transform pos: 25.5,-92.5 parent: 2 - - uid: 23593 - components: - - type: Transform - pos: 24.5,-92.5 - parent: 2 - - uid: 23594 - components: - - type: Transform - pos: 23.5,-92.5 - parent: 2 - - uid: 23595 - components: - - type: Transform - pos: 22.5,-92.5 - parent: 2 - - uid: 23596 - components: - - type: Transform - pos: 21.5,-92.5 - parent: 2 - - uid: 23597 - components: - - type: Transform - pos: 20.5,-92.5 - parent: 2 - uid: 23598 components: - type: Transform @@ -357936,11 +368760,6 @@ entities: - type: Transform pos: -19.5,-74.5 parent: 2 - - uid: 24002 - components: - - type: Transform - pos: 29.5,-96.5 - parent: 2 - uid: 24008 components: - type: Transform @@ -358006,11 +368825,6 @@ entities: - type: Transform pos: -49.5,-91.5 parent: 2 - - uid: 24025 - components: - - type: Transform - pos: 31.5,-96.5 - parent: 2 - uid: 24026 components: - type: Transform @@ -358431,11 +369245,6 @@ entities: - type: Transform pos: -82.5,70.5 parent: 2 - - uid: 24153 - components: - - type: Transform - pos: -79.5,74.5 - parent: 2 - uid: 24154 components: - type: Transform @@ -358706,11 +369515,6 @@ entities: - type: Transform pos: -83.5,74.5 parent: 2 - - uid: 24718 - components: - - type: Transform - pos: -81.5,74.5 - parent: 2 - uid: 24740 components: - type: Transform @@ -358724,12 +369528,7 @@ entities: - uid: 24742 components: - type: Transform - pos: -74.5,-80.5 - parent: 2 - - uid: 24743 - components: - - type: Transform - pos: -74.5,-78.5 + pos: -74.5,-62.5 parent: 2 - uid: 24744 components: @@ -358761,21 +369560,11 @@ entities: - type: Transform pos: -78.5,79.5 parent: 2 - - uid: 24752 - components: - - type: Transform - pos: -77.5,79.5 - parent: 2 - uid: 24753 components: - type: Transform pos: 28.5,-94.5 parent: 2 - - uid: 24754 - components: - - type: Transform - pos: -75.5,79.5 - parent: 2 - uid: 24755 components: - type: Transform @@ -358822,11 +369611,6 @@ entities: - type: Transform pos: -78.5,77.5 parent: 2 - - uid: 26048 - components: - - type: Transform - pos: -77.5,77.5 - parent: 2 - uid: 26054 components: - type: Transform @@ -359304,16 +370088,6 @@ entities: - type: Transform pos: 28.5,-98.5 parent: 2 - - uid: 27028 - components: - - type: Transform - pos: 29.5,-98.5 - parent: 2 - - uid: 27029 - components: - - type: Transform - pos: 31.5,-98.5 - parent: 2 - uid: 27030 components: - type: Transform @@ -359454,11 +370228,6 @@ entities: - type: Transform pos: -82.5,71.5 parent: 2 - - uid: 28198 - components: - - type: Transform - pos: -80.5,74.5 - parent: 2 - uid: 28199 components: - type: Transform @@ -359748,6 +370517,11 @@ entities: - type: Transform pos: 86.5,-61.5 parent: 2 + - uid: 31190 + components: + - type: Transform + pos: -13.5,-83.5 + parent: 2 - uid: 31388 components: - type: Transform @@ -359830,6 +370604,24 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-8.5 parent: 2 + - uid: 39804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 2 + - uid: 39839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 2 + - uid: 39840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 2 - uid: 40430 components: - type: Transform @@ -359869,6 +370661,11 @@ entities: rot: -1.5707963267948966 rad pos: -77.5,-68.5 parent: 2 + - uid: 42265 + components: + - type: Transform + pos: -74.5,-65.5 + parent: 2 - uid: 42965 components: - type: Transform @@ -360188,11 +370985,6 @@ entities: - type: Transform pos: -74.5,-61.5 parent: 2 - - uid: 45452 - components: - - type: Transform - pos: -74.5,-65.5 - parent: 2 - uid: 45455 components: - type: Transform @@ -360410,11 +371202,6 @@ entities: - type: Transform pos: -73.5,-68.5 parent: 2 - - uid: 50987 - components: - - type: Transform - pos: -75.5,33.5 - parent: 2 - uid: 51083 components: - type: Transform @@ -362276,6 +373063,11 @@ entities: parent: 2 - proto: WallRock entities: + - uid: 17748 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 66965 - uid: 68150 components: - type: Transform @@ -362416,11 +373208,6 @@ entities: - type: Transform pos: 30.5,-13.5 parent: 66965 - - uid: 68178 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 66965 - uid: 68179 components: - type: Transform @@ -362611,11 +373398,6 @@ entities: - type: Transform pos: 29.5,-5.5 parent: 66965 - - uid: 68217 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 66965 - uid: 68218 components: - type: Transform @@ -368801,11 +379583,6 @@ entities: - type: Transform pos: 30.5,-6.5 parent: 66965 - - uid: 69455 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 66965 - uid: 69456 components: - type: Transform @@ -368836,11 +379613,6 @@ entities: - type: Transform pos: 31.5,-6.5 parent: 66965 - - uid: 69462 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 66965 - uid: 69463 components: - type: Transform @@ -378836,11 +389608,6 @@ entities: - type: Transform pos: -51.5,3.5 parent: 2 - - uid: 821 - components: - - type: Transform - pos: -51.5,4.5 - parent: 2 - uid: 822 components: - type: Transform @@ -381853,11 +392620,6 @@ entities: - type: Transform pos: 22.5,-37.5 parent: 2 - - uid: 3850 - components: - - type: Transform - pos: 25.5,-73.5 - parent: 2 - uid: 3851 components: - type: Transform @@ -382348,11 +393110,6 @@ entities: - type: Transform pos: -25.5,23.5 parent: 2 - - uid: 4460 - components: - - type: Transform - pos: -25.5,22.5 - parent: 2 - uid: 4461 components: - type: Transform @@ -385415,6 +396172,12 @@ entities: - type: Transform pos: 25.5,17.5 parent: 2 + - uid: 9033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,4.5 + parent: 2 - uid: 9086 components: - type: Transform @@ -388024,24 +398787,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-76.5 parent: 2 - - uid: 14141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-71.5 - parent: 2 - uid: 14142 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-70.5 parent: 2 - - uid: 14144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-71.5 - parent: 2 - uid: 14145 components: - type: Transform @@ -388054,30 +398805,12 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-70.5 parent: 2 - - uid: 14171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-71.5 - parent: 2 - uid: 14172 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-71.5 parent: 2 - - uid: 14175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-71.5 - parent: 2 - - uid: 14176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-70.5 - parent: 2 - uid: 14177 components: - type: Transform @@ -388101,12 +398834,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-70.5 parent: 2 - - uid: 14204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-70.5 - parent: 2 - uid: 14249 components: - type: Transform @@ -389847,12 +400574,6 @@ entities: - type: Transform pos: 24.5,17.5 parent: 2 - - uid: 21420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,30.5 - parent: 2 - uid: 21421 components: - type: Transform @@ -390257,21 +400978,6 @@ entities: rot: 3.141592653589793 rad pos: -66.5,41.5 parent: 2 - - uid: 22155 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 2 - - uid: 22184 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 2 - - uid: 22185 - components: - - type: Transform - pos: -27.5,-11.5 - parent: 2 - uid: 22198 components: - type: Transform @@ -390765,12 +401471,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-47.5 parent: 2 - - uid: 22939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-46.5 - parent: 2 - uid: 22940 components: - type: Transform @@ -391680,16 +402380,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-82.5 parent: 2 - - uid: 25006 - components: - - type: Transform - pos: 12.5,-88.5 - parent: 2 - - uid: 25008 - components: - - type: Transform - pos: 12.5,-90.5 - parent: 2 - uid: 25009 components: - type: Transform @@ -392201,11 +402891,6 @@ entities: rot: -1.5707963267948966 rad pos: -81.5,-47.5 parent: 2 - - uid: 26156 - components: - - type: Transform - pos: 22.5,-70.5 - parent: 2 - uid: 26201 components: - type: Transform @@ -393653,11 +404338,6 @@ entities: - type: Transform pos: 21.5,-70.5 parent: 2 - - uid: 32220 - components: - - type: Transform - pos: 24.5,-70.5 - parent: 2 - uid: 33114 components: - type: Transform @@ -393752,11 +404432,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,75.5 parent: 2 - - uid: 41311 - components: - - type: Transform - pos: 84.5,-49.5 - parent: 2 - uid: 41443 components: - type: Transform @@ -394001,6 +404676,11 @@ entities: - type: Transform pos: -73.5,39.5 parent: 2 + - uid: 51036 + components: + - type: Transform + pos: 18.5,-70.5 + parent: 2 - uid: 51109 components: - type: Transform @@ -394352,6 +405032,69 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,99.5 parent: 2 + - uid: 57616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,30.5 + parent: 2 + - uid: 57642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,36.5 + parent: 2 + - uid: 57643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,36.5 + parent: 2 + - uid: 57662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,37.5 + parent: 2 + - uid: 58038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-27.5 + parent: 2 + - uid: 58076 + components: + - type: Transform + pos: 23.5,-70.5 + parent: 2 + - uid: 58227 + components: + - type: Transform + pos: 23.5,-71.5 + parent: 2 + - uid: 58257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,35.5 + parent: 2 + - uid: 58258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,32.5 + parent: 2 + - uid: 58372 + components: + - type: Transform + pos: 22.5,-70.5 + parent: 2 + - uid: 58373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,32.5 + parent: 2 - proto: WallSolidDiagonal entities: - uid: 71043 @@ -395000,38 +405743,6 @@ entities: - type: Transform pos: -21.5,66.5 parent: 2 - - uid: 71047 - components: - - type: Transform - pos: -0.5,2.5 - parent: 71010 - - uid: 71048 - components: - - type: Transform - pos: 0.5,2.5 - parent: 71010 - - uid: 71049 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 71010 - - uid: 71050 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 71010 - - uid: 71051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 71010 - - uid: 71052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 71010 - proto: WardrobeAtmospherics entities: - uid: 13061 @@ -395263,11 +405974,122 @@ entities: - type: Transform pos: -21.5,-27.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 40194 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 20297 components: - type: Transform pos: -19.5,-27.5 parent: 2 + - uid: 26342 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13313 + - 13316 + - 13298 + - 13300 + - 13299 + - 13297 + - 13314 + - 13317 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26714 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27028 + - 27029 + - 27476 + - 13309 + - 13310 + - 27923 + - 13312 + - 13311 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 70916 components: - type: Transform @@ -395570,6 +406392,20 @@ entities: parent: 2 - type: WarpPoint location: Допросная + - uid: 14788 + components: + - type: Transform + pos: 85.5,-14.5 + parent: 2 + - type: WarpPoint + location: Стыковочный порт карго + - uid: 24830 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 2 + - type: WarpPoint + location: Офис смотрителя - uid: 55989 components: - type: Transform @@ -395633,13 +406469,13 @@ entities: parent: 2 - type: WarpPoint location: Смотровая площадка доков СБ - - uid: 55999 + - uid: 57748 components: - type: Transform - pos: 87.5,-14.5 + pos: 0.5,-49.5 parent: 2 - type: WarpPoint - location: Стыковочный порт + location: Криогеника - proto: WaterCooler entities: - uid: 3995 @@ -395781,10 +406617,15 @@ entities: - type: Transform pos: 73.5,-27.5 parent: 2 - - uid: 10689 + - uid: 10862 components: - type: Transform - pos: -50.5,5.5 + pos: -42.5,5.5 + parent: 2 + - uid: 10880 + components: + - type: Transform + pos: -42.5,4.5 parent: 2 - uid: 13035 components: @@ -395946,6 +406787,11 @@ entities: - type: Transform pos: -83.5,32.5 parent: 2 + - uid: 58020 + components: + - type: Transform + pos: 55.5,-15.5 + parent: 2 - proto: WaterTankHighCapacity entities: - uid: 6717 @@ -396170,13 +407016,6 @@ entities: - type: Transform pos: 0.5,-2.5 parent: 56001 -- proto: WeaponCrusherGlaive - entities: - - uid: 5140 - components: - - type: Transform - pos: 76.59877,8.643956 - parent: 2 - proto: WeaponDisabler entities: - uid: 4496 @@ -396250,13 +407089,6 @@ entities: - type: Transform pos: -33.485363,-32.04512 parent: 2 - - uid: 27678 - components: - - type: Transform - parent: 20443 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 32093 components: - type: Transform @@ -396389,11 +407221,6 @@ entities: parent: 66965 - proto: WeaponLaserSvalinn entities: - - uid: 20929 - components: - - type: Transform - pos: -66.53888,-19.363565 - parent: 2 - uid: 31598 components: - type: Transform @@ -396401,12 +407228,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 56704 - components: - - type: Transform - parent: 56703 - - type: Physics - canCollide: False - uid: 57138 components: - type: Transform @@ -397036,12 +407857,6 @@ entities: parent: 2 - proto: WelderMini entities: - - uid: 10887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.502354,4.507427 - parent: 2 - uid: 16044 components: - type: Transform @@ -397069,6 +407884,11 @@ entities: - type: Transform pos: 49.5,19.5 parent: 2 + - uid: 51557 + components: + - type: Transform + pos: -43.5,3.5 + parent: 2 - proto: WeldingFuelTankFull entities: - uid: 4601 @@ -397101,11 +407921,6 @@ entities: - type: Transform pos: 52.5,14.5 parent: 2 - - uid: 10899 - components: - - type: Transform - pos: -43.5,3.5 - parent: 2 - uid: 17453 components: - type: Transform @@ -397563,18 +408378,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-37.5 parent: 2 - - uid: 7694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,7.5 - parent: 2 - - uid: 7700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,7.5 - parent: 2 - uid: 11762 components: - type: Transform @@ -399221,11 +410024,6 @@ entities: - type: Transform pos: -69.5,25.5 parent: 2 - - uid: 6352 - components: - - type: Transform - pos: -70.5,3.5 - parent: 2 - uid: 6364 components: - type: Transform @@ -399562,11 +410360,6 @@ entities: - type: Transform pos: -37.5,44.5 parent: 2 - - uid: 11227 - components: - - type: Transform - pos: -93.5,63.5 - parent: 2 - uid: 11236 components: - type: Transform @@ -399675,11 +410468,6 @@ entities: - type: Transform pos: -37.5,54.5 parent: 2 - - uid: 15868 - components: - - type: Transform - pos: 38.5,21.5 - parent: 2 - uid: 15890 components: - type: Transform @@ -399746,11 +410534,6 @@ entities: - type: Transform pos: 9.5,-33.5 parent: 2 - - uid: 20218 - components: - - type: Transform - pos: 4.5,-27.5 - parent: 2 - uid: 21636 components: - type: Transform @@ -400363,6 +411146,18 @@ entities: - type: Transform pos: -83.5,11.5 parent: 2 + - uid: 57868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,3.5 + parent: 2 + - uid: 57869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,63.5 + parent: 2 - uid: 71415 components: - type: Transform @@ -400512,11 +411307,6 @@ entities: rot: 1.5707963267948966 rad pos: 85.5,-3.5 parent: 2 - - uid: 3352 - components: - - type: Transform - pos: 45.5,-27.5 - parent: 2 - uid: 4109 components: - type: Transform @@ -400595,22 +411385,12 @@ entities: rot: 1.5707963267948966 rad pos: 85.5,-12.5 parent: 2 - - uid: 4412 - components: - - type: Transform - pos: 74.5,-6.5 - parent: 2 - uid: 4413 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-14.5 parent: 2 - - uid: 4414 - components: - - type: Transform - pos: 81.5,-6.5 - parent: 2 - uid: 4415 components: - type: Transform @@ -400957,12 +411737,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,73.5 parent: 2 - - uid: 7514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,3.5 - parent: 2 - uid: 7560 components: - type: Transform @@ -400981,29 +411755,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,4.5 parent: 2 - - uid: 7690 - components: - - type: Transform - pos: 44.5,-27.5 - parent: 2 - - uid: 7952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,4.5 - parent: 2 - - uid: 7955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,3.5 - parent: 2 - - uid: 7978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,4.5 - parent: 2 - uid: 9506 components: - type: Transform @@ -401050,11 +411801,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,43.5 parent: 2 - - uid: 9869 - components: - - type: Transform - pos: 44.5,-27.5 - parent: 2 - uid: 9898 components: - type: Transform @@ -401067,11 +411813,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,16.5 parent: 2 - - uid: 9908 - components: - - type: Transform - pos: 45.5,-27.5 - parent: 2 - uid: 9948 components: - type: Transform @@ -402139,6 +412880,12 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,18.5 parent: 2 + - uid: 32220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-68.5 + parent: 2 - uid: 33036 components: - type: Transform @@ -402202,6 +412949,11 @@ entities: rot: 1.5707963267948966 rad pos: 83.5,-22.5 parent: 2 + - uid: 56858 + components: + - type: Transform + pos: 74.5,-6.5 + parent: 2 - uid: 57124 components: - type: Transform @@ -402271,6 +413023,17 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-85.5 parent: 2 + - uid: 58313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-67.5 + parent: 2 + - uid: 58378 + components: + - type: Transform + pos: 81.5,-6.5 + parent: 2 - proto: WindowFrostedDirectional entities: - uid: 4989 @@ -404678,6 +415441,18 @@ entities: rot: 3.141592653589793 rad pos: 95.5,-58.5 parent: 2 + - uid: 57921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-48.5 + parent: 2 + - uid: 57922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-48.5 + parent: 2 - uid: 70945 components: - type: Transform @@ -405136,11 +415911,6 @@ entities: parent: 71010 - proto: WoodDoor entities: - - uid: 24830 - components: - - type: Transform - pos: -66.5,35.5 - parent: 2 - uid: 30179 components: - type: Transform @@ -405795,7 +416565,7 @@ entities: - uid: 15140 components: - type: Transform - pos: 32.514854,-75.33553 + pos: 30.423336,-74.41219 parent: 2 - uid: 15644 components: diff --git a/Resources/Maps/corvax_awesome.yml b/Resources/Maps/corvax_awesome.yml index a17dc9ec544..50485bb677e 100644 --- a/Resources/Maps/corvax_awesome.yml +++ b/Resources/Maps/corvax_awesome.yml @@ -5,7 +5,9 @@ tilemap: 0: Space 46: FloorArcadeBlue 45: FloorArcadeBlue2 + 92: FloorAsteroidSandUnvariantized 70: FloorAstroGrass + 89: FloorAstroSnow 37: FloorBar 44: FloorBlue 78: FloorBlueCircuit @@ -14,8 +16,13 @@ tilemap: 64: FloorChromite 33: FloorClown 79: FloorConcrete + 85: FloorDarkDiagonal + 83: FloorDarkHerringbone 61: FloorDarkMini + 82: FloorDarkMono 31: FloorDarkOffset + 86: FloorDarkPavement + 87: FloorDarkPavementVertical 62: FloorDarkPlastic 58: FloorFlesh 39: FloorFreezer @@ -41,11 +48,14 @@ tilemap: 47: FloorShowroom 42: FloorShuttleBlue 13: FloorShuttleOrange + 84: FloorShuttlePurple 60: FloorShuttleRed 48: FloorShuttleWhite 52: FloorSilver + 88: FloorSnowDug 7: FloorSteel 55: FloorSteelBurnt + 81: FloorSteelCheckerDark 66: FloorSteelCheckerLight 54: FloorSteelDamaged 9: FloorSteelDiagonal @@ -60,6 +70,7 @@ tilemap: 20: FloorTechMaint2 21: FloorTechMaint3 65: FloorWebTile + 80: FloorWhite 68: FloorWhiteDiagonal 19: FloorWhiteDiagonalMini 67: FloorWhiteHerringbone @@ -74,8 +85,10 @@ tilemap: 3: FloorWoodChessRed 28: FloorWoodLarge 74: FloorWoodLargeDark + 91: FloorWoodLargeLight 34: FloorWoodLargeRed 1: FloorWoodLight + 90: FloorWoodParquet 30: FloorWoodParquetRed 29: FloorWoodRed 72: FloorWoodTile @@ -89,7 +102,7 @@ entities: - uid: 1 components: - type: MetaData - name: Map Entity + name: Awesome Station - type: Transform - type: Map mapPaused: True @@ -110,51 +123,51 @@ entities: chunks: 0,0: ind: 0,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAFAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABFAAAAAAABwAAAAADFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABwAAAAAAFAAAAAAAFAAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABFAAAAAAAFAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABFAAAAAAABwAAAAAAgQAAAAAABwAAAAACBwAAAAACBwAAAAACFAAAAAAAFAAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABgQAAAAAABwAAAAACFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAADFAAAAAAABwAAAAAAgQAAAAAABwAAAAADBwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABFAAAAAAAFAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAABgQAAAAAABwAAAAABBwAAAAACBwAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADFAAAAAAAFAAAAAAAgQAAAAAA + tiles: BAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAAARQAAAAAARQAAAAAARQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACCwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABBwAAAAACBwAAAAACRQAAAAAARQAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAAABwAAAAAABwAAAAAAWQAAAAAAWQAAAAAABwAAAAAABwAAAAAAgQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: BwAAAAABgQAAAAAAFAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAACgQAAAAAAgQAAAAAABwAAAAABFAAAAAAABwAAAAABBwAAAAABBwAAAAADFAAAAAAAgQAAAAAABwAAAAABgQAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAFAAAAAAABwAAAAABBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAACFAAAAAAAFAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAABgQAAAAAABAAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADgQAAAAAACgAAAAABCgAAAAADCgAAAAAACgAAAAABCgAAAAACCgAAAAACgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAOAAAAAABOAAAAAABOAAAAAACOAAAAAADOAAAAAAAOAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAAAgQAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAABOAAAAAADOAAAAAACgQAAAAAABwAAAAABFAAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAOAAAAAADOAAAAAADOAAAAAAAOAAAAAACOAAAAAABgQAAAAAABwAAAAADBwAAAAABgQAAAAAABAAAAAAAAgAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAACgAAAAADCgAAAAACCgAAAAAACgAAAAACCgAAAAACCgAAAAADgQAAAAAABwAAAAACBwAAAAABgQAAAAAABAAAAAAAAwAAAAAAAgAAAAACFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACgAAAAADgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAADgQAAAAAABAAAAAAAAgAAAAAAgQAAAAAABwAAAAADBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAADgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACFAAAAAAAFAAAAAAABwAAAAAABwAAAAACFAAAAAAAgQAAAAAABAAAAAAAHAAAAAADgQAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABAAAAAAAHAAAAAABgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAA + tiles: DAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAACgAAAAAADAAAAAAADAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAABBwAAAAAACwAAAAAACwAAAAAARQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAACwAAAAAACwAAAAAAFAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAABAAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADgQAAAAAACgAAAAABCgAAAAADCgAAAAAACgAAAAABCgAAAAACCgAAAAACgQAAAAAACwAAAAAACwAAAAAAgQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAOAAAAAABOAAAAAABOAAAAAACOAAAAAADOAAAAAAAOAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAABAAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAAAgQAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAABOAAAAAADOAAAAAACgQAAAAAACwAAAAAACwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAOAAAAAADOAAAAAADOAAAAAAAOAAAAAACOAAAAAABgQAAAAAACwAAAAAACwAAAAAAgQAAAAAABAAAAAAAAgAAAAAAgQAAAAAABwAAAAADCwAAAAAAgQAAAAAACgAAAAADCgAAAAACCgAAAAAACgAAAAACCgAAAAACCgAAAAADgQAAAAAACwAAAAAACwAAAAAAgQAAAAAABAAAAAAAAwAAAAAACwAAAAAABwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAgQAAAAAABAAAAAAAAgAAAAAAgQAAAAAABwAAAAADOAAAAAAAgQAAAAAAOAAAAAAADAAAAAAAOAAAAAAABwAAAAAAOAAAAAAADAAAAAAAOAAAAAAABwAAAAABBwAAAAADgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAADRQAAAAAARQAAAAAABwAAAAADBwAAAAACOAAAAAAADAAAAAAADAAAAAAADAAAAAAAOAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAgQAAAAAADAAAAAAAOAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: BwAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAACgQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABgQAAAAAABwAAAAAABwAAAAABBwAAAAACgQAAAAAAFAAAAAAABwAAAAACBwAAAAABgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABwAAAAADBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAABgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAFAAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAFAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAADBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAAGAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAADgQAAAAAABwAAAAACFAAAAAAABwAAAAACBwAAAAABgQAAAAAAFAAAAAAAgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAABFAAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAFAAAAAAABwAAAAABBwAAAAACgQAAAAAABwAAAAABBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABwAAAAADBwAAAAABgQAAAAAABwAAAAAABwAAAAAAFAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABFAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAAAFAAAAAAABwAAAAADFAAAAAAAFAAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAABwAAAAABBwAAAAADBwAAAAAAFAAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAACFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAADgQAAAAAAgQAAAAAABwAAAAACBwAAAAAAFAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAAABwAAAAAAgQAAAAAABwAAAAADgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAABFAAAAAAABwAAAAAD + tiles: DgAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAADgAAAAAADgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAADgAAAAAAgQAAAAAATQAAAAAAVAAAAAAATgAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADCwAAAAAABwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADRQAAAAAARQAAAAAARQAAAAAABwAAAAABRAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAADAAAAAAADAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAADBwAAAAADRQAAAAAACwAAAAAARQAAAAAABwAAAAACRAAAAAAAEwAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAARAAAAAAAEwAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAADwAAAAAADwAAAAAALAAAAAAADwAAAAAADwAAAAAAgQAAAAAABwAAAAABCwAAAAAABwAAAAAAgQAAAAAARAAAAAAAEwAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAADwAAAAAADwAAAAAALAAAAAAADwAAAAAADwAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADAAAAAAADAAAAAAACgAAAAAARQAAAAAAgQAAAAAARAAAAAAAEwAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAADwAAAAAADwAAAAAALAAAAAAADwAAAAAADwAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAARAAAAAAAEwAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAADwAAAAAADwAAAAAALAAAAAAADwAAAAAADwAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAAABwAAAAAD version: 6 -1,-1: ind: -1,-1 - tiles: BwAAAAADBwAAAAAABwAAAAAAFAAAAAAABwAAAAABFAAAAAAABwAAAAABFAAAAAAAFAAAAAAABwAAAAACBwAAAAABFAAAAAAAFAAAAAAAgQAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABFAAAAAAAFAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAACFAAAAAAABwAAAAADBwAAAAAAFAAAAAAAFAAAAAAABwAAAAAAFAAAAAAABwAAAAADgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABFAAAAAAABwAAAAADgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABwAAAAACBwAAAAAAFAAAAAAAFAAAAAAABwAAAAACgQAAAAAABwAAAAAAFAAAAAAABwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAFAAAAAAABwAAAAABFAAAAAAABwAAAAAABwAAAAABgQAAAAAABwAAAAABBwAAAAADBwAAAAACgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAABgQAAAAAABwAAAAAABwAAAAADFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAABAQAAAAAABwAAAAAAFAAAAAAABwAAAAADFAAAAAAAFAAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAOwAAAAAAgQAAAAAAgQAAAAAAAQAAAAACBwAAAAAAFAAAAAAAFAAAAAAABwAAAAABBwAAAAABBwAAAAACFAAAAAAAgQAAAAAABwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABgQAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAADGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAGAAAAAAAFAAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAwAAAAACAgAAAAABAwAAAAADAgAAAAADCgAAAAABDAAAAAADgQAAAAAAFAAAAAAACgAAAAADgQAAAAAAFAAAAAAABwAAAAADFAAAAAAAgQAAAAAABAAAAAAAgQAAAAAAAgAAAAACAwAAAAABAgAAAAACAwAAAAACMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAACgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAgQAAAAAAHAAAAAAAHAAAAAACHAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAAgQAAAAAAAAAAAAAABAAAAAAAgQAAAAAAHAAAAAAAHAAAAAACHAAAAAAB + tiles: DAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAADBwAAAAACBwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABCwAAAAAABwAAAAADgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABwAAAAAACwAAAAAABwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAALwAAAAAAgQAAAAAAgQAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAABAAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABCwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAwAAAAACAgAAAAABAwAAAAADAgAAAAADDwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAADwAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAAgAAAAACAwAAAAABAgAAAAACAwAAAAACEAAAAAAATgAAAAAATQAAAAAATgAAAAAAEAAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAATQAAAAAATgAAAAAATQAAAAAADwAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: BgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAACgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAAGgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAABwAAAAABgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABQAAAAAAGgAAAAAABQAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAAAgQAAAAAADQAAAAABBwAAAAABDQAAAAADgQAAAAAAAAAAAAAAAAAAAAAABQAAAAAAGgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAADQAAAAACDQAAAAACDQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAADgQAAAAAAgQAAAAAABwAAAAACBwAAAAABFAAAAAAABwAAAAAABwAAAAADBwAAAAAD + tiles: BgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADgQAAAAAABwAAAAAABwAAAAACBwAAAAAAgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAACgQAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAGgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAAGgAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAABwAAAAABgQAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAABQAAAAAAGgAAAAAABQAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAAAgQAAAAAADQAAAAABBwAAAAABDQAAAAADgQAAAAAAAAAAAAAAAAAAAAAABQAAAAAAGgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAADQAAAAACDQAAAAACDQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAADBwAAAAAD version: 6 1,-1: ind: 1,-1 - tiles: FAAAAAAABwAAAAACBwAAAAAABwAAAAADgQAAAAAABwAAAAACBwAAAAABFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABFAAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAADBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAgQAAAAAABwAAAAABFAAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAABgQAAAAAAgQAAAAAAFAAAAAAABwAAAAADBwAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAACFAAAAAAAFAAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAADgQAAAAAAgQAAAAAABwAAAAACFAAAAAAAFAAAAAAABwAAAAABAAAAAAAAAAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAABwAAAAACgQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAFAAAAAAAOAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAACBwAAAAAABwAAAAACgQAAAAAAgQAAAAAABwAAAAADAAAAAAAAAAAAAAAAgQAAAAAABwAAAAACBwAAAAABFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAADFAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAACgQAAAAAAOAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAACFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAFAAAAAAABwAAAAADFAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAACgQAAAAAAFAAAAAAABwAAAAAABwAAAAABBwAAAAABgQAAAAAABwAAAAACBwAAAAADFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAADFAAAAAAAFAAAAAAAgQAAAAAABwAAAAACBwAAAAADFAAAAAAAgQAAAAAAgQAAAAAABwAAAAACAAAAAAAAAAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAABgQAAAAAABwAAAAACBwAAAAADBwAAAAADFAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAD + tiles: DAAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAADAAAAAAADAAAAAAACgAAAAAABwAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAGAAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAABCwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAACRQAAAAAARQAAAAAARQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARQAAAAAACgAAAAAARQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAABAAAAAAABAAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAABwAAAAADRQAAAAAARQAAAAAARQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAOAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABCwAAAAAABwAAAAAAOAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABgQAAAAAABwAAAAACBwAAAAADCgAAAAAADAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAACgAAAAAADAAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAACwAAAAAABwAAAAACAAAAAAAAAAAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAABgQAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAACwAAAAAABwAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: BgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAABFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADFAAAAAAAFAAAAAAABwAAAAACBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAHgAAAAABHQAAAAACBwAAAAABBwAAAAADgQAAAAAAFAAAAAAABwAAAAADgQAAAAAABwAAAAAABwAAAAABBwAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAHQAAAAABHQAAAAABHQAAAAADBwAAAAADBwAAAAADgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAABgQAAAAAAFAAAAAAAgQAAAAAAHQAAAAAAHgAAAAADBwAAAAACBwAAAAAAgQAAAAAABwAAAAADBwAAAAABgQAAAAAABwAAAAAAgQAAAAAABwAAAAACBwAAAAAAFAAAAAAAgQAAAAAABwAAAAABgQAAAAAAHQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAFAAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAAABwAAAAACFAAAAAAAFAAAAAAABwAAAAABgQAAAAAAFAAAAAAAFAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgQAAAAAAFAAAAAAA + tiles: BgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAHgAAAAABHQAAAAACBwAAAAABBwAAAAADgQAAAAAABwAAAAAABwAAAAADgQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABgQAAAAAABwAAAAAAHQAAAAABHQAAAAABHQAAAAADBwAAAAADBwAAAAADgQAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAABgQAAAAAABwAAAAAAgQAAAAAAHQAAAAAAHgAAAAADBwAAAAACBwAAAAAAgQAAAAAABwAAAAADBwAAAAABgQAAAAAABwAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAAAgQAAAAAABwAAAAABgQAAAAAAHQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAFAAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABRQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAADRQAAAAAARQAAAAAARQAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAFAAAAAAABwAAAAADBwAAAAABBwAAAAABGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAACFAAAAAAAFAAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAABFAAAAAAABwAAAAACgQAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAACBwAAAAACBwAAAAADgQAAAAAABwAAAAAABwAAAAAABwAAAAACgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAABwAAAAACFAAAAAAABwAAAAABBwAAAAADBwAAAAABgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAABwAAAAABFAAAAAAAFAAAAAAABwAAAAABBwAAAAACBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABwAAAAACBwAAAAACgQAAAAAAFAAAAAAABwAAAAACBwAAAAABFAAAAAAAgQAAAAAAgQAAAAAAHQAAAAACHQAAAAACHgAAAAACgQAAAAAAFAAAAAAAMwAAAAAAgQAAAAAABwAAAAACBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAABgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAHgAAAAACHQAAAAABHQAAAAAAgQAAAAAAFAAAAAAAMwAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAHgAAAAABHQAAAAABHQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAABwAAAAABFAAAAAAABwAAAAABBwAAAAAAFAAAAAAAgQAAAAAABwAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAGAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACCwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADCwAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAABwAAAAAAgQAAAAAAVgAAAAAAPQAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAVgAAAAAABwAAAAAABwAAAAAABwAAAAACgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAACwAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAABBwAAAAADBwAAAAABgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAACwAAAAAABwAAAAAAgQAAAAAAPQAAAAAAPgAAAAAAPQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAACwAAAAAABwAAAAAAgQAAAAAAVwAAAAAAPgAAAAAAVwAAAAAAPgAAAAAAKwAAAAAAKwAAAAAAHQAAAAACHQAAAAACHgAAAAACgQAAAAAAFAAAAAAAMwAAAAAAgQAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPgAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAACwAAAAAABwAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAHgAAAAACHQAAAAABHQAAAAAAgQAAAAAAFAAAAAAAMwAAAAAAgQAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAABHQAAAAABHQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAABwAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAGAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAGAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAFQAAAAAAFQAAAAABgQAAAAAAgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAABwAAAAACBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAOQAAAAAAgQAAAAAAEgAAAAABEgAAAAABEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAADEgAAAAAAEgAAAAADgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAABwAAAAAABwAAAAADgQAAAAAAEgAAAAABEgAAAAADEgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADgQAAAAAAEgAAAAADEgAAAAADEgAAAAADgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAABIgAAAAADgQAAAAAAgQAAAAAABwAAAAACBwAAAAACgQAAAAAAEgAAAAAAEgAAAAACEgAAAAADgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAACIgAAAAABgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAEgAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAADgQAAAAAABwAAAAAABwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABwAAAAACFAAAAAAAFAAAAAAABwAAAAACBwAAAAAAFAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABgQAAAAAABwAAAAABHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAFAAAAAAAgQAAAAAAFAAAAAAABwAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAABgQAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAGAAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARQAAAAAARQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARAAAAAAARAAAAAAARAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARQAAAAAARQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAARAAAAAAARAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAARAAAAAAARAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAEgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEgAAAAAAUAAAAAAAgQAAAAAARAAAAAAARAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEgAAAAAAUAAAAAAAgQAAAAAARAAAAAAARAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAgQAAAAAARAAAAAAARAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: gQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAATAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAASwAAAAAASwAAAAABgQAAAAAASwAAAAACFwAAAAADFwAAAAABgQAAAAAAgQAAAAAABwAAAAAAKQAAAAAABwAAAAADgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAFwAAAAADFwAAAAABKQAAAAAAgQAAAAAAFwAAAAACgQAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAASwAAAAADgQAAAAAAFwAAAAADgQAAAAAAgQAAAAAATAAAAAABTAAAAAAAgQAAAAAABwAAAAABBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAFAAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAFQAAAAACgQAAAAAAGAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABwAAAAACgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAFQAAAAADGQAAAAADgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAGAAAAAAAgQAAAAAACgAAAAABgQAAAAAAFAAAAAAABwAAAAADgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABwAAAAABBwAAAAACgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAACMwAAAAAAgQAAAAAAFAAAAAAABwAAAAACgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABFAAAAAAAFAAAAAAADgAAAAADBAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAADgQAAAAAABwAAAAACgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAFAAAAAAABwAAAAACFAAAAAAAFAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAGAAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAADgAAAAAAKQAAAAAABwAAAAADgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABwAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAGAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAFQAAAAACgQAAAAAAGAAAAAAAFAAAAAAAFAAAAAAADgAAAAAADgAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAFQAAAAADGQAAAAADgQAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFgAAAAAAGAAAAAAAgQAAAAAACgAAAAABgQAAAAAADgAAAAAADgAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAVAAAAAAADgAAAAAADgAAAAAAVAAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAADBAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAAgQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: gQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAABgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADgQAAAAAACQAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAACQAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAAAgQAAAAAACQAAAAADNQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAACgQAAAAAACQAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADgQAAAAAACQAAAAADNQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADCAAAAAAACAAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAABCAAAAAAACAAAAAAACAAAAAAABwAAAAAAgQAAAAAABwAAAAAADQAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAACBwAAAAACDQAAAAADBwAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAABgQAAAAAABwAAAAADDQAAAAAABwAAAAADgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAADBwAAAAADgQAAAAAADQAAAAAADQAAAAACDQAAAAACBAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAADQAAAAACBwAAAAADBAAAAAAAgQAAAAAABAAAAAAABAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABwAAAAAABwAAAAACBwAAAAADBAAAAAAAgQAAAAAABAAAAAAABAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAA + tiles: gQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADgQAAAAAACQAAAAADBwAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAACQAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAAAgQAAAAAACQAAAAADBwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAACgQAAAAAACQAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADgQAAAAAACQAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADCAAAAAAACAAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADBwAAAAABCAAAAAAACAAAAAAACAAAAAAABwAAAAAAgQAAAAAABwAAAAAADQAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAACBwAAAAACDQAAAAADBwAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAABgQAAAAAABwAAAAADDQAAAAAABwAAAAADgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADgQAAAAAADQAAAAAADQAAAAACDQAAAAACBAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAADQAAAAACBwAAAAADBAAAAAAAgQAAAAAABAAAAAAABAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABwAAAAAABwAAAAACBwAAAAADBAAAAAAAgQAAAAAABAAAAAAABAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAAGAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAGAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAABFAAAAAAAFAAAAAAAGAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAABgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADgQAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAABBwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABgQAAAAAABgAAAAAABgAAAAAAgQAAAAAA + tiles: AAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAABgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADgQAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAABBwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABgQAAAAAABgAAAAAABgAAAAAAgQAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -162,7 +175,7 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 @@ -170,55 +183,55 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAABFwAAAAABKAAAAAADFwAAAAACFwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAKAAAAAABKAAAAAABKAAAAAABKAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAACFwAAAAAAKAAAAAAAFwAAAAADFwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAABFwAAAAABKAAAAAADFwAAAAACFwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAKAAAAAABKAAAAAABKAAAAAABKAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAACFwAAAAAAKAAAAAAAFwAAAAADFwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: BAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAFAAAAAAABwAAAAADFAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACFAAAAAAAgQAAAAAANQAAAAAABwAAAAACBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAgQAAAAAABwAAAAACBwAAAAADgQAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAgQAAAAAABwAAAAADBwAAAAADgQAAAAAABwAAAAADBwAAAAACgQAAAAAABwAAAAAABwAAAAACgQAAAAAABwAAAAACFAAAAAAAgQAAAAAABwAAAAABBAAAAAAABAAAAAAAgQAAAAAABwAAAAAAFAAAAAAABwAAAAADgQAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADgQAAAAAAgQAAAAAABwAAAAAABwAAAAACFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABwAAAAADBwAAAAABBwAAAAACgQAAAAAABwAAAAACFAAAAAAABwAAAAAABwAAAAACBwAAAAACgQAAAAAABwAAAAABFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAACgQAAAAAABwAAAAADFAAAAAAABwAAAAADFAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAACOgAAAAABOgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAAgQAAAAAABwAAAAAABwAAAAADFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAADOgAAAAABOgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAACOgAAAAACOgAAAAABOgAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAADOgAAAAAAOgAAAAACOgAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAABOgAAAAACOgAAAAADOgAAAAACCQAAAAAACwAAAAACCQAAAAABBwAAAAADKQAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAABCQAAAAABCwAAAAABCQAAAAABFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAACOgAAAAACOgAAAAADgQAAAAAACQAAAAACCwAAAAABCQAAAAACgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAOgAAAAAAOgAAAAABOgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: BAAAAAAABAAAAAAAgQAAAAAABwAAAAADCwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACCgAAAAAADAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAACwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAgQAAAAAABwAAAAAABwAAAAACCwAAAAAABwAAAAACAAAAAAAAAAAAAAAAgQAAAAAARQAAAAAACgAAAAAADAAAAAAACwAAAAAABwAAAAAARQAAAAAARQAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAABAAAAAAAAAAAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAACwAAAAAABwAAAAACRQAAAAAARQAAAAAABwAAAAACgQAAAAAABwAAAAACBwAAAAAACgAAAAAADAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAADgQAAAAAABwAAAAACRQAAAAAARQAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAACwAAAAAABwAAAAAAgQAAAAAABwAAAAAARQAAAAAARQAAAAAABwAAAAADgQAAAAAABwAAAAAABwAAAAAABwAAAAACRQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAACRQAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgQAAAAAABwAAAAAARQAAAAAARQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACwAAAAACCQAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAABCwAAAAABCQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAACCwAAAAABCQAAAAACgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,1: ind: 0,1 - tiles: BwAAAAABBwAAAAABFAAAAAAAgQAAAAAAgQAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAADBwAAAAABJQAAAAABJQAAAAADBwAAAAABBwAAAAADFAAAAAAAFAAAAAAAgQAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACKQAAAAABJQAAAAAAJQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABgQAAAAAABwAAAAABBwAAAAABFAAAAAAAKQAAAAACJQAAAAAAJQAAAAAAFAAAAAAAIQAAAAAAIQAAAAAABwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAABwAAAAABgQAAAAAABwAAAAADBwAAAAACFAAAAAAAKQAAAAAAJQAAAAADJQAAAAACFAAAAAAAIQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAABJQAAAAADJQAAAAACIQAAAAAAIQAAAAAAgQAAAAAABwAAAAADgQAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAABBwAAAAADFAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAFAAAAAAANQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAABgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAACgQAAAAAAIgAAAAACIgAAAAACIgAAAAAAIgAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAIgAAAAABIgAAAAACIgAAAAABIgAAAAACgQAAAAAAFAAAAAAABwAAAAAABwAAAAABgQAAAAAALAAAAAAAJAAAAAAABwAAAAAABwAAAAABgQAAAAAAFAAAAAAAgQAAAAAAIgAAAAAAIgAAAAADIgAAAAAAIgAAAAABgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAADgQAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAALAAAAAAAgQAAAAAAJAAAAAAALAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAALAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: BwAAAAABBwAAAAABBwAAAAAABwAAAAAAgQAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAACBwAAAAABBwAAAAABWQAAAAAAWQAAAAAABwAAAAABJQAAAAABJQAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAAAgQAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAABwAAAAABBwAAAAABRQAAAAAARQAAAAAABwAAAAAAJQAAAAAAJQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAABRQAAAAAARQAAAAAABwAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAABwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAAJQAAAAADJQAAAAACIQAAAAAAIQAAAAAAgQAAAAAARQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAABJQAAAAADJQAAAAACIQAAAAAAIQAAAAAAgQAAAAAARQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAgQAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAABgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAABwAAAAACgQAAAAAAIgAAAAACIgAAAAACIgAAAAAAIgAAAAABgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAABwAAAAAAJgAAAAAAIgAAAAABIgAAAAACIgAAAAABIgAAAAACgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAIgAAAAAAIgAAAAADIgAAAAAAIgAAAAABgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAALAAAAAAAJAAAAAAABwAAAAAAJAAAAAAABwAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAAJAAAAAAAJAAAAAAALAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAAJAAAAAAAJAAAAAAALAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAAJAAAAAAAJAAAAAAALAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAAJAAAAAAAJAAAAAAALAAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 1,1: ind: 1,1 - tiles: NQAAAAAAJQAAAAACNQAAAAAANQAAAAAATQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAJQAAAAADgQAAAAAABwAAAAABNQAAAAAAGAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAGgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABBwAAAAACgQAAAAAABwAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAADgQAAAAAAQAAAAAAEAAAAAAAAAAAAAAAAJQAAAAADBwAAAAABgQAAAAAABwAAAAADFAAAAAAABwAAAAACgQAAAAAAgQAAAAAAQAAAAAAFQAAAAAAAQAAAAAADQAAAAAAFQAAAAAACQAAAAAABAAAAAAAAAAAAAAAAgQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAQAAAAAAEQAAAAAACQAAAAAACQAAAAAADQAAAAAACQAAAAAAFAAAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAQAAAAAACQAAAAAAAQAAAAAAEQAAAAAABQAAAAAADQAAAAAADQAAAAAACQAAAAAAGJgAAAAAAJgAAAAAAgQAAAAAABwAAAAADJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAQAAAAAAGQAAAAAAFQAAAAAAGQAAAAAAAQAAAAAABQAAAAAACQAAAAAACQAAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAgQAAAAAAgQAAAAAAQAAAAAAGQAAAAAAEQAAAAAABQAAAAAAGQAAAAAADQAAAAAACQAAAAAAEQAAAAAADFAAAAAAABwAAAAABFAAAAAAAFAAAAAAAJgAAAAAAgQAAAAAAKQAAAAABKQAAAAADgQAAAAAAQAAAAAABQAAAAAADQAAAAAAGQAAAAAAAQAAAAAADQAAAAAAFAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAFAAAAAAAJgAAAAAAKQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAADQAAAAAACQAAAAAAEQAAAAAADAAAAAAAAJgAAAAAAFAAAAAAAFAAAAAAAJgAAAAAABwAAAAABBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAAQAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAADgQAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAABgQAAAAAA + tiles: JQAAAAAAJQAAAAACIAAAAAAAIAAAAAAATQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAJQAAAAADJQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJQAAAAADJQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAABKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAAAKQAAAAADgQAAAAAAPQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAgQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAACgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADgQAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAADgQAAAAAABwAAAAABBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAABBwAAAAABgQAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAAAgQAAAAAABwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAAAgQAAAAAABwAAAAACBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAABgQAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAACFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAABwAAAAABFAAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAABwAAAAABMwAAAAAABwAAAAABgQAAAAAAMwAAAAAABwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADgQAAAAAAgQAAAAAABwAAAAADBwAAAAADFAAAAAAAFAAAAAAABwAAAAACBwAAAAADBwAAAAADFAAAAAAAFAAAAAAABwAAAAACBwAAAAABgQAAAAAABwAAAAABBwAAAAACBwAAAAACLAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAADgQAAAAAAEAAAAAAAUAAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAABgQAAAAAAEAAAAAAAUAAAAAAAEgAAAAAAUAAAAAAAEgAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAEAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAEgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEgAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAQwAAAAAARQAAAAAAQwAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADCwAAAAAABwAAAAABgQAAAAAAgQAAAAAAQwAAAAAARQAAAAAAQwAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAQwAAAAAARQAAAAAAQwAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAQwAAAAAARQAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAQwAAAAAARQAAAAAAQwAAAAAAgQAAAAAABgAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAQwAAAAAARQAAAAAAQwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADCwAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADCwAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABCwAAAAAABwAAAAACLAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: HwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAADBwAAAAABGAAAAAAAMwAAAAAAgQAAAAAAFAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAACMwAAAAAAMwAAAAAABwAAAAAAFAAAAAAABwAAAAABgQAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAMwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAAFAAAAAAAgQAAAAAABwAAAAAABwAAAAACgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAACgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAANwAAAAAAgQAAAAAABwAAAAABBwAAAAABBwAAAAABgQAAAAAACgAAAAAACgAAAAABCgAAAAAACgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAGAAAAAAAFAAAAAAACgAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAAAgQAAAAAACgAAAAACNgAAAAABCgAAAAADCgAAAAABgQAAAAAAFAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAGAAAAAAACgAAAAABCgAAAAABgQAAAAAAFAAAAAAABwAAAAABCgAAAAACCgAAAAABCgAAAAADNgAAAAAACgAAAAABgQAAAAAAGAAAAAAAMwAAAAAAFAAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAFAAAAAAABwAAAAACgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAANQAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAFAAAAAAABwAAAAACBwAAAAACgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABwAAAAAB + tiles: GwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAEgAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAUAAAAAAAgQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAUAAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADgQAAAAAACgAAAAAAgQAAAAAABwAAAAABCwAAAAAABwAAAAABgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAFAAAAAAACgAAAAAACgAAAAAABwAAAAADCwAAAAAABwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAgQAAAAAAFAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAACgAAAAABgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAgQAAAAAAGAAAAAAAMwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAARQAAAAAACwAAAAAARQAAAAAABwAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAACgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADCwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAB version: 6 2,0: ind: 2,0 - tiles: BwAAAAAAgQAAAAAAFAAAAAAABwAAAAADBwAAAAABBwAAAAADFAAAAAAABwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAFAAAAAAABwAAAAACBwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAADgQAAAAAABwAAAAACBwAAAAABBwAAAAABFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAABwAAAAACFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAABwAAAAABgQAAAAAAFAAAAAAABwAAAAABgQAAAAAABwAAAAACBgAAAAAABwAAAAADBwAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADFAAAAAAABwAAAAACFAAAAAAABwAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAABBwAAAAADFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAABwAAAAAAgQAAAAAABwAAAAADBwAAAAADFAAAAAAAFAAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAACFAAAAAAABwAAAAADBwAAAAACBwAAAAADFAAAAAAABwAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBgAAAAAABwAAAAABBwAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAADgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAACgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: DAAAAAAADAAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAABwAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAACwAAAAAABwAAAAACBwAAAAAABwAAAAABCwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAADCwAAAAAABwAAAAACBwAAAAABBwAAAAABCwAAAAAABwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAACgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAABwAAAAAAgQAAAAAABwAAAAADKQAAAAAABwAAAAAABwAAAAAAgQAAAAAARQAAAAAARQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAAABwAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAADgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAACgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: GAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAABFAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAACFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAABgQAAAAAABwAAAAACFAAAAAAAFAAAAAAABwAAAAADgQAAAAAABwAAAAABBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAADgQAAAAAAFAAAAAAABwAAAAADgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAFAAAAAAAgQAAAAAABwAAAAABBwAAAAABgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAABwAAAAADgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAGwAAAAAABwAAAAADQgAAAAABgQAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAQgAAAAABFAAAAAAAFAAAAAAABwAAAAABQgAAAAABgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAQgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABwAAAAABBwAAAAACFAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAAABwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABwAAAAACBwAAAAAAFAAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAADFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAAABwAAAAACBwAAAAADFAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAUQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAADgQAAAAAABwAAAAAABwAAAAADBwAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAUQAAAAAAgQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAADgQAAAAAABwAAAAABBwAAAAAABwAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAUQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAABgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAABAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAABgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAABAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAADQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADAAAAAAADAAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABwAAAAACBwAAAAAACwAAAAAABwAAAAADBwAAAAACBwAAAAACCwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABwAAAAADBwAAAAABCwAAAAAABwAAAAACBwAAAAAABwAAAAACCwAAAAAABwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAATgAAAAAATgAAAAAATQAAAAAATgAAAAAATQAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFwAAAAABFwAAAAADFwAAAAACTgAAAAAAFwAAAAAAFwAAAAABFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAATgAAAAAAFwAAAAADFwAAAAAATwAAAAABFwAAAAAAFwAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAMAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAACgAAAAACDAAAAAAADAAAAAAADAAAAAAACgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAACwAAAAACBgAAAAAABgAAAAAABgAAAAAACwAAAAACgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAATgAAAAAATgAAAAAATQAAAAAATgAAAAAATQAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFwAAAAABFwAAAAADFwAAAAACTgAAAAAAFwAAAAAAFwAAAAABFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAATgAAAAAAFwAAAAADFwAAAAAATwAAAAABFwAAAAAAFwAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAACgAAAAACDAAAAAAADAAAAAAADAAAAAAACgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAACwAAAAACBgAAAAAABgAAAAAABgAAAAAACwAAAAACgQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: GgAAAAAABQAAAAAAGgAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAABQAAAAAAGgAAAAAABQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAGgAAAAAABQAAAAAAGgAAAAAABQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAGgAAAAAABQAAAAAAGgAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAFAAAAAAAgQAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAFAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAMgAAAAACgQAAAAAABAAAAAAABAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAMwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAGAAAAAAAgQAAAAAABwAAAAABgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAABgQAAAAAABwAAAAAAFAAAAAAA + tiles: GgAAAAAABQAAAAAAGgAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAABQAAAAAAGgAAAAAABQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAGgAAAAAABQAAAAAAGgAAAAAABQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAGgAAAAAABQAAAAAAGgAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAPgAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAKwAAAAAAKwAAAAAAPgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAKwAAAAAAKwAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAGAAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABgQAAAAAABwAAAAAABwAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: FAAAAAAAFAAAAAAABwAAAAACBwAAAAACBwAAAAAAFAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAABwAAAAABgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAABgQAAAAAABwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAgQAAAAAABwAAAAABBwAAAAABFAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAAgQAAAAAABAAAAAAAWQAAAAAAWAAAAAAAWQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAABgQAAAAAABAAAAAAAWAAAAAAAWAAAAAAAWQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAABwAAAAABBwAAAAAABwAAAAAAgQAAAAAABAAAAAAAWQAAAAAAWAAAAAAAWAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAgQAAAAAABwAAAAABBwAAAAABBwAAAAAAgQAAAAAABAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABAAAAAAAWQAAAAAAWAAAAAAAWQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAWQAAAAAAWAAAAAAAWAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAWQAAAAAAWAAAAAAAWAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAFAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACKAAAAAACKAAAAAADKAAAAAABgQAAAAAAgQAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADKAAAAAAAKAAAAAACKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACKAAAAAAAKAAAAAAAKAAAAAACgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADKAAAAAADKAAAAAADKAAAAAABKAAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAKAAAAAADKAAAAAADKAAAAAACKAAAAAACgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAFAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAACKAAAAAACKAAAAAADKAAAAAABgQAAAAAAgQAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADKAAAAAAAKAAAAAACKAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAAgQAAAAAAKAAAAAACKAAAAAAAKAAAAAAAKAAAAAACgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAADKAAAAAADKAAAAAADKAAAAAABKAAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAAgQAAAAAAKAAAAAADKAAAAAADKAAAAAACKAAAAAACgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-3: ind: 2,-3 @@ -226,63 +239,63 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGAAAAAAAFQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAFAAAAAAAPQAAAAABGAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGAAAAAAAFQAAAAADFAAAAAAAPQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAFAAAAAAABwAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACFAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAACgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGAAAAAAAFQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPQAAAAAAFAAAAAAAPQAAAAABGAAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGAAAAAAAFQAAAAADFAAAAAAAPQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgQAAAAAABAAAAAAAWAAAAAAAWAAAAAAAWQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: BwAAAAAABwAAAAABFAAAAAAAgQAAAAAABwAAAAACFAAAAAAAFAAAAAAABwAAAAACBwAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACgQAAAAAAFAAAAAAAFAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAFAAAAAAABwAAAAACBwAAAAAAgQAAAAAABwAAAAAABwAAAAABFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAABBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAABKgAAAAACFAAAAAAABwAAAAABMwAAAAAAKgAAAAADKgAAAAACgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABwAAAAACBwAAAAACBwAAAAAAgQAAAAAAgQAAAAAAKgAAAAABFAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAAKgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAMwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAABwAAAAAAMwAAAAAAFAAAAAAAFAAAAAAABwAAAAADBwAAAAABBwAAAAADgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABwAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAKgAAAAACBwAAAAABFAAAAAAAKgAAAAABBwAAAAADFAAAAAAAKgAAAAABgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAFAAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAADBwAAAAADBwAAAAACFAAAAAAAKgAAAAABKgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAKwAAAAAAgQAAAAAABwAAAAACFAAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAKwAAAAAAFAAAAAAABwAAAAADFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAgQAAAAAA + tiles: DAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAADAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABRQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADCwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACgAAAAAADAAAAAAADAAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAKwAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAKwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAABAAAAAAA version: 6 0,2: ind: 0,2 - tiles: MwAAAAAALAAAAAAALAAAAAAABwAAAAAAMwAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAABwAAAAAAMwAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAAFAAAAAAALAAAAAAAFAAAAAAABwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAMwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABwAAAAADBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABwAAAAADBwAAAAACgQAAAAAAgQAAAAAAMwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAHwAAAAAABwAAAAADBwAAAAAABwAAAAACgQAAAAAAMwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAMwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAADgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAACgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: LAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAALAAAAAAALAAAAAAABwAAAAAABwAAAAACBwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: BwAAAAADBwAAAAACBwAAAAACgQAAAAAABwAAAAADBwAAAAADFAAAAAAABwAAAAACFAAAAAAAgQAAAAAABwAAAAABFAAAAAAAFAAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAABFAAAAAAABwAAAAADBwAAAAACBwAAAAACFAAAAAAAFAAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAABBwAAAAAAFAAAAAAABwAAAAABBwAAAAADBwAAAAACFAAAAAAAFAAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADBwAAAAACgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAABwAAAAACgQAAAAAABwAAAAAABwAAAAADFAAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAABgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAADMwAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAADFAAAAAAAFAAAAAAABwAAAAADgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAADFAAAAAAABwAAAAABLQAAAAAALQAAAAAAgQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAAFAAAAAAABwAAAAACLgAAAAAALQAAAAAALgAAAAAALQAAAAAALgAAAAAAMwAAAAAALgAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAACFAAAAAAABwAAAAABBwAAAAABLgAAAAAALgAAAAAAgQAAAAAAgQAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: BwAAAAADBwAAAAACBwAAAAACCwAAAAAABwAAAAADBwAAAAADFAAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADCwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACCwAAAAAABwAAAAAABwAAAAAABwAAAAACRQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABCwAAAAAABwAAAAACgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAABwAAAAAACwAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAABwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAABwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAABBwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: gQAAAAAAKwAAAAAAKwAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOwAAAAAANAAAAAAAOwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOwAAAAAANAAAAAAAOwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAANAAAAAAANAAAAAAANAAAAAAAgQAAAAAABAAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAQQAAAAAAQQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAQQAAAAAAQQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAQQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAKwAAAAAAKwAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOwAAAAAANAAAAAAAOwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOwAAAAAANAAAAAAAOwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAANAAAAAAANAAAAAAANAAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAABwAAAAABBwAAAAAABwAAAAACgQAAAAAAgQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAABwAAAAACgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAACBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAACFAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACgAAAAABCgAAAAADNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAADgQAAAAAACgAAAAABFAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAACgQAAAAAACgAAAAAAgQAAAAAACgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAADFAAAAAAABwAAAAACFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAACFAAAAAAABwAAAAACFAAAAAAAFAAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAFAAAAAAAFAAAAAAABwAAAAAAgQAAAAAABwAAAAABgQAAAAAAFAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAACgQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAABgQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAACgAAAAABCgAAAAADCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAADgQAAAAAACgAAAAABCgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAACgQAAAAAACgAAAAAACgAAAAAACgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAABwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADCwAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAAFAAAAAAABwAAAAACBwAAAAADgQAAAAAAgQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAADBwAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAADBwAAAAACFAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADBwAAAAADFAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAHwAAAAAA + tiles: AAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAACBwAAAAADgQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAAABwAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADCwAAAAAABwAAAAAABwAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAACBwAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADCwAAAAAABwAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAABgQAAAAAAGwAAAAAAGwAAAAAA version: 6 -3,2: ind: -3,2 - tiles: gQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAMwAAAAAAgQAAAAAABwAAAAAAFAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACMwAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAABwAAAAADgQAAAAAABwAAAAACBwAAAAADFAAAAAAABwAAAAABFAAAAAAABwAAAAAAMwAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAMwAAAAAAFAAAAAAAFAAAAAAABwAAAAAABwAAAAABBwAAAAAAFAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABwAAAAAANQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAANgAAAAABNQAAAAAAgQAAAAAANQAAAAAANQAAAAAAgQAAAAAABwAAAAADFAAAAAAAFAAAAAAABwAAAAAAMwAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAEMwAAAAAAgQAAAAAABwAAAAACBwAAAAACBwAAAAAAFAAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAACNQAAAAAANwAAAAAAgQAAAAAAgQAAAAAABwAAAAABFAAAAAAABwAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAABwAAAAAAFAAAAAAAFAAAAAAABwAAAAACBwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAMgAAAAABgQAAAAAAMwAAAAAABwAAAAACNQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAABwAAAAABgQAAAAAAFAAAAAAAFAAAAAAAGAAAAAAAgQAAAAAANQAAAAAAFAAAAAAAgQAAAAAAMgAAAAACgQAAAAAADgAAAAAAMwAAAAAANgAAAAADgQAAAAAAFAAAAAAAgQAAAAAABwAAAAACBwAAAAABBwAAAAADgQAAAAAAgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAFAAAAAAAgQAAAAAANQAAAAAAFAAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAMwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAABwAAAAADBwAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAMwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAOAAAAAAACwAAAAAAOAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAOAAAAAAACwAAAAAAOAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAOAAAAAAACwAAAAAAOAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAAEAAAAAAARQAAAAAARQAAAAAAgQAAAAAAOAAAAAAACwAAAAAAOAAAAAAABwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAARQAAAAAAEAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAAEAAAAAAARQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAARQAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAAEAAAAAAARQAAAAAARQAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAACBwAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAA version: 6 -2,3: ind: -2,3 - tiles: BAAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAABgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAANgAAAAABNgAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAANgAAAAABNgAAAAAABwAAAAADNgAAAAABNgAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAABBwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAANgAAAAAABwAAAAAANwAAAAAANwAAAAAABwAAAAABBwAAAAACBwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAABwAAAAADNgAAAAAAgQAAAAAAgQAAAAAABwAAAAABNwAAAAAABwAAAAACgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAA + tiles: BAAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAABgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgQAAAAAAgQAAAAAABwAAAAABNwAAAAAABwAAAAACgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAABwAAAAADgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAABFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAABwAAAAABBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAACFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACFAAAAAAABwAAAAADgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABFAAAAAAABwAAAAACgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAgQAAAAAABwAAAAAABwAAAAACFAAAAAAAgQAAAAAABwAAAAACBwAAAAADgQAAAAAAgQAAAAAABwAAAAABFAAAAAAAFAAAAAAAgQAAAAAABwAAAAADBwAAAAABBwAAAAABFAAAAAAAFAAAAAAAgQAAAAAABwAAAAADBwAAAAAAgQAAAAAAFAAAAAAABwAAAAACBwAAAAAABwAAAAADFAAAAAAAgQAAAAAABwAAAAABgQAAAAAABwAAAAABBwAAAAACFAAAAAAAFAAAAAAABwAAAAABBwAAAAADBwAAAAACgQAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAABBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAAgQAAAAAABwAAAAABgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAADgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAADgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABCwAAAAAABwAAAAACgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACRQAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAARQAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABRQAAAAAARQAAAAAARQAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADRQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAAgQAAAAAABwAAAAABgQAAAAAAgQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAACBwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: gQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAAFAAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAAFAAAAAAAgQAAAAAABwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAFAAAAAAABwAAAAADBwAAAAADFAAAAAAAgQAAAAAAgQAAAAAANQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAACBwAAAAACFAAAAAAABwAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAFAAAAAAANQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAANQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAMwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAA + tiles: RQAAAAAARQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAARQAAAAAARQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABgQAAAAAAgQAAAAAAKgAAAAAARQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAAgQAAAAAAgQAAAAAAKgAAAAAARQAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAKgAAAAAAUAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,4: ind: -2,4 - tiles: gQAAAAAAgQAAAAAANwAAAAAANwAAAAABBwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,3: ind: -3,3 - tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAA + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAABwAAAAAA version: 6 -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 @@ -290,19 +303,19 @@ entities: version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAABBwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAFAAAAAAABwAAAAABBwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAAABwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAABFAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADBwAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAABBwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAADgQAAAAAAFAAAAAAAgQAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAADFAAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAFAAAAAAAFAAAAAAABwAAAAACBwAAAAACBwAAAAAAFAAAAAAAFAAAAAAABwAAAAACBwAAAAABFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAABCwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABCwAAAAAABwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAADCwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAARQAAAAAACwAAAAAARQAAAAAAgQAAAAAARQAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAARQAAAAAACgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAARQAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABRQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAAFAAAAAAABwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAAFAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADBwAAAAADFAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFAAAAAAABwAAAAACBwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADFAAAAAAABwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACFAAAAAAABwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAADCwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACCwAAAAAABwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAMwAAAAAAMwAAAAAAPAAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAPAAAAAABMwAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAMwAAAAAAPAAAAAACPAAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAPgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAPAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAMwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAMwAAAAAAPAAAAAAAPAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAMwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAMwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPgAAAAAAPgAAAAAAMwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADgQAAAAAAgQAAAAAAMwAAAAAABwAAAAABgQAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAACMwAAAAAABwAAAAADgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAABBwAAAAADgQAAAAAABwAAAAADgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAPgAAAAAAPgAAAAABPgAAAAACPgAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPgAAAAADPgAAAAACPgAAAAADPgAAAAACPgAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAPgAAAAACPgAAAAABPgAAAAABPgAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAAgQAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAAgQAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADgAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAPgAAAAAAPgAAAAABPgAAAAACPgAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAPgAAAAADPgAAAAACPgAAAAADPgAAAAACPgAAAAAAgQAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAPgAAAAACPgAAAAABPgAAAAABPgAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -322,7 +335,7 @@ entities: version: 6 0,3: ind: 0,3 - tiles: gQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 @@ -336,6 +349,10 @@ entities: ind: -1,-4 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + 2,2: + ind: 2,2 + tiles: gQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -356,2929 +373,2836 @@ entities: chunkCollection: version: 2 nodes: - - node: - color: '#FFFFFFFF' - id: Basalt3 - decals: - 7881: 51.390625,-5.984375 - - node: - color: '#FFFFFFFF' - id: Basalt5 - decals: - 7879: 52,-5.953125 - 7880: 50.984375,-6.078125 - node: color: '#FFFFFFFF' id: Basalt7 decals: 7878: 52.71875,-6.109375 - - node: - color: '#FFFFFFFF' - id: Basalt8 - decals: - 7882: 50.96875,-5.546875 - node: color: '#FFFFFFFF' id: Bot decals: - 1010: -23,-20 3152: -19,-43 3154: -21,-43 3156: -20,-45 - - node: - color: '#9C2020FF' - id: BotRightGreyscale - decals: - 4056: 32,-9 - 4057: 32,-10 - 4058: 32,-11 - 4059: 32,-12 - 4060: 32,-13 - node: color: '#FFFFFFFF' id: Box decals: - 1009: -23,-20 3155: -20,-45 + - node: + color: '#16212EFF' + id: BrickBoxOverlay + decals: + 9474: -35,-15 + 9477: -35,-19 + - node: + color: '#1A394AFF' + id: BrickBoxOverlay + decals: + 9473: -37,-15 + 9482: -37,-19 - node: color: '#334E6DFF' id: BrickBoxOverlay decals: - 3496: 10,-8 + 9848: 10,-8 + 9849: 10,-7 - node: - color: '#37789BFF' + color: '#446326FF' id: BrickBoxOverlay decals: - 3498: 8,-9 + 9471: -34,-13 + 9479: -34,-17 - node: - color: '#4B709CFF' + color: '#4A3519FF' id: BrickBoxOverlay decals: - 22: -35,-15 - 31: -35,-19 + 9468: -38,-13 + 9480: -38,-17 - node: - color: '#639137FF' + color: '#4C2A5EFF' id: BrickBoxOverlay decals: - 3502: 6,-9 + 9472: -38,-15 - node: - color: '#765428FF' + color: '#52B4E9FF' id: BrickBoxOverlay decals: - 3501: 6,-7 + 9850: 8,-7 - node: - color: '#96DAFFFF' + color: '#571212FF' id: BrickBoxOverlay decals: - 21: -37,-15 - 25: -37,-19 + 9469: -37,-13 + 9483: -37,-17 + 11158: 29,-12 - node: - color: '#9C2020FF' + color: '#663C0DFF' id: BrickBoxOverlay decals: - 3497: 8,-7 + 9475: -34,-15 + 9476: -34,-19 - node: - color: '#AE6716FF' + color: '#724276FF' + id: BrickBoxOverlay + decals: + 9481: -38,-19 + - node: + color: '#808080FF' id: BrickBoxOverlay decals: - 3499: 7,-9 - 4234: -22,-33 + 9470: -35,-13 + 9478: -35,-17 - node: - color: '#BE6BC3FF' + color: '#96DAFFFF' id: BrickBoxOverlay decals: - 3500: 7,-7 + 10892: -22,21 - node: - color: '#C6FF91FF' + color: '#9C2020FF' id: BrickBoxOverlay decals: - 19: -34,-13 - 30: -34,-17 + 11141: 32,-13 + 11142: 32,-12 + 11143: 32,-11 + 11144: 32,-10 + 11145: 32,-9 + 11146: 32,-8 + 11157: 29,-11 - node: - color: '#D69949FF' + color: '#9FED58FF' id: BrickBoxOverlay decals: - 16: -38,-13 - 27: -38,-17 + 9855: 8,-9 + 10247: 11,26 - node: - color: '#E6E6E6FF' + color: '#BC863FFF' id: BrickBoxOverlay decals: - 18: -35,-13 - 29: -35,-17 + 9854: 7,-9 - node: - color: '#FBB2FFFF' + color: '#DE3A3AFF' id: BrickBoxOverlay decals: - 20: -38,-15 - 26: -38,-19 + 9851: 7,-7 - node: - color: '#FF5C5CFF' + color: '#F98AFFFF' id: BrickBoxOverlay decals: - 17: -37,-13 - 28: -37,-17 + 9853: 6,-9 - node: - color: '#FFA647FF' + color: '#FF9821FF' id: BrickBoxOverlay decals: - 23: -34,-15 - 24: -34,-19 + 9852: 6,-7 - node: color: '#334E6DFF' id: BrickCornerOverlayNE decals: - 3482: 6,0 - 3483: 7,-1 - 3484: 8,-2 + 9813: 13,-3 + 9820: 8,-2 + 9821: 7,-1 - node: - color: '#52B4E9FF' + color: '#639137FF' id: BrickCornerOverlayNE decals: - 4400: -12,15 - 4412: -7,15 - 4428: -9,22 + 11202: 3,17 - node: color: '#765428FF' id: BrickCornerOverlayNE decals: - 4269: 26,6 4295: 39,2 - 4301: 34,8 - 4380: 38,8 - node: - color: '#774194FF' + color: '#96DAFFFF' id: BrickCornerOverlayNE decals: - 4344: 35,12 + 8493: -9,12 + 8494: -9,15 + 8495: -6,15 + 8496: -6,12 + 9092: -9,25 - node: - color: '#AE6716FF' + color: '#9C2020FF' + id: BrickCornerOverlayNE + decals: + 10995: 34,-24 + - node: + color: '#BC863FFF' + id: BrickCornerOverlayNE + decals: + 8731: 34,7 + - node: + color: '#FBB2FFFF' id: BrickCornerOverlayNE decals: - 4116: -21,-20 - 4180: -22,-35 - 4226: -34,-22 - 4227: -36,-21 + 8949: -18,-9 + 9015: -13,-9 - node: - color: '#BE6BC3FF' + color: '#FF9821FF' id: BrickCornerOverlayNE decals: - 8092: -17,-14 + 9277: -22,-35 + 9288: -24,-41 + 9353: -21,-20 + 9508: -34,-22 + 9509: -36,-21 - node: color: '#334E6DFF' id: BrickCornerOverlayNW decals: - 3454: 12,-2 - 3477: 2,-2 - 3480: 4,-1 - 3481: 5,0 + 9824: 4,-1 + 9825: 2,-2 - node: - color: '#52B4E9FF' + color: '#43999EFF' id: BrickCornerOverlayNW decals: - 4405: -16,15 + 10863: -21,10 - node: - color: '#765428FF' + color: '#639137FF' id: BrickCornerOverlayNW decals: - 4267: 23,6 - 4312: 28,-1 - 4377: 36,8 + 11203: 0,17 - node: - color: '#774194FF' + color: '#96DAFFFF' id: BrickCornerOverlayNW decals: - 4340: 29,11 - 4343: 32,12 + 8489: -10,15 + 8490: -7,15 + 8491: -7,12 + 8492: -10,12 - node: color: '#9C2020FF' id: BrickCornerOverlayNW decals: - 4023: 27,-23 + 10994: 30,-24 - node: - color: '#AE6716FF' + color: '#BC863FFF' id: BrickCornerOverlayNW decals: - 4156: -26,-37 + 10933: 30,7 + 10937: 29,4 - node: - color: '#BE6BC3FF' + color: '#FBB2FFFF' id: BrickCornerOverlayNW decals: - 8091: -19,-14 - 8096: -16,-8 - 8170: -18,-15 + 9014: -19,-14 + 11169: -19,2 - node: - color: '#334E6DFF' - id: BrickCornerOverlaySE + color: '#FF9821FF' + id: BrickCornerOverlayNW decals: - 3470: 3,-6 + 9297: -26,-37 - node: - color: '#765428FF' + color: '#334E6DFF' id: BrickCornerOverlaySE decals: - 4265: 26,1 - 4291: 39,-3 + 10194: 39,-5 - node: - color: '#774194FF' + color: '#43999EFF' id: BrickCornerOverlaySE decals: - 4357: 32,11 + 10864: -20,10 - node: - color: '#9C2020FF' + color: '#639137FF' id: BrickCornerOverlaySE decals: - 4014: 34,-26 + 11205: 3,15 - node: - color: '#AE6716FF' + color: '#96DAFFFF' id: BrickCornerOverlaySE decals: - 4115: -21,-24 - 4240: 0,-23 - 8163: -17,-16 - 8171: -18,-15 + 8480: -18,17 + 8481: -9,14 + 8482: -6,11 + 8483: -9,11 + 8484: -6,14 - node: - color: '#334E6DFF' - id: BrickCornerOverlaySW + color: '#9C2020FF' + id: BrickCornerOverlaySE decals: - 3471: 2,-6 + 10996: 34,-25 - node: - color: '#52B4E9FF' - id: BrickCornerOverlaySW + color: '#BC863FFF' + id: BrickCornerOverlaySE decals: - 4392: -21,10 - 4393: -18,11 - 4408: -9,12 - 4436: -10,22 + 8713: 29,-2 + 8730: 34,4 - node: - zIndex: -1 - color: '#765428FF' - id: BrickCornerOverlaySW + color: '#FF9821FF' + id: BrickCornerOverlaySE decals: - 7629: 28,-2 + 9361: -21,-24 + 9381: -17,-16 - node: - color: '#765428FF' + color: '#639137FF' id: BrickCornerOverlaySW decals: - 4266: 23,1 - 4284: 31,-3 - 4376: 36,4 + 11206: 0,15 - node: - color: '#774194FF' + color: '#96DAFFFF' id: BrickCornerOverlaySW decals: - 4339: 29,10 - 4354: 35,11 + 8485: -10,14 + 8486: -10,11 + 8487: -7,11 + 8488: -7,14 + 9089: -10,22 - node: color: '#9C2020FF' id: BrickCornerOverlaySW decals: - 4020: 27,-26 + 10993: 30,-25 - node: - color: '#AE6716FF' + color: '#BC863FFF' id: BrickCornerOverlaySW decals: - 4118: -27,-24 - 4153: -27,-34 - 8162: -19,-16 + 10934: 30,4 - node: - color: '#BE6BC3FF' + color: '#FF9821FF' id: BrickCornerOverlaySW decals: - 8095: -16,-12 + 9340: -27,-34 + 9354: -27,-24 - node: - zIndex: -1 - color: '#52B4E9FF' - id: BrickEndOverlayE - decals: - 7444: -6,13 - - node: - zIndex: 1 - color: '#52B4E9FF' - id: BrickEndOverlayE - decals: - 7445: -6,13 - 7446: -6,13 - 7534: -9,25 - - node: - color: '#765428FF' - id: BrickEndOverlayE - decals: - 4281: 26,-2 - - node: - color: '#774194FF' - id: BrickEndOverlayE - decals: - 4350: 39,11 - - node: - color: '#9C2020FF' - id: BrickEndOverlayE - decals: - 4024: 47,-14 - 4052: 32,-14 - - node: - color: '#AE6716FF' - id: BrickEndOverlayE - decals: - 4163: -23,-41 - 4184: -24,-33 - 4236: 1,-20 - 4237: 1,-22 - - node: - zIndex: 1 color: '#334E6DFF' id: BrickEndOverlayN decals: - 7285: 6,-20 + 10930: 38,-5 - node: - color: '#765428FF' + color: '#96DAFFFF' id: BrickEndOverlayN decals: - 4365: 42,7 + 10921: -26,8 - node: color: '#9C2020FF' id: BrickEndOverlayN decals: - 3980: 31,-8 - 4010: 34,-23 + 11015: 27,-23 + 11151: 27,-11 - node: - zIndex: 1 - color: '#334E6DFF' - id: BrickEndOverlayS + color: '#FBB2FFFF' + id: BrickEndOverlayN decals: - 7286: 6,-21 + 9059: -24,-13 - node: - color: '#52B4E9FF' + color: '#334E6DFF' id: BrickEndOverlayS decals: - 4415: -7,11 + 10192: 38,-7 - node: color: '#639137FF' id: BrickEndOverlayS decals: - 3525: 14,22 + 11204: 2,14 - node: - color: '#765428FF' + color: '#96DAFFFF' id: BrickEndOverlayS decals: - 4366: 42,5 + 10922: -26,10 - node: - color: '#AE6716FF' + color: '#9C2020FF' id: BrickEndOverlayS decals: - 4176: -22,-39 - 4241: -1,-24 + 11152: 27,-13 - node: - color: '#52B4E9FF' - id: BrickEndOverlayW + color: '#FBB2FFFF' + id: BrickEndOverlayS decals: - 4407: -10,13 - 4434: -11,25 - 4441: -10,17 + 9016: -13,-12 - node: - color: '#765428FF' + color: '#334E6DFF' id: BrickEndOverlayW decals: - 4369: 41,6 + 10928: 35,-6 - node: - color: '#9C2020FF' + color: '#96DAFFFF' id: BrickEndOverlayW decals: - 4025: 34,-14 + 8518: -10,17 - node: - color: '#AE6716FF' + color: '#BC863FFF' id: BrickEndOverlayW decals: - 4242: -2,-23 + 8735: 28,6 - node: - color: '#334E6DFF' - id: BrickLineOverlayE + color: '#FBB2FFFF' + id: BrickEndOverlayW decals: - 3438: 13,-6 - 3439: 13,-7 - 3440: 13,-4 - 3441: 13,-5 - 3442: 13,-8 - 3452: 13,-3 - 3461: 8,-4 - 3462: 8,-5 + 9060: -26,-14 - node: - zIndex: 1 color: '#334E6DFF' id: BrickLineOverlayE decals: - 7209: 3,-4 + 9791: 13,-4 + 9792: 13,-5 + 9793: 13,-6 + 9794: 13,-7 + 9795: 13,-8 + 9796: 13,-9 + 9797: 13,-10 + 9798: 13,-11 + 9799: 13,-12 + 9800: 13,-13 + 9801: 13,-14 + 9831: 2,-4 + 9832: 2,-5 + 9833: 2,-6 + 9834: 2,-6 + 9835: 8,-4 + 9836: 8,-5 + 10195: 38,-6 + 10197: 39,-4 - node: - color: '#52B4E9FF' + color: '#43999EFF' id: BrickLineOverlayE decals: - 4397: -12,12 - 4398: -12,13 - 4399: -12,14 - 4411: -7,14 - 4421: -9,16 - 4422: -9,17 - 4423: -9,18 - 4424: -9,19 - 4425: -9,20 - 4426: -9,21 - 4429: -10,23 - 4456: -20,16 - 4457: -20,15 - 4458: -20,14 - 4459: -20,13 - 4460: -20,12 + 10855: -21,9 + 10856: -21,8 + 10857: -21,7 + 10858: -21,6 - node: color: '#639137FF' id: BrickLineOverlayE decals: - 3530: 14,23 - 3531: 14,24 - 3532: 14,25 + 11208: 3,16 - node: - color: '#765428FF' + color: '#96DAFFFF' id: BrickLineOverlayE decals: - 4262: 26,5 - 4263: 26,4 - 4264: 26,3 - 4292: 39,-2 - 4293: 39,-1 - 4294: 39,0 - 4297: 34,3 - 4298: 34,4 - 4299: 34,5 - 4300: 34,6 - 4368: 42,6 - 4381: 38,7 - 4382: 38,6 + 8421: -15,15 + 8422: -15,14 + 8423: -15,13 + 8424: -15,12 + 8441: -20,14 + 8442: -20,15 + 8443: -20,16 + 8444: -18,18 + 8445: -18,19 + 8454: -20,12 + 8504: -9,21 + 8505: -9,20 + 8506: -9,19 + 8507: -9,19 + 8508: -9,18 + 8509: -9,17 + 8510: -9,16 + 9086: -9,24 + 9087: -9,23 + 9088: -9,22 + 10854: -20,11 + 10913: -28,10 + 10914: -28,9 + 10915: -28,8 + 10926: -27,11 - node: - color: '#774194FF' + color: '#9C2020FF' id: BrickLineOverlayE decals: - 4358: 30,10 + 10997: 34,-26 + 10998: 29,-23 + 10999: 29,-24 + 11000: 29,-22 + 11006: 34,-27 + 11014: 27,-24 + 11153: 27,-12 - node: - color: '#9C2020FF' + color: '#9FED58FF' id: BrickLineOverlayE decals: - 3981: 31,-9 - 3989: 29,-15 - 3990: 29,-16 - 4001: 29,-19 - 4002: 29,-22 - 4003: 29,-23 - 4012: 34,-24 - 4013: 34,-25 - 4053: 31,-12 - 4054: 31,-11 - 4055: 31,-10 - 4069: 21,-10 - 4070: 21,-9 + 10242: 11,30 + 10243: 11,29 + 10244: 11,28 + 10245: 11,27 + 10284: 14,26 + 10285: 14,25 + 10286: 14,24 + 10287: 14,23 + 10288: 14,22 - node: color: '#AE6716FF' id: BrickLineOverlayE decals: 4096: -17,-17 - 4097: -17,-18 - 4098: -17,-19 - 4099: -17,-21 - 4100: -17,-22 - 4101: -17,-23 - 4102: -17,-24 - 4111: -21,-22 - 4112: -21,-21 - 4114: -21,-23 - 4128: -25,-25 - 4129: -25,-26 - 4130: -25,-27 - 4131: -25,-28 - 4132: -25,-29 - 4134: -27,-27 - 4135: -27,-27 - 4136: -27,-28 - 4143: -27,-29 - 4144: -27,-30 - 4145: -27,-31 - 4146: -27,-32 - 4165: -25,-40 - 4166: -25,-39 - 4167: -25,-38 - 4168: -25,-37 - 4169: -25,-36 - 4170: -25,-36 - 4177: -22,-38 - 4178: -22,-37 - 4179: -22,-36 - 4183: -25,-34 - 4185: -25,-32 - 4186: -25,-31 - 4187: -25,-30 - 4188: -25,-29 - 4235: -1,-19 - 4247: -1,-21 4256: -1,-18 - node: - color: '#BE6BC3FF' + color: '#BC863FFF' id: BrickLineOverlayE decals: - 8111: -18,2 - 8112: -18,1 - 8113: -18,0 - 8114: -18,-1 - 8115: -18,-4 - 8116: -18,-5 - 8117: -18,-6 - 8118: -18,-8 - 8119: -18,-9 - 8120: -18,-9 - 8121: -18,-10 - 8122: -18,-11 - 8123: -18,-12 - 8124: -18,-13 + 8585: 30,2 + 8586: 30,1 + 8587: 30,-1 + 8588: 30,-2 + 8589: 34,-2 + 8590: 34,-1 + 8591: 34,1 + 8592: 34,2 + 8714: 29,-1 + 8715: 29,0 + 8716: 29,0 + 8717: 29,1 + 8718: 29,1 + 8719: 29,2 + 8720: 29,3 + 8725: 34,5 + 8726: 34,6 - node: - zIndex: -1 - color: '#FF9821FF' + color: '#FBB2FFFF' id: BrickLineOverlayE decals: - 7359: -27,-25 + 8946: -18,-12 + 8947: -18,-11 + 8948: -18,-10 + 8950: -19,-8 + 8951: -19,-7 + 8952: -19,-6 + 8953: -19,-5 + 8954: -19,-3 + 8955: -19,-2 + 8956: -19,-1 + 8957: -19,0 + 8958: -19,1 + 9009: -18,-13 + 9017: -13,-11 + 9018: -13,-11 + 9019: -13,-10 - node: - zIndex: 1 color: '#FF9821FF' id: BrickLineOverlayE decals: - 7360: -27,-25 + 9269: -22,-36 + 9270: -22,-37 + 9271: -22,-38 + 9272: -22,-39 + 9282: -25,-36 + 9283: -25,-37 + 9284: -25,-38 + 9285: -25,-39 + 9286: -25,-40 + 9287: -24,-42 + 9313: -25,-26 + 9314: -25,-25 + 9315: -25,-27 + 9316: -25,-28 + 9317: -25,-29 + 9318: -27,-27 + 9319: -27,-28 + 9320: -27,-29 + 9321: -27,-29 + 9322: -27,-30 + 9323: -27,-31 + 9331: -27,-29 + 9332: -27,-30 + 9333: -27,-31 + 9334: -27,-32 + 9342: -25,-34 + 9343: -25,-33 + 9344: -25,-32 + 9345: -25,-31 + 9346: -25,-30 + 9347: -25,-29 + 9358: -21,-21 + 9359: -21,-22 + 9360: -21,-23 + 9373: -17,-17 + 9374: -17,-18 + 9375: -17,-19 + 9376: -17,-21 + 9377: -17,-22 + 9378: -17,-23 + 9379: -17,-24 + 9380: -17,-15 - node: color: '#334E6DFF' id: BrickLineOverlayN decals: - 3448: 12,-11 - 3449: 13,-11 - 3458: 9,-3 - 3459: 10,-3 - 3460: 11,-3 - 3475: 3,-2 - - node: - color: '#52B4E9FF' - id: BrickLineOverlayN - decals: - 4401: -13,15 - 4402: -14,15 - 4403: -15,15 - 4413: -8,15 - 4453: -20,17 - 4454: -19,17 - 4468: -28,13 - 4469: -27,13 - 4470: -26,13 - 4471: -25,13 - 4472: -24,13 - 4473: -23,13 - 4476: -29,13 - 4479: -22,13 - - node: - zIndex: 1 - color: '#52B4E9FF' - id: BrickLineOverlayN - decals: - 7535: -10,25 + 9814: 9,-3 + 9815: 10,-3 + 9816: 11,-3 + 9817: 12,-3 + 9822: 5,-1 + 9823: 6,-1 + 9826: 3,-2 + 10188: 36,-6 + 10189: 37,-6 - node: color: '#639137FF' id: BrickLineOverlayN decals: - 3533: 14,21 - 3561: 14,21 + 11200: 1,17 + 11201: 2,17 - node: color: '#765428FF' id: BrickLineOverlayN decals: - 4270: 24,6 - 4273: 23,-2 - 4274: 24,-2 4275: 22,-2 - 4296: 38,2 - 4302: 33,8 - 4303: 33,8 - 4304: 32,8 - 4305: 31,8 - 4378: 37,8 - node: - color: '#774194FF' + color: '#96DAFFFF' id: BrickLineOverlayN decals: - 4341: 30,11 - 4342: 31,11 - 4345: 33,12 - 4346: 34,12 - 4347: 36,11 - 4348: 37,11 - 4349: 38,11 + 8402: -18,13 + 8403: -17,13 + 8404: -16,13 + 8405: -15,13 + 8406: -14,13 + 8407: -13,13 + 8408: -12,13 + 8425: -18,11 + 8426: -17,11 + 8427: -16,11 + 8428: -15,11 + 8429: -14,11 + 8430: -13,11 + 8431: -13,11 + 8432: -12,11 + 8435: -17,11 + 8436: -14,11 + 8437: -19,13 + 8438: -11,13 + 8465: -29,13 + 8466: -28,13 + 8467: -27,13 + 8468: -26,13 + 8469: -25,13 + 8470: -24,13 + 8471: -23,13 + 8472: -22,13 + 8473: -21,13 + 8477: -21,17 + 8478: -19,17 + 8479: -20,17 + 8499: -11,25 + 8520: -12,25 + 9093: -10,25 + 10919: -25,8 + 10920: -24,8 - node: color: '#9C2020FF' id: BrickLineOverlayN decals: - 3978: 27,-8 - 3979: 30,-9 - 4006: 30,-24 - 4007: 31,-24 - 4008: 32,-24 - 4009: 33,-24 - 4034: 45,-14 - 4035: 44,-14 - 4036: 43,-14 - 4037: 43,-14 - 4038: 40,-14 - 4039: 39,-14 - 4040: 38,-14 - 4041: 35,-14 - 4042: 52,-8 - 4045: 53,-8 + 10981: 26,-25 + 10982: 25,-25 + 10983: 27,-25 + 10984: 28,-25 + 10986: 29,-25 + 11010: 31,-24 + 11011: 32,-24 + 11012: 33,-24 - node: - color: '#AE6716FF' + color: '#9FED58FF' id: BrickLineOverlayN decals: - 4076: -16,-16 - 4077: -15,-16 - 4078: -13,-16 - 4079: -12,-16 - 4109: -20,-22 - 4110: -20,-24 - 4117: -22,-20 - 4147: -26,-33 - 4164: -24,-41 - 4181: -23,-35 - 4182: -24,-35 - 4213: -38,-21 - 4214: -37,-21 - 4218: -32,-23 - 4219: -33,-23 - 4221: -30,-23 - 4222: -29,-23 - 4223: -28,-23 - 4224: -33,-23 - 4228: -35,-22 - 4238: 0,-20 - 4239: 0,-22 + 10253: 9,25 + 10254: 12,25 + 10263: 8,24 + 10264: 9,24 + 10265: 10,24 + 10266: 12,24 + 10267: 11,24 + 10268: 13,24 - node: - color: '#BE6BC3FF' + color: '#BC863FFF' id: BrickLineOverlayN decals: - 4080: -15,-14 - 4081: -16,-14 - 4082: -13,-14 - 4083: -12,-14 - 8131: -15,-8 - 8132: -14,-8 - 8133: -13,-8 - 8134: -12,-8 - 8161: -18,-14 - 8173: -18,-15 + 8601: 31,-3 + 8602: 32,-3 + 8603: 33,-3 + 8604: 36,-3 + 8605: 35,-3 + 8606: 37,-3 + 8608: 31,0 + 8609: 32,0 + 8610: 33,0 + 8611: 36,0 + 8612: 35,0 + 8613: 37,0 + 8706: 23,-2 + 8707: 24,-2 + 8708: 22,-2 + 8709: 25,-2 + 8710: 26,-2 + 8711: 27,-2 + 8712: 28,-2 + 8727: 33,7 + 8728: 32,7 + 8729: 31,7 + 8737: 29,6 - node: - color: '#334E6DFF' - id: BrickLineOverlayS + color: '#FBB2FFFF' + id: BrickLineOverlayN decals: - 3455: 11,-3 - 3456: 10,-3 - 3457: 9,-3 - 3465: 7,-3 - 3466: 6,-3 - 3467: 5,-3 + 8971: -16,-5 + 8972: -15,-5 + 8973: -14,-5 + 8974: -13,-5 + 8975: -12,-5 + 8976: -17,-4 + 8977: -18,-4 + 8978: -17,-9 + 8979: -17,-11 + 8980: -16,-11 + 8981: -15,-11 + 8982: -14,-11 + 8983: -17,-9 + 8984: -16,-9 + 8985: -15,-9 + 8986: -14,-9 + 8989: -17,-4 + 9010: -17,-14 + 9011: -18,-14 + 9012: -18,-14 + 9021: -18,2 + 9022: -17,2 + 9023: -16,2 + 9024: -15,2 + 9048: -23,-14 + 9049: -22,-14 + 9050: -21,-14 + 9051: -20,-14 + 9052: -25,-14 + - node: + color: '#FF9821FF' + id: BrickLineOverlayN + decals: + 9278: -23,-35 + 9279: -24,-35 + 9339: -26,-33 + 9349: -26,-26 + 9350: -23,-20 + 9351: -24,-20 + 9352: -22,-20 + 9364: -20,-22 + 9365: -20,-24 + 9488: -33,-23 + 9489: -32,-23 + 9490: -31,-23 + 9491: -30,-23 + 9492: -29,-23 + 9493: -28,-23 + 9505: -38,-21 + 9506: -37,-21 + 9507: -35,-22 - node: - zIndex: 1 color: '#334E6DFF' id: BrickLineOverlayS decals: - 7254: 4,-3 + 9783: 3,-3 + 9784: 4,-3 + 9785: 5,-3 + 9786: 6,-3 + 9787: 7,-3 + 9788: 10,-3 + 9789: 9,-3 + 9790: 11,-3 + 10186: 36,-6 + 10187: 37,-6 + 10198: 39,-3 - node: - color: '#52B4E9FF' + color: '#639137FF' id: BrickLineOverlayS decals: - 4394: -17,11 - 4395: -15,11 - 4396: -14,11 - 4409: -8,12 - 4455: -19,17 - 4461: -22,13 - 4462: -23,13 - 4463: -24,13 - 4464: -25,13 - 4465: -26,13 - 4466: -27,13 - 4467: -28,13 - 4477: -29,13 - 4478: -22,13 + 11209: 1,15 - node: color: '#765428FF' id: BrickLineOverlayS decals: - 4271: 24,1 - 4272: 25,1 4277: 22,-2 - 4278: 23,-2 - 4279: 24,-2 - 4285: 32,-3 - 4286: 33,-3 - 4287: 34,-3 - 4288: 36,-3 - 4289: 37,-3 - 4290: 38,-3 - 4383: 37,4 - 4384: 37,4 - node: - color: '#774194FF' + color: '#96DAFFFF' id: BrickLineOverlayS decals: - 4351: 38,11 - 4352: 37,11 - 4353: 36,11 - 4355: 33,12 - 4356: 34,12 - 4359: 31,11 + 8409: -18,13 + 8410: -17,13 + 8411: -16,13 + 8412: -15,13 + 8413: -14,13 + 8414: -13,13 + 8415: -12,13 + 8439: -19,13 + 8440: -11,13 + 8457: -28,13 + 8458: -29,13 + 8459: -27,13 + 8460: -26,13 + 8461: -25,13 + 8462: -24,13 + 8463: -23,13 + 8464: -22,13 + 8474: -21,13 + 8475: -21,17 + 8476: -19,17 + 8501: -11,25 + 8519: -12,25 + 10916: -25,10 + 10917: -24,10 + 10918: -24,10 - node: color: '#9C2020FF' id: BrickLineOverlayS decals: - 3987: 31,-14 - 3988: 30,-14 - 3999: 27,-10 - 4015: 32,-26 - 4016: 30,-26 - 4017: 29,-26 - 4018: 28,-26 - 4026: 35,-14 - 4027: 38,-14 - 4028: 39,-14 - 4029: 40,-14 - 4030: 42,-14 - 4031: 43,-14 - 4032: 44,-14 - 4033: 45,-14 - 4043: 52,-9 - 4044: 53,-9 + 10987: 26,-25 + 10988: 25,-25 + 10989: 25,-25 + 10990: 27,-25 + 10991: 28,-25 + 10992: 29,-25 + 11007: 31,-25 + 11008: 32,-25 + 11009: 33,-25 - node: - color: '#AE6716FF' + color: '#9FED58FF' id: BrickLineOverlayS decals: - 4072: -13,-16 - 4073: -15,-16 - 4074: -16,-16 - 4075: -12,-16 - 4107: -20,-22 - 4108: -20,-24 - 4121: -26,-24 - 4122: -25,-24 - 4133: -26,-26 - 4157: -26,-34 - 4171: -24,-35 - 4172: -23,-35 - 4201: -28,-23 - 4202: -29,-23 - 4203: -29,-23 - 4204: -30,-23 - 4205: -32,-23 - 4206: -33,-23 - 4207: -34,-23 - 4208: -35,-23 - 4209: -36,-23 - 4210: -36,-23 - 4211: -37,-23 - 4212: -38,-23 - 4248: 0,-20 - 8164: -18,-16 - 8174: -18,-15 + 10257: 9,24 + 10258: 10,24 + 10259: 11,24 + 10260: 12,24 + 10261: 8,24 + 10262: 13,24 - node: - color: '#BE6BC3FF' + color: '#BC863FFF' id: BrickLineOverlayS decals: - 4084: -16,-14 - 4085: -15,-14 - 4086: -13,-14 - 4087: -12,-14 - 8126: -15,-12 - 8127: -14,-12 - 8128: -13,-12 - 8129: -12,-12 - 8130: -12,-12 + 8614: 31,3 + 8615: 32,3 + 8616: 33,3 + 8617: 31,0 + 8618: 32,0 + 8619: 33,0 + 8620: 35,0 + 8621: 35,0 + 8622: 36,0 + 8623: 37,0 + 8699: 23,-2 + 8700: 24,-2 + 8701: 25,-2 + 8702: 25,-2 + 8703: 26,-2 + 8704: 27,-2 + 8705: 28,-2 + 8722: 31,4 + 8724: 33,4 + 8736: 29,6 + 8754: 32,4 + - node: + color: '#FBB2FFFF' + id: BrickLineOverlayS + decals: + 8959: -18,2 + 8960: -17,2 + 8961: -16,2 + 8962: -15,2 + 8963: -14,-11 + 8964: -15,-11 + 8965: -16,-11 + 8966: -17,-11 + 8967: -14,-9 + 8968: -15,-9 + 8969: -16,-9 + 8970: -17,-9 + 8987: -18,-4 + 8988: -17,-4 + 9053: -25,-14 + 9054: -24,-14 + 9055: -23,-14 + 9056: -22,-14 + 9057: -21,-14 + 9058: -20,-14 + - node: + color: '#FF9821FF' + id: BrickLineOverlayS + decals: + 9280: -24,-35 + 9281: -23,-35 + 9341: -26,-34 + 9348: -26,-26 + 9356: -26,-24 + 9357: -25,-24 + 9362: -20,-24 + 9363: -20,-22 + 9382: -18,-16 + 9383: -19,-16 + 9494: -33,-23 + 9495: -32,-23 + 9496: -30,-23 + 9497: -31,-23 + 9498: -29,-23 + 9499: -28,-23 + 9500: -34,-23 + 9501: -36,-23 + 9502: -35,-23 + 9503: -37,-23 + 9504: -38,-23 - node: color: '#334E6DFF' id: BrickLineOverlayW decals: - 3443: 12,-8 - 3444: 12,-7 - 3445: 12,-6 - 3446: 12,-9 - 3447: 12,-10 - 3450: 12,-5 - 3451: 12,-4 - 3463: 8,-5 - 3464: 8,-4 - 3472: 2,-5 - 3473: 2,-4 - 3478: 2,-3 + 9802: 12,-14 + 9803: 12,-13 + 9804: 12,-12 + 9805: 12,-11 + 9806: 12,-10 + 9807: 12,-9 + 9808: 12,-8 + 9809: 12,-7 + 9810: 12,-6 + 9811: 12,-5 + 9812: 12,-4 + 9827: 2,-3 + 9828: 2,-4 + 9829: 2,-5 + 9830: 2,-6 + 9837: 8,-4 + 9838: 8,-5 + 10196: 39,-4 - node: - color: '#52B4E9FF' + color: '#43999EFF' id: BrickLineOverlayW decals: - 4406: -18,12 - 4414: -9,14 - 4435: -10,23 - 4437: -9,21 - 4438: -9,20 - 4439: -9,18 - 4440: -9,19 - 4448: -21,11 - 4449: -21,12 - 4450: -21,13 - 4451: -21,14 - 4452: -21,16 + 10859: -21,9 + 10860: -21,8 + 10861: -21,7 + 10862: -21,6 - node: color: '#639137FF' id: BrickLineOverlayW decals: - 3527: 14,23 - 3528: 14,24 - 3529: 14,25 + 11207: 0,16 - node: - color: '#765428FF' + color: '#96DAFFFF' id: BrickLineOverlayW decals: - 4258: 23,5 - 4259: 23,4 - 4260: 23,3 - 4261: 23,2 - 4306: 29,7 - 4307: 29,4 - 4308: 29,3 - 4309: 29,2 - 4310: 29,1 - 4311: 29,0 - 4313: 29,5 - 4372: 36,7 - 4373: 36,6 - 4374: 36,5 + 8416: -15,15 + 8417: -15,14 + 8418: -15,13 + 8419: -15,12 + 8420: -15,12 + 8446: -18,19 + 8447: -18,18 + 8448: -20,16 + 8449: -20,15 + 8450: -20,14 + 8451: -20,12 + 8511: -9,18 + 8512: -9,19 + 8513: -9,20 + 8514: -9,21 + 9090: -10,23 + 9091: -10,24 + 10853: -20,11 + 10925: -27,11 - node: color: '#9C2020FF' id: BrickLineOverlayW decals: - 3991: 28,-18 - 3992: 28,-17 - 3993: 28,-16 - 3994: 28,-15 - 3995: 28,-14 - 3996: 28,-13 - 3997: 28,-12 - 3998: 28,-11 - 4000: 28,-19 - 4004: 28,-22 - 4021: 27,-25 - 4022: 27,-24 + 11001: 29,-22 + 11002: 29,-23 + 11003: 29,-24 + 11004: 34,-26 + 11005: 34,-27 + 11013: 27,-24 + 11154: 27,-12 + - node: + color: '#9FED58FF' + id: BrickLineOverlayW + decals: + 10248: 10,30 + 10249: 10,29 + 10250: 10,28 + 10251: 10,27 + 10252: 10,26 + 10279: 14,22 + 10280: 14,23 + 10281: 14,24 + 10282: 14,25 + 10283: 14,26 - node: color: '#AE6716FF' id: BrickLineOverlayW decals: - 4089: -11,-16 - 4090: -11,-17 4093: -19,-17 - 4094: -19,-18 - 4095: -19,-19 - 4103: -19,-21 - 4104: -19,-22 - 4105: -19,-23 - 4106: -19,-24 - 4119: -27,-23 - 4123: -27,-25 - 4124: -27,-26 - 4125: -27,-27 - 4126: -27,-28 - 4127: -27,-29 - 4137: -25,-27 - 4138: -25,-28 - 4139: -25,-29 - 4140: -25,-30 - 4141: -25,-31 - 4142: -25,-32 - 4148: -27,-30 - 4149: -27,-29 - 4150: -27,-31 - 4151: -27,-32 - 4152: -27,-33 - 4154: -25,-35 - 4155: -25,-36 - 4158: -26,-38 - 4159: -26,-39 - 4160: -26,-40 - 4161: -26,-41 - 4173: -22,-36 - 4174: -22,-37 - 4175: -22,-38 - 4243: -1,-22 - 4244: -1,-21 - 4245: -1,-20 - 4246: -1,-19 4257: -1,-18 - node: - color: '#BE6BC3FF' + color: '#BC863FFF' id: BrickLineOverlayW decals: - 4088: -11,-14 - 8098: -19,-13 - 8099: -19,-12 - 8100: -19,-11 - 8101: -19,-8 - 8102: -19,-7 - 8103: -19,-6 - 8104: -19,-5 - 8105: -19,-4 - 8106: -19,-3 - 8107: -19,-2 - 8108: -19,-1 - 8109: -19,1 - 8110: -19,2 - 8155: -16,-10 - 8172: -18,-15 + 8593: 34,1 + 8594: 34,2 + 8595: 38,1 + 8596: 38,2 + 8597: 38,-1 + 8598: 38,-2 + 8599: 34,-2 + 8600: 34,-1 + 8738: 30,5 + 8739: 29,3 + 8740: 29,2 + 8741: 29,1 + 8742: 29,1 + 8743: 29,0 + 8744: 29,0 + 8745: 29,-1 + 10940: 30,6 - node: - zIndex: 1 - color: '#BE6BC3FF' + color: '#FBB2FFFF' id: BrickLineOverlayW decals: - 8149: -16,-11 - 8150: -16,-9 + 8991: -19,1 + 8992: -19,0 + 8993: -19,-1 + 8994: -19,-2 + 8995: -19,-3 + 8996: -19,-4 + 8997: -19,-5 + 8998: -19,-5 + 8999: -19,-6 + 9000: -19,-7 + 9001: -19,-8 + 9002: -19,-8 + 9003: -19,-9 + 9004: -19,-10 + 9005: -19,-11 + 9006: -19,-11 + 9007: -19,-12 + 9008: -19,-13 + 9013: -19,-15 + 9020: -13,-10 - node: - zIndex: 1 color: '#FF9821FF' id: BrickLineOverlayW decals: - 7361: -25,-25 + 9273: -22,-36 + 9274: -22,-37 + 9275: -22,-38 + 9276: -22,-39 + 9289: -26,-41 + 9290: -26,-42 + 9291: -26,-42 + 9292: -26,-41 + 9293: -26,-40 + 9294: -26,-39 + 9295: -26,-39 + 9296: -26,-38 + 9298: -25,-36 + 9299: -25,-35 + 9300: -27,-33 + 9301: -27,-32 + 9302: -27,-31 + 9303: -27,-30 + 9304: -27,-29 + 9305: -27,-28 + 9306: -27,-27 + 9307: -27,-26 + 9308: -27,-25 + 9309: -25,-27 + 9310: -25,-28 + 9311: -25,-29 + 9312: -25,-25 + 9335: -25,-29 + 9336: -25,-30 + 9337: -25,-31 + 9338: -25,-32 + 9355: -27,-23 + 9366: -19,-21 + 9367: -19,-22 + 9368: -19,-23 + 9369: -19,-24 + 9370: -19,-19 + 9371: -19,-18 + 9372: -19,-17 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelBox + id: BrickTileDarkBox decals: - 7181: 6,-7 - 7182: 7,-7 - 7183: 8,-7 - 7184: 8,-9 - 7185: 7,-9 - 7186: 6,-9 - 7187: 10,-8 - 7421: -22,-33 - 7811: -38,-19 - 7812: -37,-19 - 7813: -35,-19 - 7814: -34,-19 - 7815: -35,-15 - 7816: -34,-15 - 7817: -34,-13 - 7818: -35,-13 - 7819: -37,-13 - 7820: -38,-13 - 7821: -38,-15 - 7822: -37,-15 + 10138: 39,-13 + 10139: 43,-13 + 10140: 43,-15 + 10141: 39,-15 + 10142: 35,-15 + 11135: 32,-13 + 11136: 32,-12 + 11137: 32,-11 + 11138: 32,-10 + 11139: 32,-9 + 11140: 32,-8 + 11155: 29,-11 + 11156: 29,-12 - node: color: '#FFFFFFFF' - id: BrickTileSteelBox + id: BrickTileDarkCornerNe decals: - 8169: -18,-15 + 10957: 34,-24 - node: - zIndex: 1000 color: '#FFFFFFFF' - id: BrickTileSteelBox + id: BrickTileDarkCornerNw decals: - 3433: 17,13 + 10955: 30,-24 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelCornerNe + id: BrickTileDarkCornerSe decals: - 7178: 6,0 - 7251: 8,-2 - 7330: -21,-20 - 7418: -22,-35 - 7459: -12,15 - 7472: -12,15 - 7492: -9,22 - 7599: 39,2 - 7609: 34,8 - 7614: 34,8 - 7636: 26,6 - 7676: 35,12 - 7690: 38,8 - 7807: -34,-22 - 7808: -36,-21 + 10958: 34,-25 - node: color: '#FFFFFFFF' - id: BrickTileSteelCornerNe + id: BrickTileDarkCornerSw decals: - 3547: 21,14 - 3560: 14,21 - 3647: -19,34 - 3666: -28,45 - 8079: -17,-14 + 10165: 26,-18 + 10956: 30,-25 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelCornerNw + id: BrickTileDarkEndE decals: - 7179: 5,0 - 7180: 4,-1 - 7250: 12,-2 - 7423: -26,-37 - 7471: -16,15 - 7626: 28,-1 - 7637: 23,6 - 7674: 32,12 - 7675: 29,11 - 7689: 36,8 - 7774: 27,-23 + 10164: 27,-18 - node: color: '#FFFFFFFF' - id: BrickTileSteelCornerNw + id: BrickTileDarkEndN decals: - 3573: 8,13 - 3630: -4,41 - 3667: -30,45 - 3684: -39,34 - 3717: -75,30 - 8076: -16,-8 - 8078: -19,-14 + 10143: 30,-10 + 10163: 26,-16 + 10975: 27,-23 + 11147: 27,-11 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelCornerSe + id: BrickTileDarkEndS decals: - 7206: 3,-6 - 7270: 0,-23 - 7279: 0,-23 - 7329: -21,-24 - 7595: 39,-3 - 7639: 26,1 - 7673: 32,11 - 7678: 32,11 - 7773: 34,-26 + 10156: 30,-12 + 11148: 27,-13 - node: color: '#FFFFFFFF' - id: BrickTileSteelCornerSe + id: BrickTileDarkInnerNe decals: - 3546: 21,11 - 3592: 3,15 - 3769: -67,28 - 3790: -61,28 - 3791: -49,28 - 3793: -43,28 - 3834: -55,10 - 3848: -37,10 - 3884: -73,10 - 3927: -28,24 - 8160: -17,-16 + 10168: 26,-18 - node: - zIndex: 1000 color: '#FFFFFFFF' - id: BrickTileSteelCornerSe + id: BrickTileDarkLineE decals: - 3298: -12,0 + 9954: 34,-26 + 9955: 34,-27 + 10158: 30,-11 + 10167: 26,-17 + 10972: 29,-24 + 10973: 29,-23 + 10974: 27,-24 + 10978: 29,-22 + 11149: 27,-12 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelCornerSw + id: BrickTileDarkLineN decals: - 7205: 2,-6 - 7332: -27,-24 - 7337: -27,-24 - 7424: -27,-34 - 7454: -9,12 - 7469: -18,11 - 7493: -10,22 - 7515: -21,10 - 7628: 28,-2 - 7630: 31,-3 - 7638: 23,1 - 7670: 29,10 - 7677: 35,11 - 7691: 36,4 - 7775: 27,-26 + 10951: 26,-25 + 10952: 27,-25 + 10953: 28,-25 + 10954: 29,-25 + 10962: 31,-24 + 10963: 32,-24 + 10964: 33,-24 + 10980: 25,-25 + 10985: 29,-25 - node: color: '#FFFFFFFF' - id: BrickTileSteelCornerSw + id: BrickTileDarkLineS decals: - 3567: 8,18 - 3590: 0,15 - 3768: -69,28 - 3781: -63,28 - 3792: -51,28 - 3835: -57,10 - 3849: -39,10 - 3883: -75,10 - 3926: -30,24 - 3959: -21,31 - 8067: -16,-12 - 8159: -19,-16 + 10959: 31,-25 + 10960: 32,-25 + 10961: 33,-25 + 10965: 26,-25 + 10966: 25,-25 + 10967: 27,-25 + 10968: 28,-25 + 10969: 29,-25 + 10979: 25,-25 - node: - zIndex: 1000 color: '#FFFFFFFF' - id: BrickTileSteelCornerSw + id: BrickTileDarkLineW decals: - 3297: -14,0 + 9956: 34,-26 + 9957: 34,-27 + 10157: 30,-11 + 10166: 26,-17 + 10970: 29,-24 + 10971: 29,-23 + 10976: 27,-24 + 10977: 29,-22 + 11150: 27,-12 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelEndE + id: BrickTileSteelBox decals: - 7259: 1,-20 - 7260: 1,-22 - 7267: 1,-20 - 7268: 1,-22 - 7419: -23,-41 - 7420: -24,-33 - 7447: -6,13 - 7533: -9,25 - 7631: 26,-2 - 7660: 39,11 - 7752: 47,-14 + 9207: -21,-31 + 9208: -21,-33 + 9268: -21,-35 + 9839: 10,-8 + 9840: 10,-7 + 9841: 8,-7 + 9842: 7,-7 + 9843: 6,-7 + 9844: 6,-9 + 9845: 7,-9 + 9846: 8,-9 - node: zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelEndN + id: BrickTileSteelCornerNe decals: - 7283: 6,-20 - 7693: 42,7 - 7730: 31,-8 - 7760: 31,-8 - 7788: 34,-23 + 7599: 39,2 - node: color: '#FFFFFFFF' - id: BrickTileSteelEndN + id: BrickTileSteelCornerNe decals: - 3583: 3,22 - 3593: 3,17 - 3594: 0,17 + 8537: -4,20 + 8538: -4,28 + 8694: 34,7 + 9147: -21,-19 + 9148: -21,-20 + 9205: -21,-26 + 9230: -24,-41 + 9246: -22,-35 + 9412: -36,-21 + 9413: -34,-22 + 9515: 15,7 + 9516: -2,7 + 9538: 19,-11 + 9539: 19,-3 + 9540: 19,3 + 9543: -10,3 + 9544: -10,-3 + 9545: -10,-9 + 9546: -4,-17 + 9547: 9,-17 + 9548: 15,-17 + 9568: -10,8 + 9586: -11,31 + 9587: -23,32 + 9588: -33,32 + 9589: -46,28 + 9590: -53,28 + 9592: -64,28 + 9593: -71,28 + 9608: -30,28 + 9619: -75,30 + 9633: -57,28 + 9646: -4,39 + 9679: 25,5 + 9713: 13,-3 + 9759: 7,-1 + 9819: 8,-2 + 10108: 40,-11 + 10109: 44,-11 + 10110: 44,-16 + 10111: 40,-16 + 10112: 36,-16 + 10470: -4,31 + 10547: -30,39 + 10550: -30,44 + 10688: -51,34 + 11196: 3,17 - node: - zIndex: 1000 color: '#FFFFFFFF' - id: BrickTileSteelEndN + id: BrickTileSteelCornerNw decals: - 3310: -16,3 - 3434: 13,19 + 8542: -2,28 + 8543: -2,20 + 9204: -22,-26 + 9237: -26,-37 + 9517: -8,3 + 9518: -8,-3 + 9519: -8,-9 + 9541: 13,7 + 9542: -4,7 + 9549: 13,-17 + 9550: 7,-17 + 9551: -6,-17 + 9555: 21,-11 + 9558: 21,3 + 9559: 21,-3 + 9562: 21,8 + 9584: -2,14 + 9594: -73,28 + 9595: -66,28 + 9596: -59,28 + 9597: -48,28 + 9598: -35,32 + 9599: -25,32 + 9600: -28,28 + 9601: -28,39 + 9602: -28,44 + 9635: -55,28 + 9649: -13,31 + 9678: 24,5 + 9760: 4,-1 + 9761: 2,-2 + 10098: 38,-11 + 10099: 42,-11 + 10100: 42,-16 + 10101: 38,-16 + 10102: 34,-16 + 10469: -2,31 + 10932: 30,7 + 10935: 29,4 + 11190: 0,17 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelEndS + id: BrickTileSteelCornerSe decals: - 7261: -1,-24 - 7284: 6,-21 - 7422: -22,-39 - 7442: -7,11 - 7692: 42,5 + 8534: -4,18 + 8539: -4,26 + 8656: 29,-2 + 8698: 34,4 + 9126: -17,-16 + 9187: -21,-24 + 9191: -21,-28 + 9194: -22,-31 + 9512: 19,-5 + 9514: 19,1 + 9520: -4,-15 + 9521: 9,-15 + 9522: 15,-15 + 9523: 19,-13 + 9533: -10,-11 + 9534: -10,-5 + 9535: -10,1 + 9536: -10,7 + 9537: 20,9 + 9566: -8,9 + 9607: -30,26 + 9609: -33,34 + 9610: -23,34 + 9618: -75,28 + 9621: -71,30 + 9628: -46,30 + 9629: -53,30 + 9630: -57,30 + 9631: -64,30 + 9634: -57,27 + 9640: -23,34 + 9645: -4,37 + 9647: -11,33 + 9680: 25,2 + 10113: 40,-12 + 10114: 44,-12 + 10115: 44,-17 + 10116: 40,-17 + 10117: 36,-17 + 10170: 39,-5 + 10471: -4,33 + 10548: -30,37 + 10549: -30,42 + 11194: 3,15 - node: color: '#FFFFFFFF' - id: BrickTileSteelEndS + id: BrickTileSteelCornerSw decals: - 3520: 8,-6 - 3582: 3,19 - 3591: 2,14 + 8540: -2,18 + 8541: -2,26 + 9184: -27,-24 + 9220: -27,-34 + 9524: 21,-5 + 9525: 21,-13 + 9526: 21,1 + 9527: 21,7 + 9528: -8,1 + 9529: -8,-5 + 9530: -8,-11 + 9531: -6,-15 + 9532: 7,-15 + 9563: 19,9 + 9567: -9,9 + 9577: 14,-15 + 9583: -2,12 + 9603: -28,42 + 9604: -28,37 + 9605: -25,34 + 9606: -28,26 + 9611: -35,34 + 9612: -48,30 + 9613: -55,30 + 9614: -59,30 + 9615: -66,30 + 9616: -73,30 + 9617: -73,27 + 9636: -55,27 + 9648: -13,33 + 9681: 24,2 + 10097: 38,-12 + 10103: 38,-12 + 10104: 34,-17 + 10105: 38,-17 + 10106: 42,-17 + 10107: 42,-12 + 10472: -2,33 + 10931: 30,4 + 11191: 0,15 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 8535: -4,12 + 8536: -4,14 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 9210: -26,-30 + 10929: 38,-5 - node: - zIndex: 1000 color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 3311: -16,0 - 3435: 13,17 + 9209: -26,-32 + 9581: -4,9 + 9582: -2,9 + 10171: 38,-7 + 11193: 2,14 - node: - zIndex: -1 color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 7262: -2,-23 - 7452: -10,13 - 7473: -10,17 - 7491: -11,25 - 7694: 41,6 - 7753: 34,-14 + 8685: 28,6 + 9643: -2,37 + 9644: -2,39 + 10479: -2,37 + 10927: 35,-6 - node: - zIndex: -1 color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 7214: 8,-3 - 7215: 7,-2 - 7216: 6,-1 - 7265: -1,-20 - 7266: -1,-22 - 7425: -27,-33 - 7427: -25,-33 - 7432: -25,-41 - 7434: -25,-33 - 7448: -7,13 - 7497: -10,22 - 7604: 34,2 - 7688: 35,11 - 7709: 21,-11 - 7764: 29,-24 - 7809: -36,-22 - 7810: -34,-23 - 7927: 11,24 - 7928: 10,24 + 9174: -27,-26 + 9236: -25,-41 + 9266: -25,-35 + 9415: -36,-22 + 9416: -34,-23 + 9757: 8,-3 - node: color: '#FFFFFFFF' - id: BrickTileSteelInnerNe + id: BrickTileSteelInnerNw decals: - 3575: 14,14 - 3597: 0,16 - 3648: -19,33 - 3695: -51,30 - 3696: -53,30 + 8663: 29,-2 + 9175: -25,-26 + 9199: -22,-31 + 9238: -25,-37 + 9765: 4,-2 + 10179: 38,-6 + 10183: 39,-5 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelInnerNw + id: BrickTileSteelInnerSe decals: - 7217: 5,-1 - 7219: 12,-3 - 7426: -25,-33 - 7431: -25,-37 - 7449: -9,13 - 7499: -9,17 - 7625: 29,-1 - 7695: 42,6 - 7761: 31,-9 - 7763: 28,-23 - 7787: 34,-24 - 7926: 10,24 + 8583: 30,3 + 8584: 34,3 + 9128: -17,-14 + 9176: -27,-26 + 9206: -22,-28 + 9267: -25,-35 + 9689: 2,-3 + 9706: 8,-3 + 10363: -10,9 + 10670: -39,34 + 10936: 29,4 + 11198: 2,15 - node: color: '#FFFFFFFF' - id: BrickTileSteelInnerNw + id: BrickTileSteelInnerSw + decals: + 9177: -25,-26 + 9239: -25,-34 + 9245: -22,-35 + 9707: 8,-3 + 9756: 12,-3 + 10181: 38,-6 + 10416: 21,9 + 10690: -53,34 + 11199: 2,15 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE decals: - 3574: 9,13 - 3598: 3,16 - 3686: -39,30 - 3697: -53,30 - 3698: -51,30 + 8084: -19,-17 + 8085: -17,-17 + 8546: -4,27 + 8547: -4,19 + 8548: 30,-2 + 8549: 30,-1 + 8574: 30,2 + 8575: 30,1 + 8576: 30,1 + 8577: 30,-1 + 8578: 30,-2 + 8579: 34,-2 + 8580: 34,-1 + 8581: 34,1 + 8582: 34,2 + 8670: 29,-1 + 8671: 29,0 + 8672: 29,1 + 8673: 29,2 + 8674: 29,3 + 8695: 34,6 + 8696: 34,5 + 9127: -17,-15 + 9136: -17,-17 + 9137: -17,-18 + 9138: -17,-19 + 9139: -17,-21 + 9140: -17,-22 + 9141: -17,-23 + 9142: -17,-24 + 9149: -21,-21 + 9150: -21,-22 + 9151: -21,-23 + 9164: -27,-27 + 9165: -27,-28 + 9166: -27,-29 + 9167: -25,-25 + 9168: -25,-26 + 9169: -25,-27 + 9170: -25,-28 + 9171: -25,-29 + 9178: -25,-25 + 9179: -27,-25 + 9190: -21,-27 + 9192: -22,-29 + 9193: -22,-30 + 9211: -26,-31 + 9229: -24,-42 + 9231: -25,-40 + 9232: -25,-39 + 9233: -25,-38 + 9234: -25,-37 + 9235: -25,-36 + 9247: -22,-36 + 9248: -22,-37 + 9249: -22,-38 + 9250: -22,-38 + 9251: -22,-39 + 9260: -25,-34 + 9261: -25,-33 + 9262: -25,-32 + 9263: -25,-31 + 9264: -25,-30 + 9265: -25,-29 + 9324: -27,-30 + 9325: -27,-31 + 9326: -27,-32 + 9560: 19,-4 + 9561: 19,2 + 9569: -10,2 + 9570: -10,-4 + 9571: -10,-10 + 9578: 19,-12 + 9620: -75,29 + 9642: -4,38 + 9653: -30,27 + 9682: 25,3 + 9683: 25,4 + 9686: 2,-6 + 9687: 2,-5 + 9688: 2,-4 + 9702: 8,-4 + 9703: 8,-5 + 9733: 13,-14 + 9734: 13,-13 + 9735: 13,-13 + 9736: 13,-12 + 9737: 13,-12 + 9738: 13,-11 + 9739: 13,-11 + 9740: 13,-10 + 9741: 13,-10 + 9742: 13,-9 + 9743: 13,-9 + 9744: 13,-8 + 9745: 13,-8 + 9746: 13,-8 + 9747: 13,-7 + 9748: 13,-7 + 9749: 13,-6 + 9750: 13,-6 + 9751: 13,-5 + 9752: 13,-5 + 9754: 13,-4 + 9755: 13,-4 + 9777: 4,-2 + 10182: 38,-6 + 10184: 39,-4 + 10274: 14,26 + 10275: 14,25 + 10276: 14,24 + 10277: 14,23 + 10278: 14,22 + 10342: -10,-15 + 10343: -10,-13 + 10344: -10,-12 + 10345: -10,-8 + 10346: -10,-7 + 10347: -10,-6 + 10348: -10,-2 + 10359: -10,4 + 10360: -10,0 + 10361: -10,6 + 10417: 19,7 + 10418: 19,6 + 10419: 19,4 + 10420: 19,0 + 10421: 19,-1 + 10422: 19,-2 + 10423: 19,-6 + 10424: 19,-7 + 10425: 19,-8 + 10426: 19,-9 + 10427: 19,-10 + 10428: 19,-14 + 10429: 19,-15 + 10454: -4,29 + 10455: -4,25 + 10456: -4,24 + 10457: -4,24 + 10458: -4,23 + 10459: -4,23 + 10460: -4,22 + 10461: -4,21 + 10462: -4,21 + 10463: -4,17 + 10464: -4,16 + 10465: -4,15 + 10466: -4,11 + 10467: -4,10 + 10480: -4,35 + 10481: -4,36 + 10482: -4,40 + 10483: -4,41 + 10531: -30,35 + 10532: -30,34 + 10533: -30,36 + 10534: -30,40 + 10535: -30,41 + 10536: -30,45 + 10545: -30,43 + 10546: -30,38 + 10589: -39,16 + 10590: -39,15 + 10591: -39,15 + 10592: -39,14 + 10593: -39,14 + 10594: -39,13 + 10595: -39,12 + 10596: -39,12 + 10597: -39,11 + 10598: -39,11 + 10599: -39,10 + 10600: -39,11 + 10601: -39,13 + 10602: -39,13 + 10603: -39,15 + 10604: -39,18 + 10605: -39,19 + 10606: -39,19 + 10607: -39,20 + 10608: -39,22 + 10609: -39,21 + 10610: -39,19 + 10611: -39,18 + 10612: -39,17 + 10613: -39,17 + 10614: -39,19 + 10615: -39,21 + 10616: -39,22 + 10617: -39,23 + 10618: -39,24 + 10619: -39,24 + 10620: -39,25 + 10621: -39,26 + 10622: -39,27 + 10623: -39,28 + 10666: -39,33 + 10667: -39,32 + 10668: -39,31 + 10669: -39,30 + 10671: -53,31 + 10672: -53,32 + 10673: -53,33 + 10681: -51,33 + 10682: -51,32 + 10683: -51,32 + 10684: -51,31 + 10691: -57,24 + 10692: -57,23 + 10693: -57,25 + 10694: -57,26 + 10695: -57,22 + 10696: -57,21 + 10697: -57,20 + 10698: -57,19 + 10699: -57,18 + 10700: -57,17 + 10701: -57,16 + 10702: -57,15 + 10703: -57,14 + 10704: -57,13 + 10705: -57,12 + 10706: -57,11 + 10707: -57,10 + 10708: -57,10 + 10769: -75,16 + 10770: -75,16 + 10771: -75,15 + 10772: -75,14 + 10773: -75,13 + 10774: -75,13 + 10775: -75,13 + 10776: -75,12 + 10777: -75,11 + 10778: -75,11 + 10779: -75,10 + 10780: -75,10 + 10781: -75,14 + 10782: -75,15 + 10783: -75,17 + 10784: -75,17 + 10785: -75,18 + 10786: -75,20 + 10787: -75,20 + 10788: -75,21 + 10789: -75,22 + 10790: -75,22 + 10791: -75,22 + 10792: -75,23 + 10793: -75,23 + 10794: -75,24 + 10795: -75,25 + 10796: -75,26 + 10797: -75,27 + 10944: 30,6 + 10945: 30,5 + 11171: 3,23 + 11172: 3,22 + 11173: 3,21 + 11174: 3,20 + 11175: 3,19 + 11176: 3,18 + 11195: 3,16 - node: zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelInnerSe + id: BrickTileSteelLineN decals: - 7210: 3,-3 - 7212: 8,-3 - 7263: -1,-23 - 7264: -1,-20 - 7269: 0,-22 - 7357: -27,-26 - 7428: -25,-33 - 7429: -25,-35 - 7450: -7,13 - 7514: -20,17 - 7530: -10,25 - 7662: 32,12 - 7710: 21,-7 - 7930: 10,26 + 7634: 22,-2 - node: color: '#FFFFFFFF' - id: BrickTileSteelInnerSe + id: BrickTileSteelLineN decals: - 3599: 2,15 - 3764: -73,28 - 3782: -67,29 - 3783: -55,28 - 3784: -61,29 - 3785: -49,29 - 3786: -43,29 - 3912: -37,32 + 8557: 31,-3 + 8558: 32,-3 + 8559: 32,-3 + 8560: 33,-3 + 8561: 33,-3 + 8562: 35,-3 + 8563: 36,-3 + 8564: 37,-3 + 8657: 23,-2 + 8658: 24,-2 + 8659: 25,-2 + 8660: 27,-2 + 8661: 26,-2 + 8662: 28,-2 + 8686: 29,6 + 8691: 31,7 + 8692: 32,7 + 8693: 33,7 + 9143: -20,-22 + 9144: -22,-20 + 9145: -24,-20 + 9146: -23,-20 + 9173: -26,-26 + 9197: -24,-31 + 9198: -23,-31 + 9258: -23,-35 + 9259: -24,-35 + 9330: -26,-33 + 9391: -28,-23 + 9392: -29,-23 + 9393: -30,-23 + 9394: -30,-23 + 9395: -31,-23 + 9396: -32,-23 + 9397: -33,-23 + 9409: -37,-21 + 9410: -38,-21 + 9414: -35,-22 + 9552: -5,-17 + 9553: 8,-17 + 9554: 14,-17 + 9564: 14,7 + 9565: -3,7 + 9627: -47,28 + 9632: -65,28 + 9650: -12,31 + 9651: -24,32 + 9652: -34,32 + 9708: 9,-3 + 9709: 9,-3 + 9710: 10,-3 + 9711: 11,-3 + 9712: 12,-3 + 9762: 5,-1 + 9763: 6,-1 + 9764: 3,-2 + 9776: 6,-3 + 9781: 5,-3 + 10123: 39,-11 + 10124: 43,-11 + 10125: 43,-16 + 10126: 39,-16 + 10127: 35,-16 + 10176: 36,-6 + 10177: 37,-6 + 10294: -3,-17 + 10295: -2,-17 + 10296: -1,-17 + 10297: -1,-17 + 10298: 0,-17 + 10299: 1,-17 + 10300: 2,-17 + 10301: 3,-17 + 10302: 4,-17 + 10303: 5,-17 + 10304: 6,-17 + 10305: 10,-17 + 10306: 11,-17 + 10307: 12,-17 + 10308: 16,-17 + 10309: 17,-17 + 10310: 18,-17 + 10311: 19,-17 + 10312: 20,-17 + 10313: 21,-17 + 10314: 21,-17 + 10336: -11,-17 + 10337: -10,-17 + 10338: -9,-17 + 10339: -9,-17 + 10340: -8,-17 + 10341: -7,-17 + 10388: -8,7 + 10389: -7,7 + 10390: -6,7 + 10391: -5,7 + 10392: -1,7 + 10393: 0,7 + 10394: 1,7 + 10395: 2,7 + 10396: 3,7 + 10397: 4,7 + 10398: 5,7 + 10399: 6,7 + 10400: 7,7 + 10401: 8,7 + 10402: 8,7 + 10403: 9,7 + 10404: 9,7 + 10405: 9,7 + 10406: 10,7 + 10407: 10,7 + 10408: 11,7 + 10409: 11,7 + 10410: 12,7 + 10411: 12,7 + 10412: 16,7 + 10413: 17,7 + 10414: 18,7 + 10415: 19,7 + 10494: -17,31 + 10495: -16,31 + 10496: -15,31 + 10497: -14,31 + 10498: -10,31 + 10499: -9,31 + 10500: -8,31 + 10501: -7,31 + 10502: -6,31 + 10503: -5,31 + 10504: -19,32 + 10505: -20,32 + 10506: -21,32 + 10507: -22,32 + 10508: -26,32 + 10509: -27,32 + 10510: -28,32 + 10511: -30,32 + 10512: -32,32 + 10513: -31,32 + 10514: -36,32 + 10515: -37,32 + 10624: -39,28 + 10625: -41,28 + 10626: -42,28 + 10627: -43,28 + 10628: -43,28 + 10629: -43,28 + 10630: -43,28 + 10631: -44,28 + 10632: -45,28 + 10633: -49,28 + 10634: -50,28 + 10635: -51,28 + 10636: -52,28 + 10637: -60,28 + 10638: -61,28 + 10639: -62,28 + 10640: -63,28 + 10641: -67,28 + 10642: -68,28 + 10643: -69,28 + 10644: -70,28 + 10674: -52,33 + 10685: -54,34 + 10686: -53,34 + 10687: -52,34 + 10946: 31,4 + 10947: 32,4 + 10948: 33,4 + 11163: 22,-14 + 11164: 23,-14 + 11165: 24,-14 + 11166: 25,-14 + 11186: 2,19 + 11187: 4,19 + 11188: 2,17 + 11189: 1,17 - node: zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelInnerSw + id: BrickTileSteelLineS decals: - 7211: 8,-3 - 7213: 12,-3 - 7220: 12,-3 - 7358: -25,-26 - 7430: -25,-34 - 7433: -22,-35 - 7451: -9,13 - 7498: -9,22 - 7500: -9,17 - 7531: -10,25 - 7661: 35,12 - 7671: 30,10 - 7696: 42,6 - 7731: 28,-10 - 7762: 28,-10 + 7586: 22,-2 - node: color: '#FFFFFFFF' - id: BrickTileSteelInnerSw + id: BrickTileSteelLineS decals: - 3600: 2,15 - 3767: -69,29 - 3787: -45,29 - 3788: -51,29 - 3789: -63,29 - 3908: -57,28 - 3958: -21,32 - 3960: -4,31 + 8550: 31,0 + 8551: 32,0 + 8552: 33,0 + 8553: 35,0 + 8554: 36,0 + 8555: 37,0 + 8556: 37,0 + 8649: 22,-2 + 8650: 23,-2 + 8651: 24,-2 + 8652: 25,-2 + 8653: 26,-2 + 8654: 27,-2 + 8655: 28,-2 + 8677: 31,4 + 8679: 33,4 + 8684: 29,6 + 8753: 32,4 + 9124: -18,-16 + 9125: -19,-16 + 9172: -26,-26 + 9182: -26,-24 + 9183: -25,-24 + 9195: -24,-31 + 9196: -23,-31 + 9221: -26,-34 + 9240: -24,-35 + 9244: -23,-35 + 9398: -34,-23 + 9399: -35,-23 + 9400: -36,-23 + 9401: -37,-23 + 9402: -38,-23 + 9403: -33,-23 + 9404: -32,-23 + 9405: -30,-23 + 9406: -31,-23 + 9407: -29,-23 + 9408: -28,-23 + 9575: -5,-15 + 9576: 8,-15 + 9622: -72,30 + 9623: -65,30 + 9624: -58,30 + 9625: -54,30 + 9626: -47,30 + 9637: -34,34 + 9638: -23,34 + 9639: -24,34 + 9641: -12,33 + 9690: 3,-3 + 9693: 6,-3 + 9694: 7,-3 + 9697: 9,-3 + 9698: 10,-3 + 9699: 10,-3 + 9700: 11,-3 + 9701: 11,-3 + 9773: 5,-1 + 9774: 6,-1 + 9779: 5,-3 + 9782: 4,-3 + 10118: 35,-17 + 10119: 39,-17 + 10120: 43,-17 + 10121: 43,-12 + 10122: 39,-12 + 10172: 37,-6 + 10173: 36,-6 + 10315: 19,-15 + 10316: 21,-15 + 10317: 17,-15 + 10318: 11,-15 + 10319: 10,-15 + 10320: 6,-15 + 10321: 5,-15 + 10322: 4,-15 + 10323: 3,-15 + 10324: 2,-15 + 10325: 1,-15 + 10326: 2,-15 + 10327: 1,-15 + 10328: 0,-15 + 10329: -1,-15 + 10330: -1,-15 + 10331: -2,-15 + 10332: -2,-15 + 10333: -3,-15 + 10334: -7,-15 + 10335: -8,-15 + 10364: -7,9 + 10365: -6,9 + 10366: -5,9 + 10367: -1,9 + 10368: 0,9 + 10369: 1,9 + 10370: 2,9 + 10371: 3,9 + 10372: 4,9 + 10373: 5,9 + 10374: 5,9 + 10375: 6,9 + 10376: 7,9 + 10377: 8,9 + 10378: 9,9 + 10379: 9,9 + 10380: 10,9 + 10381: 10,9 + 10382: 11,9 + 10383: 11,9 + 10384: 11,9 + 10385: 12,9 + 10386: 16,9 + 10387: 18,9 + 10484: -5,33 + 10485: -6,33 + 10486: -7,33 + 10487: -8,33 + 10488: -9,33 + 10489: -10,33 + 10490: -14,33 + 10491: -15,33 + 10492: -16,33 + 10493: -17,33 + 10516: -38,34 + 10517: -37,34 + 10518: -37,34 + 10519: -36,34 + 10520: -32,34 + 10521: -31,34 + 10522: -30,34 + 10523: -28,34 + 10524: -27,34 + 10525: -27,34 + 10526: -26,34 + 10527: -22,34 + 10528: -21,34 + 10529: -20,34 + 10530: -19,34 + 10645: -74,30 + 10646: -70,30 + 10647: -69,30 + 10648: -68,30 + 10649: -67,30 + 10650: -63,30 + 10651: -62,30 + 10652: -61,30 + 10653: -60,30 + 10654: -56,30 + 10655: -52,30 + 10656: -51,30 + 10657: -50,30 + 10658: -49,30 + 10659: -45,30 + 10660: -44,30 + 10661: -43,30 + 10662: -42,30 + 10663: -41,30 + 10664: -40,30 + 10665: -39,30 + 10689: -54,34 + 10941: 31,7 + 10942: 32,7 + 10943: 33,7 + 11159: 23,-12 + 11160: 22,-12 + 11161: 24,-12 + 11162: 25,-12 + 11184: 2,19 + 11185: 4,19 + 11192: 1,15 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelLineE + id: BrickTileSteelLineW decals: - 7208: 3,-4 - 7221: 13,-3 - 7222: 13,-4 - 7223: 13,-5 - 7224: 13,-6 - 7225: 13,-7 - 7226: 13,-7 - 7227: 13,-8 - 7243: 13,-13 - 7244: 13,-8 - 7245: 13,-7 - 7246: 13,-6 - 7247: 13,-5 - 7248: 13,-4 - 7249: 13,-3 - 7278: -1,-19 - 7314: -17,-18 - 7315: -17,-19 - 7316: -17,-21 - 7317: -17,-22 - 7318: -17,-23 - 7319: -17,-24 - 7326: -21,-21 - 7327: -21,-22 - 7328: -21,-23 - 7345: -25,-25 - 7346: -25,-26 - 7347: -25,-27 - 7348: -25,-28 - 7354: -27,-27 - 7355: -27,-28 - 7363: -27,-25 - 7364: -27,-29 - 7365: -27,-28 - 7366: -27,-27 - 7367: -27,-29 - 7368: -27,-30 - 7369: -27,-31 - 7370: -27,-31 - 7371: -27,-32 - 7372: -25,-32 - 7373: -25,-31 - 7374: -25,-30 - 7375: -25,-29 - 7376: -25,-34 - 7377: -22,-36 - 7378: -22,-37 - 7379: -22,-38 - 7380: -25,-36 - 7381: -25,-37 - 7382: -25,-38 - 7383: -25,-39 - 7384: -25,-40 - 7385: -25,-34 - 7456: -7,14 - 7463: -12,14 - 7464: -12,13 - 7465: -12,12 - 7475: -9,16 - 7476: -9,17 - 7477: -9,18 - 7478: -9,19 - 7479: -9,20 - 7480: -9,21 - 7481: -10,23 - 7502: -20,16 - 7503: -20,15 - 7504: -20,14 - 7505: -20,13 - 7506: -20,12 - 7574: 14,25 - 7575: 14,24 - 7576: 14,23 - 7577: 14,22 - 7596: 39,-2 - 7597: 39,-1 - 7598: 39,0 - 7605: 34,3 - 7606: 34,4 - 7607: 34,5 - 7608: 34,6 - 7640: 26,3 - 7641: 26,4 - 7642: 26,5 - 7672: 30,10 - 7698: 42,6 - 7699: 38,7 - 7700: 38,6 - 7707: 21,-9 - 7708: 21,-10 - 7721: 29,-16 - 7722: 29,-15 - 7723: 31,-12 - 7724: 31,-11 - 7725: 31,-10 - 7726: 31,-9 - 7922: 11,28 - 7923: 11,30 - 7924: 11,29 - 7925: 10,25 - 7931: 11,27 + 3571: 9,14 + 8082: -19,-17 + 8083: -17,-17 + 8544: -2,19 + 8545: -2,27 + 8565: 34,-2 + 8566: 34,-1 + 8567: 34,2 + 8568: 34,1 + 8569: 38,2 + 8570: 38,1 + 8571: 38,-1 + 8572: 38,-2 + 8573: 38,-1 + 8664: 29,-1 + 8665: 29,0 + 8666: 29,1 + 8667: 29,2 + 8668: 29,3 + 8682: 30,5 + 9129: -19,-17 + 9130: -19,-18 + 9131: -19,-19 + 9132: -19,-21 + 9133: -19,-22 + 9134: -19,-23 + 9135: -19,-24 + 9155: -27,-25 + 9156: -27,-26 + 9157: -27,-27 + 9158: -27,-28 + 9159: -27,-29 + 9160: -25,-25 + 9161: -25,-29 + 9162: -25,-28 + 9163: -25,-27 + 9180: -27,-25 + 9181: -25,-25 + 9185: -27,-23 + 9200: -22,-30 + 9201: -22,-29 + 9202: -22,-28 + 9203: -22,-27 + 9212: -26,-31 + 9213: -27,-29 + 9214: -27,-30 + 9215: -27,-30 + 9216: -27,-31 + 9217: -27,-31 + 9218: -27,-32 + 9219: -27,-33 + 9222: -25,-35 + 9223: -25,-36 + 9224: -26,-38 + 9225: -26,-39 + 9226: -26,-40 + 9227: -26,-41 + 9228: -26,-42 + 9252: -22,-36 + 9253: -22,-37 + 9254: -22,-38 + 9255: -22,-38 + 9256: -22,-39 + 9257: -22,-39 + 9327: -25,-30 + 9328: -25,-31 + 9329: -25,-32 + 9556: 21,-12 + 9557: 21,-4 + 9572: -8,-10 + 9573: -8,-4 + 9574: -8,2 + 9585: -2,13 + 9654: -28,27 + 9684: 24,4 + 9685: 24,3 + 9704: 8,-4 + 9705: 8,-5 + 9714: 12,-4 + 9715: 12,-5 + 9716: 12,-6 + 9717: 12,-7 + 9718: 12,-8 + 9719: 12,-8 + 9720: 12,-9 + 9721: 12,-10 + 9722: 12,-10 + 9723: 12,-10 + 9724: 12,-10 + 9725: 12,-11 + 9726: 12,-11 + 9727: 12,-12 + 9728: 12,-12 + 9729: 12,-13 + 9730: 12,-13 + 9731: 12,-14 + 9732: 12,-14 + 9766: 2,-3 + 9767: 2,-4 + 9768: 2,-5 + 9769: 2,-6 + 9778: 7,-2 + 10185: 39,-4 + 10269: 14,22 + 10270: 14,23 + 10271: 14,24 + 10272: 14,25 + 10273: 14,26 + 10349: -8,-2 + 10350: -8,-1 + 10351: -8,0 + 10352: -8,-6 + 10353: -8,-7 + 10354: -8,-8 + 10355: -8,4 + 10356: -8,5 + 10357: -8,6 + 10358: -8,7 + 10430: 21,-15 + 10431: 21,-14 + 10432: 21,-10 + 10433: 21,-9 + 10434: 21,-8 + 10435: 21,-7 + 10436: 21,-7 + 10437: 21,-6 + 10438: 21,-1 + 10439: 21,0 + 10440: 21,4 + 10441: 21,5 + 10442: 21,6 + 10443: -2,11 + 10444: -2,15 + 10445: -2,16 + 10446: -2,17 + 10447: -2,21 + 10448: -2,22 + 10449: -2,23 + 10450: -2,23 + 10451: -2,24 + 10452: -2,25 + 10453: -2,29 + 10468: -2,10 + 10473: -2,35 + 10474: -2,36 + 10475: -2,37 + 10476: -2,39 + 10477: -2,40 + 10478: -2,41 + 10537: -28,45 + 10538: -28,41 + 10539: -28,40 + 10540: -28,36 + 10541: -28,35 + 10542: -28,34 + 10543: -28,38 + 10544: -28,43 + 10551: -37,32 + 10552: -37,31 + 10553: -37,30 + 10554: -37,29 + 10555: -37,29 + 10556: -37,28 + 10557: -37,27 + 10558: -37,26 + 10559: -37,25 + 10560: -37,24 + 10561: -37,23 + 10562: -37,22 + 10563: -37,21 + 10564: -37,20 + 10565: -37,19 + 10566: -37,18 + 10567: -37,17 + 10568: -37,16 + 10569: -37,15 + 10570: -37,15 + 10571: -37,15 + 10572: -37,15 + 10573: -37,15 + 10574: -37,15 + 10575: -37,15 + 10576: -37,14 + 10577: -37,14 + 10578: -37,13 + 10579: -37,14 + 10580: -37,14 + 10581: -37,13 + 10582: -37,11 + 10583: -37,12 + 10584: -37,12 + 10585: -37,12 + 10586: -37,11 + 10587: -37,10 + 10588: -37,10 + 10675: -51,33 + 10676: -51,32 + 10677: -51,31 + 10678: -53,31 + 10679: -53,32 + 10680: -53,33 + 10709: -55,13 + 10710: -55,12 + 10711: -55,11 + 10712: -55,10 + 10713: -55,11 + 10714: -55,13 + 10715: -55,14 + 10716: -55,15 + 10717: -55,16 + 10718: -55,17 + 10719: -55,17 + 10720: -55,18 + 10721: -55,19 + 10722: -55,19 + 10723: -55,20 + 10724: -55,21 + 10725: -55,21 + 10726: -55,21 + 10727: -55,22 + 10728: -55,22 + 10729: -55,23 + 10730: -55,23 + 10731: -55,24 + 10732: -55,24 + 10733: -55,25 + 10734: -55,25 + 10735: -55,26 + 10736: -55,26 + 10737: -73,26 + 10738: -73,25 + 10739: -73,25 + 10740: -73,24 + 10741: -73,23 + 10742: -73,23 + 10743: -73,22 + 10744: -73,22 + 10745: -73,21 + 10746: -73,21 + 10747: -73,20 + 10748: -73,19 + 10749: -73,19 + 10750: -73,17 + 10751: -73,16 + 10752: -73,16 + 10753: -73,18 + 10754: -73,18 + 10755: -73,20 + 10756: -73,19 + 10757: -73,17 + 10758: -73,15 + 10759: -73,15 + 10760: -73,14 + 10761: -73,14 + 10762: -73,13 + 10763: -73,12 + 10764: -73,12 + 10765: -73,11 + 10766: -73,11 + 10767: -73,10 + 10768: -73,10 + 10939: 30,6 + 10949: 34,5 + 10950: 34,6 + 11177: 3,23 + 11178: 3,22 + 11179: 3,21 + 11180: 3,20 + 11181: 3,20 + 11182: 3,19 + 11183: 3,18 + 11197: 0,16 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineE + id: BrickTileWhiteBox decals: - 3503: 5,-7 - 3504: 5,-8 - 3505: 5,-9 - 3519: 8,-5 - 3548: 21,12 - 3549: 21,13 - 3554: 14,15 - 3555: 14,16 - 3556: 14,17 - 3557: 14,18 - 3558: 14,19 - 3559: 14,20 - 3584: 3,21 - 3585: 3,20 - 3601: -2,11 - 3602: -2,10 - 3605: -2,13 - 3606: -2,14 - 3607: -2,15 - 3608: -2,17 - 3609: -2,18 - 3610: -2,19 - 3611: -2,20 - 3612: -2,21 - 3613: -2,22 - 3614: -2,24 - 3615: -2,25 - 3616: -2,26 - 3617: -2,27 - 3618: -2,29 - 3620: -2,31 - 3621: -2,32 - 3623: -2,35 - 3624: -2,36 - 3625: -2,37 - 3626: -2,38 - 3627: -2,39 - 3628: -2,40 - 3655: -28,35 - 3656: -28,36 - 3657: -28,37 - 3658: -28,38 - 3659: -28,38 - 3660: -28,39 - 3661: -28,41 - 3662: -28,42 - 3663: -28,43 - 3664: -28,44 - 3761: -73,26 - 3762: -73,27 - 3820: -55,11 - 3821: -55,12 - 3822: -55,13 - 3823: -55,14 - 3824: -55,15 - 3825: -55,16 - 3826: -55,17 - 3827: -55,18 - 3828: -55,20 - 3829: -55,21 - 3830: -55,22 - 3831: -55,23 - 3832: -55,23 - 3833: -55,24 - 3837: -55,27 - 3838: -37,27 - 3839: -37,22 - 3840: -37,21 - 3841: -37,20 - 3842: -37,16 - 3843: -37,15 - 3844: -37,14 - 3845: -37,13 - 3846: -37,12 - 3847: -37,11 - 3887: -73,11 - 3888: -73,12 - 3889: -73,13 - 3890: -73,14 - 3891: -73,14 - 3892: -73,15 - 3893: -73,15 - 3894: -73,16 - 3895: -73,17 - 3896: -73,17 - 3897: -73,18 - 3898: -73,18 - 3899: -73,19 - 3900: -73,20 - 3901: -73,21 - 3902: -73,21 - 3903: -73,23 - 3904: -73,23 - 3905: -73,23 - 3906: -73,24 - 3909: -37,29 - 3910: -37,30 - 3911: -37,31 - 3929: -28,25 - 3930: -28,26 - 3931: -28,27 - 3932: -28,28 - 3933: -28,30 - 3934: -28,31 - 8052: -18,-13 - 8053: -18,-12 - 8054: -18,-11 - 8055: -18,-11 - 8056: -18,-10 - 8057: -18,-9 - 8058: -18,-9 - 8059: -18,-8 - 8060: -18,-6 - 8061: -18,-5 - 8062: -18,-4 - 8063: -18,-1 - 8064: -18,0 - 8065: -18,1 - 8066: -18,2 - 8084: -19,-17 - 8085: -17,-17 - 8157: -17,-15 + 10814: -65,32 + 10815: -62,35 + 10891: -22,21 - node: - zIndex: 1000 color: '#FFFFFFFF' - id: BrickTileSteelLineE + id: BrickTileWhiteCornerNe decals: - 3304: -12,1 - 3305: -12,2 - 3306: -12,3 - 3308: -16,2 - 3309: -16,1 - 3321: -21,-2 - 3322: -21,-3 - 3323: -21,-4 - 3324: -21,-5 - 3325: -21,-6 - 3326: -12,-6 - 3327: -12,-5 - 3328: -12,-4 - 3329: -12,-3 - 3372: 21,8 - 3373: 21,4 - 3374: 21,-2 - 3375: 21,-3 - 3394: -8,6 - 3395: -8,2 - 3397: -8,-3 - 3398: -8,-8 - 3399: -8,-11 - 3400: -8,-12 - 3401: -8,-14 - 3429: -8,-14 - 3437: 13,18 + 8272: -12,15 + 8335: -9,12 + 8343: -6,15 + 8350: -9,15 + 8351: -6,12 + 8886: -18,-9 + 8935: -13,-9 + 9077: -9,25 + 10828: -16,8 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelLineN + id: BrickTileWhiteCornerNw decals: - 7197: 9,-3 - 7198: 10,-3 - 7199: 11,-3 - 7200: 3,-2 - 7201: 2,-2 - 7275: 0,-22 - 7277: 0,-20 - 7301: -15,-14 - 7302: -13,-14 - 7303: -15,-16 - 7304: -13,-16 - 7305: -12,-16 - 7306: -12,-14 - 7307: -16,-14 - 7308: -16,-16 - 7331: -22,-20 - 7342: -20,-22 - 7343: -20,-24 - 7413: -24,-41 - 7414: -23,-41 - 7415: -24,-35 - 7416: -23,-35 - 7417: -26,-33 - 7457: -8,15 - 7460: -13,15 - 7461: -14,15 - 7462: -15,15 - 7512: -20,17 - 7513: -19,17 - 7522: -28,13 - 7523: -27,13 - 7524: -26,13 - 7525: -25,13 - 7526: -24,13 - 7527: -23,13 - 7528: -22,13 - 7532: -10,25 - 7578: 14,21 - 7600: 37,2 - 7601: 38,2 - 7602: 36,2 - 7603: 35,2 - 7610: 34,8 - 7611: 34,8 - 7612: 33,8 - 7613: 32,8 - 7615: 31,8 - 7632: 23,-2 - 7633: 24,-2 - 7634: 22,-2 - 7635: 24,6 - 7680: 30,11 - 7681: 31,11 - 7682: 33,12 - 7683: 33,12 - 7684: 34,12 - 7685: 37,11 - 7686: 38,11 - 7687: 36,11 - 7706: 37,8 - 7727: 27,-8 - 7728: 30,-9 - 7729: 31,-8 - 7734: 26,-8 - 7735: 27,-8 - 7736: 35,-14 - 7737: 38,-14 - 7738: 39,-14 - 7739: 40,-14 - 7740: 43,-14 - 7741: 44,-14 - 7742: 44,-14 - 7743: 45,-14 - 7754: 52,-8 - 7755: 53,-8 - 7765: 30,-24 - 7766: 31,-24 - 7767: 32,-24 - 7768: 33,-24 - 7782: 30,-24 - 7783: 31,-24 - 7784: 32,-24 - 7785: 33,-24 - 7786: 33,-24 - 7799: -28,-23 - 7800: -29,-23 - 7801: -30,-23 - 7802: -32,-23 - 7803: -33,-23 - 7804: -37,-21 - 7805: -38,-21 - 7806: -35,-22 - 7919: 9,24 - 7929: 11,24 + 8336: -7,12 + 8344: -10,15 + 8345: -7,12 + 8353: -10,12 + 8401: -7,15 + 8858: -19,-14 + 10847: -21,10 + 11167: -19,2 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineN + id: BrickTileWhiteCornerSe decals: - 3508: 6,-10 - 3509: 7,-10 - 3510: 8,-10 - 3511: 9,-10 - 3550: 20,14 - 3551: 17,14 - 3552: 16,14 - 3553: 15,14 - 3562: 12,21 - 3563: 11,21 - 3564: 10,21 - 3565: 9,21 - 3595: 1,16 - 3596: 2,16 - 3603: -2,9 - 3604: -3,9 - 3629: -3,41 - 3635: -5,33 - 3636: -6,33 - 3637: -8,33 - 3638: -9,33 - 3639: -10,33 - 3640: -11,33 - 3641: -12,33 - 3642: -13,33 - 3643: -14,33 - 3644: -16,33 - 3645: -15,33 - 3646: -17,33 - 3649: -22,34 - 3650: -23,34 - 3651: -24,34 - 3652: -25,34 - 3653: -26,34 - 3654: -27,34 - 3668: -29,45 - 3677: -31,34 - 3678: -32,34 - 3679: -34,34 - 3680: -35,34 - 3681: -36,34 - 3682: -37,34 - 3683: -38,34 - 3687: -41,30 - 3688: -42,30 - 3689: -44,30 - 3690: -46,30 - 3691: -47,30 - 3692: -48,30 - 3693: -49,30 - 3694: -50,30 - 3699: -52,30 - 3700: -55,30 - 3701: -56,30 - 3702: -59,30 - 3703: -60,30 - 3704: -61,30 - 3705: -62,30 - 3706: -63,30 - 3707: -64,30 - 3708: -65,30 - 3709: -66,30 - 3710: -67,30 - 3711: -68,30 - 3712: -69,30 - 3713: -70,30 - 3714: -71,30 - 3715: -73,30 - 3716: -74,30 - 8038: -17,2 - 8072: -15,-8 - 8073: -14,-8 - 8074: -13,-8 - 8075: -12,-8 - 8090: -18,-14 + 8240: -18,17 + 8338: -9,14 + 8339: -6,11 + 8340: -9,14 + 8346: -6,14 + 8347: -9,11 + 10829: -16,7 + 10846: -20,10 - node: - zIndex: 1000 color: '#FFFFFFFF' - id: BrickTileSteelLineN + id: BrickTileWhiteCornerSw decals: - 3357: -8,9 - 3358: -7,9 - 3359: -5,9 - 3360: -1,9 - 3361: 1,9 - 3362: 4,9 - 3363: 4,9 - 3364: 3,9 - 3365: 6,9 - 3366: 10,9 - 3367: 10,9 - 3368: 11,9 - 3369: 15,9 - 3370: 16,9 - 3371: 19,9 - 3417: 14,-15 - 3418: 13,-15 - 3419: 9,-15 - 3420: 10,-15 - 3421: 7,-15 - 3422: 6,-15 - 3423: 4,-15 - 3424: 2,-15 - 3425: -2,-15 - 3426: -3,-15 - 3427: -3,-15 - 3428: -5,-15 + 8337: -7,14 + 8341: -10,11 + 8342: -7,14 + 8348: -7,11 + 8349: -10,14 + 8352: -10,11 + 9081: -10,22 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelLineS + id: BrickTileWhiteEndN decals: - 7188: 9,-3 - 7189: 10,-3 - 7190: 11,-3 - 7191: 7,-3 - 7192: 6,-3 - 7193: 5,-3 - 7195: 10,-3 - 7196: 11,-3 - 7255: 4,-3 - 7256: 5,-3 - 7257: 6,-3 - 7258: 7,-3 - 7276: 0,-20 - 7297: -15,-14 - 7298: -13,-14 - 7299: -13,-16 - 7300: -15,-16 - 7309: -16,-16 - 7310: -15,-16 - 7311: -12,-16 - 7312: -12,-14 - 7313: -16,-14 - 7333: -26,-24 - 7334: -25,-24 - 7338: -26,-24 - 7339: -25,-24 - 7340: -20,-22 - 7341: -20,-24 - 7356: -26,-26 - 7455: -8,12 - 7466: -15,11 - 7467: -14,11 - 7468: -17,11 - 7501: -19,17 - 7516: -23,13 - 7517: -24,13 - 7518: -25,13 - 7519: -26,13 - 7520: -27,13 - 7521: -28,13 - 7529: -22,13 - 7583: 24,1 - 7584: 24,-2 - 7585: 23,-2 - 7586: 22,-2 - 7587: 25,-2 - 7588: 32,-3 - 7589: 33,-3 - 7590: 34,-3 - 7591: 36,-3 - 7592: 37,-3 - 7593: 38,-3 - 7594: 39,-3 - 7663: 33,12 - 7664: 34,12 - 7665: 36,11 - 7666: 37,11 - 7667: 37,11 - 7668: 38,11 - 7669: 31,11 - 7679: 31,11 - 7704: 37,4 - 7705: 37,8 - 7732: 27,-10 - 7733: 26,-10 - 7744: 45,-14 - 7745: 44,-14 - 7746: 43,-14 - 7747: 42,-14 - 7748: 40,-14 - 7749: 39,-14 - 7750: 38,-14 - 7751: 35,-14 - 7756: 52,-9 - 7757: 53,-9 - 7758: 30,-14 - 7759: 31,-14 - 7769: 28,-26 - 7770: 29,-26 - 7771: 30,-26 - 7772: 32,-26 - 7778: 28,-26 - 7779: 29,-26 - 7780: 30,-26 - 7781: 32,-26 - 7789: -38,-23 - 7790: -37,-23 - 7791: -36,-23 - 7792: -35,-23 - 7793: -34,-23 - 7794: -33,-23 - 7795: -32,-23 - 7796: -30,-23 - 7797: -29,-23 - 7798: -28,-23 - 7915: 9,24 - 7916: 10,24 - 7917: 11,24 - 7918: 12,24 + 9045: -24,-13 + 10903: -26,8 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineS + id: BrickTileWhiteEndS decals: - 3512: 6,-6 - 3513: 7,-6 - 3515: 9,-6 - 3534: 12,11 - 3535: 11,11 - 3536: 10,11 - 3537: 9,11 - 3538: 14,11 - 3539: 15,11 - 3540: 16,11 - 3541: 17,11 - 3542: 18,11 - 3543: 19,11 - 3544: 20,11 - 3545: 20,11 - 3765: -71,29 - 3766: -70,29 - 3770: -68,28 - 3771: -66,29 - 3772: -65,29 - 3773: -64,29 - 3774: -59,29 - 3775: -52,29 - 3776: -53,29 - 3777: -47,29 - 3778: -46,29 - 3779: -42,29 - 3780: -41,29 - 3836: -56,10 - 3850: -38,10 - 3885: -74,10 - 3913: -36,32 - 3914: -35,32 - 3915: -34,32 - 3916: -34,32 - 3917: -33,32 - 3918: -32,32 - 3919: -31,32 - 3928: -29,24 - 3935: -27,32 - 3936: -26,32 - 3937: -25,32 - 3938: -24,32 - 3939: -22,32 - 3940: -20,31 - 3941: -19,31 - 3943: -17,31 - 3944: -16,31 - 3945: -15,31 - 3946: -14,31 - 3947: -13,31 - 3948: -12,31 - 3949: -11,31 - 3950: -10,31 - 3951: -9,31 - 3952: -8,31 - 3953: -7,31 - 3954: -7,31 - 3955: -6,31 - 8037: -17,2 - 8068: -15,-12 - 8069: -14,-12 - 8070: -13,-12 - 8071: -12,-12 - 8158: -18,-16 + 8936: -13,-12 + 10909: -26,10 - node: - zIndex: 1000 color: '#FFFFFFFF' - id: BrickTileSteelLineS + id: BrickTileWhiteEndW decals: - 3299: -13,0 - 3386: 18,7 - 3387: 16,7 - 3388: 9,7 - 3389: 6,7 - 3390: 4,7 - 3391: 0,7 - 3392: -3,7 - 3393: -4,7 - 3402: -9,-17 - 3403: -9,-17 - 3404: -10,-17 - 3405: -5,-17 - 3406: -3,-17 - 3407: -2,-17 - 3408: -1,-17 - 3410: 6,-17 - 3412: 12,-17 - 3413: 13,-17 - 3414: 16,-17 - 3415: 19,-17 - 3416: 20,-17 + 8212: -42,39 + 8213: -42,41 + 8214: -42,43 + 8357: -10,17 + 9040: -26,-14 + 10811: -62,34 + 10812: -62,33 + 10813: -62,32 - node: - zIndex: -1 color: '#FFFFFFFF' - id: BrickTileSteelLineW + id: BrickTileWhiteInnerNe decals: - 7202: 2,-3 - 7203: 2,-4 - 7204: 2,-5 - 7228: 12,-10 - 7229: 12,-9 - 7230: 12,-8 - 7231: 12,-7 - 7232: 12,-6 - 7233: 12,-5 - 7234: 12,-4 - 7235: 12,-6 - 7236: 12,-7 - 7237: 12,-8 - 7238: 12,-9 - 7239: 12,-10 - 7240: 12,-11 - 7241: 12,-12 - 7242: 12,-13 - 7271: -1,-19 - 7272: -1,-20 - 7273: -1,-21 - 7274: -1,-22 - 7320: -19,-23 - 7321: -19,-24 - 7322: -19,-22 - 7323: -19,-21 - 7324: -19,-19 - 7325: -19,-18 - 7335: -27,-23 - 7336: -27,-23 - 7344: -27,-25 - 7349: -27,-26 - 7350: -27,-27 - 7351: -27,-28 - 7352: -25,-27 - 7353: -25,-28 - 7362: -25,-25 - 7386: -25,-27 - 7387: -25,-28 - 7388: -25,-29 - 7389: -25,-30 - 7390: -25,-31 - 7391: -25,-32 - 7393: -27,-32 - 7394: -27,-31 - 7395: -27,-30 - 7396: -27,-29 - 7397: -27,-29 - 7398: -27,-28 - 7399: -27,-29 - 7400: -27,-30 - 7401: -27,-32 - 7402: -27,-32 - 7403: -27,-33 - 7404: -27,-33 - 7405: -25,-35 - 7406: -25,-36 - 7407: -26,-37 - 7408: -26,-38 - 7409: -26,-38 - 7410: -26,-39 - 7411: -26,-40 - 7412: -26,-41 - 7435: -11,-14 - 7436: -11,-16 - 7437: -11,-15 - 7438: -11,-17 - 7439: -11,-16 - 7440: -11,-15 - 7441: -11,-14 - 7453: -9,14 - 7458: -9,14 - 7470: -18,12 - 7474: -9,16 - 7482: -9,16 - 7483: -9,18 - 7484: -9,19 - 7485: -9,20 - 7486: -9,21 - 7487: -10,23 - 7507: -21,11 - 7508: -21,12 - 7509: -21,13 - 7510: -21,14 - 7511: -21,16 - 7570: 14,23 - 7571: 14,24 - 7572: 14,25 - 7573: 14,22 - 7616: 29,7 - 7617: 29,5 - 7618: 29,4 - 7619: 29,4 - 7620: 29,3 - 7621: 29,3 - 7622: 29,2 - 7623: 29,1 - 7624: 29,0 - 7643: 23,5 - 7644: 23,4 - 7645: 23,3 - 7646: 23,2 - 7701: 36,7 - 7702: 36,6 - 7703: 36,5 - 7711: 28,-11 - 7712: 28,-12 - 7713: 28,-13 - 7714: 28,-14 - 7715: 28,-15 - 7716: 28,-16 - 7717: 28,-17 - 7718: 28,-18 - 7719: 28,-19 - 7720: 28,-22 - 7776: 27,-25 - 7777: 27,-24 - 7920: 10,25 - 7921: 10,27 + 8263: -20,13 + 8887: -19,-9 + 8911: -19,-4 + 9047: -24,-14 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineW + id: BrickTileWhiteInnerNw decals: - 3506: 10,-7 - 3507: 10,-9 - 3517: 8,-5 - 3566: 8,19 - 3568: 9,17 - 3569: 9,16 - 3570: 9,15 - 3571: 9,14 - 3577: 8,12 - 3586: 3,21 - 3587: 3,20 - 3588: 0,16 - 3631: -4,40 - 3632: -4,39 - 3633: -4,36 - 3634: -4,35 - 3669: -30,44 - 3670: -30,43 - 3671: -30,42 - 3672: -30,41 - 3673: -30,40 - 3674: -30,37 - 3675: -30,36 - 3676: -30,35 - 3685: -39,31 - 3718: -75,29 - 3719: -75,28 - 3720: -75,27 - 3721: -75,26 - 3794: -39,27 - 3795: -39,26 - 3796: -57,27 - 3798: -57,26 - 3807: -57,24 - 3808: -57,23 - 3809: -57,22 - 3810: -57,21 - 3811: -57,20 - 3812: -57,18 - 3813: -57,17 - 3814: -57,16 - 3815: -57,15 - 3816: -57,14 - 3817: -57,13 - 3818: -57,12 - 3819: -57,11 - 3851: -39,11 - 3852: -39,12 - 3853: -39,13 - 3854: -39,14 - 3855: -39,15 - 3856: -39,16 - 3857: -39,17 - 3858: -39,18 - 3860: -39,20 - 3862: -39,21 - 3863: -39,22 - 3864: -39,23 - 3865: -39,24 - 3866: -75,24 - 3867: -75,23 - 3868: -75,23 - 3869: -75,22 - 3870: -75,21 - 3871: -75,20 - 3872: -75,19 - 3873: -75,18 - 3874: -75,17 - 3875: -75,16 - 3876: -75,15 - 3877: -75,14 - 3878: -75,13 - 3879: -75,13 - 3880: -75,12 - 3881: -75,11 - 3920: -30,31 - 3921: -30,30 - 3922: -30,29 - 3923: -30,28 - 3924: -30,27 - 3925: -30,25 - 3961: -4,29 - 3962: -4,29 - 3963: -4,28 - 3964: -4,25 - 3965: -4,24 - 3966: -4,23 - 3967: -4,22 - 3968: -4,21 - 3969: -4,20 - 3970: -4,19 - 3971: -4,17 - 3972: -4,15 - 3973: -4,14 - 3974: -4,13 - 3975: -4,12 - 3976: -4,11 - 3977: -4,10 - 8039: -19,2 - 8040: -19,1 - 8041: -19,-1 - 8042: -19,-2 - 8043: -19,-3 - 8044: -19,-4 - 8045: -19,-5 - 8046: -19,-6 - 8047: -19,-7 - 8048: -19,-8 - 8049: -19,-11 - 8050: -19,-12 - 8051: -19,-13 - 8082: -19,-17 - 8083: -17,-17 - 8152: -16,-9 - 8153: -16,-11 - 8154: -16,-10 - 8156: -19,-15 + 8250: -18,17 + 8262: -20,13 + 8386: -9,17 + 8862: -19,-16 + 8944: -13,-11 + 9046: -24,-14 + 10810: -62,36 + 10816: -41,43 + 10817: -41,41 + 10818: -41,39 + 10849: -20,10 - node: - zIndex: 1000 color: '#FFFFFFFF' - id: BrickTileSteelLineW + id: BrickTileWhiteInnerSe decals: - 3300: -14,1 - 3301: -14,2 - 3302: -14,2 - 3303: -14,3 - 3312: -16,2 - 3313: -16,1 - 3314: -24,-3 - 3315: -24,-2 - 3316: -24,-4 - 3317: -24,-4 - 3318: -24,-4 - 3319: -24,-5 - 3320: -24,-6 - 3332: -16,-5 - 3333: -16,-6 - 3334: -16,-3 - 3335: -16,-4 - 3338: -10,-8 - 3339: -10,-7 - 3340: -10,-6 - 3341: -10,-5 - 3342: -10,-4 - 3344: -10,-2 - 3346: -10,0 - 3347: -10,1 - 3348: -10,2 - 3349: -10,3 - 3354: -10,7 - 3378: 19,-13 - 3379: 19,-9 - 3380: 19,-8 - 3381: 19,-2 - 3382: 19,0 - 3383: 19,3 - 3384: 19,4 - 3385: 19,6 - 3430: -10,-11 - 3431: -10,-10 - 3436: 13,18 + 8248: -20,17 + 8264: -20,13 + 8912: -19,-4 + 10848: -21,10 + 11168: -19,2 - node: - cleanable: True color: '#FFFFFFFF' - id: Damaged + id: BrickTileWhiteInnerSw decals: - 144: -13,3 - 6293: 2,-2 + 8249: -20,17 + 8261: -20,13 + 8356: -9,17 + 8943: -13,-9 + 8945: -13,-11 + 9084: -10,25 + 9085: -9,22 + 10819: -41,41 + 10820: -41,43 + 10821: -41,39 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 8245: -18,18 + 8246: -18,19 + 8251: -20,16 + 8252: -20,15 + 8253: -20,15 + 8254: -20,14 + 8255: -20,12 + 8270: -12,12 + 8271: -12,14 + 8284: -15,15 + 8285: -15,14 + 8286: -15,13 + 8287: -15,12 + 8288: -15,11 + 8289: -15,11 + 8290: -15,10 + 8317: -17,11 + 8318: -17,10 + 8319: -14,11 + 8320: -14,10 + 8355: -9,16 + 8358: -9,17 + 8359: -9,18 + 8360: -9,19 + 8361: -9,20 + 8362: -9,21 + 8390: -14,26 + 8391: -14,25 + 8392: -14,24 + 8393: -14,23 + 8394: -14,23 + 8395: -14,22 + 8863: -18,-13 + 8864: -18,-12 + 8865: -18,-11 + 8866: -18,-10 + 8888: -19,-8 + 8889: -19,-7 + 8890: -19,-6 + 8891: -19,-5 + 8893: -19,-3 + 8894: -19,-2 + 8895: -19,-1 + 8896: -19,0 + 8897: -19,1 + 8940: -13,-10 + 8941: -13,-11 + 9078: -9,24 + 9079: -9,23 + 9080: -9,22 + 9122: -14,27 + 10798: -63,32 + 10799: -63,33 + 10800: -63,34 + 10801: -63,35 + 10802: -63,31 + 10822: -40,39 + 10823: -40,41 + 10824: -40,43 + 10834: -19,8 + 10835: -19,7 + 10842: -21,8 + 10843: -21,9 + 10844: -21,7 + 10845: -21,6 + 10851: -20,11 + 10910: -28,10 + 10911: -28,9 + 10912: -28,8 + 10923: -27,11 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 8208: -39,38 + 8209: -38,38 + 8215: -28,13 + 8216: -27,13 + 8217: -26,13 + 8218: -25,13 + 8219: -25,13 + 8220: -24,13 + 8221: -23,13 + 8222: -22,13 + 8223: -29,13 + 8233: -21,13 + 8242: -21,17 + 8243: -20,17 + 8244: -19,17 + 8266: -19,13 + 8273: -13,15 + 8274: -14,15 + 8275: -16,15 + 8276: -17,15 + 8299: -18,13 + 8300: -18,13 + 8301: -17,13 + 8302: -16,13 + 8303: -15,13 + 8304: -14,13 + 8305: -13,13 + 8306: -13,13 + 8307: -12,13 + 8308: -18,11 + 8309: -17,11 + 8310: -16,11 + 8311: -15,11 + 8312: -14,11 + 8313: -13,11 + 8314: -12,11 + 8323: -11,13 + 8379: -12,25 + 8380: -11,25 + 8433: -17,11 + 8434: -14,11 + 8859: -18,-14 + 8860: -17,-14 + 8903: -18,2 + 8904: -17,2 + 8905: -16,2 + 8906: -15,2 + 8915: -18,-4 + 8916: -17,-4 + 8917: -16,-5 + 8918: -15,-5 + 8919: -14,-5 + 8920: -13,-5 + 8921: -12,-5 + 8922: -17,-9 + 8923: -17,-11 + 8929: -16,-11 + 8930: -15,-11 + 8931: -14,-11 + 8932: -16,-9 + 8933: -15,-9 + 8934: -14,-9 + 9033: -20,-14 + 9041: -25,-14 + 9042: -21,-14 + 9043: -22,-14 + 9044: -23,-14 + 9076: -10,25 + 10806: -65,36 + 10807: -64,36 + 10808: -63,36 + 10879: -18,8 + 10880: -17,8 + 10882: -24,16 + 10883: -27,16 + 10884: -28,16 + 10888: -22,20 + 10889: -21,20 + 10890: -20,20 + 10904: -25,8 + 10905: -24,8 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 8210: -39,38 + 8211: -38,38 + 8224: -29,13 + 8225: -28,13 + 8226: -27,13 + 8227: -26,13 + 8228: -25,13 + 8229: -24,13 + 8230: -23,13 + 8231: -22,13 + 8232: -21,13 + 8237: -21,17 + 8238: -22,17 + 8239: -19,17 + 8265: -19,13 + 8291: -18,13 + 8292: -17,13 + 8293: -16,13 + 8294: -15,13 + 8295: -14,13 + 8296: -13,13 + 8297: -13,13 + 8298: -12,13 + 8324: -11,13 + 8377: -11,25 + 8378: -12,25 + 8907: -18,2 + 8908: -17,2 + 8909: -16,2 + 8910: -15,2 + 8913: -18,-4 + 8914: -17,-4 + 8924: -17,-11 + 8925: -17,-9 + 8926: -16,-9 + 8927: -15,-9 + 8928: -14,-9 + 8937: -16,-11 + 8938: -15,-11 + 8939: -14,-11 + 9034: -20,-14 + 9035: -21,-14 + 9036: -22,-14 + 9037: -23,-14 + 9038: -24,-14 + 9039: -25,-14 + 10830: -17,7 + 10878: -18,7 + 10885: -22,22 + 10886: -21,22 + 10887: -20,22 + 10906: -25,10 + 10907: -24,10 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 8234: -20,14 + 8235: -20,15 + 8236: -20,16 + 8241: -18,18 + 8247: -18,19 + 8258: -20,12 + 8267: -18,14 + 8268: -18,12 + 8277: -15,15 + 8278: -15,14 + 8279: -15,13 + 8280: -15,13 + 8281: -15,12 + 8282: -15,11 + 8283: -15,10 + 8315: -17,11 + 8316: -17,10 + 8321: -14,11 + 8322: -14,10 + 8354: -9,16 + 8367: -9,18 + 8368: -9,19 + 8369: -9,20 + 8370: -9,21 + 8396: -14,22 + 8397: -14,23 + 8398: -14,24 + 8399: -14,25 + 8400: -14,26 + 8861: -19,-15 + 8868: -19,-12 + 8869: -19,-13 + 8870: -19,-13 + 8871: -19,-11 + 8872: -19,-10 + 8873: -19,-9 + 8874: -19,-8 + 8875: -19,-7 + 8876: -19,-5 + 8877: -19,-6 + 8879: -19,-3 + 8880: -19,-1 + 8881: -19,-2 + 8882: -19,0 + 8884: -19,1 + 8900: -19,-4 + 8942: -13,-10 + 9082: -10,23 + 9083: -10,24 + 9123: -14,27 + 10803: -64,31 + 10804: -64,32 + 10805: -64,33 + 10809: -62,37 + 10825: -40,43 + 10826: -40,41 + 10827: -40,39 + 10836: -19,8 + 10837: -19,7 + 10838: -21,7 + 10839: -21,6 + 10840: -21,8 + 10841: -21,9 + 10852: -20,11 + 10924: -27,11 - node: color: '#FFFFFFFF' id: Delivery decals: - 3039: -14,-16 - 3040: -10,-13 - 3041: -9,-13 - 3042: -8,-13 - 3050: -6,7 - 3051: -6,8 - 3052: -6,9 - 3053: 5,7 - 3054: 5,8 - 3055: 5,9 - 3056: 17,7 - 3057: 17,8 - 3070: 27,-1 - 3071: 27,-2 - 3075: 22,-14 - 3076: 22,-13 - 3077: 22,-12 - 3080: 19,-15 - 3081: 18,-16 - 3082: 18,-17 - 3083: 11,-15 - 3084: 11,-16 - 3085: 11,-17 - 3086: 12,-14 - 3087: 13,-14 - 3088: 24,-22 - 3089: 23,-22 - 3090: 23,-30 - 3091: 22,-30 - 3092: 49,-14 - 3093: -4,16 - 3094: -3,16 - 3095: -2,16 - 3099: -4,30 - 3100: -3,30 - 3103: -3,34 - 3104: -4,34 - 3116: -40,30 - 3117: -40,29 - 3119: -39,25 - 3120: -38,25 - 3121: -37,25 - 3123: -54,29 - 3124: -54,30 - 3125: -58,30 - 3127: -58,29 - 3128: -57,25 - 3129: -56,25 - 3130: -55,25 - 3132: -74,25 - 3133: -75,25 - 3135: -38,19 - 3136: -37,19 - 3137: -55,19 - 3138: -56,19 - 3139: -57,19 - 3141: -8,-20 - 3142: -72,30 - 3143: -72,29 3146: -21,-44 3147: -21,-45 3148: -21,-46 3149: -19,-44 3150: -19,-45 3151: -19,-46 - 3175: 21,5 - 3176: 20,5 - 3178: 21,-1 - 3179: 20,-1 - 3180: 19,-1 - 3181: -14,-14 - 3239: -14,-10 - 3240: -12,-10 - 3241: -12,-11 - 3242: -12,-9 - 3243: -14,-3 - 3244: -12,-2 - 3245: -16,-2 - 3861: -39,19 - 3907: -73,25 - 4231: -31,-23 - 4233: -35,-21 8175: -36,-29 8177: -36,-32 - 8196: -27,34 - 8197: -27,33 - 8198: -27,32 - 8199: -28,35 - 8200: -29,35 - 8201: -30,35 - 8202: -31,34 - 8203: -31,33 - 8204: -31,32 - 8205: -30,31 - 8206: -29,31 - 8207: -28,31 + 8624: 31,2 + 8625: 31,1 + 8626: 32,1 + 8627: 32,2 + 8628: 32,2 + 8629: 33,2 + 8630: 33,1 + 8631: 33,-1 + 8632: 32,-1 + 8633: 31,-1 + 8634: 31,-2 + 8635: 32,-2 + 8636: 33,-2 + 8637: 35,-2 + 8638: 35,-1 + 8639: 36,-1 + 8640: 36,-2 + 8641: 37,-2 + 8642: 37,-1 + 8643: 37,1 + 8644: 37,2 + 8645: 36,2 + 8646: 36,1 + 8647: 35,1 + 8648: 35,2 + 8856: -24,-21 + 8857: -23,-21 - node: - zIndex: 1000 - color: '#FFFFFFFF' - id: Delivery + color: '#DE3A3AFF' + id: DeliveryGreyscale decals: - 3352: -9,5 - 3353: -8,5 + 9936: 28,-27 + 9937: 29,-27 - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Delivery + color: '#FBB2FFFF' + id: DeliveryGreyscale decals: - 3163: -8,-1 - 3166: -18,33 - 3167: -18,32 + 9063: -25,-13 + 9064: -23,-13 + 9065: -21,-15 + 9066: -27,-15 + 9067: -25,-17 + 9068: -23,-17 + 9069: -14,-10 + 9070: -12,-10 + 9071: -12,-11 + 9072: -12,-9 + 9073: -12,-10 + 9074: -16,-2 + 9075: -12,-2 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 121: -13,3 - 122: -12,3 - 123: -13,3 - 225: 0,-2 - 236: -9,-6 - 237: -10,-6 - 238: -10,-4 - 239: -9,-3 - 240: -9,-3 - 241: -8,-4 - 242: -8,-5 - 243: -8,-6 - 244: -9,-7 - 245: -9,-8 - 246: -9,-8 - 247: -8,-9 - 248: -9,-11 - 249: -9,-12 - 250: -8,-13 - 251: -9,-14 - 252: -9,-16 - 253: -7,-17 - 254: -6,-16 - 255: -4,-15 - 256: -3,-16 - 257: -3,-17 - 258: -2,-17 - 259: -1,-16 - 260: 2,-16 - 261: 1,-17 - 262: 1,-17 - 263: 4,-17 - 264: 5,-16 - 265: 7,-16 - 266: 7,-17 - 267: 6,-17 - 268: 6,-16 - 269: 8,-16 - 271: 12,-16 - 272: 12,-15 - 275: 14,-17 - 276: 14,-15 - 277: 13,-16 - 278: 13,-16 - 279: 16,-17 - 280: 15,-16 - 281: 14,-16 - 282: 13,-15 - 283: 12,-14 - 284: 13,-13 - 285: 12,-12 - 286: 12,-13 - 287: 13,-15 - 288: 14,-16 - 289: 16,-16 - 290: 17,-17 - 291: 16,-17 - 292: 18,-17 - 293: 19,-17 - 294: 21,-17 - 295: 21,-16 - 296: 22,-17 - 297: 23,-17 - 298: 24,-18 - 299: 23,-19 - 300: 23,-20 - 301: 24,-21 - 302: 23,-22 - 303: 23,-24 - 304: 23,-25 - 305: 24,-23 - 306: 24,-24 - 307: 24,-25 - 308: 23,-27 - 309: 22,-27 - 310: 22,-28 - 311: 23,-28 - 312: 23,-28 - 313: 22,-30 - 314: 22,-31 - 315: 23,-30 - 316: 23,-30 - 317: 22,-32 - 318: 23,-33 - 319: 22,-33 - 320: 22,-34 - 321: 23,-35 - 322: 22,-35 - 323: 23,-34 - 324: 23,-34 - 325: 23,-30 - 326: 23,-29 - 327: 23,-28 - 328: 24,-24 - 329: 23,-22 - 330: 23,-21 - 331: 23,-19 - 332: 23,-19 - 333: 23,-17 - 334: 22,-16 - 335: 20,-16 - 336: 19,-16 - 337: 20,-14 - 338: 20,-14 - 339: 20,-12 - 340: 19,-12 - 341: 19,-11 - 342: 20,-9 - 343: 21,-10 - 345: 20,-10 - 346: 20,-9 - 347: 20,-7 - 348: 20,-6 - 350: 19,-7 - 351: 19,-5 - 352: 20,-4 - 353: 20,-3 - 354: 21,-4 - 355: 21,-5 - 356: 20,-4 - 357: 20,-2 - 359: 21,0 - 360: 21,-2 - 361: 20,-2 - 362: 20,0 - 363: 20,2 - 364: 20,3 - 365: 21,1 - 366: 21,2 - 367: 21,3 - 369: 23,4 - 370: 24,4 - 371: 25,2 - 372: 25,2 - 373: 26,3 - 374: 26,3 - 375: 26,5 - 376: 26,6 - 377: 26,6 - 378: 24,5 - 379: 20,2 - 380: 20,2 - 381: 20,4 - 382: 21,4 - 383: 21,6 - 384: 21,8 - 385: 19,8 - 386: 19,7 - 387: 19,9 - 388: 19,8 - 389: 16,8 - 390: 15,7 - 391: 16,7 - 392: 16,9 - 393: 15,9 - 394: 14,8 - 395: 12,7 - 396: 14,8 - 397: 14,9 - 398: 11,8 - 399: 10,7 - 400: 11,7 - 401: 12,9 - 402: 9,8 - 403: 10,8 - 404: 10,8 - 405: 8,7 - 406: 11,7 - 407: 10,9 - 408: 7,8 - 409: 7,8 - 410: 7,8 - 411: 6,8 - 412: 7,9 - 413: 7,8 - 414: 8,7 - 415: 10,8 - 416: 7,7 - 417: 5,8 - 418: 4,8 - 419: 3,9 - 420: 3,8 - 421: 4,8 - 422: 2,7 - 423: 0,7 - 424: 0,8 - 425: -1,9 - 426: -2,8 - 427: -1,7 - 428: -3,8 - 429: -5,7 - 430: -4,8 - 431: -6,8 - 432: -8,9 - 433: -8,8 - 434: -8,7 - 437: -8,4 - 438: -9,3 - 439: -9,3 - 440: -9,3 - 441: -9,4 - 442: -9,4 - 443: -10,2 - 444: -10,2 - 445: -9,1 - 446: -9,0 - 447: -9,1 - 448: -9,1 - 449: -8,1 - 450: -8,1 - 451: -9,0 - 452: -9,-2 - 453: -9,-3 - 454: -9,-3 - 455: -9,-2 - 456: -9,1 - 457: -9,4 - 458: -8,7 - 459: -6,9 - 460: -4,8 - 461: -4,9 - 462: -4,12 - 463: -3,13 - 464: -3,11 - 465: -3,11 - 466: -2,14 - 467: -2,14 - 468: -2,13 - 469: -2,14 - 470: -2,16 - 471: -3,18 - 472: -4,18 - 473: -3,17 - 474: -3,19 - 475: -3,21 - 476: -2,21 - 477: -2,20 - 478: -2,19 - 479: -3,22 - 480: -4,23 - 481: -4,21 - 482: -3,25 - 483: -3,25 - 484: -2,24 - 485: -2,26 - 486: -2,24 - 487: -3,26 - 488: -4,25 - 489: -4,28 - 490: -4,27 - 491: -3,29 - 492: -3,28 - 494: -2,29 - 495: -3,32 - 496: -4,31 - 497: -4,33 - 498: -4,32 - 499: -4,34 - 500: -3,33 - 501: -2,33 - 502: -2,32 - 503: -2,33 - 504: -2,35 - 505: -3,35 - 506: -3,37 - 507: -3,36 - 508: -3,37 - 509: -3,39 - 510: -4,37 - 511: -4,38 - 512: -3,40 - 513: -3,41 - 514: -2,41 - 515: -2,39 - 516: -2,37 - 517: -5,33 - 518: -7,32 - 519: -8,33 - 520: -9,31 - 521: -7,32 - 522: -8,33 - 523: -10,32 - 524: -11,32 - 525: -13,32 - 526: -14,31 - 527: -13,31 - 528: -13,31 - 529: -14,31 - 530: -15,32 - 531: -15,33 - 532: -17,33 - 535: -21,32 - 536: -19,33 - 537: -21,33 - 538: -20,33 - 539: -23,33 - 540: -21,32 - 541: -24,32 - 542: -23,32 - 543: -24,33 - 544: -26,33 - 545: -26,33 - 549: -29,35 - 550: -29,37 - 551: -29,36 - 552: -30,38 - 553: -30,40 - 554: -29,41 - 555: -29,43 - 556: -31,34 - 557: -32,34 - 558: -33,33 - 559: -31,32 - 560: -31,33 - 561: -32,33 - 562: -35,32 - 563: -36,32 - 564: -38,33 - 565: -39,33 - 566: -39,32 - 567: -37,33 - 568: -38,34 - 569: -38,32 - 570: -38,30 - 571: -39,29 - 572: -38,28 - 573: -37,29 - 574: -37,29 - 575: -38,27 - 576: -39,27 - 577: -38,26 - 578: -38,24 - 579: -38,23 - 580: -38,25 - 581: -37,24 - 582: -37,22 - 583: -37,21 - 584: -37,20 - 585: -38,21 - 586: -38,22 - 587: -38,21 - 588: -38,18 - 589: -38,16 - 590: -38,16 - 591: -39,18 - 592: -39,18 - 593: -38,17 - 594: -37,17 - 595: -36,16 - 596: -36,16 - 597: -37,14 - 598: -39,13 - 599: -37,14 - 600: -37,12 - 601: -38,10 - 602: -37,11 - 603: -37,11 - 604: -38,11 - 605: -37,10 - 606: -37,10 - 607: -36,10 - 632: -16,10 - 663: -9,13 - 671: -9,18 672: -8,17 - 673: -9,20 - 674: -10,20 - 675: -10,19 - 676: -9,20 - 677: -9,21 - 678: -10,23 - 679: -10,24 - 682: -9,23 - 683: -13,24 - 684: -14,24 - 685: -14,23 - 686: -14,23 - 687: -14,24 - 688: -14,25 - 689: -14,25 - 690: -13,25 - 691: -14,26 - 692: -14,26 - 693: -14,26 - 694: -14,25 - 695: -15,24 - 696: -15,23 - 697: -14,22 - 739: -13,-10 - 740: -13,-10 - 742: -15,-11 - 751: -21,-9 - 752: -22,-10 - 753: -22,-10 - 754: -23,-10 - 755: -24,-9 - 756: -22,-9 - 757: -24,-10 - 758: -24,-10 - 759: -22,-10 - 760: -24,-9 - 761: -22,-9 - 762: -23,-9 - 763: -23,-9 - 796: -25,-13 - 797: -24,-14 - 798: -24,-13 - 799: -24,-13 - 800: -23,-13 - 801: -21,-13 - 802: -21,-13 - 803: -21,-14 - 804: -21,-15 - 805: -22,-15 - 806: -22,-15 - 807: -23,-15 - 808: -23,-15 - 843: -18,-19 - 844: -19,-20 - 845: -18,-18 - 846: -17,-19 - 847: -17,-19 - 848: -17,-20 - 849: -17,-22 - 850: -17,-22 - 851: -17,-24 - 852: -18,-23 - 853: -18,-22 - 854: -17,-23 - 855: -17,-23 - 869: -18,-22 - 870: -19,-22 - 871: -19,-21 - 872: -19,-21 - 873: -19,-19 - 874: -19,-19 - 875: -19,-18 - 876: -18,-18 - 877: -17,-18 - 880: -21,-21 - 881: -21,-23 - 882: -21,-23 - 886: -25,-23 - 887: -26,-23 - 888: -26,-23 - 889: -25,-23 - 892: -24,-24 - 893: -23,-23 - 894: -22,-23 - 919: -22,-28 - 920: -23,-28 - 921: -23,-29 - 922: -23,-29 - 923: -22,-29 - 924: -21,-27 - 925: -21,-29 - 926: -21,-31 - 927: -23,-31 - 928: -22,-31 - 929: -26,-30 - 930: -27,-31 - 931: -26,-32 - 932: -25,-31 - 933: -25,-30 - 934: -27,-32 - 935: -26,-34 - 936: -25,-35 - 937: -25,-33 - 938: -27,-34 - 951: -25,-40 - 952: -26,-41 - 953: -27,-40 - 954: -27,-39 - 955: -27,-38 - 956: -26,-38 - 957: -25,-39 - 958: -24,-41 - 960: -23,-39 - 961: -22,-38 - 962: -22,-38 - 963: -21,-38 - 964: -22,-36 - 965: -23,-36 - 966: -23,-37 - 967: -23,-38 - 968: -23,-38 - 969: -24,-37 - 970: -24,-38 - 971: -23,-37 - 972: -23,-37 - 973: -23,-37 - 974: -23,-37 - 975: -23,-37 - 976: -25,-35 - 977: -24,-34 - 978: -24,-33 - 979: -25,-35 - 980: -22,-33 - 981: -21,-33 - 982: -22,-33 - 983: -22,-33 - 984: -21,-30 - 985: -22,-30 - 986: -22,-29 - 987: -22,-28 - 988: -22,-27 - 989: -23,-27 - 990: -23,-29 - 991: -22,-22 - 994: -24,-21 - 996: -26,-21 - 997: -26,-21 - 1011: -23,-29 - 1012: -23,-30 - 1013: -23,-30 - 1014: -22,-31 1015: -18,-29 1016: -14,-28 1017: -10,-27 @@ -3289,144 +3213,11 @@ entities: 1022: 3,-30 1023: 1,-32 1024: 2,-32 - 1025: -1,-23 - 1026: -1,-23 - 1027: -1,-22 - 1028: 0,-22 - 1029: 1,-22 - 1030: -1,-23 - 1031: -2,-24 1032: -4,-24 - 1033: -1,-23 - 1034: 0,-21 - 1035: -1,-19 - 1036: 0,-19 - 1037: 0,-20 - 1038: -3,-20 - 1039: -3,-19 - 1040: -3,-19 - 1041: -3,-19 - 1070: 7,-21 - 1071: 9,-21 - 1072: 9,-21 - 1073: 10,-20 - 1074: 10,-20 - 1075: 10,-21 - 1088: 7,-23 - 1089: 7,-23 - 1090: 6,-23 - 1091: 8,-24 - 1092: 8,-24 - 1190: 31,-13 - 1195: 30,-12 - 1196: 31,-14 - 1197: 30,-13 - 1198: 30,-13 - 1199: 29,-13 - 1204: 25,-8 - 1206: 23,-10 - 1280: 20,17 - 1281: 20,17 - 1282: 20,17 - 1283: 20,17 - 1284: 20,17 - 1285: 19,17 - 1286: 19,16 - 1287: 17,16 - 1288: 16,16 - 1289: 16,18 - 1290: 17,19 - 1291: 17,19 - 1292: 16,19 - 1293: 16,20 - 1294: 15,20 - 1295: 13,19 - 1296: 13,18 - 1297: 13,18 - 1298: 12,18 - 1299: 11,18 - 1300: 10,18 - 1301: 9,19 - 1302: 9,20 - 1303: 10,21 - 1304: 11,21 - 1305: 12,19 - 1306: 11,19 - 1307: 10,19 - 1308: 10,20 - 1309: 11,20 - 1311: 14,21 - 1312: 14,22 - 1313: 14,24 - 1314: 14,25 - 1315: 14,24 - 1316: 14,23 - 1317: 14,23 - 1354: 20,22 - 1355: 19,22 - 1356: 20,21 - 1357: 21,21 - 1358: 21,22 1359: 22,22 1360: 22,22 1361: 22,22 - 1362: 23,24 - 1363: 23,24 - 1364: 23,24 - 1365: 22,25 - 1366: 20,25 - 1367: 21,25 - 1368: 21,25 - 1369: 20,24 - 1370: 19,24 - 1371: 20,24 - 1372: 21,23 - 1373: 21,22 - 1374: 17,24 - 1375: 16,23 - 1376: 16,22 - 1377: 16,22 - 1378: 16,20 - 1379: 16,19 - 1380: 16,18 - 1381: 16,20 - 1382: 25,25 - 1383: 24,26 - 1384: 24,26 1385: 24,27 - 1386: 24,28 - 1387: 23,28 - 1388: 21,29 - 1389: 17,28 - 1390: 17,29 - 1391: 18,29 - 1392: 17,29 - 1393: 15,29 - 1394: 11,30 - 1472: -12,47 - 1473: -10,47 - 1474: -11,47 - 1475: -11,47 - 1476: -10,47 - 1477: -10,48 - 1478: -10,48 - 1490: -15,47 - 1491: -15,47 - 1492: -15,47 - 1493: -15,47 - 1494: -15,47 - 1495: -15,47 - 1496: -15,48 - 1497: -15,48 - 1498: -15,48 - 1499: -15,48 - 1500: -15,48 - 1501: -15,48 - 1502: -14,48 - 1503: -14,48 - 1504: -14,47 - 1505: -14,47 - 1506: -15,46 1507: -18,46 1508: -18,47 1509: -18,48 @@ -3435,2136 +3226,23 @@ entities: 1512: -17,45 1513: -18,44 1514: -18,41 - 1515: -19,40 1516: -21,40 - 1517: -22,40 - 1518: -21,36 - 1519: -21,36 - 1520: -20,37 - 1521: -21,37 - 1522: -22,38 - 1523: -23,38 - 1571: -29,48 - 1572: -29,48 - 1573: -29,47 - 1574: -29,47 - 1575: -28,47 - 1576: -28,46 - 1577: -28,44 - 1578: -29,43 - 1579: -30,43 - 1580: -30,45 - 1581: -28,44 - 1582: -28,42 - 1583: -29,40 - 1584: -31,40 - 1585: -33,41 - 1586: -33,42 - 1587: -33,42 - 1588: -31,40 - 1589: -32,40 - 1590: -34,41 - 1591: -35,39 - 1592: -36,39 - 1593: -35,38 - 1594: -35,38 - 1595: -35,37 - 1596: -34,37 - 1597: -33,37 - 1598: -33,37 - 1599: -32,39 - 1659: -39,38 - 1660: -39,38 - 1661: -38,38 - 1662: -38,38 - 1663: -38,39 - 1664: -38,39 - 1665: -38,39 - 1666: -38,40 - 1667: -38,40 - 1668: -38,41 - 1669: -38,42 - 1670: -38,41 - 1671: -38,40 - 1672: -39,38 - 1673: -39,37 - 1674: -39,37 - 1675: -40,36 - 1676: -41,36 - 1677: -42,37 - 1678: -41,37 - 1679: -41,37 - 1680: -39,36 - 1681: -39,36 - 1682: -38,37 - 1683: -38,38 - 1684: -41,39 - 1685: -42,39 - 1686: -42,39 - 1687: -41,39 - 1688: -41,39 - 1689: -41,39 - 1710: -29,40 - 1711: -29,41 - 1712: -28,40 - 1713: -28,39 - 1714: -29,36 - 1716: -33,33 - 1717: -36,33 - 1718: -35,34 - 1719: -34,34 - 1720: -35,33 - 1721: -36,33 - 1722: -38,32 - 1723: -38,30 - 1724: -37,29 - 1725: -38,30 - 1726: -39,27 - 1727: -40,29 - 1728: -42,29 - 1729: -44,29 - 1730: -45,28 - 1731: -44,29 - 1732: -45,29 - 1733: -45,29 - 1734: -47,29 - 1735: -46,28 - 1736: -47,29 - 1737: -48,28 - 1738: -48,29 - 1739: -50,29 - 1740: -49,29 - 1741: -53,28 - 1742: -52,29 - 1743: -53,28 - 1744: -53,29 - 1745: -56,28 - 1746: -55,29 - 1747: -57,29 - 1748: -57,30 - 1749: -60,28 - 1750: -60,30 - 1751: -62,29 - 1752: -61,29 - 1753: -64,29 - 1754: -64,30 - 1755: -66,28 - 1756: -65,30 - 1757: -66,29 - 1758: -70,30 - 1759: -71,28 - 1760: -65,30 - 1761: -65,30 - 1762: -65,28 - 1763: -63,29 - 1764: -62,29 - 1765: -62,30 - 1766: -63,30 - 1767: -65,29 - 1768: -69,28 - 1769: -69,28 - 1770: -65,28 - 1771: -63,28 - 1772: -61,29 - 1773: -60,30 - 1774: -58,30 - 1775: -56,30 - 1776: -55,29 - 1777: -55,28 - 1778: -53,28 - 1779: -52,29 - 1780: -51,29 - 1781: -50,29 - 1782: -50,28 - 1783: -50,28 - 1784: -49,28 - 1785: -47,29 - 1786: -45,30 - 1787: -44,30 - 1788: -44,29 - 1789: -44,29 - 1790: -45,28 - 1791: -44,28 - 1792: -42,28 - 1793: -40,29 - 1794: -39,30 - 1795: -39,30 - 1796: -39,29 - 1797: -38,28 - 1798: -38,29 - 1799: -38,31 - 1800: -39,29 - 1801: -38,30 - 1802: -38,34 - 1803: -38,34 - 1804: -37,33 - 1805: -35,33 - 1806: -36,33 - 1807: -34,32 - 1808: -33,33 - 1809: -33,32 - 1810: -31,32 - 1811: -31,34 - 1812: -31,33 - 1813: -29,32 - 1814: -29,34 - 1815: -30,33 - 1817: -26,33 - 1818: -27,33 - 1819: -26,32 - 1820: -24,32 - 1821: -24,33 - 1822: -25,32 - 1823: -22,32 - 1824: -20,33 - 1825: -23,34 - 1826: -26,33 - 1828: -29,30 - 1829: -29,28 - 1830: -29,29 - 1831: -28,31 - 1832: -28,31 - 1833: -28,30 - 1834: -28,30 - 1835: -28,29 - 1836: -28,28 - 1837: -29,26 - 1838: -30,24 - 1839: -30,24 - 1840: -29,24 - 1841: -29,25 - 1842: -29,26 - 1843: -28,26 - 1844: -27,26 - 1845: -26,26 - 1846: -25,25 - 1847: -24,25 - 1848: -23,24 - 1849: -23,26 - 1850: -23,26 - 1851: -26,26 - 1852: -27,27 1853: -27,28 - 1854: -26,28 - 1855: -25,28 - 1856: -24,29 - 1857: -24,29 - 1858: -24,29 1859: -27,28 - 1860: -30,27 - 1861: -31,28 - 1862: -33,29 - 1863: -33,29 - 1864: -33,26 - 1865: -33,25 - 1866: -33,25 - 1867: -34,25 - 1868: -33,24 - 1869: -32,26 - 1870: -35,26 - 1871: -34,24 - 1872: -33,24 - 1873: -30,26 - 1874: -28,29 - 1876: -26,33 - 1877: -24,33 - 1878: -22,32 - 1879: -20,32 - 1881: -16,32 - 1882: -15,32 - 1883: -15,33 1884: -15,30 - 1885: -13,31 - 1886: -12,32 - 1887: -11,31 - 1888: -10,32 - 1889: -10,32 - 1890: -8,32 - 1891: -8,33 - 1892: -8,32 - 1896: -5,32 - 1897: -5,32 - 1898: -5,32 - 1899: -4,33 - 2152: 23,-33 - 2153: 22,-34 - 2154: 22,-34 - 2155: 23,-34 - 2156: 23,-33 - 2157: 23,-32 - 2158: 23,-29 - 2159: 23,-27 - 2160: 24,-26 - 2161: 24,-26 - 2162: 24,-27 - 2163: 24,-27 - 2164: 24,-27 - 2165: 24,-24 - 2166: 24,-22 - 2167: 24,-21 - 2168: 24,-20 - 2169: 24,-21 - 2170: 24,-21 - 2171: 24,-19 - 2172: 24,-17 - 2173: 24,-17 - 2174: 24,-17 - 2175: 24,-16 - 2176: 19,-16 - 2177: 19,-17 - 2178: 21,-17 - 2179: 21,-16 - 2180: 18,-17 - 2181: 19,-17 - 2182: 20,-17 - 2183: 19,-17 - 2184: 17,-16 - 2185: 15,-16 - 2186: 14,-16 - 2187: 15,-15 - 2188: 15,-15 - 2189: 14,-15 - 2190: 15,-16 - 2191: 13,-17 - 2192: 11,-17 - 2193: 12,-15 - 2194: 13,-13 - 2195: 13,-12 - 2196: 13,-12 - 2197: 12,-13 - 2198: 12,-14 - 2199: 12,-15 - 2200: 12,-16 - 2201: 11,-17 - 2202: 10,-16 - 2203: 10,-15 2204: 11,-14 - 2205: 9,-15 - 2206: 7,-16 - 2207: 7,-16 - 2208: 8,-15 - 2209: 6,-15 - 2210: 6,-16 - 2211: 9,-16 - 2212: 8,-15 - 2213: 6,-15 - 2214: 4,-16 - 2215: 6,-17 - 2216: 6,-16 - 2217: 4,-16 - 2218: 3,-16 - 2219: 3,-17 - 2220: 4,-17 - 2221: 4,-16 2222: 3,-18 - 2223: 3,-20 - 2224: 4,-20 - 2225: 4,-19 - 2226: 4,-18 - 2227: 3,-16 - 2228: 1,-15 - 2229: 0,-16 - 2230: 0,-17 - 2231: 1,-16 - 2232: 1,-15 - 2233: 0,-15 - 2234: -2,-15 2235: -4,-16 - 2236: -3,-16 - 2237: -2,-16 - 2238: -2,-15 - 2239: -4,-15 - 2240: -6,-15 - 2241: -6,-16 - 2242: -4,-17 - 2243: -5,-15 - 2244: -6,-15 - 2245: -8,-15 - 2246: -8,-16 - 2247: -7,-16 - 2248: -8,-16 - 2249: -9,-16 - 2250: -8,-17 - 2251: -6,-17 - 2252: -6,-16 - 2253: -8,-15 - 2254: -10,-15 - 2255: -10,-16 - 2256: -8,-14 - 2257: -9,-12 - 2258: -10,-13 - 2259: -8,-13 - 2260: -9,-10 - 2261: -10,-10 - 2262: -9,-11 - 2263: -8,-10 - 2264: -9,-9 - 2265: -10,-9 - 2266: -8,-8 - 2267: -8,-6 - 2268: -10,-7 - 2269: -9,-7 - 2270: -9,-5 - 2271: -10,-7 - 2272: -8,-5 - 2273: -9,-5 - 2274: -8,-5 - 2276: -9,-5 - 2278: -10,-4 - 2279: -8,-3 - 2281: -9,-2 - 2282: -8,0 - 2284: -8,1 - 2285: -10,2 - 2286: -9,2 - 2288: -9,3 - 2289: -9,6 - 2290: -10,6 - 2291: -8,6 - 2292: -10,6 - 2293: -8,7 - 2294: -8,7 - 2295: -7,9 - 2296: -8,8 - 2297: -3,9 - 2298: -2,12 - 2299: -3,14 2314: -11,14 - 2339: -14,10 - 2340: -13,10 - 2341: -12,10 - 2346: -16,13 - 2365: -19,19 - 2366: -18,19 - 2369: -18,19 - 2370: -18,22 - 2371: -19,22 - 2372: -20,21 - 2373: -20,20 - 2374: -19,20 - 2375: -18,22 - 2376: -19,22 - 2377: -21,21 - 2378: -22,20 - 2379: -21,20 - 2380: -19,20 - 2381: -18,22 2382: -17,23 - 2383: -18,24 - 2384: -18,25 - 2385: -18,25 - 2386: -19,25 - 2387: -20,25 - 2388: -20,24 - 2389: -19,24 - 2390: -18,24 - 2391: -17,26 - 2392: -18,26 - 2393: -19,26 - 2394: -21,26 - 2395: -21,25 - 2396: -19,25 - 2397: -18,25 - 2398: -18,24 - 2399: -18,22 - 2400: -18,21 - 2401: -18,19 - 2417: -26,15 - 2427: -31,13 - 2428: -31,14 - 2429: -33,14 - 2430: -28,12 - 2431: -26,11 - 2432: -25,10 - 2437: -26,11 - 2438: -29,10 - 2672: 32,6 - 2673: 31,7 - 2674: 30,6 - 2675: 30,5 - 2676: 29,3 - 2677: 29,3 - 2678: 29,2 - 2679: 30,2 - 2680: 32,4 - 2681: 33,6 - 2682: 33,7 - 2683: 33,7 - 2684: 31,6 - 2685: 30,4 - 2686: 29,2 - 2687: 29,1 - 2688: 29,0 - 2689: 30,0 - 2690: 30,2 - 2691: 30,2 - 2693: 29,-2 - 2694: 30,-3 - 2695: 31,-3 - 2696: 32,-3 - 2697: 33,-3 - 2698: 35,-3 - 2699: 33,-2 - 2701: 26,-1 - 2702: 24,-1 - 2703: 24,-2 - 2704: 24,-2 - 2705: 25,-2 - 2706: 25,-2 - 2707: 24,-1 - 2708: 23,-1 - 2709: 23,-2 - 2710: 24,-3 - 2711: 25,-1 - 2712: 25,1 - 2713: 25,2 - 2714: 26,2 - 2715: 26,3 - 2716: 25,3 - 2717: 24,3 - 2718: 25,4 - 2719: 25,4 - 2720: 27,4 - 2721: 29,4 - 2722: 29,4 - 2723: 30,6 - 2724: 30,7 - 2725: 30,4 - 2726: 31,3 - 2727: 32,5 - 2728: 31,5 - 2729: 31,4 - 2730: 32,4 - 2731: 34,5 - 2732: 34,5 - 2733: 34,4 - 2734: 35,5 - 2735: 35,5 - 2736: 36,5 - 2739: 37,4 - 2740: 38,4 - 2741: 38,5 - 2742: 38,7 - 2745: 38,7 - 2746: 38,5 - 2747: 38,4 - 2748: 40,5 - 2749: 40,5 - 2750: 41,5 - 2751: 41,5 - 2752: 41,7 - 2753: 41,8 - 2754: 42,7 - 2756: 42,5 - 2757: 42,4 - 2758: 42,4 - 2759: 42,5 - 2760: 42,5 - 2761: 43,5 - 2762: 43,5 - 2763: 43,5 - 2764: 42,5 - 2765: 42,5 - 2766: 42,5 - 2767: 41,4 - 2768: 41,4 - 2769: 40,4 - 2770: 40,4 - 2771: 39,4 - 2772: 37,4 - 2773: 37,6 - 2774: 37,7 - 2775: 36,7 - 2776: 37,6 - 2777: 36,7 - 2778: 34,7 - 2779: 32,7 - 2780: 30,7 - 2781: 29,8 - 2782: 30,9 - 2783: 30,11 - 2784: 29,11 - 2785: 30,10 - 2786: 31,10 - 2787: 31,10 - 2788: 30,11 - 2789: 29,13 - 2792: 31,14 - 2793: 31,13 - 2794: 31,12 - 2795: 31,12 - 2796: 31,13 - 2797: 31,14 - 2798: 31,13 - 2799: 31,12 - 2800: 31,13 - 2801: 31,13 - 2802: 31,13 - 2803: 31,13 - 2804: 31,12 - 2805: 32,10 - 2806: 34,11 - 2807: 34,12 - 2809: 32,12 - 2810: 33,11 - 2811: 36,11 - 2812: 37,10 - 2813: 38,11 - 2814: 35,11 - 2815: 35,11 - 2816: 36,11 - 2817: 38,11 - 2818: 38,11 - 2819: 38,13 - 2820: 38,14 - 2821: 38,15 - 2822: 37,14 - 2823: 37,14 - 2824: 37,14 - 2825: 37,15 - 2826: 38,13 - 2827: 39,14 - 2828: 39,14 - 2829: 39,13 - 2830: 39,14 - 2831: 38,14 - 2832: 38,14 - 2833: 37,13 - 2834: 38,13 - 2835: 38,12 - 2836: 38,11 - 2837: 37,11 - 2838: 35,11 - 2839: 35,11 - 2840: 34,11 - 2841: 33,10 - 2842: 33,11 - 2843: 18,13 - 2844: 18,13 - 2845: 14,13 - 2846: 13,14 - 2847: 12,13 - 2848: 11,13 - 2849: 9,13 - 2850: 22,35 - 2851: 23,34 - 2852: 23,33 - 2853: 23,32 - 2854: 23,31 - 2855: 23,31 - 2856: 24,32 - 2857: 24,34 - 2858: 22,35 - 2859: 22,36 - 2860: 22,36 - 2861: 22,36 - 2862: 22,34 - 2863: 22,33 - 2864: 22,32 - 2865: 22,32 - 2866: 23,31 - 2867: 23,32 - 2868: 23,34 - 2869: 25,35 - 2870: 26,35 - 2871: 28,33 - 2872: 27,32 - 2873: 28,31 - 2874: 28,31 - 2875: 28,31 - 2876: 26,31 - 2946: -15,18 - 2947: -14,17 - 2948: -13,17 - 2949: -12,18 - 2950: -12,18 - 2951: -12,19 - 2952: -12,19 - 2953: -12,18 - 2954: -12,17 - 2955: -12,17 - 2956: -12,18 - 2957: -14,19 - 2958: -15,20 - 2959: -16,20 - 2960: -14,20 - 2961: -14,19 - 2983: 35,-5 - 2984: 35,-5 - 2985: 34,-5 - 2986: 34,-5 - 2987: 35,-6 - 2988: 35,-6 - 2989: 36,-7 - 2990: 38,-7 - 2991: 38,-7 - 2992: 38,-7 - 2993: 38,-6 - 2994: 38,-5 - 2995: 40,-5 - 2996: 39,-5 - 2997: 38,-6 - 4482: -17,13 - 4483: -17,13 - 4484: -17,12 - 4485: -16,12 - 4486: -17,12 - 4487: -16,13 - 4488: -16,13 - 4489: -15,14 - 4490: -14,14 - 4491: -13,14 - 4492: -12,14 - 4493: -12,14 - 4494: -12,14 - 4495: -12,15 - 4496: -13,15 - 4497: -14,15 - 4498: -16,15 - 4499: -17,15 - 4500: -18,14 - 4501: -17,13 - 4502: -15,11 - 4503: -14,10 - 4504: -13,11 - 4505: -13,11 - 4506: -13,11 - 4507: -15,12 - 4508: -16,11 - 4509: -17,11 - 4510: -16,10 - 4511: -14,11 - 4512: -12,13 - 4513: -10,14 - 4514: -9,14 - 4515: -8,15 - 4516: -9,15 - 4517: -9,14 - 4518: -10,13 - 4519: -10,12 - 4520: -9,12 - 4521: -8,12 - 4522: -7,13 - 4523: -6,14 - 4524: -6,14 - 4526: -7,12 - 4527: -7,11 - 4528: -8,11 - 4529: -10,12 - 4530: -10,12 - 4531: -10,14 - 4532: -9,17 - 4533: -9,18 - 4534: -9,18 - 4535: -9,18 - 4536: -10,17 - 4537: -10,17 - 4538: -10,17 - 4539: -10,18 - 4540: -10,20 - 4541: -10,20 - 4542: -9,21 - 4543: -10,22 - 4544: -10,22 - 4545: -10,23 - 4546: -10,23 - 4547: -9,24 - 4548: -9,24 - 4551: -11,24 - 4552: -11,24 - 4553: -11,24 - 4558: -11,25 - 4559: -12,25 - 4560: -13,25 - 4561: -14,26 - 4562: -15,26 - 4563: -15,24 - 4564: -15,23 - 4565: -15,22 - 4566: -14,22 - 4567: -14,23 - 4568: -14,24 - 4569: -14,25 - 4570: -13,25 - 4571: -11,25 - 4572: -11,25 - 4574: -9,23 - 4575: -9,21 - 4576: -9,18 - 4577: -9,17 - 4578: -9,15 - 4579: -9,13 - 4580: -10,12 - 4581: -14,14 - 4582: -16,14 - 4583: -17,13 - 4584: -16,12 - 4585: -18,13 - 4586: -21,13 - 4587: -22,12 - 4588: -21,12 - 4589: -21,12 - 4590: -20,14 - 4591: -20,14 - 4592: -20,14 - 4593: -20,12 - 4594: -21,12 - 4595: -21,11 - 4596: -21,11 - 4597: -21,10 - 4598: -20,10 - 4599: -20,11 - 4600: -20,11 - 4601: -20,11 - 4602: -20,13 - 4603: -21,15 - 4604: -21,17 - 4605: -21,18 - 4606: -20,18 - 4607: -19,18 - 4608: -19,18 - 4609: -19,17 - 4610: -19,17 - 4611: -20,17 - 4612: -20,17 - 4613: -20,16 - 4614: -20,16 - 4615: -20,15 - 4616: -20,15 - 4617: -20,16 - 4618: -20,17 - 4619: -19,17 - 4620: -18,17 - 4621: -18,17 - 4622: -18,18 - 4623: -18,19 - 4624: -18,20 - 4625: -18,21 - 4626: -18,21 - 4627: -19,21 - 4628: -20,21 - 4629: -19,20 - 4630: -18,21 - 4631: -18,22 - 4632: -18,23 - 4633: -18,24 - 4634: -18,25 - 4635: -19,26 - 4636: -19,25 - 4637: -20,25 - 4638: -20,24 - 4639: -19,24 - 4640: -19,24 - 4641: -18,24 - 4642: -17,25 - 4643: -17,25 - 4644: -18,26 - 4645: -18,26 - 4646: -19,26 - 4647: -19,26 - 4648: -20,26 - 4649: -21,25 - 4650: -20,25 - 4651: -18,24 - 4652: -18,24 - 4653: -18,23 - 4654: -18,22 - 4655: -18,22 - 4656: -17,22 - 4657: -18,21 - 4658: -18,20 - 4659: -18,18 - 4660: -18,18 - 4661: -20,17 - 4662: -20,17 - 4663: -20,16 - 4664: -20,16 - 4665: -22,17 - 4666: -23,17 - 4667: -23,17 - 4668: -24,18 4669: -24,19 - 4670: -25,18 - 4671: -25,18 - 4672: -26,18 - 4673: -26,17 - 4674: -25,17 - 4675: -24,17 - 4676: -24,18 - 4677: -25,18 - 4678: -27,17 - 4679: -28,17 - 4680: -28,16 - 4681: -28,17 - 4682: -28,17 - 4683: -28,18 - 4684: -27,17 - 4685: -26,16 - 4686: -25,16 - 4687: -24,16 - 4688: -23,17 - 4689: -22,17 - 4690: -21,17 - 4691: -21,16 - 4692: -21,14 - 4693: -23,13 - 4694: -24,13 - 4695: -25,14 - 4696: -24,14 - 4697: -24,14 - 4698: -23,14 - 4699: -24,13 - 4700: -26,13 - 4701: -27,13 - 4702: -27,13 - 4703: -28,14 - 4704: -28,14 - 4705: -27,14 - 4706: -26,14 - 4707: -27,13 - 4708: -29,13 - 4709: -29,13 - 4710: -30,13 - 4711: -30,14 - 4712: -30,15 - 4713: -31,16 - 4714: -31,16 - 4715: -33,16 - 4716: -33,14 - 4717: -33,13 - 4718: -32,13 - 4719: -31,14 - 4720: -31,15 - 4721: -31,17 - 4722: -32,18 - 4723: -33,18 - 4724: -34,18 - 4725: -34,17 - 4726: -34,16 - 4727: -33,16 - 4728: -32,15 - 4729: -33,14 - 4730: -34,13 - 4731: -34,13 - 4732: -34,12 - 4733: -34,12 - 4734: -33,10 - 4735: -32,10 - 4736: -31,11 - 4737: -31,11 - 4738: -30,10 - 4739: -31,10 - 4740: -32,10 - 4741: -32,12 - 4742: -33,14 - 4743: -33,15 - 4744: -35,17 - 5088: -15,18 - 5089: -15,17 - 5090: -14,17 - 5091: -14,18 - 5092: -14,18 - 5093: -15,18 - 5094: -15,19 - 5095: -14,19 - 5096: -14,20 - 5097: -14,19 - 5098: -15,18 - 5099: -15,18 - 5100: -15,18 - 5101: -15,18 - 5102: -14,19 - 5103: -13,19 - 5104: -13,19 - 5105: -12,18 - 5106: -12,18 - 5107: -12,17 - 5108: -12,18 - 5109: -13,19 - 5110: -13,20 - 5111: -14,20 - 5112: -15,20 - 5113: -15,20 - 5114: -16,20 - 5115: -16,19 - 5116: -16,19 - 5117: -14,18 - 5118: -12,18 - 5119: -12,17 - 5120: -12,16 - 5121: -12,15 - 5122: -13,14 - 5123: -14,14 - 5124: -15,13 - 5125: -15,12 - 5126: -13,13 - 5127: -13,14 - 5128: -15,15 - 5129: -16,14 - 5130: -16,13 - 5131: -14,13 - 5132: -15,13 - 5133: -16,13 - 5134: -15,14 - 5135: -16,13 - 5136: -15,15 - 5137: -19,21 - 5138: -19,23 - 5139: -18,23 - 5140: -19,22 - 5141: -19,22 - 5142: -19,22 - 5143: -21,21 - 5144: -19,21 - 5145: -20,21 - 5146: -9,19 - 5147: -9,19 - 5148: -9,21 - 5149: -9,21 - 5150: -9,22 - 5151: -9,23 - 5152: -10,24 - 5153: -10,23 - 5154: -10,22 - 5155: -9,21 - 5156: -9,22 - 5157: -9,21 - 5158: -9,21 - 5159: -9,21 - 5160: -9,21 - 5161: -10,20 - 5162: -10,20 - 5163: -10,19 - 5164: -10,19 - 5165: -10,18 - 5166: -10,18 - 5167: -9,12 - 5168: -8,11 - 5169: -7,12 - 5170: -7,12 - 5171: -7,13 - 5172: -7,14 - 5173: -7,14 - 5174: -7,15 - 5175: -7,14 - 5176: -7,13 - 5177: -7,13 - 5178: -7,14 - 5179: -7,13 - 5180: -7,13 - 5181: -7,13 - 5193: -24,11 - 5194: -24,11 - 5195: -24,10 - 5196: -24,10 - 5197: -24,10 - 5199: -25,9 - 5200: -25,9 - 5201: -25,9 - 5202: -25,9 - 5203: -25,8 - 5204: -25,8 - 5205: -24,8 - 5206: -24,8 - 5207: -23,7 - 5208: -23,7 - 5209: -23,8 - 5210: -23,9 - 5211: -23,10 - 5212: -24,11 - 5213: -25,11 - 5259: -27,10 - 5260: -27,11 - 5261: -27,11 - 5262: -27,10 - 5263: -28,10 - 5264: -28,10 - 5265: -28,9 - 5266: -28,9 - 5267: -28,9 - 5268: -30,12 - 5269: -30,12 - 5270: -30,12 - 5271: -6,8 - 5272: -4,8 - 5273: -2,7 - 5274: -1,8 - 5275: -1,9 - 5276: -2,9 - 5277: -2,9 - 5278: 1,9 - 5279: 3,9 - 5280: 4,8 - 5281: 3,8 - 5282: 3,8 5283: 5,6 - 5284: 7,7 - 5285: 9,7 - 5286: 9,7 - 5287: 7,8 - 5288: 7,9 - 5289: 8,9 - 5290: 10,8 - 5291: 12,8 - 5292: 14,8 - 5293: 16,8 - 5294: 16,9 - 5295: 15,9 - 5296: 14,11 - 5297: 15,12 - 5298: 16,13 - 5299: 15,13 - 5300: 14,13 - 5301: 13,13 - 5302: 12,12 - 5303: 13,13 - 5304: 13,14 - 5305: 14,15 - 5306: 14,17 - 5307: 15,18 - 5308: 17,17 - 5309: 16,16 - 5310: 16,16 - 5311: 16,18 - 5312: 16,21 - 5313: 16,22 - 5314: 16,24 - 5315: 16,25 - 5316: 16,25 - 5317: 16,24 - 5318: 16,22 - 5319: 16,20 - 5320: 16,17 - 5321: 16,15 5322: 18,15 - 5323: 20,16 - 5324: 20,17 - 5325: 19,18 - 5326: 19,17 - 5327: 20,17 - 5328: 20,18 - 5329: 20,17 - 5330: 21,18 - 5331: 20,17 - 5332: 21,17 - 5333: 21,17 - 5334: 20,18 - 5335: 21,17 - 5336: 21,17 - 5337: 20,17 - 5372: 26,-24 - 5373: 26,-25 - 5374: 26,-26 - 5375: 28,-26 - 5376: 28,-26 - 5377: 29,-24 - 5378: 28,-24 - 5379: 27,-24 - 5380: 27,-25 - 5381: 28,-25 - 5382: 30,-25 - 5383: 31,-25 - 5384: 32,-24 - 5385: 31,-23 - 5386: 31,-23 - 5387: 32,-23 - 5388: 33,-23 - 5389: 33,-24 - 5390: 33,-24 - 5391: 33,-25 - 5392: 32,-25 - 5393: 31,-25 - 5394: 30,-25 - 5395: 29,-23 - 5396: 29,-21 - 5397: 28,-20 - 5398: 29,-19 - 5399: 29,-20 - 5400: 29,-23 - 5401: 29,-25 - 5402: 29,-27 - 5403: 28,-29 - 5404: 29,-29 - 5405: 28,-28 - 5406: 27,-29 - 5407: 26,-30 - 5408: 25,-30 - 5409: 26,-31 - 5410: 27,-30 - 5411: 27,-30 - 5412: 27,-30 - 5413: 28,-30 - 5414: 28,-30 - 5415: 29,-31 - 5416: 29,-31 - 5417: 29,-30 - 5418: 29,-30 - 5419: 29,-29 - 5420: 29,-29 - 5421: 28,-30 - 5422: 29,-30 - 5423: 29,-30 - 5424: 29,-30 - 5425: 29,-30 - 5426: 29,-30 - 5427: 28,-28 - 5428: 28,-27 - 5429: 28,-25 - 5430: 28,-24 - 5431: 27,-24 - 5432: 27,-25 - 5433: 28,-25 - 5434: 29,-23 - 5435: 29,-21 - 5436: 29,-20 - 5437: 29,-20 - 5438: 28,-22 - 5439: 27,-23 - 5440: 27,-23 - 5441: 27,-23 - 5442: 28,-22 - 5443: 28,-21 - 5444: 29,-21 - 5445: 29,-19 - 5446: 28,-17 - 5447: 29,-15 - 5448: 28,-15 - 5449: 27,-16 - 5450: 27,-17 - 5451: 26,-17 - 5452: 26,-18 - 5453: 27,-18 - 5454: 27,-17 - 5455: 27,-17 - 5456: 27,-17 - 5457: 27,-17 - 5458: 27,-17 - 5459: 27,-17 - 5460: 28,-16 - 5461: 28,-14 - 5462: 28,-13 - 5463: 28,-12 - 5464: 29,-11 - 5465: 30,-12 - 5466: 30,-13 - 5467: 30,-13 - 5468: 31,-13 - 5469: 31,-12 - 5470: 31,-11 - 5471: 31,-10 - 5472: 31,-9 - 5473: 32,-10 - 5474: 32,-11 - 5475: 32,-12 - 5476: 32,-13 - 5477: 32,-12 - 5478: 32,-10 - 5479: 32,-9 - 5480: 31,-8 - 5481: 31,-7 5482: 30,-7 - 5483: 28,-8 - 5484: 27,-8 - 5485: 27,-9 - 5486: 27,-10 - 5487: 29,-10 - 5488: 29,-10 - 5489: 30,-10 - 5490: 29,-11 - 5491: 28,-12 - 5492: 27,-13 - 5493: 27,-14 - 5494: 27,-14 - 5495: 27,-15 - 5496: 27,-15 - 5497: 27,-13 - 5498: 29,-13 - 5499: 30,-14 - 5500: 32,-14 - 5501: 33,-14 - 5502: 34,-14 - 5503: 35,-14 - 5504: 36,-14 - 5505: 36,-14 - 5506: 36,-14 - 5507: 38,-14 - 5508: 40,-14 - 5509: 40,-14 - 5510: 42,-14 - 5511: 44,-14 - 5512: 45,-14 - 5513: 45,-14 - 5514: 45,-14 - 5515: 46,-14 - 5516: 47,-14 - 5517: 47,-14 - 5518: 49,-14 - 5519: 50,-14 - 5520: 51,-14 - 5521: 51,-13 - 5522: 51,-12 - 5523: 52,-13 - 5524: 52,-14 - 5525: 52,-14 - 5526: 52,-15 - 5527: 52,-16 - 5528: 53,-15 - 5529: 53,-15 - 5530: 53,-14 - 5531: 53,-13 - 5532: 53,-13 - 5533: 53,-14 - 5534: 53,-15 - 5535: 53,-15 - 5536: 53,-15 - 5537: 53,-14 - 5538: 53,-13 - 5539: 53,-11 - 5540: 53,-11 - 5541: 53,-11 - 5542: 53,-11 - 5543: 53,-12 - 5544: 52,-15 - 5545: 51,-17 - 5546: 50,-18 - 5547: 50,-18 - 5548: 52,-18 - 5549: 52,-17 - 5550: 51,-16 - 5551: 49,-16 - 5552: 48,-16 - 5553: 47,-16 - 5554: 47,-17 - 5555: 47,-17 - 5556: 48,-18 - 5557: 49,-18 - 5558: 49,-18 - 5559: 50,-17 - 5560: 49,-17 - 5561: 48,-16 - 5562: 49,-17 - 5563: 51,-16 - 5564: 52,-14 - 5565: 49,-14 - 5566: 47,-14 - 5567: 46,-14 - 5568: 46,-12 - 5569: 46,-11 - 5570: 47,-11 - 5571: 49,-12 - 5572: 49,-11 - 5573: 48,-11 - 5574: 47,-11 - 5575: 47,-8 - 5576: 48,-7 - 5577: 48,-6 - 5578: 47,-7 - 5579: 47,-8 - 5580: 47,-9 - 5581: 50,-9 - 5582: 51,-9 - 5583: 53,-8 - 5584: 53,-8 - 5585: 52,-8 - 5586: 47,-8 - 5587: 46,-9 - 5740: 36,-17 - 5741: 35,-16 - 5742: 35,-16 - 5743: 35,-16 - 5744: 36,-16 - 5745: 36,-17 - 5746: 36,-17 - 5747: 39,-17 - 5748: 39,-17 - 5749: 39,-17 - 5750: 39,-16 - 5751: 38,-16 - 5752: 38,-16 - 5753: 39,-16 - 5754: 39,-16 - 5755: 39,-16 - 5756: 39,-16 - 5757: 39,-16 - 5758: 39,-12 - 5759: 39,-12 - 5760: 41,-12 - 5761: 41,-12 - 5762: 40,-12 - 5763: 40,-13 - 5764: 40,-13 - 5765: 40,-11 - 5766: 40,-11 - 5767: 39,-11 - 5768: 38,-11 - 5769: 37,-11 - 5770: 35,-11 - 5771: 35,-11 - 5772: 35,-12 - 5773: 35,-12 - 5774: 36,-12 - 5775: 36,-11 - 5776: 36,-11 - 5777: 36,-12 - 5778: 43,-11 - 5779: 43,-11 - 5780: 42,-12 - 5781: 42,-12 - 5782: 43,-13 - 5783: 42,-12 - 5784: 42,-13 - 5785: 42,-13 - 5786: 42,-12 - 5787: 43,-12 - 5788: 44,-12 - 5789: 44,-14 - 5790: 44,-14 - 5791: 43,-14 - 5792: 43,-14 - 5793: 42,-14 - 5794: 44,-15 - 5795: 44,-15 - 5796: 44,-16 - 5797: 44,-16 - 5798: 43,-16 - 5799: 43,-16 - 5800: 43,-17 - 5801: 43,-17 - 5802: 43,-17 - 5803: 43,-17 - 5834: -2,-23 - 5835: -2,-23 - 5836: -1,-23 - 5837: 0,-23 - 5838: 1,-23 - 5839: 1,-22 - 5840: 1,-21 - 5841: 1,-21 - 5842: 0,-20 - 5843: 0,-19 - 5844: -1,-19 - 5845: -1,-19 - 5846: -1,-19 - 5847: -1,-21 - 5848: -1,-22 - 5849: -1,-23 - 5850: -2,-23 5851: -4,-23 - 5852: -2,-24 - 5853: -3,-24 - 5854: -3,-24 - 5855: -3,-24 - 5856: -3,-24 - 5857: -15,-22 - 5858: -14,-22 - 5859: -14,-22 - 5860: -14,-21 - 5861: -14,-20 - 5862: -14,-19 - 5863: -13,-19 - 5864: -13,-21 - 5865: -13,-22 - 5866: -13,-23 - 5867: -13,-22 - 5868: -13,-20 - 5869: -13,-18 - 5870: -13,-18 - 5871: -14,-18 - 5872: -14,-19 - 5873: -14,-19 - 5874: -14,-22 - 5875: -13,-24 - 5876: -13,-24 - 5877: -13,-24 - 5878: -15,-24 - 5879: -17,-21 - 5880: -17,-21 - 5881: -17,-19 - 5882: -17,-19 - 5883: -18,-18 - 5884: -19,-19 - 5885: -19,-20 - 5886: -19,-22 - 5887: -21,-22 - 5888: -21,-22 - 5889: -21,-21 - 5890: -21,-21 5891: -21,-19 - 5892: -22,-20 - 5893: -22,-20 - 5894: -22,-21 - 5895: -25,-22 - 5896: -25,-23 - 5897: -26,-23 - 5898: -27,-23 - 5899: -27,-24 - 5900: -26,-24 - 5901: -25,-24 - 5902: -25,-26 - 5903: -25,-26 - 5904: -25,-26 - 5905: -25,-27 - 5906: -25,-28 - 5907: -25,-29 - 5908: -25,-28 - 5909: -25,-27 - 5910: -26,-27 - 5911: -27,-27 - 5912: -27,-28 - 5913: -27,-28 - 5914: -27,-28 - 5915: -27,-27 - 5916: -26,-27 - 5917: -26,-27 - 5918: -27,-27 - 5919: -26,-27 - 5920: -27,-27 - 5921: -27,-27 - 5922: -26,-27 - 5923: -25,-32 - 5924: -25,-32 - 5925: -25,-33 - 5926: -25,-34 - 5927: -26,-34 - 5928: -27,-33 - 5929: -26,-32 - 5930: -25,-34 - 5931: -24,-35 - 5932: -24,-37 - 5933: -24,-38 - 5934: -23,-39 - 5935: -22,-37 - 5936: -24,-36 - 5937: -26,-38 - 5938: -26,-40 - 5939: -25,-41 - 5940: -23,-41 - 5941: -24,-39 - 5942: -26,-38 - 5943: -27,-40 - 5944: -26,-41 - 5945: -25,-40 - 5946: -25,-40 - 5947: -25,-40 - 5948: -23,-39 - 5949: -22,-37 - 5950: -22,-37 - 5951: -24,-35 - 5952: -26,-34 - 5953: -27,-35 - 5954: -27,-36 - 6053: -16,2 - 6054: -16,2 - 6055: -16,1 - 6056: -16,0 - 6057: -16,1 - 6058: -16,2 - 6059: -16,2 - 6060: -15,2 - 6061: -14,1 - 6062: -14,1 - 6063: -14,1 - 6064: -13,1 - 6065: -12,2 - 6066: -12,2 - 6067: -14,1 - 6068: -13,0 - 6069: -12,0 - 6070: -13,1 - 6073: -14,-6 - 6074: -13,-5 - 6075: -14,-5 - 6076: -13,-5 - 6077: -14,-4 - 6078: -16,-5 - 6079: -15,-6 - 6080: -14,-6 - 6081: -13,-5 - 6082: -12,-4 - 6083: -13,-4 - 6084: -14,-4 - 6085: -15,-6 - 6086: -16,-5 - 6087: -20,-4 - 6088: -22,-4 - 6089: -22,-4 - 6090: -22,-3 - 6091: -22,-3 - 6092: -23,-3 - 6093: -24,-4 - 6094: -23,-5 - 6095: -23,-6 - 6096: -22,-6 - 6097: -21,-5 - 6098: -21,-4 - 6099: -21,-3 - 6100: -21,-3 - 6101: -21,-3 - 6102: -21,-3 - 6103: -21,-4 - 6104: -21,-4 - 6105: -21,-5 - 6111: -17,-11 - 6112: -17,-11 - 6118: -13,-9 - 6119: -13,-10 - 6120: -13,-11 - 6124: -15,-10 - 6125: -14,-11 - 6127: -12,-11 - 6128: -14,-10 - 6130: -21,-10 - 6131: -22,-10 - 6132: -23,-10 - 6133: -22,-10 - 6134: -22,-10 - 6135: -21,-9 - 6136: -22,-9 - 6137: -22,-8 - 6138: -23,-8 - 6139: -22,-8 - 6140: -22,-9 - 6141: -22,-9 - 6142: -23,-9 - 6199: -24,-14 - 6200: -24,-14 - 6201: -23,-15 - 6202: -23,-15 - 6203: -22,-15 - 6204: -22,-14 - 6205: -21,-14 - 6206: -21,-14 - 6207: -21,-13 - 6208: -21,-13 - 6209: 5,-2 - 6210: 6,-2 - 6211: 6,-2 - 6212: 5,-1 - 6213: 4,-1 - 6214: 3,-2 - 6215: 3,-3 - 6216: 2,-4 - 6217: 2,-5 - 6218: 2,-5 - 6219: 3,-6 - 6220: 3,-6 - 6222: 3,-3 - 6224: 5,-2 - 6225: 6,-2 - 6226: 7,-3 - 6227: 8,-4 - 6228: 8,-2 - 6229: 7,-3 - 6230: 8,-3 - 6231: 8,-4 - 6232: 9,-4 - 6233: 10,-4 - 6234: 12,-3 - 6235: 12,-3 - 6236: 12,-4 - 6237: 13,-4 - 6238: 13,-5 - 6239: 13,-6 - 6240: 12,-7 - 6241: 12,-7 - 6242: 12,-8 - 6243: 12,-8 - 6244: 13,-9 - 6245: 13,-8 - 6246: 13,-8 - 6247: 13,-8 - 6248: 12,-10 - 6249: 12,-10 - 6250: 12,-11 - 6251: 12,-12 - 6252: 12,-12 - 6253: 12,-13 - 6254: 13,-13 - 6270: 5,-7 - 6271: 5,-7 - 6272: 5,-8 - 6273: 5,-9 - 6274: 6,-9 - 6275: 7,-10 - 6276: 8,-10 - 6277: 9,-10 - 6278: 10,-9 - 6279: 10,-7 - 6280: 9,-7 - 6281: 7,-6 - 6282: 8,-6 - 6283: 9,-6 - 6284: 10,-7 - 6285: 8,-8 - 6286: 7,-8 - 6287: 7,-9 - 6288: 7,-10 - 6289: 2,-3 - 6290: 2,-2 - 6291: -1,-1 - 6292: -1,-1 - 6366: 19,-8 - 6367: 19,-8 - 6368: 20,-8 - 6369: 20,-8 - 6370: 20,-7 - 6371: 20,-6 - 6372: 21,-5 - 6373: 21,-3 - 6374: 21,-1 - 6375: 21,0 - 6376: 20,0 - 6377: 20,0 - 6378: 20,-2 - 6379: 20,-3 - 6380: 20,-2 - 6381: 20,1 - 6382: 20,2 - 6383: 20,2 - 6384: 20,8 - 6385: 20,8 - 6386: 20,8 - 6387: 18,8 - 6388: 18,8 - 6389: 18,8 - 6390: 18,8 - 6391: 18,9 - 6393: 17,8 - 6394: 16,8 - 6395: 15,8 - 6396: 15,8 - 6397: 15,9 - 6398: 14,9 - 6399: 13,9 - 6400: 12,8 - 6401: 11,8 - 6402: 12,8 - 6403: 12,8 - 6404: 12,8 - 6405: 10,8 - 6406: 9,9 - 6407: 7,9 - 6408: 6,9 - 6409: 4,9 - 6410: 2,8 - 6411: 3,8 - 6412: 4,8 - 6413: 3,8 - 6414: 1,8 - 6415: -1,8 - 6416: -2,8 - 6417: -2,8 - 6418: -1,8 - 6419: -1,7 - 6420: 0,7 - 6421: -1,7 - 6422: -4,7 - 6423: -5,7 - 6424: -5,7 - 6425: -5,8 - 6426: -6,8 - 6427: -7,9 - 6428: -8,8 - 6429: -8,8 - 6430: -9,8 - 6431: -9,7 - 6432: -10,6 - 6433: -9,6 - 6434: -10,8 - 6435: -10,9 - 6436: -10,9 - 6437: -9,8 - 6438: -8,6 - 6439: -9,5 - 6440: -9,4 - 6441: -9,1 - 6442: -9,1 - 6443: -8,2 - 6444: -8,3 - 6445: -8,3 - 6446: -8,1 - 6447: -8,-1 - 6448: -8,-2 - 6449: -9,-2 - 6450: -9,-3 - 6451: -9,-2 - 6452: -9,-2 - 6453: -10,-4 - 6454: -10,-7 - 6455: -10,-8 - 6456: -10,-8 - 6457: -9,-8 - 6458: -8,-8 - 6459: -8,-8 - 6460: -8,-10 - 6461: -9,-12 - 6462: -9,-11 - 6463: -9,-11 - 6464: -9,-12 - 6465: -9,-13 - 6466: -9,-14 - 6467: -9,-16 - 6468: -9,-17 - 6469: -10,-16 - 6470: -10,-16 - 6471: -10,-15 - 6472: -9,-15 - 6473: -8,-15 - 6474: -7,-16 - 6475: -6,-17 - 6476: -4,-17 - 6477: -2,-17 - 6478: -1,-17 - 6479: -1,-17 - 6480: -2,-17 - 6481: -1,-17 - 6482: 0,-17 - 6484: 3,-17 - 6485: 3,-16 - 6486: -1,-15 - 6487: -2,-15 - 6488: -1,-15 - 6489: 2,-15 - 6490: 4,-15 - 6491: 7,-15 - 6492: 8,-16 - 6493: 8,-16 - 6494: 8,-16 - 6495: 9,-16 - 6496: 10,-16 - 6497: 9,-16 - 6498: 11,-17 - 6499: 13,-16 - 6500: 13,-17 - 6501: 11,-17 - 6502: 13,-17 - 6503: 14,-16 - 6504: 14,-16 - 6505: 14,-16 - 6506: 17,-17 - 6507: 18,-16 - 6508: 17,-17 - 6509: 20,-17 - 6510: 20,-16 - 6512: 19,-15 - 6513: 20,-13 - 6514: 20,-9 - 6515: 19,-8 - 6516: 20,-7 - 6517: 20,-5 - 6518: 20,-3 - 6519: 20,-3 - 6520: 20,-1 - 6521: 20,1 - 6522: 20,4 - 6523: 20,5 - 6524: 20,7 - 6525: 19,8 - 6526: 17,8 - 6527: 16,8 - 6528: 14,8 - 6529: 13,8 - 6530: 13,10 - 6531: 13,11 - 6532: 13,13 - 6533: 13,14 - 6534: 12,15 - 6535: 11,16 - 6536: 12,15 - 6537: 13,14 - 6538: 14,13 - 6539: 15,11 6540: 15,10 - 6541: 14,9 - 6542: 12,8 - 6543: 11,8 - 6544: 9,8 - 6545: 8,8 - 6546: 6,8 - 6547: 5,8 - 6548: 3,8 - 6549: 2,8 - 6550: 0,8 - 6551: -1,9 - 6552: -3,10 - 6553: -3,11 - 6554: -3,12 - 6555: -3,14 - 6556: -3,15 - 6557: -2,16 - 6558: -3,17 - 6559: -4,19 - 6560: -3,20 - 6561: -2,21 - 6562: -3,22 - 6563: -4,24 - 6564: -3,25 - 6565: -2,26 - 6566: -3,27 - 6567: -3,28 - 6568: -2,29 - 6570: -3,31 - 6571: -4,32 - 6572: -3,33 - 6573: -3,34 - 6574: -3,34 - 6575: -3,35 - 6576: -4,36 - 6577: -3,37 - 6578: -2,38 - 6579: -3,39 - 6580: -3,40 - 6581: -3,40 - 6582: -4,40 - 6583: -4,39 - 6584: -4,37 - 6585: -4,35 - 6586: -4,33 - 6587: -4,32 - 6588: -5,32 - 6589: -7,33 - 6590: -8,33 - 6591: -10,33 - 6592: -10,33 - 6593: -11,32 - 6594: -10,32 - 6595: -8,32 - 6596: -8,32 - 6597: -8,32 - 6598: -9,32 - 6599: -11,32 - 6600: -12,33 - 6601: -13,33 - 6602: -15,33 - 6603: -17,33 - 6604: -18,32 - 6605: -18,32 - 6606: -20,32 - 6607: -21,33 - 6608: -23,33 - 6609: -25,34 - 6610: -27,33 - 6611: -27,33 - 6612: -28,35 - 6614: -30,33 - 6615: -29,34 - 6616: -29,36 - 6617: -29,38 - 6618: -30,39 - 6619: -30,39 - 6620: -30,39 - 6621: -30,41 - 6622: -30,44 - 6623: -30,45 - 6624: -29,45 - 6625: -28,45 - 6626: -28,44 - 6627: -28,42 - 6628: -29,40 - 6629: -29,38 - 6630: -29,36 - 6631: -29,34 - 6632: -29,33 - 6633: -29,33 - 6634: -29,33 - 6635: -30,33 - 6636: -31,33 - 6637: -32,33 - 6638: -35,33 - 6639: -36,33 - 6640: -37,33 - 6641: -39,33 - 6642: -39,31 - 6643: -39,30 - 6644: -39,29 - 6645: -38,28 - 6646: -39,27 - 6647: -38,25 - 6648: -38,25 - 6649: -38,24 - 6650: -38,23 - 6651: -38,21 - 6652: -38,20 - 6653: -38,18 - 6654: -38,16 - 6655: -39,15 - 6656: -39,13 - 6657: -38,12 - 6658: -38,10 - 6659: -38,10 6660: -38,9 - 6661: -38,11 - 6662: -37,11 - 6663: -37,11 - 6664: -37,11 - 6665: -36,10 - 6666: -36,10 - 6667: -36,12 - 6668: -36,13 - 6669: -36,13 - 6670: -36,14 - 6671: -37,16 - 6672: -38,16 - 6673: -38,18 - 6674: -38,20 - 6675: -38,22 - 6676: -38,24 - 6677: -39,27 - 6678: -39,28 - 6679: -41,30 - 6680: -43,30 - 6681: -43,29 - 6682: -41,29 - 6683: -41,29 - 6684: -42,29 - 6685: -42,29 - 6686: -44,29 - 6687: -46,30 - 6688: -48,30 - 6689: -48,30 - 6690: -49,29 - 6691: -50,29 - 6692: -51,29 - 6693: -51,29 - 6694: -51,29 - 6695: -52,30 - 6696: -55,30 - 6697: -55,30 - 6698: -56,29 - 6699: -56,29 - 6700: -56,28 - 6701: -55,26 - 6702: -56,24 - 6703: -56,22 - 6704: -56,20 - 6705: -55,19 - 6706: -55,20 - 6707: -56,19 - 6708: -56,18 - 6709: -56,18 - 6710: -56,18 - 6711: -56,17 - 6712: -56,20 - 6713: -56,22 - 6714: -56,24 - 6715: -56,27 - 6716: -56,28 - 6717: -55,28 - 6718: -56,26 - 6719: -55,24 - 6720: -55,22 - 6721: -56,20 - 6722: -56,18 - 6723: -56,16 - 6724: -56,15 - 6725: -56,13 - 6726: -56,11 - 6727: -56,10 - 6728: -56,11 - 6729: -56,13 - 6730: -56,14 - 6731: -56,16 - 6732: -56,18 - 6733: -56,20 - 6734: -57,21 - 6735: -56,23 - 6736: -56,25 - 6737: -56,27 - 6738: -57,28 - 6739: -58,29 - 6740: -60,29 - 6741: -62,29 - 6742: -64,29 - 6743: -66,30 - 6744: -67,30 - 6745: -69,30 - 6746: -71,30 - 6747: -71,29 - 6748: -72,29 - 6749: -74,29 - 6750: -74,29 - 6751: -75,29 - 6752: -75,28 - 6753: -74,26 - 6754: -74,24 - 6755: -74,24 - 6756: -74,23 - 6757: -74,22 - 6758: -74,22 - 6759: -74,21 - 6760: -75,19 - 6761: -75,18 - 6762: -74,17 - 6763: -73,17 - 6764: -73,18 - 6765: -73,18 - 6766: -73,19 - 6767: -73,19 - 6768: -74,19 - 6769: -74,18 - 6770: -74,18 - 6771: -74,18 - 6772: -75,16 - 6773: -75,15 - 6774: -75,15 - 6775: -75,14 - 6776: -75,13 - 6777: -75,12 - 6778: -75,11 - 6779: -75,11 - 6780: -75,11 - 6781: -73,12 - 6782: -73,13 - 6783: -73,14 - 6784: -74,13 - 6785: -75,11 - 6786: -74,11 - 6787: -74,11 - 6788: -74,12 - 6789: -74,14 - 6790: -74,15 - 6791: -74,16 - 6951: 0,39 - 6952: 0,39 - 6953: 0,39 - 6954: 0,40 - 6955: 0,40 - 6956: 0,40 - 6957: 0,41 - 6958: 2,41 - 6959: 2,41 - 6960: 2,41 - 6961: 2,41 - 6962: 4,42 - 6963: 5,42 - 6964: 5,42 - 6965: 5,41 - 6966: 5,40 - 6967: 8,42 - 6968: 8,42 - 6969: 8,40 - 6970: 8,39 - 6972: 9,36 - 6973: 8,36 - 6974: 6,36 - 6975: 5,37 - 6976: 4,38 - 6977: 2,38 - 6978: 1,37 - 6979: 2,37 - 6980: 2,36 - 6981: 0,36 - 6982: 1,36 - 6983: 2,36 - 6996: 9,36 - 6997: 8,36 - 6998: 8,37 - 6999: 8,37 - 7000: 8,37 - 7001: 8,38 - 7002: 7,38 - 7003: 7,38 - 7004: 7,38 7124: -37,-27 7125: -37,-27 7126: -37,-27 @@ -5583,2284 +3261,197 @@ entities: 7139: -36,-34 7140: -37,-34 7141: -35,-35 - 7883: 53,-6 - 7884: 53,-6 - 7885: 53,-6 - 7886: 53,-6 - 7887: 52,-6 - 7888: 52,-6 - 7889: 52,-4 - 7890: 52,-4 - 7891: 52,-3 - 7892: 52,-3 - 7893: 52,-3 - 7904: 53,-6 - 7905: 53,-6 - 7906: 52,-6 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: Dirt - decals: - 7539: -10,25 - 7540: -10,25 - 7541: -9,25 - 7542: -9,25 - 7543: -9,25 - 7544: -9,26 - 7545: -9,26 - 7546: -9,26 - 7547: -9,26 - 7548: -9,26 - 7549: -9,26 - 7550: -10,24 - 7551: -9,24 - 7552: -9,24 - 7566: -10,26 - 7567: -10,26 - 7568: -11,26 - 7569: -31,12 - 7932: 10,28 - 7933: 11,28 - 7934: 11,29 - 7935: 11,29 - 7936: 11,29 - 7937: 11,29 - 7938: 11,29 - 7939: 12,30 - 7940: 12,28 - 7941: 12,26 - 7942: 11,26 - 7943: 10,25 - 7944: 10,24 - 7945: 9,24 - 7946: 10,24 - 7947: 11,24 - 7948: 11,24 - 7949: 8,24 - 7950: 7,24 - 7951: 7,24 - 7952: 7,24 - 7953: 7,26 - 7954: 6,26 - 7955: 5,25 - 7956: 5,24 - 7957: 5,24 - 7958: 6,23 - 7959: 6,23 - 7960: 6,24 - 7961: 6,24 - 7962: 6,23 - 7963: 6,23 - 7964: 6,24 - 7965: 6,24 - 7966: 6,24 - 7967: 6,24 - 7968: 11,24 - 7969: 12,23 - 7970: 12,23 - 7971: 12,23 - 7972: 10,23 - 7973: 10,23 - 8022: 9,29 - 8023: 9,29 - 8024: 9,29 - 8025: 9,28 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 124: -13,2 - 125: -13,2 - 126: -14,2 - 127: -14,3 - 128: -13,2 - 141: -13,1 - 142: -12,2 - 143: -14,3 - 718: -17,-9 - 719: -17,-9 - 720: -14,-9 - 721: -14,-9 - 723: -13,-10 - 724: -13,-11 - 725: -15,-11 - 726: -15,-11 - 764: -23,-9 - 765: -23,-9 - 809: -24,-14 - 810: -26,-14 - 811: -26,-14 - 812: -25,-15 - 813: -22,-14 - 814: -22,-14 - 856: -18,-22 - 857: -17,-21 - 858: -18,-20 - 859: -18,-20 - 860: -17,-20 - 895: -27,-23 - 896: -27,-23 - 897: -26,-23 - 898: -21,-22 - 899: -21,-21 - 939: -25,-34 - 940: -25,-35 - 941: -25,-35 - 942: -25,-36 - 943: -25,-38 - 944: -22,-37 - 945: -23,-36 - 946: -25,-37 - 947: -25,-38 - 948: -26,-37 - 949: -26,-39 - 950: -26,-40 - 1042: 1,-20 - 1043: -1,-21 - 1044: -1,-21 - 1045: -1,-22 - 1046: 1,-23 - 1100: 12,-20 - 1101: 12,-20 - 1102: 12,-20 - 1103: 12,-20 - 1104: 12,-20 - 1105: 12,-20 - 1106: 12,-20 - 1107: 12,-20 - 1108: 12,-20 - 1109: 12,-20 - 1110: 12,-20 - 1111: 13,-17 - 1112: 14,-17 - 1113: 16,-17 - 1114: 16,-16 - 1115: 12,-19 - 1116: 12,-19 - 1117: 12,-19 - 1118: 12,-19 - 1119: 12,-19 - 1120: 16,-16 - 1121: 16,-16 - 1122: 17,-16 - 1123: 17,-16 - 1124: 18,-16 - 1125: 20,-16 - 1126: 20,-16 - 1127: 21,-17 - 1128: 20,-17 - 1129: 22,-17 - 1130: 23,-17 - 1131: 23,-17 - 1132: 23,-18 - 1133: 23,-19 - 1134: 23,-20 - 1135: 23,-21 - 1136: 23,-21 - 1137: 24,-19 - 1138: 23,-17 - 1139: 21,-16 - 1140: 20,-16 - 1141: 21,-14 - 1142: 22,-13 - 1143: 23,-13 - 1144: 24,-13 - 1145: 24,-13 - 1146: 25,-12 - 1147: 23,-12 - 1148: 23,-14 - 1149: 25,-14 - 1150: 29,-13 - 1151: 29,-14 - 1152: 27,-15 - 1153: 29,-15 - 1154: 28,-13 - 1155: 30,-12 - 1163: 29,-9 - 1164: 28,-10 - 1165: 29,-11 - 1207: 23,-8 - 1208: 23,-9 - 1209: 20,-7 - 1211: 21,-5 - 1212: 20,-5 - 1213: 19,-5 - 1214: 20,-5 - 1215: 21,-3 - 1218: 19,-2 - 1220: 21,2 - 1221: 21,2 - 1222: 21,1 - 1223: 23,2 - 1224: 23,3 - 1225: 24,4 - 1226: 25,3 - 1227: 25,2 - 1228: 25,3 - 1229: 26,5 - 1230: 26,5 - 1231: 20,6 - 1232: 20,7 - 1233: 20,8 - 1234: 17,8 - 1235: 13,8 - 1247: 8,12 - 1248: 8,12 - 1249: 9,12 - 1250: 9,11 - 1251: 10,13 - 1252: 11,14 - 1253: 12,13 - 1254: 14,14 - 1255: 14,15 - 1256: 13,17 - 1257: 12,19 - 1258: 10,19 - 1259: 10,18 - 1260: 10,17 - 1261: 13,18 - 1263: 12,20 - 1264: 9,21 - 1265: 8,20 - 1266: 8,19 - 1267: 14,17 - 1268: 15,17 - 1269: 16,18 - 1270: 16,19 - 1271: 16,20 - 1272: 17,19 - 1273: 16,17 - 1274: 16,17 - 1275: 18,16 - 1276: 20,17 - 1277: 20,18 - 1278: 19,18 - 1279: 19,17 - 1338: 16,25 - 1339: 17,25 - 1340: 19,25 - 1341: 19,24 - 1342: 17,24 - 1343: 16,24 - 1344: 16,23 - 1345: 17,24 - 1346: 19,25 - 1347: 20,25 - 1348: 20,24 - 1349: 21,25 - 1350: 20,26 - 1351: 18,26 - 1352: 17,25 - 1353: 16,23 - 1415: -4,17 - 1416: -3,16 - 1417: -3,14 - 1418: -4,13 - 1419: -4,13 - 1420: -3,13 - 1421: -2,13 - 1422: -2,11 - 1423: -3,9 - 1424: -3,8 - 1425: -2,8 - 1426: -2,8 - 1427: -1,7 - 1428: 1,8 - 1429: 4,8 - 1430: 7,8 - 1431: 7,7 - 1432: 4,7 - 1433: 3,7 - 1434: 1,12 - 1435: 2,12 - 1436: 3,12 - 1437: 4,12 - 1438: 5,12 - 1439: 3,11 - 1440: -2,16 - 1441: -3,18 - 1442: -3,21 - 1443: -3,22 - 1444: -3,24 - 1445: -3,25 - 1446: -3,26 - 1447: -2,28 - 1448: -3,30 - 1449: -5,32 - 1451: -8,32 - 1452: -10,33 - 1453: -13,33 - 1454: -16,32 - 1455: -17,31 1456: -13,34 - 1458: -3,36 - 1459: -3,38 - 1460: -4,40 - 1461: -2,40 - 1462: -2,40 - 1463: -2,38 - 1464: -11,47 - 1465: -11,48 - 1466: -11,48 - 1467: -11,47 - 1468: -11,46 - 1469: -12,46 - 1470: -12,47 - 1471: -12,47 - 1524: -21,38 - 1525: -21,38 - 1526: -21,38 - 1527: -21,38 - 1528: -21,38 - 1529: -22,37 - 1530: -20,36 - 1531: -20,37 - 1532: -21,36 - 1533: -20,33 - 1534: -22,33 - 1535: -23,34 - 1536: -20,33 - 1537: -20,32 - 1538: -19,32 - 1539: -22,33 - 1540: -25,33 - 1541: -26,34 - 1542: -28,33 - 1543: -27,32 - 1544: -28,33 - 1545: -30,33 - 1546: -29,35 - 1547: -28,35 - 1548: -29,37 - 1549: -30,37 - 1550: -30,38 - 1551: -29,38 - 1552: -29,39 - 1553: -30,39 - 1554: -30,40 - 1555: -30,42 - 1556: -30,45 - 1557: -30,44 - 1558: -29,44 - 1559: -29,44 - 1562: -28,47 - 1563: -28,48 - 1564: -29,47 - 1565: -30,47 - 1566: -30,48 - 1567: -30,49 - 1568: -30,49 - 1569: -29,50 - 1570: -29,50 - 1600: -34,38 - 1601: -35,38 - 1602: -35,37 - 1603: -34,36 - 1604: -33,36 - 1605: -32,37 - 1606: -32,39 - 1607: -32,40 - 1608: -33,41 - 1609: -34,41 - 1610: -33,42 - 1611: -33,42 - 1612: -35,42 - 1613: -36,42 - 1614: -36,42 - 1615: -36,43 - 1616: -36,43 - 1617: -39,41 - 1618: -39,40 - 1619: -38,39 - 1620: -38,41 - 1621: -38,40 - 1622: -39,38 - 1623: -39,37 - 1624: -39,37 - 1625: -39,36 - 1626: -41,36 - 1627: -41,36 - 1628: -41,36 - 1629: -41,36 - 1630: -42,37 - 1631: -41,37 - 1632: -41,37 - 1633: -41,37 - 1634: -40,36 - 1635: -40,36 - 1636: -39,36 - 1637: -39,37 - 1638: -39,39 - 1639: -39,40 - 1640: -39,42 - 1641: -38,42 - 1642: -38,41 - 1643: -38,40 - 2480: -16,13 2489: -11,14 - 2499: -9,17 - 2500: -9,19 - 2501: -10,19 2502: -10,16 - 2503: -9,18 - 2504: -9,20 - 2506: -9,24 - 2507: -10,22 - 2508: -10,23 - 2510: -10,23 - 2512: -11,24 - 2513: -10,24 - 2514: -11,26 - 2515: -11,24 - 2517: -11,26 - 2518: -11,26 - 2519: -11,26 - 2520: -11,26 - 2521: -11,26 - 2522: -11,26 - 2523: -11,26 - 2524: -11,26 - 2525: -11,26 - 2526: -11,26 - 2527: -11,26 - 2528: -11,26 - 2529: -12,25 - 2530: -13,25 - 2531: -13,25 - 2532: -14,26 - 2533: -14,26 - 2534: -15,25 - 2535: -15,25 - 2536: -15,24 - 2537: -15,23 - 2538: -14,22 - 2539: -14,22 - 2540: -14,23 - 2541: -14,24 - 2542: -13,25 - 2543: -12,25 - 2545: -10,24 - 2546: -10,23 - 2547: -10,21 - 2548: -9,20 - 2549: -9,19 - 2550: -10,18 - 2551: -10,17 - 2552: -9,16 - 2556: -5,13 - 2557: -3,13 - 2558: -3,14 - 2559: -3,15 - 2560: -3,15 - 2561: -3,14 - 2562: -2,17 - 2563: -2,19 - 2564: -2,19 - 2565: -2,20 - 2566: -2,21 - 2567: -2,22 - 2568: -3,23 - 2569: -4,23 - 2570: -4,22 - 2571: -3,24 - 2572: -3,26 - 2573: -4,26 - 2574: -4,26 - 2575: -3,28 - 2576: -4,31 - 2577: -4,30 - 2578: -3,31 - 2579: -3,33 - 2580: -4,33 - 2581: -4,32 - 2582: -3,32 - 2583: -3,33 - 2585: -8,32 - 2586: -9,32 - 2587: -11,33 - 2588: -12,32 - 2589: -10,31 - 2590: -7,32 - 2592: 31,6 - 2593: 31,6 - 2594: 30,5 - 2595: 29,3 - 2596: 29,1 - 2597: 29,1 - 2598: 30,2 - 2599: 30,4 - 2600: 32,6 - 2601: 33,6 - 2602: 34,6 - 2603: 33,6 - 2604: 31,6 - 2605: 28,4 - 2606: 29,1 - 2608: 30,-1 - 2609: 30,0 - 2610: 30,1 - 2611: 30,1 - 2612: 30,0 - 2613: 30,0 - 2614: 33,0 - 2615: 35,1 - 2616: 36,0 - 2617: 36,0 - 2618: 34,-1 - 2619: 36,-3 - 2620: 37,-2 - 2621: 38,-1 - 2622: 38,0 - 2623: 39,1 - 2624: 39,-1 - 2625: 38,-2 - 2626: 38,0 - 2627: 37,4 - 2628: 38,4 - 2629: 37,6 - 2630: 36,6 - 2631: 37,7 - 2632: 37,6 - 2633: 38,6 - 2634: 38,7 - 2635: 36,5 - 2636: 39,6 - 2637: 39,6 - 2638: 39,6 - 2639: 38,5 - 2640: 38,7 - 2641: 37,8 2642: 36,9 - 2643: 35,12 - 2644: 35,11 - 2645: 35,11 - 2646: 35,10 - 2647: 36,11 - 2648: 35,11 - 2649: 34,12 - 2650: 32,11 - 2651: 34,12 - 2652: 33,11 - 2653: 34,11 - 2654: 33,12 - 2655: 33,11 - 2657: 31,12 - 2658: 31,10 - 2659: 32,11 - 2661: 29,11 - 2662: 29,10 - 2663: 30,10 - 2664: 33,10 - 2665: 35,10 - 2666: 37,10 - 2667: 38,11 - 2668: 39,10 - 2669: 38,10 - 2670: 36,11 - 2671: 34,11 - 2877: 22,33 - 2878: 21,32 - 2879: 23,31 - 2880: 23,32 - 2881: 23,33 - 2882: 22,34 - 2883: 22,35 - 2884: 21,36 - 2885: 21,36 - 2886: 21,36 - 2887: 21,36 - 2888: 21,35 - 2889: 22,34 - 2890: 22,34 - 2891: 22,33 - 2892: 22,32 - 2893: 22,31 - 2894: 24,32 - 2895: 26,31 - 2962: -14,17 - 2963: -15,17 - 2964: -13,17 - 2965: -13,18 - 2966: -13,19 - 2967: -18,22 - 2968: -19,21 - 2969: -19,21 - 2970: -19,20 - 2971: -18,21 - 2972: -18,22 - 2973: -19,22 - 2974: -20,22 - 2975: -21,21 - 2976: -21,20 - 2977: -20,20 - 2978: -20,20 - 2979: -8,2 - 2980: -8,2 - 2981: -8,3 - 2982: 35,-5 - 2998: 38,-5 - 2999: 38,-6 - 3000: 37,-6 - 3001: 36,-6 - 3002: 36,-6 - 3003: 38,-7 - 3004: 38,-7 - 3005: 38,-6 - 3006: 39,-6 - 3007: 39,-6 - 4745: -36,17 - 4746: -34,17 - 4747: -34,16 - 4748: -33,16 - 4749: -32,16 - 4750: -32,17 - 4751: -31,17 - 4752: -31,17 - 4753: -30,16 - 4754: -31,14 - 4755: -31,13 - 4756: -31,12 - 4757: -30,12 - 4758: -30,13 - 4759: -30,14 - 4760: -31,15 - 4761: -33,15 - 4762: -33,12 - 4763: -33,11 - 4764: -30,13 - 4765: -27,13 - 4766: -26,13 - 4767: -25,13 - 4768: -25,14 - 4769: -27,14 - 4770: -26,13 - 4771: -24,13 - 4772: -23,14 - 4773: -23,14 - 4774: -23,14 - 4775: -22,13 - 4776: -21,13 - 4777: -21,13 - 4778: -20,13 - 4779: -20,13 - 4780: -21,13 - 4781: -21,12 - 4782: -21,12 - 4783: -20,12 - 4784: -20,12 - 4785: -20,12 - 4786: -20,13 - 4787: -19,13 - 4788: -19,13 - 4789: -18,13 - 4790: -18,13 - 4791: -17,13 - 4792: -17,12 - 4793: -16,11 - 4794: -15,11 - 4795: -14,13 - 4796: -15,15 - 4797: -16,15 - 4798: -16,12 - 4799: -14,11 - 4800: -13,11 - 5015: -27,11 - 5016: -27,11 - 5017: -28,11 - 5018: -28,11 - 5019: -28,10 - 5020: -28,10 - 5021: -27,10 - 5022: -27,12 - 5023: -26,13 - 5024: -24,13 - 5025: -24,14 - 5026: -26,14 - 5027: -26,14 - 5028: -27,14 - 5029: -25,14 - 5030: -24,14 - 5031: -23,14 - 5032: -17,12 - 5033: -18,11 - 5034: -17,11 - 5035: -15,10 - 5036: -14,11 - 5037: -13,11 - 5038: -12,10 - 5039: -12,10 - 5040: -12,11 - 5041: -12,11 - 5042: -12,11 - 5043: -12,11 - 5044: -12,12 - 5045: -13,13 - 5046: -13,14 - 5047: -13,15 - 5048: -13,15 - 5049: -13,15 - 5050: -14,15 - 5051: -15,15 - 5052: -16,14 - 5053: -12,17 - 5054: -13,17 - 5055: -13,17 - 5056: -13,18 - 5057: -13,19 - 5058: -14,19 - 5059: -15,20 - 5060: -16,19 - 5061: -16,19 - 5062: -16,18 - 5063: -15,18 - 5064: -15,18 - 5065: -14,18 - 5066: -13,19 - 5067: -13,19 - 5068: -13,18 - 5069: -2,19 - 5070: -15,17 - 5071: -15,17 - 5072: -15,18 - 5073: -15,19 - 5074: -15,19 - 5075: -15,18 - 5076: -15,17 - 5077: -13,18 - 5078: -13,19 - 5079: -13,19 - 5080: -12,19 - 5081: -12,19 - 5082: -12,19 - 5083: -13,19 - 5084: -13,19 - 5085: -12,19 - 5086: -12,20 - 5087: -12,20 - 5182: -8,13 - 5183: -8,14 - 5184: -8,13 - 5185: -8,13 - 5186: -8,13 - 5187: -7,13 - 5188: -7,13 - 5189: -7,14 - 5190: -7,14 - 5192: -6,12 - 5214: -23,9 - 5220: -24,8 - 5253: -24,8 - 5254: -24,8 - 5255: -23,9 - 5338: 12,14 - 5339: 11,13 - 5340: 11,13 - 5341: 12,14 - 5342: 12,14 - 5343: 28,-10 - 5344: 28,-10 - 5345: 28,-12 - 5346: 28,-13 - 5347: 29,-13 - 5348: 30,-14 - 5349: 31,-13 - 5350: 31,-12 - 5351: 31,-12 - 5352: 31,-10 - 5353: 31,-9 - 5354: 28,-15 - 5355: 28,-15 - 5356: 28,-16 - 5357: 28,-17 - 5358: 28,-19 - 5359: 29,-21 - 5360: 29,-22 - 5361: 28,-24 - 5362: 28,-25 - 5363: 29,-26 - 5364: 27,-25 - 5365: 28,-26 - 5366: 30,-26 - 5367: 31,-26 - 5368: 32,-26 - 5369: 33,-25 - 5370: 33,-24 - 5371: 33,-24 - 5588: 32,-9 - 5589: 31,-10 - 5590: 31,-11 - 5591: 31,-12 - 5592: 30,-12 - 5593: 29,-13 - 5594: 29,-13 - 5595: 28,-11 - 5596: 28,-10 - 5597: 29,-10 - 5598: 29,-9 - 5599: 28,-9 - 5600: 27,-10 - 5601: 28,-11 - 5602: 28,-13 - 5603: 28,-15 - 5604: 28,-15 - 5605: 28,-16 - 5606: 28,-17 - 5607: 29,-16 - 5608: 29,-14 - 5609: 29,-14 - 5610: 29,-16 - 5611: 29,-17 - 5612: 29,-19 - 5613: 28,-19 - 5614: 27,-17 - 5615: 27,-16 - 5616: 27,-16 - 5617: 26,-16 - 5618: 26,-17 - 5619: 28,-18 - 5620: 28,-19 - 5621: 28,-19 - 5622: 28,-21 - 5623: 29,-22 - 5624: 29,-21 - 5625: 29,-21 - 5626: 28,-23 - 5627: 29,-24 - 5628: 29,-24 - 5629: 27,-24 - 5630: 27,-25 - 5631: 28,-25 - 5632: 30,-26 - 5633: 32,-26 - 5634: 32,-26 - 5635: 33,-25 - 5636: 34,-25 - 5637: 34,-24 - 5638: 34,-24 - 5639: 34,-25 - 5640: 34,-24 - 5641: 34,-25 - 5642: 34,-25 - 5643: 34,-24 - 5644: 34,-25 - 5645: 34,-24 - 5646: 33,-24 - 5647: 31,-24 - 5648: 30,-24 - 5649: 30,-23 - 5650: 30,-23 - 5651: 29,-25 - 5652: 34,-26 - 5653: 36,-26 - 5654: 37,-26 - 5655: 38,-25 - 5656: 37,-25 - 5657: 37,-26 - 5658: 39,-26 - 5659: 39,-26 - 5660: 40,-25 - 5661: 40,-24 - 5662: 39,-24 - 5663: 38,-24 - 5664: 36,-24 - 5665: 34,-26 - 5666: 31,-26 - 5667: 28,-24 - 5668: 28,-23 - 5669: 27,-25 - 5670: 28,-25 - 5671: 27,-25 - 5672: 29,-27 - 5673: 29,-27 - 5674: 28,-28 - 5675: 29,-28 - 5676: 28,-28 - 5677: 27,-29 - 5678: 27,-31 - 5679: 28,-31 - 5680: 29,-30 - 5681: 28,-30 - 5682: 27,-29 - 5683: 26,-30 - 5684: 26,-30 - 5685: 27,-30 - 5686: 28,-30 - 5687: 29,-17 - 5688: 29,-15 - 5689: 29,-15 - 5690: 29,-15 - 5691: 28,-17 - 5692: 28,-17 - 5693: 29,-16 - 5694: 29,-17 - 5695: 29,-17 - 5696: 29,-18 - 5697: 29,-18 - 5698: 29,-18 - 5699: 29,-18 - 5700: 29,-18 - 5701: 30,-14 - 5702: 30,-14 - 5703: 31,-14 - 5704: 31,-14 - 5705: 31,-13 - 5706: 31,-11 - 5707: 30,-10 - 5804: 43,-17 - 5805: 42,-17 - 5806: 42,-17 - 5807: 43,-16 - 5808: 43,-16 - 5809: 44,-12 - 5810: 44,-12 - 5811: 40,-12 - 5812: 40,-12 - 5813: 40,-11 - 5814: 39,-11 - 5815: 39,-16 - 5816: 39,-16 - 5817: 40,-16 - 5818: 36,-15 - 5819: 36,-15 - 5820: 35,-13 - 5821: 35,-12 - 5822: 34,-11 - 5823: 34,-12 - 5824: 32,-13 - 5825: -1,-22 - 5826: -1,-22 - 5827: -1,-21 - 5828: -1,-19 - 5829: 0,-19 - 5830: 0,-20 - 5831: 0,-21 - 5832: 0,-22 - 5833: -1,-23 - 5955: -25,-32 - 5956: -25,-32 - 5957: -26,-37 - 5958: -26,-38 - 5959: -25,-40 - 5960: -23,-39 - 5961: -22,-35 - 5962: -25,-35 - 5963: -27,-37 - 5964: -26,-40 - 5965: -24,-35 - 5966: -27,-29 - 5967: -26,-28 - 5968: -25,-30 - 5969: -25,-27 - 5970: -25,-26 - 5971: -25,-23 - 5972: -27,-22 - 5973: -27,-23 - 5974: -23,-22 - 5975: -22,-21 - 5976: -22,-20 - 5977: -29,-23 - 5978: -30,-23 - 5979: -31,-23 - 5980: -32,-23 - 5981: -34,-23 - 5982: -36,-22 - 5983: -37,-21 - 5984: -38,-22 - 5985: -38,-23 - 5986: -36,-23 - 5987: -35,-22 - 5988: -36,-22 - 5989: -37,-23 - 5998: -17,-21 - 5999: -17,-19 - 6000: -17,-18 - 6001: -18,-18 - 6002: -18,-18 - 6007: -14,-20 - 6008: -14,-20 - 6009: -14,-22 - 6010: -15,-22 - 6011: -14,-22 - 6012: -14,-23 - 6013: -13,-22 - 6159: -20,-4 - 6160: -21,-4 - 6161: -22,-3 - 6162: -22,-2 - 6163: -22,-2 - 6164: -23,-2 - 6165: -24,-3 - 6166: -24,-4 - 6167: -23,-4 - 6168: -15,-4 - 6169: -15,-5 - 6170: -14,-5 - 6171: -14,-5 - 6172: -13,-5 - 6173: -12,-4 - 6174: -12,-4 - 6175: -15,-10 - 6177: -15,-10 - 6178: -15,-11 - 6179: -14,-11 - 6180: -13,-11 - 6184: -22,-14 - 6185: -23,-14 - 6186: -23,-14 - 6187: -24,-14 - 6188: -25,-13 - 6189: -26,-13 - 6190: -26,-14 - 6191: -26,-15 - 6192: -25,-15 - 6193: -24,-15 - 6194: -23,-15 - 6195: -22,-15 - 6196: -22,-14 - 6197: -22,-14 - 6198: -22,-14 - 6255: 6,-2 - 6256: 6,-2 - 6257: 8,-3 - 6258: 8,-3 - 6259: 9,-3 - 6260: 10,-3 - 6261: 12,-3 - 6262: 12,-3 - 6263: 11,-3 - 6264: 8,-3 - 6265: 5,-2 - 6267: 2,-3 - 6268: 2,-4 - 6269: 2,-5 - 6792: -74,12 - 6793: -74,13 - 6794: -74,14 - 6795: -74,15 - 6796: -73,17 - 6797: -74,19 - 6798: -74,19 - 6799: -75,19 - 6800: -74,17 - 6801: -74,18 - 6802: -74,21 - 6803: -74,23 - 6804: -74,23 - 6805: -74,24 - 6806: -74,26 - 6807: -74,27 - 6808: -74,28 - 6809: -73,29 - 6810: -72,29 - 6811: -71,29 - 6812: -70,29 - 6813: -69,28 - 6814: -67,28 - 6815: -65,29 - 6816: -65,29 - 6817: -63,29 - 6818: -61,29 - 6819: -62,28 - 6820: -61,28 - 6821: -59,29 - 6822: -57,29 - 6823: -55,29 - 6824: -55,28 - 6825: -56,27 - 6826: -57,27 - 6827: -56,26 - 6828: -55,26 - 6829: -56,25 - 6830: -57,23 - 6831: -57,22 - 6832: -56,21 - 6833: -56,20 - 6834: -56,19 - 6835: -56,18 - 6836: -56,17 - 6837: -55,17 - 6838: -57,15 - 6839: -56,14 - 6840: -56,14 - 6841: -56,13 - 6842: -57,11 - 6843: -56,11 - 6844: -56,11 - 6845: -56,10 - 6846: -56,10 - 6847: -55,10 - 6848: -56,12 - 6849: -56,15 - 6850: -56,18 - 6851: -56,22 - 6852: -56,25 - 6853: -56,29 - 6854: -54,30 - 6855: -51,30 - 6856: -49,30 - 6857: -50,31 - 6858: -51,31 - 6859: -50,30 - 6860: -48,30 - 6861: -46,30 - 6862: -46,30 - 6863: -48,29 - 6864: -47,28 - 6865: -44,28 - 6866: -42,28 - 6867: -41,29 - 6868: -42,30 - 6869: -41,29 - 6870: -38,29 - 6871: -37,28 - 6872: -38,26 - 6873: -38,25 - 6874: -37,24 - 6875: -38,24 - 6876: -38,22 - 6877: -38,22 - 6878: -38,20 - 6879: -39,19 - 6880: -38,19 - 6881: -39,18 - 6882: -38,16 - 6883: -38,17 - 6884: -38,15 - 6885: -37,15 - 6886: -39,14 - 6887: -37,13 - 6888: -37,12 - 6889: -38,11 - 6890: -36,11 - 6891: -37,11 - 6892: -37,10 - 6893: -37,11 - 6894: -39,12 - 6895: -38,13 - 6896: -38,17 - 6897: -38,19 - 6898: -38,21 - 6899: -37,25 - 6900: -38,29 - 6901: -38,30 - 6902: -38,32 - 6903: -37,33 - 6904: -38,32 - 6905: -35,32 - 6906: -34,33 - 6907: -36,33 - 6908: -33,32 - 6909: -32,34 - 6910: -32,33 - 6911: -31,33 - 6912: -28,33 - 6913: -27,33 - 6914: -26,33 - 6915: -24,33 - 6916: -25,32 - 6917: -26,32 - 6918: -26,33 - 6919: -24,33 - 6920: -21,33 - 6921: -19,32 - 6922: -19,32 - 6924: -16,32 - 6925: -16,33 - 6926: -17,33 - 6927: -16,33 - 6928: -15,32 - 6929: -12,32 - 6930: -11,33 - 6931: -10,33 - 6932: -10,32 - 6933: -10,32 - 6934: -7,32 - 6935: -5,32 - 6936: -4,32 - 6937: -3,31 - 6938: -2,33 - 6939: -2,36 - 6940: -3,39 - 6941: -3,41 - 6942: -3,40 - 6943: -3,38 - 6944: -4,34 - 6945: -4,31 - 6946: -4,28 - 6947: -4,26 - 6948: -4,25 - 6949: -2,18 - 6984: 3,38 - 6985: 4,39 - 6986: 5,38 - 6991: 9,38 - 6992: 9,38 - 6993: 9,38 - 6994: 9,38 - 6995: 9,38 - 7005: 2,40 - 7006: 2,40 - 7007: 2,40 - 7008: 2,40 - 7009: 8,42 - 7010: 8,42 - 7011: 4,42 - 7012: 4,42 - 7013: 2,37 - 7014: 2,37 - 7015: 3,39 - 7016: 3,39 - 7017: 3,39 - 7018: 6,40 - 7019: 6,40 - 7020: 6,40 - 7021: 6,41 - 7022: 6,41 - 7023: 6,41 - 7024: 6,42 - 7025: 6,42 - 7026: 6,42 - 7027: 6,41 - 7028: 6,41 - 7029: 6,41 - 7030: 7,41 - 7031: 7,41 - 7032: 9,41 - 7033: 9,41 - 7034: 9,41 - 7035: 9,40 - 7036: 9,40 - 7037: 9,39 - 7038: 9,39 - 7039: 9,39 - 7040: 9,39 - 7041: 9,40 - 7042: 9,40 - 7043: 9,40 - 7044: 13,41 - 7045: 13,41 - 7046: 12,43 - 7047: 12,38 - 7048: 12,38 - 7049: 11,38 - 7050: 11,38 - 7051: 11,38 - 7052: 11,38 - 7053: 12,36 - 7054: 12,36 - 7894: 51,-6 - 7895: 52,-6 - 7896: 53,-6 - 7897: 53,-6 - 7898: 53,-6 - 7899: 53,-6 - 7900: 53,-6 - 7901: 53,-6 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 7553: -9,25 - 7554: -9,25 - 7555: -10,25 - 7556: -9,26 - 7974: 11,28 - 7975: 11,28 - 7976: 11,30 - 7977: 10,27 - 7978: 11,25 - 7979: 11,24 - 7980: 12,24 - 7981: 6,25 - 7982: 6,24 - 7983: 7,25 - 7984: 7,26 - 7985: 11,25 - 7986: 12,26 - 7987: 12,26 - 7988: 12,27 - 8032: 12,28 - 8033: 12,28 - 8034: 7,26 - 8035: 7,25 - 8036: 16,25 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 129: -13,2 - 130: -12,3 - 131: -13,3 - 132: -14,3 - 622: -17,13 - 627: -13,10 - 628: -15,10 - 727: -14,-9 - 728: -14,-9 - 729: -13,-9 - 730: -13,-9 - 731: -13,-11 - 766: -21,-10 - 767: -22,-11 - 768: -23,-11 - 815: -27,-13 816: -28,-13 - 817: -26,-14 - 818: -25,-14 - 819: -24,-14 - 820: -23,-14 - 821: -22,-15 - 861: -19,-20 - 862: -18,-19 - 863: -18,-21 - 864: -18,-22 - 865: -19,-23 - 866: -19,-23 - 867: -18,-24 - 868: -17,-24 - 901: -21,-21 - 903: -21,-21 - 904: -26,-23 - 905: -21,-21 - 1047: -2,-23 - 1048: -3,-23 - 1049: -2,-23 - 1050: 0,-23 - 1051: 0,-22 - 1052: 0,-20 - 1053: 5,-20 - 1054: 3,-21 - 1055: 3,-21 - 1056: 3,-19 - 1057: 3,-19 - 1058: 3,-17 - 1059: 5,-17 - 1060: 5,-17 - 1061: 6,-18 - 1062: 6,-19 - 1066: 7,-21 - 1067: 8,-21 - 1068: 9,-21 - 1069: 9,-20 - 1093: 7,-24 - 1094: 6,-24 - 1095: 10,-23 - 1096: 10,-23 - 1097: 12,-22 - 1098: 12,-21 - 1099: 12,-20 - 1236: 14,8 - 1237: 14,8 - 1238: 17,7 - 1239: 18,8 - 1241: 13,9 - 1242: 10,9 - 1243: 7,8 - 1244: 7,7 - 1245: 9,7 - 1246: 7,9 - 1479: -10,47 - 1480: -10,47 - 1481: -11,47 - 1482: -11,47 - 1483: -11,46 - 1644: -40,43 - 1645: -40,42 - 1646: -39,42 - 1647: -39,42 - 1648: -38,41 - 1649: -39,41 - 1650: -39,42 - 1651: -39,42 - 1652: -38,41 - 1653: -38,39 - 1654: -38,38 - 1655: -38,38 - 1656: -38,38 - 1657: -39,37 - 1658: -40,37 - 2905: 22,33 - 2906: 22,33 - 2907: 23,32 - 2908: 23,33 - 2909: 23,34 - 2910: 24,35 - 2911: 25,35 - 2912: 26,35 - 2913: 26,35 - 2914: 25,35 - 2915: 24,35 - 2916: 24,33 - 2917: 25,33 - 2918: 26,32 - 2919: 27,32 - 2920: 28,32 - 2921: 15,14 - 2922: 16,14 - 2923: 17,14 - 2924: 16,13 - 2925: 14,13 - 2926: 11,12 - 2927: 10,13 - 2928: 11,16 - 2929: 12,17 - 2930: 12,18 - 2931: 11,18 - 2932: 9,15 - 2933: 9,12 - 2934: 9,11 - 2935: 8,11 - 2936: -14,18 - 2937: -13,18 - 2938: -14,19 - 2939: -15,19 - 2940: -16,18 - 2941: -15,17 - 2942: -13,17 - 2943: -12,18 - 2944: -13,19 - 2945: -13,20 - 3008: 39,-7 - 3009: 39,-7 - 3010: 37,-7 - 3011: 37,-7 - 3012: 37,-7 - 4801: -16,12 - 4802: -16,12 - 4803: -15,11 - 4804: -14,11 - 4805: -14,12 - 4806: -14,12 - 4807: -12,11 - 4808: -12,11 - 4809: -13,10 - 4810: -15,10 - 4811: -16,10 - 4812: -17,10 - 4813: -17,11 - 4814: -18,12 - 4815: -18,13 - 4816: -18,13 - 4817: -18,14 - 4818: -17,14 - 4819: -16,14 - 4820: -15,14 - 4821: -15,13 - 4822: -16,12 - 4823: -15,12 - 4824: -14,13 - 4825: -14,14 - 4826: -14,15 - 4827: -14,15 - 4828: -13,15 - 4829: -12,15 - 4830: -12,14 - 4831: -12,13 - 4832: -12,13 - 4833: -11,13 - 4834: -10,13 - 4835: -9,13 - 4836: -8,14 - 4837: -8,14 - 4838: -6,12 - 4839: -7,11 - 4840: -7,12 - 4841: -8,12 - 4842: -9,13 - 4843: -9,15 - 4844: -8,15 - 4845: -7,15 - 4846: -8,16 - 4847: -9,17 - 4848: -9,18 - 4849: -9,20 - 4850: -9,22 - 4851: -9,22 - 4852: -10,23 - 4853: -10,23 - 4854: -10,21 - 4855: -9,24 - 4859: -10,24 - 4860: -10,24 - 4862: -11,25 - 4863: -10,24 - 4864: -10,23 - 5221: -23,8 - 5222: -23,8 - 5223: -23,8 - 5224: -23,8 - 5225: -23,9 - 5227: -24,10 - 5228: -24,10 - 5229: -24,11 - 5230: -24,11 - 5231: -25,11 - 5232: -25,11 - 5233: -25,10 - 5236: -24,9 - 5237: -24,9 - 5238: -24,9 - 5239: -24,9 - 5240: -24,9 - 5241: -24,9 - 5242: -24,9 - 5243: -23,10 - 5244: -23,10 - 5245: -23,10 - 5246: -23,11 - 5247: -24,11 - 5248: -24,10 - 5249: -25,10 - 5250: -25,9 - 5251: -25,8 - 5252: -25,8 - 5708: 29,-10 - 5709: 29,-10 - 5710: 28,-9 - 5711: 28,-9 - 5712: 27,-8 - 5713: 27,-8 - 5714: 28,-8 - 5715: 28,-8 - 5716: 29,-9 - 5717: 31,-10 - 5718: 31,-12 - 5719: 29,-13 - 5720: 29,-14 - 5721: 31,-15 - 5722: 32,-13 - 5723: 32,-12 - 5724: 32,-12 - 5725: 32,-10 - 5726: 31,-9 - 5727: 30,-11 - 5728: 29,-13 - 5729: 28,-14 - 5730: 28,-15 - 5731: 29,-15 - 5732: 29,-16 - 5733: 34,-17 - 5734: 35,-17 - 5735: 36,-16 - 5736: 36,-16 - 5737: 36,-16 - 5738: 35,-16 - 5739: 35,-16 - 5990: -36,-23 - 5991: -36,-23 - 5992: -26,-24 - 5993: -26,-24 - 5994: -21,-23 - 5995: -17,-22 - 5996: -17,-21 - 5997: -17,-21 - 6014: -14,-22 - 6015: -14,-22 - 6016: -21,-27 - 6017: -21,-27 - 6018: -21,-27 - 6019: -22,-28 - 6020: -22,-30 - 6021: -22,-31 - 6022: -22,-31 - 6023: -22,-31 - 6024: -23,-31 - 6025: -22,-33 - 6026: -22,-33 - 6027: -22,-33 - 7055: 13,38 - node: cleanable: True - zIndex: 1 color: '#FFFFFFFF' - id: DirtHeavyMonotile + id: DirtMedium decals: - 7989: 10,27 - 7990: 10,28 - 7991: 10,28 - 7992: 12,30 - 7993: 12,29 - 7994: 12,29 - 7995: 11,26 - 7996: 10,25 - 7997: 10,24 - 7998: 10,24 - 7999: 10,23 - 8000: 11,23 - 8001: 12,24 - 8002: 11,23 - 8003: 10,23 - 8004: 10,23 - 8005: 11,23 - 8026: 9,27 - 8027: 9,27 - 8028: 9,26 - 8029: 9,26 - 8030: 9,26 - 8031: 9,26 + 2060: 14,10 + 2061: 14,10 + 2062: 14,10 + 2067: 14,10 + 2071: 14,10 + 2132: 22,-19 - node: - cleanable: True color: '#FFFFFFFF' - id: DirtLight + id: GrayConcreteTrimBox decals: - 133: -14,3 - 134: -12,3 - 135: -12,2 - 136: -14,1 - 137: -12,1 - 230: 0,-2 - 769: -24,-9 - 770: -23,-10 - 771: -23,-9 - 772: -21,-10 - 773: -21,-10 - 779: -22,-15 - 780: -22,-15 - 781: -23,-14 - 782: -25,-14 - 783: -25,-15 - 784: -25,-15 - 785: -23,-14 - 786: -22,-14 - 787: -22,-14 - 788: -21,-15 - 789: -23,-15 - 790: -24,-15 - 791: -24,-15 - 792: -24,-13 - 793: -24,-13 - 794: -25,-13 - 795: -26,-13 - 822: -27,-15 - 823: -27,-15 - 824: -25,-15 - 825: -24,-14 - 826: -24,-14 - 827: -25,-15 - 828: -26,-15 - 1076: 10,-21 - 1077: 9,-20 - 1078: 9,-20 - 1079: 10,-24 - 1080: 9,-23 - 1081: 8,-23 - 1082: 6,-23 - 1083: 6,-23 - 1084: 7,-23 - 1085: 7,-24 - 1086: 8,-24 - 1087: 9,-24 - 1484: -11,47 - 1485: -14,47 - 1486: -14,47 - 1487: -14,48 - 1488: -15,48 - 1489: -15,47 - 1690: -41,39 - 1691: -41,39 - 1692: -41,39 - 1693: -41,41 - 1694: -41,41 - 1695: -42,43 - 1696: -42,43 - 1697: -39,42 - 1698: -39,41 - 1699: -38,42 - 1700: -38,42 - 1701: -35,39 - 1702: -35,40 - 1703: -35,40 - 1704: -34,40 - 1705: -34,40 - 1706: -33,41 - 1707: -32,41 - 1708: -32,40 - 1709: -32,39 - 3013: 37,-7 - 3014: 37,-7 - 3015: 38,-6 - 3016: 39,-6 - 3017: 39,-7 - 3018: 39,-7 - 4865: -13,12 - 4866: -13,12 - 4867: -12,12 - 4868: -12,13 - 4869: -10,15 - 4870: -9,16 - 4871: -12,14 - 4872: -12,14 - 4873: -12,13 - 4874: -12,13 - 4875: -12,13 - 4876: -12,13 - 4877: -12,13 - 4878: -12,13 - 4879: -12,13 - 4880: -12,13 - 4881: -8,12 - 4882: -8,13 - 4883: -7,13 - 7056: 11,36 - 7057: 12,37 - 7058: 13,40 - 7059: 13,40 - 7902: 53,-6 - 7903: 52,-6 + 9452: -38,-13 + 9453: -37,-13 + 9454: -35,-13 + 9455: -34,-13 + 9456: -35,-15 + 9457: -34,-15 + 9458: -37,-15 + 9459: -38,-15 + 9460: -38,-17 + 9461: -37,-17 + 9462: -35,-17 + 9463: -34,-17 + 9464: -34,-19 + 9465: -35,-19 + 9466: -37,-19 + 9467: -38,-19 - node: - cleanable: True - zIndex: 1 color: '#FFFFFFFF' - id: DirtLight + id: GrayConcreteTrimEndE decals: - 7557: -9,25 - 7558: -9,25 - 7559: -9,25 - 7560: -10,26 - 7561: -10,26 - 7562: -10,26 - 7563: -10,26 - 7564: -10,26 + 9432: -34,-14 + 9433: -34,-18 + 9443: -34,-14 - node: - cleanable: True color: '#FFFFFFFF' - id: DirtMedium + id: GrayConcreteTrimEndN decals: - 138: -13,1 - 139: -14,1 - 140: -13,2 - 232: 0,-2 - 906: -21,-21 - 907: -21,-24 - 908: -21,-24 - 909: -21,-23 - 910: -21,-26 - 911: -22,-26 - 912: -23,-26 - 913: -22,-26 - 914: -21,-27 - 915: -22,-28 - 916: -23,-29 - 917: -22,-30 - 918: -22,-30 - 1900: -3,32 - 1901: -3,31 - 1902: -3,33 - 1903: -3,33 - 1904: -3,34 - 1905: -3,36 - 1906: -5,37 - 1907: -4,38 - 1908: -3,41 - 1909: -3,41 - 1910: -2,41 - 1911: -2,40 - 1912: -2,39 - 1913: -4,38 - 1914: -4,37 - 1915: -3,36 - 1916: -3,39 - 1917: -3,37 - 1918: -4,34 - 1919: -4,32 - 1920: -3,31 - 1921: -3,33 - 1922: -3,35 - 1923: -2,38 - 1924: -2,40 - 1925: -2,40 - 1926: -2,40 - 1927: -2,40 - 1928: -2,40 - 1929: -2,39 - 1930: -2,39 - 1931: -2,39 - 1932: -3,39 - 1933: -3,40 - 1934: -3,40 - 1935: -2,41 - 1936: -2,41 - 1937: -3,41 - 1938: -4,40 - 1939: -4,39 - 1940: -3,37 - 1941: -3,36 - 1942: -3,36 - 1943: -3,35 - 1944: -4,33 - 1945: -3,32 - 1946: -2,32 - 1947: -4,30 - 1948: -4,28 - 1949: -3,28 - 1950: -2,29 - 1952: -3,29 - 1953: -3,28 - 1954: -3,28 - 1955: -3,27 - 1956: -3,26 - 1957: -3,26 - 1958: -3,25 - 1959: -4,24 - 1960: -3,24 - 1961: -3,24 - 1962: -2,24 - 1963: -2,25 - 1964: -2,26 - 1965: -2,26 - 1966: -3,27 - 1967: -4,27 - 1968: -4,26 - 1969: -4,25 - 1970: -4,23 - 1971: -4,22 - 1972: -4,21 - 1973: -3,21 - 1974: -2,22 - 1975: -2,23 - 1976: -3,23 - 1977: -4,21 - 1978: -4,19 - 1979: -4,18 - 1980: -3,18 - 1981: -3,19 - 1982: -3,20 - 1983: -4,18 - 1984: -3,18 - 1985: 0,20 - 1986: 0,22 - 1987: 0,22 - 1988: 0,19 - 1989: 0,19 - 1990: 1,19 - 1991: 1,21 - 1992: 1,22 - 1993: 1,22 - 1994: 0,21 - 1995: 0,19 - 1996: 1,19 - 1997: 2,19 - 1998: 2,19 - 1999: 3,20 - 2000: 3,21 - 2001: 3,21 - 2002: 3,20 - 2003: 3,18 - 2004: 2,17 - 2005: 1,16 - 2006: 1,15 - 2007: 1,14 - 2008: 2,15 - 2009: 2,15 - 2010: 2,14 - 2011: 2,13 - 2012: 2,12 - 2013: 1,12 - 2014: 1,12 - 2015: 15,13 - 2016: 14,12 - 2017: 14,12 - 2018: 13,12 - 2019: 13,12 - 2020: 13,12 - 2021: 14,13 - 2022: 13,14 - 2023: 13,15 - 2024: 13,16 - 2025: 13,18 - 2026: 12,18 - 2027: 12,19 - 2028: 11,19 - 2029: 11,18 - 2030: 10,18 - 2031: 10,18 - 2032: 10,18 - 2033: 10,17 - 2034: 10,17 - 2035: 10,16 - 2036: 10,14 - 2037: 10,13 - 2038: 9,12 - 2039: 8,12 - 2040: 8,11 - 2041: 9,11 - 2042: 12,11 - 2043: 14,12 - 2044: 17,13 - 2045: 19,13 - 2046: 19,12 - 2047: 18,11 - 2048: 19,10 - 2049: 20,11 - 2050: 20,13 - 2051: 21,13 - 2052: 21,14 - 2053: 21,14 - 2054: 20,12 - 2055: 20,12 - 2056: 21,13 - 2057: 19,14 - 2058: 15,13 - 2059: 14,11 - 2060: 14,10 - 2061: 14,10 - 2062: 14,10 - 2063: 15,11 - 2064: 15,11 - 2065: 14,11 - 2066: 14,11 - 2067: 14,10 - 2068: 15,11 - 2069: 15,11 - 2070: 15,11 - 2071: 14,10 - 2072: 14,9 - 2073: 14,8 - 2074: 16,8 - 2075: 17,8 - 2076: 18,8 - 2077: 19,8 - 2078: 19,6 - 2079: 20,6 - 2080: 21,7 - 2081: 21,9 - 2082: 21,9 - 2083: 20,8 - 2084: 20,6 - 2085: 20,4 - 2086: 20,2 - 2087: 21,2 - 2088: 21,4 - 2090: 19,2 - 2091: 19,0 - 2094: 20,1 - 2095: 20,1 - 2097: 20,-3 - 2098: 19,-4 - 2099: 20,-4 - 2100: 20,-3 - 2101: 21,-3 - 2102: 21,-2 - 2103: 20,-3 - 2104: 19,-5 - 2105: 19,-7 - 2106: 19,-7 - 2107: 20,-6 - 2108: 21,-4 - 2109: 21,-4 - 2110: 21,-5 - 2112: 21,-8 - 2113: 21,-9 - 2115: 21,-12 - 2116: 21,-13 - 2117: 21,-13 - 2119: 21,-10 - 2120: 21,-10 - 2121: 21,-13 - 2122: 22,-14 - 2123: 24,-13 - 2124: 24,-12 - 2125: 23,-12 - 2126: 22,-12 - 2127: 20,-14 - 2128: 19,-17 - 2129: 22,-17 - 2130: 22,-17 - 2131: 23,-18 - 2132: 22,-19 - 2133: 23,-20 - 2134: 24,-21 - 2135: 23,-21 - 2136: 24,-19 - 2137: 24,-20 - 2138: 23,-23 - 2139: 23,-25 - 2140: 22,-26 - 2141: 23,-26 - 2142: 24,-23 - 2143: 23,-24 - 2144: 22,-28 - 2145: 23,-29 - 2146: 23,-28 - 2147: 23,-29 - 2148: 24,-29 - 2149: 23,-28 - 2150: 22,-31 - 2151: 23,-30 - 2896: 22,31 - 2897: 22,31 - 2898: 23,31 - 2899: 23,32 - 2900: 22,33 - 2901: 22,34 - 2902: 23,34 - 2903: 25,32 - 2904: 26,31 - 3019: 38,-7 - 3020: 38,-7 - 3021: 36,-7 - 3022: 35,-7 - 3023: 35,-6 - 3024: 35,-5 - 3025: 36,-5 - 3026: 37,-5 - 4884: -15,12 - 4885: -15,12 - 4886: -15,12 - 4887: -15,12 - 4888: -16,12 - 4889: -16,12 - 4890: -17,12 - 4891: -18,12 - 4892: -18,12 - 4893: -18,12 - 4894: -18,13 - 4895: -17,13 - 4896: -18,13 - 4897: -19,13 - 4898: -19,13 - 4899: -20,13 - 4900: -21,13 - 4901: -21,14 - 4902: -21,14 - 4903: -21,15 - 4904: -21,15 - 4905: -21,15 - 4906: -21,16 - 4907: -21,16 - 4908: -21,17 - 4909: -20,17 - 4910: -19,17 - 4911: -18,18 - 4912: -18,18 - 4913: -19,18 - 4914: -19,18 - 4915: -21,18 - 4916: -23,17 - 4917: -24,17 - 4918: -24,17 - 4919: -25,18 - 4920: -26,18 - 4921: -27,18 - 4922: -27,17 - 4923: -28,17 - 4924: -28,16 - 4925: -27,16 - 4926: -26,16 - 4927: -24,16 - 4928: -24,17 - 4929: -23,18 - 4930: -22,18 - 4931: -20,17 - 4932: -18,19 - 4933: -18,21 - 4934: -18,21 - 4935: -19,21 - 4936: -20,21 - 4937: -20,21 - 4938: -19,20 - 4939: -18,21 - 4940: -18,22 - 4941: -19,22 - 4942: -19,22 - 4943: -19,22 - 4944: -20,22 - 4945: -20,22 - 4946: -21,22 - 4947: -21,22 - 4948: -22,22 - 4949: -22,22 - 4950: -22,21 - 4951: -21,21 - 4952: -21,21 - 4953: -21,21 - 4954: -19,20 - 4955: -19,19 - 4956: -21,16 - 4957: -22,14 - 4958: -21,13 - 4959: -22,12 - 4960: -23,13 - 4961: -24,13 - 4962: -25,13 - 4963: -25,13 - 4964: -23,13 - 4965: -23,13 - 4966: -24,14 - 4967: -25,14 - 4968: -26,14 - 4969: -26,14 - 4970: -27,14 - 4971: -28,14 - 4972: -28,14 - 4973: -28,14 - 4974: -27,13 - 4975: -28,13 - 4976: -29,13 - 4977: -29,13 - 4978: -29,13 - 4979: -30,13 - 4980: -30,14 - 4981: -30,15 - 4982: -32,16 - 4983: -33,16 - 4984: -34,16 - 4985: -34,14 - 4986: -34,12 - 4987: -34,11 - 4988: -34,11 - 4989: -32,10 - 4990: -32,10 - 4991: -33,12 - 4992: -34,12 - 4993: -32,10 - 4994: -32,11 - 4995: -29,14 - 4996: -26,14 - 4997: -25,14 - 4998: -25,13 - 4999: -28,13 - 5000: -28,13 - 5001: -27,12 - 5002: -27,11 - 5003: -28,11 - 5004: -28,11 - 5005: -28,10 - 5006: -27,10 - 5007: -27,10 - 5008: -27,10 - 5009: -28,9 - 5010: -28,9 - 5011: -28,9 - 5012: -27,10 - 5013: -27,10 - 5014: -27,10 - 5256: -23,8 - 5257: -27,10 - 5258: -27,10 - 7060: 11,42 - 7061: 12,43 - 7062: 12,43 - 7063: 12,43 - 7064: 12,43 - 7065: 12,43 - 7066: 8,38 - 7067: 8,38 + 9429: -36,-13 - node: - cleanable: True - zIndex: 1 color: '#FFFFFFFF' - id: DirtMedium + id: GrayConcreteTrimEndW decals: - 7565: -10,26 - 8006: 11,23 - 8007: 11,23 - 8008: 12,24 - 8009: 11,24 - 8010: 9,25 - 8011: 9,25 - 8012: 9,26 - 8013: 9,28 - 8014: 9,30 - 8015: 9,29 - 8016: 9,30 - 8017: 9,30 - 8018: 10,30 - 8019: 11,30 - 8020: 11,30 - 8021: 11,30 + 9430: -38,-18 + 9431: -38,-14 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNe decals: - 7170: -36,-18 - 7171: -36,-14 + 9444: -36,-14 + 9445: -36,-18 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: - 7172: -36,-14 - 7173: -36,-18 + 9446: -36,-18 + 9447: -36,-14 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSe decals: - 7176: -36,-14 - 7177: -36,-18 + 9448: -36,-14 + 9449: -36,-18 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSw decals: - 7174: -36,-18 - 7175: -36,-14 + 9450: -36,-14 + 9451: -36,-18 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 7142: -36,-13 - 7143: -36,-20 - 7144: -36,-19 - 7145: -36,-17 - 7146: -36,-16 - 7147: -36,-15 + 9419: -36,-19 + 9420: -36,-20 + 9421: -36,-17 + 9422: -36,-16 + 9423: -36,-15 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 7162: -38,-14 - 7163: -37,-14 - 7164: -35,-14 - 7165: -34,-14 - 7166: -35,-18 - 7167: -34,-18 - 7168: -37,-18 - 7169: -38,-18 + 9438: -37,-14 + 9439: -34,-14 + 9440: -35,-14 + 9441: -35,-18 + 9442: -37,-18 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 7154: -38,-18 - 7155: -37,-18 - 7156: -35,-18 - 7157: -34,-18 - 7158: -35,-14 - 7159: -34,-14 - 7160: -38,-14 - 7161: -37,-14 + 9434: -37,-18 + 9435: -35,-18 + 9436: -35,-14 + 9437: -37,-14 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 7148: -36,-13 - 7149: -36,-15 - 7150: -36,-16 - 7151: -36,-17 - 7152: -36,-19 - 7153: -36,-20 + 9424: -36,-20 + 9425: -36,-19 + 9426: -36,-17 + 9427: -36,-16 + 9428: -36,-15 - node: - zIndex: 1 - color: '#334E6DFF' + color: '#9C2020FF' + id: HalfTileOverlayGreyscale + decals: + 11026: 31,-9 + 11027: 30,-9 + 11028: 29,-9 + 11029: 28,-9 + 11030: 27,-9 + - node: + color: '#4B709CFF' + id: HalfTileOverlayGreyscale180 + decals: + 10289: 3,-17 + 10290: 4,-17 + 10291: 5,-17 + 10292: 6,-17 + - node: + color: '#9C2020FF' id: HalfTileOverlayGreyscale180 decals: - 7287: 8,-17 - 7288: 9,-17 - 7290: 10,-17 - 7291: 6,-17 - 7292: 5,-17 - 7293: 4,-17 - 7294: 3,-17 + 11031: 31,-13 + 11032: 30,-13 + 11033: 29,-13 + 11034: 28,-13 + 11035: 27,-13 + - node: + color: '#9C2020FF' + id: HalfTileOverlayGreyscale270 + decals: + 11037: 28,-18 + 11038: 28,-17 + 11039: 28,-16 + 11040: 28,-15 + 11041: 28,-14 + - node: + color: '#9C2020FF' + id: HalfTileOverlayGreyscale90 + decals: + 11016: 29,-18 + 11017: 29,-17 + 11018: 29,-16 + 11019: 29,-15 + 11021: 31,-13 + 11022: 31,-12 + 11023: 31,-11 + 11024: 31,-10 + 11025: 31,-9 + 11036: 29,-14 - node: - zIndex: 1 color: '#334E6DFF' - id: MarkupSquareQuater + id: MiniTileBoxOverlay + decals: + 9873: 5,-6 + 9874: 5,-10 + - node: + color: '#96DAFFFF' + id: MiniTileBoxOverlay + decals: + 9105: -23,17 + 9106: -23,16 + 9111: -26,16 + 9112: -25,16 + - node: + color: '#BC863FFF' + id: MiniTileBoxOverlay decals: - 7296: 2,-17 + 10204: 34,0 - node: color: '#FFA647FF' id: MiniTileCornerOverlayNE @@ -7882,66 +3473,118 @@ entities: decals: 7095: -38,-34 - node: - color: '#774194FF' - id: MiniTileEndOverlayE + color: '#FFFFFFFF' + id: MiniTileDarkLineE decals: - 4334: 35,13 + 11126: 34,-11 + 11127: 34,-12 + 11128: 34,-13 - node: - color: '#774194FF' - id: MiniTileEndOverlayS + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 11042: 30,-14 + 11043: 31,-14 + 11044: 32,-14 + 11045: 33,-14 + 11046: 35,-14 + 11047: 34,-14 + 11048: 36,-14 + 11049: 37,-14 + 11050: 38,-14 + 11051: 39,-14 + 11052: 40,-14 + 11053: 41,-14 + 11054: 42,-14 + 11055: 43,-14 + 11056: 44,-14 + 11057: 45,-14 + 11058: 46,-14 + 11059: 47,-14 + 11060: 48,-14 + 11061: 49,-14 + 11062: 50,-14 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS decals: - 4328: 30,12 + 11063: 46,-14 + 11064: 47,-14 + 11065: 48,-14 + 11066: 49,-14 + 11067: 50,-14 + 11068: 44,-14 + 11069: 45,-14 + 11070: 43,-14 + 11071: 42,-14 + 11072: 41,-14 + 11073: 40,-14 + 11074: 39,-14 + 11075: 38,-14 + 11076: 36,-14 + 11077: 37,-14 + 11078: 35,-14 + 11079: 31,-14 + 11080: 30,-14 + 11081: 32,-14 + 11082: 33,-14 + 11083: 34,-14 - node: - color: '#774194FF' - id: MiniTileEndOverlayW + color: '#FFFFFFFF' + id: MiniTileDarkLineW decals: - 4333: 32,13 + 11123: 36,-13 + 11124: 36,-12 + 11125: 36,-11 - node: - color: '#334E6DFF' - id: MiniTileInnerOverlayNE + color: '#43999EFF' + id: MiniTileEndOverlayN decals: - 3490: 6,-1 - 3491: 7,-2 - 3492: 8,-3 + 10869: -20,9 + 10873: -22,10 - node: - color: '#52B4E9FF' + color: '#43999EFF' + id: MiniTileEndOverlayS + decals: + 10870: -20,8 + 10874: -22,9 + - node: + color: '#334E6DFF' id: MiniTileInnerOverlayNE decals: - 4420: -7,13 - 4480: -10,22 + 9860: 8,-3 + 9861: 7,-2 - node: color: '#765428FF' id: MiniTileInnerOverlayNE decals: - 4315: 34,2 + 8838: 38,5 - node: - color: '#774194FF' + color: '#96DAFFFF' id: MiniTileInnerOverlayNE decals: - 4363: 35,11 + 8525: -20,13 - node: - color: '#9C2020FF' + color: '#9FED58FF' id: MiniTileInnerOverlayNE decals: - 4061: 31,-14 - 4068: 21,-11 + 10256: 11,25 - node: - color: '#AE6716FF' + color: '#FBB2FFFF' id: MiniTileInnerOverlayNE decals: - 4189: -25,-33 - 4190: -27,-33 - 4191: -25,-41 - 4192: -25,-35 - 4229: -36,-22 - 4230: -34,-23 - 4254: -1,-20 - 4255: -1,-22 + 9025: -19,-9 + 9026: -19,-4 + 9061: -24,-14 - node: - color: '#BE6BC3FF' + color: '#FF9821FF' id: MiniTileInnerOverlayNE decals: - 8168: -17,-15 + 9389: -25,-35 + 9390: -25,-41 + 9484: -27,-26 + 9510: -36,-22 + 9511: -34,-23 - node: color: '#FFA647FF' id: MiniTileInnerOverlayNE @@ -7955,45 +3598,49 @@ entities: color: '#334E6DFF' id: MiniTileInnerOverlayNW decals: - 3488: 5,-1 - 3489: 12,-3 + 9862: 4,-2 + 10200: 38,-6 + 10201: 39,-5 - node: - color: '#52B4E9FF' + color: '#43999EFF' id: MiniTileInnerOverlayNW decals: - 4418: -9,13 - 4446: -9,17 + 10866: -20,10 - node: color: '#765428FF' id: MiniTileInnerOverlayNW decals: - 4314: 29,-1 - 4371: 42,6 + 8835: 36,5 - node: - color: '#774194FF' + color: '#96DAFFFF' id: MiniTileInnerOverlayNW decals: - 4362: 32,11 + 8527: -20,13 + 8528: -18,17 + 8533: -9,17 - node: - color: '#9C2020FF' + color: '#9FED58FF' id: MiniTileInnerOverlayNW decals: - 4047: 28,-23 - 4048: 34,-24 - 4049: 31,-9 + 10255: 10,25 - node: - color: '#AE6716FF' + color: '#BC863FFF' + id: MiniTileInnerOverlayNW + decals: + 8746: 29,-2 + - node: + color: '#FBB2FFFF' id: MiniTileInnerOverlayNW decals: - 4193: -25,-33 - 4194: -25,-37 - 4253: -1,-23 + 9031: -13,-11 + 9032: -19,-16 + 9062: -24,-14 - node: - color: '#BE6BC3FF' + color: '#FF9821FF' id: MiniTileInnerOverlayNW decals: - 4092: -11,-15 - 8167: -19,-15 + 9388: -25,-37 + 9485: -25,-26 - node: color: '#FFA647FF' id: MiniTileInnerOverlayNW @@ -8007,43 +3654,47 @@ entities: color: '#334E6DFF' id: MiniTileInnerOverlaySE decals: - 3485: 3,-3 - 3486: 8,-3 + 9856: 2,-3 + 9857: 8,-3 - node: - color: '#52B4E9FF' + color: '#43999EFF' id: MiniTileInnerOverlaySE decals: - 4417: -7,13 - 4481: -20,17 + 10865: -21,10 - node: - zIndex: 1 - color: '#52B4E9FF' + color: '#639137FF' id: MiniTileInnerOverlaySE decals: - 7536: -10,25 + 11210: 2,15 - node: - color: '#774194FF' + color: '#765428FF' id: MiniTileInnerOverlaySE decals: - 4360: 30,11 - 4361: 32,12 + 8837: 38,7 - node: - color: '#9C2020FF' + color: '#96DAFFFF' id: MiniTileInnerOverlaySE decals: - 4046: 29,-14 - 4071: 21,-7 + 8529: -20,13 + 8530: -20,17 - node: - color: '#AE6716FF' + color: '#BC863FFF' + id: MiniTileInnerOverlaySE + decals: + 10938: 29,4 + - node: + color: '#FBB2FFFF' + id: MiniTileInnerOverlaySE + decals: + 9029: -19,-4 + 11170: -19,2 + - node: + color: '#FF9821FF' id: MiniTileInnerOverlaySE decals: - 4195: -25,-33 - 4196: -27,-26 - 4197: -25,-35 - 4249: -1,-23 - 4250: -1,-20 - 4251: 0,-22 - 8166: -17,-15 + 9384: -17,-14 + 9385: -25,-35 + 9487: -27,-26 - node: color: '#FFA647FF' id: MiniTileInnerOverlaySE @@ -8056,48 +3707,41 @@ entities: color: '#334E6DFF' id: MiniTileInnerOverlaySW decals: - 3493: 12,-3 - 3494: 7,-3 - 3495: 8,-3 - - node: - color: '#52B4E9FF' - id: MiniTileInnerOverlaySW - decals: - 4419: -9,13 - 4444: -9,22 - 4445: -9,17 + 9858: 8,-3 + 9859: 12,-3 + 10203: 38,-6 - node: - zIndex: 1 - color: '#52B4E9FF' + color: '#639137FF' id: MiniTileInnerOverlaySW decals: - 7537: -10,25 - 7538: -10,25 + 11211: 2,15 - node: color: '#765428FF' id: MiniTileInnerOverlaySW decals: - 4370: 42,6 + 8836: 36,7 - node: - color: '#774194FF' + color: '#96DAFFFF' id: MiniTileInnerOverlaySW decals: - 4364: 30,10 + 8521: -20,17 + 8522: -20,13 + 8523: -9,17 + 9094: -10,25 + 9095: -9,22 - node: - color: '#9C2020FF' + color: '#FBB2FFFF' id: MiniTileInnerOverlaySW decals: - 4051: 28,-10 + 9030: -13,-9 + 9655: -13,-11 - node: - color: '#AE6716FF' + color: '#FF9821FF' id: MiniTileInnerOverlaySW decals: - 4091: -11,-15 - 4198: -25,-34 - 4199: -22,-35 - 4200: -25,-26 - 4252: -1,-23 - 8165: -19,-15 + 9386: -25,-34 + 9387: -22,-35 + 9486: -25,-26 - node: color: '#FFA647FF' id: MiniTileInnerOverlaySW @@ -8107,11 +3751,17 @@ entities: 7109: -37,-34 7120: -38,-29 - node: - color: '#774194FF' + color: '#765428FF' + id: MiniTileLineOverlayE + decals: + 8833: 38,6 + - node: + color: '#9C2020FF' id: MiniTileLineOverlayE decals: - 4325: 30,14 - 4326: 30,13 + 11132: 34,-11 + 11133: 34,-12 + 11134: 34,-13 - node: color: '#FFA647FF' id: MiniTileLineOverlayE @@ -8125,11 +3775,62 @@ entities: 7118: -34,-30 7119: -34,-31 - node: - color: '#774194FF' + color: '#334E6DFF' + id: MiniTileLineOverlayN + decals: + 9868: 6,-6 + 9869: 7,-6 + 9870: 9,-6 + 9871: 8,-6 + 9872: 10,-6 + 9882: 6,-10 + 9883: 8,-10 + 9884: 7,-10 + 9885: 9,-10 + 9886: 10,-10 + - node: + color: '#765428FF' + id: MiniTileLineOverlayN + decals: + 8817: 35,7 + 8818: 35,5 + 8819: 36,7 + 8820: 37,7 + 8821: 38,7 + 8822: 39,7 + 8823: 40,7 + 8824: 41,7 + 8825: 42,7 + 8826: 43,7 + 8827: 43,5 + 8828: 42,5 + 8829: 41,5 + 8830: 40,5 + 8831: 39,5 + - node: + color: '#9C2020FF' id: MiniTileLineOverlayN decals: - 4335: 34,13 - 4336: 33,13 + 11084: 33,-14 + 11085: 34,-14 + 11086: 35,-14 + 11087: 36,-14 + 11088: 37,-14 + 11089: 37,-14 + 11090: 38,-14 + 11091: 39,-14 + 11092: 40,-14 + 11093: 41,-14 + 11094: 42,-14 + 11095: 43,-14 + 11096: 44,-14 + 11097: 46,-14 + 11098: 45,-14 + 11099: 47,-14 + 11100: 48,-14 + 11101: 49,-14 + 11102: 50,-14 + 11103: 50,-14 - node: color: '#FFA647FF' id: MiniTileLineOverlayN @@ -8138,11 +3839,64 @@ entities: 7079: -36,-34 7080: -35,-34 - node: - color: '#774194FF' + color: '#334E6DFF' + id: MiniTileLineOverlayS + decals: + 9863: 6,-6 + 9864: 8,-6 + 9865: 7,-6 + 9866: 9,-6 + 9867: 10,-6 + 9875: 6,-10 + 9876: 7,-10 + 9877: 7,-10 + 9878: 8,-10 + 9879: 9,-10 + 9880: 9,-10 + 9881: 10,-10 + - node: + color: '#765428FF' + id: MiniTileLineOverlayS + decals: + 8801: 35,5 + 8802: 36,5 + 8803: 37,5 + 8804: 38,5 + 8805: 39,5 + 8806: 40,5 + 8807: 41,5 + 8808: 42,5 + 8809: 43,5 + 8810: 39,7 + 8811: 40,7 + 8812: 41,7 + 8813: 42,7 + 8814: 43,7 + 8815: 35,7 + 8816: 35,5 + - node: + color: '#9C2020FF' id: MiniTileLineOverlayS decals: - 4337: 33,13 - 4338: 34,13 + 11104: 50,-14 + 11105: 49,-14 + 11106: 48,-14 + 11107: 47,-14 + 11108: 46,-14 + 11109: 45,-14 + 11110: 44,-14 + 11111: 44,-14 + 11112: 43,-14 + 11113: 42,-14 + 11114: 41,-14 + 11115: 40,-14 + 11116: 39,-14 + 11117: 38,-14 + 11118: 37,-14 + 11119: 36,-14 + 11120: 35,-14 + 11121: 34,-14 + 11122: 33,-14 - node: color: '#FFA647FF' id: MiniTileLineOverlayS @@ -8151,11 +3905,17 @@ entities: 7102: -36,-27 7103: -35,-27 - node: - color: '#774194FF' + color: '#765428FF' + id: MiniTileLineOverlayW + decals: + 8834: 36,6 + - node: + color: '#9C2020FF' id: MiniTileLineOverlayW decals: - 4323: 30,13 - 4324: 30,14 + 11129: 36,-13 + 11130: 36,-12 + 11131: 36,-11 - node: color: '#FFA647FF' id: MiniTileLineOverlayW @@ -8168,6 +3928,12 @@ entities: 7100: -34,-28 7116: -38,-31 7117: -38,-30 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelBox + decals: + 8839: 37,6 + 10223: 9,12 - node: zIndex: -1 color: '#FFFFFFFF' @@ -8193,17 +3959,19 @@ entities: decals: 7824: -38,-34 - node: - zIndex: -1 color: '#FFFFFFFF' id: MiniTileSteelEndE decals: - 7659: 35,13 + 10224: 12,12 + 10225: 12,20 + 10226: 9,20 - node: - zIndex: -1 color: '#FFFFFFFF' id: MiniTileSteelEndW decals: - 7656: 32,13 + 10220: 8,20 + 10221: 11,20 + 10222: 11,12 - node: zIndex: -1 color: '#FFFFFFFF' @@ -8217,6 +3985,11 @@ entities: 7868: -38,-34 7869: -34,-32 7877: -38,-34 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNe + decals: + 8790: 38,5 - node: zIndex: -1 color: '#FFFFFFFF' @@ -8225,6 +3998,12 @@ entities: 7863: -37,-27 7864: -38,-28 7865: -34,-34 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNw + decals: + 8787: 36,5 + 10233: 9,13 - node: zIndex: -1 color: '#FFFFFFFF' @@ -8237,6 +4016,11 @@ entities: 7870: -34,-33 7871: -35,-34 7872: -38,-27 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSe + decals: + 8789: 38,7 - node: zIndex: -1 color: '#FFFFFFFF' @@ -8249,14 +4033,17 @@ entities: 7874: -37,-34 7875: -34,-27 7876: -38,-29 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSw + decals: + 8788: 36,7 + 10234: 9,18 - node: zIndex: -1 color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 7650: 30,14 - 7651: 30,13 - 7652: 30,12 7827: -34,-30 7828: -34,-31 7829: -38,-28 @@ -8267,35 +4054,90 @@ entities: 7834: -38,-31 7835: -38,-32 7836: -38,-33 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineE + decals: + 8786: 38,6 + 10214: 10,14 + 10215: 10,15 + 10216: 10,16 + 10217: 10,17 + 10218: 10,17 + 10219: 10,18 + 10235: 13,20 + 10236: 13,19 + 10237: 13,18 + 10238: 13,17 + 10239: 13,16 - node: zIndex: -1 color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 7657: 33,13 - 7658: 34,13 7847: -37,-34 7848: -36,-34 7849: -35,-34 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineN + decals: + 8774: 35,7 + 8775: 36,7 + 8776: 37,7 + 8777: 38,7 + 8778: 39,7 + 8779: 40,7 + 8780: 41,7 + 8781: 42,7 + 8782: 43,7 + 8783: 35,5 + 8795: 39,5 + 8796: 40,5 + 8797: 41,5 + 8798: 42,5 + 8799: 43,5 + 10212: 12,13 + 10213: 11,13 + 10232: 8,13 + 10240: 14,15 - node: zIndex: -1 color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 7653: 33,13 - 7654: 34,13 - 7655: 35,13 7850: -37,-27 7851: -36,-27 7852: -35,-27 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineS + decals: + 8764: 35,5 + 8765: 36,5 + 8766: 36,5 + 8767: 37,5 + 8768: 38,5 + 8769: 39,5 + 8770: 40,5 + 8771: 41,5 + 8772: 42,5 + 8773: 43,5 + 8784: 35,7 + 8791: 39,7 + 8792: 40,7 + 8793: 42,7 + 8794: 41,7 + 8800: 43,7 + 10205: 11,19 + 10206: 12,19 + 10227: 8,18 + 10241: 14,21 - node: zIndex: -1 color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 7647: 30,12 - 7648: 30,13 - 7649: 30,14 7837: -38,-30 7838: -38,-31 7839: -34,-30 @@ -8308,147 +4150,122 @@ entities: 7846: -34,-33 - node: color: '#FFFFFFFF' - id: OldConcreteTrimBox + id: MiniTileSteelLineW + decals: + 8785: 36,6 + 10207: 13,18 + 10208: 13,17 + 10209: 13,16 + 10210: 13,15 + 10211: 13,14 + 10228: 9,17 + 10229: 9,16 + 10230: 9,15 + 10231: 9,14 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteBox decals: - 3260: -24,-14 + 9103: -23,17 + 9104: -23,16 + 9109: -26,16 + 9110: -25,16 + 9113: -30,18 + 9121: -30,15 - node: color: '#FFFFFFFF' - id: OldConcreteTrimLineN + id: MiniTileWhiteCornerSe decals: - 3246: -21,-13 - 3247: -22,-13 - 3248: -23,-13 - 3249: -24,-13 - 3250: -25,-13 - 3251: -26,-13 - 3252: -27,-13 + 9096: -24,17 - node: color: '#FFFFFFFF' - id: OldConcreteTrimLineS + id: MiniTileWhiteEndN decals: - 3253: -27,-15 - 3254: -26,-15 - 3255: -25,-15 - 3256: -24,-15 - 3257: -23,-15 - 3258: -22,-15 - 3259: -21,-15 + 9115: -34,18 + 10867: -20,9 + 10871: -22,10 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteEndS + decals: + 9116: -34,15 + 10868: -20,8 + 10872: -22,9 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineE + decals: + 9097: -24,18 + 9119: -34,17 + 9120: -34,16 - node: - cleanable: True color: '#FFFFFFFF' - id: Rust + id: MiniTileWhiteLineS decals: - 6295: 23,2 - 6296: 23,2 - 6297: 25,4 - 6298: 26,5 - 6299: 26,6 - 6300: 31,6 - 6301: 32,4 - 6302: 34,3 - 6303: 34,2 - 6304: 33,1 - 6305: 33,0 - 6306: 35,-1 - 6307: 37,-1 - 6308: 36,-2 - 6309: 37,-3 - 6310: 38,-3 - 6311: 38,-1 - 6312: 31,-2 - 6313: 30,-3 - 6314: 30,-2 - 6315: 29,-1 - 6316: 25,-2 - 6317: 25,-2 - 6318: 25,-1 - 6319: 24,-1 - 6320: 24,-1 - 6321: 36,-6 - 6322: 36,-6 - 6323: 39,-11 - 6324: 39,-11 - 6325: 35,-12 - 6326: 35,-11 - 6327: 43,-12 - 6328: 44,-12 - 6329: 44,-12 - 6330: 44,-11 - 6331: 44,-11 - 6332: 44,-16 - 6333: 44,-16 - 6334: 43,-16 - 6335: 44,-17 - 6336: 39,-16 - 6337: 39,-17 - 6338: 35,-16 - 6339: 29,-13 - 6340: 31,-12 - 6341: 31,-11 - 6342: 31,-11 - 6343: 29,-8 - 6344: 27,-12 - 6345: 27,-12 - 6346: 27,-13 - 6347: 28,-18 - 6348: 28,-24 - 6349: 28,-24 - 6350: 27,-23 - 6351: 26,-24 - 6352: 30,-26 - 6353: 29,-26 - 6354: 32,-25 - 6355: 32,-25 - 6356: 33,-24 - 6357: 34,-23 - 6358: 29,-28 - 6359: 29,-28 - 6360: 26,-30 - 6361: 26,-29 - 6362: 29,-30 - 6363: 28,-30 - 6364: 28,-30 - 6365: 32,-30 - 7907: 51,-6 - 7908: 52,-3 - 7909: 52,-3 - 7910: 52,-4 - 7911: 52,-4 - 7912: 52,-4 - 7913: 52,-4 - 7914: 52,-4 + 9098: -28,17 + 9099: -27,17 + 9100: -26,17 + 9101: -25,17 - node: color: '#FFFFFFFF' - id: WarnBox + id: MiniTileWhiteLineW + decals: + 9117: -34,16 + 9118: -34,17 + - node: + color: '#4B709CFF' + id: QuarterTileOverlayGreyscale180 decals: - 204: 47,-9 + 10293: 2,-17 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 1003: -22,-21 8180: -35,-28 8181: -35,-31 + 8845: -22,-22 + 8847: -25,-20 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 1002: -24,-21 8178: -37,-28 8179: -37,-31 + 8844: -24,-22 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 1000: -24,-22 8182: -35,-33 8183: -35,-30 + 8846: -25,-22 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 8184: -37,-30 8185: -37,-33 + - node: + color: '#DE3A3AFF' + id: WarnCornerSmallGreyscaleSE + decals: + 9942: 27,-26 + - node: + color: '#DE3A3AFF' + id: WarnCornerSmallGreyscaleSW + decals: + 9943: 30,-26 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 8852: -23,-22 + 8853: -25,-21 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 8854: -23,-22 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -8456,6 +4273,7 @@ entities: 110: -11,-29 111: -14,-29 112: -17,-29 + 8855: -25,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -8463,11 +4281,6 @@ entities: 113: -13,-29 114: -10,-29 115: -16,-29 - - node: - color: '#FFFFFFFF' - id: WarnEndN - decals: - 205: 49,-9 - node: color: '#FFFFFFFF' id: WarnEndS @@ -8477,8 +4290,6 @@ entities: color: '#FFFFFFFF' id: WarnLineE decals: - 36: -22,-23 - 37: -22,-24 52: -26,-43 64: -25,-43 107: -17,-30 @@ -8489,25 +4300,34 @@ entities: 175: -26,-44 176: -25,-45 177: -25,-44 - 1005: -22,-22 - 1007: -24,-21 8192: -35,-29 8193: -35,-32 + 8842: -22,-24 + 8843: -22,-23 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleN + decals: + 9940: 28,-28 + 9941: 29,-28 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleS + decals: + 9938: 28,-26 + 9939: 29,-26 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 32: -27,-22 - 33: -26,-22 - 998: -25,-22 8190: -36,-33 8191: -36,-30 + 8850: -27,-22 + 8851: -26,-22 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 34: -24,-23 - 35: -24,-24 56: -24,-43 57: -24,-43 58: -24,-44 @@ -8519,22 +4339,20 @@ entities: 169: -25,-45 171: -24,-45 172: -24,-46 - 1004: -24,-22 - 6294: 2,-2 8188: -37,-29 8189: -37,-32 + 8840: -24,-24 + 8841: -24,-23 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 38: -27,-20 - 39: -26,-20 - 1006: -25,-20 - 1008: -24,-20 8186: -36,-28 8187: -36,-31 8194: -36,-28 8195: -36,-31 + 8848: -26,-20 + 8849: -27,-20 - node: color: '#612620FF' id: WoodTrimThinBoxWhite @@ -8560,1647 +4378,1655 @@ entities: 6: -4,-6 15: -4,-4 - node: - cleanable: True - color: '#7800007F' - id: brush + color: '#FFFFFFFF' + id: bushsnowa2 decals: - 181: 51.43808,-19.931646 - 182: 50.609955,-19.994146 + 9670: 57.606537,-8.13533 - node: - color: '#474F5283' - id: dot + color: '#FFFFFFFF' + id: bushsnowb2 decals: - 145: -13.545563,2.7191367 - 146: -13.342438,2.6722617 - 147: -13.201813,2.5941367 - 148: -13.029938,2.5628867 - 149: -12.670563,2.7660117 - 150: -12.686188,2.9066367 - 151: -12.514313,3.1097617 - 152: -12.498688,2.7347617 - 153: -12.717438,2.4066367 - 154: -12.858063,2.3910117 - 155: -13.154938,2.5941367 - 156: -13.154938,2.8910117 + 9671: 56.231537,-11.60408 - node: - cleanable: True - color: '#7800007F' - id: dot + color: '#FFFFFFFF' + id: grasssnow decals: - 183: 50.96933,-20.697271 - 184: 50.59433,-20.806646 - 185: 51.641205,-20.744146 - 186: 52.18808,-20.462896 - 187: 50.234955,-20.416021 - 188: 50.03183,-20.541021 - 189: 49.75058,-20.572271 - 190: 51.516205,-20.791021 - 191: 51.203705,-20.697271 + 9656: 57.90341,-9.267018 + 9657: 57.106537,-7.2041535 + 9658: 57.12216,-7.1885285 + 9659: 57.43466,-6.8604035 - node: - cleanable: True - color: '#7800007F' - id: smallbrush + color: '#FFFFFFFF' + id: grasssnow01 decals: - 193: 50.37558,-20.525396 - 194: 51.06308,-20.056646 - 195: 50.797455,-20.166021 - 196: 51.078705,-20.447271 - 197: 51.984955,-20.275396 - 198: 50.141205,-20.041021 - 199: 51.84433,-20.619146 - 200: 51.00058,-21.525396 + 9676: 56.362713,-15.842355 + 9677: 56.565838,-15.936105 - node: - cleanable: True - color: '#4F524C4C' - id: splatter + color: '#FFFFFFFF' + id: grasssnow07 decals: - 160: -12.295563,2.3597617 - 161: -13.592438,1.9847617 - 162: -12.936188,3.1410117 + 9663: 56.731537,-15.187184 - node: - cleanable: True - color: '#4F524C7F' - id: splatter + color: '#FFFFFFFF' + id: grasssnow09 decals: - 157: -13.451813,2.5785117 - 158: -12.358063,2.9847617 - 159: -13.654938,3.1097617 + 9660: 56.731537,-8.7143345 + 9661: 57.325287,-10.4174595 - node: - cleanable: True - color: '#7800007F' - id: splatter + color: '#FFFFFFFF' + id: grasssnow10 decals: - 178: 50.984955,-20.119146 - 179: 51.328705,-20.275396 - 180: 50.609955,-20.384771 - 192: 51.141205,-21.353521 + 9662: 57.387787,-9.5112095 - node: - cleanable: True - angle: 0.5759586531581288 rad - color: '#7800007F' - id: splatter + color: '#FFFFFFFF' + id: grasssnow12 + decals: + 9664: 56.77841,-14.218434 + - node: + color: '#FFFFFFFF' + id: grasssnow13 + decals: + 9665: 56.606537,-15.999684 + - node: + color: '#FFFFFFFF' + id: grasssnowb1 + decals: + 9674: 56.918022,-9.399239 + 9675: 56.04445,-17.04739 + - node: + color: '#FFFFFFFF' + id: grasssnowb2 + decals: + 9668: 55.887787,-7.2017937 + - node: + color: '#FFFFFFFF' + id: grasssnowc1 decals: - 202: 51.21933,-20.166021 + 9666: 57.80966,-16.046558 + - node: + color: '#FFFFFFFF' + id: grasssnowc2 + decals: + 9667: 57.18466,-12.919256 + 9672: 57.825287,-12.213455 + 9673: 56.12216,-8.619705 + - node: + color: '#FFFFFFFF' + id: grasssnowc3 + decals: + 9669: 57.106537,-5.828443 - type: GridAtmosphere version: 2 data: tiles: - 0,-1: - 0: 52685 - 1: 4096 + 0,0: + 0: 34817 + -1,0: + 0: 34959 0,1: - 2: 143 - 0: 61440 + 0: 143 + 1: 61440 -1,1: - 2: 143 - 0: 61440 + 0: 143 + 1: 61440 0,2: - 0: 61695 + 1: 61695 -1,2: - 0: 30719 + 1: 30719 0,3: - 0: 65359 + 1: 65359 -1,3: - 0: 63359 + 1: 63359 0,4: - 0: 63743 + 1: 63743 + 0,-1: + 1: 52429 1,0: - 0: 111 - 2: 32768 - 0,0: - 2: 34816 + 1: 111 + 0: 32768 1,1: - 2: 143 - 0: 63488 + 0: 143 + 1: 61440 1,2: - 0: 61695 + 1: 61695 1,3: - 0: 65031 + 1: 65031 1,-1: - 0: 65534 + 1: 65534 1,4: - 0: 28910 + 1: 28910 2,1: - 2: 143 - 0: 61440 + 0: 143 + 1: 61440 2,2: - 0: 61695 + 1: 61695 2,3: - 0: 65535 + 1: 65535 2,-1: - 0: 8191 + 1: 8191 2,4: - 0: 65535 + 1: 65535 2,0: - 2: 34956 + 0: 34956 3,0: - 2: 34959 + 0: 34959 3,1: - 2: 143 - 0: 61440 + 0: 143 + 1: 61440 3,2: - 0: 65279 + 1: 65279 3,3: - 0: 32767 + 1: 32767 3,4: - 0: 65535 + 1: 65535 3,-1: - 2: 34952 - 0: 819 - 4,0: - 2: 3 0: 34952 + 1: 819 + 4,0: + 0: 3 + 1: 34952 4,1: - 2: 3 - 0: 63496 + 0: 3 + 1: 63496 4,2: - 0: 61663 + 1: 61663 4,3: - 0: 12287 + 1: 12287 0,-4: - 0: 255 - 2: 32768 + 1: 255 + 0: 32768 0,-5: - 0: 63675 + 1: 63675 -1,-4: - 0: 255 - 2: 32768 + 1: 255 + 0: 32768 0,-3: - 2: 15 - 0: 65280 + 0: 15 + 1: 65280 -1,-3: - 2: 15 - 0: 39936 + 0: 15 + 1: 39936 0,-2: - 0: 64783 + 1: 64783 -1,-2: - 0: 65423 + 1: 65423 -1,-1: - 0: 60943 + 1: 15 + 0: 34816 1,-4: - 0: 255 - 2: 32768 + 1: 255 + 0: 32768 1,-3: - 2: 15 - 0: 60928 + 0: 15 + 1: 60928 1,-5: - 0: 63317 + 1: 63317 1,-2: - 0: 3822 + 1: 3822 2,-4: - 0: 255 + 1: 255 2,-3: - 2: 7 - 0: 30464 + 0: 7 + 1: 30464 2,-2: - 0: 6007 + 1: 6007 2,-5: - 0: 61559 + 1: 61559 3,-4: - 0: 13311 - 2: 32768 + 1: 13311 + 0: 32768 3,-3: - 0: 13107 - 2: 34952 + 1: 13107 + 0: 34952 3,-2: - 0: 13107 - 2: 34952 + 1: 13107 + 0: 34952 3,-5: - 0: 61917 + 1: 61917 4,-4: - 0: 35007 + 1: 35007 4,-3: - 2: 3 - 0: 34952 + 0: 3 + 1: 34952 4,-2: - 2: 3 - 0: 51336 + 0: 3 + 1: 34952 4,-1: - 2: 3 - 0: 34952 + 0: 3 + 1: 34952 -4,0: - 0: 4881 - 3: 52428 + 1: 4881 + 2: 52428 -5,0: - 0: 3942 + 1: 3942 -4,1: - 0: 61520 + 1: 47600 -5,1: - 0: 29937 + 1: 53703 -4,2: - 0: 65295 + 1: 65307 -5,2: - 0: 56607 + 1: 56605 -4,3: - 0: 65535 + 1: 65535 -5,3: - 0: 56829 + 1: 56829 -3,0: - 3: 4369 - 0: 52428 + 2: 4369 + 1: 52428 -3,1: - 0: 64668 + 1: 64924 -3,2: - 0: 53709 + 1: 53709 -3,3: - 0: 56829 + 1: 56829 -4,4: - 0: 65528 + 1: 65528 -3,4: - 0: 56825 + 1: 56825 -3,-1: - 0: 36317 + 1: 36317 -2,0: - 0: 12561 - 2: 34956 + 1: 4369 + 0: 34956 -2,1: - 0: 61713 - 2: 140 + 1: 61713 + 0: 140 -2,2: - 0: 28927 + 1: 28927 -2,3: - 0: 30711 + 1: 30711 -2,-1: - 0: 4371 - 2: 34820 + 1: 4369 + 0: 34820 -2,4: - 0: 26338 + 1: 26210 -1,4: - 0: 30583 - -1,0: - 2: 34944 + 1: 30583 -4,-4: - 0: 3855 + 1: 3855 -5,-4: - 0: 28654 + 1: 28654 -4,-3: - 0: 65535 + 1: 65535 -5,-3: - 0: 59366 + 1: 59366 -4,-2: - 0: 65295 + 1: 65295 -4,-1: - 0: 4095 + 1: 4095 -5,-1: - 0: 26223 + 1: 26223 -3,-4: - 0: 53231 + 1: 53231 -3,-3: - 0: 56799 + 1: 56799 -3,-2: - 0: 56783 + 1: 56783 -3,-5: - 0: 57480 - 2: 2 + 1: 57480 + 0: 2 -2,-4: - 0: 4607 - 2: 32768 + 1: 4607 + 0: 32768 -2,-3: - 0: 4369 - 2: 140 + 1: 4369 + 0: 140 -2,-2: - 0: 4369 - 2: 4 + 1: 4369 + 0: 4 -2,-5: - 0: 61491 - 2: 8 + 1: 61491 + 0: 8 -1,-5: - 0: 63662 + 1: 63662 -4,-8: - 4: 3 - 0: 65280 - 5: 8 + 3: 3 + 1: 65280 + 4: 8 -4,-9: - 4: 12288 - 5: 32768 - 2: 79 + 3: 12288 + 4: 32768 + 0: 79 -5,-8: - 0: 60928 - 4: 6 + 1: 60928 + 3: 6 -4,-7: - 0: 4095 + 1: 4095 -5,-7: - 0: 4079 + 1: 4079 -4,-6: - 0: 61422 + 1: 61422 -5,-6: - 0: 61423 + 1: 61423 -4,-5: - 0: 3822 + 1: 3822 -5,-5: - 0: 44782 + 1: 44782 -3,-8: - 5: 1 - 0: 65280 - 6: 12 + 4: 1 + 1: 65280 + 5: 12 -3,-7: - 0: 4095 + 1: 4095 -3,-9: - 5: 4096 - 6: 49152 - 2: 47 + 4: 4096 + 5: 49152 + 0: 47 -3,-6: - 0: 3822 + 1: 3822 -2,-8: - 0: 65382 + 1: 65382 -2,-7: - 0: 4095 + 1: 4095 -2,-6: - 0: 4095 + 1: 4095 -2,-9: - 0: 24576 - 2: 159 + 1: 24576 + 0: 159 -1,-8: - 4: 7 - 0: 60928 + 3: 7 + 1: 60992 -1,-7: - 0: 3823 + 1: 3823 -1,-9: - 4: 28672 - 2: 159 + 3: 28672 + 0: 159 -1,-6: - 0: 43246 + 1: 43246 0,-8: - 4: 3 - 0: 65416 + 3: 3 + 1: 65416 0,-7: - 0: 4095 + 1: 4095 0,-6: - 0: 45875 + 1: 45875 4,-5: - 0: 61559 + 1: 61559 5,-4: - 0: 65343 + 1: 65343 5,-3: - 0: 48959 + 1: 48959 5,-2: - 0: 13119 + 1: 13119 5,-1: - 0: 49075 + 1: 49075 5,-5: - 0: 63935 + 1: 63931 5,0: - 0: 65523 + 1: 65523 6,-4: - 0: 48013 + 1: 48013 6,-3: - 0: 49035 + 1: 49035 6,-2: - 0: 15 + 1: 15 6,-1: - 0: 65392 + 1: 65392 6,-5: - 0: 56607 + 1: 56607 6,0: - 0: 30578 + 1: 30578 7,-4: - 0: 65339 + 1: 65339 7,-3: - 0: 65535 + 1: 65535 7,-2: - 0: 15 + 1: 15 7,-1: - 0: 65520 + 1: 65520 7,-5: - 0: 48063 + 1: 48047 7,0: - 0: 65534 + 1: 65534 8,-4: - 0: 57229 + 1: 57229 8,-3: - 0: 4573 - 2: 49152 + 1: 4573 + 0: 49152 8,-2: - 0: 52417 + 1: 52417 8,-1: - 0: 65520 + 1: 65520 0,-9: - 4: 12288 - 0: 32768 - 2: 207 + 3: 12288 + 1: 32768 + 0: 207 1,-8: - 0: 65523 + 1: 65523 1,-7: - 0: 4095 + 1: 4095 1,-6: - 0: 53452 + 1: 53452 1,-9: - 0: 61440 - 2: 383 + 1: 61440 + 0: 383 2,-6: - 0: 29431 + 1: 29431 2,-9: - 0: 4096 - 2: 26127 + 1: 4096 + 0: 26127 2,-8: - 2: 61030 + 0: 61030 2,-7: - 2: 3822 + 0: 3822 3,-8: - 2: 13056 + 0: 13056 3,-7: - 2: 4595 - 0: 49152 + 0: 4595 + 1: 49152 3,-6: - 0: 64796 + 1: 64796 4,-7: - 2: 240 - 0: 28672 + 0: 240 + 1: 28672 4,-6: - 0: 30487 + 1: 30487 5,-7: - 2: 17 - 0: 47308 + 0: 17 + 1: 47308 5,-6: - 0: 48043 + 1: 48043 5,-8: - 2: 4369 - 0: 52428 + 0: 4369 + 1: 52428 5,-9: - 2: 4369 - 0: 52424 + 0: 4369 + 1: 52424 6,-7: - 0: 56605 + 1: 64797 6,-6: - 0: 53725 + 1: 53725 6,-8: - 0: 52960 + 1: 52960 6,-9: - 0: 61422 + 1: 61422 7,-8: - 0: 48056 + 1: 48056 7,-7: - 0: 65339 + 1: 65339 7,-6: - 0: 62463 + 1: 62207 7,-9: - 0: 6545 + 1: 6545 8,-8: - 0: 65535 + 1: 65535 8,-7: - 0: 32527 + 1: 32527 8,-6: - 0: 5239 + 1: 20599 8,-5: - 0: 53501 + 1: 53501 -8,0: - 0: 3838 + 1: 3838 -9,0: - 2: 29426 + 0: 29426 -8,1: - 2: 13107 - 0: 34952 + 1: 28398 -8,2: - 0: 30576 + 1: 30576 -9,2: - 0: 56768 - 2: 1 + 1: 56768 + 0: 1 -8,3: - 0: 30711 + 1: 29431 -9,3: - 0: 40413 + 1: 53725 -8,4: - 0: 1911 + 1: 1911 -7,0: - 0: 3830 + 1: 3830 -7,1: - 0: 46071 + 1: 1919 -7,2: - 0: 48056 + 1: 12287 -7,3: - 0: 4082 + 1: 4095 -7,4: - 0: 4095 + 1: 4095 -7,-1: - 0: 26214 + 1: 26214 -6,0: - 0: 65535 + 1: 53247 -6,1: - 0: 47324 + 1: 52639 -6,2: - 0: 47935 + 1: 3549 -6,3: - 0: 35833 + 1: 36863 -6,4: - 0: 3067 + 1: 3067 -5,4: - 0: 18289 + 1: 18289 -8,-4: - 0: 4368 - 2: 52428 + 1: 4368 + 0: 52428 -8,-5: - 2: 65535 + 0: 56796 -8,-3: - 0: 17 - 2: 44236 + 1: 17 + 0: 44236 -9,-3: - 0: 240 - 2: 4096 + 1: 240 + 0: 4096 -8,-2: - 2: 39343 + 0: 39343 -9,-2: - 2: 3871 + 0: 3871 -8,-1: - 2: 3993 + 0: 3993 -7,-3: - 2: 6000 + 0: 6000 -7,-4: - 0: 61156 + 1: 61156 -7,-2: - 0: 25700 + 1: 25700 -7,-5: - 0: 60942 + 1: 60942 -6,-4: - 0: 65524 + 1: 65524 -6,-3: - 0: 65520 + 1: 65520 -6,-2: - 0: 65295 + 1: 65295 -6,-1: - 0: 4095 + 1: 4095 -6,-5: - 0: 60943 + 1: 60943 -5,-2: - 0: 26214 + 1: 26214 -8,-8: - 2: 60074 + 0: 60074 -8,-7: - 2: 64170 + 0: 64170 -8,-6: - 0: 240 - 2: 61440 + 1: 240 + 0: 61440 -9,-6: - 0: 30705 + 1: 30705 -8,-9: - 2: 60139 + 0: 60139 -7,-6: - 0: 61182 + 1: 61182 -7,-8: - 0: 44782 + 1: 44782 -7,-7: - 0: 44782 + 1: 44782 -7,-9: - 0: 61166 + 1: 61166 -6,-8: - 0: 61168 + 1: 61168 -6,-6: - 0: 65535 + 1: 65535 -6,-9: - 0: 61951 + 1: 61951 -6,-7: - 0: 36590 + 1: 36590 -5,-9: - 4: 24576 - 2: 142 + 3: 24576 + 0: 142 -8,-11: - 2: 60394 + 0: 60394 -9,-11: - 2: 2291 + 0: 2291 -8,-10: - 2: 60138 + 0: 60138 -9,-10: - 0: 12287 + 1: 12287 -8,-12: - 2: 60138 + 0: 60138 -8,-13: - 2: 11776 + 0: 11776 -7,-12: - 2: 15 - 0: 60928 + 0: 15 + 1: 60928 -7,-13: - 2: 24320 + 0: 24320 -7,-11: - 0: 57582 + 1: 57582 -7,-10: - 0: 61166 + 1: 61166 -6,-12: - 2: 15 - 0: 47872 + 0: 15 + 1: 47872 -6,-11: - 0: 63675 + 1: 63675 -6,-10: - 0: 65523 + 1: 65523 -6,-13: - 2: 24320 + 0: 24320 -5,-12: - 2: 34959 - 0: 13056 + 0: 34959 + 1: 13056 -5,-11: - 0: 13107 - 2: 34952 + 1: 13107 + 0: 34952 -5,-13: - 2: 24320 + 0: 24320 -5,-10: - 2: 26344 + 0: 26344 -4,-12: - 2: 12850 + 0: 12850 -4,-11: - 2: 12850 + 0: 12850 -4,-10: - 2: 44594 + 0: 44594 -4,-13: - 2: 8960 + 0: 8960 -3,-10: - 2: 44800 + 0: 44800 -2,-10: - 2: 44800 + 0: 44800 -1,-10: - 2: 44800 + 0: 44800 0,-10: - 2: 44936 + 0: 44936 0,-12: - 2: 34952 + 0: 34952 0,-13: - 2: 34816 + 0: 34816 0,-11: - 2: 34952 + 0: 34952 1,-12: - 2: 61164 + 0: 61166 1,-11: - 2: 58596 + 0: 58596 1,-10: - 2: 1646 + 0: 3822 2,-11: - 2: 58612 + 0: 58612 2,-12: - 2: 61164 + 0: 61166 2,-10: - 2: 2798 + 0: 3822 3,-11: - 2: 58612 + 0: 58612 3,-9: - 2: 15 + 0: 15 3,-12: - 2: 61160 + 0: 61166 3,-10: - 2: 1262 + 0: 3822 4,-11: - 2: 58612 + 0: 58612 4,-9: - 2: 15 + 0: 15 -12,-7: - 2: 49152 + 0: 49152 -12,-6: - 2: 52428 + 0: 52428 -12,-5: - 2: 35020 + 0: 35020 -11,-7: - 2: 65258 + 0: 65258 -11,-6: - 2: 13107 - 0: 50372 + 0: 13107 + 1: 50372 -11,-5: - 2: 61431 + 0: 26487 -12,-4: - 2: 34952 + 0: 34952 -11,-8: - 2: 60138 + 0: 60138 -11,-9: - 2: 59950 + 0: 59950 -11,-4: - 2: 8999 + 0: 8999 -10,-7: - 2: 4096 - 0: 49356 + 0: 4096 + 1: 49356 -10,-6: - 0: 65008 + 1: 65008 -10,-5: - 2: 4368 - 3: 52416 + 0: 4368 + 2: 52416 -10,-8: - 0: 52428 + 1: 52428 -10,-9: - 0: 52356 - 2: 9 + 1: 52364 + 0: 1 -9,-8: - 0: 30583 + 1: 30583 -9,-7: - 0: 28791 + 1: 28791 -9,-5: - 0: 1 - 3: 30576 + 1: 1 + 2: 30576 -9,-9: - 0: 30500 - 2: 3 + 1: 30503 -9,-4: - 0: 1 - 3: 30576 + 1: 1 + 2: 30576 -12,-2: - 2: 3976 + 0: 3976 -13,-2: - 2: 19456 + 0: 19456 -12,-1: - 2: 30583 + 0: 30583 -12,0: - 2: 29426 + 0: 29426 -12,-3: - 2: 34952 + 0: 34952 -11,-3: - 2: 42787 + 0: 42787 -11,-2: - 2: 3983 + 0: 3983 -11,-1: - 2: 30579 + 0: 30583 -11,0: - 2: 29426 + 0: 29426 -10,-4: - 0: 4368 - 3: 52416 + 1: 4368 + 2: 52416 -10,-3: - 0: 241 + 1: 241 -10,-2: - 2: 3855 + 0: 3855 -10,-1: - 2: 30580 + 0: 30583 -10,0: - 2: 29426 + 0: 29426 -9,-1: - 2: 30582 + 0: 30583 4,4: - 0: 48127 + 1: 48127 5,1: - 0: 15291 + 1: 15291 5,2: - 0: 47355 + 1: 47355 5,3: - 0: 36799 + 1: 36795 5,4: - 0: 48063 + 1: 48063 6,1: - 0: 8063 + 1: 3967 6,2: - 0: 56797 + 1: 56829 6,3: - 0: 56797 + 1: 56797 6,4: - 0: 15857 + 1: 7665 7,1: - 0: 61439 + 1: 61439 7,2: - 0: 61134 + 1: 61390 7,3: - 0: 20206 + 1: 3822 7,4: - 2: 46 + 0: 8750 8,0: - 0: 32767 + 1: 32767 8,1: - 0: 63479 + 1: 63479 8,2: - 0: 65287 + 1: 65287 8,3: - 0: 255 - 2: 57344 + 1: 255 + 0: 57344 0,5: - 0: 35771 + 1: 35771 0,6: - 0: 36863 + 1: 36863 0,7: - 0: 61695 + 1: 61567 -1,7: - 0: 62335 + 1: 62335 0,8: - 0: 4095 + 1: 4095 1,7: - 0: 14591 + 1: 47359 1,5: - 0: 1126 - 7: 512 + 1: 57446 1,6: - 0: 3822 + 1: 20206 1,8: - 0: 4027 + 1: 4027 2,5: - 0: 57599 + 1: 57599 2,6: - 0: 61167 + 1: 61167 2,7: - 0: 36848 + 1: 36590 2,8: - 0: 3583 + 1: 3583 3,5: - 0: 21631 + 1: 21631 3,6: - 0: 24405 + 1: 24415 3,7: - 0: 2044 + 1: 1501 3,8: - 0: 33791 + 1: 33791 4,5: - 0: 13075 - 3: 2176 + 1: 13075 + 2: 2176 4,6: - 0: 4087 - 7: 8 + 1: 4095 4,7: - 0: 61695 + 1: 61951 4,8: - 0: 53691 + 1: 53691 5,5: - 3: 1904 - 0: 8192 + 2: 1904 + 1: 8192 5,6: - 0: 33791 + 1: 33791 5,7: - 0: 61695 + 1: 61695 5,8: - 0: 60637 + 1: 60637 6,5: - 0: 40413 + 1: 13107 + 0: 34952 6,6: - 0: 13107 - 2: 2048 + 1: 13107 + 0: 2184 6,7: - 0: 61689 + 1: 61689 6,8: - 0: 65535 + 1: 65535 7,5: - 0: 13072 - 7,7: - 0: 29184 - 2: 228 + 0: 8995 7,6: - 2: 25600 + 0: 26403 + 7,7: + 1: 28672 + 0: 228 7,8: - 0: 4609 - 2: 32772 + 1: 30583 8,4: - 2: 15 + 0: 52431 + 8,7: + 0: 112 + 1: 30464 -4,5: - 0: 60943 + 1: 60943 -5,5: - 0: 20343 + 1: 19829 -4,6: - 0: 20206 + 1: 61166 -5,6: - 0: 4095 + 1: 4095 -4,7: - 0: 62719 + 1: 61684 -5,7: - 0: 47357 + 1: 47357 -4,8: - 0: 59647 + 1: 59647 -3,5: - 0: 61133 + 1: 61133 -3,6: - 0: 3838 + 1: 3838 -3,7: - 0: 61695 + 1: 61694 -3,8: - 0: 62463 + 1: 62463 -2,6: - 0: 26230 + 1: 26230 -2,7: - 0: 61567 + 1: 61567 -2,5: - 0: 28262 + 1: 26214 -2,8: - 0: 25343 + 1: 25343 -1,5: - 0: 30583 + 1: 30583 -1,6: - 0: 30583 + 1: 30583 -1,8: - 0: 29559 + 1: 29559 -9,4: - 0: 3549 + 1: 3549 -8,6: - 0: 53215 + 1: 52733 -9,6: - 0: 3822 + 1: 3822 -8,7: - 0: 52701 + 1: 52701 -9,7: - 0: 36606 + 1: 36606 -8,8: - 0: 53247 + 1: 53247 -8,5: - 2: 546 + 0: 546 -7,6: - 0: 8157 + 1: 7677 -7,7: - 0: 8159 + 1: 7647 -7,8: - 0: 57343 + 1: 40959 -7,5: - 2: 546 + 0: 546 -6,6: - 0: 3003 + 1: 3003 -6,7: - 0: 33723 + 1: 33723 -6,8: - 0: 36863 + 1: 36863 -6,5: - 0: 3276 + 1: 3276 -5,8: - 0: 39935 + 1: 39935 9,0: - 0: 36863 + 1: 36863 9,1: - 0: 65535 + 1: 65535 9,2: - 0: 65295 + 1: 65295 9,-1: - 0: 65528 + 1: 65528 9,3: - 0: 28388 - 7: 32768 + 1: 61156 9,4: - 0: 4 + 1: 4 + 0: 65520 10,1: - 0: 63222 + 1: 63222 10,0: - 2: 3758 + 0: 3758 10,2: - 0: 6 - 2: 44544 + 1: 6 + 0: 44544 10,3: - 2: 9774 + 0: 44718 10,-1: - 2: 60140 + 0: 59904 + 1: 6 10,4: - 2: 6 + 0: 4382 9,-4: - 0: 40845 + 1: 40845 9,-3: - 0: 221 - 2: 61440 + 1: 221 + 0: 61440 9,-2: - 0: 65520 + 1: 65520 9,-5: - 0: 53503 + 1: 53503 10,-4: - 0: 36749 + 1: 36749 10,-3: - 0: 221 - 2: 61440 + 1: 221 + 0: 61440 10,-2: - 0: 4096 - 2: 19562 + 1: 30304 10,-5: - 0: 53501 + 1: 53501 11,-4: - 0: 20237 + 1: 20237 11,-3: - 0: 49373 - 2: 4096 + 1: 49373 + 0: 4096 11,-2: - 2: 4369 - 0: 3276 + 0: 4369 + 1: 3276 11,-1: - 2: 4015 + 0: 4015 11,-5: - 0: 55315 + 1: 55296 12,-4: - 0: 36751 + 1: 36751 12,-3: - 0: 61883 + 1: 61883 12,-2: - 0: 2879 + 1: 2879 12,-1: - 2: 50983 + 0: 50983 + 8,8: + 1: 30583 + 8,5: + 0: 12 + 9,5: + 0: 3279 + 10,5: + 0: 273 -11,-11: - 2: 34816 + 0: 34816 -10,-11: - 2: 1000 + 0: 1000 -11,-10: - 2: 34952 + 0: 34952 -10,-10: - 0: 36590 + 1: 36590 8,-9: - 0: 24565 + 1: 24565 9,-8: - 0: 39320 + 1: 39320 9,-7: - 0: 65320 + 1: 65320 9,-6: - 0: 15 + 1: 15 9,-9: - 0: 36044 + 1: 36044 10,-8: - 0: 28945 - 2: 196 + 1: 28689 + 0: 196 10,-7: - 0: 56775 + 1: 56775 10,-6: - 0: 13 + 1: 51405 10,-9: - 0: 4368 - 2: 50372 + 1: 4368 + 0: 50372 11,-8: - 2: 30193 + 0: 62833 + 11,-9: + 0: 4369 11,-7: - 0: 30480 - 2: 12 + 0: 27370 11,-6: - 0: 26215 - 11,-9: - 2: 4369 - 12,-8: - 2: 4368 + 0: 14 12,-7: - 2: 24407 + 0: 24320 12,-6: - 2: 15 - 0: 60928 + 0: 15 + 1: 60928 12,-5: - 0: 65358 + 1: 65358 13,-4: - 0: 13107 - 2: 34952 + 1: 13107 + 0: 34952 13,-3: - 0: 51 - 8: 12288 - 2: 34952 + 1: 45107 + 0: 2184 13,-2: - 8: 3 - 0: 768 - 2: 34952 + 1: 779 + 0: 34944 13,-1: - 7: 16 - 0: 256 - 2: 31884 + 1: 16 + 0: 31884 13,-5: - 0: 13057 - 2: 34956 + 1: 13057 + 0: 34956 14,-4: - 2: 8995 + 2: 30583 + 0: 34952 14,-3: - 2: 8995 + 2: 30583 + 0: 2184 + 1: 32768 14,-2: - 2: 803 + 2: 1911 + 0: 63616 + 1: 8 + 14,-1: + 0: 15 14,-5: - 2: 8995 + 2: 30464 + 0: 35071 + 15,-4: + 0: 4369 + 15,-3: + 0: 273 + 1: 4096 + 15,-2: + 1: 1 + 0: 4368 + 15,-1: + 0: 1 + 15,-5: + 0: 4369 4,-12: - 2: 61096 + 0: 61166 4,-10: - 2: 750 + 0: 3822 5,-11: - 2: 16 - 0: 3308 + 0: 16 + 1: 3308 5,-12: - 2: 3694 + 0: 3694 5,-13: - 2: 8960 + 0: 8960 5,-10: - 0: 52428 + 1: 52428 6,-12: - 2: 3935 + 0: 3935 6,-11: - 0: 35835 + 1: 3067 6,-10: - 0: 57599 + 1: 57599 7,-12: - 2: 3935 + 0: 3935 7,-11: - 0: 4607 + 1: 4607 7,-10: - 0: 39321 + 1: 39321 8,-12: - 2: 3935 + 0: 3935 8,-11: - 0: 255 + 1: 255 8,-10: - 0: 65535 + 1: 65535 9,-12: - 2: 3935 + 0: 3935 9,-11: - 0: 52479 + 1: 52479 9,-10: - 0: 52428 + 1: 52300 10,-12: - 2: 60383 + 0: 60383 10,-11: - 2: 60138 + 0: 60138 10,-10: - 2: 60138 + 0: 60138 11,-10: - 2: 4096 + 0: 4096 13,-7: - 2: 22272 + 0: 22272 13,-6: - 2: 19535 - 0: 4352 + 0: 19535 + 1: 4352 14,-6: - 2: 4369 + 0: 4369 -4,9: - 0: 61166 + 1: 61166 -5,9: - 0: 52701 + 1: 52701 -4,10: - 0: 45294 + 1: 45294 -5,10: - 0: 54527 + 1: 54527 -4,11: - 0: 58895 + 1: 58895 -5,11: - 0: 64733 + 1: 64733 -4,12: - 0: 65286 + 1: 65286 -3,9: - 0: 65535 + 1: 65535 -3,10: - 0: 61951 + 1: 61951 -3,11: - 0: 30491 + 1: 30491 -3,12: - 0: 4375 - 2: 19456 + 1: 4375 + 0: 19456 -2,10: - 0: 63086 + 1: 63078 -2,11: - 0: 45983 + 1: 45983 -2,9: - 0: 58982 + 1: 26214 -2,12: - 0: 2187 - 2: 8960 + 1: 2187 + 0: 8960 -1,9: - 0: 32631 + 1: 32631 -1,10: - 0: 29815 + 1: 29815 -1,11: - 0: 45311 + 1: 12543 + 0: 32768 -1,12: - 0: 819 - 2: 34944 + 1: 819 + 0: 34952 0,9: - 0: 65535 + 1: 65535 0,10: - 0: 40959 + 1: 36863 0,11: - 0: 3827 + 1: 3827 0,12: - 2: 12070 + 0: 12207 1,9: - 0: 65535 + 1: 65535 1,10: - 0: 65535 + 1: 65535 1,11: - 0: 4088 + 1: 4088 1,12: - 0: 1 - 2: 3980 + 0: 4015 2,9: - 0: 16383 + 1: 16383 2,10: - 0: 48059 + 1: 48059 2,11: - 0: 4080 + 1: 4080 2,12: - 2: 4015 + 0: 4015 3,9: - 0: 43963 + 1: 43963 3,10: - 0: 47931 + 1: 47931 3,11: - 0: 4089 + 1: 4089 3,12: - 2: 3841 - 0: 4 + 0: 4015 4,9: - 0: 56829 + 1: 56829 4,10: - 0: 65485 + 1: 65485 4,11: - 0: 36817 - 9: 16384 + 1: 53201 -9,8: - 0: 4095 + 1: 4095 -8,9: - 0: 56831 + 1: 56797 -9,9: - 0: 65535 + 1: 65535 -8,10: - 0: 56831 + 1: 56831 -9,10: - 0: 57295 + 1: 57295 -8,11: - 2: 4368 - 0: 50380 + 0: 4368 + 1: 50380 -9,11: - 2: 22000 + 0: 22000 -8,12: - 2: 4369 - 0: 52300 + 0: 4369 + 1: 52428 -7,9: - 0: 56797 + 1: 56797 -7,10: - 0: 62941 + 1: 62941 -7,11: - 0: 54783 + 1: 54783 -7,12: - 0: 4383 - 2: 19456 + 1: 4383 + 0: 19456 -6,10: - 0: 61695 + 1: 61695 -6,11: - 0: 62463 + 1: 61695 -6,9: - 0: 3822 + 1: 3822 -6,12: - 0: 15 - 2: 24320 + 1: 15 + 0: 24320 -5,12: - 0: 52431 - 2: 4352 + 1: 52431 + 0: 4352 -4,13: - 0: 16 - 2: 58560 + 0: 54768 -5,13: - 0: 52416 - 2: 4369 + 0: 22001 + -4,14: + 0: 17479 + -5,14: + 0: 39327 -4,15: - 2: 20295 + 0: 20295 -5,15: - 2: 40863 - -4,14: - 2: 17476 + 0: 40863 -4,16: - 2: 15 - 4: 30464 + 0: 15 + 3: 30464 -3,13: - 2: 30076 + 0: 30076 -3,15: - 2: 256 + 0: 256 -2,13: - 2: 3759 + 0: 3759 -1,13: - 2: 4015 + 0: 4015 0,13: - 2: 3 + 0: 3 -12,7: - 0: 36863 + 1: 4095 -13,7: - 0: 45055 + 1: 45055 -12,8: - 0: 56797 + 1: 56797 -11,7: - 0: 20479 + 1: 4095 -11,8: - 0: 8191 + 1: 8191 -11,5: - 0: 12 - 2: 34816 + 1: 12 + 0: 34816 -11,4: - 2: 2184 + 0: 2184 -11,3: - 2: 32768 - 0: 192 + 0: 32768 + 1: 192 -10,5: - 0: 61167 + 1: 61167 -11,6: - 2: 2184 + 0: 2184 -10,7: - 0: 61438 + 1: 61438 -10,4: - 0: 61166 + 1: 61166 -10,6: - 0: 61166 + 1: 61166 -10,3: - 0: 61182 + 1: 61182 -10,8: - 0: 3838 + 1: 3838 -12,1: - 2: 1911 + 0: 1911 -12,2: - 2: 15 + 0: 15 -13,2: - 2: 12 + 0: 12 -11,2: - 2: 34959 + 0: 34959 -11,1: - 2: 1655 + 0: 1911 -10,2: - 2: 15 - 0: 60928 + 0: 15 + 1: 60928 -10,1: - 2: 2 + 0: 1911 -9,1: - 2: 1655 + 0: 1911 -13,8: - 0: 48059 + 1: 48059 -12,9: - 0: 40447 + 1: 40413 -13,9: - 0: 34952 - 2: 272 + 1: 34952 + 0: 272 -12,10: - 0: 61695 + 1: 61695 -13,10: - 0: 47871 + 1: 47871 -12,11: - 0: 4095 + 1: 4095 -13,11: - 0: 2187 - 2: 8960 + 1: 139 + 0: 8960 -12,12: - 2: 4015 + 0: 4015 -11,9: - 0: 49629 + 1: 49629 -11,10: - 0: 54481 + 1: 53457 -11,11: - 0: 273 - 2: 17600 + 1: 273 + 0: 17600 -11,12: - 2: 1871 + 0: 1871 -10,9: - 0: 30583 + 1: 30327 -10,10: - 0: 30334 + 1: 30334 -10,11: - 2: 22000 + 0: 22000 -10,12: - 2: 15 + 0: 15 -9,12: - 2: 4383 + 0: 4383 -8,13: - 2: 8753 - 0: 34952 + 0: 8753 + 1: 34952 -9,13: - 2: 39409 + 0: 39409 -8,14: - 2: 50 - 0: 59528 + 0: 50 + 1: 59528 -9,14: - 2: 4601 - 0: 32768 + 0: 4601 + 1: 32768 -8,15: - 0: 65518 + 1: 65518 -9,15: - 0: 34956 - 2: 4881 + 1: 34956 + 0: 4881 -8,16: - 0: 51215 - 4: 13056 + 1: 51215 + 3: 13056 -7,14: - 0: 61440 - 2: 234 + 1: 61440 + 0: 234 -7,15: - 0: 48959 + 1: 48959 -7,13: - 2: 43748 + 0: 43748 -7,16: - 0: 29467 - 4: 34816 + 1: 29467 + 3: 34816 -6,13: - 2: 8949 + 0: 8949 -6,14: - 2: 8754 + 0: 8754 -6,15: - 0: 30464 - 2: 14 + 1: 30464 + 0: 14 -6,16: - 0: 7 - 4: 65280 - -5,14: - 2: 39313 + 1: 7 + 3: 65280 -5,16: - 2: 15 - 4: 65280 + 0: 15 + 3: 65280 -16,7: - 0: 4095 + 1: 16383 -17,7: - 0: 4095 + 1: 4095 -16,8: - 0: 28927 + 1: 30583 -15,7: - 0: 12283 + 1: 12283 -15,4: - 0: 35064 - 2: 8192 + 1: 35064 + 0: 8192 -15,5: - 0: 36744 - 2: 2 + 1: 36744 + 0: 2 -15,8: - 0: 13107 - 2: 128 + 1: 13107 + 0: 128 -15,3: - 2: 8704 - 0: 34959 + 0: 8704 + 1: 34959 -15,6: - 2: 546 - 0: 34952 + 0: 546 + 1: 34952 -14,4: - 0: 13107 - 2: 2184 + 1: 13107 + 0: 2184 -14,5: - 0: 13119 - 2: 34816 + 1: 13119 + 0: 34816 -14,6: - 0: 13107 - 2: 2184 + 1: 13107 + 0: 2184 -14,7: - 0: 36859 + 1: 36859 -14,3: - 0: 13299 - 2: 32768 + 1: 13299 + 0: 32768 -14,8: - 0: 52428 - 2: 16 + 1: 52428 + 0: 16 -13,5: - 0: 1 + 1: 1 -15,2: - 2: 550 - 0: 34816 + 0: 550 + 1: 34816 -14,1: - 0: 4096 + 1: 4096 -14,2: - 0: 13073 - 2: 34956 + 1: 13073 + 0: 34956 -13,3: - 0: 16 + 1: 16 -13,0: - 2: 17476 + 0: 17476 -13,-1: - 2: 17476 + 0: 17476 -13,1: - 2: 17476 + 0: 17476 -17,8: - 0: 47359 + 1: 47291 -16,9: - 0: 247 - 2: 28672 + 1: 247 + 0: 28672 -17,9: - 0: 187 - 2: 61440 + 1: 187 + 0: 61440 -16,10: - 2: 62837 + 0: 62837 -17,10: - 2: 245 + 0: 245 -16,11: - 2: 196 + 0: 196 -15,9: - 0: 15155 - 2: 8 + 1: 13107 + 0: 8 -15,10: - 0: 255 - 2: 61440 + 1: 255 + 0: 61440 -15,11: - 2: 245 + 0: 245 -14,9: - 2: 545 + 0: 545 -14,10: - 0: 239 - 2: 28672 + 1: 239 + 0: 28672 -14,11: - 2: 23925 + 0: 23925 -14,12: - 2: 15 + 0: 15 -13,12: - 2: 3759 + 0: 3759 -9,16: - 0: 8 - 4: 65280 - 2: 3 + 1: 8 + 3: 65280 + 0: 3 -8,17: - 4: 3 - 0: 56 - 2: 12032 + 3: 3 + 0: 12032 + 1: 8 -9,17: - 4: 15 - 0: 240 - 2: 20224 + 3: 15 + 0: 20224 -8,18: - 2: 47 + 0: 47 -9,18: - 2: 79 + 0: 79 -7,17: - 0: 131 - 2: 12032 - 4: 8 + 1: 3 + 0: 12032 + 3: 8 -7,18: - 2: 47 + 0: 47 -6,17: - 4: 15 - 0: 240 - 2: 7936 + 3: 15 + 0: 7936 -6,18: - 2: 31 + 0: 31 -5,17: - 4: 15 - 0: 240 - 2: 40704 + 3: 15 + 0: 40704 -5,18: - 2: 159 + 0: 159 -4,17: - 4: 7 - 0: 112 - 2: 20224 + 3: 7 + 0: 20224 -4,18: - 2: 79 + 0: 79 -11,15: - 2: 20288 + 0: 20288 -11,16: - 2: 4383 - 4: 52224 + 0: 4383 + 3: 52224 -10,15: - 2: 12064 + 0: 12064 -10,16: - 2: 15 - 4: 65280 + 0: 15 + 3: 65280 -11,17: - 2: 12049 - 4: 12 - 0: 192 + 0: 12049 + 3: 12 -11,18: - 2: 47 + 0: 47 -10,17: - 4: 15 - 0: 240 - 2: 40704 + 3: 15 + 0: 40704 -10,18: - 2: 159 + 0: 159 -3,16: - 2: 4369 + 0: 4369 -3,17: - 2: 273 + 0: 273 -20,4: - 2: 3276 + 0: 3276 -20,5: - 0: 3212 + 1: 3212 -20,6: - 2: 34956 + 0: 34956 -19,5: - 0: 61423 + 1: 61423 -20,7: - 2: 34952 + 0: 34952 -20,8: - 2: 34952 + 0: 34952 -19,4: - 0: 61166 + 1: 61166 -19,6: - 0: 61166 + 1: 61166 -19,7: - 0: 36590 + 1: 3822 -19,3: - 0: 61423 + 1: 61423 -19,8: - 0: 238 - 2: 61440 + 1: 238 + 0: 61440 -18,7: - 0: 45054 + 1: 12286 -18,8: - 0: 59583 + 1: 59583 -20,2: - 2: 3208 + 0: 3208 -20,3: - 0: 3212 + 1: 3212 -19,2: - 2: 1 - 0: 60996 + 0: 1 + 1: 60996 -19,1: - 0: 16384 + 1: 16384 -18,2: - 2: 1 + 0: 1 -20,9: - 2: 136 + 0: 136 -19,9: - 2: 60154 + 0: 60154 -18,9: - 2: 61440 - 0: 238 + 0: 61440 + 1: 238 -18,10: - 2: 245 + 0: 245 4,12: - 2: 60385 + 0: 60385 5,11: - 0: 13104 - 2: 34952 + 1: 13104 + 0: 34952 5,9: - 0: 14 - 2: 44544 + 1: 14 + 0: 44544 5,10: - 2: 60138 + 0: 60138 6,9: - 0: 30 - 2: 44800 + 1: 15 + 0: 44800 6,10: - 2: 13050 + 0: 13050 6,11: - 2: 12850 + 0: 12850 5,12: - 2: 64248 + 0: 64248 6,12: - 2: 12850 + 0: 12850 7,9: - 0: 197 - 2: 8960 + 1: 7 + 0: 12032 + 8,9: + 1: 119 + 0: 1792 4,-13: - 2: 3840 + 0: 3840 3,-13: - 2: 3840 + 0: 3840 1,-13: - 2: 3840 + 0: 3840 2,-13: - 2: 3840 + 0: 3840 uniqueMixes: - volume: 2500 - temperature: 293.15 + immutable: True moles: - - 21.824879 - - 82.10312 - 0 - 0 - 0 @@ -10211,26 +6037,13 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10311 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 - 0 - volume: 2500 - immutable: True + temperature: 293.15 moles: - - 0 - - 0 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -10301,105 +6114,12 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 5000 - moles: - - 6666.982 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.823984 - - 82.09976 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap - type: BecomesStation id: Awesome - - uid: 2023 - components: - - type: MetaData - name: solution - food - - type: Transform - parent: 2022 - - type: Solution - solution: - maxVol: 10 - name: food - reagents: - - data: [] - ReagentId: Fiber - Quantity: 10 - - type: ContainedSolution - containerName: food - container: 2022 - - uid: 2028 - components: - - type: MetaData - name: solution - chamber - - type: Transform - parent: 2027 - - type: Solution - solution: - maxVol: 50 - name: chamber - reagents: [] - - type: ContainedSolution - containerName: chamber - container: 2027 - - uid: 2030 - components: - - type: MetaData - name: solution - spray - - type: Transform - parent: 2029 - - type: Solution - solution: - maxVol: 100 - name: spray - reagents: - - data: [] - ReagentId: Water - Quantity: 100 - - type: ContainedSolution - containerName: spray - container: 2029 - uid: 16200 components: - type: MetaData @@ -10971,71 +6691,157 @@ entities: - type: IFF color: '#FA3200FF' flags: HideLabel - - uid: 17590 + - uid: 17413 components: - type: MetaData - name: SHADOW LIZARD MONEY GANG + name: обломок - type: Transform - rot: 0.6108652381980153 rad - pos: -1206.1555,3005.0415 + pos: 2524.74,2031.7748 parent: 1 - type: MapGrid chunks: - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAALAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABQAAAAAAGgAAAAAAGgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGgAAAAAAgQAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAABgAAAAAABgAAAAAAGgAAAAAABQAAAAAABQAAAAAABQAAAAAABgAAAAAAGgAAAAAAgQAAAAAANAAAAAAANAAAAAAAQwAAAAAAQwAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANAAAAAAANAAAAAAAQwAAAAAAQwAAAAAARAAAAAAARAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAABQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAABQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAQwAAAAAAQwAAAAAARAAAAAAARAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAgQAAAAAARAAAAAAARAAAAAAAQwAAAAAAQwAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAAGgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA - version: 6 - 1,0: - ind: 1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAGwAAAAAA + 0,0: + ind: 0,0 + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 1,-1: - ind: 1,-1 - tiles: JwAAAAAAJwAAAAAAgQAAAAAARAAAAAAARAAAAAAAEAAAAAAAEAAAAAAARAAAAAAAgQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAJwAAAAAAJwAAAAAAgQAAAAAARAAAAAAARAAAAAAADwAAAAAADwAAAAAAEQAAAAAAEQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAALAAAAAAALAAAAAAAgQAAAAAARAAAAAAARAAAAAAAEAAAAAAAEAAAAAAARAAAAAAAgQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAALAAAAAAALAAAAAAALAAAAAAAEQAAAAAAEQAAAAAADwAAAAAADwAAAAAAEQAAAAAAEQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASAAAAAAASAAAAAAAgQAAAAAANAAAAAAANAAAAAAAEQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAANAAAAAAANAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARgAAAAAARgAAAAAARwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARwAAAAAARwAAAAAARgAAAAAABQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARwAAAAAARgAAAAAARgAAAAAABQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARwAAAAAARgAAAAAARgAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAADgAAAAAADgAAAAAADwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAARAAAAAAADgAAAAAADgAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAARAAAAAAADgAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAADgAAAAAARAAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAA + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 2,0: - ind: 2,0 - tiles: HAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAADwAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAADwAAAAAAEAAAAAAAGwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAADwAAAAAAEAAAAAAAGwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAADwAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAADwAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAADwAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAADwAAAAAAEAAAAAAAGwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAADwAAAAAAEAAAAAAAGwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAADwAAAAAAEAAAAAAAGwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 - 2,-1: - ind: 2,-1 - tiles: SAAAAAAASAAAAAAASAAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAEAAAAAAAEAAAAAAAgQAAAAAASgAAAAAARQAAAAAASgAAAAAASgAAAAAASAAAAAAASAAAAAAASAAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAEAAAAAAAEAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAASAAAAAAASAAAAAAASAAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAEAAAAAAAEAAAAAAAgQAAAAAASgAAAAAARQAAAAAASgAAAAAASgAAAAAASAAAAAAASAAAAAAASAAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAEAAAAAAAEAAAAAAAgQAAAAAASgAAAAAARQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAEAAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARwAAAAAARwAAAAAARgAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAARAAAAAAABQAAAAAARgAAAAAARgAAAAAARgAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAARAAAAAAABQAAAAAARgAAAAAARwAAAAAARwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARgAAAAAARwAAAAAARwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAQAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAQAAAAAAABQAAAAAABQAAAAAABQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAA + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + flags: Hide + - uid: 17433 + components: + - type: MetaData + name: астероид + - type: Transform + pos: 2533.2852,2032.8645 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: XAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 3,0: - ind: 3,0 - tiles: BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 3,-1: - ind: 3,-1 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 3,-2: - ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAA version: 6 - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASAAAAAAASAAAAAAASAAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASAAAAAAASAAAAAAASAAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAEAAAAAAAEAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASAAAAAAASAAAAAAASAAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAEAAAAAAAEAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASAAAAAAASAAAAAAASAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + flags: Hide + - uid: 17641 + components: + - type: MetaData + name: NT-LH Мусоровоз + - type: Transform + rot: 0.5759586531581288 rad + pos: 2499.8523,1999.252 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: BwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHAAAAAAABwAAAAAABwAAAAAABwAAAAAAMwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHAAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAMgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAMwAAAAAAMgAAAAAAgQAAAAAAMgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAA version: 6 - 1,-2: - ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAABAAAAAAAgQAAAAAARAAAAAAARAAAAAAAEAAAAAAAEAAAAAAARAAAAAAAgQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAAEAAAAAAAEAAAAAAARAAAAAAAgQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAA + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAA + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAAABwAAAAAABwAAAAAAMgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMwAAAAAAMwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAARAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAMgAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: gQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAMgAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAMwAAAAAAMgAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAAMgAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAMwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAMwAAAAAAgQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAMgAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 2,1: - ind: 2,1 - tiles: EAAAAAAADwAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAADwAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAADwAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAMwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAMgAAAAAAMwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: gQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -11059,637 +6865,827 @@ entities: nodes: - node: color: '#FFFFFFFF' - id: BushAThree + id: Dirt decals: - 108: 37.62799,-7.0112305 + 1: 6.2460938,8.114746 + 2: 6.2460938,8.114746 - node: + cleanable: True color: '#FFFFFFFF' - id: BushATwo + id: Dirt decals: - 104: 37.24939,-7.9370117 - 105: 20.434082,-6.123291 + 3: 7,7 + 4: 8,8 + 5: 9,8 + 6: 9,8 + 7: 8,9 + 8: 9,9 + 9: 9,8 + 10: 9,8 + 11: 9,8 + 12: 9,8 + 13: 9,8 + 14: 12,8 + 15: 12,8 + 16: 12,7 + 17: 13,7 + 18: 15,7 + 19: 17,7 + 20: 19,7 + 21: 18,8 + 22: 16,9 + 23: 15,8 + 24: 17,9 + 25: 17,10 + 26: 17,11 + 27: 17,11 + 28: 16,11 + 29: 16,12 + 30: 16,14 + 31: 16,16 + 32: 16,16 + 33: 16,14 + 34: 16,14 + 35: 16,13 + 36: 18,16 + 37: 19,17 + 38: 20,17 + 39: 20,18 + 40: 18,19 + 41: 16,18 + 42: 14,18 + 43: 12,17 + 44: 12,17 + 45: 12,20 + 46: 13,22 + 47: 18,21 + 48: 22,22 + 49: 22,23 + 50: 21,24 + 51: 19,24 + 52: 15,23 + 53: 13,21 + 54: 19,22 + 55: 17,22 + 56: 14,22 + 57: 18,24 + 58: 15,24 + 59: 18,22 + 60: 18,23 + 61: 17,23 + 62: 17,24 + 63: 17,25 + 64: 15,27 + 65: 13,26 + 66: 12,23 + 67: 14,23 + 68: 15,24 + 69: 12,22 + 70: 13,19 + 71: 17,16 + 72: 20,16 + 73: 22,15 + 74: 22,15 + 75: 21,13 + 76: 22,13 + 77: 22,13 + 78: 22,13 + 79: 23,13 + 80: 23,12 + 81: 23,12 + 82: 23,12 + 83: 23,13 + 84: 23,13 + 85: 23,13 + 86: 23,13 + 87: 22,12 + 88: 21,12 + 89: 21,11 + 90: 21,12 + 91: 21,12 + 92: 13,14 + 93: 13,13 + 94: 12,12 + 95: 11,12 + 96: 11,12 + 97: 11,11 + 98: 12,11 + 99: 13,11 + 100: 13,12 + 101: 13,13 + 102: 16,10 + 103: 16,8 + 104: 18,7 + 105: 20,7 + 106: 22,6 + 107: 25,6 + 108: 26,6 + 109: 27,6 + 110: 25,4 + 111: 25,3 + 112: 26,2 + 113: 25,2 + 114: 24,1 + 115: 24,-1 + 116: 25,-4 + 117: 25,-4 + 118: 25,-2 + 119: 25,-1 + 120: 24,-3 + 121: 23,-5 + 122: 25,-6 + 123: 26,-6 + 124: 29,-5 + 125: 30,-5 + 126: 30,-6 + 127: 32,-5 + 128: 32,-5 + 129: 33,-5 + 130: 33,-5 + 131: 33,-5 + 132: 32,-5 + 133: 34,-5 + 134: 34,-5 + 135: 34,-6 + 136: 37,-5 + 137: 37,-5 + 138: 38,-6 + 139: 40,-6 + 140: 39,-6 + 141: 39,-6 + 142: 39,-5 + 143: 39,-4 + 144: 39,-4 + 145: 39,-4 + 146: 37,-3 + 147: 37,-3 + 148: 37,-3 + 149: 37,-3 + 150: 36,-4 + 151: 36,-4 + 152: 36,-4 + 153: 33,-5 + 154: 30,-5 + 155: 28,-5 + 156: 25,-6 + 157: 24,-5 + 158: 20,-5 + 159: 19,-5 + 160: 19,-5 + 161: 18,-5 + 162: 16,-5 + 163: 12,-5 + 164: 10,-5 + 165: 8,-5 + 166: 6,-6 + 167: 3,-5 + 168: 2,-5 + 169: -1,-5 + 170: -3,-5 + 171: -2,-4 + 172: -2,-2 + 173: -1,0 + 174: 0,-1 + 175: 0,-1 + 176: 1,-2 + 177: -1,-1 + 178: -1,-1 + 179: -1,-1 + 180: 1,-2 + 181: 2,-2 + 182: 2,-1 + 183: 2,0 + 184: 1,1 + 185: 2,2 + 186: 1,1 + 187: 0,0 + 188: 1,1 + 189: 0,2 + 190: -1,2 + 191: -2,3 + 192: -3,2 + 193: -3,1 + 329: 5,2 + 330: 5,2 + 331: 6,1 + 332: 6,2 + 333: 9,2 + 334: 9,3 + 335: 9,3 + 336: 8,3 + 337: 8,3 + 338: 4,7 + 339: 4,6 + 340: 5,6 + 341: 6,8 + 342: 8,9 + 343: 8,8 + 344: 8,11 + 345: 9,12 + 346: 9,12 + 347: 9,12 + 348: 9,12 + 349: 9,12 + 350: 13,8 + 351: 14,8 + 352: 13,7 + 353: 13,7 + 354: 16,7 + 355: 18,8 + 356: 18,10 + 357: 18,11 + 358: 17,9 + 359: 16,8 + 360: 16,8 + 361: 18,9 + 362: 18,10 + 363: 20,7 + 364: 23,7 + 365: 23,7 + 366: 22,6 + 367: 24,5 + 368: 25,4 + 369: 25,3 + 370: 24,2 + 371: 25,2 + 372: 24,0 + 373: 25,-3 + 374: 24,-5 + 375: 25,-7 + 376: 25,-5 + 377: 25,-5 + 378: 24,-5 + 379: 22,-5 + 380: 21,-5 + 381: 20,-5 + 382: 19,-5 + 383: 19,-4 + 384: 20,0 + 385: 20,0 + 386: 19,-1 + 387: 19,-1 + 388: 20,0 + 389: 21,2 + 390: 21,2 + 391: 20,2 + 392: 19,2 + 393: 19,0 + 394: 21,2 + 395: 20,1 - node: + cleanable: True color: '#FFFFFFFF' - id: BushCOne + id: DirtHeavy decals: - 98: 19.872437,-8.313477 - 106: 21.10614,-7.779541 - 107: 36.225708,-6.3876953 + 194: 1,1 + 195: 1,0 + 196: 1,0 + 197: 1,-1 + 198: 1,-1 + 199: 1,-1 + 200: 6,2 + 201: 7,2 + 202: 11,2 + 203: 10,2 + 204: 14,0 + 205: 14,0 + 206: 14,0 + 207: 14,1 + 208: 13,0 + 209: 13,0 + 210: 14,2 + 211: 14,4 + 212: 15,4 + 213: 15,3 + 214: 14,3 + 215: 13,3 + 216: 7,8 + 217: 7,9 + 218: 6,8 + 219: 7,8 + 220: 8,8 + 221: 8,12 + 222: 8,12 + 223: 8,12 + 224: 7,12 + 225: 7,12 + 226: 12,8 + 227: 13,8 + 228: 15,8 + 229: 17,7 + 230: 15,7 + 231: 14,7 + 232: 17,10 + 233: 17,12 + 234: 17,10 + 235: 17,12 + 236: 16,14 + 237: 16,14 + 238: 18,12 + 239: 17,9 + 240: 19,6 + 241: 22,6 + 242: 22,7 + 243: 20,7 + 244: 25,3 + 245: 24,2 + 246: 25,-1 + 247: 25,-2 + 248: 25,-2 + 249: 24,-4 + 250: 22,-5 + 251: 22,-5 + 252: 24,-5 + 253: 26,-5 + 254: 28,-5 + 255: 28,-5 + 256: 26,-5 + 257: 27,-5 + 258: 27,-5 + 259: 27,-5 + 260: 27,-5 + 261: 27,-5 + 262: 30,-5 + 263: 32,-5 + 264: 33,-5 + 265: 34,-6 + 266: 36,-5 + 267: 37,-5 + 268: 37,-6 + 269: 38,-6 + 270: 40,-5 + 271: 39,-4 + 272: 38,-5 + 396: 22,2 + 397: 20,2 + 398: 20,1 + 399: 19,0 + 400: 18,-1 + 401: 19,-2 + 402: 21,-1 + 423: 21,2 - node: + cleanable: True color: '#FFFFFFFF' - id: BushCTwo + id: DirtHeavyMonotile decals: - 111: 21.53363,-6.6796875 - 112: 21.643066,-6.227051 + 273: 38,-5 + 274: 38,-5 + 275: 38,-6 + 276: 39,-6 + 277: 38,-5 + 278: 33,-5 + 279: 32,-5 + 280: 29,-5 + 281: 27,-5 + 282: 25,-5 + 283: 22,-5 + 284: 22,-6 + 285: 25,-4 + 286: 20,-5 + 287: 19,-5 + 288: 19,-6 + 289: 18,-5 + 290: 15,-5 + 291: 15,-5 + 292: 12,-5 + 293: 10,-5 + 294: 6,-5 + 295: 3,-5 + 296: 1,-5 + 297: 0,-5 + 298: -2,-5 + 299: -2,-4 + 300: -2,-5 + 301: -1,-5 + 302: 0,-5 + 303: -1,-5 + 304: -1,-5 + 305: -1,-5 + 306: -1,-5 - node: + cleanable: True color: '#FFFFFFFF' - id: Busha1 + id: DirtLight decals: - 120: 36.964417,-6.1430664 - 121: 37.87079,-6.5336914 - 122: 21.818542,-7.2504883 + 307: -1,-5 + 308: 1,-5 + 309: 2,-5 + 310: -1,-1 + 311: 0,-1 + 312: 1,0 + 313: 1,1 + 314: 1,-1 + 315: 1,-2 + 316: 2,-2 + 317: 2,-2 + 318: -2,-2 + 319: -2,-2 + 320: -3,-2 + 321: -4,-2 + 322: -4,-2 + 323: 6,2 + 324: 6,2 + 325: 8,2 + 326: 8,2 + 327: 8,2 + 328: 8,2 + 403: 21,0 + 404: 20,0 + 405: 19,0 + 406: 19,0 + 407: 21,2 + 408: 21,2 + 409: 20,0 + 410: 20,0 - node: + cleanable: True color: '#FFFFFFFF' - id: Bushc2 + id: DirtMedium decals: - 101: 21.872314,-8.688477 - 103: 35.960205,-7.031006 + 411: 19,-1 + 412: 18,-1 + 413: 19,-2 + 414: 21,-1 + 415: 21,-1 + 416: 21,-1 + 417: 21,0 + 418: 21,1 + 419: 20,2 + 420: 19,2 + 421: 19,1 + 422: 19,0 - node: - color: '#FFFFFFFF' - id: Bushi2 + cleanable: True + color: '#4C010144' + id: dot decals: - 113: 20.712952,-8.834961 + 551: 0.59277344,0.016479492 + 552: 0.3112793,-0.3585205 + 553: 0.2644043,-0.6710205 + 554: 0.3269043,-0.6867676 + 555: 0.51464844,-0.18676758 + 556: 1.0773926,1.4541016 + 557: 4.125,2.2355957 + 558: 3.6416016,2.0166016 + 559: 5.001709,2.0164795 + 560: 5.9868164,2.0477295 + 561: 6.5336914,1.9228516 + 562: 7.425049,2.1883545 + 563: 7.581543,2.1414795 + 564: 7.2216797,1.6727295 + 565: 8.1188965,1.5009766 + 566: 9.685547,1.9853516 + 567: 8.637695,1.8297119 + 568: 9.287598,1.7359619 + 569: 9.694092,1.939209 + 570: 9.084473,1.720459 + 571: 10.046631,1.6739502 + 572: 12.591309,1.9558105 + 573: 12.961426,2.1278076 + 574: 12.386475,1.5343018 + 575: 13.137207,2.3624268 + 576: 12.965088,2.1593018 + 577: 12.821777,2.0344238 + 578: 13.064941,2.034912 + 579: 12.518555,1.7545166 + 580: 12.299805,1.8637695 + 581: 12.206055,2.1606445 + 582: 12.37793,2.3013916 + 583: 12.409668,2.1451416 + 584: 12.581543,2.0512695 + 585: 13.585205,1.5198975 + 586: 13.996094,0.6920166 + 587: 14.137451,0.25463867 + 588: 14.87207,-0.21398926 + 589: 14.888184,-0.24536133 + 590: 14.309082,0.08288574 + 591: 13.934326,0.09851074 + 592: 13.918457,-0.057739258 + 593: 14.575195,-0.29223633 + 594: 15.310059,-0.35473633 + 595: 20.722412,-0.31713867 + 596: 20.456787,-0.45788574 + 597: 20.144043,-0.6921387 + 598: 19.784424,-0.94226074 + 599: 20.112793,0.29223633 + 600: 20.175293,0.7923584 + 601: 19.784424,0.9486084 + 602: 19.424805,0.9016113 + 603: 19.158936,1.0733643 + 604: 18.689941,0.6986084 + 605: 18.596191,-0.6452637 + 606: 18.846191,-1.1608887 + 607: 19.25293,-0.6140137 + 608: 18.877441,-0.8483887 + 609: 18.705566,-1.2546387 + 610: 18.95581,-1.0983887 + 611: 19.26831,-0.8640137 + 612: 20.706787,0.46411133 + 613: 20.691406,1.4639893 + 614: 20.190918,2.1517334 + 615: 20.003174,2.2922363 + 616: 19.40918,2.3077393 + 617: 19.111816,1.9017334 + 618: 19.909668,2.5891113 + 619: 21.269775,2.1827393 + 620: 20.613037,1.8859863 + 621: 20.988281,1.9172363 + 622: 20.112549,1.0891113 + 623: 20.957031,0.44836426 + 624: 20.628662,0.6047363 + 625: 20.582031,0.24536133 + 626: 21.175781,-0.7390137 + 627: 20.378418,-0.4263916 + 628: 20.644043,-1.1763916 + 629: 18.643066,-0.5515137 + 630: 18.533691,-1.6452637 + 631: 18.92456,-0.75476074 + 632: 19.04956,-1.4733887 + 633: 19.28418,-2.0985107 + 634: 19.784424,-2.0045166 + 635: 19.987549,-2.6295166 + 636: 20.222168,-1.7858887 + 637: 20.394043,-2.7702637 + 638: 20.347168,-3.6452637 + 639: 20.190918,-4.0358887 + 640: 20.159668,-3.8640137 + 641: 20.175293,-2.8640137 + 642: 20.300293,-1.8015137 + 643: 20.144043,-0.8952637 + 644: 19.331055,-1.6452637 + 645: 19.01831,-1.4108887 + 646: 18.424316,-0.8796387 + 647: 18.627441,-1.0983887 + 648: 18.721436,-1.1608887 + 649: 19.862305,-2.0201416 + 650: 20.519043,-1.1608887 + 651: 20.878906,-0.8171387 + 652: 20.941406,-0.9265137 + 653: 21.019531,-0.8327637 + 654: 20.894531,0.22961426 + 655: 20.534668,0.19848633 + 656: 20.050293,-0.5202637 + 657: 19.362305,-0.9421387 + 658: 14.279297,0.05505371 + 659: 13.846436,0.52282715 + 660: 13.532471,2.529419 + 661: 13.73584,2.7949219 + 662: 12.782227,2.216919 + 663: 12.563477,2.0136719 + 664: 13.845459,1.7949219 + 665: 13.876465,1.170166 + 666: 13.329102,0.56066895 + 667: 12.782227,0.107543945 + 668: 13.39209,0.23254395 + 669: 13.751465,0.59191895 + 670: 13.70459,1.013794 + 671: 13.219971,1.8574219 + 672: 13.032227,2.013794 + 673: 14.236084,0.7480469 + 674: 13.485596,0.24816895 + 675: 12.969971,-0.095581055 + 676: 14.001709,0.93566895 + 677: 14.04834,1.5917969 + 678: 13.454346,1.998169 + 679: 12.922852,2.357544 - node: - color: '#FFFFFFFF' - id: Bushj3 + cleanable: True + color: '#4C010161' + id: largebrush decals: - 96: 20.606628,-6.5634766 + 486: -2.1884766,2.9367676 - node: - color: '#FFFFFFFF' - id: Bushk1 + cleanable: True + color: '#4C010190' + id: largebrush decals: - 117: 36.150513,-8.550781 - 118: 36.900635,-8.722656 - 119: 37.371582,-6.0810547 + 487: -1.7817383,2.6153564 - node: - color: '#FFFFFFFF' - id: Bushk3 + cleanable: True + color: '#4C010140' + id: smallbrush decals: - 114: 20.112793,-7.36499 - 115: 20.065857,-6.92749 - 116: 36.36505,-7.7075195 + 506: 5.434326,2.1533203 + 507: 6.0908203,1.9813232 + 508: 6.2470703,1.9970703 + 509: 6.9040527,2.1065674 + 510: 7.513672,2.0439453 + 511: 7.982666,2.0595703 + 512: 9.420898,2.2470703 + 513: 10.140137,2.0908203 + 514: 10.625,1.9500732 + 515: 13.018555,1.8572998 + 516: 13.295166,1.7167969 + 517: 13.576416,1.1855469 + 518: 13.873535,0.5760498 + 519: 13.967285,1.138794 + 520: 13.73291,1.6541748 + 521: 13.76416,-0.001953125 + 522: 14.753418,-0.0018310547 + 523: 15.098145,0.014160156 + 524: 15.051758,0.15454102 + 525: 14.411133,-0.079833984 + 526: 14.473633,-0.18920898 + 527: 14.973877,0.4202881 + 528: 14.629883,0.15454102 + 529: 14.598633,-0.25170898 + 530: 14.676758,0.45141602 + 531: 14.473633,-0.111083984 + 532: 14.879883,0.18579102 + 533: 14.895752,-0.36120605 + 534: 15.177002,-0.17358398 + 535: 14.911133,0.17016602 + 536: 14.551758,-0.048583984 + 537: 14.426758,-0.31420898 + 538: 14.895752,-0.23608398 + 539: 15.020752,0.23266602 + 540: 14.801758,0.24816895 + 541: 14.676758,-0.23608398 + 542: 15.020752,-0.032958984 + 543: 1.2844238,1.9223633 + 544: 1.1870117,1.9226074 + 545: 0.9055176,1.4538574 + 546: 0.65527344,0.8133545 + 547: 0.3269043,0.18835449 + 548: 1.2963867,-0.13977051 + 549: 1.5307617,-0.4522705 + 550: 1.0620117,-1.1241455 - node: - color: '#FFFFFFFF' - id: Bushm4 + cleanable: True + color: '#4C010198' + id: smallbrush decals: - 123: 35.97455,-7.7783203 - 124: 37.786987,-8.605957 + 477: 19.523438,-0.5653076 + 478: 19.554688,-0.7840576 + 479: 19.757812,-1.3775635 + 480: 19.148193,-2.2371826 - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE + cleanable: True + color: '#608A1A26' + id: smallbrush decals: - 150: 45,-14 - 151: 45,-13 + 699: 13.732422,2.6887207 + 700: 13.669922,2.6574707 + 701: 13.732422,2.5324707 + 702: 14.107666,2.6262207 + 703: 9.52417,1.7512207 - node: - color: '#4B362BFF' - id: WoodTrimThinLineEWhite + cleanable: True + color: '#4C01012F' + id: splatter decals: - 132: 45,-14 - 133: 45,-13 + 470: 20.63623,0.85595703 + 471: 20.47998,1.090332 + 472: 20.29248,1.887207 + 473: 20.7771,1.99646 + 474: 20.839355,0.4185791 + 475: 19.604492,-0.87854004 + 476: 18.228516,-0.76904297 - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN + cleanable: True + color: '#4C010161' + id: splatter decals: - 55: 36,-1 - 56: 35,-1 - 57: 33,-1 - 58: 34,-1 - 59: 32,-1 - 60: 31,-1 - 61: 31,-1 - 62: 30,-1 - 63: 29,-1 - 64: 28,-1 - 65: 27,-1 - 66: 26,-1 - 67: 25,-1 - 70: 22,-1 - 71: 21,-1 - 72: 20,-1 - 73: 21,2 - 74: 20,2 - 75: 22,2 - 76: 23,2 - 77: 24,2 - 78: 25,2 - 79: 26,2 - 80: 27,2 - 81: 28,2 - 82: 29,2 - 83: 31,2 - 84: 29,2 - 85: 30,2 - 86: 30,2 - 87: 32,2 - 88: 33,2 - 89: 34,2 - 90: 35,2 - 91: 36,2 - 92: 23,-1 - 93: 24,-1 - 147: 47,-15 - 148: 46,-15 - 149: 44,-15 + 481: 19.445068,-2.0183105 + 482: 19.835938,-0.44018555 + 483: 19.726562,-0.8931885 + 484: 19.88086,-1.1787109 + 485: 19.75586,-2.2098389 - node: - color: '#4B362BFF' - id: WoodTrimThinLineNWhite + cleanable: True + color: '#4C010187' + id: splatter decals: - 135: 44,-15 - 136: 46,-15 - 137: 47,-15 + 424: 0.49560547,-1.9892578 + 425: 0.011230469,-1.9423828 + 426: -0.5048828,-1.6923828 + 427: -0.5671387,-2.0830078 + 428: -0.3173828,-2.2548828 + 429: 0.26123047,-1.9737549 + 430: 0.35498047,-1.4892578 + 431: -0.25463867,-1.6612549 + 432: -0.7236328,-2.1142578 + 433: 0.026855469,-2.5517578 + 434: 0.99609375,-2.27063 + 435: 1.3085938,-1.7392578 + 436: 0.8239746,-1.4893799 + 437: 0.16723633,-1.7861328 + 438: 0.29248047,-2.0830078 + 439: 0.18286133,-1.6453857 + 440: -0.5361328,-1.8330078 + 441: -0.20751953,-2.3017578 + 442: 0.41748047,-1.5518799 + 443: -0.7236328,-1.9267578 + 444: -0.6611328,-2.3328857 + 445: 19.725098,1.5806885 + 446: 19.338623,0.90270996 + 447: 19.025879,0.7463379 + 448: 18.994629,0.32470703 + 449: 19.573242,0.74645996 + 450: 19.463867,1.074707 + 451: 18.869629,0.94958496 + 452: 18.650879,0.55895996 + 453: 18.963623,0.27770996 + 454: 19.932617,0.35583496 + 455: 19.885742,1.605957 + 456: 19.588867,1.699585 + 457: 18.650879,1.43396 + 458: 18.54126,0.5119629 + 459: 18.744629,-0.12854004 + 460: 19.275879,0.09020996 + 461: 19.370117,0.49645996 + 462: 18.885254,-0.06616211 + 463: 19.354492,0.46520996 + 464: 19.057373,0.74645996 + 465: 19.057373,0.74645996 - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS + cleanable: True + color: '#4C010190' + id: splatter decals: - 3: 32,4 - 4: 33,4 - 5: 34,4 - 8: 36,2 - 9: 35,2 - 10: 34,2 - 11: 33,2 - 12: 33,2 - 13: 33,2 - 14: 32,2 - 15: 31,2 - 16: 31,2 - 17: 30,2 - 18: 30,2 - 19: 29,2 - 20: 29,2 - 21: 28,2 - 22: 27,2 - 23: 27,2 - 24: 26,2 - 25: 25,2 - 26: 25,2 - 27: 25,2 - 28: 23,2 - 29: 23,2 - 30: 22,2 - 31: 24,2 - 32: 21,2 - 33: 21,2 - 34: 20,2 - 35: 20,-1 - 36: 21,-1 - 37: 22,-1 - 38: 22,-1 - 41: 25,-1 - 42: 26,-1 - 43: 27,-1 - 44: 28,-1 - 45: 29,-1 - 46: 30,-1 - 47: 31,-1 - 48: 31,-1 - 49: 32,-1 - 50: 33,-1 - 51: 34,-1 - 52: 35,-1 - 53: 36,-1 - 54: 36,-1 - 94: 23,-1 - 95: 24,-1 - 143: 45,-15 - 144: 44,-15 - 145: 46,-15 - 146: 47,-15 + 488: -1.2661133,3.0057373 + 489: -1.2192383,2.1933594 + 490: -2.8764648,1.7089844 + 491: -1.0317383,1.2716064 + 492: -0.20288086,0.7402344 + 493: -2.0166016,0.7558594 + 494: 0.4501953,-0.91674805 + 495: 1.0913086,0.19262695 + 496: 1.21875,1.3511963 + 497: 1.8129883,1.7886963 + 498: 3.9389648,1.8980713 + 499: 5.205078,2.1324463 + 500: 6.6103516,1.9613037 + 501: 8.450684,1.9926758 + 502: 9.728516,2.1973877 + 503: 11.85498,2.2911377 + 504: 13.246338,1.8692627 + 505: 13.744629,0.7451172 - node: - color: '#4B362BFF' - id: WoodTrimThinLineSWhite + cleanable: True + color: '#4C0101D8' + id: splatter decals: - 125: 47,-15 - 126: 46,-15 - 128: 44,-15 + 466: 19.072998,0.87158203 + 467: 19.072998,0.87158203 + 468: 19.041504,0.68408203 + 469: 19.041504,0.63720703 - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW + cleanable: True + color: '#608A1A26' + id: splatter decals: - 152: 45,-13 - 153: 45,-14 + 686: 13.371094,2.7756348 + 687: 12.74585,2.6191406 + 688: 12.213867,2.2442627 + 689: 12.010986,1.8067627 + 690: 13.746094,2.2443848 + 691: 13.824463,1.7130127 + 692: 14.262207,2.2756348 + 693: 14.199707,2.8847656 + 694: 14.012207,3.3691406 + 695: 13.496094,2.8066406 + 696: 13.699219,2.4472656 + 697: 13.808838,3.1036377 + 698: 13.793213,3.1191406 - node: - color: '#4B362BFF' - id: WoodTrimThinLineWWhite + cleanable: True + color: '#608A1A47' + id: splatter decals: - 130: 45,-14 - 131: 45,-13 + 680: 13.673584,2.7130127 + 681: 13.345459,2.4163818 + 682: 13.282715,2.1193848 + 683: 13.829834,2.6506348 + 684: 13.970459,2.8538818 + 685: 13.876953,2.8225098 - type: GridAtmosphere version: 2 data: - tiles: - 0,-3: - 0: 256 - 1: 62976 - 2: 2048 - 3: 8 - -1,-3: - 1: 52224 - 3: 288 - 0,-2: - 1: 28671 - 2: 4096 - 0: 32768 - -1,-2: - 1: 52462 - 3: 4096 - 1,-3: - 1: 61678 - 1,-2: - 1: 4095 - 0,-1: - 3: 128 - 1,-4: - 1: 57344 - 1,-1: - 1: 3822 - 2,-4: - 1: 61440 - 2,-3: - 2: 1 - 4: 80 - 1: 61578 - 5: 32 - 0: 4 - 2,-2: - 1: 4061 - 0: 2 - 2: 32 - 2,-1: - 1: 4015 - 2: 16 - 0: 64 - 3,-4: - 1: 40000 - 5: 16384 - 3: 18 - 3,-3: - 1: 56529 - 3,-2: - 1: 19967 - 3,-1: - 1: 1638 - 3,-5: - 3: 16384 - 4,-4: - 1: 64443 - 4,-3: - 1: 65520 - 4,-2: - 0: 1 - 2: 16 - 1: 65518 - 4,-1: - 1: 1919 - 5,0: - 1: 45055 - 2: 16384 - 4,0: - 3: 32768 - 5,-1: - 1: 64271 - 0: 1024 - 5,1: - 3: 1 - 6,0: - 1: 65535 - 6,-1: - 5: 1 - 1: 65294 - 7,0: - 1: 57343 - 2: 8192 - 7,-1: - 1: 64783 - 0: 512 - 7,2: - 1: 61576 - 7,1: - 1: 1216 - 2: 2048 - 7,3: - 1: 34944 - 8,0: - 1: 65535 - 8,1: - 1: 30711 - 0: 2048 - 8,2: - 1: 55293 - 2: 2 - 0: 8192 - 8,3: - 1: 65015 - 2: 512 - 4,-5: - 1: 34952 - 3: 512 - 5,-4: - 1: 65439 - 2: 32 - 0: 64 - 5,-3: - 1: 65520 - 5,-2: - 0: 1 - 2: 16 - 1: 65518 - 5,-5: - 1: 65455 - 2: 16 - 0: 64 - 6,-4: - 1: 64766 - 2: 512 - 6,-3: - 1: 65520 - 6,-2: - 1: 65501 - 0: 2 - 2: 32 - 6,-5: - 1: 61102 - 0: 64 - 7,-4: - 1: 63231 - 0: 256 - 2: 2048 - 7,-3: - 1: 65526 - 7,-2: - 1: 65535 - 7,-5: - 1: 65535 - 8,-4: - 1: 29559 - 0: 1024 - 8,-3: - 1: 65520 - 8,-2: - 1: 65501 - 0: 2 - 2: 32 - 8,-1: - 1: 65407 - 8,4: - 1: 22487 - 0: 32 - 9,0: - 1: 7441 - 4: 4 - 6: 64 - 0: 8 - 2: 128 - 9,1: - 1: 3548 - 9,2: - 1: 28672 - 9,-1: - 1: 56591 - 10,0: - 1: 3959 - 10,1: - 1: 1911 - 10,-1: - 1: 30511 - 11,0: - 1: 36647 - 11,1: - 1: 2955 - 11,-1: - 1: 30478 - 12,0: - 3: 1 - 1: 256 - 12,1: - 1: 273 - 3: 8192 - 8,-5: - 1: 30551 - 2: 32 - 9,-4: - 1: 64991 - 2: 32 - 0: 512 - 9,-3: - 1: 65520 - 9,-2: - 1: 65467 - 0: 4 - 2: 64 - 10,-4: - 1: 26358 - 10,-3: - 1: 49142 - 0: 16384 - 10,-2: - 1: 64511 - 2: 1024 - 10,-5: - 1: 26354 - 11,-4: - 7: 1 - 1: 64446 - 8: 64 - 0: 1024 - 11,-3: - 1: 8928 - 11,-2: - 1: 8738 - 12,-1: - 3: 4370 - 12,-3: - 1: 4352 - 3: 8224 - 12,-2: - 1: 4352 - 3: 512 - 11,-6: - 1: 61440 - 11,-5: - 1: 4027 - 0: 4 - 2: 64 - 8,-6: - 3: 1024 - 9,-6: - 7: 4096 - 1: 57344 - 9,-5: - 1: 4061 - 0: 2 - 2: 32 - 10,-6: - 1: 24576 - 4,-6: - 3: 16384 - -1,-1: - 3: 2 - 7,4: - 1: 240 - 8,5: - 1: 1365 - 9,4: - 1: 112 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.813705 - - 82.06108 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.823984 - - 82.09976 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 5000 - moles: - - 6666.982 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - type: IFF - color: '#8B00FFFF' - flags: HideLabel - - type: Joint - joints: - docking560810: !type:WeldJoint - bodyB: 20000 - bodyA: 17590 - id: docking560810 - localAnchorB: 27,11.5 - localAnchorA: 28,11.5 - damping: 205.48344 - stiffness: 1844.415 - - uid: 19854 + - uid: 20154 components: - type: MetaData - name: Evac Pod SLMG + name: обломок - type: Transform - rot: 0.6108652381980153 rad - pos: 316,-140 + pos: 2530.392,2025.9742 parent: 1 - type: MapGrid chunks: - 2,1: - ind: 2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 0,0: + ind: 0,0 + tiles: gQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 2,0: - ind: 2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAA + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -11711,256 +7707,23 @@ entities: chunkCollection: version: 2 nodes: [] - - type: GridAtmosphere - version: 2 - data: - tiles: - 10,4: - 0: 967 - 1: 8 - 11,4: - 0: 17 - 2: 512 - 11,3: - 2: 8192 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - type: IFF - flags: HideLabel - - type: RadiationGridResistance - - uid: 19951 + flags: Hide +- proto: ActionToggleInternals + entities: + - uid: 8054 components: - - type: MetaData - name: Evac Pod SLMG - type: Transform - rot: 0.6108652381980153 rad - pos: -1205.9021,3006.421 - parent: 1 - - type: MapGrid - chunks: - 1,1: - ind: 1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,0: - ind: 1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: [] - - type: GridAtmosphere - version: 2 - data: - tiles: - 5,3: - 0: 8192 - 5,4: - 1: 204 - 0: 512 - 6,4: - 1: 1559 - uniqueMixes: - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: IFF - flags: HideLabel - - type: RadiationGridResistance - - uid: 20000 + parent: 8053 + - type: InstantAction + container: 8053 + - uid: 8142 components: - - type: MetaData - name: Evac Pod SLMG - type: Transform - rot: 0.6108652381980153 rad - pos: -1205.3105,3005.633 - parent: 1 - - type: MapGrid - chunks: - 1,0: - ind: 1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: [] - - type: GridAtmosphere - version: 2 - data: - tiles: - 5,2: - 0: 512 - 1: 49152 - 5,3: - 0: 32 - 1: 12 - 6,2: - 1: 28672 - 6,3: - 1: 97 - uniqueMixes: - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: IFF - flags: HideLabel - - type: RadiationGridResistance - - type: Joint - joints: - docking560810: !type:WeldJoint - bodyB: 20000 - bodyA: 17590 - id: docking560810 - localAnchorB: 27,11.5 - localAnchorA: 28,11.5 - damping: 205.50436 - stiffness: 1844.6031 -- proto: ActionToggleInternals - entities: - - uid: 8054 - components: - - type: Transform - parent: 8053 + parent: 8141 - type: InstantAction - container: 8053 + originalIconColor: '#FFFFFFFF' + container: 8141 - proto: ActionToggleLight entities: - uid: 277 @@ -11975,15 +7738,6 @@ entities: parent: 13414 - type: InstantAction container: 13414 -- proto: ActionToggleSuitPiece - entities: - - uid: 2024 - components: - - type: Transform - parent: 2021 - - type: InstantAction - container: 2021 - entIcon: 2022 - proto: AirAlarm entities: - uid: 23 @@ -12028,6 +7782,12 @@ entities: - 12280 - 14643 - 14640 + - uid: 3557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,38.5 + parent: 2 - uid: 8893 components: - type: Transform @@ -12065,9 +7825,6 @@ entities: - 3347 - 3346 - 3348 - - 3342 - - 3343 - - 3344 - 2773 - 14629 - uid: 11940 @@ -12251,7 +8008,6 @@ entities: - 14296 - 14528 - 14529 - - 3174 - uid: 13264 components: - type: Transform @@ -12446,9 +8202,9 @@ entities: devices: - 14520 - 14521 - - 12342 - - 14524 - - 14523 + - 4633 + - 4614 + - 12994 - 204 - 3830 - 14593 @@ -12513,8 +8269,6 @@ entities: - 14137 - 14532 - 7718 - - 14614 - - 14613 - 3829 - 3828 - 3827 @@ -12530,10 +8284,6 @@ entities: - 14392 - 14533 - 14620 - - 14617 - - 14616 - - 14619 - - 14618 - uid: 14605 components: - type: Transform @@ -12557,8 +8307,6 @@ entities: - 14534 - 14397 - 14394 - - 14619 - - 14618 - 14621 - uid: 14607 components: @@ -12803,7 +8551,6 @@ entities: - type: DeviceList devices: - 14556 - - 13736 - 13737 - 14662 - uid: 14664 @@ -12814,7 +8561,6 @@ entities: parent: 2 - type: DeviceList devices: - - 13613 - 14665 - 13674 - 14662 @@ -12827,39 +8573,10 @@ entities: parent: 2 - type: DeviceList devices: - - 13724 - - 14551 - 13705 - 14668 - 14663 - 14653 - - 14667 - - 14666 - - uid: 14670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,10.5 - parent: 2 - - type: DeviceList - devices: - - 14552 - - 13663 - - 13714 - - 14671 - - 14672 - - uid: 14673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,11.5 - parent: 2 - - type: DeviceList - devices: - - 14553 - - 13720 - - 13716 - - 14674 - uid: 14677 components: - type: Transform @@ -12963,7 +8680,6 @@ entities: parent: 2 - type: DeviceList devices: - - 13337 - 13343 - 13338 - 14698 @@ -13014,12 +8730,6 @@ entities: - type: Transform pos: -23.5,27.5 parent: 2 - - type: DeviceList - devices: - - 13238 - - 13237 - - 13239 - - 14714 - uid: 14708 components: - type: Transform @@ -13030,7 +8740,6 @@ entities: - 13241 - 12283 - 13240 - - 14715 - uid: 14709 components: - type: Transform @@ -13153,8 +8862,6 @@ entities: - type: DeviceList devices: - 14713 - - 14714 - - 14715 - 17036 - 15798 - 17038 @@ -13305,9 +9012,6 @@ entities: - 13103 - 13112 - 13111 - - 8195 - - 8197 - - 8196 - 13092 - 13091 - 8193 @@ -13327,16 +9031,12 @@ entities: - 13127 - 13129 - 13128 - - 3336 - 3829 - 3828 - 3827 - 13115 - 13119 - 13117 - - 8197 - - 8196 - - 8195 - 204 - 3830 - uid: 14746 @@ -13363,9 +9063,6 @@ entities: - 13138 - 13139 - 2345 - - 3336 - - 13134 - - 13135 - 14748 - 3779 - 3614 @@ -13409,14 +9106,9 @@ entities: - 13132 - 13133 - 4543 - - 3344 - - 3343 - - 3342 - 14753 - 2773 - 14629 - - 13134 - - 13135 - uid: 14754 components: - type: Transform @@ -13493,21 +9185,46 @@ entities: - type: Transform pos: -56.5,41.5 parent: 2 - - uid: 3150 + - uid: 1341 components: - type: Transform - pos: 34.5,-19.5 + pos: 15.5,29.5 parent: 2 - - uid: 3760 + - uid: 1566 components: - type: Transform - pos: -19.5,4.5 + pos: -16.5,28.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + pos: -5.5,21.5 parent: 2 - uid: 9563 components: - type: Transform pos: 27.5,-43.5 parent: 2 + - uid: 10202 + components: + - type: Transform + pos: 12.5,46.5 + parent: 2 + - uid: 10956 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 10957 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 - uid: 10972 components: - type: Transform @@ -13518,6 +9235,11 @@ entities: - type: Transform pos: -14.5,-31.5 parent: 2 + - uid: 15959 + components: + - type: Transform + pos: -25.5,36.5 + parent: 2 - uid: 16462 components: - type: Transform @@ -13534,23 +9256,82 @@ entities: parent: 16675 - type: Physics bodyType: Static - - uid: 17021 + - uid: 17079 components: - type: Transform - pos: -61.5,32.5 + pos: 6.5,29.5 parent: 2 - - uid: 17061 + - uid: 17642 components: - type: Transform - pos: -5.5,36.5 - parent: 2 - - uid: 17079 + pos: 14.5,-1.5 + parent: 17641 + - uid: 17643 components: - type: Transform - pos: 6.5,29.5 - parent: 2 + pos: 15.5,-1.5 + parent: 17641 + - uid: 17644 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 17641 + - uid: 17645 + components: + - type: Transform + pos: 18.5,3.5 + parent: 17641 + - uid: 17646 + components: + - type: Transform + pos: 18.5,4.5 + parent: 17641 + - uid: 17647 + components: + - type: Transform + pos: 19.5,4.5 + parent: 17641 + - type: GasCanister + gasMixture: + volume: 0 + immutable: False + temperature: 0 + moles: + - 393.0592 + - 1478.6512 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17648 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 17641 + - uid: 17649 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 17641 + - uid: 17650 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 17641 - proto: Airlock entities: + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,41.5 + parent: 2 - uid: 144 components: - type: Transform @@ -13561,48 +9342,49 @@ entities: - type: Transform pos: -20.5,35.5 parent: 2 - - uid: 359 + - uid: 172 components: - type: Transform - pos: 17.5,46.5 + rot: -1.5707963267948966 rad + pos: -39.5,39.5 parent: 2 - - uid: 5034 + - uid: 353 components: - type: Transform - pos: -0.5,38.5 + pos: -26.5,28.5 parent: 2 - - uid: 5189 + - uid: 359 components: - type: Transform - pos: -26.5,26.5 + pos: 17.5,46.5 parent: 2 - - uid: 5192 + - uid: 425 components: - type: Transform - pos: -30.5,26.5 + pos: -26.5,25.5 parent: 2 - - uid: 5237 + - uid: 2557 components: - type: Transform - pos: -26.5,28.5 + rot: -1.5707963267948966 rad + pos: -39.5,43.5 parent: 2 - - uid: 5675 + - uid: 4765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,40.5 + rot: -1.5707963267948966 rad + pos: -30.5,25.5 parent: 2 - - uid: 5677 + - uid: 5034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,41.5 + pos: -0.5,38.5 parent: 2 - - uid: 5678 + - uid: 5675 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,43.5 + pos: -36.5,40.5 parent: 2 - uid: 6971 components: @@ -13638,20 +9420,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-32.5 parent: 2 -- proto: AirlockAssembly - entities: - - uid: 49 - components: - - type: Transform - pos: -39.5,39.5 - parent: 2 -- proto: AirlockAssemblyCommand - entities: - - uid: 15023 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 17590 - proto: AirlockAtmosphericsLocked entities: - uid: 426 @@ -13679,12 +9447,6 @@ entities: - type: Transform pos: -19.5,-27.5 parent: 2 - - uid: 17591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,3.5 - parent: 17590 - proto: AirlockBarLocked entities: - uid: 31 @@ -13749,11 +9511,6 @@ entities: - type: Transform pos: 1.5,-4.5 parent: 2 - - uid: 17592 - components: - - type: Transform - pos: 40.5,-14.5 - parent: 17590 - proto: AirlockCargoGlassLocked entities: - uid: 928 @@ -13793,11 +9550,6 @@ entities: - type: Transform pos: 20.5,11.5 parent: 16200 - - uid: 17593 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 17590 - proto: AirlockChapelLocked entities: - uid: 4248 @@ -13832,17 +9584,11 @@ entities: parent: 2 - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 4770 + - uid: 9732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 + pos: -26.5,11.5 parent: 2 - - uid: 17594 - components: - - type: Transform - pos: 40.5,-18.5 - parent: 17590 - proto: AirlockCommandGlassLocked entities: - uid: 1234 @@ -13890,21 +9636,6 @@ entities: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 17595 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 17590 - - uid: 17596 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 17590 - - uid: 17598 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 17590 - proto: AirlockDetectiveLocked entities: - uid: 3778 @@ -13925,16 +9656,6 @@ entities: - type: Transform pos: -16.5,-16.5 parent: 2 - - uid: 17599 - components: - - type: Transform - pos: 38.5,3.5 - parent: 17590 - - uid: 17600 - components: - - type: Transform - pos: 42.5,3.5 - parent: 17590 - proto: AirlockEngineeringLocked entities: - uid: 145 @@ -13942,17 +9663,17 @@ entities: - type: Transform pos: -32.5,-22.5 parent: 2 - - uid: 358 + - uid: 320 components: - type: Transform - pos: -24.5,-28.5 + pos: -24.5,-24.5 parent: 2 - - uid: 362 + - uid: 358 components: - type: Transform - pos: -24.5,-24.5 + pos: -24.5,-28.5 parent: 2 - - uid: 368 + - uid: 362 components: - type: Transform pos: -26.5,-24.5 @@ -14054,26 +9775,6 @@ entities: - type: Transform pos: 24.5,9.5 parent: 16200 - - uid: 17601 - components: - - type: Transform - pos: 43.5,-18.5 - parent: 17590 - - uid: 17602 - components: - - type: Transform - pos: 41.5,-19.5 - parent: 17590 - - uid: 17603 - components: - - type: Transform - pos: 14.5,-4.5 - parent: 17590 - - uid: 17604 - components: - - type: Transform - pos: 41.5,-2.5 - parent: 17590 - proto: AirlockEVALocked entities: - uid: 50 @@ -14390,6 +10091,16 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-19.5 parent: 2 + - uid: 760 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 2 + - uid: 15543 + components: + - type: Transform + pos: 60.5,-7.5 + parent: 2 - uid: 16205 components: - type: Transform @@ -14496,38 +10207,100 @@ entities: parent: 2 - proto: AirlockExternalLocked entities: - - uid: 17605 + - uid: 17651 components: - type: Transform - pos: 34.5,19.5 - parent: 17590 - - uid: 17606 + pos: -1.5,-2.5 + parent: 17641 + - uid: 17652 components: - type: Transform - pos: 31.5,17.5 - parent: 17590 - - uid: 17607 + pos: 3.5,2.5 + parent: 17641 + - uid: 17653 components: - type: Transform - pos: 35.5,11.5 - parent: 17590 - - uid: 17608 + pos: 16.5,-10.5 + parent: 17641 + - uid: 17654 components: - type: Transform - pos: 32.5,19.5 - parent: 17590 - - uid: 17609 + pos: 8.5,10.5 + parent: 17641 + - uid: 17655 components: - type: Transform - pos: 35.5,17.5 - parent: 17590 - - uid: 17610 + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 17641 + - uid: 17656 components: - type: Transform - pos: 31.5,11.5 - parent: 17590 + pos: 23.5,8.5 + parent: 17641 + - uid: 17657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 17641 + - uid: 17658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 17641 + - uid: 17659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 17641 + - uid: 17660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 17641 + - uid: 17661 + components: + - type: Transform + pos: 6.5,12.5 + parent: 17641 + - uid: 17662 + components: + - type: Transform + pos: 5.5,4.5 + parent: 17641 + - uid: 17663 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 17641 + - uid: 17664 + components: + - type: Transform + pos: 29.5,6.5 + parent: 17641 + - uid: 17665 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 17641 - proto: AirlockExternalShuttleLocked entities: + - uid: 5226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,34.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,36.5 + parent: 2 - uid: 16207 components: - type: Transform @@ -14558,48 +10331,6 @@ entities: DockStatus: True - type: Door changeAirtight: False - - uid: 17611 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,22.5 - parent: 17590 - - uid: 17613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,11.5 - parent: 17590 - - type: Docking - dockJointId: docking560810 - dockedWith: 20027 - - type: DeviceLinkSource - lastSignals: - DoorStatus: False - DockStatus: True - - type: Door - changeAirtight: False - - uid: 17615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,17.5 - parent: 17590 - - uid: 20027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,11.5 - parent: 20000 - - type: Docking - dockJointId: docking560810 - dockedWith: 17613 - - type: DeviceLinkSource - lastSignals: - DoorStatus: False - DockStatus: True - - type: Door - changeAirtight: False - proto: AirlockFreezer entities: - uid: 3894 @@ -14869,66 +10600,6 @@ entities: - type: Transform pos: -28.5,31.5 parent: 2 - - uid: 17617 - components: - - type: Transform - pos: 33.5,7.5 - parent: 17590 - - uid: 17618 - components: - - type: Transform - pos: 33.5,-2.5 - parent: 17590 - - uid: 17619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 - parent: 17590 - - uid: 17620 - components: - - type: Transform - pos: 32.5,7.5 - parent: 17590 - - uid: 17621 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 17590 - - uid: 17622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,4.5 - parent: 17590 - - uid: 17623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,4.5 - parent: 17590 - - uid: 17624 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 17590 - - uid: 17626 - components: - - type: Transform - pos: 34.5,7.5 - parent: 17590 - - uid: 19528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-11.5 - parent: 17590 - - uid: 19529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 17590 - proto: AirlockGlassShuttle entities: - uid: 6638 @@ -15079,14 +10750,6 @@ entities: - type: Transform pos: -11.5,49.5 parent: 2 -- proto: AirlockMaintChiefMedicalOfficerLocked - entities: - - uid: 4427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,8.5 - parent: 2 - proto: AirlockMaintDetectiveLocked entities: - uid: 12149 @@ -15131,6 +10794,17 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,12.5 parent: 2 + - uid: 267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,32.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 - uid: 967 components: - type: Transform @@ -15255,11 +10929,23 @@ entities: - type: Transform pos: -70.5,31.5 parent: 2 + - uid: 8083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 - uid: 8091 components: - type: Transform pos: 16.5,30.5 parent: 2 + - uid: 8649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,6.5 + parent: 2 - uid: 11604 components: - type: Transform @@ -15273,22 +10959,16 @@ entities: parent: 2 - proto: AirlockMaintMedLocked entities: - - uid: 4425 + - uid: 1965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,9.5 + pos: -13.5,28.5 parent: 2 - - uid: 4461 + - uid: 1972 components: - type: Transform pos: -7.5,25.5 parent: 2 - - uid: 13069 - components: - - type: Transform - pos: -13.5,27.5 - parent: 2 - proto: AirlockMaintRnDLocked entities: - uid: 3686 @@ -15296,8 +10976,33 @@ entities: - type: Transform pos: -19.5,2.5 parent: 2 +- proto: AirlockMaintSalvageLocked + entities: + - uid: 3573 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 4289 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 - proto: AirlockMaintServiceLocked entities: + - uid: 3239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,37.5 + parent: 2 - uid: 5015 components: - type: Transform @@ -15347,6 +11052,12 @@ entities: parent: 16200 - proto: AirlockMedicalLocked entities: + - uid: 1705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,14.5 + parent: 2 - uid: 4389 components: - type: Transform @@ -15382,37 +11093,32 @@ entities: - type: Transform pos: -21.5,17.5 parent: 2 - - uid: 4773 + - uid: 4760 components: - type: Transform - pos: -21.5,13.5 + rot: -1.5707963267948966 rad + pos: -19.5,11.5 parent: 2 - - uid: 4791 + - uid: 4763 components: - type: Transform - pos: -26.5,12.5 + pos: -15.5,9.5 parent: 2 - uid: 4841 components: - type: Transform pos: -28.5,13.5 parent: 2 - - uid: 17627 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 17590 - - uid: 17628 + - uid: 7047 components: - type: Transform - pos: 24.5,-12.5 - parent: 17590 - - uid: 17629 + pos: -18.5,21.5 + parent: 2 + - uid: 17666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 17590 + pos: 11.5,2.5 + parent: 17641 - proto: AirlockQuartermasterLocked entities: - uid: 2420 @@ -15421,6 +11127,12 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-3.5 parent: 2 + - uid: 20213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-4.5 + parent: 2 - proto: AirlockResearchDirectorLocked entities: - uid: 2381 @@ -15497,35 +11209,11 @@ entities: parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 78 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-21.5 - parent: 2 - uid: 971 components: - type: Transform pos: -32.5,31.5 parent: 2 - - uid: 1232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 2 - - uid: 1965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 2 - - uid: 1972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-21.5 - parent: 2 - uid: 4191 components: - type: Transform @@ -15541,15 +11229,25 @@ entities: - type: Transform pos: 50.5,-13.5 parent: 2 - - uid: 13995 + - uid: 12972 components: - type: Transform - pos: 28.5,-26.5 + rot: 1.5707963267948966 rad + pos: 25.5,-24.5 parent: 2 - - uid: 13996 +- proto: AirlockServiceGlassLocked + entities: + - uid: 5806 components: - type: Transform - pos: 29.5,-26.5 + rot: -1.5707963267948966 rad + pos: -63.5,31.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,31.5 parent: 2 - proto: AirlockServiceLocked entities: @@ -15558,36 +11256,11 @@ entities: - type: Transform pos: 13.5,39.5 parent: 2 - - uid: 7024 - components: - - type: Transform - pos: -60.5,37.5 - parent: 2 - uid: 7643 components: - type: Transform pos: 14.5,22.5 parent: 2 -- proto: AirlockShuttleAssembly - entities: - - uid: 15491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,11.5 - parent: 17590 - - uid: 15492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 17590 - - uid: 19915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,22.5 - parent: 17590 - proto: AirlockSyndicate entities: - uid: 16686 @@ -15636,10 +11309,15 @@ entities: parent: 2 - proto: AirSensor entities: - - uid: 811 + - uid: 778 components: - type: Transform - pos: -32.5,13.5 + pos: -24.5,12.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: -24.5,25.5 parent: 2 - uid: 2941 components: @@ -15662,6 +11340,14 @@ entities: - type: DeviceNetwork deviceLists: - 14751 + - uid: 4614 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14587 - uid: 7813 components: - type: Transform @@ -15670,6 +11356,11 @@ entities: - type: DeviceNetwork deviceLists: - 14754 + - uid: 8712 + components: + - type: Transform + pos: -32.5,12.5 + parent: 2 - uid: 12005 components: - type: Transform @@ -15826,14 +11517,6 @@ entities: - type: DeviceNetwork deviceLists: - 11916 - - uid: 12342 - components: - - type: Transform - pos: 33.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14587 - uid: 13080 components: - type: Transform @@ -16063,14 +11746,6 @@ entities: - type: DeviceNetwork deviceLists: - 14706 - - uid: 13237 - components: - - type: Transform - pos: -24.5,26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14707 - uid: 13265 components: - type: Transform @@ -16445,30 +12120,6 @@ entities: - type: DeviceNetwork deviceLists: - 14655 - - uid: 14551 - components: - - type: Transform - pos: -20.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14669 - - uid: 14552 - components: - - type: Transform - pos: -23.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14670 - - uid: 14553 - components: - - type: Transform - pos: -26.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14673 - uid: 14555 components: - type: Transform @@ -16530,6 +12181,11 @@ entities: - type: DeviceNetwork deviceLists: - 14664 + - uid: 14671 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 - uid: 14686 components: - type: Transform @@ -16554,18 +12210,16 @@ entities: - type: DeviceNetwork deviceLists: - 8893 -- proto: AirTank - entities: - - uid: 17630 + - uid: 15327 components: - type: Transform - pos: 10.5,-12.5 - parent: 17590 - - uid: 17631 + pos: -25.5,9.5 + parent: 2 + - uid: 17181 components: - type: Transform - pos: 10.7,-12.5 - parent: 17590 + pos: -20.5,7.5 + parent: 2 - proto: AltarNanotrasen entities: - uid: 4270 @@ -16597,32 +12251,45 @@ entities: - type: Transform pos: -2.5326047,-22.705544 parent: 2 -- proto: AmmoTechFab +- proto: AmeShielding entities: - - uid: 16835 + - uid: 17667 components: - type: Transform - pos: 26.5,19.5 - parent: 16200 -- proto: AnomalyCoreFleshInert - entities: - - uid: 6404 + rot: 1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 17641 + - uid: 17668 components: - type: Transform - pos: 27.5,11.5 - parent: 2 - - uid: 19972 + rot: 1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 17641 + - uid: 17669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-9.5 + parent: 17641 + - uid: 17670 components: - type: Transform - pos: 23.915527,17.48413 - parent: 19951 -- proto: AnomalyCoreIceInert + rot: 1.5707963267948966 rad + pos: 26.5,-7.5 + parent: 17641 + - uid: 17671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 17641 +- proto: AmmoTechFab entities: - - uid: 6549 + - uid: 16835 components: - type: Transform - pos: 19.225342,43.277794 - parent: 2 + pos: 26.5,19.5 + parent: 16200 - proto: AnomalyLocatorEmpty entities: - uid: 2600 @@ -16630,12 +12297,6 @@ entities: - type: Transform pos: -15.737774,-5.401998 parent: 2 - - uid: 6410 - components: - - type: Transform - rot: 0.5934119456780721 rad - pos: 26.4,13 - parent: 2 - proto: AnomalyScanner entities: - uid: 1067 @@ -16645,20 +12306,15 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2598 - components: - - type: Transform - pos: -15.206524,-5.386373 - parent: 2 - uid: 2602 components: - type: Transform pos: -14.644024,-5.245748 parent: 2 - - uid: 6408 + - uid: 3886 components: - type: Transform - pos: 27.104565,13.125731 + pos: -14.4184265,-5.242597 parent: 2 - proto: AnomalyVesselCircuitboard entities: @@ -16831,12 +12487,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,15.5 parent: 2 - - uid: 8889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,9.5 - parent: 2 - uid: 8890 components: - type: Transform @@ -17075,63 +12725,40 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 16675 - - uid: 17632 + - uid: 17672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-17.5 - parent: 17590 - - uid: 17633 + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 17641 + - uid: 17673 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-10.5 - parent: 17590 - - uid: 17634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-11.5 - parent: 17590 - - uid: 17635 + pos: -0.5,-2.5 + parent: 17641 + - uid: 17674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 17590 - - uid: 17636 + pos: 38.5,-1.5 + parent: 17641 + - uid: 17675 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-10.5 - parent: 17590 - - uid: 17637 - components: - - type: Transform - pos: 37.5,-2.5 - parent: 17590 - - uid: 19536 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 17590 - - uid: 19883 - components: - - type: Transform - pos: 41.5,17.5 - parent: 19854 - - uid: 19960 + pos: 19.5,14.5 + parent: 17641 + - uid: 17676 components: - type: Transform - pos: 25.5,17.5 - parent: 19951 -- proto: APCConstructed - entities: - - uid: 20125 + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 17641 + - uid: 17677 components: - type: Transform - pos: 25.5,12.5 - parent: 20000 + pos: 13.5,5.5 + parent: 17641 - proto: APCElectronics entities: - uid: 2018 @@ -17139,32 +12766,11 @@ entities: - type: Transform pos: 1.0675329,-18.217758 parent: 2 -- proto: APCHyperCapacity - entities: - - uid: 17638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-12.5 - parent: 17590 - - uid: 17640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-2.5 - parent: 17590 - - uid: 17641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 17590 - - uid: 17642 + - uid: 11610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,2.5 - parent: 17590 + pos: -2.6124134,-23.436663 + parent: 2 - proto: ArrivalsShuttleTimer entities: - uid: 5563 @@ -17212,62 +12818,66 @@ entities: - type: Transform pos: -25.513699,-12.365429 parent: 2 -- proto: ArtistCircuitBoard - entities: - - uid: 15769 - components: - - type: Transform - parent: 15765 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Ash +- proto: ArtifactFragment1 entities: - - uid: 1654 + - uid: 2608 components: - type: Transform - pos: 53.408012,-7.727333 + pos: -26.64555,-12.914387 parent: 2 - - uid: 1684 + - uid: 2671 components: - type: Transform - pos: 53.189262,-8.055458 + pos: -26.567425,-12.914387 parent: 2 - - uid: 2988 + - uid: 3581 components: - type: Transform - pos: -12.501478,3.318079 + pos: -26.52055,-12.664387 parent: 2 - - uid: 15680 + - uid: 3626 components: - type: Transform - pos: 53.548637,-8.321083 + pos: -26.6768,-12.633137 parent: 2 - - uid: 15793 +- proto: ArtistCircuitBoard + entities: + - uid: 15769 components: - type: Transform - pos: -12.240043,3.7812834 - parent: 2 + parent: 15765 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Ash + entities: - uid: 17195 components: - type: Transform pos: -32.477085,63.38263 parent: 2 - - uid: 19829 +- proto: Ashtray + entities: + - uid: 3625 components: - type: Transform - pos: 47.275818,-14.527832 - parent: 17590 - - uid: 20011 + pos: 17.702068,11.674468 + parent: 2 + - uid: 9750 components: - type: Transform - pos: 47.578796,-14.228516 - parent: 17590 - - uid: 20020 + pos: -37.720387,39.7445 + parent: 2 + - uid: 9753 + components: + - type: Transform + pos: -37.282887,39.728874 + parent: 2 + - uid: 9755 components: - type: Transform - pos: 47.57892,-14.853516 - parent: 17590 + pos: -37.501637,39.603874 + parent: 2 - proto: AsimovCircuitBoard entities: - uid: 15756 @@ -17285,6 +12895,12 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,2.5 parent: 2 + - uid: 1448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-7.5 + parent: 2 - uid: 2681 components: - type: Transform @@ -17419,28 +13035,6 @@ entities: - type: Transform pos: -55.5,7.5 parent: 2 - - uid: 15703 - components: - - type: Transform - pos: -36.5,-34.5 - parent: 2 - - uid: 15705 - components: - - type: Transform - pos: -34.5,-34.5 - parent: 2 - - uid: 15707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-36.5 - parent: 2 - - uid: 15708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-36.5 - parent: 2 - uid: 15763 components: - type: Transform @@ -17495,42 +13089,12 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-19.5 parent: 2 - - uid: 17643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,22.5 - parent: 17590 - - uid: 17644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,22.5 - parent: 17590 - - uid: 17645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,11.5 - parent: 17590 - - uid: 17646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,11.5 - parent: 17590 - - uid: 17647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 17590 - - uid: 17648 + - uid: 17219 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,17.5 - parent: 17590 + pos: 54.5,-8.5 + parent: 2 - proto: AtmosFixBlockerMarker entities: - uid: 6552 @@ -17983,136 +13547,6 @@ entities: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 17612 - components: - - type: Transform - pos: 37.5,-13.5 - parent: 17590 - - uid: 17614 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 17590 - - uid: 17616 - components: - - type: Transform - pos: 38.5,-7.5 - parent: 17590 - - uid: 18278 - components: - - type: Transform - pos: 42.5,-8.5 - parent: 17590 - - uid: 18605 - components: - - type: Transform - pos: 33.5,17.5 - parent: 17590 - - uid: 18671 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 17590 - - uid: 18701 - components: - - type: Transform - pos: 22.5,-14.5 - parent: 17590 - - uid: 18819 - components: - - type: Transform - pos: 33.5,11.5 - parent: 17590 - - uid: 18821 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 17590 - - uid: 19271 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 17590 - - uid: 19278 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 17590 - - uid: 19807 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 17590 - - uid: 20059 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 17590 - - uid: 20062 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 17590 - - uid: 20064 - components: - - type: Transform - pos: 22.5,-1.5 - parent: 17590 - - uid: 20079 - components: - - type: Transform - pos: 46.5,-19.5 - parent: 17590 - - uid: 20080 - components: - - type: Transform - pos: 29.5,-1.5 - parent: 17590 - - uid: 20084 - components: - - type: Transform - pos: 39.5,0.5 - parent: 17590 - - uid: 20085 - components: - - type: Transform - pos: 16.5,-7.5 - parent: 17590 - - uid: 20089 - components: - - type: Transform - pos: 46.5,-13.5 - parent: 17590 - - uid: 20090 - components: - - type: Transform - pos: 37.5,-19.5 - parent: 17590 - - uid: 20091 - components: - - type: Transform - pos: 35.5,6.5 - parent: 17590 - - uid: 20092 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 17590 - - uid: 20093 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 17590 - - uid: 20094 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 17590 - - uid: 20095 - components: - - type: Transform - pos: 28.5,-13.5 - parent: 17590 - proto: AtmosFixFreezerMarker entities: - uid: 605 @@ -18275,6 +13709,16 @@ entities: - type: Transform pos: 22.5,21.5 parent: 2 + - uid: 4872 + components: + - type: Transform + pos: 56.5,-12.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 2 - uid: 6034 components: - type: Transform @@ -18315,21 +13759,101 @@ entities: - type: Transform pos: 20.5,22.5 parent: 2 + - uid: 14491 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 2 + - uid: 14494 + components: + - type: Transform + pos: 56.5,-14.5 + parent: 2 + - uid: 15568 + components: + - type: Transform + pos: 56.5,-13.5 + parent: 2 + - uid: 16002 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 2 + - uid: 16004 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 2 + - uid: 16007 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 2 + - uid: 16028 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 2 - uid: 16082 components: - type: Transform pos: -36.5,-14.5 parent: 2 + - uid: 16087 + components: + - type: Transform + pos: 56.5,-16.5 + parent: 2 + - uid: 16088 + components: + - type: Transform + pos: 56.5,-15.5 + parent: 2 + - uid: 16091 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 16092 + components: + - type: Transform + pos: 57.5,-5.5 + parent: 2 + - uid: 16093 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 2 - uid: 16094 components: - type: Transform pos: -35.5,-13.5 parent: 2 + - uid: 16096 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 - uid: 16098 components: - type: Transform pos: -35.5,-14.5 parent: 2 + - uid: 16099 + components: + - type: Transform + pos: 57.5,-8.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 - uid: 16106 components: - type: Transform @@ -18340,6 +13864,16 @@ entities: - type: Transform pos: -34.5,-12.5 parent: 2 + - uid: 16165 + components: + - type: Transform + pos: 57.5,-12.5 + parent: 2 + - uid: 16189 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 - uid: 16465 components: - type: Transform @@ -18360,18 +13894,106 @@ entities: - type: Transform pos: -33.5,-14.5 parent: 2 + - uid: 17008 + components: + - type: Transform + pos: 57.5,-9.5 + parent: 2 + - uid: 17009 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - uid: 17010 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 17011 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 + - uid: 17012 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 17013 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 17016 + components: + - type: Transform + pos: 58.5,-5.5 + parent: 2 + - uid: 17017 + components: + - type: Transform + pos: 58.5,-6.5 + parent: 2 + - uid: 17018 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 2 + - uid: 17019 + components: + - type: Transform + pos: 58.5,-8.5 + parent: 2 + - uid: 17020 + components: + - type: Transform + pos: 58.5,-9.5 + parent: 2 + - uid: 17021 + components: + - type: Transform + pos: 58.5,-10.5 + parent: 2 + - uid: 17023 + components: + - type: Transform + pos: 58.5,-11.5 + parent: 2 + - uid: 17024 + components: + - type: Transform + pos: 58.5,-12.5 + parent: 2 + - uid: 17043 + components: + - type: Transform + pos: 58.5,-13.5 + parent: 2 - uid: 17044 components: - type: Transform pos: -34.5,-14.5 parent: 2 -- proto: AtmosFixInstantPlasmaFireMarker - entities: - - uid: 19711 + - uid: 17046 components: - type: Transform - pos: 46.5,-14.5 - parent: 17590 + pos: 58.5,-14.5 + parent: 2 + - uid: 17047 + components: + - type: Transform + pos: 58.5,-15.5 + parent: 2 + - uid: 17052 + components: + - type: Transform + pos: 58.5,-16.5 + parent: 2 + - uid: 17053 + components: + - type: Transform + pos: 58.5,-17.5 + parent: 2 - proto: AtmosFixNitrogenMarker entities: - uid: 6400 @@ -18416,221 +14038,207 @@ entities: - type: Transform pos: -12.5,-32.5 parent: 2 -- proto: AtmosFixPlasmaMarker +- proto: Autolathe entities: - - uid: 18275 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 17590 - - uid: 18672 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 17590 - - uid: 18674 - components: - - type: Transform - pos: 29.5,3.5 - parent: 17590 - - uid: 18675 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 17590 - - uid: 18697 - components: - - type: Transform - pos: 37.5,-14.5 - parent: 17590 - - uid: 18731 - components: - - type: Transform - pos: 37.5,-18.5 - parent: 17590 - - uid: 18955 + - uid: 434 components: - type: Transform - pos: 8.5,-2.5 - parent: 17590 - - uid: 18957 + pos: 30.5,-2.5 + parent: 2 + - uid: 724 components: - type: Transform - pos: 8.5,-11.5 - parent: 17590 - - uid: 18959 + pos: -13.5,-9.5 + parent: 2 + - uid: 994 components: - type: Transform - pos: 22.5,3.5 - parent: 17590 - - uid: 18961 + pos: -26.5,-38.5 + parent: 2 + - uid: 5711 components: - type: Transform - pos: 38.5,-6.5 - parent: 17590 - - uid: 19716 + pos: -43.5,37.5 + parent: 2 +- proto: BannerEngineering + entities: + - uid: 7763 components: - type: Transform - pos: 46.5,-18.5 - parent: 17590 - - uid: 19768 + pos: -12.5,-20.5 + parent: 2 +- proto: BannerGreen + entities: + - uid: 921 components: - type: Transform - pos: 42.5,-5.5 - parent: 17590 - - uid: 19774 + pos: -22.5,29.5 + parent: 2 +- proto: BannerNanotrasen + entities: + - uid: 180 components: - type: Transform - pos: 20.5,-18.5 - parent: 17590 - - uid: 19775 + pos: 4.5,0.5 + parent: 2 + - uid: 3011 components: - type: Transform - pos: 21.5,-14.5 - parent: 17590 - - uid: 19778 + pos: 5.5,-5.5 + parent: 2 + - uid: 11906 components: - type: Transform - pos: 25.5,-6.5 - parent: 17590 - - uid: 19779 + pos: 5.5,-3.5 + parent: 2 +- proto: BannerRevolution + entities: + - uid: 3338 components: - type: Transform - pos: 16.5,-6.5 - parent: 17590 - - uid: 19780 + pos: -28.5,64.5 + parent: 2 +- proto: BannerSecurity + entities: + - uid: 11893 components: - type: Transform - pos: 33.5,-6.5 - parent: 17590 - - uid: 19781 + pos: 27.5,-25.5 + parent: 2 +- proto: BannerSyndicate + entities: + - uid: 2020 components: - type: Transform - pos: 31.5,-13.5 - parent: 17590 - - uid: 19782 + pos: -67.5,35.5 + parent: 2 +- proto: Barricade + entities: + - uid: 6467 components: - type: Transform - pos: 33.5,-18.5 - parent: 17590 - - uid: 19783 + rot: -1.5707963267948966 rad + pos: -68.5,34.5 + parent: 2 + - uid: 7069 components: - type: Transform - pos: 25.5,-13.5 - parent: 17590 - - uid: 19784 + pos: -28.5,53.5 + parent: 2 + - uid: 7070 components: - type: Transform - pos: 31.5,6.5 - parent: 17590 - - uid: 19785 + pos: -28.5,57.5 + parent: 2 + - uid: 7071 components: - type: Transform - pos: 33.5,14.5 - parent: 17590 - - uid: 19786 + pos: -28.5,58.5 + parent: 2 + - uid: 7076 components: - type: Transform - pos: 39.5,1.5 - parent: 17590 - - uid: 19787 + pos: -28.5,56.5 + parent: 2 + - uid: 12485 components: - type: Transform - pos: 0.5,-4.5 - parent: 17590 - - uid: 19808 + rot: -1.5707963267948966 rad + pos: -69.5,32.5 + parent: 2 + - uid: 15969 components: - type: Transform - pos: 33.5,8.5 - parent: 17590 -- proto: Autolathe + pos: -22.5,4.5 + parent: 2 +- proto: BarricadeBlock entities: - - uid: 434 + - uid: 94 components: - type: Transform - pos: 30.5,-2.5 + rot: -1.5707963267948966 rad + pos: -68.5,34.5 parent: 2 - - uid: 724 + - uid: 12915 components: - type: Transform - pos: -13.5,-9.5 + rot: -1.5707963267948966 rad + pos: -69.5,32.5 parent: 2 - - uid: 994 + - uid: 15606 components: - type: Transform - pos: -26.5,-38.5 + rot: 3.141592653589793 rad + pos: -28.5,58.5 parent: 2 - - uid: 5711 + - uid: 15703 components: - type: Transform - pos: -43.5,37.5 + rot: 3.141592653589793 rad + pos: -28.5,56.5 parent: 2 -- proto: BalloonNT - entities: - - uid: 954 + - uid: 15708 components: - type: Transform - pos: -8.522133,39.56318 + pos: -28.5,54.5 parent: 2 - - uid: 974 + - uid: 20242 components: - type: Transform - pos: -14.428383,39.547554 + rot: 1.5707963267948966 rad + pos: -22.5,4.5 parent: 2 -- proto: BannerEngineering +- proto: BarricadeDirectional entities: - - uid: 7763 + - uid: 2301 components: - type: Transform - pos: -12.5,-20.5 + rot: 3.141592653589793 rad + pos: -68.5,33.5 parent: 2 -- proto: BannerNanotrasen - entities: - - uid: 180 + - uid: 8642 components: - type: Transform - pos: 4.5,0.5 + pos: -28.5,57.5 parent: 2 - - uid: 3011 + - uid: 8645 components: - type: Transform - pos: 5.5,-5.5 + pos: -28.5,58.5 parent: 2 - - uid: 4274 + - uid: 13067 components: - type: Transform - pos: -8.5,36.5 + rot: 3.141592653589793 rad + pos: -28.5,58.5 parent: 2 - - uid: 4291 + - uid: 15705 components: - type: Transform - pos: -14.5,36.5 + rot: 3.141592653589793 rad + pos: -28.5,55.5 parent: 2 - - uid: 4848 + - uid: 15707 components: - type: Transform - pos: 5.5,-2.5 + pos: -28.5,59.5 parent: 2 -- proto: BannerRevolution - entities: - - uid: 3338 + - uid: 15946 components: - type: Transform - pos: -28.5,64.5 + pos: -28.5,54.5 parent: 2 -- proto: BannerSecurity - entities: - - uid: 3183 + - uid: 20240 components: - type: Transform - pos: 26.5,-24.5 + rot: 1.5707963267948966 rad + pos: -23.5,4.5 parent: 2 -- proto: BannerSyndicate - entities: - - uid: 7000 + - uid: 20241 components: - type: Transform - pos: -68.5,37.5 + rot: 1.5707963267948966 rad + pos: -22.5,4.5 parent: 2 - proto: BarSign entities: @@ -18640,6 +14248,13 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,19.5 parent: 2 +- proto: BarSignTheOuterSpess + entities: + - uid: 8010 + components: + - type: Transform + pos: -45.5,50.5 + parent: 2 - proto: BaseBallBat entities: - uid: 8052 @@ -18653,48 +14268,30 @@ entities: - Contraband - proto: BaseComputer entities: - - uid: 20130 + - uid: 17678 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,11.5 - parent: 20000 -- proto: BaseSecretDoorAssembly - entities: - - uid: 6656 + pos: 16.5,10.5 + parent: 17641 + - uid: 17679 components: - type: Transform - pos: -68.5,34.5 - parent: 2 -- proto: BaseUplinkRadio - entities: - - uid: 19887 + rot: 3.141592653589793 rad + pos: 36.5,-5.5 + parent: 17641 + - uid: 17680 components: - type: Transform - parent: 19884 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: 1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 17641 - proto: BeachBall entities: - - uid: 2020 - components: - - type: Transform - parent: 2019 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2042 - components: - - type: Transform - parent: 2036 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7051 + - uid: 3329 components: - type: Transform - pos: -28.291378,7.2377605 + pos: -29.819992,7.5238113 parent: 2 - proto: Beaker entities: @@ -18715,11 +14312,21 @@ entities: - type: Transform pos: -22.5,-1.5 parent: 2 + - uid: 976 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 - uid: 1026 components: - type: Transform pos: -26.5,18.5 parent: 2 + - uid: 1125 + components: + - type: Transform + pos: -22.5,25.5 + parent: 2 - uid: 1630 components: - type: Transform @@ -18735,15 +14342,15 @@ entities: - type: Transform pos: 40.5,-15.5 parent: 2 - - uid: 2534 + - uid: 2546 components: - type: Transform - pos: 40.5,-4.5 + pos: -13.5,-17.5 parent: 2 - - uid: 2546 + - uid: 2810 components: - type: Transform - pos: -13.5,-17.5 + pos: -66.5,36.5 parent: 2 - uid: 3047 components: @@ -18780,26 +14387,11 @@ entities: - type: Transform pos: 40.5,-24.5 parent: 2 - - uid: 3861 - components: - - type: Transform - pos: -22.5,29.5 - parent: 2 - - uid: 5247 - components: - - type: Transform - pos: -34.5,26.5 - parent: 2 - uid: 5250 components: - type: Transform pos: -22.5,28.5 parent: 2 - - uid: 5788 - components: - - type: Transform - pos: -22.5,30.5 - parent: 2 - uid: 6033 components: - type: Transform @@ -18815,44 +14407,46 @@ entities: - type: Transform pos: -22.5,62.5 parent: 2 - - uid: 7042 + - uid: 7260 components: - type: Transform - pos: -23.5,5.5 + pos: 51.5,-10.5 parent: 2 - - uid: 13383 + - uid: 7261 components: - type: Transform - pos: 21.5,46.5 + pos: 53.5,-10.5 parent: 2 - - uid: 16096 + - uid: 7263 components: - type: Transform - pos: -1.5,-0.5 + pos: 52.5,-10.5 parent: 2 - - uid: 17650 + - uid: 13383 components: - type: Transform - pos: 39.5,-17.5 - parent: 17590 - - uid: 17651 + pos: 21.5,46.5 + parent: 2 + - uid: 13702 components: - type: Transform - anchored: False - pos: 47.5,-17.5 - parent: 17590 - - type: Physics - bodyType: Dynamic - - uid: 17652 + pos: -23.5,9.5 + parent: 2 + - uid: 17681 components: - type: Transform - pos: 37.5,-12.5 - parent: 17590 - - uid: 20021 + pos: 33.5,2.5 + parent: 17641 + - uid: 17682 components: - type: Transform - pos: 47.5,-12.5 - parent: 17590 + pos: 29.5,2.5 + parent: 17641 + - uid: 20206 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 - proto: BedsheetCaptain entities: - uid: 480 @@ -18860,12 +14454,6 @@ entities: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 17653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-12.5 - parent: 17590 - proto: BedsheetCE entities: - uid: 286 @@ -18873,36 +14461,28 @@ entities: - type: Transform pos: -13.5,-17.5 parent: 2 - - uid: 17654 - components: - - type: Transform - pos: 47.5,-17.5 - parent: 17590 -- proto: BedsheetCentcom +- proto: BedsheetClown entities: - - uid: 18868 + - uid: 4766 components: - - type: MetaData - name: одеяло SLMG - type: Transform - pos: 47.5,-12.5 - parent: 17590 -- proto: BedsheetClown + pos: -23.5,6.5 + parent: 2 +- proto: BedsheetCMO entities: - - uid: 7043 + - uid: 13716 components: - type: Transform - pos: -23.5,5.5 + pos: -23.5,9.5 parent: 2 -- proto: BedsheetCMO +- proto: BedsheetGreen entities: - - uid: 4894 + - uid: 404 components: - type: Transform - parent: 4893 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: 1.5707963267948966 rad + pos: -22.5,28.5 + parent: 2 - proto: BedsheetHOP entities: - uid: 2691 @@ -18926,56 +14506,31 @@ entities: parent: 2 - proto: BedsheetMedical entities: - - uid: 4754 - components: - - type: Transform - pos: -17.5,11.5 - parent: 2 - - uid: 4756 - components: - - type: Transform - pos: -15.5,10.5 - parent: 2 - - uid: 4757 + - uid: 89 components: - type: Transform - pos: -13.5,10.5 + pos: -14.5,10.5 parent: 2 - uid: 4758 components: - type: Transform pos: -11.5,10.5 parent: 2 - - uid: 17656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-19.5 - parent: 17590 - - uid: 17657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-19.5 - parent: 17590 - - uid: 17658 + - uid: 6617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-18.5 - parent: 17590 - - uid: 17659 + pos: -14.5,11.5 + parent: 2 + - uid: 6618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-18.5 - parent: 17590 - - uid: 17660 + pos: -17.5,10.5 + parent: 2 + - uid: 6619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-17.5 - parent: 17590 + pos: -11.5,11.5 + parent: 2 - proto: BedsheetOrange entities: - uid: 1621 @@ -19032,10 +14587,10 @@ entities: parent: 2 - proto: BedsheetQM entities: - - uid: 2536 + - uid: 13701 components: - type: Transform - pos: 40.5,-4.5 + pos: 42.5,-4.5 parent: 2 - proto: BedsheetRD entities: @@ -19044,322 +14599,119 @@ entities: - type: Transform pos: -22.5,-1.5 parent: 2 -- proto: BedsheetSpawner +- proto: BedsheetRed entities: - - uid: 921 + - uid: 7771 components: - type: Transform - pos: -22.5,26.5 + pos: -22.5,25.5 parent: 2 - - uid: 947 +- proto: BedsheetWhite + entities: + - uid: 6701 components: - type: Transform - pos: -22.5,25.5 + pos: -26.5,18.5 parent: 2 - - uid: 3518 +- proto: BenchComfy + entities: + - uid: 2865 components: - type: Transform - pos: -22.5,29.5 + rot: 3.141592653589793 rad + pos: 18.5,11.5 parent: 2 - - uid: 3521 + - uid: 2988 components: - type: Transform - pos: -22.5,30.5 + rot: 3.141592653589793 rad + pos: 19.5,11.5 parent: 2 - - uid: 5314 + - uid: 3099 components: - type: Transform - pos: -34.5,26.5 + rot: 3.141592653589793 rad + pos: 20.5,11.5 parent: 2 - - uid: 5316 +- proto: BikeHorn + entities: + - uid: 1074 components: - type: Transform - pos: -22.5,28.5 - parent: 2 -- proto: BedsheetWhite + parent: 3713 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BiomassReclaimer entities: - - uid: 6701 + - uid: 8111 components: - type: Transform - pos: -26.5,18.5 + pos: -18.5,24.5 parent: 2 -- proto: BenchComfy +- proto: BlastDoor entities: - - uid: 17661 + - uid: 154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,14.5 - parent: 17590 - - uid: 17662 + pos: -1.5,-33.5 + parent: 2 + - uid: 282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,13.5 - parent: 17590 - - uid: 17663 + pos: -9.5,-30.5 + parent: 2 + - uid: 462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 17590 - - uid: 17664 + pos: -12.5,-30.5 + parent: 2 + - uid: 494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-2.5 - parent: 17590 - - uid: 17665 + pos: -17.5,-33.5 + parent: 2 + - uid: 495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,15.5 - parent: 17590 - - uid: 17666 + pos: -18.5,-33.5 + parent: 2 + - uid: 922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 17590 - - uid: 19306 + pos: 52.5,-1.5 + parent: 2 + - uid: 1072 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-10.5 - parent: 17590 - - uid: 19307 + pos: -27.5,-16.5 + parent: 2 + - uid: 1082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-10.5 - parent: 17590 - - uid: 19308 + pos: -2.5,-33.5 + parent: 2 + - uid: 1098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-10.5 - parent: 17590 - - uid: 19309 + pos: -24.5,-41.5 + parent: 2 + - uid: 1132 components: - type: Transform - pos: 20.5,-3.5 - parent: 17590 - - uid: 19310 + pos: 54.5,-7.5 + parent: 2 + - uid: 1134 components: - type: Transform - pos: 22.5,-3.5 - parent: 17590 - - uid: 19311 + pos: 54.5,-8.5 + parent: 2 + - uid: 1567 components: - type: Transform - pos: 21.5,-3.5 - parent: 17590 - - uid: 19324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-6.5 - parent: 17590 - - uid: 19325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 17590 - - uid: 19326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 17590 - - uid: 19327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 17590 - - uid: 19328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 17590 - - uid: 19329 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 17590 - - uid: 19330 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 17590 - - uid: 19331 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 17590 - - uid: 19332 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 17590 - - uid: 19333 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 17590 - - uid: 19360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 17590 - - uid: 19362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-6.5 - parent: 17590 - - uid: 19364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 17590 - - uid: 19366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 17590 - - uid: 19407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 17590 - - uid: 19408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-6.5 - parent: 17590 - - uid: 19409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-5.5 - parent: 17590 - - uid: 19410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-7.5 - parent: 17590 - - uid: 19411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 17590 - - uid: 19412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 17590 - - uid: 19413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 17590 - - uid: 19414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-6.5 - parent: 17590 -- proto: BikeHorn - entities: - - uid: 1074 - components: - - type: Transform - parent: 3713 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BiomassReclaimer - entities: - - uid: 8111 - components: - - type: Transform - pos: -18.5,24.5 - parent: 2 -- proto: BlastDoor - entities: - - uid: 154 - components: - - type: Transform - pos: -1.5,-33.5 - parent: 2 - - uid: 282 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 2 - - uid: 462 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 2 - - uid: 494 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 2 - - uid: 495 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 2 - - uid: 922 - components: - - type: Transform - pos: 52.5,-1.5 - parent: 2 - - uid: 1082 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 2 - - uid: 1098 - components: - - type: Transform - pos: -24.5,-41.5 - parent: 2 - - uid: 1132 - components: - - type: Transform - pos: 54.5,-7.5 - parent: 2 - - uid: 1134 - components: - - type: Transform - pos: 54.5,-8.5 - parent: 2 - - uid: 1567 - components: - - type: Transform - pos: -27.5,-17.5 - parent: 2 - - uid: 1674 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 2 - - uid: 2176 + pos: -27.5,-17.5 + parent: 2 + - uid: 2176 components: - type: Transform pos: -15.5,-33.5 @@ -19437,36 +14789,36 @@ entities: - type: Transform pos: 10.5,26.5 parent: 16675 - - uid: 17923 + - uid: 17683 components: - type: Transform - pos: 10.5,-9.5 - parent: 17590 - - uid: 18172 + pos: 16.5,12.5 + parent: 17641 + - uid: 17684 components: - type: Transform - pos: 8.5,-9.5 - parent: 17590 - - uid: 19759 + pos: 18.5,12.5 + parent: 17641 + - uid: 17685 components: - type: Transform - pos: 9.5,-9.5 - parent: 17590 - - uid: 19760 + pos: 17.5,12.5 + parent: 17641 + - uid: 17686 components: - type: Transform - pos: 10.5,-4.5 - parent: 17590 - - uid: 19761 + pos: 18.5,15.5 + parent: 17641 + - uid: 17687 components: - type: Transform - pos: 8.5,-4.5 - parent: 17590 - - uid: 19762 + pos: 17.5,15.5 + parent: 17641 + - uid: 17688 components: - type: Transform - pos: 9.5,-4.5 - parent: 17590 + pos: 16.5,15.5 + parent: 17641 - proto: BlastDoorExterior1 entities: - uid: 1979 @@ -19546,6 +14898,21 @@ entities: - type: Transform pos: 1.5,-32.5 parent: 2 + - uid: 4295 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 + - uid: 17083 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 2 - proto: BlockGameArcade entities: - uid: 1686 @@ -19578,116 +14945,31 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,45.5 parent: 2 -- proto: BluntRainbow - entities: - - uid: 4831 - components: - - type: Transform - parent: 4814 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4832 - components: - - type: Transform - parent: 4814 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: BodyBagFolded entities: - - uid: 463 - components: - - type: Transform - pos: -20.396534,26.562891 - parent: 2 - - uid: 524 - components: - - type: Transform - pos: -18.6289,26.632776 - parent: 2 - - uid: 1029 - components: - - type: Transform - pos: -19.129477,26.815674 - parent: 2 - - uid: 1036 - components: - - type: Transform - pos: -19.72265,26.210901 - parent: 2 - - uid: 1038 - components: - - type: Transform - pos: -18.369036,26.137182 - parent: 2 - - uid: 1254 + - uid: 4772 components: - type: Transform - pos: -19.1914,26.398401 + pos: -21.589125,8.602683 parent: 2 - - uid: 8118 + - uid: 4786 components: - type: Transform - pos: -19.7539,26.820276 + pos: -21.47975,8.680808 parent: 2 - - uid: 8172 + - uid: 4789 components: - type: Transform - pos: -19.488276,25.757776 + pos: -21.464125,8.790183 parent: 2 -- proto: BookBase +- proto: BookEngineersHandbook entities: - - uid: 17448 + - uid: 4075 components: - - type: MetaData - name: дневник Беты-Ру - type: Transform - pos: -2.599833,-0.43570888 + rot: 1.5707963267948966 rad + pos: -69.362656,35.56819 parent: 2 - - type: Paper - content: > - _____________________________________________________ - Дневник руководителя - Постройки Awesome Station - _____________________________________________________ - - Очень хорошо, кто то очень внимательный нашел мой офис. Кто бы ты не был. Теперь ты тоже повязан. Если ты расскажешь об том что ты тут видишь общественному взору. Будь уверен. Я сделаю все чтобы тебе тоже досталось наказание. Лучше сделай всё чтобы никто об этом месте никогда не узнал (уничтожить улики тебе надо если ты не смышленный). - - 1._____________________________________________________ - - - Доставка моей золотой статуи на станцию задерживается. Очень плохо. Люди начинают думать что на станцию денег почти не потрачено. Нужно доказать обратное. - - Одной из статей на которую мне выделили деньги было земельные работы. Пришлось для отчетности выставить инженеров в рядок, выдать им лопаты и заставить копать вакуум. Позже пригнали экскаватор. Отчет приняли, но вместо стройки станции мы занимались этой клоунадой. - - 2._____________________________________________________ - - - Начались сильные волнения по поводу урезания зарплат и пайков. Для моей безопасности стоит установить пару Туррелей для защиты меня. И если пару главных организаторов резко куда-то пропадёт, то все должно успокоиться. - - 3._____________________________________________________ - - - Странный мужик в шляпе, с очками с носом и усами пришёл ко мне. Он указал мне на плане станции несколько мест. Мне нужно было оставить там пространство и заложить разные предметы и объекты которые мне предоставят. Все должно быть тайно. За это обещал деньги сейчас и ещё больше потом. - - К сожалению предоставленные ящики продали инженеры ради водки. Пришлось замуровать где-то то самих этих инженеров, где то что то что было на складе. - - 4._____________________________________________________ - - - Приходил инспектор из НТ. Его впечатлило качество станции. Очень доволен. Но причиной было то что по его информации с нашей станции шла торговля оружием. Кто то занимался сбытом грузов синдиката. Я не понимаю о чем он. Но теперь вся наша строительная бригада под следствием. - - 5._____________________________________________________ - - - Пропажа десятка работниковс Нечеловеческие условия труда, Мизерная оплата, нарушение прав человека, пытки на рабочем объекте, разтрата бюджета станции на бесполезные вещи. Эти все нарушения мне не инкриминируют. Ко мне в принципе никаких вопросов нету. Работа моя сделана потрясающе. Мне выдадут премию и медаль. Вот вся строительная бригада сейчас под расследованием за торговлю с синдикатом. - - Но это не важно. Уже скоро прибудет первая смена. Я очень надеюсь им понравиться моя работа. - - 6._____________________________________________________ -- proto: BookEngineersHandbook - entities: - uid: 17374 components: - type: Transform @@ -19713,6 +14995,20 @@ entities: rot: 1.5707963267948966 rad pos: 11.569666,40.643253 parent: 2 +- proto: BookRandomStory + entities: + - uid: 20211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.46578,-5.400735 + parent: 2 + - uid: 20212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.55953,-5.32261 + parent: 2 - proto: BookSecurity entities: - uid: 2766 @@ -19834,6 +15130,16 @@ entities: - type: Transform pos: 1.5,39.5 parent: 2 + - uid: 20208 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 20209 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 - proto: BookSpaceLaw entities: - uid: 2765 @@ -19858,6 +15164,11 @@ entities: parent: 2 - proto: BoozeDispenser entities: + - uid: 202 + components: + - type: Transform + pos: -44.5,46.5 + parent: 2 - uid: 3879 components: - type: Transform @@ -19872,17 +15183,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,9.5 parent: 2 - - uid: 7782 - components: - - type: Transform - pos: -44.5,46.5 - parent: 2 - - uid: 17673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 17590 - proto: BorgCharger entities: - uid: 262 @@ -19900,29 +15200,26 @@ entities: - type: Transform pos: -17.5,-23.5 parent: 2 - - uid: 18277 - components: - - type: Transform - pos: 16.5,-15.5 - parent: 17590 -- proto: BorgModuleDiagnosis +- proto: BoxBeaker entities: - - uid: 17668 + - uid: 977 components: - type: Transform - pos: 37.515663,-17.434689 - parent: 17590 -- proto: BoxBeaker - entities: - - uid: 953 + parent: 11762 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5247 components: - type: Transform - pos: 20.608381,26.478817 + pos: -11.310233,18.498312 parent: 2 - - uid: 1032 +- proto: BoxBeanbag + entities: + - uid: 1470 components: - type: Transform - pos: -11.5353985,18.539633 + pos: -10.510994,-23.445034 parent: 2 - proto: BoxBodyBag entities: @@ -19931,11 +15228,58 @@ entities: - type: Transform pos: 27.684319,-34.227585 parent: 2 + - uid: 2141 + components: + - type: Transform + parent: 8112 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2389 + components: + - type: Transform + parent: 8112 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2401 + components: + - type: Transform + parent: 8112 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2445 + components: + - type: Transform + parent: 8113 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2480 + components: + - type: Transform + parent: 8113 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2605 + components: + - type: Transform + parent: 8113 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 2812 components: - type: Transform pos: -13.500486,48.49932 parent: 2 + - uid: 3661 + components: + - type: Transform + pos: -19.412348,20.613787 + parent: 2 - uid: 4673 components: - type: Transform @@ -19946,21 +15290,6 @@ entities: - type: Transform pos: -16.391573,26.678282 parent: 2 - - uid: 4703 - components: - - type: Transform - pos: -19.421066,21.58857 - parent: 2 - - uid: 17669 - components: - - type: Transform - pos: 15.411039,-12.259913 - parent: 17590 - - uid: 17670 - components: - - type: Transform - pos: 15.395414,-12.384913 - parent: 17590 - proto: BoxCandle entities: - uid: 4333 @@ -20007,17 +15336,15 @@ entities: - type: InsideEntityStorage - proto: BoxDarts entities: - - uid: 4851 + - uid: 4699 components: - type: Transform - pos: -33.417843,13.700308 + pos: -46.49533,44.685783 parent: 2 -- proto: BoxDonkSoftBox - entities: - - uid: 2043 + - uid: 4851 components: - type: Transform - pos: -10.466246,-23.444613 + pos: -33.417843,13.700308 parent: 2 - proto: BoxEvidenceMarkers entities: @@ -20033,6 +15360,18 @@ entities: parent: 2 - proto: BoxFolderBase entities: + - uid: 2025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.482822,35.481705 + parent: 2 + - uid: 2026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.592197,35.46608 + parent: 2 - uid: 2746 components: - type: Transform @@ -20083,15 +15422,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 7655 - components: - - type: MetaData - desc: Папка, заполненная стопроцентной ложью. - name: папка новостей - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.388447,36.454865 - parent: 2 - proto: BoxFolderBlue entities: - uid: 1290 @@ -20112,6 +15442,11 @@ entities: rot: 3.141592653589793 rad pos: -22.19994,-5.3461347 parent: 2 + - uid: 2027 + components: + - type: Transform + pos: -69.81801,37.65706 + parent: 2 - uid: 2740 components: - type: Transform @@ -20138,6 +15473,11 @@ entities: rot: -1.5707963267948966 rad pos: -9.471893,47.62618 parent: 2 + - uid: 5660 + components: + - type: Transform + pos: -26.905483,6.570686 + parent: 2 - uid: 5991 components: - type: Transform @@ -20169,50 +15509,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 19714 - components: - - type: MetaData - desc: Дорогостоящая на вид папка, на лицевой стороне которой золотом выложены буквы - SLMG - name: папка SLMG - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.545044,-9.279785 - parent: 17590 - - uid: 19888 - components: - - type: MetaData - desc: Дорогостоящая на вид папка, на лицевой стороне которой золотом выложены буквы - SLMG, а ниже подписано - "СОВЕРШЕННО СЕКРЕТНО" - name: папка SLMG - - type: Transform - parent: 19884 - - type: Storage - storedItems: - 20115: - position: 2,3 - _rotation: South - 20116: - position: 4,3 - _rotation: South - 20117: - position: 3,3 - _rotation: South - 20118: - position: 1,3 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 20115 - - 20116 - - 20117 - - 20118 - - type: Physics - canCollide: False - - type: ActiveUserInterface - - type: InsideEntityStorage - proto: BoxFolderClipboard entities: - uid: 2503 @@ -20236,11 +15532,20 @@ entities: - type: InsideEntityStorage - proto: BoxFolderGreen entities: - - uid: 347 + - uid: 2268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.402382,30.585768 + pos: -62.515675,37.58985 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: -62.546925,37.58985 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: -62.4688,37.6211 parent: 2 - uid: 2670 components: @@ -20261,6 +15566,12 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 3624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.545797,30.583292 + parent: 2 - proto: BoxFolderGrey entities: - uid: 2743 @@ -20291,11 +15602,21 @@ entities: parent: 2 - proto: BoxFolderRed entities: + - uid: 796 + components: + - type: Transform + pos: -69.34926,37.68831 + parent: 2 - uid: 2663 components: - type: Transform pos: 8.638039,-19.13569 parent: 2 + - uid: 2687 + components: + - type: Transform + pos: -69.42738,37.53206 + parent: 2 - uid: 2744 components: - type: Transform @@ -20352,8 +15673,7 @@ entities: - uid: 8153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.426735,-8.442731 + pos: 51.63712,-8.443852 parent: 2 - proto: BoxFolderWhite entities: @@ -20383,11 +15703,10 @@ entities: rot: 1.5707963267948966 rad pos: -31.485176,17.465597 parent: 2 - - uid: 4904 + - uid: 14134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.456121,8.617426 + pos: -27.54309,9.569506 parent: 2 - proto: BoxFolderYellow entities: @@ -20465,6 +15784,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 17174 + components: + - type: Transform + pos: 33.3,-28 + parent: 2 + - uid: 17175 + components: + - type: Transform + pos: 33.7,-28 + parent: 2 - proto: BoxLightbulb entities: - uid: 217 @@ -20587,6 +15916,27 @@ entities: - type: Transform pos: 29.835321,-7.3471107 parent: 2 + - uid: 17690 + components: + - type: Transform + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17691 + components: + - type: Transform + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17692 + components: + - type: Transform + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxPerformer entities: - uid: 4089 @@ -20622,6 +15972,18 @@ entities: - type: Transform pos: -9.646309,20.130157 parent: 2 +- proto: BoxShellTranquilizer + entities: + - uid: 16005 + components: + - type: Transform + pos: 49.357723,-6.5222187 + parent: 2 + - uid: 16006 + components: + - type: Transform + pos: 49.2171,-6.5065937 + parent: 2 - proto: BoxShotgunSlug entities: - uid: 3305 @@ -20668,17 +16030,10 @@ entities: - type: InsideEntityStorage - proto: BoxVial entities: - - uid: 6475 - components: - - type: Transform - pos: -11.5197735,18.805258 - parent: 2 -- proto: BoxZiptie - entities: - - uid: 3182 + - uid: 5192 components: - type: Transform - pos: 31.1702,-24.259764 + pos: -11.653983,18.467062 parent: 2 - proto: BriefcaseBrownFilled entities: @@ -20694,11 +16049,6 @@ entities: - type: Transform pos: 9.595914,-1.3313441 parent: 2 - - uid: 19837 - components: - - type: Transform - pos: 1.5123291,-5.334961 - parent: 17590 - proto: BrigTimer entities: - uid: 3010 @@ -20768,6 +16118,12 @@ entities: parent: 2 - proto: Brutepack entities: + - uid: 4575 + components: + - type: Transform + parent: 3997 + - type: Physics + canCollide: False - uid: 4641 components: - type: Transform @@ -20780,16 +16136,71 @@ entities: parent: 2 - proto: Bucket entities: - - uid: 2445 + - uid: 3638 components: - type: Transform - pos: 1.481576,31.603632 + pos: 10.829161,30.496677 parent: 2 - - uid: 3638 + - uid: 3852 components: - type: Transform - pos: 10.829161,30.496677 + pos: 3.3778164,31.793001 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: 3.2840664,31.871126 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: 0.667418,34.758705 + parent: 2 + - uid: 8143 + components: + - type: Transform + pos: 3.7528164,31.793001 parent: 2 + - uid: 17702 + components: + - type: Transform + pos: 13.182509,25.625145 + parent: 17641 + - uid: 17703 + components: + - type: Transform + pos: 14.229384,25.781395 + parent: 17641 + - uid: 17704 + components: + - type: Transform + pos: 14.151259,25.54702 + parent: 17641 + - uid: 17705 + components: + - type: Transform + pos: 14.354384,25.468895 + parent: 17641 + - uid: 17706 + components: + - type: Transform + pos: 16.229385,25.67202 + parent: 17641 + - uid: 17707 + components: + - type: Transform + pos: 16.760635,25.45327 + parent: 17641 + - uid: 17708 + components: + - type: Transform + pos: 16.604385,25.906395 + parent: 17641 + - uid: 17709 + components: + - type: Transform + pos: 16.448135,25.79702 + parent: 17641 - proto: ButtonFrameCaution entities: - uid: 963 @@ -20797,17 +16208,28 @@ entities: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 1566 + - uid: 7156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-18.5 + rot: -1.5707963267948966 rad + pos: -23.5,-14.5 parent: 2 - - uid: 1673 + - uid: 7159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 2 + - uid: 15971 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - uid: 20176 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-18.5 + pos: -27.5,4.5 parent: 2 - proto: ButtonFrameCautionSecurity entities: @@ -20834,6 +16256,12 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-12.5 parent: 2 + - uid: 4698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,45.5 + parent: 2 - uid: 5982 components: - type: Transform @@ -20847,6 +16275,12 @@ entities: - type: Transform pos: 8.3,-19.45 parent: 2 + - uid: 17418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 2 - uid: 17467 components: - type: Transform @@ -20901,16 +16335,61 @@ entities: - type: Transform pos: -74.5,17.5 parent: 2 - - uid: 785 + - uid: 544 components: - type: Transform - pos: -20.5,10.5 + pos: -10.5,-14.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: -9.5,-14.5 parent: 2 - uid: 1025 components: - type: Transform pos: -56.5,17.5 parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: -8.5,29.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -11.5,29.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: -9.5,29.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: -6.5,29.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 - uid: 1648 components: - type: Transform @@ -20926,6 +16405,11 @@ entities: - type: Transform pos: -34.5,-26.5 parent: 2 + - uid: 1673 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 - uid: 1690 components: - type: Transform @@ -21076,6 +16560,36 @@ entities: - type: Transform pos: -52.5,13.5 parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: 18.5,-42.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 - uid: 2883 components: - type: Transform @@ -21101,6 +16615,11 @@ entities: - type: Transform pos: 43.5,-20.5 parent: 2 + - uid: 3050 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 2 - uid: 3058 components: - type: Transform @@ -21111,6 +16630,31 @@ entities: - type: Transform pos: 52.5,-2.5 parent: 2 + - uid: 3150 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: -7.5,29.5 + parent: 2 - uid: 3440 components: - type: Transform @@ -21136,11 +16680,41 @@ entities: - type: Transform pos: -40.5,20.5 parent: 2 + - uid: 3760 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 - uid: 4102 components: - type: Transform pos: 6.5,-17.5 parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 - uid: 4294 components: - type: Transform @@ -21151,6 +16725,16 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 2 + - uid: 4624 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: -46.5,46.5 + parent: 2 - uid: 5002 components: - type: Transform @@ -21246,11 +16830,21 @@ entities: - type: Transform pos: -76.5,20.5 parent: 2 + - uid: 6549 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 - uid: 6749 components: - type: Transform pos: -20.5,41.5 parent: 2 + - uid: 6756 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 - uid: 6813 components: - type: Transform @@ -21281,6 +16875,26 @@ entities: - type: Transform pos: -76.5,12.5 parent: 2 + - uid: 7029 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 - uid: 7843 components: - type: Transform @@ -21301,6 +16915,16 @@ entities: - type: Transform pos: 13.5,20.5 parent: 2 + - uid: 8235 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 - uid: 8362 components: - type: Transform @@ -23746,11 +19370,6 @@ entities: - type: Transform pos: 24.5,32.5 parent: 2 - - uid: 9414 - components: - - type: Transform - pos: 25.5,32.5 - parent: 2 - uid: 9415 components: - type: Transform @@ -24876,56 +20495,6 @@ entities: - type: Transform pos: -6.5,27.5 parent: 2 - - uid: 9654 - components: - - type: Transform - pos: -7.5,28.5 - parent: 2 - - uid: 9655 - components: - - type: Transform - pos: -9.5,28.5 - parent: 2 - - uid: 9656 - components: - - type: Transform - pos: -10.5,28.5 - parent: 2 - - uid: 9657 - components: - - type: Transform - pos: -8.5,28.5 - parent: 2 - - uid: 9658 - components: - - type: Transform - pos: -11.5,28.5 - parent: 2 - - uid: 9659 - components: - - type: Transform - pos: -13.5,28.5 - parent: 2 - - uid: 9660 - components: - - type: Transform - pos: -14.5,28.5 - parent: 2 - - uid: 9661 - components: - - type: Transform - pos: -12.5,28.5 - parent: 2 - - uid: 9662 - components: - - type: Transform - pos: -16.5,28.5 - parent: 2 - - uid: 9663 - components: - - type: Transform - pos: -15.5,28.5 - parent: 2 - uid: 9664 components: - type: Transform @@ -24951,11 +20520,6 @@ entities: - type: Transform pos: -20.5,12.5 parent: 2 - - uid: 9669 - components: - - type: Transform - pos: -20.5,11.5 - parent: 2 - uid: 9670 components: - type: Transform @@ -25261,126 +20825,21 @@ entities: - type: Transform pos: -26.5,12.5 parent: 2 - - uid: 9731 - components: - - type: Transform - pos: -26.5,10.5 - parent: 2 - - uid: 9732 - components: - - type: Transform - pos: -26.5,11.5 - parent: 2 - - uid: 9733 - components: - - type: Transform - pos: -21.5,9.5 - parent: 2 - - uid: 9734 - components: - - type: Transform - pos: -23.5,9.5 - parent: 2 - - uid: 9735 - components: - - type: Transform - pos: -22.5,9.5 - parent: 2 - - uid: 9736 - components: - - type: Transform - pos: -23.5,10.5 - parent: 2 - - uid: 9737 - components: - - type: Transform - pos: -23.5,8.5 - parent: 2 - - uid: 9738 - components: - - type: Transform - pos: -23.5,7.5 - parent: 2 - - uid: 9739 - components: - - type: Transform - pos: -23.5,11.5 - parent: 2 - - uid: 9744 - components: - - type: Transform - pos: -19.5,7.5 - parent: 2 - - uid: 9745 - components: - - type: Transform - pos: -18.5,7.5 - parent: 2 - - uid: 9746 - components: - - type: Transform - pos: -16.5,7.5 - parent: 2 - - uid: 9747 - components: - - type: Transform - pos: -15.5,7.5 - parent: 2 - - uid: 9748 - components: - - type: Transform - pos: -14.5,7.5 - parent: 2 - - uid: 9749 - components: - - type: Transform - pos: -13.5,7.5 - parent: 2 - - uid: 9750 - components: - - type: Transform - pos: -17.5,7.5 - parent: 2 - uid: 9751 components: - type: Transform pos: -12.5,7.5 parent: 2 - - uid: 9752 - components: - - type: Transform - pos: -20.5,7.5 - parent: 2 - - uid: 9753 - components: - - type: Transform - pos: -20.5,5.5 - parent: 2 - uid: 9754 components: - type: Transform pos: -20.5,4.5 parent: 2 - - uid: 9755 - components: - - type: Transform - pos: -20.5,6.5 - parent: 2 - - uid: 9756 - components: - - type: Transform - pos: -19.5,5.5 - parent: 2 - uid: 9757 components: - type: Transform pos: -17.5,5.5 parent: 2 - - uid: 9758 - components: - - type: Transform - pos: -18.5,5.5 - parent: 2 - uid: 9759 components: - type: Transform @@ -25476,11 +20935,6 @@ entities: - type: Transform pos: -5.5,22.5 parent: 2 - - uid: 9779 - components: - - type: Transform - pos: -5.5,20.5 - parent: 2 - uid: 9780 components: - type: Transform @@ -27866,11 +23320,6 @@ entities: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 10275 - components: - - type: Transform - pos: -10.5,-14.5 - parent: 2 - uid: 10276 components: - type: Transform @@ -30136,6 +25585,26 @@ entities: - type: Transform pos: 6.5,19.5 parent: 2 + - uid: 11841 + components: + - type: Transform + pos: -46.5,48.5 + parent: 2 + - uid: 11844 + components: + - type: Transform + pos: -46.5,47.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + pos: -46.5,49.5 + parent: 2 + - uid: 11846 + components: + - type: Transform + pos: -46.5,50.5 + parent: 2 - uid: 11851 components: - type: Transform @@ -30156,11 +25625,6 @@ entities: - type: Transform pos: -17.5,-27.5 parent: 2 - - uid: 12006 - components: - - type: Transform - pos: -9.5,-14.5 - parent: 2 - uid: 12290 components: - type: Transform @@ -30221,6 +25685,11 @@ entities: - type: Transform pos: 6.5,-29.5 parent: 2 + - uid: 12465 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 - uid: 12647 components: - type: Transform @@ -30301,16 +25770,126 @@ entities: - type: Transform pos: 7.5,-32.5 parent: 2 + - uid: 15593 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 15594 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 - uid: 15600 components: - type: Transform pos: 4.5,-29.5 parent: 2 + - uid: 15601 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 + - uid: 15649 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 15651 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 15652 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 - uid: 15671 components: - type: Transform pos: -37.5,-33.5 parent: 2 + - uid: 15741 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 - uid: 15813 components: - type: Transform @@ -30391,16 +25970,36 @@ entities: - type: Transform pos: -33.5,-39.5 parent: 2 + - uid: 15893 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 15899 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 - uid: 15900 components: - type: Transform pos: -33.5,-26.5 parent: 2 + - uid: 15901 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 - uid: 15904 components: - type: Transform pos: -37.5,-26.5 parent: 2 + - uid: 15972 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 - uid: 15984 components: - type: Transform @@ -30481,11 +26080,6 @@ entities: - type: Transform pos: -42.5,3.5 parent: 2 - - uid: 16189 - components: - - type: Transform - pos: -41.5,1.5 - parent: 2 - uid: 16190 components: - type: Transform @@ -31296,6303 +26890,5739 @@ entities: - type: Transform pos: -27.5,65.5 parent: 2 - - uid: 17430 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 2 - - uid: 17431 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 2 - - uid: 17432 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 17433 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 2 - - uid: 17677 - components: - - type: Transform - pos: 28.5,-0.5 - parent: 17590 - - uid: 17678 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 17590 - - uid: 17679 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 17590 - - uid: 17680 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 17590 - - uid: 17681 - components: - - type: Transform - pos: 44.5,-10.5 - parent: 17590 - - uid: 17682 - components: - - type: Transform - pos: 45.5,-10.5 - parent: 17590 - - uid: 17683 - components: - - type: Transform - pos: 33.5,2.5 - parent: 17590 - - uid: 17684 - components: - - type: Transform - pos: 36.5,-0.5 - parent: 17590 - - uid: 17685 - components: - - type: Transform - pos: 29.5,-0.5 - parent: 17590 - - uid: 17686 - components: - - type: Transform - pos: 31.5,-0.5 - parent: 17590 - - uid: 17687 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 17590 - - uid: 17688 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 17590 - - uid: 17689 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 17590 - - uid: 17690 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 17590 - - uid: 17691 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 17590 - - uid: 17692 - components: - - type: Transform - pos: 45.5,-8.5 - parent: 17590 - - uid: 17693 - components: - - type: Transform - pos: 42.5,-4.5 - parent: 17590 - - uid: 17694 - components: - - type: Transform - pos: 39.5,-4.5 - parent: 17590 - - uid: 17695 - components: - - type: Transform - pos: 41.5,-4.5 - parent: 17590 - - uid: 17696 - components: - - type: Transform - pos: 40.5,-4.5 - parent: 17590 - - uid: 17697 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 17590 - - uid: 17698 - components: - - type: Transform - pos: 38.5,-4.5 - parent: 17590 - - uid: 17699 - components: - - type: Transform - pos: 41.5,-9.5 - parent: 17590 - - uid: 17700 - components: - - type: Transform - pos: 39.5,-9.5 - parent: 17590 - - uid: 17701 - components: - - type: Transform - pos: 38.5,-9.5 - parent: 17590 - - uid: 17702 - components: - - type: Transform - pos: 40.5,-9.5 - parent: 17590 - - uid: 17703 - components: - - type: Transform - pos: 37.5,-8.5 - parent: 17590 - - uid: 17704 - components: - - type: Transform - pos: 37.5,-9.5 - parent: 17590 - - uid: 17705 - components: - - type: Transform - pos: 36.5,-9.5 - parent: 17590 - - uid: 17706 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 17590 - - uid: 17707 - components: - - type: Transform - pos: 31.5,-9.5 - parent: 17590 - - uid: 17708 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 17590 - - uid: 17709 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 17590 - uid: 17710 components: - type: Transform - pos: 30.5,-9.5 - parent: 17590 + pos: 11.5,15.5 + parent: 17641 - uid: 17711 components: - type: Transform - pos: 14.5,-5.5 - parent: 17590 + pos: -0.5,-2.5 + parent: 17641 - uid: 17712 components: - type: Transform - pos: 37.5,17.5 - parent: 17590 + pos: -0.5,-1.5 + parent: 17641 - uid: 17713 components: - type: Transform - pos: 29.5,17.5 - parent: 17590 + pos: -0.5,-0.5 + parent: 17641 - uid: 17714 components: - type: Transform - pos: 29.5,11.5 - parent: 17590 + pos: -1.5,-0.5 + parent: 17641 - uid: 17715 components: - type: Transform - pos: 17.5,-12.5 - parent: 17590 + pos: -2.5,-0.5 + parent: 17641 - uid: 17716 components: - type: Transform - pos: 18.5,-17.5 - parent: 17590 + pos: 0.5,-0.5 + parent: 17641 - uid: 17717 components: - type: Transform - pos: 20.5,-17.5 - parent: 17590 + pos: 1.5,-0.5 + parent: 17641 - uid: 17718 components: - type: Transform - pos: 21.5,-17.5 - parent: 17590 + pos: 2.5,-0.5 + parent: 17641 - uid: 17719 components: - type: Transform - pos: 19.5,-17.5 - parent: 17590 + pos: 1.5,0.5 + parent: 17641 - uid: 17720 components: - type: Transform - pos: 21.5,-19.5 - parent: 17590 + pos: 1.5,2.5 + parent: 17641 - uid: 17721 components: - type: Transform - pos: 21.5,-18.5 - parent: 17590 + pos: 1.5,3.5 + parent: 17641 - uid: 17722 components: - type: Transform - pos: 18.5,-12.5 - parent: 17590 + pos: 1.5,1.5 + parent: 17641 - uid: 17723 components: - type: Transform - pos: 19.5,-12.5 - parent: 17590 + pos: 0.5,2.5 + parent: 17641 - uid: 17724 components: - type: Transform - pos: 21.5,-12.5 - parent: 17590 + pos: -0.5,2.5 + parent: 17641 - uid: 17725 components: - type: Transform - pos: 21.5,-13.5 - parent: 17590 + pos: -1.5,2.5 + parent: 17641 - uid: 17726 components: - type: Transform - pos: 21.5,-14.5 - parent: 17590 + pos: -2.5,2.5 + parent: 17641 - uid: 17727 components: - type: Transform - pos: 21.5,-15.5 - parent: 17590 + pos: -1.5,-2.5 + parent: 17641 - uid: 17728 components: - type: Transform - pos: 21.5,-16.5 - parent: 17590 + pos: -1.5,-4.5 + parent: 17641 - uid: 17729 components: - type: Transform - pos: 10.5,-11.5 - parent: 17590 + pos: -1.5,-3.5 + parent: 17641 - uid: 17730 components: - type: Transform - pos: 8.5,-11.5 - parent: 17590 + pos: -0.5,-4.5 + parent: 17641 - uid: 17731 components: - type: Transform - pos: 13.5,-11.5 - parent: 17590 + pos: 1.5,-4.5 + parent: 17641 - uid: 17732 components: - type: Transform - pos: 9.5,-11.5 - parent: 17590 + pos: 2.5,-4.5 + parent: 17641 - uid: 17733 components: - type: Transform - pos: 11.5,-11.5 - parent: 17590 + pos: 0.5,-4.5 + parent: 17641 - uid: 17734 components: - type: Transform - pos: 12.5,-11.5 - parent: 17590 + pos: 3.5,-4.5 + parent: 17641 - uid: 17735 components: - type: Transform - pos: 7.5,-2.5 - parent: 17590 + pos: 4.5,-4.5 + parent: 17641 - uid: 17736 components: - type: Transform - pos: 12.5,-8.5 - parent: 17590 + pos: 5.5,-4.5 + parent: 17641 - uid: 17737 components: - type: Transform - pos: 12.5,-7.5 - parent: 17590 + pos: 6.5,-4.5 + parent: 17641 - uid: 17738 components: - type: Transform - pos: 10.5,-8.5 - parent: 17590 + pos: 7.5,-4.5 + parent: 17641 - uid: 17739 components: - type: Transform - pos: 2.5,-10.5 - parent: 17590 + pos: 9.5,-4.5 + parent: 17641 - uid: 17740 components: - type: Transform - pos: 2.5,-9.5 - parent: 17590 + pos: 10.5,-4.5 + parent: 17641 - uid: 17741 components: - type: Transform - pos: 2.5,-8.5 - parent: 17590 + pos: 8.5,-4.5 + parent: 17641 - uid: 17742 components: - type: Transform - pos: 1.5,-8.5 - parent: 17590 + pos: 11.5,-4.5 + parent: 17641 - uid: 17743 components: - type: Transform - pos: -0.5,-8.5 - parent: 17590 + pos: 22.5,2.5 + parent: 17641 - uid: 17744 components: - type: Transform - pos: -0.5,-5.5 - parent: 17590 + pos: 20.5,2.5 + parent: 17641 - uid: 17745 components: - type: Transform - pos: -0.5,-6.5 - parent: 17590 + pos: 21.5,2.5 + parent: 17641 - uid: 17746 components: - type: Transform - pos: 5.5,-5.5 - parent: 17590 + pos: 20.5,3.5 + parent: 17641 - uid: 17747 components: - type: Transform - pos: 1.5,-5.5 - parent: 17590 + pos: 19.5,3.5 + parent: 17641 - uid: 17748 components: - type: Transform - pos: 6.5,-3.5 - parent: 17590 + pos: 20.5,1.5 + parent: 17641 - uid: 17749 components: - type: Transform - pos: 5.5,-2.5 - parent: 17590 + pos: 20.5,0.5 + parent: 17641 - uid: 17750 components: - type: Transform - pos: 6.5,-2.5 - parent: 17590 + pos: 20.5,-0.5 + parent: 17641 - uid: 17751 components: - type: Transform - pos: 11.5,-2.5 - parent: 17590 + pos: 20.5,-1.5 + parent: 17641 - uid: 17752 components: - type: Transform - pos: 0.5,-8.5 - parent: 17590 + pos: 20.5,-2.5 + parent: 17641 - uid: 17753 components: - type: Transform - pos: -0.5,-7.5 - parent: 17590 + pos: 20.5,-3.5 + parent: 17641 - uid: 17754 components: - type: Transform - pos: 2.5,-5.5 - parent: 17590 + pos: 20.5,-4.5 + parent: 17641 - uid: 17755 components: - type: Transform - pos: 3.5,-5.5 - parent: 17590 + pos: 18.5,-4.5 + parent: 17641 - uid: 17756 components: - type: Transform - pos: 4.5,-5.5 - parent: 17590 + pos: 19.5,-4.5 + parent: 17641 - uid: 17757 components: - type: Transform - pos: 33.5,1.5 - parent: 17590 + pos: 16.5,-4.5 + parent: 17641 - uid: 17758 components: - type: Transform - pos: 6.5,-5.5 - parent: 17590 + pos: 15.5,-4.5 + parent: 17641 - uid: 17759 components: - type: Transform - pos: 8.5,-5.5 - parent: 17590 + pos: 14.5,-4.5 + parent: 17641 - uid: 17760 components: - type: Transform - pos: 7.5,-5.5 - parent: 17590 + pos: 17.5,-4.5 + parent: 17641 - uid: 17761 components: - type: Transform - pos: 11.5,-5.5 - parent: 17590 + pos: 13.5,-4.5 + parent: 17641 - uid: 17762 components: - type: Transform - pos: 10.5,-5.5 - parent: 17590 + pos: 20.5,-6.5 + parent: 17641 - uid: 17763 components: - type: Transform - pos: 9.5,-5.5 - parent: 17590 + pos: 20.5,-7.5 + parent: 17641 - uid: 17764 components: - type: Transform - pos: 3.5,-8.5 - parent: 17590 + pos: 20.5,-5.5 + parent: 17641 - uid: 17765 components: - type: Transform - pos: 5.5,-8.5 - parent: 17590 + pos: 20.5,-8.5 + parent: 17641 - uid: 17766 components: - type: Transform - pos: 6.5,-8.5 - parent: 17590 + pos: 21.5,-4.5 + parent: 17641 - uid: 17767 components: - type: Transform - pos: 7.5,-8.5 - parent: 17590 + pos: 23.5,-4.5 + parent: 17641 - uid: 17768 components: - type: Transform - pos: 4.5,-8.5 - parent: 17590 + pos: 24.5,-4.5 + parent: 17641 - uid: 17769 components: - type: Transform - pos: 8.5,-8.5 - parent: 17590 + pos: 22.5,-4.5 + parent: 17641 - uid: 17770 components: - type: Transform - pos: 9.5,-8.5 - parent: 17590 + pos: 25.5,-4.5 + parent: 17641 - uid: 17771 components: - type: Transform - pos: 16.5,-12.5 - parent: 17590 + pos: 26.5,-4.5 + parent: 17641 - uid: 17772 components: - type: Transform - pos: 20.5,-19.5 - parent: 17590 + pos: 27.5,-4.5 + parent: 17641 - uid: 17773 components: - type: Transform - pos: 8.5,-2.5 - parent: 17590 + pos: 38.5,-1.5 + parent: 17641 - uid: 17774 components: - type: Transform - pos: 9.5,-2.5 - parent: 17590 + pos: 38.5,-3.5 + parent: 17641 - uid: 17775 components: - type: Transform - pos: 10.5,-2.5 - parent: 17590 + pos: 38.5,-4.5 + parent: 17641 - uid: 17776 components: - type: Transform - pos: 6.5,-10.5 - parent: 17590 + pos: 38.5,-2.5 + parent: 17641 - uid: 17777 components: - type: Transform - pos: 12.5,-2.5 - parent: 17590 + pos: 37.5,-4.5 + parent: 17641 - uid: 17778 components: - type: Transform - pos: 6.5,-11.5 - parent: 17590 + pos: 36.5,-4.5 + parent: 17641 - uid: 17779 components: - type: Transform - pos: 5.5,-11.5 - parent: 17590 + pos: 39.5,-4.5 + parent: 17641 - uid: 17780 components: - type: Transform - pos: 7.5,-11.5 - parent: 17590 + pos: 40.5,-4.5 + parent: 17641 - uid: 17781 components: - type: Transform - pos: 14.5,-3.5 - parent: 17590 + pos: 35.5,-4.5 + parent: 17641 - uid: 17782 components: - type: Transform - pos: 14.5,-2.5 - parent: 17590 + pos: 33.5,-4.5 + parent: 17641 - uid: 17783 components: - type: Transform - pos: 19.5,-19.5 - parent: 17590 + pos: 32.5,-4.5 + parent: 17641 - uid: 17784 components: - type: Transform - pos: 35.5,-0.5 - parent: 17590 + pos: 31.5,-4.5 + parent: 17641 - uid: 17785 components: - type: Transform - pos: 13.5,-2.5 - parent: 17590 + pos: 34.5,-4.5 + parent: 17641 - uid: 17786 components: - type: Transform - pos: 15.5,-5.5 - parent: 17590 + pos: 30.5,-4.5 + parent: 17641 - uid: 17787 components: - type: Transform - pos: 34.5,18.5 - parent: 17590 + pos: 29.5,-4.5 + parent: 17641 - uid: 17788 components: - type: Transform - pos: 33.5,13.5 - parent: 17590 + pos: 25.5,-3.5 + parent: 17641 - uid: 17789 components: - type: Transform - pos: 33.5,10.5 - parent: 17590 + pos: 25.5,-1.5 + parent: 17641 - uid: 17790 components: - type: Transform - pos: 31.5,17.5 - parent: 17590 + pos: 25.5,-0.5 + parent: 17641 - uid: 17791 components: - type: Transform - pos: 33.5,17.5 - parent: 17590 + pos: 25.5,0.5 + parent: 17641 - uid: 17792 components: - type: Transform - pos: 36.5,17.5 - parent: 17590 + pos: 25.5,-2.5 + parent: 17641 - uid: 17793 components: - type: Transform - pos: 32.5,5.5 - parent: 17590 + pos: 25.5,6.5 + parent: 17641 - uid: 17794 components: - type: Transform - pos: 33.5,14.5 - parent: 17590 + pos: 25.5,4.5 + parent: 17641 - uid: 17795 components: - type: Transform - pos: 34.5,20.5 - parent: 17590 + pos: 25.5,3.5 + parent: 17641 - uid: 17796 components: - type: Transform - pos: 34.5,21.5 - parent: 17590 + pos: 25.5,5.5 + parent: 17641 - uid: 17797 components: - type: Transform - pos: 32.5,17.5 - parent: 17590 + pos: 17.5,5.5 + parent: 17641 - uid: 17798 components: - type: Transform - pos: 33.5,16.5 - parent: 17590 + pos: 17.5,7.5 + parent: 17641 - uid: 17799 components: - type: Transform - pos: 45.5,1.5 - parent: 17590 + pos: 17.5,8.5 + parent: 17641 - uid: 17800 components: - type: Transform - pos: 35.5,11.5 - parent: 17590 + pos: 17.5,6.5 + parent: 17641 - uid: 17801 components: - type: Transform - pos: 33.5,12.5 - parent: 17590 + pos: 16.5,8.5 + parent: 17641 - uid: 17802 components: - type: Transform - pos: 32.5,21.5 - parent: 17590 + pos: 14.5,8.5 + parent: 17641 - uid: 17803 components: - type: Transform - pos: 38.5,1.5 - parent: 17590 + pos: 13.5,8.5 + parent: 17641 - uid: 17804 components: - type: Transform - pos: 37.5,1.5 - parent: 17590 + pos: 15.5,8.5 + parent: 17641 - uid: 17805 components: - type: Transform - pos: 46.5,2.5 - parent: 17590 + pos: 12.5,8.5 + parent: 17641 - uid: 17806 components: - type: Transform - pos: 46.5,3.5 - parent: 17590 + pos: 10.5,8.5 + parent: 17641 - uid: 17807 components: - type: Transform - pos: 46.5,4.5 - parent: 17590 + pos: 9.5,8.5 + parent: 17641 - uid: 17808 components: - type: Transform - pos: 46.5,5.5 - parent: 17590 + pos: 8.5,8.5 + parent: 17641 - uid: 17809 components: - type: Transform - pos: 46.5,6.5 - parent: 17590 + pos: 7.5,8.5 + parent: 17641 - uid: 17810 components: - type: Transform - pos: 27.5,-2.5 - parent: 17590 + pos: 6.5,8.5 + parent: 17641 - uid: 17811 components: - type: Transform - pos: 27.5,-1.5 - parent: 17590 + pos: 5.5,8.5 + parent: 17641 - uid: 17812 components: - type: Transform - pos: 27.5,-0.5 - parent: 17590 + pos: 11.5,8.5 + parent: 17641 - uid: 17813 components: - type: Transform - pos: 27.5,3.5 - parent: 17590 + pos: 5.5,7.5 + parent: 17641 - uid: 17814 components: - type: Transform - pos: 26.5,3.5 - parent: 17590 + pos: 5.5,5.5 + parent: 17641 - uid: 17815 components: - type: Transform - pos: 25.5,3.5 - parent: 17590 + pos: 5.5,6.5 + parent: 17641 - uid: 17816 components: - type: Transform - pos: 24.5,3.5 - parent: 17590 + pos: 13.5,5.5 + parent: 17641 - uid: 17817 components: - type: Transform - pos: 23.5,3.5 - parent: 17590 + pos: 13.5,4.5 + parent: 17641 - uid: 17818 components: - type: Transform - pos: 22.5,3.5 - parent: 17590 + pos: 13.5,3.5 + parent: 17641 - uid: 17819 components: - type: Transform - pos: 21.5,3.5 - parent: 17590 + pos: 14.5,3.5 + parent: 17641 - uid: 17820 components: - type: Transform - pos: 34.5,19.5 - parent: 17590 + pos: 14.5,1.5 + parent: 17641 - uid: 17821 components: - type: Transform - pos: 34.5,8.5 - parent: 17590 + pos: 14.5,2.5 + parent: 17641 - uid: 17822 components: - type: Transform - pos: 28.5,3.5 - parent: 17590 + pos: 13.5,1.5 + parent: 17641 - uid: 17823 components: - type: Transform - pos: 29.5,3.5 - parent: 17590 + pos: 12.5,1.5 + parent: 17641 - uid: 17824 components: - type: Transform - pos: 31.5,3.5 - parent: 17590 + pos: 12.5,2.5 + parent: 17641 - uid: 17825 components: - type: Transform - pos: 32.5,3.5 - parent: 17590 + pos: 10.5,2.5 + parent: 17641 - uid: 17826 components: - type: Transform - pos: 33.5,3.5 - parent: 17590 + pos: 9.5,2.5 + parent: 17641 - uid: 17827 components: - type: Transform - pos: 34.5,3.5 - parent: 17590 + pos: 7.5,2.5 + parent: 17641 - uid: 17828 components: - type: Transform - pos: 35.5,3.5 - parent: 17590 + pos: 11.5,2.5 + parent: 17641 - uid: 17829 components: - type: Transform - pos: 36.5,3.5 - parent: 17590 + pos: 6.5,2.5 + parent: 17641 - uid: 17830 components: - type: Transform - pos: 33.5,9.5 - parent: 17590 + pos: 5.5,2.5 + parent: 17641 - uid: 17831 components: - type: Transform - pos: 32.5,9.5 - parent: 17590 + pos: 8.5,2.5 + parent: 17641 - uid: 17832 components: - type: Transform - pos: 23.5,-19.5 - parent: 17590 + pos: 19.5,14.5 + parent: 17641 - uid: 17833 components: - type: Transform - pos: 16.5,-5.5 - parent: 17590 + pos: 17.5,14.5 + parent: 17641 - uid: 17834 components: - type: Transform - pos: 37.5,-2.5 - parent: 17590 + pos: 18.5,14.5 + parent: 17641 - uid: 17835 components: - type: Transform - pos: 37.5,-3.5 - parent: 17590 + pos: 17.5,15.5 + parent: 17641 - uid: 17836 components: - type: Transform - pos: 37.5,-4.5 - parent: 17590 + pos: 17.5,16.5 + parent: 17641 - uid: 17837 components: - type: Transform - pos: 37.5,-5.5 - parent: 17590 + pos: 16.5,16.5 + parent: 17641 - uid: 17838 components: - type: Transform - pos: 37.5,-6.5 - parent: 17590 + pos: 14.5,16.5 + parent: 17641 - uid: 17839 components: - type: Transform - pos: 37.5,-7.5 - parent: 17590 + pos: 13.5,16.5 + parent: 17641 - uid: 17840 components: - type: Transform - pos: 37.5,11.5 - parent: 17590 + pos: 12.5,16.5 + parent: 17641 - uid: 17841 components: - type: Transform - pos: 47.5,-3.5 - parent: 17590 + pos: 15.5,16.5 + parent: 17641 - uid: 17842 components: - type: Transform - pos: 48.5,-3.5 - parent: 17590 + pos: 11.5,16.5 + parent: 17641 - uid: 17843 components: - type: Transform - pos: 32.5,11.5 - parent: 17590 + pos: 11.5,13.5 + parent: 17641 - uid: 17844 components: - type: Transform - pos: 36.5,11.5 - parent: 17590 + pos: 11.5,12.5 + parent: 17641 - uid: 17845 components: - type: Transform - pos: 29.5,-9.5 - parent: 17590 + pos: 11.5,14.5 + parent: 17641 - uid: 17846 components: - type: Transform - pos: 28.5,-9.5 - parent: 17590 + pos: 18.5,16.5 + parent: 17641 - uid: 17847 components: - type: Transform - pos: 27.5,-9.5 - parent: 17590 + pos: 20.5,16.5 + parent: 17641 - uid: 17848 components: - type: Transform - pos: 26.5,-9.5 - parent: 17590 + pos: 21.5,16.5 + parent: 17641 - uid: 17849 components: - type: Transform - pos: 25.5,-9.5 - parent: 17590 + pos: 19.5,16.5 + parent: 17641 - uid: 17850 components: - type: Transform - pos: 24.5,-9.5 - parent: 17590 + pos: 22.5,16.5 + parent: 17641 + - uid: 17851 + components: + - type: Transform + pos: 23.5,16.5 + parent: 17641 - uid: 17852 components: - type: Transform - pos: 22.5,-9.5 - parent: 17590 + pos: 23.5,15.5 + parent: 17641 - uid: 17853 components: - type: Transform - pos: 21.5,-9.5 - parent: 17590 + pos: 23.5,14.5 + parent: 17641 - uid: 17854 components: - type: Transform - pos: 20.5,-9.5 - parent: 17590 + pos: 23.5,13.5 + parent: 17641 - uid: 17855 components: - type: Transform - pos: 19.5,-9.5 - parent: 17590 + pos: 23.5,12.5 + parent: 17641 - uid: 17856 components: - type: Transform - pos: 18.5,-9.5 - parent: 17590 + pos: 17.5,17.5 + parent: 17641 - uid: 17857 components: - type: Transform - pos: 17.5,-9.5 - parent: 17590 + pos: 17.5,19.5 + parent: 17641 - uid: 17858 components: - type: Transform - pos: 16.5,-9.5 - parent: 17590 + pos: 17.5,20.5 + parent: 17641 - uid: 17859 components: - type: Transform - pos: 15.5,-9.5 - parent: 17590 + pos: 17.5,18.5 + parent: 17641 - uid: 17860 components: - type: Transform - pos: 14.5,-9.5 - parent: 17590 + pos: 17.5,21.5 + parent: 17641 - uid: 17861 components: - type: Transform - pos: 33.5,0.5 - parent: 17590 + pos: 17.5,22.5 + parent: 17641 - uid: 17862 components: - type: Transform - pos: 33.5,-0.5 - parent: 17590 + pos: 17.5,23.5 + parent: 17641 - uid: 17863 components: - type: Transform - pos: 45.5,-9.5 - parent: 17590 + pos: 17.5,24.5 + parent: 17641 - uid: 17864 components: - type: Transform - pos: 46.5,-3.5 - parent: 17590 + pos: 18.5,24.5 + parent: 17641 - uid: 17865 components: - type: Transform - pos: 45.5,-3.5 - parent: 17590 + pos: 20.5,24.5 + parent: 17641 - uid: 17866 components: - type: Transform - pos: 48.5,-9.5 - parent: 17590 + pos: 19.5,24.5 + parent: 17641 - uid: 17867 components: - type: Transform - pos: 45.5,-4.5 - parent: 17590 + pos: 21.5,24.5 + parent: 17641 - uid: 17868 components: - type: Transform - pos: 47.5,-10.5 - parent: 17590 + pos: 23.5,24.5 + parent: 17641 - uid: 17869 components: - type: Transform - pos: 46.5,-10.5 - parent: 17590 + pos: 22.5,24.5 + parent: 17641 - uid: 17870 components: - type: Transform - pos: 48.5,-4.5 - parent: 17590 + pos: 18.5,20.5 + parent: 17641 - uid: 17871 components: - type: Transform - pos: 36.5,-4.5 - parent: 17590 + pos: 20.5,20.5 + parent: 17641 - uid: 17872 components: - type: Transform - pos: 35.5,-4.5 - parent: 17590 + pos: 21.5,20.5 + parent: 17641 - uid: 17873 components: - type: Transform - pos: 34.5,-4.5 - parent: 17590 + pos: 19.5,20.5 + parent: 17641 - uid: 17874 components: - type: Transform - pos: 33.5,-4.5 - parent: 17590 + pos: 23.5,20.5 + parent: 17641 - uid: 17875 components: - type: Transform - pos: 32.5,-4.5 - parent: 17590 + pos: 22.5,20.5 + parent: 17641 - uid: 17876 components: - type: Transform - pos: 31.5,-4.5 - parent: 17590 + pos: 16.5,24.5 + parent: 17641 - uid: 17877 components: - type: Transform - pos: 30.5,-4.5 - parent: 17590 + pos: 14.5,24.5 + parent: 17641 - uid: 17878 components: - type: Transform - pos: 29.5,-4.5 - parent: 17590 + pos: 13.5,24.5 + parent: 17641 - uid: 17879 components: - type: Transform - pos: 28.5,-4.5 - parent: 17590 + pos: 12.5,24.5 + parent: 17641 - uid: 17880 components: - type: Transform - pos: 27.5,-4.5 - parent: 17590 + pos: 15.5,24.5 + parent: 17641 - uid: 17881 components: - type: Transform - pos: 26.5,-4.5 - parent: 17590 + pos: 11.5,24.5 + parent: 17641 - uid: 17882 components: - type: Transform - pos: 25.5,-4.5 - parent: 17590 + pos: 16.5,20.5 + parent: 17641 - uid: 17883 components: - type: Transform - pos: 24.5,-4.5 - parent: 17590 + pos: 14.5,20.5 + parent: 17641 - uid: 17884 components: - type: Transform - pos: 23.5,-4.5 - parent: 17590 + pos: 13.5,20.5 + parent: 17641 - uid: 17885 components: - type: Transform - pos: 22.5,-4.5 - parent: 17590 + pos: 15.5,20.5 + parent: 17641 - uid: 17886 components: - type: Transform - pos: 21.5,-4.5 - parent: 17590 + pos: 12.5,20.5 + parent: 17641 - uid: 17887 components: - type: Transform - pos: 20.5,-4.5 - parent: 17590 - - uid: 17888 + pos: 11.5,20.5 + parent: 17641 + - uid: 18604 components: - type: Transform - pos: 19.5,-4.5 - parent: 17590 - - uid: 17889 + pos: 38.5,16.5 + parent: 2 + - uid: 18907 components: - type: Transform - pos: 18.5,-4.5 - parent: 17590 - - uid: 17890 + pos: 38.5,18.5 + parent: 2 + - uid: 19283 components: - type: Transform - pos: 17.5,-4.5 - parent: 17590 - - uid: 17891 + pos: 38.5,17.5 + parent: 2 + - uid: 19285 components: - type: Transform - pos: 16.5,-4.5 - parent: 17590 - - uid: 17892 + pos: 38.5,19.5 + parent: 2 + - uid: 19907 components: - type: Transform - pos: 14.5,-4.5 - parent: 17590 - - uid: 17893 + pos: 36.5,19.5 + parent: 2 + - uid: 19908 components: - type: Transform - pos: 40.5,-12.5 - parent: 17590 - - uid: 17894 + pos: 37.5,19.5 + parent: 2 + - uid: 19909 components: - type: Transform - pos: 40.5,-13.5 - parent: 17590 - - uid: 17895 + pos: 35.5,19.5 + parent: 2 + - uid: 19910 components: - type: Transform - pos: 40.5,-14.5 - parent: 17590 - - uid: 17896 + pos: 35.5,17.5 + parent: 2 + - uid: 19911 components: - type: Transform - pos: 40.5,-15.5 - parent: 17590 - - uid: 17897 + pos: 35.5,16.5 + parent: 2 + - uid: 19912 components: - type: Transform - pos: 40.5,-16.5 - parent: 17590 - - uid: 17898 + pos: 35.5,18.5 + parent: 2 + - uid: 20149 components: - type: Transform - pos: 40.5,-17.5 - parent: 17590 - - uid: 17899 + pos: 39.5,19.5 + parent: 2 + - uid: 20150 components: - type: Transform - pos: 40.5,-18.5 - parent: 17590 - - uid: 17900 + pos: 39.5,20.5 + parent: 2 + - uid: 20175 components: - type: Transform - pos: 39.5,-18.5 - parent: 17590 - - uid: 17901 + pos: -22.5,4.5 + parent: 2 + - uid: 20180 components: - type: Transform - pos: 38.5,-18.5 - parent: 17590 - - uid: 17902 + pos: -24.5,4.5 + parent: 2 + - uid: 20181 components: - type: Transform - pos: 37.5,-18.5 - parent: 17590 - - uid: 17903 + pos: -23.5,4.5 + parent: 2 + - uid: 20182 components: - type: Transform - pos: 36.5,-18.5 - parent: 17590 - - uid: 17904 + pos: -25.5,4.5 + parent: 2 + - uid: 20183 components: - type: Transform - pos: 39.5,-14.5 - parent: 17590 - - uid: 17905 + pos: -26.5,4.5 + parent: 2 + - uid: 20184 components: - type: Transform - pos: 38.5,-14.5 - parent: 17590 - - uid: 17906 + pos: -26.5,5.5 + parent: 2 + - uid: 20185 components: - type: Transform - pos: 37.5,-14.5 - parent: 17590 - - uid: 17907 + pos: -28.5,5.5 + parent: 2 + - uid: 20186 components: - type: Transform - pos: 36.5,-14.5 - parent: 17590 - - uid: 17908 + pos: -27.5,5.5 + parent: 2 + - uid: 20187 components: - type: Transform - pos: 41.5,-14.5 - parent: 17590 - - uid: 17909 + pos: -29.5,5.5 + parent: 2 + - uid: 20188 components: - type: Transform - pos: 42.5,-14.5 - parent: 17590 - - uid: 17910 + pos: -30.5,5.5 + parent: 2 + - uid: 20189 components: - type: Transform - pos: 43.5,-14.5 - parent: 17590 - - uid: 17911 + pos: -30.5,6.5 + parent: 2 + - uid: 20190 components: - type: Transform - pos: 44.5,-14.5 - parent: 17590 - - uid: 17912 + pos: -30.5,7.5 + parent: 2 + - uid: 20191 components: - type: Transform - pos: 45.5,-14.5 - parent: 17590 - - uid: 17913 + pos: -30.5,4.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 34 components: - type: Transform - pos: 46.5,-14.5 - parent: 17590 - - uid: 17914 + pos: -6.5362616,47.765694 + parent: 2 + - uid: 1793 components: - type: Transform - pos: 47.5,-14.5 - parent: 17590 - - uid: 17916 + pos: 0.9590117,-23.480143 + parent: 2 + - uid: 2017 components: - type: Transform - pos: 42.5,-18.5 - parent: 17590 - - uid: 17917 + pos: 0.61839914,-18.39082 + parent: 2 + - uid: 2054 components: - type: Transform - pos: 43.5,-18.5 - parent: 17590 - - uid: 17918 + pos: 1.0076228,-23.237087 + parent: 2 + - uid: 3861 components: - type: Transform - pos: 44.5,-18.5 - parent: 17590 - - uid: 17919 + pos: 0.9729006,-23.362087 + parent: 2 + - uid: 5718 components: - type: Transform - pos: 45.5,-18.5 - parent: 17590 - - uid: 17920 + pos: -45.439762,38.055 + parent: 2 + - uid: 5719 components: - type: Transform - pos: 46.5,-18.5 - parent: 17590 - - uid: 17921 + pos: -45.439762,37.883125 + parent: 2 + - uid: 8064 components: - type: Transform - pos: 47.5,-18.5 - parent: 17590 - - uid: 17922 + pos: 50.431786,-21.32471 + parent: 2 + - uid: 11409 components: - type: Transform - pos: 41.5,-18.5 - parent: 17590 - - uid: 17925 + pos: -6.5206366,47.578194 + parent: 2 + - uid: 17358 components: - type: Transform - pos: 29.5,-13.5 - parent: 17590 - - uid: 17926 + parent: 12408 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcStack1 + entities: + - uid: 12442 components: - type: Transform - pos: 29.5,-14.5 - parent: 17590 - - uid: 17928 + pos: -69.195435,35.493317 + parent: 2 + - type: Stack + count: 4 + - uid: 17190 components: - type: Transform - pos: 29.5,-16.5 - parent: 17590 - - uid: 17929 + rot: -1.5707963267948966 rad + pos: -32.76652,63.53888 + parent: 2 + - uid: 17191 components: - type: Transform - pos: 29.5,-17.5 - parent: 17590 - - uid: 17930 + rot: -1.5707963267948966 rad + pos: -32.79777,63.44513 + parent: 2 +- proto: CableHV + entities: + - uid: 8 components: - type: Transform - pos: 29.5,-18.5 - parent: 17590 - - uid: 17931 + pos: -33.5,-21.5 + parent: 2 + - uid: 26 components: - type: Transform - pos: 29.5,-19.5 - parent: 17590 - - uid: 17932 + pos: -7.5,48.5 + parent: 2 + - uid: 99 components: - type: Transform - pos: 30.5,-13.5 - parent: 17590 - - uid: 17933 + pos: -30.5,-22.5 + parent: 2 + - uid: 229 components: - type: Transform - pos: 31.5,-13.5 - parent: 17590 - - uid: 17934 + pos: 24.5,17.5 + parent: 2 + - uid: 249 components: - type: Transform - pos: 32.5,-13.5 - parent: 17590 - - uid: 17935 + pos: -31.5,-22.5 + parent: 2 + - uid: 279 components: - type: Transform - pos: 33.5,-13.5 - parent: 17590 - - uid: 17936 + pos: 23.5,13.5 + parent: 2 + - uid: 400 components: - type: Transform - pos: 28.5,-13.5 - parent: 17590 - - uid: 17937 + pos: -35.5,-21.5 + parent: 2 + - uid: 552 components: - type: Transform - pos: 27.5,-13.5 - parent: 17590 - - uid: 17938 + pos: -26.5,-24.5 + parent: 2 + - uid: 574 components: - type: Transform - pos: 26.5,-13.5 - parent: 17590 - - uid: 17939 + pos: -26.5,-26.5 + parent: 2 + - uid: 576 components: - type: Transform - pos: 30.5,-18.5 - parent: 17590 - - uid: 17940 + pos: -26.5,-22.5 + parent: 2 + - uid: 578 components: - type: Transform - pos: 31.5,-18.5 - parent: 17590 - - uid: 17941 + pos: -7.5,-18.5 + parent: 2 + - uid: 579 components: - type: Transform - pos: 32.5,-18.5 - parent: 17590 - - uid: 17942 + pos: -7.5,-16.5 + parent: 2 + - uid: 596 components: - type: Transform - pos: 33.5,-18.5 - parent: 17590 - - uid: 17943 + pos: -35.5,-18.5 + parent: 2 + - uid: 597 components: - type: Transform - pos: 28.5,-18.5 - parent: 17590 - - uid: 17944 + pos: -35.5,-17.5 + parent: 2 + - uid: 598 components: - type: Transform - pos: 27.5,-18.5 - parent: 17590 - - uid: 17945 + pos: -37.5,-24.5 + parent: 2 + - uid: 599 components: - type: Transform - pos: 26.5,-18.5 - parent: 17590 - - uid: 17946 + pos: -35.5,-20.5 + parent: 2 + - uid: 617 components: - type: Transform - pos: 31.5,11.5 - parent: 17590 - - uid: 17947 + pos: -24.5,-24.5 + parent: 2 + - uid: 618 components: - type: Transform - pos: 34.5,6.5 - parent: 17590 - - uid: 17948 + pos: -24.5,-23.5 + parent: 2 + - uid: 619 components: - type: Transform - pos: 32.5,20.5 - parent: 17590 - - uid: 17949 + pos: -35.5,-15.5 + parent: 2 + - uid: 620 components: - type: Transform - pos: 32.5,19.5 - parent: 17590 - - uid: 17950 + pos: -35.5,-16.5 + parent: 2 + - uid: 631 components: - type: Transform - pos: 34.5,17.5 - parent: 17590 - - uid: 17951 + pos: -7.5,-17.5 + parent: 2 + - uid: 633 components: - type: Transform - pos: 30.5,11.5 - parent: 17590 - - uid: 17952 + pos: -7.5,-19.5 + parent: 2 + - uid: 635 components: - type: Transform - pos: 33.5,11.5 - parent: 17590 - - uid: 17953 + pos: -7.5,-20.5 + parent: 2 + - uid: 675 components: - type: Transform - pos: 37.5,6.5 - parent: 17590 - - uid: 17954 + pos: -35.5,-29.5 + parent: 2 + - uid: 684 components: - type: Transform - pos: 36.5,6.5 - parent: 17590 - - uid: 17955 + pos: -35.5,-32.5 + parent: 2 + - uid: 686 components: - type: Transform - pos: 30.5,17.5 - parent: 17590 - - uid: 17956 + pos: -35.5,-27.5 + parent: 2 + - uid: 687 components: - type: Transform - pos: 33.5,15.5 - parent: 17590 - - uid: 17957 + pos: -36.5,-33.5 + parent: 2 + - uid: 688 components: - type: Transform - pos: 22.5,-19.5 - parent: 17590 - - uid: 17958 + pos: -23.5,-19.5 + parent: 2 + - uid: 697 components: - type: Transform - pos: 34.5,5.5 - parent: 17590 - - uid: 17959 + pos: -33.5,-22.5 + parent: 2 + - uid: 698 components: - type: Transform - pos: 33.5,5.5 - parent: 17590 - - uid: 17960 + pos: -23.5,-21.5 + parent: 2 + - uid: 699 components: - type: Transform - pos: 30.5,3.5 - parent: 17590 - - uid: 17961 + pos: -24.5,-22.5 + parent: 2 + - uid: 702 components: - type: Transform - pos: 32.5,8.5 - parent: 17590 - - uid: 17962 + pos: -26.5,-25.5 + parent: 2 + - uid: 708 components: - type: Transform - pos: 32.5,6.5 - parent: 17590 - - uid: 17963 + pos: -26.5,-23.5 + parent: 2 + - uid: 713 components: - type: Transform - pos: 15.5,-12.5 - parent: 17590 - - uid: 17964 + pos: -26.5,-28.5 + parent: 2 + - uid: 751 components: - type: Transform - pos: 14.5,-7.5 - parent: 17590 - - uid: 17965 + pos: -36.5,-35.5 + parent: 2 + - uid: 763 components: - type: Transform - pos: 14.5,-8.5 - parent: 17590 - - uid: 17966 + pos: -26.5,-27.5 + parent: 2 + - uid: 830 components: - type: Transform - pos: 14.5,-6.5 - parent: 17590 - - uid: 17968 + pos: -24.5,-26.5 + parent: 2 + - uid: 981 components: - type: Transform - pos: 31.5,9.5 - parent: 17590 - - uid: 17969 + pos: -17.5,4.5 + parent: 2 + - uid: 1081 components: - type: Transform - pos: 34.5,9.5 - parent: 17590 - - uid: 17970 + pos: -32.5,-22.5 + parent: 2 + - uid: 1164 components: - type: Transform - pos: 34.5,7.5 - parent: 17590 - - uid: 17971 + pos: -36.5,-34.5 + parent: 2 + - uid: 1316 components: - type: Transform - pos: 32.5,18.5 - parent: 17590 - - uid: 17972 + pos: -33.5,-24.5 + parent: 2 + - uid: 1319 components: - type: Transform - pos: 34.5,11.5 - parent: 17590 - - uid: 17973 + pos: -26.5,-29.5 + parent: 2 + - uid: 1367 components: - type: Transform - pos: 35.5,17.5 - parent: 17590 - - uid: 17974 + pos: -24.5,-29.5 + parent: 2 + - uid: 1368 components: - type: Transform - pos: 34.5,-0.5 - parent: 17590 - - uid: 17975 + pos: -35.5,-19.5 + parent: 2 + - uid: 1372 components: - type: Transform - pos: 35.5,9.5 - parent: 17590 - - uid: 17976 + pos: -24.5,-30.5 + parent: 2 + - uid: 1376 components: - type: Transform - pos: 32.5,7.5 - parent: 17590 - - uid: 17977 + pos: -35.5,-14.5 + parent: 2 + - uid: 1377 components: - type: Transform - pos: 35.5,6.5 - parent: 17590 - - uid: 17978 + pos: -35.5,-22.5 + parent: 2 + - uid: 1378 components: - type: Transform - pos: 48.5,-10.5 - parent: 17590 - - uid: 17979 + pos: -35.5,-13.5 + parent: 2 + - uid: 1390 components: - type: Transform - pos: 48.5,-8.5 - parent: 17590 - - uid: 17980 + pos: -29.5,-22.5 + parent: 2 + - uid: 1391 components: - type: Transform - pos: 48.5,-5.5 - parent: 17590 - - uid: 17981 + pos: -28.5,-22.5 + parent: 2 + - uid: 1392 components: - type: Transform - pos: 32.5,-0.5 - parent: 17590 - - uid: 17982 + pos: -27.5,-22.5 + parent: 2 + - uid: 1460 components: - type: Transform - pos: 45.5,0.5 - parent: 17590 - - uid: 17983 + pos: -38.5,-18.5 + parent: 2 + - uid: 1461 components: - type: Transform - pos: 45.5,-1.5 - parent: 17590 - - uid: 17984 + pos: -38.5,-17.5 + parent: 2 + - uid: 1462 components: - type: Transform - pos: 45.5,-0.5 - parent: 17590 - - uid: 17985 + pos: -38.5,-16.5 + parent: 2 + - uid: 1465 components: - type: Transform - pos: 49.5,2.5 - parent: 17590 - - uid: 17986 + pos: -38.5,-15.5 + parent: 2 + - uid: 1466 components: - type: Transform - pos: 48.5,2.5 - parent: 17590 - - uid: 17987 + pos: -32.5,-15.5 + parent: 2 + - uid: 1467 components: - type: Transform - pos: 47.5,2.5 - parent: 17590 - - uid: 17988 + pos: -32.5,-18.5 + parent: 2 + - uid: 1468 components: - type: Transform - pos: 46.5,2.5 - parent: 17590 - - uid: 17989 + pos: -32.5,-16.5 + parent: 2 + - uid: 1469 components: - type: Transform - pos: 44.5,2.5 - parent: 17590 - - uid: 17990 + pos: -32.5,-17.5 + parent: 2 + - uid: 1482 components: - type: Transform - pos: 43.5,2.5 - parent: 17590 - - uid: 17991 + pos: -35.5,-12.5 + parent: 2 + - uid: 1483 components: - type: Transform - pos: 41.5,2.5 - parent: 17590 - - uid: 17992 + pos: -35.5,-11.5 + parent: 2 + - uid: 1484 components: - type: Transform - pos: 40.5,2.5 - parent: 17590 - - uid: 17993 + pos: -35.5,-10.5 + parent: 2 + - uid: 1485 components: - type: Transform - pos: 42.5,2.5 - parent: 17590 - - uid: 17994 + pos: -36.5,-10.5 + parent: 2 + - uid: 1486 components: - type: Transform - pos: 45.5,2.5 - parent: 17590 - - uid: 17995 + pos: -37.5,-10.5 + parent: 2 + - uid: 1487 components: - type: Transform - pos: 39.5,2.5 - parent: 17590 - - uid: 17996 + pos: -34.5,-10.5 + parent: 2 + - uid: 1488 components: - type: Transform - pos: 38.5,2.5 - parent: 17590 - - uid: 17997 + pos: -33.5,-10.5 + parent: 2 + - uid: 1489 components: - type: Transform - pos: 20.5,-12.5 - parent: 17590 - - uid: 17998 + pos: -36.5,-13.5 + parent: 2 + - uid: 1490 components: - type: Transform - pos: 14.5,-12.5 - parent: 17590 - - uid: 17999 + pos: -37.5,-13.5 + parent: 2 + - uid: 1491 components: - type: Transform - pos: 17.5,-13.5 - parent: 17590 - - uid: 18000 + pos: -38.5,-13.5 + parent: 2 + - uid: 1492 components: - type: Transform - pos: 17.5,-15.5 - parent: 17590 - - uid: 18001 + pos: -39.5,-13.5 + parent: 2 + - uid: 1493 components: - type: Transform - pos: 17.5,-14.5 - parent: 17590 - - uid: 18002 + pos: -39.5,-12.5 + parent: 2 + - uid: 1494 components: - type: Transform - pos: 16.5,-15.5 - parent: 17590 - - uid: 18003 + pos: -39.5,-14.5 + parent: 2 + - uid: 1495 components: - type: Transform - pos: 14.5,-13.5 - parent: 17590 - - uid: 18004 + pos: -34.5,-13.5 + parent: 2 + - uid: 1496 components: - type: Transform - pos: 22.5,-12.5 - parent: 17590 - - uid: 18005 + pos: -33.5,-13.5 + parent: 2 + - uid: 1497 components: - type: Transform - pos: 23.5,-12.5 - parent: 17590 - - uid: 18006 + pos: -32.5,-13.5 + parent: 2 + - uid: 1498 components: - type: Transform - pos: 22.5,-14.5 - parent: 17590 - - uid: 18007 + pos: -31.5,-13.5 + parent: 2 + - uid: 1499 components: - type: Transform - pos: 23.5,-14.5 - parent: 17590 - - uid: 18008 + pos: -31.5,-12.5 + parent: 2 + - uid: 1500 components: - type: Transform - pos: 11.5,-8.5 - parent: 17590 - - uid: 18009 + pos: -31.5,-14.5 + parent: 2 + - uid: 1524 components: - type: Transform - pos: 12.5,-6.5 - parent: 17590 - - uid: 18010 + pos: -39.5,-10.5 + parent: 2 + - uid: 1525 components: - type: Transform - pos: 12.5,-5.5 - parent: 17590 - - uid: 18011 + pos: -38.5,-10.5 + parent: 2 + - uid: 1526 components: - type: Transform - pos: 45.5,-5.5 - parent: 17590 - - uid: 18012 + pos: -39.5,-11.5 + parent: 2 + - uid: 1527 components: - type: Transform - pos: 45.5,-6.5 - parent: 17590 - - uid: 18013 + pos: -32.5,-10.5 + parent: 2 + - uid: 1528 components: - type: Transform - pos: 45.5,-7.5 - parent: 17590 - - uid: 18447 + pos: -31.5,-10.5 + parent: 2 + - uid: 1529 components: - type: Transform - pos: 32.5,-9.5 - parent: 17590 - - uid: 18457 + pos: -31.5,-11.5 + parent: 2 + - uid: 1581 components: - type: Transform - pos: 29.5,-15.5 - parent: 17590 - - uid: 18555 + pos: -36.5,-15.5 + parent: 2 + - uid: 1582 components: - type: Transform - pos: 22.5,-8.5 - parent: 17590 - - uid: 18604 + pos: -37.5,-15.5 + parent: 2 + - uid: 1583 components: - type: Transform - pos: 38.5,16.5 + pos: -34.5,-15.5 parent: 2 - - uid: 18765 + - uid: 1584 components: - type: Transform - pos: 22.5,-5.5 - parent: 17590 - - uid: 18907 + pos: -33.5,-15.5 + parent: 2 + - uid: 1638 components: - type: Transform - pos: 38.5,18.5 + pos: -38.5,-19.5 parent: 2 - - uid: 19247 + - uid: 1639 components: - type: Transform - pos: 23.5,-9.5 - parent: 17590 - - uid: 19283 + pos: -37.5,-19.5 + parent: 2 + - uid: 1640 components: - type: Transform - pos: 38.5,17.5 + pos: -36.5,-19.5 parent: 2 - - uid: 19285 + - uid: 1641 components: - type: Transform - pos: 38.5,19.5 + pos: -34.5,-19.5 parent: 2 - - uid: 19539 + - uid: 1642 components: - type: Transform - pos: 28.5,-12.5 - parent: 17590 - - uid: 19540 + pos: -33.5,-19.5 + parent: 2 + - uid: 1643 components: - type: Transform - pos: 28.5,-11.5 - parent: 17590 - - uid: 19897 + pos: -32.5,-19.5 + parent: 2 + - uid: 1647 components: - type: Transform - pos: 41.5,17.5 - parent: 19854 - - uid: 19898 + pos: -34.5,-33.5 + parent: 2 + - uid: 1687 components: - type: Transform - pos: 41.5,16.5 - parent: 19854 - - uid: 19899 + pos: -36.5,-24.5 + parent: 2 + - uid: 1694 components: - type: Transform - pos: 42.5,16.5 - parent: 19854 - - uid: 19900 + pos: -33.5,-25.5 + parent: 2 + - uid: 1695 components: - type: Transform - pos: 44.5,16.5 - parent: 19854 - - uid: 19901 + pos: -37.5,-25.5 + parent: 2 + - uid: 1702 components: - type: Transform - pos: 43.5,16.5 - parent: 19854 - - uid: 19902 + pos: -35.5,-30.5 + parent: 2 + - uid: 1706 components: - type: Transform - pos: 44.5,17.5 - parent: 19854 - - uid: 19907 + pos: -35.5,-33.5 + parent: 2 + - uid: 1707 components: - type: Transform - pos: 36.5,19.5 + pos: -35.5,-31.5 parent: 2 - - uid: 19908 + - uid: 1711 components: - type: Transform - pos: 37.5,19.5 + pos: -35.5,-28.5 parent: 2 - - uid: 19909 + - uid: 1712 components: - type: Transform - pos: 35.5,19.5 + pos: -35.5,-25.5 parent: 2 - - uid: 19910 + - uid: 1737 components: - type: Transform - pos: 35.5,17.5 + pos: -24.5,-28.5 parent: 2 - - uid: 19911 + - uid: 1738 components: - type: Transform - pos: 35.5,16.5 + pos: -24.5,-25.5 parent: 2 - - uid: 19912 + - uid: 1739 components: - type: Transform - pos: 35.5,18.5 + pos: -24.5,-27.5 parent: 2 - - uid: 19984 + - uid: 1755 components: - type: Transform - pos: 25.5,17.5 - parent: 19951 - - uid: 19988 + pos: -24.5,-31.5 + parent: 2 + - uid: 1756 components: - type: Transform - pos: 25.5,16.5 - parent: 19951 - - uid: 19989 + pos: -23.5,-22.5 + parent: 2 + - uid: 1758 components: - type: Transform - pos: 24.5,16.5 - parent: 19951 - - uid: 19990 + pos: -23.5,-20.5 + parent: 2 + - uid: 1762 components: - type: Transform - pos: 22.5,16.5 - parent: 19951 - - uid: 19991 + pos: -25.5,-29.5 + parent: 2 + - uid: 1763 components: - type: Transform - pos: 23.5,16.5 - parent: 19951 - - uid: 19992 + pos: -25.5,-30.5 + parent: 2 + - uid: 1764 components: - type: Transform - pos: 22.5,17.5 - parent: 19951 - - uid: 20038 + pos: -25.5,-31.5 + parent: 2 + - uid: 1765 components: - type: Transform - pos: 25.5,12.5 - parent: 20000 - - uid: 20039 + pos: -26.5,-31.5 + parent: 2 + - uid: 1766 components: - type: Transform - pos: 25.5,11.5 - parent: 20000 - - uid: 20040 + pos: -26.5,-30.5 + parent: 2 + - uid: 1834 components: - type: Transform - pos: 24.5,11.5 - parent: 20000 - - uid: 20041 + pos: -7.5,-23.5 + parent: 2 + - uid: 1835 components: - type: Transform - pos: 22.5,11.5 - parent: 20000 - - uid: 20042 + pos: -7.5,-21.5 + parent: 2 + - uid: 1851 components: - type: Transform - pos: 23.5,11.5 - parent: 20000 - - uid: 20043 + pos: -35.5,-26.5 + parent: 2 + - uid: 1897 components: - type: Transform - pos: 22.5,12.5 - parent: 20000 - - uid: 20149 + pos: -7.5,-22.5 + parent: 2 + - uid: 1908 components: - type: Transform - pos: 39.5,19.5 + pos: -26.5,-32.5 parent: 2 - - uid: 20150 + - uid: 1909 components: - type: Transform - pos: 39.5,20.5 + pos: -26.5,-33.5 parent: 2 -- proto: CableApcStack - entities: - - uid: 34 + - uid: 1910 components: - type: Transform - pos: -6.5362616,47.765694 + pos: -25.5,-33.5 parent: 2 - - uid: 2017 + - uid: 1911 components: - type: Transform - pos: 0.61839914,-18.39082 + pos: -24.5,-33.5 parent: 2 - - uid: 2054 + - uid: 1912 components: - type: Transform - pos: 1.1462222,-23.379484 + pos: -23.5,-33.5 parent: 2 - - uid: 5718 + - uid: 1913 components: - type: Transform - pos: -45.439762,38.055 + pos: -23.5,-32.5 parent: 2 - - uid: 5719 + - uid: 1914 components: - type: Transform - pos: -45.439762,37.883125 + pos: -22.5,-32.5 parent: 2 - - uid: 8064 + - uid: 1915 components: - type: Transform - pos: 50.431786,-21.32471 + pos: -21.5,-32.5 parent: 2 - - uid: 11409 + - uid: 1916 components: - type: Transform - pos: -6.5206366,47.578194 + pos: -20.5,-32.5 parent: 2 - - uid: 17358 + - uid: 1918 components: - type: Transform - parent: 12408 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CableApcStack1 - entities: - - uid: 6702 + pos: -20.5,-30.5 + parent: 2 + - uid: 1919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.457291,2.3576155 + pos: -20.5,-29.5 parent: 2 - - uid: 17190 + - uid: 1920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.76652,63.53888 + pos: -20.5,-28.5 parent: 2 - - uid: 17191 + - uid: 1921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.79777,63.44513 + pos: -20.5,-27.5 parent: 2 -- proto: CableHV - entities: - - uid: 8 + - uid: 1922 components: - type: Transform - pos: -33.5,-21.5 + pos: -20.5,-26.5 parent: 2 - - uid: 26 + - uid: 1923 components: - type: Transform - pos: -7.5,48.5 + pos: -20.5,-25.5 parent: 2 - - uid: 99 + - uid: 1924 components: - type: Transform - pos: -30.5,-22.5 + pos: -20.5,-24.5 parent: 2 - - uid: 229 + - uid: 1925 components: - type: Transform - pos: 24.5,17.5 + pos: -20.5,-23.5 parent: 2 - - uid: 249 + - uid: 1985 components: - type: Transform - pos: -31.5,-22.5 + pos: -19.5,-40.5 parent: 2 - - uid: 279 + - uid: 1987 components: - type: Transform - pos: 23.5,13.5 + pos: -7.5,-24.5 parent: 2 - - uid: 400 + - uid: 2060 components: - type: Transform - pos: -35.5,-21.5 + pos: -45.5,1.5 parent: 2 - - uid: 552 + - uid: 2061 components: - type: Transform - pos: -26.5,-24.5 + pos: -44.5,1.5 parent: 2 - - uid: 574 + - uid: 2071 components: - type: Transform - pos: -26.5,-26.5 + pos: -42.5,2.5 parent: 2 - - uid: 576 + - uid: 2072 components: - type: Transform - pos: -26.5,-22.5 + pos: -42.5,-0.5 parent: 2 - - uid: 578 + - uid: 2093 components: - type: Transform - pos: -7.5,-18.5 + pos: -39.5,1.5 parent: 2 - - uid: 579 + - uid: 2094 components: - type: Transform - pos: -7.5,-16.5 + pos: -41.5,1.5 parent: 2 - - uid: 596 + - uid: 2097 components: - type: Transform - pos: -35.5,-18.5 + pos: -8.5,-24.5 parent: 2 - - uid: 597 + - uid: 2098 components: - type: Transform - pos: -35.5,-17.5 + pos: -9.5,-24.5 parent: 2 - - uid: 598 + - uid: 2099 components: - type: Transform - pos: -37.5,-24.5 + pos: -6.5,-24.5 parent: 2 - - uid: 599 + - uid: 2100 components: - type: Transform - pos: -35.5,-20.5 + pos: -5.5,-24.5 parent: 2 - - uid: 617 + - uid: 2101 components: - type: Transform - pos: -24.5,-24.5 + pos: -8.5,-21.5 parent: 2 - - uid: 618 + - uid: 2102 components: - type: Transform - pos: -24.5,-23.5 + pos: -5.5,-23.5 parent: 2 - - uid: 619 + - uid: 2103 components: - type: Transform - pos: -35.5,-15.5 + pos: -4.5,-23.5 parent: 2 - - uid: 620 + - uid: 2104 components: - type: Transform - pos: -35.5,-16.5 + pos: -9.5,-21.5 parent: 2 - - uid: 631 + - uid: 2105 components: - type: Transform - pos: -7.5,-17.5 + pos: -9.5,-20.5 parent: 2 - - uid: 633 + - uid: 2106 components: - type: Transform - pos: -7.5,-19.5 + pos: -10.5,-20.5 parent: 2 - - uid: 635 + - uid: 2107 components: - type: Transform - pos: -7.5,-20.5 + pos: -6.5,-21.5 parent: 2 - - uid: 675 + - uid: 2108 components: - type: Transform - pos: -35.5,-29.5 + pos: -5.5,-21.5 parent: 2 - - uid: 684 + - uid: 2109 components: - type: Transform - pos: -35.5,-32.5 + pos: -5.5,-20.5 parent: 2 - - uid: 686 + - uid: 2110 components: - type: Transform - pos: -35.5,-27.5 + pos: -4.5,-20.5 parent: 2 - - uid: 687 + - uid: 2111 components: - type: Transform - pos: -36.5,-33.5 + pos: -7.5,-15.5 parent: 2 - - uid: 688 + - uid: 2112 components: - type: Transform - pos: -23.5,-19.5 + pos: -8.5,-15.5 parent: 2 - - uid: 697 + - uid: 2113 components: - type: Transform - pos: -33.5,-22.5 + pos: -9.5,-15.5 parent: 2 - - uid: 698 + - uid: 2114 components: - type: Transform - pos: -23.5,-21.5 + pos: -10.5,-15.5 parent: 2 - - uid: 699 + - uid: 2115 components: - type: Transform - pos: -24.5,-22.5 + pos: -11.5,-15.5 parent: 2 - - uid: 702 + - uid: 2116 components: - type: Transform - pos: -26.5,-25.5 + pos: -12.5,-15.5 parent: 2 - - uid: 708 + - uid: 2117 components: - type: Transform - pos: -26.5,-23.5 + pos: -13.5,-15.5 parent: 2 - - uid: 713 + - uid: 2118 components: - type: Transform - pos: -26.5,-28.5 + pos: -14.5,-15.5 parent: 2 - - uid: 751 + - uid: 2119 components: - type: Transform - pos: -36.5,-35.5 + pos: -15.5,-15.5 parent: 2 - - uid: 763 + - uid: 2120 components: - type: Transform - pos: -26.5,-27.5 + pos: -16.5,-15.5 parent: 2 - - uid: 830 + - uid: 2121 components: - type: Transform - pos: -24.5,-26.5 + pos: -16.5,-16.5 parent: 2 - - uid: 1081 + - uid: 2122 components: - type: Transform - pos: -32.5,-22.5 + pos: -16.5,-17.5 parent: 2 - - uid: 1164 + - uid: 2123 components: - type: Transform - pos: -36.5,-34.5 + pos: -17.5,-17.5 parent: 2 - - uid: 1316 + - uid: 2124 components: - type: Transform - pos: -33.5,-24.5 + pos: -17.5,-18.5 parent: 2 - - uid: 1319 + - uid: 2125 components: - type: Transform - pos: -26.5,-29.5 + pos: -17.5,-19.5 parent: 2 - - uid: 1367 + - uid: 2126 components: - type: Transform - pos: -24.5,-29.5 + pos: -17.5,-20.5 parent: 2 - - uid: 1368 + - uid: 2127 components: - type: Transform - pos: -35.5,-19.5 + pos: -17.5,-21.5 parent: 2 - - uid: 1372 + - uid: 2128 components: - type: Transform - pos: -24.5,-30.5 + pos: -17.5,-22.5 parent: 2 - - uid: 1376 + - uid: 2129 components: - type: Transform - pos: -35.5,-14.5 + pos: -17.5,-23.5 parent: 2 - - uid: 1377 + - uid: 2130 components: - type: Transform - pos: -35.5,-22.5 + pos: -18.5,-23.5 parent: 2 - - uid: 1378 + - uid: 2131 components: - type: Transform - pos: -35.5,-13.5 + pos: -19.5,-23.5 parent: 2 - - uid: 1390 + - uid: 2225 components: - type: Transform - pos: -29.5,-22.5 + pos: -20.5,-31.5 parent: 2 - - uid: 1391 + - uid: 2232 components: - type: Transform - pos: -28.5,-22.5 + pos: -18.5,-24.5 parent: 2 - - uid: 1392 + - uid: 2233 components: - type: Transform - pos: -27.5,-22.5 + pos: -16.5,-23.5 parent: 2 - - uid: 1460 + - uid: 2234 components: - type: Transform - pos: -38.5,-18.5 + pos: -16.5,-24.5 parent: 2 - - uid: 1461 + - uid: 2346 components: - type: Transform - pos: -38.5,-17.5 + pos: -37.5,1.5 parent: 2 - - uid: 1462 + - uid: 2464 components: - type: Transform - pos: -38.5,-16.5 + pos: -40.5,1.5 parent: 2 - - uid: 1465 + - uid: 2936 components: - type: Transform - pos: -38.5,-15.5 + pos: -33.5,-20.5 parent: 2 - - uid: 1466 + - uid: 2937 components: - type: Transform - pos: -32.5,-15.5 + pos: -34.5,-20.5 parent: 2 - - uid: 1467 + - uid: 2938 components: - type: Transform - pos: -32.5,-18.5 + pos: -35.5,-23.5 parent: 2 - - uid: 1468 + - uid: 2939 components: - type: Transform - pos: -32.5,-16.5 + pos: -35.5,-24.5 parent: 2 - - uid: 1469 + - uid: 2940 components: - type: Transform - pos: -32.5,-17.5 + pos: -34.5,-24.5 parent: 2 - - uid: 1482 + - uid: 2956 components: - type: Transform - pos: -35.5,-12.5 + pos: -34.5,-35.5 parent: 2 - - uid: 1483 + - uid: 3539 components: - type: Transform - pos: -35.5,-11.5 + pos: -6.5,48.5 parent: 2 - - uid: 1484 + - uid: 4702 components: - type: Transform - pos: -35.5,-10.5 + pos: -13.5,5.5 parent: 2 - - uid: 1485 + - uid: 4894 components: - type: Transform - pos: -36.5,-10.5 + pos: -17.5,5.5 parent: 2 - - uid: 1486 + - uid: 4895 components: - type: Transform - pos: -37.5,-10.5 + pos: -16.5,5.5 parent: 2 - - uid: 1487 + - uid: 4896 components: - type: Transform - pos: -34.5,-10.5 + pos: -15.5,5.5 parent: 2 - - uid: 1488 + - uid: 4897 components: - type: Transform - pos: -33.5,-10.5 + pos: -14.5,5.5 parent: 2 - - uid: 1489 + - uid: 6142 components: - type: Transform - pos: -36.5,-13.5 + pos: -24.5,68.5 parent: 2 - - uid: 1490 + - uid: 6143 components: - type: Transform - pos: -37.5,-13.5 + pos: -23.5,68.5 parent: 2 - - uid: 1491 + - uid: 6144 components: - type: Transform - pos: -38.5,-13.5 + pos: -22.5,68.5 parent: 2 - - uid: 1492 + - uid: 6145 components: - type: Transform - pos: -39.5,-13.5 + pos: -21.5,68.5 parent: 2 - - uid: 1493 + - uid: 6146 components: - type: Transform - pos: -39.5,-12.5 + pos: -20.5,68.5 parent: 2 - - uid: 1494 + - uid: 6147 components: - type: Transform - pos: -39.5,-14.5 + pos: -19.5,68.5 parent: 2 - - uid: 1495 + - uid: 6148 components: - type: Transform - pos: -34.5,-13.5 + pos: -18.5,68.5 parent: 2 - - uid: 1496 + - uid: 6149 components: - type: Transform - pos: -33.5,-13.5 + pos: -17.5,68.5 parent: 2 - - uid: 1497 + - uid: 6150 components: - type: Transform - pos: -32.5,-13.5 + pos: -16.5,68.5 parent: 2 - - uid: 1498 + - uid: 6151 components: - type: Transform - pos: -31.5,-13.5 + pos: -15.5,68.5 parent: 2 - - uid: 1499 + - uid: 6152 components: - type: Transform - pos: -31.5,-12.5 + pos: -14.5,68.5 parent: 2 - - uid: 1500 + - uid: 6153 components: - type: Transform - pos: -31.5,-14.5 + pos: -13.5,68.5 parent: 2 - - uid: 1524 + - uid: 6154 components: - type: Transform - pos: -39.5,-10.5 + pos: -13.5,66.5 parent: 2 - - uid: 1525 + - uid: 6155 components: - type: Transform - pos: -38.5,-10.5 + pos: -14.5,66.5 parent: 2 - - uid: 1526 + - uid: 6156 components: - type: Transform - pos: -39.5,-11.5 + pos: -15.5,66.5 parent: 2 - - uid: 1527 + - uid: 6157 components: - type: Transform - pos: -32.5,-10.5 + pos: -16.5,66.5 parent: 2 - - uid: 1528 + - uid: 6158 components: - type: Transform - pos: -31.5,-10.5 + pos: -17.5,66.5 parent: 2 - - uid: 1529 + - uid: 6159 components: - type: Transform - pos: -31.5,-11.5 + pos: -18.5,66.5 parent: 2 - - uid: 1581 + - uid: 6160 components: - type: Transform - pos: -36.5,-15.5 + pos: -19.5,66.5 parent: 2 - - uid: 1582 + - uid: 6161 components: - type: Transform - pos: -37.5,-15.5 + pos: -20.5,66.5 parent: 2 - - uid: 1583 + - uid: 6162 components: - type: Transform - pos: -34.5,-15.5 + pos: -21.5,66.5 parent: 2 - - uid: 1584 + - uid: 6163 components: - type: Transform - pos: -33.5,-15.5 + pos: -22.5,66.5 parent: 2 - - uid: 1638 + - uid: 6164 components: - type: Transform - pos: -38.5,-19.5 + pos: -23.5,66.5 parent: 2 - - uid: 1639 + - uid: 6165 components: - type: Transform - pos: -37.5,-19.5 + pos: -24.5,66.5 parent: 2 - - uid: 1640 + - uid: 6166 components: - type: Transform - pos: -36.5,-19.5 + pos: -24.5,67.5 parent: 2 - - uid: 1641 + - uid: 6167 components: - type: Transform - pos: -34.5,-19.5 + pos: -30.5,66.5 parent: 2 - - uid: 1642 + - uid: 6168 components: - type: Transform - pos: -33.5,-19.5 + pos: -31.5,66.5 parent: 2 - - uid: 1643 + - uid: 6169 components: - type: Transform - pos: -32.5,-19.5 + pos: -32.5,66.5 parent: 2 - - uid: 1647 + - uid: 6170 components: - type: Transform - pos: -34.5,-33.5 + pos: -33.5,66.5 parent: 2 - - uid: 1687 + - uid: 6171 components: - type: Transform - pos: -36.5,-24.5 + pos: -34.5,66.5 parent: 2 - - uid: 1694 + - uid: 6172 components: - type: Transform - pos: -33.5,-25.5 + pos: -35.5,66.5 parent: 2 - - uid: 1695 + - uid: 6173 components: - type: Transform - pos: -37.5,-25.5 + pos: -36.5,66.5 parent: 2 - - uid: 1702 + - uid: 6174 components: - type: Transform - pos: -35.5,-30.5 + pos: -37.5,66.5 parent: 2 - - uid: 1706 + - uid: 6175 components: - type: Transform - pos: -35.5,-33.5 + pos: -38.5,66.5 parent: 2 - - uid: 1707 + - uid: 6176 components: - type: Transform - pos: -35.5,-31.5 + pos: -39.5,66.5 parent: 2 - - uid: 1711 + - uid: 6177 components: - type: Transform - pos: -35.5,-28.5 + pos: -40.5,66.5 parent: 2 - - uid: 1712 + - uid: 6178 components: - type: Transform - pos: -35.5,-25.5 + pos: -41.5,66.5 parent: 2 - - uid: 1737 + - uid: 6179 components: - type: Transform - pos: -24.5,-28.5 + pos: -41.5,68.5 parent: 2 - - uid: 1738 + - uid: 6180 components: - type: Transform - pos: -24.5,-25.5 + pos: -40.5,68.5 parent: 2 - - uid: 1739 + - uid: 6181 components: - type: Transform - pos: -24.5,-27.5 + pos: -39.5,68.5 parent: 2 - - uid: 1755 + - uid: 6182 components: - type: Transform - pos: -24.5,-31.5 + pos: -38.5,68.5 parent: 2 - - uid: 1756 + - uid: 6183 components: - type: Transform - pos: -23.5,-22.5 + pos: -37.5,68.5 parent: 2 - - uid: 1758 + - uid: 6184 components: - type: Transform - pos: -23.5,-20.5 + pos: -36.5,68.5 parent: 2 - - uid: 1762 + - uid: 6185 components: - type: Transform - pos: -25.5,-29.5 + pos: -35.5,68.5 parent: 2 - - uid: 1763 + - uid: 6186 components: - type: Transform - pos: -25.5,-30.5 + pos: -34.5,68.5 parent: 2 - - uid: 1764 + - uid: 6187 components: - type: Transform - pos: -25.5,-31.5 + pos: -33.5,68.5 parent: 2 - - uid: 1765 + - uid: 6188 components: - type: Transform - pos: -26.5,-31.5 + pos: -32.5,68.5 parent: 2 - - uid: 1766 + - uid: 6189 components: - type: Transform - pos: -26.5,-30.5 + pos: -31.5,68.5 parent: 2 - - uid: 1834 + - uid: 6190 components: - type: Transform - pos: -7.5,-23.5 + pos: -30.5,68.5 parent: 2 - - uid: 1835 + - uid: 6191 components: - type: Transform - pos: -7.5,-21.5 + pos: -30.5,67.5 parent: 2 - - uid: 1851 + - uid: 6192 components: - type: Transform - pos: -35.5,-26.5 + pos: -29.5,67.5 parent: 2 - - uid: 1897 + - uid: 6193 components: - type: Transform - pos: -7.5,-22.5 + pos: -28.5,67.5 parent: 2 - - uid: 1908 + - uid: 6194 components: - type: Transform - pos: -26.5,-32.5 + pos: -27.5,67.5 parent: 2 - - uid: 1909 + - uid: 6195 components: - type: Transform - pos: -26.5,-33.5 + pos: -26.5,67.5 parent: 2 - - uid: 1910 + - uid: 6196 components: - type: Transform - pos: -25.5,-33.5 + pos: -25.5,67.5 parent: 2 - - uid: 1911 + - uid: 6228 components: - type: Transform - pos: -24.5,-33.5 + pos: -26.5,66.5 parent: 2 - - uid: 1912 + - uid: 6229 components: - type: Transform - pos: -23.5,-33.5 + pos: -26.5,65.5 parent: 2 - - uid: 1913 + - uid: 6230 components: - type: Transform - pos: -23.5,-32.5 + pos: -27.5,65.5 parent: 2 - - uid: 1914 + - uid: 6231 components: - type: Transform - pos: -22.5,-32.5 + pos: -28.5,65.5 parent: 2 - - uid: 1915 + - uid: 6685 components: - type: Transform - pos: -21.5,-32.5 + pos: -19.5,4.5 parent: 2 - - uid: 1916 + - uid: 7155 components: - type: Transform - pos: -20.5,-32.5 + pos: -47.5,-3.5 parent: 2 - - uid: 1918 + - uid: 7182 components: - type: Transform - pos: -20.5,-30.5 + pos: -47.5,-2.5 parent: 2 - - uid: 1919 + - uid: 7183 components: - type: Transform - pos: -20.5,-29.5 + pos: -47.5,-0.5 parent: 2 - - uid: 1920 + - uid: 7184 components: - type: Transform - pos: -20.5,-28.5 + pos: -47.5,-1.5 parent: 2 - - uid: 1921 + - uid: 7185 components: - type: Transform - pos: -20.5,-27.5 + pos: -45.5,-0.5 parent: 2 - - uid: 1922 + - uid: 7186 components: - type: Transform - pos: -20.5,-26.5 + pos: -45.5,-2.5 parent: 2 - - uid: 1923 + - uid: 7187 components: - type: Transform - pos: -20.5,-25.5 + pos: -45.5,-3.5 parent: 2 - - uid: 1924 + - uid: 7188 components: - type: Transform - pos: -20.5,-24.5 + pos: -45.5,-1.5 parent: 2 - - uid: 1925 + - uid: 7189 components: - type: Transform - pos: -20.5,-23.5 + pos: -47.5,6.5 parent: 2 - - uid: 1985 + - uid: 7190 components: - type: Transform - pos: -19.5,-40.5 + pos: -46.5,-0.5 parent: 2 - - uid: 1987 + - uid: 7191 components: - type: Transform - pos: -7.5,-24.5 + pos: -46.5,0.5 parent: 2 - - uid: 2097 + - uid: 7192 components: - type: Transform - pos: -8.5,-24.5 + pos: -46.5,1.5 parent: 2 - - uid: 2098 + - uid: 7193 components: - type: Transform - pos: -9.5,-24.5 + pos: -47.5,4.5 parent: 2 - - uid: 2099 + - uid: 7194 components: - type: Transform - pos: -6.5,-24.5 + pos: -47.5,3.5 parent: 2 - - uid: 2100 + - uid: 7195 components: - type: Transform - pos: -5.5,-24.5 + pos: -47.5,5.5 parent: 2 - - uid: 2101 + - uid: 7196 components: - type: Transform - pos: -8.5,-21.5 + pos: -46.5,3.5 parent: 2 - - uid: 2102 + - uid: 7197 components: - type: Transform - pos: -5.5,-23.5 + pos: -45.5,4.5 parent: 2 - - uid: 2103 + - uid: 7198 components: - type: Transform - pos: -4.5,-23.5 + pos: -45.5,3.5 parent: 2 - - uid: 2104 + - uid: 7199 components: - type: Transform - pos: -9.5,-21.5 + pos: -46.5,2.5 parent: 2 - - uid: 2105 + - uid: 7200 components: - type: Transform - pos: -9.5,-20.5 + pos: -43.5,-0.5 parent: 2 - - uid: 2106 + - uid: 7201 components: - type: Transform - pos: -10.5,-20.5 + pos: -45.5,5.5 parent: 2 - - uid: 2107 + - uid: 7202 components: - type: Transform - pos: -6.5,-21.5 + pos: -45.5,6.5 parent: 2 - - uid: 2108 + - uid: 7203 components: - type: Transform - pos: -5.5,-21.5 + pos: -43.5,-1.5 parent: 2 - - uid: 2109 + - uid: 7204 components: - type: Transform - pos: -5.5,-20.5 + pos: -42.5,1.5 parent: 2 - - uid: 2110 + - uid: 7205 components: - type: Transform - pos: -4.5,-20.5 + pos: -42.5,0.5 parent: 2 - - uid: 2111 + - uid: 7206 components: - type: Transform - pos: -7.5,-15.5 + pos: -41.5,-0.5 parent: 2 - - uid: 2112 + - uid: 7207 components: - type: Transform - pos: -8.5,-15.5 + pos: -41.5,-1.5 parent: 2 - - uid: 2113 + - uid: 7208 components: - type: Transform - pos: -9.5,-15.5 + pos: -38.5,-0.5 parent: 2 - - uid: 2114 + - uid: 7209 components: - type: Transform - pos: -10.5,-15.5 + pos: -43.5,-2.5 parent: 2 - - uid: 2115 + - uid: 7210 components: - type: Transform - pos: -11.5,-15.5 + pos: -38.5,0.5 parent: 2 - - uid: 2116 + - uid: 7211 components: - type: Transform - pos: -12.5,-15.5 + pos: -38.5,1.5 parent: 2 - - uid: 2117 + - uid: 7212 components: - type: Transform - pos: -13.5,-15.5 + pos: -39.5,-0.5 parent: 2 - - uid: 2118 + - uid: 7213 components: - type: Transform - pos: -14.5,-15.5 + pos: -39.5,-1.5 parent: 2 - - uid: 2119 + - uid: 7214 components: - type: Transform - pos: -15.5,-15.5 + pos: -37.5,-0.5 parent: 2 - - uid: 2120 + - uid: 7215 components: - type: Transform - pos: -16.5,-15.5 + pos: -37.5,-2.5 parent: 2 - - uid: 2121 + - uid: 7216 components: - type: Transform - pos: -16.5,-16.5 + pos: -37.5,-3.5 parent: 2 - - uid: 2122 + - uid: 7217 components: - type: Transform - pos: -16.5,-17.5 + pos: -37.5,-1.5 parent: 2 - - uid: 2123 + - uid: 7218 components: - type: Transform - pos: -17.5,-17.5 + pos: -35.5,-0.5 parent: 2 - - uid: 2124 + - uid: 7219 components: - type: Transform - pos: -17.5,-18.5 + pos: -35.5,-2.5 parent: 2 - - uid: 2125 + - uid: 7220 components: - type: Transform - pos: -17.5,-19.5 + pos: -35.5,-1.5 parent: 2 - - uid: 2126 + - uid: 7221 components: - type: Transform - pos: -17.5,-20.5 + pos: -33.5,-0.5 parent: 2 - - uid: 2127 + - uid: 7222 components: - type: Transform - pos: -17.5,-21.5 + pos: -33.5,-1.5 parent: 2 - - uid: 2128 + - uid: 7223 components: - type: Transform - pos: -17.5,-22.5 + pos: -33.5,-2.5 parent: 2 - - uid: 2129 + - uid: 7224 components: - type: Transform - pos: -17.5,-23.5 + pos: -33.5,-3.5 parent: 2 - - uid: 2130 + - uid: 7225 components: - type: Transform - pos: -18.5,-23.5 + pos: -34.5,-0.5 parent: 2 - - uid: 2131 + - uid: 7226 components: - type: Transform - pos: -19.5,-23.5 + pos: -34.5,1.5 parent: 2 - - uid: 2225 + - uid: 7227 components: - type: Transform - pos: -20.5,-31.5 + pos: -34.5,0.5 parent: 2 - - uid: 2232 + - uid: 7228 components: - type: Transform - pos: -18.5,-24.5 + pos: -35.5,4.5 parent: 2 - - uid: 2233 + - uid: 7229 components: - type: Transform - pos: -16.5,-23.5 + pos: -35.5,3.5 parent: 2 - - uid: 2234 + - uid: 7230 components: - type: Transform - pos: -16.5,-24.5 + pos: -33.5,6.5 parent: 2 - - uid: 2936 + - uid: 7231 components: - type: Transform - pos: -33.5,-20.5 + pos: -33.5,4.5 parent: 2 - - uid: 2937 + - uid: 7232 components: - type: Transform - pos: -34.5,-20.5 + pos: -33.5,3.5 parent: 2 - - uid: 2938 + - uid: 7233 components: - type: Transform - pos: -35.5,-23.5 + pos: -33.5,5.5 parent: 2 - - uid: 2939 + - uid: 7234 components: - type: Transform - pos: -35.5,-24.5 + pos: -34.5,3.5 parent: 2 - - uid: 2940 + - uid: 7235 components: - type: Transform - pos: -34.5,-24.5 + pos: -34.5,2.5 parent: 2 - - uid: 2956 + - uid: 7236 components: - type: Transform - pos: -34.5,-35.5 + pos: -43.5,-3.5 parent: 2 - - uid: 3539 + - uid: 7237 components: - type: Transform - pos: -6.5,48.5 + pos: -35.5,5.5 parent: 2 - - uid: 6142 + - uid: 7238 components: - type: Transform - pos: -24.5,68.5 + pos: -42.5,3.5 parent: 2 - - uid: 6143 + - uid: 7239 components: - type: Transform - pos: -23.5,68.5 + pos: -43.5,3.5 parent: 2 - - uid: 6144 + - uid: 7240 components: - type: Transform - pos: -22.5,68.5 + pos: -43.5,4.5 parent: 2 - - uid: 6145 + - uid: 7241 components: - type: Transform - pos: -21.5,68.5 + pos: -41.5,3.5 parent: 2 - - uid: 6146 + - uid: 7242 components: - type: Transform - pos: -20.5,68.5 + pos: -41.5,5.5 parent: 2 - - uid: 6147 + - uid: 7243 components: - type: Transform - pos: -19.5,68.5 + pos: -41.5,4.5 parent: 2 - - uid: 6148 + - uid: 7244 components: - type: Transform - pos: -18.5,68.5 + pos: -41.5,6.5 parent: 2 - - uid: 6149 + - uid: 7245 components: - type: Transform - pos: -17.5,68.5 + pos: -43.5,5.5 parent: 2 - - uid: 6150 + - uid: 7246 components: - type: Transform - pos: -16.5,68.5 + pos: -37.5,3.5 parent: 2 - - uid: 6151 + - uid: 7247 components: - type: Transform - pos: -15.5,68.5 + pos: -39.5,3.5 parent: 2 - - uid: 6152 + - uid: 7248 components: - type: Transform - pos: -14.5,68.5 + pos: -38.5,3.5 parent: 2 - - uid: 6153 + - uid: 7249 components: - type: Transform - pos: -13.5,68.5 + pos: -39.5,-2.5 parent: 2 - - uid: 6154 + - uid: 7250 components: - type: Transform - pos: -13.5,66.5 + pos: -41.5,-2.5 parent: 2 - - uid: 6155 + - uid: 7252 components: - type: Transform - pos: -14.5,66.5 + pos: -43.5,1.5 parent: 2 - - uid: 6156 + - uid: 7509 components: - type: Transform - pos: -15.5,66.5 + pos: 11.5,-39.5 parent: 2 - - uid: 6157 + - uid: 7512 components: - type: Transform - pos: -16.5,66.5 + pos: 5.5,-37.5 parent: 2 - - uid: 6158 + - uid: 7513 components: - type: Transform - pos: -17.5,66.5 + pos: 5.5,-39.5 parent: 2 - - uid: 6159 + - uid: 7514 components: - type: Transform - pos: -18.5,66.5 + pos: 5.5,-40.5 parent: 2 - - uid: 6160 + - uid: 7515 components: - type: Transform - pos: -19.5,66.5 + pos: 5.5,-38.5 parent: 2 - - uid: 6161 + - uid: 7516 components: - type: Transform - pos: -20.5,66.5 + pos: 7.5,-40.5 parent: 2 - - uid: 6162 + - uid: 7517 components: - type: Transform - pos: -21.5,66.5 + pos: 7.5,-39.5 parent: 2 - - uid: 6163 + - uid: 7518 components: - type: Transform - pos: -22.5,66.5 + pos: 6.5,-40.5 parent: 2 - - uid: 6164 + - uid: 7519 components: - type: Transform - pos: -23.5,66.5 + pos: 9.5,-38.5 parent: 2 - - uid: 6165 + - uid: 7520 components: - type: Transform - pos: -24.5,66.5 + pos: 9.5,-40.5 parent: 2 - - uid: 6166 + - uid: 7521 components: - type: Transform - pos: -24.5,67.5 + pos: 9.5,-39.5 parent: 2 - - uid: 6167 + - uid: 7522 components: - type: Transform - pos: -30.5,66.5 + pos: 10.5,-40.5 parent: 2 - - uid: 6168 + - uid: 7523 components: - type: Transform - pos: -31.5,66.5 + pos: 10.5,-41.5 parent: 2 - - uid: 6169 + - uid: 7524 components: - type: Transform - pos: -32.5,66.5 + pos: 11.5,-38.5 parent: 2 - - uid: 6170 + - uid: 7525 components: - type: Transform - pos: -33.5,66.5 + pos: 11.5,-37.5 parent: 2 - - uid: 6171 + - uid: 7526 components: - type: Transform - pos: -34.5,66.5 + pos: 13.5,-38.5 parent: 2 - - uid: 6172 + - uid: 7527 components: - type: Transform - pos: -35.5,66.5 + pos: 13.5,-39.5 parent: 2 - - uid: 6173 + - uid: 7528 components: - type: Transform - pos: -36.5,66.5 + pos: 13.5,-40.5 parent: 2 - - uid: 6174 + - uid: 7529 components: - type: Transform - pos: -37.5,66.5 + pos: 15.5,-46.5 parent: 2 - - uid: 6175 + - uid: 7530 components: - type: Transform - pos: -38.5,66.5 + pos: 14.5,-40.5 parent: 2 - - uid: 6176 + - uid: 7531 components: - type: Transform - pos: -39.5,66.5 + pos: 14.5,-41.5 parent: 2 - - uid: 6177 + - uid: 7532 components: - type: Transform - pos: -40.5,66.5 + pos: 14.5,-43.5 parent: 2 - - uid: 6178 + - uid: 7533 components: - type: Transform - pos: -41.5,66.5 + pos: 14.5,-44.5 parent: 2 - - uid: 6179 + - uid: 7534 components: - type: Transform - pos: -41.5,68.5 + pos: 14.5,-42.5 parent: 2 - - uid: 6180 + - uid: 7535 components: - type: Transform - pos: -40.5,68.5 + pos: 15.5,-44.5 parent: 2 - - uid: 6181 + - uid: 7536 components: - type: Transform - pos: -39.5,68.5 + pos: 13.5,-44.5 parent: 2 - - uid: 6182 + - uid: 7537 components: - type: Transform - pos: -38.5,68.5 + pos: 13.5,-45.5 parent: 2 - - uid: 6183 + - uid: 7538 components: - type: Transform - pos: -37.5,68.5 + pos: 13.5,-46.5 parent: 2 - - uid: 6184 + - uid: 7539 components: - type: Transform - pos: -36.5,68.5 + pos: 15.5,-45.5 parent: 2 - - uid: 6185 + - uid: 7540 components: - type: Transform - pos: -35.5,68.5 + pos: 11.5,-44.5 parent: 2 - - uid: 6186 + - uid: 7541 components: - type: Transform - pos: -34.5,68.5 + pos: 11.5,-45.5 parent: 2 - - uid: 6187 + - uid: 7542 components: - type: Transform - pos: -33.5,68.5 + pos: 11.5,-47.5 parent: 2 - - uid: 6188 + - uid: 7543 components: - type: Transform - pos: -32.5,68.5 + pos: 11.5,-46.5 parent: 2 - - uid: 6189 + - uid: 7544 components: - type: Transform - pos: -31.5,68.5 + pos: 9.5,-44.5 parent: 2 - - uid: 6190 + - uid: 7545 components: - type: Transform - pos: -30.5,68.5 + pos: 9.5,-46.5 parent: 2 - - uid: 6191 + - uid: 7546 components: - type: Transform - pos: -30.5,67.5 + pos: 9.5,-45.5 parent: 2 - - uid: 6192 + - uid: 7547 components: - type: Transform - pos: -29.5,67.5 + pos: 5.5,-44.5 parent: 2 - - uid: 6193 + - uid: 7548 components: - type: Transform - pos: -28.5,67.5 + pos: 7.5,-44.5 parent: 2 - - uid: 6194 + - uid: 7549 components: - type: Transform - pos: -27.5,67.5 + pos: 7.5,-46.5 parent: 2 - - uid: 6195 + - uid: 7550 components: - type: Transform - pos: -26.5,67.5 + pos: 7.5,-47.5 parent: 2 - - uid: 6196 + - uid: 7551 components: - type: Transform - pos: -25.5,67.5 + pos: 7.5,-45.5 parent: 2 - - uid: 6228 + - uid: 7552 components: - type: Transform - pos: -26.5,66.5 + pos: 5.5,-46.5 parent: 2 - - uid: 6229 + - uid: 7553 components: - type: Transform - pos: -26.5,65.5 + pos: 5.5,-45.5 parent: 2 - - uid: 6230 + - uid: 7554 components: - type: Transform - pos: -27.5,65.5 + pos: 6.5,-44.5 parent: 2 - - uid: 6231 + - uid: 7555 components: - type: Transform - pos: -28.5,65.5 + pos: 10.5,-43.5 parent: 2 - - uid: 7155 + - uid: 7556 components: - type: Transform - pos: -47.5,-3.5 + pos: 10.5,-42.5 parent: 2 - - uid: 7182 + - uid: 7557 components: - type: Transform - pos: -47.5,-2.5 + pos: 9.5,-42.5 parent: 2 - - uid: 7183 + - uid: 7559 components: - type: Transform - pos: -47.5,-0.5 + pos: 17.5,-44.5 parent: 2 - - uid: 7184 + - uid: 7560 components: - type: Transform - pos: -47.5,-1.5 + pos: 17.5,-46.5 parent: 2 - - uid: 7185 + - uid: 7561 components: - type: Transform - pos: -45.5,-0.5 + pos: 17.5,-45.5 parent: 2 - - uid: 7186 + - uid: 7562 components: - type: Transform - pos: -45.5,-2.5 + pos: 19.5,-44.5 parent: 2 - - uid: 7187 + - uid: 7563 components: - type: Transform - pos: -45.5,-3.5 + pos: 19.5,-46.5 parent: 2 - - uid: 7188 + - uid: 7564 components: - type: Transform - pos: -45.5,-1.5 + pos: 19.5,-45.5 parent: 2 - - uid: 7189 + - uid: 7565 components: - type: Transform - pos: -47.5,6.5 + pos: 19.5,-47.5 parent: 2 - - uid: 7190 + - uid: 7566 components: - type: Transform - pos: -46.5,-0.5 + pos: 18.5,-43.5 parent: 2 - - uid: 7191 + - uid: 7567 components: - type: Transform - pos: -46.5,0.5 + pos: 18.5,-42.5 parent: 2 - - uid: 7192 + - uid: 7568 components: - type: Transform - pos: -46.5,1.5 + pos: 17.5,-42.5 parent: 2 - - uid: 7193 + - uid: 7569 components: - type: Transform - pos: -47.5,4.5 + pos: 19.5,-42.5 parent: 2 - - uid: 7194 + - uid: 7570 components: - type: Transform - pos: -47.5,3.5 + pos: 18.5,-40.5 parent: 2 - - uid: 7195 + - uid: 7571 components: - type: Transform - pos: -47.5,5.5 + pos: 17.5,-40.5 parent: 2 - - uid: 7196 + - uid: 7572 components: - type: Transform - pos: -46.5,3.5 + pos: 17.5,-39.5 parent: 2 - - uid: 7197 + - uid: 7573 components: - type: Transform - pos: -45.5,4.5 + pos: 17.5,-38.5 parent: 2 - - uid: 7198 + - uid: 7574 components: - type: Transform - pos: -45.5,3.5 + pos: 17.5,-37.5 parent: 2 - - uid: 7199 + - uid: 7575 components: - type: Transform - pos: -46.5,2.5 + pos: 19.5,-38.5 parent: 2 - - uid: 7200 + - uid: 7576 components: - type: Transform - pos: -43.5,-0.5 + pos: 19.5,-39.5 parent: 2 - - uid: 7201 + - uid: 7577 components: - type: Transform - pos: -45.5,5.5 + pos: 19.5,-40.5 parent: 2 - - uid: 7202 + - uid: 8337 components: - type: Transform - pos: -45.5,6.5 + pos: -37.5,6.5 parent: 2 - - uid: 7203 + - uid: 8338 components: - type: Transform - pos: -43.5,-1.5 + pos: -35.5,6.5 parent: 2 - - uid: 7204 + - uid: 8339 components: - type: Transform - pos: -42.5,1.5 + pos: -43.5,6.5 parent: 2 - - uid: 7205 + - uid: 8343 components: - type: Transform - pos: -42.5,0.5 + pos: -39.5,-3.5 parent: 2 - - uid: 7206 + - uid: 8344 components: - type: Transform - pos: -41.5,-0.5 + pos: -39.5,5.5 parent: 2 - - uid: 7207 + - uid: 8345 components: - type: Transform - pos: -41.5,-1.5 + pos: -39.5,6.5 parent: 2 - - uid: 7208 + - uid: 8346 components: - type: Transform - pos: -38.5,-0.5 + pos: -41.5,-3.5 parent: 2 - - uid: 7209 + - uid: 8347 components: - type: Transform - pos: -43.5,-2.5 + pos: -37.5,5.5 parent: 2 - - uid: 7210 + - uid: 8356 components: - type: Transform - pos: -38.5,0.5 + pos: 23.5,15.5 parent: 2 - - uid: 7211 + - uid: 8357 components: - type: Transform - pos: -38.5,1.5 + pos: 23.5,14.5 parent: 2 - - uid: 7212 + - uid: 8411 components: - type: Transform - pos: -39.5,-0.5 + pos: -24.5,-36.5 parent: 2 - - uid: 7213 + - uid: 8519 components: - type: Transform - pos: -39.5,-1.5 + pos: 21.5,9.5 parent: 2 - - uid: 7214 + - uid: 8520 components: - type: Transform - pos: -37.5,-0.5 + pos: -6.5,-15.5 parent: 2 - - uid: 7215 + - uid: 8521 components: - type: Transform - pos: -37.5,-2.5 + pos: -4.5,-15.5 parent: 2 - - uid: 7216 + - uid: 8522 components: - type: Transform - pos: -37.5,-3.5 + pos: -5.5,-15.5 parent: 2 - - uid: 7217 + - uid: 8523 components: - type: Transform - pos: -37.5,-1.5 + pos: -3.5,-15.5 parent: 2 - - uid: 7218 + - uid: 8524 components: - type: Transform - pos: -35.5,-0.5 + pos: -2.5,-15.5 parent: 2 - - uid: 7219 + - uid: 8525 components: - type: Transform - pos: -35.5,-2.5 + pos: -1.5,-15.5 parent: 2 - - uid: 7220 + - uid: 8526 components: - type: Transform - pos: -35.5,-1.5 + pos: 0.5,-15.5 parent: 2 - - uid: 7221 + - uid: 8527 components: - type: Transform - pos: -33.5,-0.5 + pos: 1.5,-15.5 parent: 2 - - uid: 7222 + - uid: 8528 components: - type: Transform - pos: -33.5,-1.5 + pos: 2.5,-15.5 parent: 2 - - uid: 7223 + - uid: 8529 components: - type: Transform - pos: -33.5,-2.5 + pos: 3.5,-15.5 parent: 2 - - uid: 7224 + - uid: 8530 components: - type: Transform - pos: -33.5,-3.5 + pos: 5.5,-15.5 parent: 2 - - uid: 7225 + - uid: 8531 components: - type: Transform - pos: -34.5,-0.5 + pos: -0.5,-15.5 parent: 2 - - uid: 7226 + - uid: 8532 components: - type: Transform - pos: -34.5,1.5 + pos: 6.5,-15.5 parent: 2 - - uid: 7227 + - uid: 8533 components: - type: Transform - pos: -34.5,0.5 + pos: 8.5,-15.5 parent: 2 - - uid: 7228 + - uid: 8534 components: - type: Transform - pos: -35.5,4.5 + pos: 7.5,-15.5 parent: 2 - - uid: 7229 + - uid: 8535 components: - type: Transform - pos: -35.5,3.5 + pos: 10.5,-15.5 parent: 2 - - uid: 7230 + - uid: 8536 components: - type: Transform - pos: -33.5,6.5 + pos: 11.5,-15.5 parent: 2 - - uid: 7231 + - uid: 8537 components: - type: Transform - pos: -33.5,4.5 + pos: 12.5,-15.5 parent: 2 - - uid: 7232 + - uid: 8538 components: - type: Transform - pos: -33.5,3.5 + pos: 13.5,-15.5 parent: 2 - - uid: 7233 + - uid: 8539 components: - type: Transform - pos: -33.5,5.5 + pos: 4.5,-15.5 parent: 2 - - uid: 7234 + - uid: 8540 components: - type: Transform - pos: -34.5,3.5 + pos: 9.5,-15.5 parent: 2 - - uid: 7235 + - uid: 8541 components: - type: Transform - pos: -34.5,2.5 + pos: 14.5,-15.5 parent: 2 - - uid: 7236 + - uid: 8542 components: - type: Transform - pos: -43.5,-3.5 + pos: 15.5,-15.5 parent: 2 - - uid: 7237 + - uid: 8543 components: - type: Transform - pos: -35.5,5.5 + pos: 16.5,-15.5 parent: 2 - - uid: 7238 + - uid: 8544 components: - type: Transform - pos: -42.5,3.5 + pos: 17.5,-15.5 parent: 2 - - uid: 7239 + - uid: 8545 components: - type: Transform - pos: -43.5,3.5 + pos: 18.5,-15.5 parent: 2 - - uid: 7240 + - uid: 8546 components: - type: Transform - pos: -43.5,4.5 + pos: 19.5,-15.5 parent: 2 - - uid: 7241 + - uid: 8547 components: - type: Transform - pos: -41.5,3.5 + pos: 20.5,-15.5 parent: 2 - - uid: 7242 + - uid: 8548 components: - type: Transform - pos: -41.5,5.5 + pos: 20.5,-16.5 parent: 2 - - uid: 7243 + - uid: 8549 components: - type: Transform - pos: -41.5,4.5 + pos: 20.5,-18.5 parent: 2 - - uid: 7244 + - uid: 8550 components: - type: Transform - pos: -41.5,6.5 + pos: 20.5,-17.5 parent: 2 - - uid: 7245 + - uid: 8551 components: - type: Transform - pos: -43.5,5.5 + pos: 21.5,-18.5 parent: 2 - - uid: 7246 + - uid: 8552 components: - type: Transform - pos: -37.5,3.5 + pos: 21.5,-20.5 parent: 2 - - uid: 7247 + - uid: 8553 components: - type: Transform - pos: -39.5,3.5 + pos: 21.5,-21.5 parent: 2 - - uid: 7248 + - uid: 8554 components: - type: Transform - pos: -38.5,3.5 + pos: 21.5,-22.5 parent: 2 - - uid: 7249 + - uid: 8555 components: - type: Transform - pos: -39.5,-2.5 + pos: 21.5,-23.5 parent: 2 - - uid: 7250 + - uid: 8556 components: - type: Transform - pos: -41.5,-2.5 + pos: 21.5,-24.5 parent: 2 - - uid: 7252 + - uid: 8557 components: - type: Transform - pos: -43.5,1.5 + pos: 21.5,-19.5 parent: 2 - - uid: 7509 + - uid: 8558 components: - type: Transform - pos: 11.5,-39.5 + pos: 20.5,-24.5 parent: 2 - - uid: 7512 + - uid: 8559 components: - type: Transform - pos: 5.5,-37.5 + pos: 20.5,-14.5 parent: 2 - - uid: 7513 + - uid: 8560 components: - type: Transform - pos: 5.5,-39.5 + pos: 20.5,-12.5 parent: 2 - - uid: 7514 + - uid: 8561 components: - type: Transform - pos: 5.5,-40.5 + pos: 20.5,-13.5 parent: 2 - - uid: 7515 + - uid: 8562 components: - type: Transform - pos: 5.5,-38.5 + pos: 20.5,-11.5 parent: 2 - - uid: 7516 + - uid: 8563 components: - type: Transform - pos: 7.5,-40.5 + pos: 20.5,-10.5 parent: 2 - - uid: 7517 + - uid: 8564 components: - type: Transform - pos: 7.5,-39.5 + pos: 20.5,-9.5 parent: 2 - - uid: 7518 + - uid: 8565 components: - type: Transform - pos: 6.5,-40.5 + pos: 20.5,-8.5 parent: 2 - - uid: 7519 + - uid: 8566 components: - type: Transform - pos: 9.5,-38.5 + pos: 20.5,-6.5 parent: 2 - - uid: 7520 + - uid: 8567 components: - type: Transform - pos: 9.5,-40.5 + pos: 20.5,-5.5 parent: 2 - - uid: 7521 + - uid: 8568 components: - type: Transform - pos: 9.5,-39.5 + pos: 20.5,-4.5 parent: 2 - - uid: 7522 + - uid: 8569 components: - type: Transform - pos: 10.5,-40.5 + pos: 20.5,-3.5 parent: 2 - - uid: 7523 + - uid: 8570 components: - type: Transform - pos: 10.5,-41.5 + pos: 20.5,-7.5 parent: 2 - - uid: 7524 + - uid: 8571 components: - type: Transform - pos: 11.5,-38.5 + pos: 20.5,-2.5 parent: 2 - - uid: 7525 + - uid: 8572 components: - type: Transform - pos: 11.5,-37.5 + pos: 20.5,-1.5 parent: 2 - - uid: 7526 + - uid: 8573 components: - type: Transform - pos: 13.5,-38.5 + pos: 20.5,0.5 parent: 2 - - uid: 7527 + - uid: 8574 components: - type: Transform - pos: 13.5,-39.5 + pos: 20.5,1.5 parent: 2 - - uid: 7528 + - uid: 8575 components: - type: Transform - pos: 13.5,-40.5 + pos: 20.5,2.5 parent: 2 - - uid: 7529 + - uid: 8576 components: - type: Transform - pos: 15.5,-46.5 + pos: 20.5,-0.5 parent: 2 - - uid: 7530 + - uid: 8577 components: - type: Transform - pos: 14.5,-40.5 + pos: 20.5,4.5 parent: 2 - - uid: 7531 + - uid: 8578 components: - type: Transform - pos: 14.5,-41.5 + pos: 20.5,5.5 parent: 2 - - uid: 7532 + - uid: 8579 components: - type: Transform - pos: 14.5,-43.5 + pos: 20.5,6.5 parent: 2 - - uid: 7533 + - uid: 8580 components: - type: Transform - pos: 14.5,-44.5 + pos: 20.5,3.5 parent: 2 - - uid: 7534 + - uid: 8581 components: - type: Transform - pos: 14.5,-42.5 + pos: 20.5,8.5 parent: 2 - - uid: 7535 + - uid: 8582 components: - type: Transform - pos: 15.5,-44.5 + pos: 20.5,7.5 parent: 2 - - uid: 7536 + - uid: 8583 components: - type: Transform - pos: 13.5,-44.5 + pos: 19.5,8.5 parent: 2 - - uid: 7537 + - uid: 8584 components: - type: Transform - pos: 13.5,-45.5 + pos: 18.5,8.5 parent: 2 - - uid: 7538 + - uid: 8585 components: - type: Transform - pos: 13.5,-46.5 + pos: 17.5,8.5 parent: 2 - - uid: 7539 + - uid: 8586 components: - type: Transform - pos: 15.5,-45.5 + pos: 16.5,8.5 parent: 2 - - uid: 7540 + - uid: 8587 components: - type: Transform - pos: 11.5,-44.5 + pos: 15.5,8.5 parent: 2 - - uid: 7541 + - uid: 8588 components: - type: Transform - pos: 11.5,-45.5 + pos: 14.5,8.5 parent: 2 - - uid: 7542 + - uid: 8589 components: - type: Transform - pos: 11.5,-47.5 + pos: 13.5,8.5 parent: 2 - - uid: 7543 + - uid: 8590 components: - type: Transform - pos: 11.5,-46.5 + pos: 12.5,8.5 parent: 2 - - uid: 7544 + - uid: 8591 components: - type: Transform - pos: 9.5,-44.5 + pos: 10.5,8.5 parent: 2 - - uid: 7545 + - uid: 8592 components: - type: Transform - pos: 9.5,-46.5 + pos: 8.5,8.5 parent: 2 - - uid: 7546 + - uid: 8593 components: - type: Transform - pos: 9.5,-45.5 + pos: 7.5,8.5 parent: 2 - - uid: 7547 + - uid: 8594 components: - type: Transform - pos: 5.5,-44.5 + pos: 6.5,8.5 parent: 2 - - uid: 7548 + - uid: 8595 components: - type: Transform - pos: 7.5,-44.5 + pos: 5.5,8.5 parent: 2 - - uid: 7549 + - uid: 8596 components: - type: Transform - pos: 7.5,-46.5 + pos: 4.5,8.5 parent: 2 - - uid: 7550 + - uid: 8597 components: - type: Transform - pos: 7.5,-47.5 + pos: 3.5,8.5 parent: 2 - - uid: 7551 + - uid: 8598 components: - type: Transform - pos: 7.5,-45.5 + pos: 9.5,8.5 parent: 2 - - uid: 7552 + - uid: 8599 components: - type: Transform - pos: 5.5,-46.5 + pos: 2.5,8.5 parent: 2 - - uid: 7553 + - uid: 8600 components: - type: Transform - pos: 5.5,-45.5 + pos: 0.5,8.5 parent: 2 - - uid: 7554 + - uid: 8601 components: - type: Transform - pos: 6.5,-44.5 + pos: 1.5,8.5 parent: 2 - - uid: 7555 + - uid: 8602 components: - type: Transform - pos: 10.5,-43.5 + pos: -0.5,8.5 parent: 2 - - uid: 7556 + - uid: 8603 components: - type: Transform - pos: 10.5,-42.5 + pos: -2.5,8.5 parent: 2 - - uid: 7557 + - uid: 8604 components: - type: Transform - pos: 9.5,-42.5 + pos: -1.5,8.5 parent: 2 - - uid: 7559 + - uid: 8605 components: - type: Transform - pos: 17.5,-44.5 + pos: -3.5,8.5 parent: 2 - - uid: 7560 + - uid: 8606 components: - type: Transform - pos: 17.5,-46.5 + pos: -5.5,8.5 parent: 2 - - uid: 7561 + - uid: 8607 components: - type: Transform - pos: 17.5,-45.5 + pos: -4.5,8.5 parent: 2 - - uid: 7562 + - uid: 8608 components: - type: Transform - pos: 19.5,-44.5 + pos: -6.5,8.5 parent: 2 - - uid: 7563 + - uid: 8609 components: - type: Transform - pos: 19.5,-46.5 + pos: -7.5,8.5 parent: 2 - - uid: 7564 + - uid: 8610 components: - type: Transform - pos: 19.5,-45.5 + pos: -8.5,8.5 parent: 2 - - uid: 7565 + - uid: 8611 components: - type: Transform - pos: 19.5,-47.5 + pos: 11.5,8.5 parent: 2 - - uid: 7566 + - uid: 8612 components: - type: Transform - pos: 18.5,-43.5 + pos: -8.5,7.5 parent: 2 - - uid: 7567 + - uid: 8613 components: - type: Transform - pos: 18.5,-42.5 + pos: -8.5,5.5 parent: 2 - - uid: 7568 + - uid: 8614 components: - type: Transform - pos: 17.5,-42.5 + pos: -8.5,4.5 parent: 2 - - uid: 7569 + - uid: 8615 components: - type: Transform - pos: 19.5,-42.5 + pos: -8.5,6.5 parent: 2 - - uid: 7570 + - uid: 8616 components: - type: Transform - pos: 18.5,-40.5 + pos: -8.5,3.5 parent: 2 - - uid: 7571 + - uid: 8617 components: - type: Transform - pos: 17.5,-40.5 + pos: -8.5,2.5 parent: 2 - - uid: 7572 + - uid: 8618 components: - type: Transform - pos: 17.5,-39.5 + pos: -8.5,1.5 parent: 2 - - uid: 7573 + - uid: 8619 components: - type: Transform - pos: 17.5,-38.5 + pos: -8.5,0.5 parent: 2 - - uid: 7574 + - uid: 8620 components: - type: Transform - pos: 17.5,-37.5 + pos: -8.5,-0.5 parent: 2 - - uid: 7575 + - uid: 8621 components: - type: Transform - pos: 19.5,-38.5 + pos: -8.5,-1.5 parent: 2 - - uid: 7576 + - uid: 8622 components: - type: Transform - pos: 19.5,-39.5 + pos: -8.5,-2.5 parent: 2 - - uid: 7577 + - uid: 8623 components: - type: Transform - pos: 19.5,-40.5 + pos: -8.5,-4.5 parent: 2 - - uid: 8356 + - uid: 8624 components: - type: Transform - pos: 23.5,15.5 + pos: -8.5,-5.5 parent: 2 - - uid: 8357 + - uid: 8625 components: - type: Transform - pos: 23.5,14.5 + pos: -8.5,-6.5 parent: 2 - - uid: 8411 + - uid: 8626 components: - type: Transform - pos: -24.5,-36.5 + pos: -8.5,-7.5 parent: 2 - - uid: 8519 + - uid: 8627 components: - type: Transform - pos: 21.5,9.5 + pos: -8.5,-8.5 parent: 2 - - uid: 8520 + - uid: 8628 components: - type: Transform - pos: -6.5,-15.5 + pos: -8.5,-9.5 parent: 2 - - uid: 8521 + - uid: 8629 components: - type: Transform - pos: -4.5,-15.5 + pos: -8.5,-10.5 parent: 2 - - uid: 8522 + - uid: 8630 components: - type: Transform - pos: -5.5,-15.5 + pos: -8.5,-11.5 parent: 2 - - uid: 8523 + - uid: 8631 components: - type: Transform - pos: -3.5,-15.5 + pos: -8.5,-12.5 parent: 2 - - uid: 8524 + - uid: 8632 components: - type: Transform - pos: -2.5,-15.5 + pos: -8.5,-13.5 parent: 2 - - uid: 8525 + - uid: 8633 components: - type: Transform - pos: -1.5,-15.5 + pos: -8.5,-3.5 parent: 2 - - uid: 8526 + - uid: 8634 components: - type: Transform - pos: 0.5,-15.5 + pos: -8.5,-14.5 parent: 2 - - uid: 8527 + - uid: 8639 components: - type: Transform - pos: 1.5,-15.5 + pos: -9.5,7.5 parent: 2 - - uid: 8528 + - uid: 8640 components: - type: Transform - pos: 2.5,-15.5 + pos: -11.5,7.5 parent: 2 - - uid: 8529 + - uid: 8641 components: - type: Transform - pos: 3.5,-15.5 + pos: -10.5,7.5 parent: 2 - - uid: 8530 + - uid: 8655 components: - type: Transform - pos: 5.5,-15.5 + pos: -20.5,3.5 parent: 2 - - uid: 8531 + - uid: 8656 components: - type: Transform - pos: -0.5,-15.5 + pos: -20.5,2.5 parent: 2 - - uid: 8532 + - uid: 8657 components: - type: Transform - pos: 6.5,-15.5 + pos: -20.5,1.5 parent: 2 - - uid: 8533 + - uid: 8658 components: - type: Transform - pos: 8.5,-15.5 + pos: -20.5,4.5 parent: 2 - - uid: 8534 + - uid: 8659 components: - type: Transform - pos: 7.5,-15.5 + pos: -21.5,1.5 parent: 2 - - uid: 8535 + - uid: 8660 components: - type: Transform - pos: 10.5,-15.5 + pos: -23.5,1.5 parent: 2 - - uid: 8536 + - uid: 8661 components: - type: Transform - pos: 11.5,-15.5 + pos: -22.5,1.5 parent: 2 - - uid: 8537 + - uid: 8662 components: - type: Transform - pos: 12.5,-15.5 + pos: -24.5,1.5 parent: 2 - - uid: 8538 + - uid: 8663 components: - type: Transform - pos: 13.5,-15.5 + pos: -25.5,1.5 parent: 2 - - uid: 8539 + - uid: 8664 components: - type: Transform - pos: 4.5,-15.5 + pos: -25.5,0.5 parent: 2 - - uid: 8540 + - uid: 8665 components: - type: Transform - pos: 9.5,-15.5 + pos: -25.5,-1.5 parent: 2 - - uid: 8541 + - uid: 8666 components: - type: Transform - pos: 14.5,-15.5 + pos: -25.5,-2.5 parent: 2 - - uid: 8542 + - uid: 8667 components: - type: Transform - pos: 15.5,-15.5 + pos: -25.5,-3.5 parent: 2 - - uid: 8543 + - uid: 8668 components: - type: Transform - pos: 16.5,-15.5 + pos: -25.5,-4.5 parent: 2 - - uid: 8544 + - uid: 8669 components: - type: Transform - pos: 17.5,-15.5 + pos: -25.5,-0.5 parent: 2 - - uid: 8545 + - uid: 8670 components: - type: Transform - pos: 18.5,-15.5 + pos: -25.5,-6.5 parent: 2 - - uid: 8546 + - uid: 8671 components: - type: Transform - pos: 19.5,-15.5 + pos: -25.5,-5.5 parent: 2 - - uid: 8547 + - uid: 8672 components: - type: Transform - pos: 20.5,-15.5 + pos: -25.5,-7.5 parent: 2 - - uid: 8548 + - uid: 8673 components: - type: Transform - pos: 20.5,-16.5 + pos: -3.5,9.5 parent: 2 - - uid: 8549 + - uid: 8674 components: - type: Transform - pos: 20.5,-18.5 + pos: -3.5,10.5 parent: 2 - - uid: 8550 + - uid: 8675 components: - type: Transform - pos: 20.5,-17.5 + pos: -3.5,12.5 parent: 2 - - uid: 8551 + - uid: 8676 components: - type: Transform - pos: 21.5,-18.5 + pos: -3.5,13.5 parent: 2 - - uid: 8552 + - uid: 8677 components: - type: Transform - pos: 21.5,-20.5 + pos: -3.5,11.5 parent: 2 - - uid: 8553 + - uid: 8678 components: - type: Transform - pos: 21.5,-21.5 + pos: -3.5,14.5 parent: 2 - - uid: 8554 + - uid: 8679 components: - type: Transform - pos: 21.5,-22.5 + pos: -3.5,15.5 parent: 2 - - uid: 8555 + - uid: 8680 components: - type: Transform - pos: 21.5,-23.5 + pos: -3.5,19.5 parent: 2 - - uid: 8556 + - uid: 8681 components: - type: Transform - pos: 21.5,-24.5 + pos: -3.5,16.5 parent: 2 - - uid: 8557 + - uid: 8682 components: - type: Transform - pos: 21.5,-19.5 + pos: -3.5,20.5 parent: 2 - - uid: 8558 + - uid: 8683 components: - type: Transform - pos: 20.5,-24.5 + pos: -3.5,21.5 parent: 2 - - uid: 8559 + - uid: 8684 components: - type: Transform - pos: 20.5,-14.5 + pos: -3.5,17.5 parent: 2 - - uid: 8560 + - uid: 8685 components: - type: Transform - pos: 20.5,-12.5 + pos: -3.5,22.5 parent: 2 - - uid: 8561 + - uid: 8686 components: - type: Transform - pos: 20.5,-13.5 + pos: -3.5,23.5 parent: 2 - - uid: 8562 + - uid: 8687 components: - type: Transform - pos: 20.5,-11.5 + pos: -3.5,18.5 parent: 2 - - uid: 8563 + - uid: 8688 components: - type: Transform - pos: 20.5,-10.5 + pos: -3.5,26.5 parent: 2 - - uid: 8564 + - uid: 8689 components: - type: Transform - pos: 20.5,-9.5 + pos: -3.5,24.5 parent: 2 - - uid: 8565 + - uid: 8690 components: - type: Transform - pos: 20.5,-8.5 + pos: -3.5,29.5 parent: 2 - - uid: 8566 + - uid: 8691 components: - type: Transform - pos: 20.5,-6.5 + pos: -3.5,27.5 parent: 2 - - uid: 8567 + - uid: 8692 components: - type: Transform - pos: 20.5,-5.5 + pos: -3.5,25.5 parent: 2 - - uid: 8568 + - uid: 8693 components: - type: Transform - pos: 20.5,-4.5 + pos: -3.5,28.5 parent: 2 - - uid: 8569 + - uid: 8705 components: - type: Transform - pos: 20.5,-3.5 + pos: -16.5,29.5 parent: 2 - - uid: 8570 + - uid: 8706 components: - type: Transform - pos: 20.5,-7.5 + pos: -16.5,30.5 parent: 2 - - uid: 8571 + - uid: 8708 components: - type: Transform - pos: 20.5,-2.5 + pos: -17.5,29.5 parent: 2 - - uid: 8572 + - uid: 8709 components: - type: Transform - pos: 20.5,-1.5 + pos: -19.5,29.5 parent: 2 - - uid: 8573 + - uid: 8710 components: - type: Transform - pos: 20.5,0.5 + pos: -20.5,29.5 parent: 2 - - uid: 8574 + - uid: 8711 components: - type: Transform - pos: 20.5,1.5 + pos: -18.5,29.5 parent: 2 - - uid: 8575 + - uid: 8714 components: - type: Transform - pos: 20.5,2.5 + pos: 22.5,9.5 parent: 2 - - uid: 8576 + - uid: 8715 components: - type: Transform - pos: 20.5,-0.5 + pos: 20.5,9.5 parent: 2 - - uid: 8577 + - uid: 8716 components: - type: Transform - pos: 20.5,4.5 + pos: 23.5,9.5 parent: 2 - - uid: 8578 + - uid: 8717 components: - type: Transform - pos: 20.5,5.5 + pos: 23.5,10.5 parent: 2 - - uid: 8579 + - uid: 8718 components: - type: Transform - pos: 20.5,6.5 + pos: 23.5,12.5 parent: 2 - - uid: 8580 + - uid: 8720 components: - type: Transform - pos: 20.5,3.5 + pos: -37.5,4.5 parent: 2 - - uid: 8581 + - uid: 8730 components: - type: Transform - pos: 20.5,8.5 + pos: 23.5,16.5 parent: 2 - - uid: 8582 + - uid: 8731 components: - type: Transform - pos: 20.5,7.5 + pos: 23.5,17.5 parent: 2 - - uid: 8583 + - uid: 8732 components: - type: Transform - pos: 19.5,8.5 + pos: 26.5,17.5 parent: 2 - - uid: 8584 + - uid: 8735 components: - type: Transform - pos: 18.5,8.5 + pos: 23.5,11.5 parent: 2 - - uid: 8585 + - uid: 8736 components: - type: Transform - pos: 17.5,8.5 + pos: 25.5,17.5 parent: 2 - - uid: 8586 + - uid: 8737 components: - type: Transform - pos: 16.5,8.5 + pos: 26.5,18.5 parent: 2 - - uid: 8587 + - uid: 8738 components: - type: Transform - pos: 15.5,8.5 + pos: 24.5,18.5 parent: 2 - - uid: 8588 + - uid: 8739 components: - type: Transform - pos: 14.5,8.5 + pos: 24.5,19.5 parent: 2 - - uid: 8589 + - uid: 8740 components: - type: Transform - pos: 13.5,8.5 + pos: 24.5,20.5 parent: 2 - - uid: 8590 + - uid: 8741 components: - type: Transform - pos: 12.5,8.5 + pos: 24.5,21.5 parent: 2 - - uid: 8591 + - uid: 8742 components: - type: Transform - pos: 10.5,8.5 + pos: 24.5,22.5 parent: 2 - - uid: 8592 + - uid: 8743 components: - type: Transform - pos: 8.5,8.5 + pos: 24.5,23.5 parent: 2 - - uid: 8593 + - uid: 8744 components: - type: Transform - pos: 7.5,8.5 + pos: 24.5,24.5 parent: 2 - - uid: 8594 + - uid: 8745 components: - type: Transform - pos: 6.5,8.5 + pos: 24.5,25.5 parent: 2 - - uid: 8595 + - uid: 8746 components: - type: Transform - pos: 5.5,8.5 + pos: 24.5,26.5 parent: 2 - - uid: 8596 + - uid: 8747 components: - type: Transform - pos: 4.5,8.5 + pos: 24.5,27.5 parent: 2 - - uid: 8597 + - uid: 8748 components: - type: Transform - pos: 3.5,8.5 + pos: 24.5,28.5 parent: 2 - - uid: 8598 + - uid: 8749 components: - type: Transform - pos: 9.5,8.5 + pos: 24.5,29.5 parent: 2 - - uid: 8599 + - uid: 8750 components: - type: Transform - pos: 2.5,8.5 + pos: 25.5,29.5 parent: 2 - - uid: 8600 + - uid: 8751 components: - type: Transform - pos: 0.5,8.5 + pos: 26.5,29.5 parent: 2 - - uid: 8601 + - uid: 8752 components: - type: Transform - pos: 1.5,8.5 + pos: 27.5,29.5 parent: 2 - - uid: 8602 + - uid: 8753 components: - type: Transform - pos: -0.5,8.5 + pos: 27.5,28.5 parent: 2 - - uid: 8603 + - uid: 8754 components: - type: Transform - pos: -2.5,8.5 + pos: -3.5,30.5 parent: 2 - - uid: 8604 + - uid: 8760 components: - type: Transform - pos: -1.5,8.5 + pos: -6.5,32.5 parent: 2 - - uid: 8605 + - uid: 8762 components: - type: Transform - pos: -3.5,8.5 + pos: -6.5,33.5 parent: 2 - - uid: 8606 + - uid: 8763 components: - type: Transform - pos: -5.5,8.5 + pos: -6.5,35.5 parent: 2 - - uid: 8607 + - uid: 8764 components: - type: Transform - pos: -4.5,8.5 + pos: -6.5,36.5 parent: 2 - - uid: 8608 + - uid: 8765 components: - type: Transform - pos: -6.5,8.5 + pos: -6.5,34.5 parent: 2 - - uid: 8609 + - uid: 8766 components: - type: Transform - pos: -7.5,8.5 + pos: -6.5,37.5 parent: 2 - - uid: 8610 + - uid: 8767 components: - type: Transform - pos: -8.5,8.5 + pos: -6.5,38.5 parent: 2 - - uid: 8611 + - uid: 8768 components: - type: Transform - pos: 11.5,8.5 + pos: -6.5,39.5 parent: 2 - - uid: 8612 + - uid: 8769 components: - type: Transform - pos: -8.5,7.5 + pos: -6.5,40.5 parent: 2 - - uid: 8613 + - uid: 8770 components: - type: Transform - pos: -8.5,5.5 + pos: -6.5,41.5 parent: 2 - - uid: 8614 + - uid: 8771 components: - type: Transform - pos: -8.5,4.5 + pos: -6.5,42.5 parent: 2 - - uid: 8615 + - uid: 8772 components: - type: Transform - pos: -8.5,6.5 + pos: -6.5,44.5 parent: 2 - - uid: 8616 + - uid: 8773 components: - type: Transform - pos: -8.5,3.5 + pos: -6.5,43.5 parent: 2 - - uid: 8617 + - uid: 8774 components: - type: Transform - pos: -8.5,2.5 + pos: -7.5,44.5 parent: 2 - - uid: 8618 + - uid: 8775 components: - type: Transform - pos: -8.5,1.5 + pos: -7.5,46.5 parent: 2 - - uid: 8619 + - uid: 8776 components: - type: Transform - pos: -8.5,0.5 + pos: -7.5,47.5 parent: 2 - - uid: 8620 + - uid: 8777 components: - type: Transform - pos: -8.5,-0.5 + pos: -7.5,45.5 parent: 2 - - uid: 8621 + - uid: 8811 components: - type: Transform - pos: -8.5,-1.5 + pos: -39.5,33.5 parent: 2 - - uid: 8622 + - uid: 8813 components: - type: Transform - pos: -8.5,-2.5 + pos: -40.5,33.5 parent: 2 - - uid: 8623 + - uid: 8814 components: - type: Transform - pos: -8.5,-4.5 + pos: -41.5,33.5 parent: 2 - - uid: 8624 + - uid: 8815 components: - type: Transform - pos: -8.5,-5.5 + pos: -43.5,33.5 parent: 2 - - uid: 8625 + - uid: 8816 components: - type: Transform - pos: -8.5,-6.5 + pos: -44.5,33.5 parent: 2 - - uid: 8626 + - uid: 8817 components: - type: Transform - pos: -8.5,-7.5 + pos: -42.5,33.5 parent: 2 - - uid: 8627 + - uid: 8818 components: - type: Transform - pos: -8.5,-8.5 + pos: -44.5,34.5 parent: 2 - - uid: 8628 + - uid: 8819 components: - type: Transform - pos: -8.5,-9.5 + pos: -44.5,35.5 parent: 2 - - uid: 8629 + - uid: 8820 components: - type: Transform - pos: -8.5,-10.5 + pos: -44.5,36.5 parent: 2 - - uid: 8630 + - uid: 8821 components: - type: Transform - pos: -8.5,-11.5 + pos: -44.5,37.5 parent: 2 - - uid: 8631 + - uid: 8822 components: - type: Transform - pos: -8.5,-12.5 + pos: -44.5,38.5 parent: 2 - - uid: 8632 + - uid: 8823 components: - type: Transform - pos: -8.5,-13.5 + pos: -44.5,39.5 parent: 2 - - uid: 8633 + - uid: 8824 components: - type: Transform - pos: -8.5,-3.5 + pos: -44.5,40.5 parent: 2 - - uid: 8634 + - uid: 8825 components: - type: Transform - pos: -8.5,-14.5 + pos: -45.5,40.5 parent: 2 - - uid: 8639 + - uid: 8826 components: - type: Transform - pos: -9.5,7.5 + pos: -47.5,40.5 parent: 2 - - uid: 8640 + - uid: 8827 components: - type: Transform - pos: -11.5,7.5 + pos: -48.5,40.5 parent: 2 - - uid: 8641 + - uid: 8828 components: - type: Transform - pos: -10.5,7.5 + pos: -46.5,40.5 parent: 2 - - uid: 8642 + - uid: 8829 components: - type: Transform - pos: -11.5,8.5 + pos: -49.5,40.5 parent: 2 - - uid: 8643 + - uid: 8830 components: - type: Transform - pos: -13.5,8.5 + pos: -50.5,40.5 parent: 2 - - uid: 8644 + - uid: 8831 components: - type: Transform - pos: -14.5,8.5 + pos: -50.5,42.5 parent: 2 - - uid: 8645 + - uid: 8832 components: - type: Transform - pos: -12.5,8.5 + pos: -50.5,41.5 parent: 2 - - uid: 8646 + - uid: 8833 components: - type: Transform - pos: -15.5,8.5 + pos: -50.5,43.5 parent: 2 - - uid: 8647 + - uid: 8834 components: - type: Transform - pos: -17.5,8.5 + pos: -50.5,44.5 parent: 2 - - uid: 8648 + - uid: 8835 components: - type: Transform - pos: -18.5,8.5 + pos: 21.5,-42.5 parent: 2 - - uid: 8649 + - uid: 8836 components: - type: Transform - pos: -19.5,8.5 + pos: 23.5,-42.5 parent: 2 - - uid: 8650 + - uid: 8837 components: - type: Transform - pos: -20.5,8.5 + pos: 22.5,-42.5 parent: 2 - - uid: 8651 + - uid: 8839 components: - type: Transform - pos: -16.5,8.5 + pos: 23.5,-41.5 parent: 2 - - uid: 8652 + - uid: 8840 components: - type: Transform - pos: -20.5,7.5 + pos: 24.5,-41.5 parent: 2 - - uid: 8653 + - uid: 8850 components: - type: Transform - pos: -20.5,6.5 + pos: 21.5,-15.5 parent: 2 - - uid: 8654 + - uid: 8852 components: - type: Transform - pos: -20.5,5.5 + pos: 23.5,-15.5 parent: 2 - - uid: 8655 + - uid: 8853 components: - type: Transform - pos: -20.5,3.5 + pos: 24.5,-15.5 parent: 2 - - uid: 8656 + - uid: 8854 components: - type: Transform - pos: -20.5,2.5 + pos: 22.5,-15.5 parent: 2 - - uid: 8657 + - uid: 8855 components: - type: Transform - pos: -20.5,1.5 + pos: 24.5,-16.5 parent: 2 - - uid: 8658 + - uid: 8856 components: - type: Transform - pos: -20.5,4.5 + pos: 24.5,-18.5 parent: 2 - - uid: 8659 + - uid: 8857 components: - type: Transform - pos: -21.5,1.5 + pos: 24.5,-19.5 parent: 2 - - uid: 8660 + - uid: 8858 components: - type: Transform - pos: -23.5,1.5 + pos: 24.5,-17.5 parent: 2 - - uid: 8661 + - uid: 8859 components: - type: Transform - pos: -22.5,1.5 + pos: 26.5,-19.5 parent: 2 - - uid: 8662 + - uid: 8860 components: - type: Transform - pos: -24.5,1.5 + pos: 28.5,-19.5 parent: 2 - - uid: 8663 + - uid: 8861 components: - type: Transform - pos: -25.5,1.5 + pos: 29.5,-19.5 parent: 2 - - uid: 8664 + - uid: 8862 components: - type: Transform - pos: -25.5,0.5 + pos: 30.5,-19.5 parent: 2 - - uid: 8665 + - uid: 8863 components: - type: Transform - pos: -25.5,-1.5 + pos: 27.5,-19.5 parent: 2 - - uid: 8666 + - uid: 8864 components: - type: Transform - pos: -25.5,-2.5 + pos: 31.5,-19.5 parent: 2 - - uid: 8667 + - uid: 8865 components: - type: Transform - pos: -25.5,-3.5 + pos: 25.5,-19.5 parent: 2 - - uid: 8668 + - uid: 8866 components: - type: Transform - pos: -25.5,-4.5 + pos: 31.5,-17.5 parent: 2 - - uid: 8669 + - uid: 8867 components: - type: Transform - pos: -25.5,-0.5 + pos: 31.5,-18.5 parent: 2 - - uid: 8670 + - uid: 8868 components: - type: Transform - pos: -25.5,-6.5 + pos: 31.5,-15.5 parent: 2 - - uid: 8671 + - uid: 8869 components: - type: Transform - pos: -25.5,-5.5 + pos: 31.5,-16.5 parent: 2 - - uid: 8672 + - uid: 9264 components: - type: Transform - pos: -25.5,-7.5 + pos: -3.5,31.5 parent: 2 - - uid: 8673 + - uid: 9265 components: - type: Transform - pos: -3.5,9.5 + pos: -4.5,31.5 parent: 2 - - uid: 8674 + - uid: 9266 components: - type: Transform - pos: -3.5,10.5 + pos: -5.5,31.5 parent: 2 - - uid: 8675 + - uid: 9267 components: - type: Transform - pos: -3.5,12.5 + pos: -7.5,31.5 parent: 2 - - uid: 8676 + - uid: 9268 components: - type: Transform - pos: -3.5,13.5 + pos: -8.5,31.5 parent: 2 - - uid: 8677 + - uid: 9269 components: - type: Transform - pos: -3.5,11.5 + pos: -9.5,31.5 parent: 2 - - uid: 8678 + - uid: 9270 components: - type: Transform - pos: -3.5,14.5 + pos: -10.5,31.5 parent: 2 - - uid: 8679 + - uid: 9271 components: - type: Transform - pos: -3.5,15.5 + pos: -12.5,31.5 parent: 2 - - uid: 8680 + - uid: 9272 components: - type: Transform - pos: -3.5,19.5 + pos: -11.5,31.5 parent: 2 - - uid: 8681 + - uid: 9273 components: - type: Transform - pos: -3.5,16.5 + pos: -13.5,31.5 parent: 2 - - uid: 8682 + - uid: 9274 components: - type: Transform - pos: -3.5,20.5 + pos: -14.5,31.5 parent: 2 - - uid: 8683 + - uid: 9275 components: - type: Transform - pos: -3.5,21.5 + pos: -6.5,31.5 parent: 2 - - uid: 8684 + - uid: 9276 components: - type: Transform - pos: -3.5,17.5 + pos: -17.5,31.5 parent: 2 - - uid: 8685 + - uid: 9277 components: - type: Transform - pos: -3.5,22.5 + pos: -16.5,31.5 parent: 2 - - uid: 8686 + - uid: 9278 components: - type: Transform - pos: -3.5,23.5 + pos: -19.5,31.5 parent: 2 - - uid: 8687 + - uid: 9279 components: - type: Transform - pos: -3.5,18.5 + pos: -18.5,31.5 parent: 2 - - uid: 8688 + - uid: 9280 components: - type: Transform - pos: -3.5,26.5 + pos: -20.5,31.5 parent: 2 - - uid: 8689 + - uid: 9281 components: - type: Transform - pos: -3.5,24.5 + pos: -15.5,31.5 parent: 2 - - uid: 8690 + - uid: 9282 components: - type: Transform - pos: -3.5,29.5 + pos: -20.5,32.5 parent: 2 - - uid: 8691 + - uid: 9283 components: - type: Transform - pos: -3.5,27.5 + pos: -21.5,32.5 parent: 2 - - uid: 8692 + - uid: 9284 components: - type: Transform - pos: -3.5,25.5 + pos: -22.5,32.5 parent: 2 - - uid: 8693 + - uid: 9285 components: - type: Transform - pos: -3.5,28.5 + pos: -23.5,32.5 parent: 2 - - uid: 8705 + - uid: 9286 components: - type: Transform - pos: -16.5,29.5 + pos: -24.5,32.5 parent: 2 - - uid: 8706 + - uid: 9287 components: - type: Transform - pos: -16.5,30.5 + pos: -25.5,32.5 parent: 2 - - uid: 8708 + - uid: 9288 components: - type: Transform - pos: -17.5,29.5 + pos: -26.5,32.5 parent: 2 - - uid: 8709 + - uid: 9289 components: - type: Transform - pos: -19.5,29.5 + pos: -27.5,32.5 parent: 2 - - uid: 8710 + - uid: 9290 components: - type: Transform - pos: -20.5,29.5 + pos: -28.5,32.5 parent: 2 - - uid: 8711 + - uid: 9291 components: - type: Transform - pos: -18.5,29.5 + pos: -30.5,32.5 parent: 2 - - uid: 8714 + - uid: 9292 components: - type: Transform - pos: 22.5,9.5 + pos: -29.5,32.5 parent: 2 - - uid: 8715 + - uid: 9293 components: - type: Transform - pos: 20.5,9.5 + pos: -32.5,32.5 parent: 2 - - uid: 8716 + - uid: 9294 components: - type: Transform - pos: 23.5,9.5 + pos: -31.5,32.5 parent: 2 - - uid: 8717 + - uid: 9295 components: - type: Transform - pos: 23.5,10.5 + pos: -33.5,32.5 parent: 2 - - uid: 8718 + - uid: 9296 components: - type: Transform - pos: 23.5,12.5 + pos: -34.5,32.5 parent: 2 - - uid: 8730 + - uid: 9297 components: - type: Transform - pos: 23.5,16.5 + pos: -36.5,32.5 parent: 2 - - uid: 8731 + - uid: 9298 components: - type: Transform - pos: 23.5,17.5 + pos: -37.5,32.5 parent: 2 - - uid: 8732 + - uid: 9299 components: - type: Transform - pos: 26.5,17.5 + pos: -38.5,32.5 parent: 2 - - uid: 8735 + - uid: 9300 components: - type: Transform - pos: 23.5,11.5 + pos: -35.5,32.5 parent: 2 - - uid: 8736 + - uid: 9301 components: - type: Transform - pos: 25.5,17.5 + pos: -39.5,32.5 parent: 2 - - uid: 8737 + - uid: 9654 components: - type: Transform - pos: 26.5,18.5 + pos: 13.5,-37.5 parent: 2 - - uid: 8738 + - uid: 9669 components: - type: Transform - pos: 24.5,18.5 + pos: -18.5,4.5 parent: 2 - - uid: 8739 + - uid: 11085 components: - type: Transform - pos: 24.5,19.5 + pos: -39.5,4.5 parent: 2 - - uid: 8740 + - uid: 11852 components: - type: Transform - pos: 24.5,20.5 + pos: -29.5,1.5 parent: 2 - - uid: 8741 + - uid: 11856 components: - type: Transform - pos: 24.5,21.5 + pos: -29.5,2.5 parent: 2 - - uid: 8742 + - uid: 11857 components: - type: Transform - pos: 24.5,22.5 + pos: -28.5,2.5 parent: 2 - - uid: 8743 + - uid: 14930 components: - type: Transform - pos: 24.5,23.5 + pos: -19.5,-41.5 parent: 2 - - uid: 8744 + - uid: 14933 components: - type: Transform - pos: 24.5,24.5 + pos: -18.5,-40.5 parent: 2 - - uid: 8745 + - uid: 15653 components: - type: Transform - pos: 24.5,25.5 + pos: -35.5,1.5 parent: 2 - - uid: 8746 + - uid: 15654 components: - type: Transform - pos: 24.5,26.5 + pos: -33.5,1.5 parent: 2 - - uid: 8747 + - uid: 15655 components: - type: Transform - pos: 24.5,27.5 + pos: -36.5,1.5 parent: 2 - - uid: 8748 + - uid: 15656 components: - type: Transform - pos: 24.5,28.5 + pos: -38.5,2.5 parent: 2 - - uid: 8749 + - uid: 15710 components: - type: Transform - pos: 24.5,29.5 + pos: -35.5,-3.5 parent: 2 - - uid: 8750 + - uid: 15727 components: - type: Transform - pos: 25.5,29.5 + pos: 9.5,-47.5 parent: 2 - - uid: 8751 + - uid: 15728 components: - type: Transform - pos: 26.5,29.5 + pos: 5.5,-47.5 parent: 2 - - uid: 8752 + - uid: 15729 components: - type: Transform - pos: 27.5,29.5 + pos: 7.5,-37.5 parent: 2 - - uid: 8753 + - uid: 15730 components: - type: Transform - pos: 27.5,28.5 + pos: 7.5,-38.5 parent: 2 - - uid: 8754 + - uid: 15731 components: - type: Transform - pos: -3.5,30.5 + pos: 9.5,-37.5 parent: 2 - - uid: 8760 + - uid: 15732 components: - type: Transform - pos: -6.5,32.5 + pos: 15.5,-37.5 parent: 2 - - uid: 8762 + - uid: 15733 components: - type: Transform - pos: -6.5,33.5 + pos: 15.5,-38.5 parent: 2 - - uid: 8763 + - uid: 15734 components: - type: Transform - pos: -6.5,35.5 + pos: 15.5,-39.5 parent: 2 - - uid: 8764 + - uid: 15736 components: - type: Transform - pos: -6.5,36.5 + pos: 15.5,-40.5 parent: 2 - - uid: 8765 + - uid: 15737 components: - type: Transform - pos: -6.5,34.5 + pos: 19.5,-37.5 parent: 2 - - uid: 8766 + - uid: 15738 components: - type: Transform - pos: -6.5,37.5 + pos: 17.5,-47.5 parent: 2 - - uid: 8767 + - uid: 15739 components: - type: Transform - pos: -6.5,38.5 + pos: 15.5,-47.5 parent: 2 - - uid: 8768 + - uid: 15740 components: - type: Transform - pos: -6.5,39.5 + pos: 13.5,-47.5 parent: 2 - - uid: 8769 + - uid: 15742 components: - type: Transform - pos: -6.5,40.5 + pos: 18.5,-44.5 parent: 2 - - uid: 8770 + - uid: 15743 components: - type: Transform - pos: -6.5,41.5 + pos: 10.5,-44.5 parent: 2 - - uid: 8771 + - uid: 15745 components: - type: Transform - pos: -6.5,42.5 + pos: 8.5,-42.5 parent: 2 - - uid: 8772 + - uid: 15751 components: - type: Transform - pos: -6.5,44.5 + pos: 7.5,-42.5 parent: 2 - - uid: 8773 + - uid: 15760 components: - type: Transform - pos: -6.5,43.5 + pos: 6.5,-42.5 parent: 2 - - uid: 8774 + - uid: 15773 components: - type: Transform - pos: -7.5,44.5 + pos: 6.5,-41.5 parent: 2 - - uid: 8775 + - uid: 15774 components: - type: Transform - pos: -7.5,46.5 + pos: 6.5,-43.5 parent: 2 - - uid: 8776 + - uid: 15844 components: - type: Transform - pos: -7.5,47.5 + pos: -34.5,-34.5 parent: 2 - - uid: 8777 + - uid: 15845 components: - type: Transform - pos: -7.5,45.5 + pos: -35.5,-35.5 parent: 2 - - uid: 8811 + - uid: 15846 components: - type: Transform - pos: -39.5,33.5 + pos: -37.5,-35.5 parent: 2 - - uid: 8813 + - uid: 15847 components: - type: Transform - pos: -40.5,33.5 + pos: -38.5,-35.5 parent: 2 - - uid: 8814 + - uid: 15848 components: - type: Transform - pos: -41.5,33.5 + pos: -39.5,-35.5 parent: 2 - - uid: 8815 + - uid: 15849 components: - type: Transform - pos: -43.5,33.5 + pos: -33.5,-35.5 parent: 2 - - uid: 8816 + - uid: 15850 components: - type: Transform - pos: -44.5,33.5 + pos: -32.5,-35.5 parent: 2 - - uid: 8817 + - uid: 15851 components: - type: Transform - pos: -42.5,33.5 + pos: -31.5,-35.5 parent: 2 - - uid: 8818 + - uid: 15918 components: - type: Transform - pos: -44.5,34.5 + pos: 20.5,-42.5 parent: 2 - - uid: 8819 + - uid: 15919 components: - type: Transform - pos: -44.5,35.5 + pos: 11.5,-40.5 parent: 2 - - uid: 8820 + - uid: 15920 components: - type: Transform - pos: -44.5,36.5 + pos: 16.5,-42.5 parent: 2 - - uid: 8821 + - uid: 15921 components: - type: Transform - pos: -44.5,37.5 + pos: 15.5,-42.5 parent: 2 - - uid: 8822 + - uid: 15922 components: - type: Transform - pos: -44.5,38.5 + pos: 13.5,-42.5 parent: 2 - - uid: 8823 + - uid: 15923 components: - type: Transform - pos: -44.5,39.5 + pos: 12.5,-42.5 parent: 2 - - uid: 8824 + - uid: 15925 components: - type: Transform - pos: -44.5,40.5 + pos: 11.5,-42.5 parent: 2 - - uid: 8825 + - uid: 15926 components: - type: Transform - pos: -45.5,40.5 + pos: 18.5,-41.5 parent: 2 - - uid: 8826 + - uid: 16177 components: - type: Transform - pos: -47.5,40.5 + pos: -30.5,1.5 parent: 2 - - uid: 8827 + - uid: 16178 components: - type: Transform - pos: -48.5,40.5 + pos: -32.5,1.5 parent: 2 - - uid: 8828 + - uid: 16179 components: - type: Transform - pos: -46.5,40.5 + pos: -31.5,1.5 parent: 2 - - uid: 8829 + - uid: 16194 components: - type: Transform - pos: -49.5,40.5 + pos: -27.5,2.5 parent: 2 - - uid: 8830 + - uid: 16305 components: - type: Transform - pos: -50.5,40.5 - parent: 2 - - uid: 8831 + pos: 25.5,10.5 + parent: 16200 + - uid: 16306 components: - type: Transform - pos: -50.5,42.5 - parent: 2 - - uid: 8832 + pos: 27.5,10.5 + parent: 16200 + - uid: 16307 components: - type: Transform - pos: -50.5,41.5 - parent: 2 - - uid: 8833 + pos: 28.5,10.5 + parent: 16200 + - uid: 16308 components: - type: Transform - pos: -50.5,43.5 - parent: 2 - - uid: 8834 + pos: 26.5,10.5 + parent: 16200 + - uid: 16744 components: - type: Transform - pos: -50.5,44.5 - parent: 2 - - uid: 8835 + pos: 6.5,14.5 + parent: 16675 + - uid: 16745 components: - type: Transform - pos: 21.5,-42.5 - parent: 2 - - uid: 8836 + pos: 6.5,15.5 + parent: 16675 + - uid: 16746 components: - type: Transform - pos: 23.5,-42.5 - parent: 2 - - uid: 8837 + pos: 7.5,15.5 + parent: 16675 + - uid: 16747 components: - type: Transform - pos: 22.5,-42.5 - parent: 2 - - uid: 8839 + pos: 8.5,15.5 + parent: 16675 + - uid: 16748 components: - type: Transform - pos: 23.5,-41.5 - parent: 2 - - uid: 8840 + pos: 6.5,16.5 + parent: 16675 + - uid: 16749 components: - type: Transform - pos: 24.5,-41.5 - parent: 2 - - uid: 8850 + pos: 8.5,16.5 + parent: 16675 + - uid: 17473 components: - type: Transform - pos: 21.5,-15.5 + pos: -24.5,-35.5 parent: 2 - - uid: 8852 + - uid: 17513 components: - type: Transform - pos: 23.5,-15.5 + pos: -24.5,-37.5 parent: 2 - - uid: 8853 + - uid: 17553 components: - type: Transform - pos: 24.5,-15.5 + pos: -22.5,-19.5 parent: 2 - - uid: 8854 + - uid: 17554 components: - type: Transform - pos: 22.5,-15.5 + pos: -20.5,-43.5 parent: 2 - - uid: 8855 + - uid: 17555 components: - type: Transform - pos: 24.5,-16.5 + pos: -20.5,-44.5 parent: 2 - - uid: 8856 + - uid: 17556 components: - type: Transform - pos: 24.5,-18.5 + pos: -19.5,-39.5 parent: 2 - - uid: 8857 + - uid: 17557 components: - type: Transform - pos: 24.5,-19.5 + pos: -20.5,-45.5 parent: 2 - - uid: 8858 + - uid: 17558 components: - type: Transform - pos: 24.5,-17.5 + pos: -19.5,-44.5 parent: 2 - - uid: 8859 + - uid: 17559 components: - type: Transform - pos: 26.5,-19.5 + pos: -19.5,-45.5 parent: 2 - - uid: 8860 + - uid: 17560 components: - type: Transform - pos: 28.5,-19.5 + pos: -18.5,-43.5 parent: 2 - - uid: 8861 + - uid: 17561 components: - type: Transform - pos: 29.5,-19.5 + pos: -18.5,-44.5 parent: 2 - - uid: 8862 + - uid: 17562 components: - type: Transform - pos: 30.5,-19.5 + pos: -19.5,-43.5 parent: 2 - - uid: 8863 + - uid: 17563 components: - type: Transform - pos: 27.5,-19.5 + pos: -18.5,-45.5 parent: 2 - - uid: 8864 + - uid: 17564 components: - type: Transform - pos: 31.5,-19.5 + pos: -20.5,-39.5 parent: 2 - - uid: 8865 + - uid: 17565 components: - type: Transform - pos: 25.5,-19.5 + pos: -19.5,-42.5 parent: 2 - - uid: 8866 + - uid: 17566 components: - type: Transform - pos: 31.5,-17.5 + pos: -18.5,-39.5 parent: 2 - - uid: 8867 + - uid: 17567 components: - type: Transform - pos: 31.5,-18.5 + pos: -18.5,-41.5 parent: 2 - - uid: 8868 + - uid: 17573 components: - type: Transform - pos: 31.5,-15.5 + pos: -22.5,-40.5 parent: 2 - - uid: 8869 + - uid: 17574 components: - type: Transform - pos: 31.5,-16.5 + pos: -24.5,-40.5 parent: 2 - - uid: 9264 + - uid: 17575 components: - type: Transform - pos: -3.5,31.5 + pos: -24.5,-39.5 parent: 2 - - uid: 9265 + - uid: 17576 components: - type: Transform - pos: -4.5,31.5 + pos: -23.5,-40.5 parent: 2 - - uid: 9266 + - uid: 17577 components: - type: Transform - pos: -5.5,31.5 + pos: -21.5,-40.5 parent: 2 - - uid: 9267 + - uid: 17579 components: - type: Transform - pos: -7.5,31.5 + pos: -24.5,-38.5 parent: 2 - - uid: 9268 + - uid: 17888 components: - type: Transform - pos: -8.5,31.5 - parent: 2 - - uid: 9269 + pos: 23.5,-10.5 + parent: 17641 + - uid: 17889 components: - type: Transform - pos: -9.5,31.5 - parent: 2 - - uid: 9270 + pos: 10.5,-1.5 + parent: 17641 + - uid: 17890 components: - type: Transform - pos: -10.5,31.5 - parent: 2 - - uid: 9271 + pos: 8.5,-1.5 + parent: 17641 + - uid: 17891 components: - type: Transform - pos: -12.5,31.5 - parent: 2 - - uid: 9272 + pos: 7.5,-1.5 + parent: 17641 + - uid: 17892 components: - type: Transform - pos: -11.5,31.5 - parent: 2 - - uid: 9273 + pos: 9.5,-1.5 + parent: 17641 + - uid: 17893 components: - type: Transform - pos: -13.5,31.5 - parent: 2 - - uid: 9274 + pos: 6.5,-1.5 + parent: 17641 + - uid: 17894 components: - type: Transform - pos: -14.5,31.5 - parent: 2 - - uid: 9275 + pos: 5.5,-1.5 + parent: 17641 + - uid: 17895 components: - type: Transform - pos: -6.5,31.5 - parent: 2 - - uid: 9276 + pos: 4.5,-1.5 + parent: 17641 + - uid: 17896 components: - type: Transform - pos: -17.5,31.5 - parent: 2 - - uid: 9277 + pos: 3.5,-1.5 + parent: 17641 + - uid: 17897 components: - type: Transform - pos: -16.5,31.5 - parent: 2 - - uid: 9278 + pos: 2.5,-1.5 + parent: 17641 + - uid: 17898 components: - type: Transform - pos: -19.5,31.5 - parent: 2 - - uid: 9279 + pos: 1.5,-1.5 + parent: 17641 + - uid: 17899 components: - type: Transform - pos: -18.5,31.5 - parent: 2 - - uid: 9280 + pos: -1.5,-2.5 + parent: 17641 + - uid: 17900 components: - type: Transform - pos: -20.5,31.5 - parent: 2 - - uid: 9281 + pos: 0.5,-1.5 + parent: 17641 + - uid: 17901 components: - type: Transform - pos: -15.5,31.5 - parent: 2 - - uid: 9282 + pos: -1.5,-1.5 + parent: 17641 + - uid: 17902 components: - type: Transform - pos: -20.5,32.5 - parent: 2 - - uid: 9283 + pos: -0.5,-1.5 + parent: 17641 + - uid: 17903 components: - type: Transform - pos: -21.5,32.5 - parent: 2 - - uid: 9284 + pos: -1.5,-4.5 + parent: 17641 + - uid: 17904 components: - type: Transform - pos: -22.5,32.5 - parent: 2 - - uid: 9285 + pos: -1.5,-3.5 + parent: 17641 + - uid: 17905 components: - type: Transform - pos: -23.5,32.5 - parent: 2 - - uid: 9286 + pos: -0.5,-4.5 + parent: 17641 + - uid: 17906 components: - type: Transform - pos: -24.5,32.5 - parent: 2 - - uid: 9287 + pos: 1.5,-4.5 + parent: 17641 + - uid: 17907 components: - type: Transform - pos: -25.5,32.5 - parent: 2 - - uid: 9288 + pos: 0.5,-4.5 + parent: 17641 + - uid: 17908 components: - type: Transform - pos: -26.5,32.5 - parent: 2 - - uid: 9289 + pos: 2.5,-4.5 + parent: 17641 + - uid: 17909 components: - type: Transform - pos: -27.5,32.5 - parent: 2 - - uid: 9290 + pos: 3.5,-4.5 + parent: 17641 + - uid: 17910 components: - type: Transform - pos: -28.5,32.5 - parent: 2 - - uid: 9291 + pos: 4.5,-4.5 + parent: 17641 + - uid: 17911 components: - type: Transform - pos: -30.5,32.5 - parent: 2 - - uid: 9292 + pos: 5.5,-4.5 + parent: 17641 + - uid: 17912 components: - type: Transform - pos: -29.5,32.5 - parent: 2 - - uid: 9293 + pos: 6.5,-4.5 + parent: 17641 + - uid: 17913 components: - type: Transform - pos: -32.5,32.5 - parent: 2 - - uid: 9294 + pos: 8.5,-4.5 + parent: 17641 + - uid: 17914 components: - type: Transform - pos: -31.5,32.5 - parent: 2 - - uid: 9295 + pos: 9.5,-4.5 + parent: 17641 + - uid: 17915 components: - type: Transform - pos: -33.5,32.5 - parent: 2 - - uid: 9296 + pos: 10.5,-4.5 + parent: 17641 + - uid: 17916 components: - type: Transform - pos: -34.5,32.5 - parent: 2 - - uid: 9297 + pos: 11.5,-4.5 + parent: 17641 + - uid: 17917 components: - type: Transform - pos: -36.5,32.5 - parent: 2 - - uid: 9298 + pos: 12.5,-4.5 + parent: 17641 + - uid: 17918 components: - type: Transform - pos: -37.5,32.5 - parent: 2 - - uid: 9299 + pos: 13.5,-4.5 + parent: 17641 + - uid: 17919 components: - type: Transform - pos: -38.5,32.5 - parent: 2 - - uid: 9300 + pos: 14.5,-4.5 + parent: 17641 + - uid: 17920 components: - type: Transform - pos: -35.5,32.5 - parent: 2 - - uid: 9301 + pos: 15.5,-4.5 + parent: 17641 + - uid: 17921 components: - type: Transform - pos: -39.5,32.5 - parent: 2 - - uid: 11852 + pos: 16.5,-4.5 + parent: 17641 + - uid: 17922 components: - type: Transform - pos: -29.5,1.5 - parent: 2 - - uid: 11856 + pos: 17.5,-4.5 + parent: 17641 + - uid: 17923 components: - type: Transform - pos: -29.5,2.5 - parent: 2 - - uid: 11857 + pos: 18.5,-4.5 + parent: 17641 + - uid: 17924 components: - type: Transform - pos: -28.5,2.5 - parent: 2 - - uid: 14930 + pos: 19.5,-4.5 + parent: 17641 + - uid: 17925 components: - type: Transform - pos: -19.5,-41.5 - parent: 2 - - uid: 14933 - components: - - type: Transform - pos: -18.5,-40.5 - parent: 2 - - uid: 15844 + pos: 7.5,-4.5 + parent: 17641 + - uid: 17926 components: - type: Transform - pos: -34.5,-34.5 - parent: 2 - - uid: 15845 + pos: 20.5,-4.5 + parent: 17641 + - uid: 17927 components: - type: Transform - pos: -35.5,-35.5 - parent: 2 - - uid: 15846 + pos: 20.5,-5.5 + parent: 17641 + - uid: 17928 components: - type: Transform - pos: -37.5,-35.5 - parent: 2 - - uid: 15847 + pos: 20.5,-7.5 + parent: 17641 + - uid: 17929 components: - type: Transform - pos: -38.5,-35.5 - parent: 2 - - uid: 15848 + pos: 22.5,-9.5 + parent: 17641 + - uid: 17930 components: - type: Transform - pos: -39.5,-35.5 - parent: 2 - - uid: 15849 + pos: 20.5,-6.5 + parent: 17641 + - uid: 17931 components: - type: Transform - pos: -33.5,-35.5 - parent: 2 - - uid: 15850 + pos: 21.5,-9.5 + parent: 17641 + - uid: 17932 components: - type: Transform - pos: -32.5,-35.5 - parent: 2 - - uid: 15851 + pos: 23.5,-11.5 + parent: 17641 + - uid: 17933 components: - type: Transform - pos: -31.5,-35.5 - parent: 2 - - uid: 16177 + pos: 23.5,-9.5 + parent: 17641 + - uid: 17934 components: - type: Transform - pos: -30.5,1.5 - parent: 2 - - uid: 16178 + pos: 24.5,-8.5 + parent: 17641 + - uid: 17935 components: - type: Transform - pos: -32.5,1.5 - parent: 2 - - uid: 16179 + pos: 25.5,-7.5 + parent: 17641 + - uid: 17936 components: - type: Transform - pos: -31.5,1.5 - parent: 2 - - uid: 16194 + pos: 24.5,-9.5 + parent: 17641 + - uid: 17937 components: - type: Transform - pos: -27.5,2.5 - parent: 2 - - uid: 16305 + pos: 24.5,-10.5 + parent: 17641 + - uid: 17938 components: - type: Transform - pos: 25.5,10.5 - parent: 16200 - - uid: 16306 + pos: 24.5,-11.5 + parent: 17641 + - uid: 17939 components: - type: Transform - pos: 27.5,10.5 - parent: 16200 - - uid: 16307 + pos: 21.5,-7.5 + parent: 17641 + - uid: 17940 components: - type: Transform - pos: 28.5,10.5 - parent: 16200 - - uid: 16308 + pos: 23.5,-7.5 + parent: 17641 + - uid: 17941 components: - type: Transform - pos: 26.5,10.5 - parent: 16200 - - uid: 16744 + pos: 24.5,-7.5 + parent: 17641 + - uid: 17942 components: - type: Transform - pos: 6.5,14.5 - parent: 16675 - - uid: 16745 + pos: 22.5,-7.5 + parent: 17641 + - uid: 17943 components: - type: Transform - pos: 6.5,15.5 - parent: 16675 - - uid: 16746 + pos: 20.5,-9.5 + parent: 17641 + - uid: 17944 components: - type: Transform - pos: 7.5,15.5 - parent: 16675 - - uid: 16747 + pos: 19.5,-9.5 + parent: 17641 + - uid: 17945 components: - type: Transform - pos: 8.5,15.5 - parent: 16675 - - uid: 16748 + pos: 19.5,-7.5 + parent: 17641 + - uid: 17946 components: - type: Transform - pos: 6.5,16.5 - parent: 16675 - - uid: 16749 + pos: 17.5,-7.5 + parent: 17641 + - uid: 17947 components: - type: Transform - pos: 8.5,16.5 - parent: 16675 - - uid: 17473 + pos: 16.5,-7.5 + parent: 17641 + - uid: 17948 components: - type: Transform - pos: -24.5,-35.5 - parent: 2 - - uid: 17513 + pos: 15.5,-7.5 + parent: 17641 + - uid: 17949 components: - type: Transform - pos: -24.5,-37.5 - parent: 2 - - uid: 17553 + pos: 18.5,-7.5 + parent: 17641 + - uid: 17950 components: - type: Transform - pos: -22.5,-19.5 - parent: 2 - - uid: 17554 + pos: 15.5,-8.5 + parent: 17641 + - uid: 17951 components: - type: Transform - pos: -20.5,-43.5 - parent: 2 - - uid: 17555 + pos: 15.5,-9.5 + parent: 17641 + - uid: 17952 components: - type: Transform - pos: -20.5,-44.5 - parent: 2 - - uid: 17556 + pos: 1.5,-0.5 + parent: 17641 + - uid: 17953 components: - type: Transform - pos: -19.5,-39.5 - parent: 2 - - uid: 17557 + pos: 1.5,1.5 + parent: 17641 + - uid: 17954 components: - type: Transform - pos: -20.5,-45.5 - parent: 2 - - uid: 17558 + pos: 1.5,2.5 + parent: 17641 + - uid: 17955 components: - type: Transform - pos: -19.5,-44.5 - parent: 2 - - uid: 17559 + pos: 1.5,0.5 + parent: 17641 + - uid: 17956 components: - type: Transform - pos: -19.5,-45.5 - parent: 2 - - uid: 17560 + pos: 2.5,2.5 + parent: 17641 + - uid: 17957 components: - type: Transform - pos: -18.5,-43.5 - parent: 2 - - uid: 17561 + pos: 4.5,2.5 + parent: 17641 + - uid: 17958 components: - type: Transform - pos: -18.5,-44.5 - parent: 2 - - uid: 17562 + pos: 5.5,2.5 + parent: 17641 + - uid: 17959 components: - type: Transform - pos: -19.5,-43.5 - parent: 2 - - uid: 17563 + pos: 3.5,2.5 + parent: 17641 + - uid: 17960 components: - type: Transform - pos: -18.5,-45.5 - parent: 2 - - uid: 17564 + pos: 5.5,3.5 + parent: 17641 + - uid: 17961 components: - type: Transform - pos: -20.5,-39.5 - parent: 2 - - uid: 17565 + pos: 5.5,5.5 + parent: 17641 + - uid: 17962 components: - type: Transform - pos: -19.5,-42.5 - parent: 2 - - uid: 17566 + pos: 5.5,4.5 + parent: 17641 + - uid: 17963 components: - type: Transform - pos: -18.5,-39.5 - parent: 2 - - uid: 17567 + pos: 5.5,7.5 + parent: 17641 + - uid: 17964 components: - type: Transform - pos: -18.5,-41.5 - parent: 2 - - uid: 17573 + pos: 5.5,6.5 + parent: 17641 + - uid: 17965 components: - type: Transform - pos: -22.5,-40.5 - parent: 2 - - uid: 17574 + pos: 5.5,8.5 + parent: 17641 + - uid: 17966 components: - type: Transform - pos: -24.5,-40.5 - parent: 2 - - uid: 17575 + pos: 6.5,8.5 + parent: 17641 + - uid: 17967 components: - type: Transform - pos: -24.5,-39.5 - parent: 2 - - uid: 17576 + pos: 7.5,8.5 + parent: 17641 + - uid: 17968 components: - type: Transform - pos: -23.5,-40.5 - parent: 2 - - uid: 17577 + pos: 8.5,8.5 + parent: 17641 + - uid: 17969 components: - type: Transform - pos: -21.5,-40.5 - parent: 2 - - uid: 17579 + pos: 8.5,9.5 + parent: 17641 + - uid: 17970 components: - type: Transform - pos: -24.5,-38.5 - parent: 2 - - uid: 17639 + pos: 8.5,11.5 + parent: 17641 + - uid: 17971 components: - type: Transform - pos: 41.5,-9.5 - parent: 17590 - - uid: 18014 + pos: 8.5,10.5 + parent: 17641 + - uid: 17972 components: - type: Transform - pos: 40.5,-0.5 - parent: 17590 - - uid: 18015 + pos: 9.5,11.5 + parent: 17641 + - uid: 20046 components: - type: Transform - pos: 39.5,-0.5 - parent: 17590 - - uid: 18016 + pos: -20.5,-40.5 + parent: 2 + - uid: 20047 components: - type: Transform - pos: 41.5,-3.5 - parent: 17590 - - uid: 18017 + pos: -24.5,-34.5 + parent: 2 + - uid: 20201 components: - type: Transform - pos: 38.5,-1.5 - parent: 17590 - - uid: 18018 + pos: -12.5,7.5 + parent: 2 + - uid: 20202 components: - type: Transform - pos: 14.5,-6.5 - parent: 17590 - - uid: 18019 + pos: -12.5,6.5 + parent: 2 + - uid: 20203 components: - type: Transform - pos: 41.5,-6.5 - parent: 17590 - - uid: 18020 + pos: -12.5,5.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 17359 components: - type: Transform - pos: 40.5,-6.5 - parent: 17590 - - uid: 18021 + parent: 12408 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17974 components: - type: Transform - pos: 39.5,-6.5 - parent: 17590 - - uid: 18022 + parent: 17973 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableHVStack10 + entities: + - uid: 7352 components: - type: Transform - pos: 38.5,-6.5 - parent: 17590 - - uid: 18023 + pos: 25.529936,-43.300682 + parent: 2 + - uid: 7353 components: - type: Transform - pos: 33.5,-6.5 - parent: 17590 - - uid: 18024 + pos: 25.48306,-43.456932 + parent: 2 + - uid: 11388 components: - type: Transform - pos: 37.5,-6.5 - parent: 17590 - - uid: 18025 + pos: 0.7956035,-20.498886 + parent: 2 +- proto: CableMV + entities: + - uid: 6 components: - type: Transform - pos: 36.5,-6.5 - parent: 17590 - - uid: 18026 + pos: -11.5,43.5 + parent: 2 + - uid: 189 components: - type: Transform - pos: 35.5,-6.5 - parent: 17590 - - uid: 18027 + pos: -13.5,25.5 + parent: 2 + - uid: 330 components: - type: Transform - pos: 28.5,-6.5 - parent: 17590 - - uid: 18028 + pos: 14.5,27.5 + parent: 2 + - uid: 333 components: - type: Transform - pos: 31.5,-6.5 - parent: 17590 - - uid: 18029 + pos: -50.5,44.5 + parent: 2 + - uid: 424 components: - type: Transform - pos: 34.5,-6.5 - parent: 17590 - - uid: 18030 + pos: -12.5,25.5 + parent: 2 + - uid: 672 components: - type: Transform - pos: 32.5,-6.5 - parent: 17590 - - uid: 18031 + pos: -15.5,-15.5 + parent: 2 + - uid: 704 components: - type: Transform - pos: 30.5,-6.5 - parent: 17590 - - uid: 18032 + pos: -18.5,-21.5 + parent: 2 + - uid: 705 components: - type: Transform - pos: 27.5,-6.5 - parent: 17590 - - uid: 18033 + pos: -17.5,-15.5 + parent: 2 + - uid: 757 components: - type: Transform - pos: 29.5,-6.5 - parent: 17590 - - uid: 18034 + pos: -11.5,25.5 + parent: 2 + - uid: 758 components: - type: Transform - pos: 40.5,-2.5 - parent: 17590 - - uid: 18035 + pos: -10.5,25.5 + parent: 2 + - uid: 765 components: - type: Transform - pos: 39.5,-2.5 - parent: 17590 - - uid: 18036 + pos: -13.5,26.5 + parent: 2 + - uid: 1427 components: - type: Transform - pos: 38.5,-2.5 - parent: 17590 - - uid: 18037 + pos: -33.5,-24.5 + parent: 2 + - uid: 1650 components: - type: Transform - pos: 14.5,-4.5 - parent: 17590 - - uid: 18038 + pos: -33.5,-26.5 + parent: 2 + - uid: 1651 components: - type: Transform - pos: 42.5,-2.5 - parent: 17590 - - uid: 18039 + pos: -34.5,-26.5 + parent: 2 + - uid: 1859 components: - type: Transform - pos: 41.5,-5.5 - parent: 17590 - - uid: 18040 + pos: -34.5,-23.5 + parent: 2 + - uid: 1860 components: - type: Transform - pos: 42.5,-1.5 - parent: 17590 - - uid: 18042 + pos: -34.5,-24.5 + parent: 2 + - uid: 2055 components: - type: Transform - pos: 40.5,-1.5 - parent: 17590 - - uid: 18043 + pos: -4.5,-23.5 + parent: 2 + - uid: 2064 components: - type: Transform - pos: 39.5,-1.5 - parent: 17590 - - uid: 18044 + pos: -4.5,-23.5 + parent: 2 + - uid: 2068 components: - type: Transform - pos: 26.5,-6.5 - parent: 17590 - - uid: 18045 + pos: -6.5,-23.5 + parent: 2 + - uid: 2074 components: - type: Transform - pos: 25.5,-6.5 - parent: 17590 - - uid: 18046 + pos: -6.5,-20.5 + parent: 2 + - uid: 2075 components: - type: Transform - pos: 24.5,-6.5 - parent: 17590 - - uid: 18047 + pos: -6.5,-21.5 + parent: 2 + - uid: 2076 components: - type: Transform - pos: 23.5,-6.5 - parent: 17590 - - uid: 18048 + pos: -5.5,-23.5 + parent: 2 + - uid: 2077 components: - type: Transform - pos: 22.5,-6.5 - parent: 17590 - - uid: 18051 + pos: -6.5,-22.5 + parent: 2 + - uid: 2830 components: - type: Transform - pos: 19.5,-6.5 - parent: 17590 - - uid: 18052 + pos: 45.5,-14.5 + parent: 2 + - uid: 3068 components: - type: Transform - pos: 18.5,-6.5 - parent: 17590 - - uid: 18053 + pos: 16.5,29.5 + parent: 2 + - uid: 3524 components: - type: Transform - pos: 17.5,-6.5 - parent: 17590 - - uid: 18054 + pos: 7.5,31.5 + parent: 2 + - uid: 6233 components: - type: Transform - pos: 16.5,-6.5 - parent: 17590 - - uid: 18055 + pos: -28.5,65.5 + parent: 2 + - uid: 6234 components: - type: Transform - pos: 15.5,-6.5 - parent: 17590 - - uid: 18056 + pos: -29.5,65.5 + parent: 2 + - uid: 7962 components: - type: Transform - pos: 14.5,-2.5 - parent: 17590 - - uid: 18057 + pos: -27.5,2.5 + parent: 2 + - uid: 8156 components: - type: Transform - pos: 41.5,-4.5 - parent: 17590 - - uid: 18058 + pos: 52.5,-14.5 + parent: 2 + - uid: 8841 components: - type: Transform - pos: 14.5,-5.5 - parent: 17590 - - uid: 18059 + pos: 24.5,-41.5 + parent: 2 + - uid: 8842 components: - type: Transform - pos: 14.5,-1.5 - parent: 17590 - - uid: 18060 + pos: 25.5,-41.5 + parent: 2 + - uid: 8843 components: - type: Transform - pos: 40.5,6.5 - parent: 17590 - - uid: 18061 + pos: 26.5,-41.5 + parent: 2 + - uid: 9452 components: - type: Transform - pos: 41.5,5.5 - parent: 17590 - - uid: 18062 + pos: 16.5,30.5 + parent: 2 + - uid: 10512 components: - type: Transform - pos: 40.5,5.5 - parent: 17590 - - uid: 18063 + pos: 34.5,-17.5 + parent: 2 + - uid: 10513 components: - type: Transform - pos: 38.5,5.5 - parent: 17590 - - uid: 18064 + pos: 36.5,-17.5 + parent: 2 + - uid: 10514 components: - type: Transform - pos: 38.5,2.5 - parent: 17590 - - uid: 18065 + pos: 37.5,-17.5 + parent: 2 + - uid: 10515 components: - type: Transform - pos: 39.5,6.5 - parent: 17590 - - uid: 18066 + pos: 38.5,-17.5 + parent: 2 + - uid: 10516 components: - type: Transform - pos: 38.5,3.5 - parent: 17590 - - uid: 18067 + pos: 35.5,-17.5 + parent: 2 + - uid: 10559 components: - type: Transform - pos: 38.5,6.5 - parent: 17590 - - uid: 18068 + pos: 39.5,-17.5 + parent: 2 + - uid: 10560 components: - type: Transform - pos: 38.5,1.5 - parent: 17590 - - uid: 18069 + pos: 40.5,-17.5 + parent: 2 + - uid: 10561 components: - type: Transform - pos: 38.5,0.5 - parent: 17590 - - uid: 18070 + pos: 41.5,-17.5 + parent: 2 + - uid: 10562 components: - type: Transform - pos: 38.5,4.5 - parent: 17590 - - uid: 18071 + pos: 42.5,-17.5 + parent: 2 + - uid: 10564 components: - type: Transform - pos: 38.5,-0.5 - parent: 17590 - - uid: 18072 + pos: 43.5,-17.5 + parent: 2 + - uid: 10565 components: - type: Transform - pos: 14.5,-3.5 - parent: 17590 - - uid: 18073 + pos: 34.5,-9.5 + parent: 2 + - uid: 10566 components: - type: Transform - pos: 39.5,5.5 - parent: 17590 - - uid: 18074 - components: - - type: Transform - pos: 41.5,6.5 - parent: 17590 - - uid: 18075 - components: - - type: Transform - pos: 42.5,5.5 - parent: 17590 - - uid: 18076 - components: - - type: Transform - pos: 42.5,6.5 - parent: 17590 - - uid: 18077 - components: - - type: Transform - pos: 41.5,-2.5 - parent: 17590 - - uid: 18510 - components: - - type: Transform - pos: 21.5,-6.5 - parent: 17590 - - uid: 18568 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 17590 - - uid: 19239 - components: - - type: Transform - pos: 41.5,-7.5 - parent: 17590 - - uid: 19671 - components: - - type: Transform - pos: 41.5,-10.5 - parent: 17590 - - uid: 19672 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 17590 - - uid: 19673 - components: - - type: Transform - pos: 41.5,-8.5 - parent: 17590 - - uid: 19674 - components: - - type: Transform - pos: 41.5,-12.5 - parent: 17590 - - uid: 19675 - components: - - type: Transform - pos: 41.5,-13.5 - parent: 17590 - - uid: 19676 - components: - - type: Transform - pos: 41.5,-14.5 - parent: 17590 - - uid: 19677 - components: - - type: Transform - pos: 41.5,-15.5 - parent: 17590 - - uid: 19678 - components: - - type: Transform - pos: 41.5,-16.5 - parent: 17590 - - uid: 19679 - components: - - type: Transform - pos: 41.5,-17.5 - parent: 17590 - - uid: 19680 - components: - - type: Transform - pos: 41.5,-19.5 - parent: 17590 - - uid: 19681 - components: - - type: Transform - pos: 41.5,-20.5 - parent: 17590 - - uid: 19682 - components: - - type: Transform - pos: 41.5,-18.5 - parent: 17590 - - uid: 19683 - components: - - type: Transform - pos: 42.5,-20.5 - parent: 17590 - - uid: 19875 - components: - - type: Transform - pos: 41.5,15.5 - parent: 19854 - - uid: 19893 - components: - - type: Transform - pos: 42.5,15.5 - parent: 19854 - - uid: 19979 - components: - - type: Transform - pos: 24.5,15.5 - parent: 19951 - - uid: 19980 - components: - - type: Transform - pos: 25.5,15.5 - parent: 19951 - - uid: 20035 - components: - - type: Transform - pos: 25.5,10.5 - parent: 20000 - - uid: 20046 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 2 - - uid: 20047 - components: - - type: Transform - pos: -24.5,-34.5 - parent: 2 -- proto: CableHVStack - entities: - - uid: 17359 - components: - - type: Transform - parent: 12408 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CableHVStack10 - entities: - - uid: 7070 - components: - - type: Transform - parent: 7064 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7352 - components: - - type: Transform - pos: 25.529936,-43.300682 - parent: 2 - - uid: 7353 - components: - - type: Transform - pos: 25.48306,-43.456932 - parent: 2 -- proto: CableMV - entities: - - uid: 6 - components: - - type: Transform - pos: -11.5,43.5 - parent: 2 - - uid: 189 - components: - - type: Transform - pos: -13.5,25.5 - parent: 2 - - uid: 330 - components: - - type: Transform - pos: 14.5,27.5 - parent: 2 - - uid: 333 - components: - - type: Transform - pos: -50.5,44.5 - parent: 2 - - uid: 424 - components: - - type: Transform - pos: -12.5,25.5 - parent: 2 - - uid: 672 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 2 - - uid: 704 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 2 - - uid: 705 - components: - - type: Transform - pos: -17.5,-15.5 - parent: 2 - - uid: 757 - components: - - type: Transform - pos: -11.5,25.5 - parent: 2 - - uid: 758 - components: - - type: Transform - pos: -10.5,25.5 - parent: 2 - - uid: 765 - components: - - type: Transform - pos: -13.5,26.5 - parent: 2 - - uid: 1427 - components: - - type: Transform - pos: -33.5,-24.5 - parent: 2 - - uid: 1650 - components: - - type: Transform - pos: -33.5,-26.5 - parent: 2 - - uid: 1651 - components: - - type: Transform - pos: -34.5,-26.5 - parent: 2 - - uid: 1859 - components: - - type: Transform - pos: -34.5,-23.5 - parent: 2 - - uid: 1860 - components: - - type: Transform - pos: -34.5,-24.5 - parent: 2 - - uid: 2055 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 2 - - uid: 2064 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 2 - - uid: 2068 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 2 - - uid: 2074 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 2 - - uid: 2075 - components: - - type: Transform - pos: -6.5,-21.5 - parent: 2 - - uid: 2076 - components: - - type: Transform - pos: -5.5,-23.5 - parent: 2 - - uid: 2077 - components: - - type: Transform - pos: -6.5,-22.5 - parent: 2 - - uid: 2830 - components: - - type: Transform - pos: 45.5,-14.5 - parent: 2 - - uid: 3068 - components: - - type: Transform - pos: 16.5,29.5 - parent: 2 - - uid: 3524 - components: - - type: Transform - pos: 7.5,31.5 - parent: 2 - - uid: 6233 - components: - - type: Transform - pos: -28.5,65.5 - parent: 2 - - uid: 6234 - components: - - type: Transform - pos: -29.5,65.5 - parent: 2 - - uid: 7962 - components: - - type: Transform - pos: -27.5,2.5 - parent: 2 - - uid: 8841 - components: - - type: Transform - pos: 24.5,-41.5 - parent: 2 - - uid: 8842 - components: - - type: Transform - pos: 25.5,-41.5 - parent: 2 - - uid: 8843 - components: - - type: Transform - pos: 26.5,-41.5 - parent: 2 - - uid: 9452 - components: - - type: Transform - pos: 16.5,30.5 - parent: 2 - - uid: 10512 - components: - - type: Transform - pos: 34.5,-17.5 - parent: 2 - - uid: 10513 - components: - - type: Transform - pos: 36.5,-17.5 - parent: 2 - - uid: 10514 - components: - - type: Transform - pos: 37.5,-17.5 - parent: 2 - - uid: 10515 - components: - - type: Transform - pos: 38.5,-17.5 - parent: 2 - - uid: 10516 - components: - - type: Transform - pos: 35.5,-17.5 - parent: 2 - - uid: 10559 - components: - - type: Transform - pos: 39.5,-17.5 - parent: 2 - - uid: 10560 - components: - - type: Transform - pos: 40.5,-17.5 - parent: 2 - - uid: 10561 - components: - - type: Transform - pos: 41.5,-17.5 - parent: 2 - - uid: 10562 - components: - - type: Transform - pos: 42.5,-17.5 - parent: 2 - - uid: 10564 - components: - - type: Transform - pos: 43.5,-17.5 - parent: 2 - - uid: 10565 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 2 - - uid: 10566 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 2 - - uid: 10567 + pos: 35.5,-9.5 + parent: 2 + - uid: 10567 components: - type: Transform pos: 37.5,-9.5 @@ -38842,61 +33872,6 @@ entities: - type: Transform pos: -13.5,28.5 parent: 2 - - uid: 11083 - components: - - type: Transform - pos: -10.5,29.5 - parent: 2 - - uid: 11084 - components: - - type: Transform - pos: -9.5,29.5 - parent: 2 - - uid: 11085 - components: - - type: Transform - pos: -8.5,29.5 - parent: 2 - - uid: 11086 - components: - - type: Transform - pos: -7.5,29.5 - parent: 2 - - uid: 11087 - components: - - type: Transform - pos: -6.5,29.5 - parent: 2 - - uid: 11089 - components: - - type: Transform - pos: -11.5,29.5 - parent: 2 - - uid: 11090 - components: - - type: Transform - pos: -11.5,28.5 - parent: 2 - - uid: 11091 - components: - - type: Transform - pos: -12.5,28.5 - parent: 2 - - uid: 11096 - components: - - type: Transform - pos: -6.5,25.5 - parent: 2 - - uid: 11097 - components: - - type: Transform - pos: -8.5,25.5 - parent: 2 - - uid: 11098 - components: - - type: Transform - pos: -7.5,25.5 - parent: 2 - uid: 11099 components: - type: Transform @@ -39227,31 +34202,6 @@ entities: - type: Transform pos: -23.5,12.5 parent: 2 - - uid: 11165 - components: - - type: Transform - pos: -23.5,10.5 - parent: 2 - - uid: 11166 - components: - - type: Transform - pos: -23.5,11.5 - parent: 2 - - uid: 11167 - components: - - type: Transform - pos: -23.5,9.5 - parent: 2 - - uid: 11168 - components: - - type: Transform - pos: -22.5,9.5 - parent: 2 - - uid: 11169 - components: - - type: Transform - pos: -21.5,9.5 - parent: 2 - uid: 11170 components: - type: Transform @@ -41367,11 +36317,206 @@ entities: - type: Transform pos: -13.5,27.5 parent: 2 + - uid: 14523 + components: + - type: Transform + pos: 54.5,-14.5 + parent: 2 + - uid: 14524 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - uid: 14613 + components: + - type: Transform + pos: 53.5,-14.5 + parent: 2 + - uid: 14614 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 14616 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 14617 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 2 + - uid: 14618 + components: + - type: Transform + pos: 55.5,-10.5 + parent: 2 + - uid: 14619 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 + - uid: 14652 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 - uid: 14761 components: - type: Transform pos: 7.5,30.5 parent: 2 + - uid: 14841 + components: + - type: Transform + pos: 55.5,-9.5 + parent: 2 + - uid: 14872 + components: + - type: Transform + pos: 55.5,-15.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 2 + - uid: 15035 + components: + - type: Transform + pos: 55.5,-18.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: 55.5,-16.5 + parent: 2 + - uid: 15244 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + pos: 58.5,-18.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + pos: 59.5,-18.5 + parent: 2 + - uid: 15479 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 + - uid: 15481 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 15482 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 15484 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 + - uid: 15485 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 15486 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 15487 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 15488 + components: + - type: Transform + pos: 59.5,-9.5 + parent: 2 + - uid: 15489 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 2 + - uid: 15490 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + pos: 59.5,-5.5 + parent: 2 + - uid: 15494 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 2 + - uid: 15495 + components: + - type: Transform + pos: 59.5,-6.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + pos: 55.5,-4.5 + parent: 2 + - uid: 15500 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 2 + - uid: 15501 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: 54.5,-16.5 + parent: 2 - uid: 15768 components: - type: Transform @@ -42167,826 +37312,661 @@ entities: - type: Transform pos: -1.5,-20.5 parent: 2 - - uid: 17924 + - uid: 17977 components: - type: Transform - pos: 30.5,-12.5 - parent: 17590 - - uid: 18078 + pos: 19.5,-9.5 + parent: 17641 + - uid: 17978 components: - type: Transform - pos: 42.5,-1.5 - parent: 17590 - - uid: 18079 + pos: 19.5,-8.5 + parent: 17641 + - uid: 17979 components: - type: Transform - pos: 34.5,3.5 - parent: 17590 - - uid: 18080 + pos: 19.5,-6.5 + parent: 17641 + - uid: 17980 components: - type: Transform - pos: 7.5,-7.5 - parent: 17590 - - uid: 18081 + pos: 19.5,-5.5 + parent: 17641 + - uid: 17981 components: - type: Transform - pos: 42.5,-3.5 - parent: 17590 - - uid: 18082 + pos: 19.5,-7.5 + parent: 17641 + - uid: 17982 components: - type: Transform - pos: 31.5,-2.5 - parent: 17590 - - uid: 18083 + pos: 21.5,-9.5 + parent: 17641 + - uid: 17983 components: - type: Transform - pos: 14.5,-6.5 - parent: 17590 - - uid: 18084 + pos: 21.5,-8.5 + parent: 17641 + - uid: 17984 components: - type: Transform - pos: 44.5,-10.5 - parent: 17590 - - uid: 18085 + pos: 21.5,-7.5 + parent: 17641 + - uid: 17985 components: - type: Transform - pos: 40.5,-10.5 - parent: 17590 - - uid: 18086 + pos: 21.5,-5.5 + parent: 17641 + - uid: 17986 components: - type: Transform - pos: 7.5,-11.5 - parent: 17590 - - uid: 18087 + pos: 21.5,-4.5 + parent: 17641 + - uid: 17987 components: - type: Transform - pos: 19.5,-17.5 - parent: 17590 - - uid: 18088 + pos: 21.5,-3.5 + parent: 17641 + - uid: 17988 components: - type: Transform - pos: 8.5,-11.5 - parent: 17590 - - uid: 18089 + pos: 21.5,-6.5 + parent: 17641 + - uid: 17989 components: - type: Transform - pos: 13.5,-11.5 - parent: 17590 - - uid: 18090 + pos: 20.5,-9.5 + parent: 17641 + - uid: 17990 components: - type: Transform - pos: 3.5,-7.5 - parent: 17590 - - uid: 18091 + pos: 20.5,-5.5 + parent: 17641 + - uid: 17991 components: - type: Transform - pos: 5.5,-7.5 - parent: 17590 - - uid: 18092 + pos: 20.5,-3.5 + parent: 17641 + - uid: 17992 components: - type: Transform - pos: 8.5,-7.5 - parent: 17590 - - uid: 18093 + pos: 20.5,-1.5 + parent: 17641 + - uid: 17993 components: - type: Transform - pos: 6.5,-7.5 - parent: 17590 - - uid: 18094 + pos: 20.5,-0.5 + parent: 17641 + - uid: 17994 components: - type: Transform - pos: 10.5,-2.5 - parent: 17590 - - uid: 18095 + pos: 20.5,0.5 + parent: 17641 + - uid: 17995 components: - type: Transform - pos: 9.5,-2.5 - parent: 17590 - - uid: 18096 + pos: 20.5,1.5 + parent: 17641 + - uid: 17996 components: - type: Transform - pos: 6.5,-4.5 - parent: 17590 - - uid: 18097 + pos: 20.5,2.5 + parent: 17641 + - uid: 17997 components: - type: Transform - pos: 8.5,-2.5 - parent: 17590 - - uid: 18098 + pos: 20.5,-2.5 + parent: 17641 + - uid: 17998 components: - type: Transform - pos: 12.5,-2.5 - parent: 17590 - - uid: 18099 + pos: 21.5,2.5 + parent: 17641 + - uid: 17999 components: - type: Transform - pos: 6.5,-8.5 - parent: 17590 - - uid: 18100 + pos: 22.5,2.5 + parent: 17641 + - uid: 18000 components: - type: Transform - pos: 6.5,-10.5 - parent: 17590 - - uid: 18101 + pos: 22.5,-3.5 + parent: 17641 + - uid: 18001 components: - type: Transform - pos: 7.5,-2.5 - parent: 17590 - - uid: 18102 + pos: 23.5,-3.5 + parent: 17641 + - uid: 18002 components: - type: Transform - pos: 6.5,-2.5 - parent: 17590 - - uid: 18103 + pos: 24.5,-3.5 + parent: 17641 + - uid: 18003 components: - type: Transform - pos: 6.5,-3.5 - parent: 17590 - - uid: 18104 + pos: 24.5,-2.5 + parent: 17641 + - uid: 18004 components: - type: Transform - pos: 6.5,-5.5 - parent: 17590 - - uid: 18105 + pos: 24.5,-0.5 + parent: 17641 + - uid: 18005 components: - type: Transform - pos: 4.5,-7.5 - parent: 17590 - - uid: 18106 + pos: 24.5,0.5 + parent: 17641 + - uid: 18006 components: - type: Transform - pos: 2.5,-8.5 - parent: 17590 - - uid: 18107 + pos: 24.5,1.5 + parent: 17641 + - uid: 18007 components: - type: Transform - pos: 2.5,-7.5 - parent: 17590 - - uid: 18108 + pos: 24.5,2.5 + parent: 17641 + - uid: 18008 components: - type: Transform - pos: 2.5,-9.5 - parent: 17590 - - uid: 18109 + pos: 24.5,3.5 + parent: 17641 + - uid: 18009 components: - type: Transform - pos: 2.5,-10.5 - parent: 17590 - - uid: 18110 + pos: 24.5,-1.5 + parent: 17641 + - uid: 18010 components: - type: Transform - pos: 6.5,-6.5 - parent: 17590 - - uid: 18111 + pos: 19.5,-3.5 + parent: 17641 + - uid: 18011 components: - type: Transform - pos: 34.5,-0.5 - parent: 17590 - - uid: 18112 + pos: 17.5,-3.5 + parent: 17641 + - uid: 18012 components: - type: Transform - pos: 30.5,-3.5 - parent: 17590 - - uid: 18113 + pos: 16.5,-3.5 + parent: 17641 + - uid: 18013 components: - type: Transform - pos: 30.5,-5.5 - parent: 17590 - - uid: 18114 + pos: 15.5,-3.5 + parent: 17641 + - uid: 18014 components: - type: Transform - pos: 30.5,-7.5 - parent: 17590 - - uid: 18115 + pos: 18.5,-3.5 + parent: 17641 + - uid: 18015 components: - type: Transform - pos: 30.5,-6.5 - parent: 17590 - - uid: 18116 + pos: 14.5,-3.5 + parent: 17641 + - uid: 18016 components: - type: Transform - pos: 30.5,-4.5 - parent: 17590 - - uid: 18117 + pos: 13.5,-3.5 + parent: 17641 + - uid: 18017 components: - type: Transform - pos: 30.5,-9.5 - parent: 17590 - - uid: 18120 + pos: 12.5,-3.5 + parent: 17641 + - uid: 18018 components: - type: Transform - pos: 42.5,1.5 - parent: 17590 - - uid: 18121 + pos: 11.5,-3.5 + parent: 17641 + - uid: 18019 components: - type: Transform - pos: 42.5,-0.5 - parent: 17590 - - uid: 18122 + pos: 10.5,-3.5 + parent: 17641 + - uid: 18020 components: - type: Transform - pos: 34.5,0.5 - parent: 17590 - - uid: 18123 + pos: 9.5,-3.5 + parent: 17641 + - uid: 18021 components: - type: Transform - pos: 38.5,-8.5 - parent: 17590 - - uid: 18124 + pos: 7.5,-3.5 + parent: 17641 + - uid: 18022 components: - type: Transform - pos: 38.5,-6.5 - parent: 17590 - - uid: 18125 + pos: 6.5,-3.5 + parent: 17641 + - uid: 18023 components: - type: Transform - pos: 38.5,-7.5 - parent: 17590 - - uid: 18126 + pos: 5.5,-3.5 + parent: 17641 + - uid: 18024 components: - type: Transform - pos: 33.5,-3.5 - parent: 17590 - - uid: 18127 + pos: 4.5,-3.5 + parent: 17641 + - uid: 18025 components: - type: Transform - pos: 31.5,-3.5 - parent: 17590 - - uid: 18128 + pos: 3.5,-3.5 + parent: 17641 + - uid: 18026 components: - type: Transform - pos: 38.5,-3.5 - parent: 17590 - - uid: 18129 + pos: 2.5,-3.5 + parent: 17641 + - uid: 18027 components: - type: Transform - pos: 36.5,-3.5 - parent: 17590 - - uid: 18130 + pos: 0.5,-3.5 + parent: 17641 + - uid: 18028 components: - type: Transform - pos: 35.5,-3.5 - parent: 17590 - - uid: 18131 + pos: -0.5,-3.5 + parent: 17641 + - uid: 18029 components: - type: Transform - pos: 34.5,1.5 - parent: 17590 - - uid: 18132 + pos: 8.5,-3.5 + parent: 17641 + - uid: 18030 components: - type: Transform - pos: 34.5,-1.5 - parent: 17590 - - uid: 18133 + pos: 1.5,-3.5 + parent: 17641 + - uid: 18031 components: - type: Transform - pos: 30.5,-13.5 - parent: 17590 - - uid: 18134 + pos: -0.5,-2.5 + parent: 17641 + - uid: 18032 components: - type: Transform - pos: 28.5,-14.5 - parent: 17590 - - uid: 18135 + pos: -0.5,-1.5 + parent: 17641 + - uid: 18033 components: - type: Transform - pos: 30.5,-14.5 - parent: 17590 - - uid: 18136 + pos: -0.5,-0.5 + parent: 17641 + - uid: 18034 components: - type: Transform - pos: 27.5,-14.5 - parent: 17590 - - uid: 18137 + pos: 0.5,-0.5 + parent: 17641 + - uid: 18035 components: - type: Transform - pos: 28.5,-13.5 - parent: 17590 - - uid: 18138 + pos: 1.5,-0.5 + parent: 17641 + - uid: 18036 components: - type: Transform - pos: 26.5,-14.5 - parent: 17590 - - uid: 18139 + pos: 1.5,0.5 + parent: 17641 + - uid: 18037 components: - type: Transform - pos: 23.5,-14.5 - parent: 17590 - - uid: 18140 + pos: 1.5,2.5 + parent: 17641 + - uid: 18038 components: - type: Transform - pos: 25.5,-14.5 - parent: 17590 - - uid: 18141 + pos: 1.5,1.5 + parent: 17641 + - uid: 18039 components: - type: Transform - pos: 24.5,-14.5 - parent: 17590 - - uid: 18142 + pos: 2.5,2.5 + parent: 17641 + - uid: 18040 components: - type: Transform - pos: 22.5,-14.5 - parent: 17590 - - uid: 18143 + pos: 4.5,2.5 + parent: 17641 + - uid: 18041 components: - type: Transform - pos: 21.5,-15.5 - parent: 17590 - - uid: 18144 + pos: 4.5,3.5 + parent: 17641 + - uid: 18042 components: - type: Transform - pos: 21.5,-14.5 - parent: 17590 - - uid: 18145 + pos: 3.5,2.5 + parent: 17641 + - uid: 18043 components: - type: Transform - pos: 21.5,-16.5 - parent: 17590 - - uid: 18146 + pos: 4.5,4.5 + parent: 17641 + - uid: 18044 components: - type: Transform - pos: 20.5,-17.5 - parent: 17590 - - uid: 18147 + pos: 4.5,6.5 + parent: 17641 + - uid: 18045 components: - type: Transform - pos: 18.5,-17.5 - parent: 17590 - - uid: 18148 + pos: 4.5,7.5 + parent: 17641 + - uid: 18046 components: - type: Transform - pos: 10.5,-11.5 - parent: 17590 - - uid: 18149 + pos: 4.5,5.5 + parent: 17641 + - uid: 18047 components: - type: Transform - pos: 11.5,-11.5 - parent: 17590 - - uid: 18150 + pos: 4.5,8.5 + parent: 17641 + - uid: 18048 components: - type: Transform - pos: 12.5,-11.5 - parent: 17590 - - uid: 18151 + pos: 13.5,9.5 + parent: 17641 + - uid: 18049 components: - type: Transform - pos: 11.5,-2.5 - parent: 17590 - - uid: 18152 + pos: 15.5,9.5 + parent: 17641 + - uid: 18050 components: - type: Transform - pos: 34.5,2.5 - parent: 17590 - - uid: 18153 + pos: 14.5,9.5 + parent: 17641 + - uid: 18051 components: - type: Transform - pos: 37.5,6.5 - parent: 17590 - - uid: 18154 + pos: 12.5,9.5 + parent: 17641 + - uid: 18052 components: - type: Transform - pos: 34.5,4.5 - parent: 17590 - - uid: 18155 + pos: 11.5,9.5 + parent: 17641 + - uid: 18053 components: - type: Transform - pos: 34.5,6.5 - parent: 17590 - - uid: 18156 + pos: 5.5,9.5 + parent: 17641 + - uid: 18054 components: - type: Transform - pos: 13.5,-7.5 - parent: 17590 - - uid: 18157 + pos: 10.5,9.5 + parent: 17641 + - uid: 18055 components: - type: Transform - pos: 42.5,0.5 - parent: 17590 - - uid: 18158 + pos: 9.5,9.5 + parent: 17641 + - uid: 18056 components: - type: Transform - pos: 10.5,-7.5 - parent: 17590 - - uid: 18159 + pos: 8.5,9.5 + parent: 17641 + - uid: 18057 components: - type: Transform - pos: 38.5,-9.5 - parent: 17590 - - uid: 18160 + pos: 7.5,9.5 + parent: 17641 + - uid: 18058 components: - type: Transform - pos: 33.5,-1.5 - parent: 17590 - - uid: 18161 + pos: 6.5,9.5 + parent: 17641 + - uid: 18059 components: - type: Transform - pos: 32.5,-1.5 - parent: 17590 - - uid: 18162 + pos: 4.5,9.5 + parent: 17641 + - uid: 18060 components: - type: Transform - pos: 31.5,-1.5 - parent: 17590 - - uid: 18163 + pos: 16.5,9.5 + parent: 17641 + - uid: 18061 components: - type: Transform - pos: 30.5,-1.5 - parent: 17590 - - uid: 18164 + pos: 18.5,9.5 + parent: 17641 + - uid: 18062 components: - type: Transform - pos: 29.5,-1.5 - parent: 17590 - - uid: 18165 + pos: 19.5,9.5 + parent: 17641 + - uid: 18063 components: - type: Transform - pos: 28.5,-1.5 - parent: 17590 - - uid: 18166 + pos: 17.5,9.5 + parent: 17641 + - uid: 18064 components: - type: Transform - pos: 27.5,-1.5 - parent: 17590 - - uid: 18167 + pos: 20.5,9.5 + parent: 17641 + - uid: 18065 components: - type: Transform - pos: 27.5,-2.5 - parent: 17590 - - uid: 18168 + pos: 21.5,9.5 + parent: 17641 + - uid: 18066 components: - type: Transform - pos: 41.5,-13.5 - parent: 17590 - - uid: 18169 + pos: 22.5,9.5 + parent: 17641 + - uid: 18067 components: - type: Transform - pos: 43.5,-3.5 - parent: 17590 - - uid: 18170 + pos: 23.5,9.5 + parent: 17641 + - uid: 18068 components: - type: Transform - pos: 41.5,-12.5 - parent: 17590 - - uid: 18171 + pos: 24.5,9.5 + parent: 17641 + - uid: 18069 components: - type: Transform - pos: 40.5,-12.5 - parent: 17590 - - uid: 18173 + pos: 17.5,8.5 + parent: 17641 + - uid: 18070 components: - type: Transform - pos: 21.5,-17.5 - parent: 17590 - - uid: 18174 + pos: 17.5,6.5 + parent: 17641 + - uid: 18071 components: - type: Transform - pos: 38.5,-10.5 - parent: 17590 - - uid: 18175 + pos: 17.5,7.5 + parent: 17641 + - uid: 18072 components: - type: Transform - pos: 38.5,-5.5 - parent: 17590 - - uid: 18176 + pos: 17.5,5.5 + parent: 17641 + - uid: 18073 components: - type: Transform - pos: 11.5,-7.5 - parent: 17590 - - uid: 18177 + pos: 25.5,-3.5 + parent: 17641 + - uid: 18074 components: - type: Transform - pos: 14.5,-3.5 - parent: 17590 - - uid: 18178 + pos: 27.5,-3.5 + parent: 17641 + - uid: 18075 components: - type: Transform - pos: 14.5,-2.5 - parent: 17590 - - uid: 18179 + pos: 28.5,-3.5 + parent: 17641 + - uid: 18076 components: - type: Transform - pos: 37.5,-2.5 - parent: 17590 - - uid: 18180 + pos: 29.5,-3.5 + parent: 17641 + - uid: 18077 components: - type: Transform - pos: 39.5,-10.5 - parent: 17590 - - uid: 18181 + pos: 26.5,-3.5 + parent: 17641 + - uid: 18078 components: - type: Transform - pos: 9.5,-7.5 - parent: 17590 - - uid: 18182 + pos: 30.5,-3.5 + parent: 17641 + - uid: 18079 components: - type: Transform - pos: 9.5,-11.5 - parent: 17590 - - uid: 18183 + pos: 32.5,-3.5 + parent: 17641 + - uid: 18080 components: - type: Transform - pos: 41.5,-10.5 - parent: 17590 - - uid: 18184 + pos: 31.5,-3.5 + parent: 17641 + - uid: 18081 components: - type: Transform - pos: 43.5,-10.5 - parent: 17590 - - uid: 18185 + pos: 33.5,-3.5 + parent: 17641 + - uid: 18082 components: - type: Transform - pos: 41.5,-11.5 - parent: 17590 - - uid: 18187 + pos: 36.5,-3.5 + parent: 17641 + - uid: 18083 components: - type: Transform pos: 37.5,-3.5 - parent: 17590 - - uid: 18188 - components: - - type: Transform - pos: 46.5,1.5 - parent: 17590 - - uid: 18189 + parent: 17641 + - uid: 18084 components: - type: Transform - pos: 32.5,-3.5 - parent: 17590 - - uid: 18190 + pos: 35.5,-3.5 + parent: 17641 + - uid: 18085 components: - type: Transform pos: 34.5,-3.5 - parent: 17590 - - uid: 18191 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 17590 - - uid: 18192 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 17590 - - uid: 18193 - components: - - type: Transform - pos: 34.5,5.5 - parent: 17590 - - uid: 18194 - components: - - type: Transform - pos: 30.5,-8.5 - parent: 17590 - - uid: 18195 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 17590 - - uid: 18196 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 17590 - - uid: 18197 - components: - - type: Transform - pos: 36.5,6.5 - parent: 17590 - - uid: 18198 - components: - - type: Transform - pos: 35.5,6.5 - parent: 17590 - - uid: 18199 - components: - - type: Transform - pos: 38.5,-4.5 - parent: 17590 - - uid: 18200 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 17590 - - uid: 18201 - components: - - type: Transform - pos: 14.5,-4.5 - parent: 17590 - - uid: 18202 - components: - - type: Transform - pos: 44.5,1.5 - parent: 17590 - - uid: 18203 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 17590 - - uid: 18204 - components: - - type: Transform - pos: 41.5,-2.5 - parent: 17590 - - uid: 18205 - components: - - type: Transform - pos: 41.5,-1.5 - parent: 17590 - - uid: 18206 - components: - - type: Transform - pos: 42.5,2.5 - parent: 17590 - - uid: 18207 - components: - - type: Transform - pos: 43.5,2.5 - parent: 17590 - - uid: 18208 - components: - - type: Transform - pos: 41.5,-3.5 - parent: 17590 - - uid: 18209 - components: - - type: Transform - pos: 46.5,2.5 - parent: 17590 - - uid: 18210 - components: - - type: Transform - pos: 47.5,2.5 - parent: 17590 - - uid: 18211 - components: - - type: Transform - pos: 48.5,2.5 - parent: 17590 - - uid: 18212 - components: - - type: Transform - pos: 44.5,2.5 - parent: 17590 - - uid: 18213 - components: - - type: Transform - pos: 49.5,2.5 - parent: 17590 - - uid: 18214 - components: - - type: Transform - pos: 45.5,2.5 - parent: 17590 - - uid: 18850 - components: - - type: Transform - pos: 41.5,-16.5 - parent: 17590 - - uid: 19177 - components: - - type: Transform - pos: 41.5,-15.5 - parent: 17590 - - uid: 19537 - components: - - type: Transform - pos: 28.5,-12.5 - parent: 17590 - - uid: 19538 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 17590 - - uid: 19541 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 17590 - - uid: 19542 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 17590 - - uid: 19543 - components: - - type: Transform - pos: 29.5,-14.5 - parent: 17590 - - uid: 19684 - components: - - type: Transform - pos: 41.5,-17.5 - parent: 17590 - - uid: 19685 + parent: 17641 + - uid: 18086 components: - type: Transform - pos: 41.5,-18.5 - parent: 17590 - - uid: 19686 + pos: 37.5,-2.5 + parent: 17641 + - uid: 18087 components: - type: Transform - pos: 41.5,-19.5 - parent: 17590 - - uid: 19687 + pos: 37.5,-1.5 + parent: 17641 + - uid: 18088 components: - type: Transform - pos: 41.5,-14.5 - parent: 17590 - - uid: 19688 + pos: 38.5,-1.5 + parent: 17641 + - uid: 18089 components: - type: Transform - pos: 41.5,-20.5 - parent: 17590 - - uid: 19689 + pos: 17.5,10.5 + parent: 17641 + - uid: 18090 components: - type: Transform - pos: 43.5,-4.5 - parent: 17590 - - uid: 19690 + pos: 17.5,12.5 + parent: 17641 + - uid: 18091 components: - type: Transform - pos: 42.5,-20.5 - parent: 17590 - - uid: 19691 + pos: 17.5,11.5 + parent: 17641 + - uid: 18092 components: - type: Transform - pos: 43.5,-6.5 - parent: 17590 - - uid: 19692 + pos: 17.5,13.5 + parent: 17641 + - uid: 18093 components: - type: Transform - pos: 43.5,-7.5 - parent: 17590 - - uid: 19693 + pos: 17.5,14.5 + parent: 17641 + - uid: 18094 components: - type: Transform - pos: 43.5,-8.5 - parent: 17590 - - uid: 19694 + pos: 18.5,14.5 + parent: 17641 + - uid: 18095 components: - type: Transform - pos: 43.5,-9.5 - parent: 17590 - - uid: 19695 + pos: 19.5,14.5 + parent: 17641 + - uid: 18096 components: - type: Transform - pos: 43.5,-5.5 - parent: 17590 - - uid: 19890 + pos: 5.5,2.5 + parent: 17641 + - uid: 18097 components: - type: Transform - pos: 41.5,15.5 - parent: 19854 - - uid: 19894 + pos: 7.5,2.5 + parent: 17641 + - uid: 18098 components: - type: Transform - pos: 41.5,17.5 - parent: 19854 - - uid: 19895 + pos: 8.5,2.5 + parent: 17641 + - uid: 18099 components: - type: Transform - pos: 41.5,16.5 - parent: 19854 - - uid: 19920 + pos: 6.5,2.5 + parent: 17641 + - uid: 18100 components: - type: Transform - pos: -6.5,26.5 - parent: 2 - - uid: 19921 + pos: 9.5,2.5 + parent: 17641 + - uid: 18101 components: - type: Transform - pos: -6.5,27.5 - parent: 2 - - uid: 19922 + pos: 10.5,2.5 + parent: 17641 + - uid: 18102 components: - type: Transform - pos: -6.5,28.5 - parent: 2 - - uid: 19985 + pos: 11.5,2.5 + parent: 17641 + - uid: 18103 components: - type: Transform - pos: 25.5,15.5 - parent: 19951 - - uid: 19986 + pos: 12.5,2.5 + parent: 17641 + - uid: 18104 components: - type: Transform - pos: 25.5,17.5 - parent: 19951 - - uid: 19987 + pos: 13.5,2.5 + parent: 17641 + - uid: 18105 components: - type: Transform - pos: 25.5,16.5 - parent: 19951 - - uid: 20033 + pos: 13.5,3.5 + parent: 17641 + - uid: 18106 components: - type: Transform - pos: 25.5,10.5 - parent: 20000 - - uid: 20037 + pos: 13.5,5.5 + parent: 17641 + - uid: 18107 components: - type: Transform - pos: 25.5,11.5 - parent: 20000 + pos: 13.5,4.5 + parent: 17641 - proto: CableMVStack entities: - uid: 17302 @@ -43057,21 +38037,74 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-41.5 parent: 2 - - uid: 18215 + - uid: 18108 components: - type: Transform - pos: 39.5,-0.5 - parent: 17590 - - uid: 18216 + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 17641 + - uid: 18109 components: - type: Transform - pos: 38.5,-0.5 - parent: 17590 - - uid: 18217 + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 17641 + - uid: 18110 components: - type: Transform - pos: 40.5,-0.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 17641 + - uid: 18111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 17641 + - uid: 18112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 17641 + - uid: 18113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 17641 + - uid: 18114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 17641 + - uid: 18115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 17641 + - uid: 18116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 17641 + - uid: 18117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 17641 +- proto: CandleGreenInfinite + entities: + - uid: 4144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.838465,29.758402 + parent: 2 - proto: CandleInfinite entities: - uid: 4350 @@ -43101,170 +38134,507 @@ entities: - type: Transform pos: 21.025269,46.03602 parent: 2 - - uid: 17425 - components: - - type: Transform - pos: -1.9530478,-1.3117793 - parent: 2 - proto: CandleRedInfinite entities: - - uid: 17536 - components: - - type: Transform - pos: 51.791668,-5.4375 - parent: 2 -- proto: Cane - entities: - - uid: 252 - components: - - type: Transform - parent: 4814 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CannabisSeeds - entities: - - uid: 6720 + - uid: 2010 components: - type: Transform - pos: -38.876945,38.145897 + pos: -23.649628,26.651651 parent: 2 - - uid: 6724 + - uid: 7154 components: - type: Transform - pos: -38.720695,38.427147 + pos: -23.509003,26.542276 parent: 2 -- proto: CapacitorStockPart - entities: - - uid: 10203 + - uid: 11889 components: - type: Transform - pos: -11.307538,-2.563242 + rot: 1.5707963267948966 rad + pos: -14.350788,35.774048 parent: 2 - - uid: 10204 + - uid: 13011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.760663,-2.766367 + rot: 1.5707963267948966 rad + pos: -9.257039,35.445923 parent: 2 - - uid: 10205 + - uid: 17536 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.338788,-2.953867 + pos: 51.791668,-5.4375 parent: 2 -- proto: CaptainIDCard +- proto: CandleRedSmallInfinite entities: - - uid: 786 + - uid: 11879 components: - type: Transform - pos: -3.4659548,-3.9046545 + rot: 1.5707963267948966 rad + pos: -9.053914,35.586548 parent: 2 -- proto: CaptainSabre +- proto: Cane entities: - - uid: 18219 + - uid: 252 components: - type: Transform - parent: 18218 + parent: 4814 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: CarbonDioxideCanister +- proto: CaptainIDCard entities: - - uid: 17120 + - uid: 786 components: - type: Transform - pos: -17.5,28.5 + pos: -3.4659548,-3.9046545 parent: 2 - proto: Carpet entities: - - uid: 3223 + - uid: 524 components: - type: Transform - pos: -22.5,63.5 + rot: 1.5707963267948966 rad + pos: -13.5,41.5 parent: 2 - - uid: 3550 + - uid: 627 components: - type: Transform - pos: -23.5,63.5 + rot: 1.5707963267948966 rad + pos: -8.5,41.5 parent: 2 - - uid: 13391 + - uid: 942 components: - type: Transform - pos: 18.5,46.5 + rot: 1.5707963267948966 rad + pos: -11.5,36.5 parent: 2 - - uid: 13400 + - uid: 954 components: - type: Transform - pos: 20.5,46.5 + rot: 1.5707963267948966 rad + pos: -12.5,40.5 parent: 2 - - uid: 13401 + - uid: 1040 components: - type: Transform - pos: 19.5,46.5 + rot: 1.5707963267948966 rad + pos: -12.5,41.5 parent: 2 - - uid: 13402 + - uid: 2722 components: - type: Transform - pos: 21.5,46.5 + pos: -68.5,35.5 parent: 2 - - uid: 17273 + - uid: 2764 components: - type: Transform - pos: -24.5,62.5 + pos: -68.5,36.5 parent: 2 - - uid: 17305 + - uid: 2767 components: - type: Transform - pos: -21.5,63.5 + pos: -67.5,35.5 parent: 2 -- proto: CarpetBlue - entities: - - uid: 4913 + - uid: 3080 components: - type: Transform - pos: -30.5,13.5 + pos: -67.5,36.5 parent: 2 - - uid: 4914 + - uid: 3086 components: - type: Transform - pos: -31.5,13.5 + pos: -67.5,37.5 parent: 2 - - uid: 4916 + - uid: 3154 components: - type: Transform - pos: -30.5,14.5 + pos: -69.5,35.5 parent: 2 - - uid: 4917 + - uid: 3223 components: - type: Transform - pos: -30.5,15.5 + pos: -22.5,63.5 parent: 2 - - uid: 4918 + - uid: 3550 components: - type: Transform - pos: -31.5,14.5 + pos: -23.5,63.5 parent: 2 - - uid: 4919 + - uid: 4274 components: - type: Transform - pos: -31.5,15.5 - parent: 2 - - uid: 4920 + rot: 1.5707963267948966 rad + pos: -11.5,37.5 + parent: 2 + - uid: 8035 components: - type: Transform - pos: -31.5,12.5 + rot: 1.5707963267948966 rad + pos: -9.5,41.5 parent: 2 - - uid: 4921 + - uid: 13058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,41.5 + parent: 2 + - uid: 13391 + components: + - type: Transform + pos: 18.5,46.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: 20.5,46.5 + parent: 2 + - uid: 13401 + components: + - type: Transform + pos: 19.5,46.5 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: 21.5,46.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,41.5 + parent: 2 + - uid: 17093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,35.5 + parent: 2 + - uid: 17103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,35.5 + parent: 2 + - uid: 17104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,38.5 + parent: 2 + - uid: 17110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,35.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,41.5 + parent: 2 + - uid: 17119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,40.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,40.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,40.5 + parent: 2 + - uid: 17273 + components: + - type: Transform + pos: -24.5,62.5 + parent: 2 + - uid: 17305 components: - type: Transform + pos: -21.5,63.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 623 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: -31.5,11.5 parent: 2 - - uid: 4923 + - uid: 924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,12.5 + parent: 2 + - uid: 949 components: - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,12.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,13.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: -30.5,11.5 parent: 2 + - uid: 4913 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 11959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,15.5 + parent: 2 + - uid: 12006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,15.5 + parent: 2 + - uid: 12072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,15.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,16.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,13.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,17.5 + parent: 2 + - uid: 12338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,12.5 + parent: 2 + - uid: 12339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,11.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 4548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,38.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,37.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,36.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,38.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,37.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,36.5 + parent: 2 + - uid: 17094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,38.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,38.5 + parent: 2 + - uid: 17097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,37.5 + parent: 2 + - uid: 17102 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 + - uid: 17105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,38.5 + parent: 2 + - uid: 17106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,36.5 + parent: 2 + - uid: 17109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,38.5 + parent: 2 + - uid: 17111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,36.5 + parent: 2 + - uid: 17112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,36.5 + parent: 2 + - uid: 17113 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 17114 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,36.5 + parent: 2 +- proto: CarpetCyan + entities: + - uid: 13725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,8.5 + parent: 2 + - uid: 14551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,10.5 + parent: 2 + - uid: 14552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,9.5 + parent: 2 + - uid: 14553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,9.5 + parent: 2 + - uid: 14666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,9.5 + parent: 2 + - uid: 20173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 2 + - uid: 20174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,4.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 11649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,30.5 + parent: 2 + - uid: 11650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,30.5 + parent: 2 + - uid: 11651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,29.5 + parent: 2 + - uid: 11658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,29.5 + parent: 2 + - uid: 11693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,30.5 + parent: 2 + - uid: 11751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,29.5 + parent: 2 - proto: CarpetPurple entities: - uid: 1005 @@ -43292,25 +38662,10 @@ entities: - type: Transform pos: -21.5,-4.5 parent: 2 - - uid: 17454 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 2 - - uid: 17455 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 2 - - uid: 17459 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 17464 + - uid: 7411 components: - type: Transform - pos: -2.5,-1.5 + pos: -22.5,-2.5 parent: 2 - proto: CarpetSBlue entities: @@ -43344,6 +38699,24 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-18.5 parent: 2 +- proto: CartridgeMagnum + entities: + - uid: 18118 + components: + - type: Transform + rot: -1.3264502315156905 rad + pos: -0.17631143,3.2697146 + parent: 17641 + - type: CartridgeAmmo + spent: True + - uid: 18119 + components: + - type: Transform + rot: 0.5585053606381855 rad + pos: 19.950155,1.2316935 + parent: 17641 + - type: CartridgeAmmo + spent: True - proto: Catwalk entities: - uid: 48 @@ -43362,32 +38735,66 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-19.5 parent: 2 + - uid: 368 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 - uid: 476 components: - type: Transform pos: -16.5,48.5 parent: 2 + - uid: 478 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 - uid: 591 components: - type: Transform pos: -16.5,49.5 parent: 2 - - uid: 931 + - uid: 603 components: - type: Transform - pos: 36.5,1.5 + pos: -45.5,46.5 parent: 2 - - uid: 1336 + - uid: 608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,27.5 + pos: -43.5,46.5 parent: 2 - - uid: 1370 + - uid: 615 + components: + - type: Transform + pos: -44.5,46.5 + parent: 2 + - uid: 690 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,24.5 + pos: 27.5,10.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 54.5,-8.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: 36.5,1.5 parent: 2 - uid: 1414 components: @@ -43409,6 +38816,16 @@ entities: - type: Transform pos: -43.5,-19.5 parent: 2 + - uid: 1748 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 - uid: 1820 components: - type: Transform @@ -43574,6 +38991,26 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-23.5 parent: 2 + - uid: 1997 + components: + - type: Transform + pos: -6.5,29.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 - uid: 2190 components: - type: Transform @@ -43745,6 +39182,11 @@ entities: - type: Transform pos: 34.5,11.5 parent: 2 + - uid: 2604 + components: + - type: Transform + pos: -46.5,46.5 + parent: 2 - uid: 2813 components: - type: Transform @@ -43790,6 +39232,26 @@ entities: - type: Transform pos: 35.5,17.5 parent: 2 + - uid: 3177 + components: + - type: Transform + pos: -9.5,29.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: -11.5,29.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 - uid: 3516 components: - type: Transform @@ -43850,6 +39312,11 @@ entities: - type: Transform pos: -25.5,-45.5 parent: 2 + - uid: 3946 + components: + - type: Transform + pos: -57.5,40.5 + parent: 2 - uid: 4000 components: - type: Transform @@ -44168,6 +39635,16 @@ entities: - type: Transform pos: 21.5,-21.5 parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -44.5,43.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: -43.5,43.5 + parent: 2 - uid: 4927 components: - type: Transform @@ -44354,6 +39831,76 @@ entities: - type: Transform pos: 8.5,-0.5 parent: 2 + - uid: 6492 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: 24.5,36.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 6506 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + pos: 25.5,33.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 - uid: 6639 components: - type: Transform @@ -44381,6 +39928,11 @@ entities: - type: Transform pos: -14.5,-29.5 parent: 2 + - uid: 7043 + components: + - type: Transform + pos: -58.5,38.5 + parent: 2 - uid: 7079 components: - type: Transform @@ -44641,61 +40193,11 @@ entities: - type: Transform pos: -42.5,1.5 parent: 2 - - uid: 7256 - components: - - type: Transform - pos: -41.5,1.5 - parent: 2 - - uid: 7257 - components: - - type: Transform - pos: -40.5,1.5 - parent: 2 - - uid: 7258 - components: - - type: Transform - pos: -39.5,1.5 - parent: 2 - - uid: 7259 - components: - - type: Transform - pos: -38.5,1.5 - parent: 2 - - uid: 7260 - components: - - type: Transform - pos: -37.5,1.5 - parent: 2 - - uid: 7261 - components: - - type: Transform - pos: -36.5,1.5 - parent: 2 - uid: 7262 components: - type: Transform pos: -43.5,1.5 parent: 2 - - uid: 7263 - components: - - type: Transform - pos: -34.5,1.5 - parent: 2 - - uid: 7264 - components: - - type: Transform - pos: -33.5,1.5 - parent: 2 - - uid: 7265 - components: - - type: Transform - pos: -32.5,1.5 - parent: 2 - - uid: 7266 - components: - - type: Transform - pos: -35.5,1.5 - parent: 2 - uid: 7268 components: - type: Transform @@ -44966,71 +40468,16 @@ entities: - type: Transform pos: 9.5,-42.5 parent: 2 - - uid: 7407 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 2 - - uid: 7408 - components: - - type: Transform - pos: 11.5,-42.5 - parent: 2 - - uid: 7409 - components: - - type: Transform - pos: 12.5,-42.5 - parent: 2 - uid: 7410 components: - type: Transform pos: 7.5,-42.5 parent: 2 - - uid: 7411 - components: - - type: Transform - pos: 13.5,-42.5 - parent: 2 - - uid: 7412 - components: - - type: Transform - pos: 14.5,-42.5 - parent: 2 - - uid: 7413 - components: - - type: Transform - pos: 16.5,-42.5 - parent: 2 - - uid: 7414 - components: - - type: Transform - pos: 17.5,-42.5 - parent: 2 - - uid: 7415 - components: - - type: Transform - pos: 18.5,-42.5 - parent: 2 - - uid: 7416 - components: - - type: Transform - pos: 20.5,-42.5 - parent: 2 - - uid: 7417 - components: - - type: Transform - pos: 19.5,-42.5 - parent: 2 - uid: 7418 components: - type: Transform pos: 21.5,-42.5 parent: 2 - - uid: 7419 - components: - - type: Transform - pos: 15.5,-42.5 - parent: 2 - uid: 7584 components: - type: Transform @@ -45066,6 +40513,12 @@ entities: - type: Transform pos: -23.5,-45.5 parent: 2 + - uid: 7687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 - uid: 7720 components: - type: Transform @@ -45095,18 +40548,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,43.5 parent: 2 - - uid: 7793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,43.5 - parent: 2 - - uid: 7794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,43.5 - parent: 2 - uid: 7796 components: - type: Transform @@ -45192,22 +40633,122 @@ entities: - type: Transform pos: -13.5,50.5 parent: 2 + - uid: 8170 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 - uid: 8180 components: - type: Transform pos: -16.5,50.5 parent: 2 + - uid: 8335 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 8342 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 - uid: 8491 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,14.5 parent: 2 + - uid: 8713 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 9655 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 + - uid: 9656 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 9657 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 9658 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 9659 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 + - uid: 9660 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: 9.5,-46.5 + parent: 2 + - uid: 9662 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 9663 + components: + - type: Transform + pos: 17.5,-47.5 + parent: 2 + - uid: 10509 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 2 + - uid: 10961 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 - uid: 11054 components: - type: Transform pos: 34.5,19.5 parent: 2 + - uid: 11083 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 11084 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 2 + - uid: 11086 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 - uid: 11652 components: - type: Transform @@ -45233,11 +40774,6 @@ entities: - type: Transform pos: -21.5,48.5 parent: 2 - - uid: 11658 - components: - - type: Transform - pos: -39.5,37.5 - parent: 2 - uid: 11659 components: - type: Transform @@ -45533,26 +41069,6 @@ entities: - type: Transform pos: 7.5,32.5 parent: 2 - - uid: 11751 - components: - - type: Transform - pos: 4.5,32.5 - parent: 2 - - uid: 11752 - components: - - type: Transform - pos: 5.5,32.5 - parent: 2 - - uid: 11755 - components: - - type: Transform - pos: 5.5,33.5 - parent: 2 - - uid: 11756 - components: - - type: Transform - pos: 5.5,34.5 - parent: 2 - uid: 11758 components: - type: Transform @@ -45847,36 +41363,6 @@ entities: - type: Transform pos: -12.5,8.5 parent: 2 - - uid: 11840 - components: - - type: Transform - pos: -14.5,8.5 - parent: 2 - - uid: 11841 - components: - - type: Transform - pos: -15.5,8.5 - parent: 2 - - uid: 11844 - components: - - type: Transform - pos: -19.5,8.5 - parent: 2 - - uid: 11845 - components: - - type: Transform - pos: -20.5,8.5 - parent: 2 - - uid: 11846 - components: - - type: Transform - pos: -16.5,8.5 - parent: 2 - - uid: 11847 - components: - - type: Transform - pos: -20.5,7.5 - parent: 2 - uid: 11848 components: - type: Transform @@ -45932,11 +41418,6 @@ entities: - type: Transform pos: -24.5,2.5 parent: 2 - - uid: 11867 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 2 - uid: 11868 components: - type: Transform @@ -45952,21 +41433,11 @@ entities: - type: Transform pos: -6.5,18.5 parent: 2 - - uid: 11872 - components: - - type: Transform - pos: -5.5,22.5 - parent: 2 - uid: 11873 components: - type: Transform pos: -26.5,-0.5 parent: 2 - - uid: 11875 - components: - - type: Transform - pos: -5.5,21.5 - parent: 2 - uid: 11877 components: - type: Transform @@ -45977,86 +41448,26 @@ entities: - type: Transform pos: -6.5,24.5 parent: 2 - - uid: 11879 - components: - - type: Transform - pos: -6.5,25.5 - parent: 2 - uid: 11886 components: - type: Transform pos: 34.5,15.5 parent: 2 - - uid: 11889 - components: - - type: Transform - pos: -6.5,29.5 - parent: 2 - - uid: 11891 - components: - - type: Transform - pos: -9.5,29.5 - parent: 2 - - uid: 11892 - components: - - type: Transform - pos: -10.5,29.5 - parent: 2 - - uid: 11893 - components: - - type: Transform - pos: -11.5,29.5 - parent: 2 - - uid: 11894 - components: - - type: Transform - pos: -7.5,29.5 - parent: 2 - uid: 11895 components: - type: Transform pos: -7.5,28.5 parent: 2 - - uid: 11896 - components: - - type: Transform - pos: -9.5,28.5 - parent: 2 - - uid: 11901 - components: - - type: Transform - pos: -13.5,28.5 - parent: 2 - - uid: 11903 - components: - - type: Transform - pos: -15.5,28.5 - parent: 2 - uid: 11905 components: - type: Transform pos: -13.5,29.5 parent: 2 - - uid: 11906 - components: - - type: Transform - pos: -15.5,29.5 - parent: 2 - - uid: 11907 - components: - - type: Transform - pos: -16.5,29.5 - parent: 2 - uid: 11908 components: - type: Transform pos: -17.5,29.5 parent: 2 - - uid: 11909 - components: - - type: Transform - pos: -14.5,29.5 - parent: 2 - uid: 11911 components: - type: Transform @@ -46182,10 +41593,11 @@ entities: - type: Transform pos: -70.5,32.5 parent: 2 - - uid: 13214 + - uid: 13134 components: - type: Transform - pos: -37.5,40.5 + rot: 3.141592653589793 rad + pos: -33.5,-35.5 parent: 2 - uid: 14126 components: @@ -46222,36 +41634,239 @@ entities: - type: Transform pos: 25.5,-8.5 parent: 2 - - uid: 15479 + - uid: 15534 components: - type: Transform - pos: -73.5,28.5 + pos: 54.5,-3.5 parent: 2 - - uid: 15480 + - uid: 15535 components: - type: Transform - pos: -67.5,29.5 + pos: 56.5,-3.5 parent: 2 - - uid: 15481 + - uid: 15536 components: - type: Transform - pos: -56.5,29.5 + pos: 57.5,-3.5 parent: 2 - - uid: 15482 + - uid: 15537 components: - type: Transform - pos: -48.5,29.5 + pos: 58.5,-3.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 2 + - uid: 15539 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - uid: 15541 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + pos: 60.5,-6.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + pos: 60.5,-8.5 + parent: 2 + - uid: 15545 + components: + - type: Transform + pos: 60.5,-9.5 + parent: 2 + - uid: 15546 + components: + - type: Transform + pos: 60.5,-10.5 + parent: 2 + - uid: 15547 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 + - uid: 15548 + components: + - type: Transform + pos: 60.5,-5.5 + parent: 2 + - uid: 15549 + components: + - type: Transform + pos: 60.5,-13.5 + parent: 2 + - uid: 15550 + components: + - type: Transform + pos: 60.5,-14.5 + parent: 2 + - uid: 15551 + components: + - type: Transform + pos: 60.5,-15.5 + parent: 2 + - uid: 15552 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - uid: 15554 + components: + - type: Transform + pos: 60.5,-18.5 + parent: 2 + - uid: 15555 + components: + - type: Transform + pos: 60.5,-12.5 + parent: 2 + - uid: 15556 + components: + - type: Transform + pos: 60.5,-19.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + pos: 59.5,-19.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + pos: 57.5,-19.5 + parent: 2 + - uid: 15559 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + pos: 55.5,-19.5 + parent: 2 + - uid: 15562 + components: + - type: Transform + pos: 54.5,-19.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 15596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,11.5 parent: 2 - uid: 15609 components: - type: Transform pos: -36.5,-29.5 parent: 2 + - uid: 15613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,14.5 + parent: 2 + - uid: 15615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 - uid: 15619 components: - type: Transform pos: -35.5,-27.5 parent: 2 + - uid: 15624 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 15625 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 15627 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 15628 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 15629 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 15631 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 15632 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 15634 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 - uid: 15682 components: - type: Transform @@ -46273,6 +41888,61 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,20.5 parent: 2 + - uid: 15711 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: -37.5,1.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 - uid: 15783 components: - type: Transform @@ -46330,11 +42000,60 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-35.5 parent: 2 - - uid: 15839 + - uid: 15903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-35.5 + pos: 10.5,-42.5 + parent: 2 + - uid: 15906 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 15908 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 2 + - uid: 15910 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 15911 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 + - uid: 15912 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 15913 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 2 + - uid: 15914 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 2 + - uid: 15915 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 2 + - uid: 15916 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 2 + - uid: 15917 + components: + - type: Transform + pos: 18.5,-42.5 parent: 2 - uid: 16347 components: @@ -46381,15 +42100,29 @@ entities: - type: Transform pos: -59.5,33.5 parent: 2 - - uid: 17023 + - uid: 17164 components: - type: Transform - pos: -60.5,33.5 + rot: -1.5707963267948966 rad + pos: 26.5,-7.5 parent: 2 - - uid: 17024 + - uid: 17165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - uid: 17166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + - uid: 17167 components: - type: Transform - pos: -63.5,33.5 + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 parent: 2 - uid: 17537 components: @@ -46409,9761 +42142,12254 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,20.5 parent: 2 - - uid: 18220 + - uid: 18120 components: - type: Transform - pos: 47.5,-3.5 - parent: 17590 - - uid: 18221 + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 17641 + - uid: 18121 components: - type: Transform - pos: 45.5,-6.5 - parent: 17590 - - uid: 18222 + rot: 1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 17641 + - uid: 18122 components: - type: Transform - pos: 45.5,-5.5 - parent: 17590 - - uid: 18223 + rot: 1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 17641 + - uid: 18123 components: - type: Transform - pos: 46.5,-3.5 - parent: 17590 - - uid: 18224 + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 17641 + - uid: 18124 components: - type: Transform - pos: 5.5,-1.5 - parent: 17590 - - uid: 18225 + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 17641 + - uid: 18125 components: - type: Transform - pos: 5.5,-12.5 - parent: 17590 - - uid: 18226 + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 17641 + - uid: 18126 components: - type: Transform - pos: 48.5,-4.5 - parent: 17590 - - uid: 18227 + rot: 1.5707963267948966 rad + pos: 28.5,-3.5 + parent: 17641 + - uid: 18127 components: - type: Transform - pos: 48.5,-5.5 - parent: 17590 - - uid: 18229 + rot: 1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 17641 + - uid: 18128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 17590 - - uid: 18230 + rot: 1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 17641 + - uid: 18129 components: - type: Transform - pos: 45.5,-4.5 - parent: 17590 - - uid: 18231 + rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 17641 + - uid: 18130 components: - type: Transform - pos: 5.5,-7.5 - parent: 17590 - - uid: 18233 + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 17641 + - uid: 18131 components: - type: Transform - pos: 23.5,-6.5 - parent: 17590 - - uid: 18235 + rot: 1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 17641 + - uid: 18132 components: - type: Transform - pos: 45.5,-8.5 - parent: 17590 - - uid: 18236 + pos: 11.5,27.5 + parent: 17641 + - uid: 18133 components: - type: Transform - pos: 45.5,-7.5 - parent: 17590 - - uid: 18237 + pos: 12.5,25.5 + parent: 17641 + - uid: 18134 components: - type: Transform - pos: 45.5,-9.5 - parent: 17590 - - uid: 18238 + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 17641 + - uid: 18135 components: - type: Transform - pos: 46.5,-10.5 - parent: 17590 - - uid: 18239 + rot: 1.5707963267948966 rad + pos: 26.5,9.5 + parent: 17641 + - uid: 18136 components: - type: Transform - pos: 47.5,-10.5 - parent: 17590 - - uid: 18240 + rot: 1.5707963267948966 rad + pos: 24.5,7.5 + parent: 17641 + - uid: 18137 components: - type: Transform - pos: 48.5,-9.5 - parent: 17590 - - uid: 18241 + rot: 1.5707963267948966 rad + pos: 24.5,9.5 + parent: 17641 + - uid: 18138 components: - type: Transform - pos: 48.5,-8.5 - parent: 17590 - - uid: 19535 + rot: 1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 17641 + - uid: 18139 components: - type: Transform - pos: 36.5,0.5 - parent: 17590 - - uid: 19544 + rot: 1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 17641 + - uid: 18140 components: - type: Transform - pos: 36.5,1.5 - parent: 17590 - - uid: 19896 + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 17641 + - uid: 18141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,18.5 - parent: 19854 - - uid: 19950 + rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 17641 + - uid: 18142 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,22.5 - parent: 2 - - uid: 19995 + pos: 32.5,-5.5 + parent: 17641 + - uid: 18143 components: - type: Transform - pos: 26.5,18.5 - parent: 19951 - - uid: 20055 + rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 17641 + - uid: 18144 components: - type: Transform - pos: 45.5,-15.5 - parent: 17590 - - uid: 20056 + rot: 1.5707963267948966 rad + pos: 29.5,-3.5 + parent: 17641 + - uid: 18145 components: - type: Transform - pos: 23.5,-7.5 - parent: 17590 - - uid: 20060 + pos: 14.5,14.5 + parent: 17641 + - uid: 18146 components: - type: Transform - pos: 35.5,-6.5 - parent: 17590 - - uid: 20061 + pos: 14.5,13.5 + parent: 17641 + - uid: 18147 components: - type: Transform - pos: 35.5,-7.5 - parent: 17590 - - uid: 20119 + pos: 14.5,11.5 + parent: 17641 + - uid: 18148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,21.5 - parent: 2 - - uid: 20120 + pos: 14.5,12.5 + parent: 17641 + - uid: 18149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,22.5 - parent: 2 - - uid: 20136 + pos: 13.5,15.5 + parent: 17641 + - uid: 18150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,21.5 - parent: 2 - - uid: 20137 + pos: 13.5,14.5 + parent: 17641 + - uid: 18151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,22.5 - parent: 2 -- proto: CentcomComputerComms - entities: - - uid: 16877 + pos: 13.5,13.5 + parent: 17641 + - uid: 18152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,18.5 - parent: 16200 -- proto: Chair - entities: - - uid: 239 + pos: 13.5,12.5 + parent: 17641 + - uid: 18153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,36.5 - parent: 2 - - uid: 267 + pos: 13.5,11.5 + parent: 17641 + - uid: 18154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,11.5 - parent: 2 - - uid: 271 + pos: 14.5,15.5 + parent: 17641 + - uid: 18155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,12.5 - parent: 2 - - uid: 353 + pos: 12.5,15.5 + parent: 17641 + - uid: 18156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,12.5 - parent: 2 - - uid: 360 + pos: 12.5,13.5 + parent: 17641 + - uid: 18157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 2 - - uid: 504 + pos: 12.5,12.5 + parent: 17641 + - uid: 18158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,11.5 - parent: 2 - - uid: 809 + pos: 12.5,14.5 + parent: 17641 + - uid: 18159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,34.5 - parent: 2 - - uid: 832 + pos: 12.5,11.5 + parent: 17641 + - uid: 18160 components: - type: Transform - pos: 24.5,4.5 - parent: 2 - - uid: 893 + pos: 20.5,15.5 + parent: 17641 + - uid: 18161 components: - type: Transform - pos: 24.5,2.5 - parent: 2 - - uid: 1000 + pos: 20.5,13.5 + parent: 17641 + - uid: 18162 components: - type: Transform - pos: 3.5,38.5 - parent: 2 - - uid: 1047 + pos: 20.5,12.5 + parent: 17641 + - uid: 18163 components: - type: Transform - pos: 4.5,38.5 - parent: 2 - - uid: 1049 + pos: 20.5,11.5 + parent: 17641 + - uid: 18164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,36.5 - parent: 2 - - uid: 1050 + pos: 20.5,14.5 + parent: 17641 + - uid: 18165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,37.5 - parent: 2 - - uid: 1125 + pos: 21.5,14.5 + parent: 17641 + - uid: 18166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,12.5 - parent: 2 - - uid: 1275 + pos: 21.5,15.5 + parent: 17641 + - uid: 18167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,16.5 - parent: 2 - - uid: 1277 + pos: 21.5,12.5 + parent: 17641 + - uid: 18168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,14.5 - parent: 2 - - uid: 1320 + pos: 21.5,13.5 + parent: 17641 + - uid: 18169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,5.5 - parent: 2 - - uid: 1746 + pos: 21.5,11.5 + parent: 17641 + - uid: 18170 components: - type: Transform - pos: 23.5,4.5 - parent: 2 - - uid: 1793 + pos: 22.5,15.5 + parent: 17641 + - uid: 18171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,12.5 - parent: 2 - - uid: 1982 + pos: 22.5,13.5 + parent: 17641 + - uid: 18172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-11.5 - parent: 2 - - uid: 3133 + pos: 22.5,12.5 + parent: 17641 + - uid: 18173 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-13.5 - parent: 2 - - uid: 3340 + pos: 22.5,11.5 + parent: 17641 + - uid: 18174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,20.5 - parent: 2 - - uid: 3341 + pos: 22.5,14.5 + parent: 17641 + - uid: 18175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,21.5 - parent: 2 - - uid: 3354 + pos: 11.5,17.5 + parent: 17641 + - uid: 18176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,20.5 - parent: 2 - - uid: 3479 + pos: 11.5,19.5 + parent: 17641 + - uid: 18177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-10.5 - parent: 2 - - uid: 3488 + pos: 12.5,17.5 + parent: 17641 + - uid: 18178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-11.5 - parent: 2 - - uid: 3548 + pos: 12.5,18.5 + parent: 17641 + - uid: 18179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,63.5 - parent: 2 - - uid: 3727 + pos: 12.5,19.5 + parent: 17641 + - uid: 18180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 2 - - uid: 3728 + pos: 13.5,17.5 + parent: 17641 + - uid: 18181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,0.5 - parent: 2 - - uid: 3780 + pos: 13.5,18.5 + parent: 17641 + - uid: 18182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 - parent: 2 - - uid: 3781 + pos: 11.5,18.5 + parent: 17641 + - uid: 18183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-32.5 - parent: 2 - - uid: 3782 + pos: 13.5,19.5 + parent: 17641 + - uid: 18184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-31.5 - parent: 2 - - uid: 4118 + pos: 14.5,18.5 + parent: 17641 + - uid: 18185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,16.5 - parent: 2 - - uid: 4119 + pos: 14.5,19.5 + parent: 17641 + - uid: 18186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,15.5 - parent: 2 - - uid: 4120 + pos: 15.5,17.5 + parent: 17641 + - uid: 18187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 2 - - uid: 4122 + pos: 15.5,18.5 + parent: 17641 + - uid: 18188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,14.5 - parent: 2 - - uid: 4130 + pos: 15.5,19.5 + parent: 17641 + - uid: 18189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,21.5 - parent: 2 - - uid: 4132 + pos: 16.5,17.5 + parent: 17641 + - uid: 18190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,20.5 - parent: 2 - - uid: 4134 + pos: 16.5,18.5 + parent: 17641 + - uid: 18191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 2 - - uid: 4276 + pos: 14.5,17.5 + parent: 17641 + - uid: 18192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,38.5 - parent: 2 - - uid: 4277 + pos: 16.5,19.5 + parent: 17641 + - uid: 18193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,36.5 - parent: 2 - - uid: 4279 + pos: 18.5,17.5 + parent: 17641 + - uid: 18194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,38.5 - parent: 2 - - uid: 4280 + pos: 18.5,18.5 + parent: 17641 + - uid: 18195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,36.5 - parent: 2 - - uid: 4282 + pos: 19.5,17.5 + parent: 17641 + - uid: 18196 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,38.5 - parent: 2 - - uid: 4283 + pos: 19.5,18.5 + parent: 17641 + - uid: 18197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,38.5 - parent: 2 - - uid: 4285 + pos: 19.5,19.5 + parent: 17641 + - uid: 18198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,36.5 - parent: 2 - - uid: 4286 + pos: 20.5,17.5 + parent: 17641 + - uid: 18199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,38.5 - parent: 2 - - uid: 4288 + pos: 20.5,18.5 + parent: 17641 + - uid: 18200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,36.5 - parent: 2 - - uid: 4289 + pos: 18.5,19.5 + parent: 17641 + - uid: 18201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,38.5 - parent: 2 - - uid: 4344 + pos: 20.5,19.5 + parent: 17641 + - uid: 18202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,47.5 - parent: 2 - - uid: 4416 + pos: 21.5,17.5 + parent: 17641 + - uid: 18203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,11.5 - parent: 2 - - uid: 4417 + pos: 21.5,18.5 + parent: 17641 + - uid: 18204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,15.5 - parent: 2 - - uid: 4422 + pos: 21.5,19.5 + parent: 17641 + - uid: 18205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,12.5 - parent: 2 - - uid: 4423 + pos: 22.5,18.5 + parent: 17641 + - uid: 18206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,14.5 - parent: 2 - - uid: 5103 + pos: 22.5,19.5 + parent: 17641 + - uid: 18207 components: - type: Transform - pos: 5.5,38.5 - parent: 2 - - uid: 5113 + pos: 23.5,17.5 + parent: 17641 + - uid: 18208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,37.5 - parent: 2 - - uid: 5266 + pos: 22.5,17.5 + parent: 17641 + - uid: 18209 components: - type: Transform - pos: -33.5,25.5 - parent: 2 - - uid: 5272 + pos: 23.5,19.5 + parent: 17641 + - uid: 18210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,37.5 - parent: 2 - - uid: 5320 + pos: 23.5,18.5 + parent: 17641 + - uid: 18211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,36.5 - parent: 2 - - uid: 5752 + pos: 11.5,21.5 + parent: 17641 + - uid: 18212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,5.5 - parent: 2 - - uid: 6390 + pos: 11.5,23.5 + parent: 17641 + - uid: 18213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,24.5 - parent: 2 - - uid: 6605 + pos: 12.5,21.5 + parent: 17641 + - uid: 18214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,33.5 - parent: 2 - - uid: 6791 + pos: 12.5,22.5 + parent: 17641 + - uid: 18215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 2 - - uid: 6792 + pos: 12.5,23.5 + parent: 17641 + - uid: 18216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,15.5 - parent: 2 - - uid: 6962 + pos: 11.5,22.5 + parent: 17641 + - uid: 18217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,63.5 - parent: 2 - - uid: 6963 + pos: 13.5,22.5 + parent: 17641 + - uid: 18218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,61.5 - parent: 2 - - uid: 6964 + pos: 13.5,21.5 + parent: 17641 + - uid: 18219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,62.5 - parent: 2 - - uid: 6968 + pos: 13.5,23.5 + parent: 17641 + - uid: 18220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,60.5 - parent: 2 - - uid: 6969 + pos: 14.5,21.5 + parent: 17641 + - uid: 18221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,63.5 - parent: 2 - - uid: 7657 + pos: 14.5,22.5 + parent: 17641 + - uid: 18222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,12.5 - parent: 2 - - uid: 8065 + pos: 15.5,21.5 + parent: 17641 + - uid: 18223 components: - type: Transform - pos: 51.5,-19.5 - parent: 2 - - uid: 8121 + pos: 15.5,22.5 + parent: 17641 + - uid: 18224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 2 - - uid: 8161 + pos: 15.5,23.5 + parent: 17641 + - uid: 18225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-8.5 - parent: 2 - - uid: 8169 + pos: 16.5,21.5 + parent: 17641 + - uid: 18226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-8.5 - parent: 2 - - uid: 12388 + pos: 16.5,23.5 + parent: 17641 + - uid: 18227 components: - type: Transform - pos: -25.5,14.5 - parent: 2 - - uid: 12389 + pos: 16.5,22.5 + parent: 17641 + - uid: 18228 components: - type: Transform - pos: -26.5,14.5 - parent: 2 - - uid: 12390 + pos: 14.5,23.5 + parent: 17641 + - uid: 18229 components: - type: Transform - pos: -24.5,14.5 - parent: 2 - - uid: 16779 + pos: 18.5,21.5 + parent: 17641 + - uid: 18230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,16.5 - parent: 16675 - - uid: 16780 + pos: 18.5,23.5 + parent: 17641 + - uid: 18231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,15.5 - parent: 16675 - - uid: 16781 + pos: 19.5,21.5 + parent: 17641 + - uid: 18232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,20.5 - parent: 16675 - - uid: 16782 + pos: 19.5,22.5 + parent: 17641 + - uid: 18233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,21.5 - parent: 16675 - - uid: 19936 + pos: 19.5,23.5 + parent: 17641 + - uid: 18234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,19.5 - parent: 16675 - - uid: 19943 + pos: 20.5,21.5 + parent: 17641 + - uid: 18235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 16675 -- proto: ChairCarp - entities: - - uid: 9 + pos: 18.5,22.5 + parent: 17641 + - uid: 18236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 2 - - uid: 1269 + pos: 20.5,22.5 + parent: 17641 + - uid: 18237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 2 - - uid: 2694 + pos: 21.5,21.5 + parent: 17641 + - uid: 18238 components: - type: Transform - pos: 16.5,-18.5 - parent: 2 - - uid: 5510 + pos: 21.5,22.5 + parent: 17641 + - uid: 18239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 2 - - uid: 17456 + pos: 21.5,23.5 + parent: 17641 + - uid: 18240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 2 + pos: 22.5,21.5 + parent: 17641 + - uid: 18241 + components: + - type: Transform + pos: 22.5,22.5 + parent: 17641 - uid: 18242 components: - type: Transform - pos: 20.5,2.5 - parent: 17590 + pos: 22.5,23.5 + parent: 17641 + - uid: 18243 + components: + - type: Transform + pos: 23.5,22.5 + parent: 17641 - uid: 18244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-0.5 - parent: 17590 + pos: 23.5,21.5 + parent: 17641 - uid: 18245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-0.5 - parent: 17590 + pos: 23.5,23.5 + parent: 17641 - uid: 18246 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 17590 + pos: 20.5,23.5 + parent: 17641 - uid: 18247 components: - type: Transform - pos: 24.5,2.5 - parent: 17590 + pos: 11.5,25.5 + parent: 17641 - uid: 18248 components: - type: Transform - pos: 28.5,2.5 - parent: 17590 + pos: 11.5,26.5 + parent: 17641 - uid: 18249 components: - type: Transform - pos: 26.5,2.5 - parent: 17590 - - uid: 19848 + pos: 12.5,26.5 + parent: 17641 + - uid: 18250 components: - type: Transform - pos: 45.5,-12.5 - parent: 17590 -- proto: ChairFolding - entities: - - uid: 3604 + pos: 12.5,27.5 + parent: 17641 + - uid: 18251 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.474464,-20.4667 - parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 1044 + pos: 13.5,25.5 + parent: 17641 + - uid: 18253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.38563,29.58787 - parent: 2 - - uid: 2668 + pos: 13.5,26.5 + parent: 17641 + - uid: 18254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.475479,-20.363619 - parent: 2 - - uid: 3235 + pos: 13.5,27.5 + parent: 17641 + - uid: 18255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.553263,-29.38645 - parent: 2 - - uid: 3461 + pos: 14.5,25.5 + parent: 17641 + - uid: 18256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.528988,-24.357983 - parent: 2 - - uid: 3787 + pos: 14.5,26.5 + parent: 17641 + - uid: 18257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.455488,-35.38202 - parent: 2 - - uid: 6655 + pos: 14.5,27.5 + parent: 17641 + - uid: 18258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.53206,36.501564 - parent: 2 - - uid: 7652 + pos: 15.5,25.5 + parent: 17641 + - uid: 18259 components: - type: Transform - pos: -63.46651,36.4896 - parent: 2 - - uid: 18251 + pos: 15.5,26.5 + parent: 17641 + - uid: 18260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.161247,-15.465719 - parent: 17590 -- proto: ChairOfficeLight - entities: - - uid: 25 + pos: 15.5,27.5 + parent: 17641 + - uid: 18261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.614982,20.556387 - parent: 2 - - uid: 870 + pos: 16.5,25.5 + parent: 17641 + - uid: 18262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.4461346,0.5878216 - parent: 2 - - uid: 1428 + pos: 16.5,26.5 + parent: 17641 + - uid: 18263 components: - type: Transform - pos: -22.362486,-4.4550457 - parent: 2 - - uid: 1777 + pos: 16.5,27.5 + parent: 17641 + - uid: 18264 components: - type: Transform - pos: -25.971436,-33.440285 - parent: 2 - - uid: 2444 + pos: 18.5,25.5 + parent: 17641 + - uid: 18265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 2 - - uid: 2492 + pos: 18.5,26.5 + parent: 17641 + - uid: 18266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 2 - - uid: 2565 + pos: 18.5,27.5 + parent: 17641 + - uid: 18267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.53631,-7.4793105 - parent: 2 - - uid: 2721 + pos: 19.5,25.5 + parent: 17641 + - uid: 18268 components: - type: Transform - pos: 17.40718,-23.50481 - parent: 2 - - uid: 3607 + pos: 20.5,25.5 + parent: 17641 + - uid: 18269 components: - - type: MetaData - name: офисное кресло главы сб - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 2 - - uid: 4071 + pos: 19.5,27.5 + parent: 17641 + - uid: 18270 components: - type: Transform - pos: 0.5581646,21.56575 - parent: 2 - - uid: 4611 + pos: 20.5,26.5 + parent: 17641 + - uid: 18271 components: - type: Transform - rot: -3.141592653589793 rad - pos: -14.5,19.5 - parent: 2 - - uid: 4612 + pos: 20.5,27.5 + parent: 17641 + - uid: 18272 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,19.5 - parent: 2 - - uid: 4785 + pos: 21.5,25.5 + parent: 17641 + - uid: 18273 components: - type: Transform - pos: -27.460653,10.589917 - parent: 2 - - uid: 4890 + pos: 21.5,26.5 + parent: 17641 + - uid: 18274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.558907,8.540839 - parent: 2 - - uid: 4968 + pos: 21.5,27.5 + parent: 17641 + - uid: 18275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.4556106,33.52567 - parent: 2 - - uid: 5088 + pos: 19.5,26.5 + parent: 17641 + - uid: 18276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.40976,41.696217 - parent: 2 - - uid: 18253 + pos: 22.5,25.5 + parent: 17641 + - uid: 18277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.8301,-20.436943 - parent: 17590 - - uid: 18254 + pos: 22.5,27.5 + parent: 17641 + - uid: 18278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.525414,-20.339348 - parent: 17590 - - uid: 18842 + pos: 23.5,25.5 + parent: 17641 + - uid: 18279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.544373,-19.489258 - parent: 17590 -- proto: ChairPilotSeat - entities: - - uid: 1996 + pos: 23.5,27.5 + parent: 17641 + - uid: 18280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,17.5 - parent: 2 - - uid: 3685 + pos: 22.5,26.5 + parent: 17641 + - uid: 18281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,8.5 - parent: 2 - - uid: 7847 + pos: 23.5,26.5 + parent: 17641 + - uid: 18282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 2 - - uid: 10881 + rot: 1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 17641 + - uid: 18283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 2 - - uid: 16784 + rot: 1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 17641 + - uid: 18284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,17.5 - parent: 16675 - - uid: 16786 + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 17641 + - uid: 18285 components: - type: Transform - pos: 6.5,19.5 - parent: 16675 - - uid: 16787 + rot: 1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 17641 + - uid: 18286 components: - type: Transform - pos: 7.5,19.5 - parent: 16675 - - uid: 16788 + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 17641 + - uid: 18287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,23.5 - parent: 16675 - - uid: 16789 + rot: 1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 17641 + - uid: 18288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,23.5 - parent: 16675 - - uid: 16790 + rot: 1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 17641 + - uid: 18289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,17.5 - parent: 16675 - - uid: 18255 + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 17641 + - uid: 18290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 17590 - - uid: 18256 + rot: 1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 17641 + - uid: 18291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 17590 - - uid: 18257 + rot: 1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 17641 + - uid: 18292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 17590 - - uid: 18259 + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 17641 + - uid: 18293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 17590 - - uid: 18260 + rot: 1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 17641 + - uid: 18294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 17590 - - uid: 18261 + rot: 1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 17641 + - uid: 18295 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-17.5 - parent: 17590 - - uid: 18262 + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 17641 + - uid: 18296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-17.5 - parent: 17590 - - uid: 18263 + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 17641 + - uid: 18297 components: - type: Transform - pos: 36.5,-14.5 - parent: 17590 - - uid: 18264 + rot: 1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 17641 + - uid: 18298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 17590 - - uid: 18265 + rot: 1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 17641 + - uid: 18299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 17590 - - uid: 19708 + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 17641 + - uid: 18300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 17590 - - uid: 19877 + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 17641 + - uid: 18302 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,16.5 - parent: 19854 - - uid: 19878 + pos: 16.5,-3.5 + parent: 17641 + - uid: 18303 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 43.006287,17.031494 - parent: 19854 - - type: Physics - bodyType: Dynamic - - uid: 19879 + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 17641 + - uid: 18304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,17.5 - parent: 19854 - - uid: 19880 + pos: 18.5,-3.5 + parent: 17641 + - uid: 18305 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,17.5 - parent: 19854 - - uid: 19973 + pos: 14.5,-3.5 + parent: 17641 + - uid: 18306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,17.5 - parent: 19951 - - uid: 19976 + rot: 1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 17641 + - uid: 18312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,16.5 - parent: 19951 -- proto: ChairWood - entities: - - uid: 2707 + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 17641 + - uid: 18313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-20.5 - parent: 2 - - uid: 2709 + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 17641 + - uid: 18314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-20.5 - parent: 2 - - uid: 4081 + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 17641 + - uid: 18315 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.52190614,25.55012 - parent: 2 - - uid: 17457 + pos: 21.5,-3.5 + parent: 17641 + - uid: 18316 components: - type: Transform - pos: -0.4337077,-0.50766015 - parent: 2 -- proto: CheapRollerBed - entities: - - uid: 4396 + rot: 1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 17641 + - uid: 18317 components: - type: Transform - pos: -9.5,14.5 - parent: 2 - - uid: 4419 + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 17641 + - uid: 18318 components: - type: Transform - pos: -9.5,15.5 - parent: 2 -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 4788 + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 17641 + - uid: 18319 components: - type: Transform - pos: -26.643736,9.616917 - parent: 2 - - uid: 4789 + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 17641 + - uid: 18320 components: - type: Transform - pos: -26.393736,9.601292 - parent: 2 - - uid: 4790 + rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 17641 + - uid: 18321 components: - type: Transform - pos: -26.53436,9.601292 - parent: 2 -- proto: ChemDispenserMachineCircuitboard - entities: - - uid: 4910 + rot: 1.5707963267948966 rad + pos: 24.5,4.5 + parent: 17641 + - uid: 18322 components: - type: Transform - pos: 1.503962,-23.496885 - parent: 2 -- proto: ChemistryHotplate - entities: - - uid: 4608 + rot: 1.5707963267948966 rad + pos: 24.5,5.5 + parent: 17641 + - uid: 18323 components: - type: Transform - pos: -15.5,20.5 - parent: 2 -- proto: ChemMaster - entities: - - uid: 2401 + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 17641 + - uid: 18324 components: - type: Transform - pos: -15.5,19.5 - parent: 2 - - uid: 16355 + rot: 1.5707963267948966 rad + pos: 26.5,5.5 + parent: 17641 + - uid: 18325 components: - type: Transform - pos: 25.5,15.5 - parent: 16200 -- proto: ChurchOrganInstrument - entities: - - uid: 4296 + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 17641 + - uid: 18326 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,40.5 - parent: 2 -- proto: CigarGoldCase - entities: - - uid: 18266 + pos: 26.5,4.5 + parent: 17641 + - uid: 18327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.59851,-13.048584 - parent: 17590 -- proto: CigarGoldSpent - entities: - - uid: 20023 + rot: 1.5707963267948966 rad + pos: 26.5,1.5 + parent: 17641 + - uid: 18328 components: - type: Transform - rot: 0.5235987755982988 rad - pos: 45.270447,-13.26709 - parent: 17590 -- proto: CigarSpent - entities: - - uid: 6767 + rot: 1.5707963267948966 rad + pos: 26.5,0.5 + parent: 17641 + - uid: 18329 components: - type: Transform - pos: -41.63639,43.559128 - parent: 2 -- proto: CircuitImprinter - entities: - - uid: 1023 + rot: 1.5707963267948966 rad + pos: 22.5,6.5 + parent: 17641 + - uid: 18330 components: - type: Transform - pos: -11.5,-10.5 - parent: 2 -- proto: CleanerDispenser - entities: - - uid: 4973 + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 17641 + - uid: 18331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,30.5 - parent: 2 - - uid: 17370 + rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 17641 + - uid: 18332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 16675 -- proto: ClosetChefFilled - entities: - - uid: 11762 + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 17641 + - uid: 18333 components: - type: Transform - pos: 21.5,26.5 - parent: 2 -- proto: ClosetEmergency - entities: - - uid: 1417 + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 17641 + - uid: 18334 components: - type: Transform - pos: -5.5,26.5 - parent: 2 - - uid: 7795 + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 17641 + - uid: 18335 components: - type: Transform - pos: -9.5,28.5 - parent: 2 - - uid: 14825 + rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 17641 + - uid: 18336 components: - type: Transform - pos: 14.5,-14.5 - parent: 2 - - uid: 16059 + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 17641 + - uid: 18337 components: - type: Transform - pos: -5.5,18.5 - parent: 2 - - uid: 16060 + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 17641 + - uid: 18338 components: - type: Transform - pos: -5.5,19.5 - parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 81 + rot: 1.5707963267948966 rad + pos: 20.5,6.5 + parent: 17641 + - uid: 18339 components: - type: Transform - pos: -21.5,0.5 - parent: 2 - - uid: 207 + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 17641 + - uid: 18340 components: - type: Transform - pos: 25.5,-8.5 - parent: 2 - - uid: 945 + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 17641 + - uid: 18341 components: - type: Transform - pos: -66.5,33.5 - parent: 2 - - uid: 1691 + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 17641 + - uid: 18342 components: - type: Transform - pos: 42.5,-22.5 - parent: 2 - - uid: 1805 + rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 17641 + - uid: 18343 components: - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 3120 + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 17641 + - uid: 18344 components: - type: Transform - pos: 37.5,-19.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 3615 + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 17641 + - uid: 18345 components: - type: Transform - pos: 20.5,-20.5 - parent: 2 - - uid: 5477 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 17641 + - uid: 18346 components: - type: Transform - pos: -54.5,12.5 - parent: 2 - - uid: 5506 + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 17641 + - uid: 18347 components: - type: Transform - pos: -35.5,13.5 - parent: 2 - - uid: 5543 + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 17641 + - uid: 18348 components: - type: Transform - pos: -38.5,21.5 - parent: 2 - - uid: 6492 + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 17641 + - uid: 18349 components: - type: Transform - pos: 25.5,31.5 - parent: 2 - - uid: 6861 + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 17641 + - uid: 18350 components: - type: Transform - pos: -29.5,51.5 - parent: 2 - - uid: 9093 + rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 17641 + - uid: 18351 components: - type: Transform - pos: -72.5,15.5 - parent: 2 - - uid: 9451 + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 17641 + - uid: 18352 components: - type: Transform - pos: 15.5,29.5 - parent: 2 - - uid: 9464 + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 17641 + - uid: 18353 components: - type: Transform - pos: -18.5,4.5 - parent: 2 - - uid: 11343 + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 17641 + - uid: 18354 components: - type: Transform - pos: 40.5,-32.5 - parent: 2 - - uid: 11883 + rot: 1.5707963267948966 rad + pos: 9.5,9.5 + parent: 17641 + - uid: 18355 components: - type: Transform - pos: -9.5,4.5 - parent: 2 - - uid: 13717 + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 17641 + - uid: 18356 components: - type: Transform - pos: -22.5,14.5 - parent: 2 - - uid: 14226 + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 17641 + - uid: 18357 components: - type: Transform - pos: -2.5,-14.5 - parent: 2 - - uid: 14293 + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 17641 + - uid: 18358 components: - type: Transform - pos: 3.5,9.5 - parent: 2 - - uid: 14901 + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 17641 + - uid: 18359 components: - type: Transform - pos: -56.5,21.5 - parent: 2 - - uid: 16038 + rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 17641 + - uid: 18360 components: - type: Transform - pos: -18.5,34.5 - parent: 2 - - uid: 16040 + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 17641 + - uid: 18361 components: - type: Transform - pos: 32.5,8.5 - parent: 2 - - uid: 16043 + rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 17641 + - uid: 18362 components: - type: Transform - pos: 4.5,11.5 - parent: 2 - - uid: 16053 + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 17641 + - uid: 18363 components: - type: Transform - pos: -19.5,18.5 - parent: 2 - - uid: 16055 + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 17641 + - uid: 18364 components: - type: Transform - pos: -17.5,7.5 - parent: 2 - - uid: 16061 + rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 17641 + - uid: 18365 components: - type: Transform - pos: -1.5,36.5 - parent: 2 - - uid: 16062 + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 17641 + - uid: 18366 components: - type: Transform - pos: -27.5,41.5 - parent: 2 - - uid: 16356 + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 17641 + - uid: 18367 components: - type: Transform - pos: 24.5,23.5 - parent: 16200 - - uid: 17026 + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 17641 + - uid: 18368 components: - type: Transform - pos: -23.5,41.5 - parent: 2 - - uid: 17027 + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 17641 + - uid: 18369 components: - type: Transform - pos: 22.5,-39.5 - parent: 2 - - uid: 17049 + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 17641 + - uid: 18370 components: - type: Transform - pos: 15.5,42.5 - parent: 2 - - uid: 17058 + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 17641 + - uid: 18371 components: - type: Transform - pos: -3.5,43.5 - parent: 2 - - uid: 17069 + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 17641 + - uid: 18372 components: - type: Transform - pos: 15.5,38.5 - parent: 2 - - uid: 17099 + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 17641 + - uid: 18373 components: - type: Transform - pos: -17.5,37.5 - parent: 2 - - uid: 18737 + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 17641 + - uid: 18374 components: - type: Transform - pos: 31.5,8.5 - parent: 17590 - - uid: 19438 + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 17641 + - uid: 18375 components: - type: Transform - pos: 35.5,8.5 - parent: 17590 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 2182 + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 17641 + - uid: 18376 components: - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 7044 + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 17641 + - uid: 18377 components: - type: Transform - pos: -12.5,7.5 - parent: 2 - - uid: 8507 + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 17641 + - uid: 18378 components: - type: Transform - pos: -72.5,16.5 - parent: 2 - - uid: 11341 + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 17641 + - uid: 18379 components: - type: Transform - pos: 40.5,-33.5 - parent: 2 - - uid: 16044 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 17641 + - uid: 18380 components: - type: Transform - pos: 5.5,11.5 - parent: 2 - - uid: 19437 + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 17641 + - uid: 18381 components: - type: Transform - pos: 35.5,9.5 - parent: 17590 -- proto: ClosetFire - entities: - - uid: 1645 + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 17641 + - uid: 18382 components: - type: Transform - pos: -5.5,25.5 - parent: 2 - - uid: 7879 + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 17641 + - uid: 18383 components: - type: Transform - pos: 2.5,9.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.147 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetFireFilled - entities: - - uid: 784 + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 17641 + - uid: 18384 components: - type: Transform - pos: -58.5,41.5 - parent: 2 - - uid: 1192 + rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 17641 + - uid: 18385 components: - type: Transform - pos: -9.5,3.5 - parent: 2 - - uid: 1510 + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 17641 + - uid: 18386 components: - type: Transform - pos: -65.5,33.5 - parent: 2 - - uid: 2159 + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 17641 + - uid: 18387 components: - type: Transform - pos: 3.5,-4.5 - parent: 2 - - uid: 3149 + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 17641 + - uid: 18388 components: - type: Transform - pos: 36.5,-19.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 3616 + rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 17641 + - uid: 18389 components: - type: Transform - pos: 20.5,-21.5 - parent: 2 - - uid: 3896 + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 17641 + - uid: 18390 components: - type: Transform - pos: 42.5,-24.5 - parent: 2 - - uid: 3934 + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 17641 + - uid: 18391 components: - type: Transform - pos: 10.5,32.5 - parent: 2 - - uid: 5529 + rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 17641 + - uid: 18392 components: - type: Transform - pos: -56.5,20.5 - parent: 2 - - uid: 5542 + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 17641 + - uid: 18393 components: - type: Transform - pos: -35.5,14.5 - parent: 2 - - uid: 5550 + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 17641 + - uid: 18394 components: - type: Transform - pos: -38.5,22.5 - parent: 2 - - uid: 6493 + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 17641 + - uid: 18395 components: - type: Transform - pos: 26.5,31.5 - parent: 2 - - uid: 6949 + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 17641 + - uid: 18396 components: - type: Transform - pos: -27.5,51.5 - parent: 2 - - uid: 11881 + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 17641 + - uid: 18397 components: - type: Transform - pos: 22.5,-28.5 - parent: 2 - - uid: 11882 + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 17641 + - uid: 18398 components: - type: Transform - pos: -6.5,-14.5 - parent: 2 - - uid: 16033 + rot: 1.5707963267948966 rad + pos: 27.5,9.5 + parent: 17641 + - uid: 18399 components: - type: Transform - pos: -1.5,35.5 - parent: 2 - - uid: 16045 + rot: 1.5707963267948966 rad + pos: 28.5,9.5 + parent: 17641 + - uid: 18400 components: - type: Transform - pos: 3.5,11.5 - parent: 2 - - uid: 16054 + rot: 1.5707963267948966 rad + pos: 32.5,9.5 + parent: 17641 + - uid: 18401 components: - type: Transform - pos: -18.5,18.5 - parent: 2 - - uid: 16056 + rot: 1.5707963267948966 rad + pos: 37.5,9.5 + parent: 17641 + - uid: 18402 components: - type: Transform - pos: -18.5,7.5 - parent: 2 - - uid: 16357 + rot: 1.5707963267948966 rad + pos: 35.5,7.5 + parent: 17641 + - uid: 18403 components: - type: Transform - pos: 24.5,21.5 - parent: 16200 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 17025 + rot: 1.5707963267948966 rad + pos: 34.5,7.5 + parent: 17641 + - uid: 18404 components: - type: Transform - pos: -22.5,41.5 - parent: 2 - - uid: 17028 + rot: 1.5707963267948966 rad + pos: 31.5,7.5 + parent: 17641 + - uid: 18405 components: - type: Transform - pos: 23.5,-39.5 - parent: 2 - - uid: 17050 + rot: 1.5707963267948966 rad + pos: 30.5,7.5 + parent: 17641 + - uid: 18406 components: - type: Transform - pos: 16.5,42.5 - parent: 2 - - uid: 17059 + rot: 1.5707963267948966 rad + pos: 36.5,7.5 + parent: 17641 + - uid: 18407 components: - type: Transform - pos: -4.5,43.5 - parent: 2 - - uid: 17068 + rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 17641 + - uid: 18408 components: - type: Transform - pos: 15.5,39.5 - parent: 2 - - uid: 17100 + rot: 1.5707963267948966 rad + pos: 28.5,7.5 + parent: 17641 + - uid: 18409 components: - type: Transform - pos: -17.5,38.5 - parent: 2 - - uid: 17109 + pos: 15.5,9.5 + parent: 17641 + - uid: 18410 components: - type: Transform - pos: -54.5,41.5 - parent: 2 - - uid: 19436 + pos: 13.5,9.5 + parent: 17641 + - uid: 18411 components: - type: Transform - pos: 31.5,9.5 - parent: 17590 -- proto: ClosetJanitorFilled - entities: - - uid: 13067 + pos: 12.5,9.5 + parent: 17641 + - uid: 18412 components: - type: Transform - pos: 0.5,34.5 - parent: 2 - - uid: 13070 + pos: 14.5,9.5 + parent: 17641 + - uid: 18413 components: - type: Transform - pos: 5.5,33.5 - parent: 2 - - uid: 13073 + pos: 19.5,9.5 + parent: 17641 + - uid: 18414 components: - type: Transform - pos: 5.5,32.5 - parent: 2 -- proto: ClosetMaintenance - entities: - - uid: 4087 + pos: 20.5,9.5 + parent: 17641 + - uid: 18415 components: - type: Transform - pos: 2.5,26.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4090 - - 4088 - - 4089 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 5082 + pos: 21.5,9.5 + parent: 17641 + - uid: 18416 components: - type: Transform - pos: 13.5,43.5 - parent: 2 - - uid: 5920 + pos: 22.5,9.5 + parent: 17641 + - uid: 19950 components: - type: Transform - pos: -35.5,37.5 + rot: 1.5707963267948966 rad + pos: 40.5,22.5 parent: 2 - - uid: 5946 + - uid: 20119 components: - type: Transform - pos: -35.5,38.5 + rot: 1.5707963267948966 rad + pos: 39.5,21.5 parent: 2 - - uid: 5948 + - uid: 20120 components: - type: Transform - pos: -35.5,36.5 + rot: 1.5707963267948966 rad + pos: 39.5,22.5 parent: 2 - - uid: 5976 + - uid: 20136 components: - type: Transform - pos: -33.5,39.5 + rot: 1.5707963267948966 rad + pos: 38.5,21.5 parent: 2 - - uid: 5977 + - uid: 20137 components: - type: Transform - pos: -33.5,37.5 + rot: 1.5707963267948966 rad + pos: 38.5,22.5 parent: 2 - - uid: 13371 +- proto: CentcomComputerComms + entities: + - uid: 16877 components: - type: Transform - pos: 18.5,47.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8977377 - - 7.139109 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 13377 - - 1051 - - 13373 - - 13376 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetMaintenanceFilledRandom + rot: 1.5707963267948966 rad + pos: 17.5,18.5 + parent: 16200 +- proto: Chainsaw entities: - - uid: 72 + - uid: 4704 components: - type: Transform - pos: -22.5,0.5 + pos: -21.370375,6.508933 parent: 2 - - uid: 130 +- proto: Chair + entities: + - uid: 893 components: - type: Transform - pos: 12.5,32.5 + pos: 24.5,2.5 parent: 2 - - uid: 1259 + - uid: 1000 components: - type: Transform - pos: -59.5,41.5 + pos: 3.5,38.5 parent: 2 - - uid: 1314 + - uid: 1047 components: - type: Transform - pos: -1.5,-14.5 + pos: 4.5,38.5 parent: 2 - - uid: 1509 + - uid: 1049 components: - type: Transform - pos: -67.5,33.5 + rot: -1.5707963267948966 rad + pos: 6.5,36.5 parent: 2 - - uid: 3870 + - uid: 1050 components: - type: Transform - pos: 32.5,-20.5 + rot: -1.5707963267948966 rad + pos: 6.5,37.5 parent: 2 - - uid: 5233 + - uid: 1275 components: - type: Transform - pos: 18.5,29.5 + rot: -1.5707963267948966 rad + pos: 9.5,16.5 parent: 2 - - uid: 6032 + - uid: 1277 components: - type: Transform - pos: -21.5,64.5 + rot: -1.5707963267948966 rad + pos: 9.5,14.5 parent: 2 - - uid: 6494 + - uid: 1323 components: - type: Transform - pos: 24.5,31.5 + rot: 3.141592653589793 rad + pos: 9.5,19.5 parent: 2 - - uid: 6943 + - uid: 1326 components: - type: Transform - pos: -21.5,62.5 + rot: 3.141592653589793 rad + pos: 8.5,19.5 parent: 2 - - uid: 7032 + - uid: 1327 components: - type: Transform - pos: -13.5,7.5 + rot: -1.5707963267948966 rad + pos: 10.5,17.5 parent: 2 - - uid: 7817 + - uid: 1328 components: - type: Transform - pos: -10.5,28.5 + rot: -1.5707963267948966 rad + pos: 10.5,16.5 parent: 2 - - uid: 11765 + - uid: 1330 components: - type: Transform - pos: 40.5,-34.5 + pos: 12.5,21.5 parent: 2 - - uid: 16057 + - uid: 1982 components: - type: Transform - pos: -19.5,7.5 + rot: -1.5707963267948966 rad + pos: 25.5,-11.5 parent: 2 - - uid: 16058 + - uid: 3133 components: - type: Transform - pos: -5.5,17.5 + rot: 3.141592653589793 rad + pos: 23.5,-13.5 parent: 2 - - uid: 17029 + - uid: 3199 components: - type: Transform - pos: 24.5,-39.5 + pos: 25.5,6.5 parent: 2 - - uid: 17037 + - uid: 3232 components: - type: Transform - pos: 42.5,-23.5 + rot: 1.5707963267948966 rad + pos: 23.5,4.5 parent: 2 - - uid: 17048 + - uid: 3354 components: - type: Transform - pos: 19.5,37.5 + rot: 3.141592653589793 rad + pos: 9.5,11.5 parent: 2 - - uid: 17051 + - uid: 3479 components: - type: Transform - pos: 17.5,42.5 + rot: -1.5707963267948966 rad + pos: 48.5,-10.5 parent: 2 - - uid: 17057 + - uid: 3488 components: - type: Transform - pos: -2.5,43.5 + rot: -1.5707963267948966 rad + pos: 48.5,-11.5 parent: 2 - - uid: 17065 + - uid: 3548 components: - type: Transform - pos: 1.5,46.5 + rot: 3.141592653589793 rad + pos: -23.5,63.5 parent: 2 - - uid: 17110 + - uid: 3727 components: - type: Transform - pos: -53.5,41.5 + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 parent: 2 - - uid: 17111 + - uid: 3728 components: - type: Transform - pos: -47.5,32.5 + rot: -1.5707963267948966 rad + pos: -17.5,0.5 parent: 2 - - uid: 17179 + - uid: 3780 components: - type: Transform - pos: 4.5,46.5 + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 parent: 2 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 17511 + - uid: 3781 components: - type: Transform - pos: -22.5,-39.5 + rot: 1.5707963267948966 rad + pos: 22.5,-32.5 parent: 2 - - uid: 17512 + - uid: 3782 components: - type: Transform - pos: -23.5,-39.5 + rot: 1.5707963267948966 rad + pos: 22.5,-31.5 parent: 2 -- proto: ClosetTool - entities: - - uid: 6993 + - uid: 4119 components: - type: Transform - pos: -20.5,0.5 + rot: -1.5707963267948966 rad + pos: 10.5,15.5 parent: 2 - - uid: 7076 + - uid: 4122 components: - type: Transform - pos: -29.5,0.5 + rot: -1.5707963267948966 rad + pos: 10.5,14.5 parent: 2 - - uid: 17067 + - uid: 4136 components: - type: Transform - pos: 15.5,40.5 + pos: 24.5,6.5 parent: 2 -- proto: ClosetToolFilled - entities: - - uid: 3602 + - uid: 4344 components: - type: Transform - pos: 31.5,-20.5 + rot: 1.5707963267948966 rad + pos: -10.5,47.5 parent: 2 - - uid: 3617 + - uid: 4486 components: - type: Transform - pos: 20.5,-19.5 + rot: 3.141592653589793 rad + pos: 11.5,19.5 parent: 2 - - uid: 7349 + - uid: 4552 components: - type: Transform - pos: 23.5,-43.5 + rot: 3.141592653589793 rad + pos: 12.5,19.5 parent: 2 - - uid: 17066 + - uid: 4651 components: - type: Transform - pos: 2.5,46.5 + pos: 9.5,13.5 parent: 2 -- proto: ClosetWall - entities: - - uid: 17525 + - uid: 4660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-2.5 + pos: 8.5,21.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17526 -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 19884 + - uid: 4662 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 4693 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,15.5 - parent: 19854 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19886 - - 19888 - - 19885 - - 19887 - - 19889 -- proto: ClothingBackpackDuffelSyndicateEVABundle - entities: - - uid: 17526 + pos: -25.5,12.5 + parent: 2 + - uid: 4696 components: - type: Transform - parent: 17525 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBackpackElectropack - entities: - - uid: 17452 + pos: -26.5,14.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 5113 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.236825,-0.61605287 + pos: 2.5,37.5 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingBeltChefFilled - entities: - - uid: 17674 + - uid: 5266 components: - type: Transform - parent: 17671 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltMedicalEMT - entities: - - uid: 16359 + pos: -33.5,25.5 + parent: 2 + - uid: 5272 components: - type: Transform - parent: 16358 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltStorageWaistbag - entities: - - uid: 5724 + rot: -1.5707963267948966 rad + pos: 1.5,37.5 + parent: 2 + - uid: 5319 components: - - type: MetaData - desc: Чисто технически, в него помещаются инструменты. - name: пояс "для инструментов" - type: Transform - pos: -45.52982,33.200676 + rot: 3.141592653589793 rad + pos: -24.5,12.5 parent: 2 - - uid: 8145 + - uid: 5320 components: - type: Transform - parent: 8127 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltUtility - entities: - - uid: 1393 + rot: -1.5707963267948966 rad + pos: 1.5,36.5 + parent: 2 + - uid: 5816 components: - type: Transform - pos: -25.6296,-26.52739 + pos: 3.5,34.5 parent: 2 -- proto: ClothingEyesBlindfold - entities: - - uid: 8073 + - uid: 6791 components: - type: Transform - pos: 51.44215,-21.301846 + rot: -1.5707963267948966 rad + pos: 9.5,17.5 parent: 2 -- proto: ClothingEyesGlassesCheapSunglasses - entities: - - uid: 8129 + - uid: 6792 components: - type: Transform - parent: 8127 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingEyesGlassesGar - entities: - - uid: 5706 + rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2 + - uid: 6962 components: - - type: MetaData - desc: Очки с зелёным затемнением, использующие патентованный полимер, обеспечивающие надёжную защиту глаз от всех видов повреждений. Наверное. - name: '"инженерные" очки' - type: Transform - pos: -45.52265,33.996605 + rot: -1.5707963267948966 rad + pos: -27.5,63.5 parent: 2 - - type: EyeProtection - - uid: 5722 + - uid: 6963 components: - - type: MetaData - desc: Очки с зелёным затемнением, использующие патентованный полимер, обеспечивающие надёжную защиту глаз от всех видов повреждений. Наверное. - name: '"инженерные" очки' - type: Transform - pos: -45.52265,33.840355 + rot: -1.5707963267948966 rad + pos: -27.5,61.5 parent: 2 - - type: EyeProtection -- proto: ClothingEyesGlassesMeson - entities: - - uid: 17675 + - uid: 6964 components: - type: Transform - parent: 17671 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 2737 + rot: -1.5707963267948966 rad + pos: -27.5,62.5 + parent: 2 + - uid: 6968 components: - type: Transform - pos: 15.503975,-19.02182 + rot: 1.5707963267948966 rad + pos: -25.5,60.5 parent: 2 -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 991 + - uid: 6969 components: - type: Transform - pos: 27.527283,-14.4803915 + rot: -1.5707963267948966 rad + pos: -31.5,63.5 parent: 2 - - uid: 3676 + - uid: 7054 components: - type: Transform - pos: 27.526262,-14.316869 + rot: -1.5707963267948966 rad + pos: -31.5,24.5 parent: 2 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 1783 + - uid: 8013 components: - type: Transform - pos: -26.537645,-37.472084 + rot: 3.141592653589793 rad + pos: -23.5,12.5 parent: 2 - - uid: 3755 + - uid: 8065 components: - type: Transform - pos: -26.522814,-37.246197 + pos: 51.5,-19.5 parent: 2 - - uid: 17189 + - uid: 8121 components: - type: Transform - pos: -32.285084,64.626755 + rot: 1.5707963267948966 rad + pos: 48.5,-5.5 parent: 2 -- proto: ClothingHandsGlovesFingerless - entities: - - uid: 8151 + - uid: 8161 components: - type: Transform - parent: 8127 + rot: 1.5707963267948966 rad + pos: 50.5,-8.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: 53.5,-8.5 + parent: 2 - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHandsGlovesFingerlessInsulated - entities: - - uid: 1056 + bodyType: Dynamic + - uid: 9451 components: - type: Transform - pos: -45.509274,34.64422 + pos: -23.5,14.5 parent: 2 - - uid: 1065 + - uid: 12388 components: - type: Transform - pos: -45.509274,34.45672 + pos: -25.5,14.5 parent: 2 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 3983 + - uid: 12390 components: - type: Transform - pos: 21.492369,19.495802 + pos: -24.5,14.5 parent: 2 -- proto: ClothingHeadBandGold - entities: - - uid: 19431 + - uid: 13589 components: - type: Transform - pos: 15.696167,-9.403076 - parent: 17590 -- proto: ClothingHeadHatBeretCmo - entities: - - uid: 18279 + rot: 1.5707963267948966 rad + pos: 23.5,5.5 + parent: 2 + - uid: 16779 components: - type: Transform - pos: 39.422874,-20.439142 - parent: 17590 -- proto: ClothingHeadHatBeretHoS - entities: - - uid: 5248 + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 16675 + - uid: 16780 components: - - type: MetaData - desc: Простой чёрный берет, на котором криво нашит значок кружки пива. - name: берет "бармена" - type: Transform - pos: 21.489666,19.753956 - parent: 2 -- proto: ClothingHeadHatCardborg - entities: - - uid: 2041 + rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 16675 + - uid: 16781 components: - type: Transform - parent: 2036 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatCatEars - entities: - - uid: 15812 + rot: -1.5707963267948966 rad + pos: 12.5,20.5 + parent: 16675 + - uid: 16782 components: - type: Transform - pos: -35.5,-37.3 + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 16675 + - uid: 17196 + components: + - type: Transform + pos: 12.5,13.5 parent: 2 - missingComponents: - - Clothing -- proto: ClothingHeadHatCone - entities: - - uid: 1203 + - uid: 17197 components: - type: Transform - pos: -68.55902,33.693825 + pos: 11.5,13.5 parent: 2 -- proto: ClothingHeadHatHetmanHat - entities: - - uid: 6957 + - uid: 17200 components: - type: Transform - pos: -30.525478,60.49067 + rot: 3.141592653589793 rad + pos: 11.5,11.5 parent: 2 -- proto: ClothingHeadHatMagician - entities: - - uid: 16978 + - uid: 19936 components: - type: Transform - parent: 7837 - - type: Storage - storedItems: - 16979: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 16979 - - type: Physics - canCollide: False -- proto: ClothingHeadHatUshanka + rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 16675 + - uid: 19943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 16675 +- proto: ChairCarp entities: - - uid: 6958 + - uid: 9 components: - type: Transform - pos: -30.343693,60.527954 + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 parent: 2 -- proto: ClothingHeadHatWatermelon - entities: - - uid: 8144 + - uid: 1269 components: - type: Transform - parent: 8127 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 17185 + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 2413 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.732569,63.14942 + pos: 29.5,-10.5 parent: 2 -- proto: ClothingHeadHelmetEVA - entities: - - uid: 15673 + - uid: 2694 components: - type: Transform - pos: 27.48875,31.507143 + pos: 16.5,-18.5 parent: 2 - - uid: 15674 + - uid: 5510 components: - type: Transform - pos: 28.4575,31.491518 + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 parent: 2 -- proto: ClothingHeadHelmetEVALarge +- proto: ChairFolding entities: - - uid: 2022 + - uid: 3604 components: - type: Transform - parent: 2021 - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 2023 - - type: AttachedClothing - attachedUid: 2021 -- proto: ClothingHeadRastaHat - entities: - - uid: 4816 + rot: 3.141592653589793 rad + pos: 30.474464,-20.4667 + parent: 2 + - uid: 4423 components: - type: Transform - parent: 4814 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadsetGrey - entities: - - uid: 8146 + rot: -1.5707963267948966 rad + pos: -47.50108,38.588226 + parent: 2 + - uid: 4428 components: - type: Transform - parent: 8127 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskBreath + rot: -1.5707963267948966 rad + pos: -47.53233,37.54135 + parent: 2 +- proto: ChairGreyscale entities: - - uid: 8049 + - uid: 1978 components: - type: Transform - parent: 8048 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8142 + rot: -1.5707963267948966 rad + pos: -14.5,8.5 + parent: 2 + - uid: 4067 components: - type: Transform - pos: 49.351738,-6.4780326 + rot: -1.5707963267948966 rad + pos: -5.5,23.5 parent: 2 - - uid: 18285 + - uid: 4762 components: - type: Transform - parent: 18284 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18693 + rot: -1.5707963267948966 rad + pos: -17.5,8.5 + parent: 2 + - uid: 4955 components: - type: Transform - parent: 18692 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskGas - entities: - - uid: 16360 + rot: -1.5707963267948966 rad + pos: -5.5,22.5 + parent: 2 + - uid: 4957 components: - type: Transform - parent: 16358 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16366 + rot: -1.5707963267948966 rad + pos: -5.5,24.5 + parent: 2 + - uid: 5376 components: - type: Transform - parent: 16365 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16373 + pos: 26.5,36.5 + parent: 2 + - uid: 5387 components: - type: Transform - parent: 16372 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16380 + pos: 28.5,36.5 + parent: 2 + - uid: 5393 components: - type: Transform - parent: 16379 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskGasAtmos + pos: 27.5,36.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,7.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,8.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,7.5 + parent: 2 + - uid: 13723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,8.5 + parent: 2 + - uid: 17415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,7.5 + parent: 2 +- proto: ChairOfficeDark entities: - - uid: 11708 + - uid: 1044 components: - type: Transform - pos: 46.459827,-5.6001186 + rot: -1.5707963267948966 rad + pos: -34.38563,29.58787 parent: 2 - - uid: 12459 + - uid: 2668 components: - type: Transform - pos: 46.685955,-5.594887 + rot: -1.5707963267948966 rad + pos: 8.475479,-20.363619 + parent: 2 + - uid: 3235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.553263,-29.38645 + parent: 2 + - uid: 3461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.528988,-24.357983 + parent: 2 + - uid: 3787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.455488,-35.38202 + parent: 2 + - uid: 6655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.53206,36.501564 parent: 2 -- proto: ClothingMaskGasCentcom + - uid: 18417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.623129,0.5644121 + parent: 17641 + - uid: 18418 + components: + - type: Transform + pos: 13.357504,2.501912 + parent: 17641 +- proto: ChairOfficeLight entities: - - uid: 18273 + - uid: 25 components: - - type: MetaData - name: противогаз SLMG - type: Transform - parent: 18271 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskGasERT + rot: 1.5707963267948966 rad + pos: 5.614982,20.556387 + parent: 2 + - uid: 870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.4461346,0.5878216 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: -22.362486,-4.4550457 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: -25.971436,-33.440285 + parent: 2 + - uid: 2042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.49737,37.54309 + parent: 2 + - uid: 2444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.53631,-7.4793105 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: 17.40718,-23.50481 + parent: 2 + - uid: 3257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.45436,33.52027 + parent: 2 + - uid: 4071 + components: + - type: Transform + pos: 0.5581646,21.56575 + parent: 2 + - uid: 4611 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: -14.5,19.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,19.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.4556106,33.52567 + parent: 2 + - uid: 5088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.40976,41.696217 + parent: 2 + - uid: 5175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.542828,21.603903 + parent: 2 +- proto: ChairPilotSeat entities: - - uid: 16385 + - uid: 1996 components: - type: Transform - parent: 16384 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskGoldenCursed + rot: 1.5707963267948966 rad + pos: 39.5,17.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 2 + - uid: 10881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 16784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 16675 + - uid: 16786 + components: + - type: Transform + pos: 6.5,19.5 + parent: 16675 + - uid: 16787 + components: + - type: Transform + pos: 7.5,19.5 + parent: 16675 + - uid: 16788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 16675 + - uid: 16789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,23.5 + parent: 16675 + - uid: 16790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 16675 + - uid: 18419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 17641 + - uid: 18420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 17641 +- proto: ChairWood entities: - - uid: 19432 + - uid: 2707 components: - type: Transform - pos: 17.461731,-10.231445 - parent: 17590 -- proto: ClothingMaskMuzzle + rot: 3.141592653589793 rad + pos: 16.5,-20.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.52190614,25.55012 + parent: 2 +- proto: CheapRollerBed entities: - - uid: 8066 + - uid: 4396 components: - type: Transform - pos: 51.44215,-21.489346 + pos: -9.5,14.5 parent: 2 - - uid: 13395 + - uid: 4419 components: - type: Transform - pos: 18.515802,45.43524 + pos: -9.5,15.5 parent: 2 -- proto: ClothingNeckCloakAce +- proto: CheapRollerBedSpawnFolded entities: - - uid: 17416 + - uid: 3468 components: - type: Transform - parent: 17414 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakAro + pos: -19.454079,22.796558 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: -19.704079,22.765308 + parent: 2 +- proto: ChemDispenser entities: - - uid: 17422 + - uid: 1035 components: - type: Transform - parent: 17414 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakBi + pos: -15.5,19.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 +- proto: ChemDispenserMachineCircuitboard entities: - - uid: 17415 + - uid: 4554 components: - type: Transform - parent: 17414 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakEnby + pos: 1.4867895,-23.327364 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: 1.503962,-23.496885 + parent: 2 +- proto: ChemistryHotplate entities: - - uid: 17419 + - uid: 4608 components: - type: Transform - parent: 17414 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakGay + pos: -15.5,20.5 + parent: 2 +- proto: ChemMaster entities: - - uid: 17420 + - uid: 3953 components: - type: Transform - parent: 17414 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakLesbian + pos: 9.5,25.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + pos: 25.5,15.5 + parent: 16200 +- proto: ChurchBell entities: - - uid: 17421 + - uid: 7265 components: - type: Transform - parent: 17414 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakPan + rot: 1.5707963267948966 rad + pos: -14.5,39.5 + parent: 2 +- proto: ChurchOrganInstrument entities: - - uid: 17418 + - uid: 4296 components: - type: Transform - parent: 17414 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakTrans + rot: 1.5707963267948966 rad + pos: -8.5,40.5 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 2794 + components: + - type: Transform + pos: -37.64226,39.682 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: -37.76726,39.603874 + parent: 2 + - uid: 11166 + components: + - type: Transform + pos: -37.61101,39.65075 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: -37.626637,39.635124 + parent: 2 +- proto: CigCartonGreen + entities: + - uid: 2258 + components: + - type: Transform + pos: -45.706882,44.496513 + parent: 2 +- proto: CigCartonRed + entities: + - uid: 3648 + components: + - type: Transform + pos: -45.675632,44.621513 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 1023 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 4973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 2 + - uid: 17370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 16675 +- proto: ClosetChefFilled + entities: + - uid: 11762 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 977 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetEmergency + entities: + - uid: 14825 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 81 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: -66.5,33.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -53.5,41.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: -47.5,32.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 3615 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: -38.5,21.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + pos: -29.5,51.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + pos: -3.5,41.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + pos: -72.5,15.5 + parent: 2 + - uid: 10448 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 2 + - uid: 11883 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 13717 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 14226 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 14293 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 14901 + components: + - type: Transform + pos: -56.5,21.5 + parent: 2 + - uid: 15623 + components: + - type: Transform + pos: -15.5,50.5 + parent: 2 + - uid: 16038 + components: + - type: Transform + pos: -18.5,34.5 + parent: 2 + - uid: 16040 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 16043 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 16053 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 16061 + components: + - type: Transform + pos: -1.5,36.5 + parent: 2 + - uid: 16062 + components: + - type: Transform + pos: -27.5,41.5 + parent: 2 + - uid: 16356 + components: + - type: Transform + pos: 24.5,23.5 + parent: 16200 + - uid: 17026 + components: + - type: Transform + pos: -23.5,41.5 + parent: 2 + - uid: 17027 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 2 + - uid: 17049 + components: + - type: Transform + pos: 15.5,42.5 + parent: 2 + - uid: 17058 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - uid: 17069 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 17099 + components: + - type: Transform + pos: -17.5,37.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 1520 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + pos: -72.5,16.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 10275 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 11341 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 15621 + components: + - type: Transform + pos: -14.5,50.5 + parent: 2 + - uid: 15956 + components: + - type: Transform + pos: -17.5,39.5 + parent: 2 + - uid: 16044 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 20205 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 +- proto: ClosetFire + entities: + - uid: 1051 + components: + - type: Transform + pos: -5.5,19.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: -5.5,25.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.147 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetFireFilled + entities: + - uid: 784 + components: + - type: Transform + pos: -58.5,41.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 3616 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + pos: 42.5,-24.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: 10.5,32.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: -56.5,20.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: -35.5,14.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: -38.5,22.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: -27.5,51.5 + parent: 2 + - uid: 10958 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 11622 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 11881 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 15620 + components: + - type: Transform + pos: -13.5,50.5 + parent: 2 + - uid: 16033 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 16045 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 16054 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 16357 + components: + - type: Transform + pos: 24.5,21.5 + parent: 16200 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17025 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 17028 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - uid: 17050 + components: + - type: Transform + pos: 16.5,42.5 + parent: 2 + - uid: 17059 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 + - uid: 17068 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - uid: 17100 + components: + - type: Transform + pos: -17.5,38.5 + parent: 2 + - uid: 17187 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 13070 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 +- proto: ClosetMaintenance + entities: + - uid: 4087 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4090 + - 4088 + - 4089 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 5082 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + pos: 18.5,47.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8977377 + - 7.139109 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13377 + - 13373 + - 13376 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 17973 + components: + - type: MetaData + name: шкаф капитана + - type: Transform + pos: 39.5,-6.5 + parent: 17641 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17976 + - 17975 + - 17974 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 72 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: -59.5,41.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: -67.5,33.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: -12.5,50.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: -21.5,64.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: -21.5,62.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: 15.5,36.5 + parent: 2 + - uid: 10447 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - uid: 10962 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 11765 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + pos: -32.5,26.5 + parent: 2 + - uid: 11891 + components: + - type: Transform + pos: -31.5,26.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + pos: -33.5,26.5 + parent: 2 + - uid: 15957 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 15973 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - uid: 16058 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 17029 + components: + - type: Transform + pos: 24.5,-39.5 + parent: 2 + - uid: 17037 + components: + - type: Transform + pos: 42.5,-23.5 + parent: 2 + - uid: 17048 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 + - uid: 17057 + components: + - type: Transform + pos: -2.5,43.5 + parent: 2 + - uid: 17065 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 20204 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 17511 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 + - uid: 17512 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 2 +- proto: ClosetTool + entities: + - uid: 1507 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 17067 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 1250 + components: + - type: Transform + pos: -54.5,41.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 + - uid: 10963 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 +- proto: ClosetWall + entities: + - uid: 17525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-2.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17526 +- proto: ClosetWallGreen + entities: + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4729 + - 4705 + - 4755 +- proto: ClosetWallMixed + entities: + - uid: 5259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14697 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15999 + - 16000 + - 16001 + - 15998 + - 15997 +- proto: ClothingBackpackDuffelSyndicateEVABundle + entities: + - uid: 17526 + components: + - type: Transform + parent: 17525 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltMedicalEMT + entities: + - uid: 16359 + components: + - type: Transform + parent: 16358 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltStorageWaistbag + entities: + - uid: 5724 + components: + - type: MetaData + desc: Чисто технически, в него помещаются инструменты. + name: пояс "для инструментов" + - type: Transform + pos: -45.52982,33.200676 + parent: 2 + - uid: 8145 + components: + - type: Transform + parent: 8127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltUtility + entities: + - uid: 1393 + components: + - type: Transform + pos: -25.6296,-26.52739 + parent: 2 +- proto: ClothingEyesBlindfold + entities: + - uid: 8073 + components: + - type: Transform + pos: 51.44215,-21.301846 + parent: 2 +- proto: ClothingEyesGlassesCheapSunglasses + entities: + - uid: 8129 + components: + - type: Transform + parent: 8127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesGar + entities: + - uid: 5706 + components: + - type: MetaData + desc: Очки с зелёным затемнением, использующие патентованный полимер, обеспечивающие надёжную защиту глаз от всех видов повреждений. Наверное. + name: '"инженерные" очки' + - type: Transform + pos: -45.52265,33.996605 + parent: 2 + - type: EyeProtection + - uid: 5722 + components: + - type: MetaData + desc: Очки с зелёным затемнением, использующие патентованный полимер, обеспечивающие надёжную защиту глаз от всех видов повреждений. Наверное. + name: '"инженерные" очки' + - type: Transform + pos: -45.52265,33.840355 + parent: 2 + - type: EyeProtection +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 2737 + components: + - type: Transform + pos: 15.503975,-19.02182 + parent: 2 +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 991 + components: + - type: Transform + pos: 27.527283,-14.4803915 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: 27.526262,-14.316869 + parent: 2 + - uid: 15997 + components: + - type: MetaData + name: тёплые перчатки + - type: Transform + parent: 5259 + - type: Physics + canCollide: False + - type: TemperatureProtection + coolingCoefficient: 0.5 + heatingCoefficient: 1.025 + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 1783 + components: + - type: Transform + pos: -26.537645,-37.472084 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: -26.522814,-37.246197 + parent: 2 + - uid: 17189 + components: + - type: Transform + pos: -32.285084,64.626755 + parent: 2 +- proto: ClothingHandsGlovesFingerless + entities: + - uid: 8151 + components: + - type: Transform + parent: 8127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesFingerlessInsulated + entities: + - uid: 1056 + components: + - type: Transform + pos: -45.509274,34.64422 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: -45.509274,34.45672 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 3983 + components: + - type: Transform + pos: 21.492369,19.495802 + parent: 2 +- proto: ClothingHandsTacticalMaidGloves + entities: + - uid: 835 + components: + - type: MetaData + desc: Тактические перчатки для горничных - каждая уважающая себя горничная должна уметь незаметно устранять свои цели. Вы чувствуете, что они настолько затёрты, что изолирующее покрытие стёрлось... Тем не менее, выглядят они прилично. + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - Insulated +- proto: ClothingHeadHatBeaverHat + entities: + - uid: 3595 + components: + - type: Transform + pos: -32.189342,37.92206 + parent: 2 +- proto: ClothingHeadHatBeretHoS + entities: + - uid: 5248 + components: + - type: MetaData + desc: Простой чёрный берет, на котором криво нашит значок кружки пива. + name: берет "бармена" + - type: Transform + pos: 21.489666,19.753956 + parent: 2 +- proto: ClothingHeadHatCatEars + entities: + - uid: 15812 + components: + - type: Transform + pos: -35.5,-37.3 + parent: 2 + missingComponents: + - Clothing +- proto: ClothingHeadHatHetmanHat + entities: + - uid: 6957 + components: + - type: Transform + pos: -30.525478,60.49067 + parent: 2 +- proto: ClothingHeadHatMagician + entities: + - uid: 16978 + components: + - type: Transform + parent: 7837 + - type: Storage + storedItems: + 16979: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 16979 + - type: Physics + canCollide: False +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 832 + components: + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatUshanka + entities: + - uid: 6958 + components: + - type: Transform + pos: -30.343693,60.527954 + parent: 2 + - uid: 16001 + components: + - type: Transform + parent: 5259 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatWatermelon + entities: + - uid: 8144 + components: + - type: Transform + parent: 8127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 17185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.732569,63.14942 + parent: 2 +- proto: ClothingHeadsetGrey + entities: + - uid: 8146 + components: + - type: Transform + parent: 8127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBreath + entities: + - uid: 953 + components: + - type: Transform + pos: 46.63179,-6.8410196 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: 46.334915,-6.7160196 + parent: 2 + - uid: 8049 + components: + - type: Transform + parent: 8048 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGas + entities: + - uid: 16360 + components: + - type: Transform + parent: 16358 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16366 + components: + - type: Transform + parent: 16365 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16373 + components: + - type: Transform + parent: 16372 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16380 + components: + - type: Transform + parent: 16379 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasAtmos + entities: + - uid: 11708 + components: + - type: Transform + pos: 46.459827,-5.6001186 + parent: 2 + - uid: 12459 + components: + - type: Transform + pos: 46.685955,-5.594887 + parent: 2 +- proto: ClothingMaskGasERT + entities: + - uid: 16385 + components: + - type: Transform + parent: 16384 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskMuzzle + entities: + - uid: 8066 + components: + - type: Transform + pos: 51.44215,-21.489346 + parent: 2 + - uid: 13395 + components: + - type: Transform + pos: 18.515802,45.43524 + parent: 2 +- proto: ClothingNeckCloakAdmin + entities: + - uid: 4705 + components: + - type: Transform + parent: 423 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckGoldmedal + entities: + - uid: 16386 + components: + - type: Transform + parent: 16384 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckHeadphones + entities: + - uid: 4120 + components: + - type: MetaData + desc: Старинные наушники, у которых даже есть штекер mini-jack, идеально подходящий для компактного магнитофона. + - type: Transform + parent: 1540 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 15998 + components: + - type: Transform + parent: 5259 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckTieRed + entities: + - uid: 3982 + components: + - type: Transform + pos: 21.37756,18.855837 + parent: 2 +- proto: ClothingNeckUSSPPin + entities: + - uid: 3145 + components: + - type: Transform + pos: -28.264975,61.860954 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: -28.407715,61.9925 + parent: 2 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 16381 + components: + - type: Transform + parent: 16379 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatDetectiveDark + entities: + - uid: 429 + components: + - type: Transform + parent: 4814 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatExpensive + entities: + - uid: 16387 + components: + - type: Transform + parent: 16384 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatGentle + entities: + - uid: 8058 + components: + - type: Transform + pos: -32.20582,37.586777 + parent: 2 +- proto: ClothingOuterCoatJensen + entities: + - uid: 4090 + components: + - type: Transform + parent: 4087 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitBasic + entities: + - uid: 16361 + components: + - type: Transform + parent: 16358 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]20%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTEngineer + entities: + - uid: 16367 + components: + - type: Transform + parent: 16365 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]30%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]30%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]40%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]90%[/color]. + + - [color=yellow]Низкотемпературный[/color] урон снижается на [color=lightblue]90%[/color]. + + - [color=yellow]Электрический[/color] урон снижается на [color=lightblue]90%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]90%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]90%[/color]. + + - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]30%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTSecurity + entities: + - uid: 16374 + components: + - type: Transform + parent: 16372 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHospitalGown + entities: + - uid: 8099 + components: + - type: Transform + parent: 8084 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8117 + components: + - type: Transform + parent: 8084 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8118 + components: + - type: Transform + parent: 8084 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterStraightjacket + entities: + - uid: 1218 + components: + - type: Transform + pos: 47.62739,-5.317329 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 47.424267,-5.317329 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: 49.68695,-21.267414 + parent: 2 +- proto: ClothingOuterSuitEmergency + entities: + - uid: 3369 + components: + - type: Transform + pos: 40.362106,-19.480274 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: -30.502663,61.39692 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: -30.533913,61.068794 + parent: 2 +- proto: ClothingOuterVestHazard + entities: + - uid: 8149 + components: + - type: Transform + parent: 8127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterSec + entities: + - uid: 16000 + components: + - type: Transform + parent: 5259 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBling + entities: + - uid: 4286 + components: + - type: Transform + pos: -4.46716,-21.245726 + parent: 2 +- proto: ClothingShoesBootsLaceup + entities: + - uid: 3984 + components: + - type: Transform + pos: 21.523619,18.386427 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 1127 + components: + - type: Transform + pos: -20.337545,-12.3313 + parent: 2 + - uid: 16368 + components: + - type: Transform + parent: 16365 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWinterSec + entities: + - uid: 15999 + components: + - type: Transform + parent: 5259 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesGreenLizardskin + entities: + - uid: 11755 + components: + - type: Transform + pos: -32.215385,37.23857 + parent: 2 +- proto: ClothingShoesHighheelBoots + entities: + - uid: 8148 + components: + - type: Transform + parent: 8127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesHighheelBootsFilled + entities: + - uid: 16375 + components: + - type: Transform + parent: 16372 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16382 + components: + - type: Transform + parent: 16379 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesSlippers + entities: + - uid: 1831 + components: + - type: Transform + pos: -13.53664,-18.218166 + parent: 2 +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 1399 + components: + - type: Transform + pos: -32.57829,36.670753 + parent: 2 +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 852 + components: + - type: Transform + parent: 6660 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13373 + components: + - type: Transform + parent: 13371 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitAncient + entities: + - uid: 8130 + components: + - type: Transform + parent: 8127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitColorGreen + entities: + - uid: 4729 + components: + - type: Transform + parent: 423 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitColorGrey + entities: + - uid: 5067 + components: + - type: Transform + pos: -32.5,38.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: -32.5,37.5 + parent: 2 +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 1400 + components: + - type: Transform + pos: -32.250164,36.65513 + parent: 2 +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 437 + components: + - type: Transform + parent: 4814 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11867 + components: + - type: Transform + pos: -32.21628,39.618362 + parent: 2 +- proto: ClothingUniformJumpsuitJournalist + entities: + - uid: 11756 + components: + - type: Transform + pos: -32.575657,39.696487 + parent: 2 +- proto: ClothingUniformJumpsuitLawyerBlack + entities: + - uid: 3981 + components: + - type: Transform + pos: 21.518185,19.043337 + parent: 2 +- proto: ClothingUniformJumpsuitNanotrasen + entities: + - uid: 4332 + components: + - type: Transform + parent: 4331 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitRecruitSyndie + entities: + - uid: 11872 + components: + - type: MetaData + name: серый комбинезон + - type: Transform + pos: -32.20217,38.51278 + parent: 2 +- proto: ClothingUniformJumpsuitSyndieFormal + entities: + - uid: 13377 + components: + - type: MetaData + desc: Просто стильная, чёрная одежда. + name: стильный чёрный костюм + - type: Transform + parent: 13371 + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - Contraband +- proto: ClusterBangFull + entities: + - uid: 3297 + components: + - type: Transform + pos: 31.653328,-31.444519 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: 31.434536,-31.227678 + parent: 2 +- proto: ComfyChair + entities: + - uid: 861 + components: + - type: Transform + pos: -64.5,35.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,36.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,38.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,24.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,18.5 + parent: 16200 + - uid: 18421 + components: + - type: Transform + pos: -1.5,3.5 + parent: 17641 + - uid: 18422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 17641 + - uid: 20210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 + - uid: 20216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-11.5 + parent: 2 +- proto: CommandmentCircuitBoard + entities: + - uid: 15752 + components: + - type: Transform + parent: 15749 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CommsComputerCircuitboard + entities: + - uid: 2005 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 15788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-39.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 2556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2558: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + - uid: 4276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 1837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,9.5 + parent: 2 + - uid: 18423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,0.5 + parent: 17641 + - uid: 18424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 17641 +- proto: ComputerBroken + entities: + - uid: 18425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 17641 + - uid: 18426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 17641 + - uid: 18427 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 17641 + - uid: 18428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 17641 + - uid: 18429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 17641 + - uid: 18430 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 17641 +- proto: ComputerCargoBounty + entities: + - uid: 3680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,5.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 839 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 120 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-39.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 55 + components: + - type: Transform + pos: -68.5,37.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,21.5 + parent: 2 + - uid: 14376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,8.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 1150 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-30.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 859 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 2 +- proto: ComputerIFFSyndicate + entities: + - uid: 16791 + components: + - type: Transform + pos: 6.5,24.5 + parent: 16675 +- proto: ComputerMassMedia + entities: + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,37.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 1770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-34.5 + parent: 2 + - uid: 15797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-39.5 + parent: 2 + - uid: 16389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,8.5 + parent: 16200 +- proto: ComputerRadar + entities: + - uid: 6539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,17.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 1022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 +- proto: ComputerRoboticsControl + entities: + - uid: 2636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 853 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 2930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 6637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,15.5 + parent: 2 +- proto: ComputerShuttleSyndie + entities: + - uid: 16792 + components: + - type: Transform + pos: 7.5,24.5 + parent: 16675 +- proto: ComputerSolarControl + entities: + - uid: 1143 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-34.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: -30.5,64.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-39.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 3774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-35.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-36.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,35.5 + parent: 2 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 1416 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 18431 + components: + - type: Transform + pos: 17.5,26.5 + parent: 17641 +- proto: ContainmentFieldGenerator + entities: + - uid: 1822 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 918 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,26.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,4.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,8.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,8.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,4.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,4.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,4.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,4.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,10.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,10.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,10.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,10.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,10.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,10.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,10.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,4.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,4.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,33.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,34.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,37.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,31.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,31.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,31.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: 29.5,35.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: 29.5,32.5 + parent: 2 + - uid: 5193 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,33.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,33.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,32.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,36.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,31.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,36.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,35.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,32.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,37.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,26.5 + parent: 2 + - uid: 10196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - uid: 14755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 2 + - uid: 14756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + - uid: 14757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 2 + - uid: 15098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,26.5 + parent: 2 + - uid: 15979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-8.5 + parent: 2 + - uid: 15980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-8.5 + parent: 2 + - uid: 15981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 2 + - uid: 15982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-8.5 + parent: 2 + - uid: 15989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-7.5 + parent: 2 + - uid: 15990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-7.5 + parent: 2 + - uid: 15991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 2 + - uid: 15992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-7.5 + parent: 2 + - uid: 17474 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 15754 + components: + - type: Transform + parent: 15749 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CowToolboxFilled + entities: + - uid: 18432 + components: + - type: Transform + pos: 20.491209,4.571623 + parent: 17641 +- proto: CrateArtifactContainer + entities: + - uid: 1471 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: -59.5,32.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3315 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 3708 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 +- proto: CrateCommandSecure + entities: + - uid: 15749 + components: + - type: MetaData + desc: Большой контейнер для печатных плат. Этот содержит платы с адекватными законами. + name: ящик печатных плат + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15756 + - 15755 + - 15754 + - 15753 + - 15752 + - 15750 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15765 + components: + - type: MetaData + desc: Большой контейнер для печатных плат. Этот содержит платы со смешными законами. + name: ящик печатных плат + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15771 + - 15772 + - 15766 + - 15769 + - 15770 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEmptySpawner + entities: + - uid: 4518 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 +- proto: CrateEngineeringAMEControl + entities: + - uid: 3651 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 395 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 18433 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 17641 + - uid: 18434 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 17641 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 487 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 +- proto: CrateEngineeringCableHV + entities: + - uid: 4072 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 +- proto: CrateEngineeringSecure + entities: + - uid: 12401 + components: + - type: Transform + pos: 29.5,10.5 + parent: 16200 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13382 + - 12482 + - 13380 + - 15874 + - 12477 + - 12475 + - 12472 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12408 + components: + - type: Transform + pos: 29.5,8.5 + parent: 16200 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15898 + - 17357 + - 17303 + - 17359 + - 17302 + - 17304 + - 17358 + - 17308 + - 17307 + - 15896 + - 15895 + - 17356 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringSolar + entities: + - uid: 7345 + components: + - type: Transform + pos: 25.5,-41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateFreezer + entities: + - uid: 7307 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 +- proto: CrateFunInstrumentsVariety + entities: + - uid: 1408 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 +- proto: CrateFunPlushie + entities: + - uid: 4034 + components: + - type: MetaData + desc: Ящик, полный единственными друзьями мима. + - type: Transform + pos: 6.5,21.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateFunToyBox + entities: + - uid: 4114 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 2530 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 8112 + components: + - type: MetaData + desc: На случай, если мешки закончатся. + name: ящик для трупов + - type: Transform + pos: -19.5,24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2141 + - 2389 + - 2401 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8113 + components: + - type: MetaData + desc: На случай, если мешки закончатся. + name: ящик для трупов + - type: Transform + pos: -20.5,24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2445 + - 2480 + - 2605 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15515 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 +- proto: CrateHydroponics + entities: + - uid: 3672 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 +- proto: CrateMaterialTextiles + entities: + - uid: 2656 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 +- proto: CrateMedical + entities: + - uid: 4513 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4519 + - 4517 + - 4514 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMedicalSurgery + entities: + - uid: 8651 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 +- proto: CrateNPCCow + entities: + - uid: 4363 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 2580 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 +- proto: CratePirate + entities: + - uid: 4929 + components: + - type: MetaData + desc: Сундук, наполненный вещами немыслимой ценности. Похоже, что в этом - половина бюджета станции. + name: сундук с сокровищами + - type: Transform + pos: -4.5,48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 955 + - 5027 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6283 + components: + - type: MetaData + desc: Сундук, наполненный вещами немыслимой ценности. Похоже, что в этом - половина бюджета станции. + name: сундук с сокровищами + - type: Transform + pos: -4.5,49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6284 + - 1058 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6287 + components: + - type: MetaData + desc: Сундук, наполненный вещами немыслимой ценности. Похоже, что в этом - половина бюджета станции. + name: сундук с сокровищами + - type: Transform + pos: -2.5,49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1089 + - 6376 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7585 + components: + - type: MetaData + desc: Сундук, наполненный вещами немыслимой ценности. Похоже, что в этом - половина бюджета станции. + name: сундук с сокровищами + - type: Transform + pos: -2.5,48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1823 + - 7589 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CratePlastic + entities: + - uid: 16949 + components: + - type: MetaData + name: ящик снаряжения для уборки ОБР + - type: Transform + pos: 7.5,15.5 + parent: 16675 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17366 + - 17365 + - 17364 + - 17367 + - 17368 + - 17369 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CratePrivateSecure + entities: + - uid: 1387 + components: + - type: MetaData + desc: Ящик с сокровищами, не поддающимися воображению! + name: грандиозная лотерея $$$ + - type: Transform + pos: -28.5,6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1401 + - 3363 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateServiceJanitorialSupplies entities: - - uid: 17417 + - uid: 3261 components: - type: Transform - parent: 17414 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckGoldmedal + pos: 5.5,31.5 + parent: 2 +- proto: CrateServicePersonnel entities: - - uid: 16386 - components: - - type: Transform - parent: 16384 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19430 + - uid: 2657 components: - type: Transform - pos: 17.48462,-9.726074 - parent: 17590 -- proto: ClothingNeckNanoTrasenPin + pos: 9.5,-23.5 + parent: 2 +- proto: CrateServiceTheatre entities: - - uid: 956 + - uid: 209 components: - type: Transform - pos: -9.553383,41.55534 + pos: 2.5,17.5 parent: 2 -- proto: ClothingNeckScarfStripedCentcom +- proto: CrateSyndicate entities: - - uid: 18274 + - uid: 16793 components: - type: MetaData - desc: Стильный полосатый шарф, в цветах SLMG. Идеальный зимний аксессуар для тех, у кого обострённое чувство моды, и тех, кто вынужден заниматься бумажной работой на холоде. - name: полосатый шарф SLMG + name: ящик фугасных снарядов - type: Transform - parent: 18271 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckSyndicakePin + pos: 9.5,24.5 + parent: 16675 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17014 + - 16948 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateTrashCartFilled entities: - - uid: 5738 + - uid: 2685 components: - type: Transform - pos: -69.375534,37.553986 + pos: 21.5,36.5 parent: 2 -- proto: ClothingNeckTieRed - entities: - - uid: 3982 + - uid: 2786 components: - type: Transform - pos: 21.37756,18.855837 + pos: 24.5,36.5 parent: 2 -- proto: ClothingNeckUSSPPin - entities: - - uid: 3145 + - uid: 2791 components: - type: Transform - pos: -28.264975,61.860954 + pos: 25.5,36.5 parent: 2 - - uid: 3551 + - uid: 3115 components: - type: Transform - pos: -28.407715,61.9925 + pos: 21.5,35.5 parent: 2 -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 16381 + - uid: 5194 components: - type: Transform - parent: 16379 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterCardborg - entities: - - uid: 2040 + pos: 23.5,36.5 + parent: 2 + - uid: 10452 components: - type: Transform - parent: 2036 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterCoatExpensive - entities: - - uid: 16387 + pos: 23.5,35.5 + parent: 2 + - uid: 10457 components: - type: Transform - parent: 16384 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterCoatJensen - entities: - - uid: 4090 + pos: 25.5,32.5 + parent: 2 + - uid: 10458 components: - type: Transform - parent: 4087 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitBasic - entities: - - uid: 16361 + pos: 25.5,31.5 + parent: 2 + - uid: 10693 components: - type: Transform - parent: 16358 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]20%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitBrigmedic - entities: - - uid: 18695 + pos: 24.5,31.5 + parent: 2 + - uid: 10875 components: - type: Transform - parent: 18692 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitERTEngineer - entities: - - uid: 16367 + pos: 24.5,32.5 + parent: 2 + - uid: 10876 components: - type: Transform - parent: 16365 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]40%[/color]. - - - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]90%[/color]. - - - [color=yellow]Низкотемпературный[/color] урон снижается на [color=lightblue]90%[/color]. - - - [color=yellow]Электрический[/color] урон снижается на [color=lightblue]90%[/color]. - - - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]90%[/color]. - - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]90%[/color]. - - - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]30%[/color]. - priority: 0 - component: Armor - title: null - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitERTSecurity - entities: - - uid: 16374 + pos: 23.5,31.5 + parent: 2 + - uid: 10877 components: - type: Transform - parent: 16372 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitEVAPrisoner - entities: - - uid: 7701 + pos: 24.5,33.5 + parent: 2 + - uid: 10952 components: - type: Transform - pos: 27.407553,31.600924 + pos: 25.5,26.5 parent: 2 - - uid: 7702 + - uid: 10971 components: - type: Transform - pos: 28.376303,31.554049 + pos: 24.5,12.5 parent: 2 -- proto: ClothingOuterHardsuitMaxim - entities: - - uid: 18292 + - uid: 10973 components: - type: Transform - parent: 18284 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]40%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]40%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]50%[/color]. - - - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]70%[/color]. - - - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]90%[/color]. - - - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]80%[/color]. - priority: 0 - component: Armor - title: null - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHospitalGown - entities: - - uid: 4697 + pos: 24.5,11.5 + parent: 2 + - uid: 10975 components: - type: Transform - parent: 4696 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4698 + pos: 24.5,10.5 + parent: 2 + - uid: 13090 components: - type: Transform - parent: 4696 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4699 + pos: 9.5,32.5 + parent: 2 + - uid: 17045 components: - type: Transform - parent: 4696 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18288 + pos: 19.5,35.5 + parent: 2 + - uid: 17092 components: - type: Transform - parent: 18287 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18289 + pos: 25.5,27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17095 components: - type: Transform - parent: 18287 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterStraightjacket - entities: - - uid: 8101 + pos: 2.5,29.5 + parent: 2 + - uid: 17098 components: - type: Transform - pos: 49.68695,-21.267414 + pos: -17.5,36.5 parent: 2 -- proto: ClothingOuterSuitEmergency - entities: - - uid: 2021 + - uid: 17101 components: - type: Transform - parent: 2019 - - type: ToggleableClothing - clothingUid: 2022 - actionEntity: 2024 - - type: ContainerContainer - containers: - toggleable-clothing: !type:ContainerSlot - showEnts: False - occludes: True - ent: 2022 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 2024 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: InsideEntityStorage - - uid: 2037 + pos: -18.5,47.5 + parent: 2 + - uid: 17107 components: - type: Transform - parent: 2036 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3369 + pos: -52.5,41.5 + parent: 2 + - uid: 17115 components: - type: Transform - pos: 40.362106,-19.480274 + pos: -14.5,43.5 parent: 2 - - uid: 6955 + - uid: 17116 components: - type: Transform - pos: -30.502663,61.39692 + pos: -15.5,43.5 parent: 2 - - uid: 6956 + - uid: 17117 components: - type: Transform - pos: -30.533913,61.068794 + pos: -16.5,43.5 parent: 2 -- proto: ClothingOuterVestHazard - entities: - - uid: 8149 + - uid: 18435 components: - type: Transform - parent: 8127 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesBootsLaceup - entities: - - uid: 3984 + pos: 14.5,15.5 + parent: 17641 + - uid: 18436 components: - type: Transform - pos: 21.523619,18.386427 - parent: 2 -- proto: ClothingShoesBootsMag - entities: - - uid: 16368 + pos: 14.5,13.5 + parent: 17641 + - uid: 18437 components: - type: Transform - parent: 16365 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18290 + pos: 14.5,12.5 + parent: 17641 + - uid: 18438 components: - type: Transform - pos: 9.5,-12.5 - parent: 17590 - - uid: 18291 + pos: 14.5,11.5 + parent: 17641 + - uid: 18439 components: - type: Transform - pos: 9.5,-12.3 - parent: 17590 -- proto: ClothingShoesHighheelBoots - entities: - - uid: 8148 + pos: 14.5,14.5 + parent: 17641 + - uid: 18440 components: - type: Transform - parent: 8127 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesHighheelBootsFilled - entities: - - uid: 16093 + pos: 13.5,15.5 + parent: 17641 + - uid: 18441 components: - type: Transform - parent: 5029 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16375 + pos: 13.5,13.5 + parent: 17641 + - uid: 18442 components: - type: Transform - parent: 16372 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16382 + pos: 13.5,14.5 + parent: 17641 + - uid: 18443 components: - type: Transform - parent: 16379 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesSlippers - entities: - - uid: 1831 + pos: 13.5,11.5 + parent: 17641 + - uid: 18444 components: - type: Transform - pos: -13.53664,-18.218166 - parent: 2 -- proto: ClothingUnderSocksCoder - entities: - - uid: 1051 + pos: 12.5,14.5 + parent: 17641 + - uid: 18445 components: - - type: MetaData - desc: 'Ня! ' - name: чулки табуретки - type: Transform - parent: 13371 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9457 + pos: 12.5,13.5 + parent: 17641 + - uid: 18446 components: - - type: MetaData - name: ринидовы чулочки - type: Transform - pos: -15.562399,5.434697 - parent: 2 -- proto: ClothingUniformJumpskirtCMOTurtle - entities: - - uid: 18283 + pos: 12.5,15.5 + parent: 17641 + - uid: 18447 components: - type: Transform - parent: 18280 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtElegantMaid - entities: - - uid: 16092 + pos: 12.5,12.5 + parent: 17641 + - uid: 18448 components: - - type: MetaData - name: элегантная форма беты-ру - type: Transform - parent: 5029 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtTacticalMaid - entities: - - uid: 13373 + pos: 13.5,12.5 + parent: 17641 + - uid: 18449 components: - type: Transform - parent: 13371 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitAncient - entities: - - uid: 35 + pos: 12.5,11.5 + parent: 17641 + - uid: 18450 components: - type: Transform - parent: 6660 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8130 + pos: 20.5,15.5 + parent: 17641 + - uid: 18451 components: - type: Transform - parent: 8127 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitCentcomOfficer - entities: - - uid: 18276 + pos: 20.5,14.5 + parent: 17641 + - uid: 18452 components: - - type: MetaData - desc: Повседневная, но элегантная водолазка зелёного цвета, используемая верхушкой SLMG. От неё веет алоэ. - name: водолазка SLMG - type: Transform - parent: 18271 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitChiefEngineerTurtle - entities: - - uid: 17676 + pos: 20.5,13.5 + parent: 17641 + - uid: 18453 components: - type: Transform - parent: 17671 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitColorGrey - entities: - - uid: 5065 + pos: 20.5,12.5 + parent: 17641 + - uid: 18454 + components: + - type: Transform + pos: 20.5,11.5 + parent: 17641 + - uid: 18455 components: - type: Transform - pos: -32.5,39.5 - parent: 2 - - uid: 5067 + pos: 21.5,15.5 + parent: 17641 + - uid: 18456 components: - type: Transform - pos: -32.5,38.5 - parent: 2 - - uid: 5786 + pos: 21.5,14.5 + parent: 17641 + - uid: 18457 components: - type: Transform - pos: -32.5,37.5 - parent: 2 - - uid: 5787 + pos: 21.5,13.5 + parent: 17641 + - uid: 18458 components: - type: Transform - pos: -32.5,36.5 - parent: 2 -- proto: ClothingUniformJumpsuitLawyerBlack - entities: - - uid: 3981 + pos: 21.5,11.5 + parent: 17641 + - uid: 18459 components: - type: Transform - pos: 21.518185,19.043337 - parent: 2 - - uid: 4833 + pos: 22.5,15.5 + parent: 17641 + - uid: 18460 components: - type: Transform - parent: 4814 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitNanotrasen - entities: - - uid: 4332 + pos: 22.5,14.5 + parent: 17641 + - uid: 18461 components: - type: Transform - parent: 4331 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitPrisoner - entities: - - uid: 276 + pos: 22.5,13.5 + parent: 17641 + - uid: 18462 components: - type: Transform - pos: 47.4526,-5.436233 - parent: 2 - - uid: 1218 + pos: 22.5,12.5 + parent: 17641 + - uid: 18463 components: - type: Transform - pos: 47.4526,-5.436233 - parent: 2 -- proto: ClothingUniformJumpsuitSyndieFormal - entities: - - uid: 13377 + pos: 21.5,12.5 + parent: 17641 + - uid: 18464 components: - - type: MetaData - desc: Просто стильная, чёрная одежда. - name: стильный чёрный костюм - type: Transform - parent: 13371 - - type: Physics - canCollide: False - - type: InsideEntityStorage - missingComponents: - - Contraband -- proto: ClusterBangFull - entities: - - uid: 3297 + pos: 22.5,11.5 + parent: 17641 + - uid: 18465 components: - type: Transform - pos: 31.653328,-31.444519 - parent: 2 - - uid: 3311 + pos: 23.5,19.5 + parent: 17641 + - uid: 18466 components: - type: Transform - pos: 31.434536,-31.227678 - parent: 2 -- proto: CluwneHorn - entities: - - uid: 2026 + pos: 23.5,17.5 + parent: 17641 + - uid: 18467 components: - type: Transform - parent: 2019 - - type: UseDelay - delays: - default: - endTime: 0 - startTime: 0 - length: 1 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CockroachTimedSpawner - entities: - - uid: 2685 + pos: 22.5,19.5 + parent: 17641 + - uid: 18468 components: - type: Transform - pos: -13.5,15.5 - parent: 2 -- proto: ComfyChair - entities: - - uid: 437 + pos: 22.5,18.5 + parent: 17641 + - uid: 18469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 2 - - uid: 2247 + pos: 22.5,17.5 + parent: 17641 + - uid: 18470 components: - type: Transform - pos: 8.5,-6.5 - parent: 2 - - uid: 2248 + pos: 21.5,19.5 + parent: 17641 + - uid: 18471 components: - type: Transform - pos: 7.5,-6.5 - parent: 2 - - uid: 2249 + pos: 23.5,18.5 + parent: 17641 + - uid: 18472 components: - type: Transform - pos: 6.5,-6.5 - parent: 2 - - uid: 2250 + pos: 21.5,17.5 + parent: 17641 + - uid: 18473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-8.5 - parent: 2 - - uid: 2251 + pos: 20.5,18.5 + parent: 17641 + - uid: 18474 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-8.5 - parent: 2 - - uid: 2252 + pos: 20.5,19.5 + parent: 17641 + - uid: 18475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-8.5 - parent: 2 - - uid: 2253 + pos: 20.5,17.5 + parent: 17641 + - uid: 18476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 2 - - uid: 2586 + pos: 19.5,19.5 + parent: 17641 + - uid: 18477 components: - type: Transform - pos: -13.5,-22.5 - parent: 2 - - uid: 3359 + pos: 19.5,18.5 + parent: 17641 + - uid: 18478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 2 - - uid: 4837 + pos: 19.5,17.5 + parent: 17641 + - uid: 18479 components: - type: Transform - pos: -30.5,17.5 - parent: 2 - - uid: 5141 + pos: 18.5,18.5 + parent: 17641 + - uid: 18480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,38.5 - parent: 2 - - uid: 15782 + pos: 21.5,18.5 + parent: 17641 + - uid: 18481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,18.5 - parent: 16200 -- proto: CommandmentCircuitBoard - entities: - - uid: 15752 + pos: 18.5,19.5 + parent: 17641 + - uid: 18482 components: - type: Transform - parent: 15749 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CommsComputerCircuitboard - entities: - - uid: 2005 + pos: 18.5,17.5 + parent: 17641 + - uid: 18483 components: - type: Transform - pos: -2.5,-18.5 - parent: 2 -- proto: ComputerAlert - entities: - - uid: 15788 + pos: 11.5,19.5 + parent: 17641 + - uid: 18484 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-39.5 - parent: 2 -- proto: ComputerAnalysisConsole - entities: - - uid: 2556 + pos: 11.5,17.5 + parent: 17641 + - uid: 18485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-14.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2558: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: computerBodyScanner - entities: - - uid: 18299 + pos: 12.5,19.5 + parent: 17641 + - uid: 18486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-12.5 - parent: 17590 -- proto: ComputerBroken - entities: - - uid: 1120 + pos: 12.5,18.5 + parent: 17641 + - uid: 18487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,21.5 - parent: 2 - - uid: 1312 + pos: 11.5,18.5 + parent: 17641 + - uid: 18488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 2 - - uid: 1399 + pos: 12.5,17.5 + parent: 17641 + - uid: 18489 components: - type: Transform - pos: -13.5,3.5 - parent: 2 - - uid: 2370 + pos: 13.5,19.5 + parent: 17641 + - uid: 18490 components: - type: Transform - pos: 35.5,13.5 - parent: 2 - - uid: 18319 + pos: 13.5,18.5 + parent: 17641 + - uid: 18491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 17590 - - uid: 18326 + pos: 13.5,17.5 + parent: 17641 + - uid: 18492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 17590 - - uid: 19955 + pos: 14.5,19.5 + parent: 17641 + - uid: 18493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,16.5 - parent: 19951 - - uid: 20052 + pos: 14.5,18.5 + parent: 17641 + - uid: 18494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 17590 -- proto: ComputerCargoBounty - entities: - - uid: 3680 + pos: 15.5,19.5 + parent: 17641 + - uid: 18495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,5.5 - parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 839 + pos: 15.5,18.5 + parent: 17641 + - uid: 18496 components: - type: Transform - pos: 2.5,-0.5 - parent: 2 - - uid: 2460 + pos: 14.5,17.5 + parent: 17641 + - uid: 18497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,5.5 - parent: 2 - - uid: 5741 + pos: 15.5,17.5 + parent: 17641 + - uid: 18498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 2 -- proto: ComputerComms - entities: - - uid: 120 + pos: 16.5,19.5 + parent: 17641 + - uid: 18499 components: - type: Transform - pos: 6.5,1.5 - parent: 2 - - uid: 1809 + pos: 16.5,17.5 + parent: 17641 + - uid: 18500 components: - type: Transform - pos: -0.5,-3.5 - parent: 2 - - uid: 15784 + pos: 16.5,18.5 + parent: 17641 + - uid: 18501 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-39.5 - parent: 2 -- proto: ComputerCrewMonitoring - entities: - - uid: 4784 + pos: 11.5,23.5 + parent: 17641 + - uid: 18502 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,9.5 - parent: 2 - - uid: 4906 + pos: 11.5,22.5 + parent: 17641 + - uid: 18503 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,7.5 - parent: 2 - - uid: 18294 + pos: 11.5,21.5 + parent: 17641 + - uid: 18504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-5.5 - parent: 17590 -- proto: ComputerCriminalRecords - entities: - - uid: 1150 + pos: 12.5,23.5 + parent: 17641 + - uid: 18505 components: - type: Transform - pos: -33.5,30.5 - parent: 2 - - uid: 3513 + pos: 12.5,22.5 + parent: 17641 + - uid: 18506 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-30.5 - parent: 2 - - uid: 3674 + pos: 12.5,21.5 + parent: 17641 + - uid: 18507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 2 - - uid: 3773 + pos: 13.5,23.5 + parent: 17641 + - uid: 18508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-34.5 - parent: 2 -- proto: ComputerFrame - entities: - - uid: 1400 + pos: 13.5,22.5 + parent: 17641 + - uid: 18509 components: - type: Transform - pos: -11.5,3.5 - parent: 2 -- proto: ComputerId - entities: - - uid: 859 + pos: 13.5,21.5 + parent: 17641 + - uid: 18510 components: - type: Transform - pos: 5.5,1.5 - parent: 2 - - uid: 1287 + pos: 14.5,23.5 + parent: 17641 + - uid: 18511 components: - type: Transform - pos: 0.5,-3.5 - parent: 2 - - uid: 2671 + pos: 14.5,22.5 + parent: 17641 + - uid: 18512 components: - type: Transform - pos: 9.5,-18.5 - parent: 2 -- proto: ComputerIFFSyndicate - entities: - - uid: 16791 + pos: 14.5,21.5 + parent: 17641 + - uid: 18513 components: - type: Transform - pos: 6.5,24.5 - parent: 16675 -- proto: ComputerMassMedia - entities: - - uid: 108 + pos: 15.5,23.5 + parent: 17641 + - uid: 18514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 2 - - uid: 7649 + pos: 15.5,22.5 + parent: 17641 + - uid: 18515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,35.5 - parent: 2 -- proto: ComputerPowerMonitoring - entities: - - uid: 1770 + pos: 15.5,21.5 + parent: 17641 + - uid: 18516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-34.5 - parent: 2 - - uid: 15797 + pos: 16.5,23.5 + parent: 17641 + - uid: 18517 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-39.5 - parent: 2 - - uid: 16389 + pos: 16.5,22.5 + parent: 17641 + - uid: 18518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,8.5 - parent: 16200 - - uid: 18328 + pos: 16.5,21.5 + parent: 17641 + - uid: 18519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 17590 -- proto: ComputerRadar - entities: - - uid: 6539 + pos: 23.5,23.5 + parent: 17641 + - uid: 18520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,17.5 - parent: 2 - - uid: 18297 + pos: 23.5,21.5 + parent: 17641 + - uid: 18521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 17590 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 1022 + pos: 22.5,23.5 + parent: 17641 + - uid: 18522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-8.5 - parent: 2 - - uid: 2776 + pos: 22.5,22.5 + parent: 17641 + - uid: 18523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 2 - - uid: 4990 + pos: 22.5,21.5 + parent: 17641 + - uid: 18524 components: - type: Transform - pos: 3.5,-0.5 - parent: 2 -- proto: ComputerRoboticsControl - entities: - - uid: 2636 + pos: 23.5,22.5 + parent: 17641 + - uid: 18525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-3.5 - parent: 2 -- proto: ComputerShuttle - entities: - - uid: 19876 + pos: 21.5,23.5 + parent: 17641 + - uid: 18526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,16.5 - parent: 19854 -- proto: ComputerShuttleCargo - entities: - - uid: 2930 + pos: 20.5,23.5 + parent: 17641 + - uid: 18527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,8.5 - parent: 2 -- proto: ComputerShuttleSalvage - entities: - - uid: 6637 + pos: 21.5,21.5 + parent: 17641 + - uid: 18528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,15.5 - parent: 2 -- proto: ComputerShuttleSyndie - entities: - - uid: 16792 + pos: 20.5,22.5 + parent: 17641 + - uid: 18529 components: - type: Transform - pos: 7.5,24.5 - parent: 16675 - - uid: 18298 + pos: 20.5,21.5 + parent: 17641 + - uid: 18530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 17590 -- proto: ComputerSolarControl - entities: - - uid: 1143 + pos: 19.5,23.5 + parent: 17641 + - uid: 18531 components: - type: Transform - pos: -30.5,2.5 - parent: 2 - - uid: 1769 + pos: 19.5,22.5 + parent: 17641 + - uid: 18532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-34.5 - parent: 2 - - uid: 6986 + pos: 18.5,23.5 + parent: 17641 + - uid: 18533 components: - type: Transform - pos: -30.5,64.5 - parent: 2 - - uid: 7344 + pos: 19.5,21.5 + parent: 17641 + - uid: 18534 components: - type: Transform - pos: 22.5,-41.5 - parent: 2 - - uid: 15791 + pos: 21.5,22.5 + parent: 17641 + - uid: 18535 + components: + - type: Transform + pos: 18.5,21.5 + parent: 17641 + - uid: 18536 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-39.5 - parent: 2 -- proto: ComputerStationRecords + pos: 18.5,22.5 + parent: 17641 +- proto: CrateTrashCartJani entities: - - uid: 3675 + - uid: 1503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-13.5 + pos: 19.5,38.5 parent: 2 - - uid: 3774 + - uid: 1504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-35.5 + pos: 19.5,36.5 parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 988 + - uid: 1505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-11.5 + pos: 17.5,33.5 parent: 2 - - uid: 3514 + - uid: 1506 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-30.5 + pos: 17.5,32.5 parent: 2 - - uid: 3775 + - uid: 3023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-36.5 + pos: 5.5,46.5 parent: 2 -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 7650 + - uid: 3024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,36.5 + pos: -51.5,41.5 parent: 2 -- proto: ComputerTelevision - entities: - - uid: 4138 + - uid: 3084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,11.5 + pos: 4.5,46.5 parent: 2 -- proto: ContainmentFieldGenerator - entities: - - uid: 1822 + - uid: 10203 components: - type: Transform - pos: -25.5,-42.5 + pos: 14.5,46.5 parent: 2 - - uid: 7641 + - uid: 10204 components: - type: Transform - pos: -25.5,-44.5 + pos: 15.5,46.5 parent: 2 -- proto: ConveyorBelt - entities: - - uid: 918 + - uid: 10451 components: - type: Transform - pos: 39.5,5.5 + pos: 8.5,32.5 parent: 2 - - uid: 1086 + - uid: 10878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,26.5 + pos: 23.5,32.5 parent: 2 - - uid: 1159 + - uid: 10879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,4.5 + pos: 25.5,35.5 parent: 2 - - uid: 2325 + - uid: 10953 components: - type: Transform - pos: 39.5,1.5 + pos: 25.5,24.5 parent: 2 - - uid: 2328 + - uid: 15958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,8.5 + pos: -20.5,41.5 parent: 2 - - uid: 2329 + - uid: 15967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,8.5 + pos: -18.5,41.5 parent: 2 - - uid: 2330 +- proto: CrateVendingMachineRestockChemVendFilled + entities: + - uid: 6698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,8.5 + pos: -10.5,26.5 parent: 2 - - uid: 2331 +- proto: CrateWeaponSecure + entities: + - uid: 16222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,8.5 - parent: 2 - - uid: 2332 + pos: 27.5,19.5 + parent: 16200 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 16578 + - 16577 + - 16576 + - 16412 + - 16575 + - 16574 + - 16410 + - 16223 + - 16401 + - 16420 + - 16421 + - 16422 + - 16423 + - 16424 + - 16425 + - 16426 + - 16427 + - 16455 + - 16497 + - 16499 + - 16411 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateWoodenGrave + entities: + - uid: 8108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,8.5 + pos: 56.5,-17.5 parent: 2 - - uid: 2333 + - uid: 14233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,4.5 + pos: 58.5,-16.5 parent: 2 - - uid: 2334 +- proto: CrayonBlack + entities: + - uid: 2287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,4.5 + rot: 3.141592653589793 rad + pos: 16.231903,-19.359385 parent: 2 - - uid: 2335 + - uid: 2388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,4.5 + rot: -1.5707963267948966 rad + pos: 17.810028,-24.517061 parent: 2 - - uid: 2336 +- proto: Crematorium + entities: + - uid: 4287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,4.5 + pos: -14.5,48.5 parent: 2 - - uid: 2337 +- proto: CrewMonitoringServer + entities: + - uid: 1272 components: - type: Transform - pos: 39.5,4.5 + pos: -11.5,0.5 parent: 2 - - uid: 2338 +- proto: Crowbar + entities: + - uid: 18538 components: - type: Transform - pos: 39.5,3.5 - parent: 2 - - uid: 2339 + parent: 18537 + - type: Physics + canCollide: False +- proto: CrowbarGreen + entities: + - uid: 18539 components: - type: Transform - pos: 39.5,2.5 - parent: 2 - - uid: 2358 + parent: 18537 + - type: Physics + canCollide: False +- proto: CrowbarOrange + entities: + - uid: 18540 components: - type: Transform - pos: 31.5,10.5 - parent: 2 - - uid: 2359 + parent: 18537 + - type: Physics + canCollide: False +- proto: CrowbarRed + entities: + - uid: 2633 components: - type: Transform - pos: 31.5,9.5 + pos: -15.489988,-11.334633 parent: 2 - - uid: 2360 + - uid: 3632 components: - type: Transform - pos: 31.5,8.5 - parent: 2 - - uid: 2361 + parent: 3608 + - type: Physics + canCollide: False +- proto: CrowbarYellow + entities: + - uid: 18541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,10.5 - parent: 2 - - uid: 2362 + parent: 18537 + - type: Physics + canCollide: False +- proto: CryogenicSleepUnit + entities: + - uid: 16390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,10.5 - parent: 2 - - uid: 2363 + pos: 23.5,10.5 + parent: 16200 + - uid: 16391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,10.5 - parent: 2 - - uid: 2364 + pos: 23.5,8.5 + parent: 16200 + - uid: 16392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,10.5 - parent: 2 - - uid: 2365 + pos: 22.5,8.5 + parent: 16200 + - uid: 16393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,10.5 - parent: 2 - - uid: 2366 + pos: 21.5,8.5 + parent: 16200 + - uid: 16394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,10.5 - parent: 2 - - uid: 2367 + pos: 20.5,8.5 + parent: 16200 + - uid: 18546 components: + - type: MetaData + desc: Супер-охлаждаемый контейнер, обеспечивающий сохранность членов экипажа во время космических путешествий. Эта сильно повреждена после крушения, и, похоже, не работает. + name: сломанная капсула криогенного сна - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,10.5 - parent: 2 - - uid: 2368 + rot: 1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 17641 + missingComponents: + - Cryostorage + - DragInsertContainer + - ExitContainerOnMove + - uid: 18547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,10.5 - parent: 2 - - uid: 2426 + rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 17641 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 2150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,4.5 + pos: -22.5,38.5 parent: 2 - - uid: 2428 + - uid: 2154 components: - type: Transform - pos: 39.5,0.5 + pos: -21.5,38.5 parent: 2 - - uid: 2430 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 2155 components: - type: Transform - pos: 39.5,6.5 + pos: -19.5,38.5 parent: 2 - - uid: 2431 + - uid: 2181 components: - type: Transform - pos: 39.5,7.5 + pos: -20.5,38.5 parent: 2 - - uid: 2475 +- proto: CryoPod + entities: + - uid: 1281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,4.5 + pos: -27.5,18.5 parent: 2 - - uid: 2596 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 322 components: - type: Transform - pos: 25.5,1.5 + pos: -23.344515,18.73492 parent: 2 - - uid: 3933 +- proto: CurtainsBlack + entities: + - uid: 12847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,26.5 + pos: 22.5,45.5 parent: 2 - - uid: 6725 + - uid: 12872 components: - type: Transform - pos: 25.5,0.5 + pos: 22.5,47.5 parent: 2 - - uid: 8094 + - uid: 13370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,26.5 + pos: 22.5,46.5 parent: 2 - - uid: 10196 +- proto: CurtainsBlue + entities: + - uid: 51 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,26.5 + pos: 1.5,-10.5 parent: 2 - - uid: 14755 + - uid: 1283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-11.5 + pos: 2.5,-10.5 parent: 2 - - uid: 14756 + - uid: 1288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-11.5 + pos: 0.5,-10.5 parent: 2 - - uid: 14757 + - uid: 2718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-11.5 + pos: 18.5,-25.5 parent: 2 - - uid: 15098 + - uid: 2719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,26.5 + pos: 16.5,-25.5 parent: 2 - - uid: 17474 + - uid: 2720 components: - type: Transform - pos: 25.5,-0.5 + pos: 14.5,-25.5 parent: 2 -- proto: CorporateCircuitBoard - entities: - - uid: 15754 + - uid: 3705 components: - type: Transform - parent: 15749 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CounterMetalFrame + pos: -0.5,-10.5 + parent: 2 +- proto: CurtainsBlueOpen entities: - - uid: 6128 + - uid: 2768 components: - type: Transform - pos: -46.5,44.5 + pos: 15.5,-17.5 parent: 2 - - uid: 12968 + - uid: 2769 components: - type: Transform - pos: -45.5,46.5 + pos: 16.5,-17.5 parent: 2 -- proto: CrateArtifactContainer - entities: - - uid: 3708 + - uid: 2770 components: - type: Transform - pos: -24.5,-17.5 + pos: 17.5,-17.5 parent: 2 -- proto: CrateBaseSecure +- proto: CurtainsCyan entities: - - uid: 18300 + - uid: 13136 components: - - type: MetaData - name: Ящик сейсмических зарядов - type: Transform - pos: 38.5,1.5 - parent: 17590 - - type: Lock - locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18302 - - 18303 - - 18304 - - 18305 - - 18306 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateCommandSecure - entities: - - uid: 15749 + pos: -63.5,31.5 + parent: 2 + - uid: 15996 components: - - type: MetaData - desc: Большой контейнер для печатных плат. Этот содержит платы с адекватными законами. - name: ящик печатных плат - type: Transform - pos: -32.5,-37.5 + pos: -62.5,31.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15756 - - 15755 - - 15754 - - 15753 - - 15752 - - 15750 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 15765 +- proto: CurtainsGreen + entities: + - uid: 504 components: - - type: MetaData - desc: Большой контейнер для печатных плат. Этот содержит платы со смешными законами. - name: ящик печатных плат - type: Transform - pos: -38.5,-37.5 + rot: 1.5707963267948966 rad + pos: -24.5,31.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15771 - - 15772 - - 15766 - - 15769 - - 15770 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateElectrical - entities: - - uid: 7064 + - uid: 2189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,31.5 + parent: 2 + - uid: 2243 components: - - type: MetaData - desc: 1 моток высоковольтного кабеля. - name: ящик кабеля ВВ - type: Transform - pos: -30.5,0.5 + rot: 1.5707963267948966 rad + pos: -22.5,31.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7065 - - 7066 - - 7067 - - 7068 - - 7069 - - 7070 - - 7071 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringAMEControl +- proto: CurtainsRed entities: - - uid: 3651 + - uid: 447 components: - type: Transform - pos: -20.5,-19.5 + pos: -24.5,4.5 parent: 2 -- proto: CrateEngineeringAMEJar - entities: - - uid: 395 + - uid: 12483 components: - type: Transform - pos: -23.5,-43.5 + rot: -1.5707963267948966 rad + pos: -68.5,34.5 parent: 2 -- proto: CrateEngineeringAMEShielding +- proto: CurtainsRedOpen entities: - - uid: 487 + - uid: 4694 components: - type: Transform - pos: -26.5,-42.5 + rot: -1.5707963267948966 rad + pos: -24.5,23.5 parent: 2 -- proto: CrateEngineeringSecure - entities: - - uid: 12401 + - uid: 5238 components: - type: Transform - pos: 29.5,10.5 - parent: 16200 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 13382 - - 12482 - - 13380 - - 15874 - - 12477 - - 12475 - - 12472 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 12408 + rot: -1.5707963267948966 rad + pos: -23.5,23.5 + parent: 2 + - uid: 7055 components: - type: Transform - pos: 29.5,8.5 - parent: 16200 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15898 - - 17357 - - 17303 - - 17359 - - 17302 - - 17304 - - 17358 - - 17308 - - 17307 - - 15896 - - 15895 - - 17356 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringSolar - entities: - - uid: 7345 + rot: -1.5707963267948966 rad + pos: -25.5,23.5 + parent: 2 + - uid: 17153 components: - type: Transform - pos: 25.5,-41.5 + rot: 1.5707963267948966 rad + pos: -14.5,34.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFilledSpawner - entities: - - uid: 6538 + - uid: 17154 components: - type: Transform - pos: 21.5,36.5 + rot: 1.5707963267948966 rad + pos: -12.5,34.5 parent: 2 -- proto: CrateFoodBarSupply - entities: - - uid: 13324 + - uid: 17155 components: - type: Transform - pos: -46.5,46.5 + rot: 1.5707963267948966 rad + pos: -11.5,34.5 parent: 2 -- proto: CrateFreezer - entities: - - uid: 19279 + - uid: 17156 components: - type: Transform - pos: 21.5,-1.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19361 - - 19359 - - 19345 - - 19342 - - 19286 - - 19284 - - 19282 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19713 + rot: 1.5707963267948966 rad + pos: -10.5,34.5 + parent: 2 + - uid: 17157 components: - type: Transform - pos: 20.5,-1.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19766 - - 19755 - - 19754 - - 19717 - - 19767 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateFunInstrumentsVariety + rot: 1.5707963267948966 rad + pos: -13.5,34.5 + parent: 2 + - uid: 17158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,34.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,34.5 + parent: 2 +- proto: CutterMachine entities: - - uid: 1408 + - uid: 7653 components: - type: Transform - pos: 0.5,24.5 + pos: -26.5,-39.5 parent: 2 -- proto: CrateFunLizardPlushieBulk +- proto: CyborgEndoskeleton entities: - - uid: 18972 + - uid: 744 components: - type: Transform - pos: 34.5,-12.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18999 - - 19001 - - 19002 - - 19003 - - 19062 - - 19137 - - 19154 - - 19155 - - 19188 - - 19189 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19756 + pos: -22.345272,-8.254836 + parent: 2 +- proto: DefaultStationBeaconAI + entities: + - uid: 15617 components: - type: Transform - pos: 28.5,-3.5 - parent: 17590 - - uid: 19792 + pos: -35.5,-38.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 11051 components: - type: Transform - pos: 30.5,-3.5 - parent: 17590 - - uid: 19793 + pos: -25.5,-22.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 14355 components: - type: Transform - pos: 27.5,-3.5 - parent: 17590 - - uid: 19794 + pos: -13.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 14289 components: - type: Transform - pos: 26.5,-3.5 - parent: 17590 - - uid: 19795 + pos: 33.5,-29.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 7854 components: - type: Transform - pos: 25.5,-3.5 - parent: 17590 - - uid: 19796 + pos: -55.5,17.5 + parent: 2 + - uid: 7856 components: - type: Transform - pos: 29.5,-3.5 - parent: 17590 - - uid: 19798 + pos: -37.5,17.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 14325 components: - type: Transform - pos: 24.5,-3.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19800 + pos: -23.5,-13.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 17087 components: - type: Transform - pos: 31.5,-3.5 - parent: 17590 -- proto: CrateFunPlushie + pos: -9.5,-26.5 + parent: 2 +- proto: DefaultStationBeaconBar entities: - - uid: 4034 + - uid: 14342 components: - - type: MetaData - desc: Ящик, полный единственными друзьями мима. - type: Transform - pos: 6.5,21.5 + pos: 13.5,18.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFunToyBox +- proto: DefaultStationBeaconBotany entities: - - uid: 4114 + - uid: 14363 components: - type: Transform - pos: 1.5,17.5 + pos: 10.5,25.5 parent: 2 -- proto: CrateGenericSteel +- proto: DefaultStationBeaconBridge entities: - - uid: 1339 + - uid: 14415 components: - - type: MetaData - desc: Используется для безопасного хранения и перемещения артефактов. Ну, технически, в него помещаются артефакты... - name: контейнер артефактов - type: Transform - pos: -22.5,-17.5 + pos: 5.5,-2.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 2530 +- proto: DefaultStationBeaconBrig + entities: + - uid: 14344 components: - type: Transform - pos: 33.5,11.5 + pos: 29.5,-8.5 parent: 2 - - uid: 2531 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 14371 components: - type: Transform - pos: 33.5,10.5 + pos: -0.5,-8.5 parent: 2 - - uid: 2533 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 14473 components: - type: Transform - pos: 34.5,10.5 + pos: 41.5,6.5 parent: 2 - - uid: 2827 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 14472 components: - type: Transform - pos: 36.5,4.5 + pos: 25.5,4.5 parent: 2 - - uid: 3134 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 5989 components: - - type: MetaData - desc: 90 единиц стекла, упакованных с заботой. - name: ящик стекла - type: Transform - pos: -15.5,67.5 + pos: -13.5,-19.5 parent: 2 - - uid: 5739 +- proto: DefaultStationBeaconChapel + entities: + - uid: 14514 components: - type: Transform - pos: 37.5,4.5 + pos: -11.5,38.5 parent: 2 - - uid: 6090 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 14505 components: - type: Transform - pos: 35.5,15.5 + pos: -14.5,19.5 parent: 2 - - uid: 6616 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 14398 components: - type: Transform - pos: 34.5,15.5 + pos: -25.5,17.5 parent: 2 - - uid: 8112 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 14399 components: - - type: MetaData - desc: На случай, если мешки закончатся. - name: ящик для трупов - type: Transform - pos: -19.5,24.5 + pos: -20.5,36.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8113 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 14390 components: - - type: MetaData - desc: На случай, если мешки закончатся. - name: ящик для трупов - type: Transform - pos: -20.5,24.5 + pos: 26.5,-34.5 parent: 2 - - uid: 15515 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 14424 components: - type: Transform - pos: 35.5,16.5 + pos: 24.5,33.5 parent: 2 - - uid: 17414 +- proto: DefaultStationBeaconDorms + entities: + - uid: 14367 components: - - type: MetaData - desc: Стальной ящик - name: ящик разноцветных плащей - type: Transform - pos: -13.5,5.5 + pos: -28.5,27.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17422 - - 17421 - - 17420 - - 17419 - - 17418 - - 17417 - - 17416 - - 17415 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18312 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 14366 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 7858 components: - type: Transform - pos: 23.5,-16.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18314 - - 18315 - - 18313 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateHydroponics + pos: -73.5,17.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage entities: - - uid: 3672 + - uid: 14495 components: - type: Transform - pos: 17.5,26.5 + pos: -51.5,33.5 parent: 2 -- proto: CrateMaterialGlass +- proto: DefaultStationBeaconGravGen entities: - - uid: 3329 + - uid: 14354 components: - type: Transform - pos: -37.5,67.5 + pos: -35.5,-27.5 parent: 2 -- proto: CrateMaterialTextiles +- proto: DefaultStationBeaconHOPOffice entities: - - uid: 2656 + - uid: 14370 components: - type: Transform - pos: 10.5,-23.5 + pos: 8.5,-19.5 parent: 2 -- proto: CrateMedical +- proto: DefaultStationBeaconHOSRoom entities: - - uid: 1138 + - uid: 14345 components: - type: Transform - pos: -16.5,22.5 + pos: 38.5,-24.5 parent: 2 - - uid: 4513 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 14393 components: - type: Transform - pos: -14.5,26.5 + pos: 1.5,31.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4519 - - 4517 - - 4514 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateMedicalSecure +- proto: DefaultStationBeaconKitchen entities: - - uid: 4501 + - uid: 14401 components: - type: Transform - pos: -14.5,22.5 + pos: 19.5,25.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4502 - - 4503 - - 4504 - - 4505 - - 4506 - - 4507 - - 4508 - - 4509 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateMedicalSurgery +- proto: DefaultStationBeaconLawOffice entities: - - uid: 17380 + - uid: 14369 components: - type: Transform - pos: 14.5,-12.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateNPCCow + pos: 16.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconLibrary entities: - - uid: 4363 + - uid: 14343 components: - type: Transform - pos: 23.5,25.5 + pos: 5.5,38.5 parent: 2 -- proto: CrateNPCHamlet +- proto: DefaultStationBeaconMedbay entities: - - uid: 2580 + - uid: 14405 components: - type: Transform - pos: 10.5,-8.5 + pos: -7.5,14.5 parent: 2 -- proto: CratePirate +- proto: DefaultStationBeaconMedical entities: - - uid: 4929 + - uid: 14406 components: - - type: MetaData - desc: Сундук, наполненный вещами немыслимой ценности. Похоже, что в этом - половина бюджета станции. - name: сундук с сокровищами - type: Transform - pos: -4.5,48.5 + pos: -14.5,12.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 955 - - 5027 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6283 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 14409 components: - - type: MetaData - desc: Сундук, наполненный вещами немыслимой ценности. Похоже, что в этом - половина бюджета станции. - name: сундук с сокровищами - type: Transform - pos: -4.5,49.5 + pos: -17.5,25.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6284 - - 1058 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6287 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 14451 components: - - type: MetaData - desc: Сундук, наполненный вещами немыслимой ценности. Похоже, что в этом - половина бюджета станции. - name: сундук с сокровищами - type: Transform - pos: -2.5,49.5 + pos: 51.5,-13.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1089 - - 6376 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 7585 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 14515 components: - - type: MetaData - desc: Сундук, наполненный вещами немыслимой ценности. Похоже, что в этом - половина бюджета станции. - name: сундук с сокровищами - type: Transform - pos: -2.5,48.5 + pos: -25.5,-32.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1823 - - 7589 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 7836 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 14384 components: - type: Transform - pos: -23.5,0.5 + pos: 37.5,-5.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7889 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CratePlastic +- proto: DefaultStationBeaconRDRoom entities: - - uid: 16949 + - uid: 14386 components: - - type: MetaData - name: ящик снаряжения для уборки ОБР - type: Transform - pos: 7.5,15.5 - parent: 16675 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17366 - - 17365 - - 17364 - - 17367 - - 17368 - - 17369 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CratePrivateSecure + pos: -20.5,-2.5 + parent: 2 +- proto: DefaultStationBeaconRobotics entities: - - uid: 1387 + - uid: 14464 components: - - type: MetaData - desc: Ящик с сокровищами, не поддающимися воображению! - name: грандиозная лотерея $$$ - type: Transform - pos: -25.5,4.5 + pos: -22.5,-8.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3363 - - 1401 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateRadiation +- proto: DefaultStationBeaconSalvage entities: - - uid: 18316 + - uid: 14498 components: - type: Transform - pos: 38.5,0.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateServiceJanitorialSupplies + pos: 30.5,13.5 + parent: 2 +- proto: DefaultStationBeaconScience entities: - - uid: 3261 + - uid: 8182 components: - type: Transform - pos: 5.5,31.5 + pos: -18.5,-6.5 parent: 2 - - uid: 3262 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 14364 components: - type: Transform - pos: 4.5,31.5 + pos: 28.5,-24.5 parent: 2 -- proto: CrateServicePersonnel +- proto: DefaultStationBeaconSecurityCheckpoint entities: - - uid: 2657 + - uid: 14368 components: - type: Transform - pos: 9.5,-23.5 + pos: -32.5,30.5 parent: 2 -- proto: CrateServiceSodaDispenser +- proto: DefaultStationBeaconServerRoom entities: - - uid: 18317 + - uid: 14466 components: - type: Transform - pos: 25.5,-19.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateServiceTheatre + pos: -12.5,2.5 + parent: 2 +- proto: DefaultStationBeaconService entities: - - uid: 209 + - uid: 14468 components: - type: Transform - pos: 2.5,17.5 + pos: 14.5,13.5 parent: 2 -- proto: CrateSyndicate +- proto: DefaultStationBeaconSingularity entities: - - uid: 198 + - uid: 14383 components: - - type: MetaData - desc: Содержит случайное снаряжение Синдиката, общей стоимостью в 50 телекристаллов. Оно может быть как бесполезным хламом, так и реально крутым. - name: ящик припасов синдиката - type: Transform - pos: -4.5,0.5 + pos: -41.5,-21.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 199 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Pullable - prevFixedRotation: True - - uid: 16793 +- proto: DefaultStationBeaconSolars + entities: + - uid: 5541 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 14474 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 2 +- proto: DefaultStationBeaconSupply + entities: + - uid: 14470 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 14489 components: - - type: MetaData - name: ящик фугасных снарядов - type: Transform - pos: 9.5,24.5 - parent: 16675 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17014 - - 16948 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateTrashCart + pos: -0.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconTEG entities: - - uid: 20066 + - uid: 14477 components: - type: Transform - pos: 31.5,3.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 20076 - - 20075 - - 20074 - - 20073 - - 20072 - - 20071 - - 20070 - - 20069 - - 20068 - - 20067 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateTrashCartFilled + pos: 1.5,-28.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms entities: - - uid: 3939 + - uid: 14481 components: - type: Transform - pos: 17.5,29.5 + pos: -35.5,-17.5 parent: 2 - - uid: 4835 +- proto: DefaultStationBeaconTheater + entities: + - uid: 14478 components: - type: Transform - pos: 25.5,36.5 + pos: 5.5,16.5 parent: 2 - - uid: 6490 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 14510 components: - type: Transform - pos: 21.5,35.5 + pos: -42.5,33.5 parent: 2 - - uid: 6491 +- proto: DefaultStationBeaconVault + entities: + - uid: 14506 components: - type: Transform - pos: 23.5,36.5 + pos: -7.5,-21.5 parent: 2 - - uid: 13090 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 14449 components: - type: Transform - pos: 9.5,32.5 + pos: 26.5,-29.5 parent: 2 - - uid: 17045 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 4464 components: - type: Transform - pos: 19.5,35.5 + rot: 1.5707963267948966 rad + pos: -18.5,14.5 parent: 2 - - uid: 17046 + - uid: 4783 components: - type: Transform - pos: 19.5,36.5 + rot: 1.5707963267948966 rad + pos: -28.5,10.5 parent: 2 - - uid: 17047 + - uid: 16395 components: - type: Transform - pos: 19.5,38.5 + rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 16200 +- proto: DeployableBarrier + entities: + - uid: 3386 + components: + - type: Transform + pos: 31.5,-36.5 parent: 2 - - uid: 17088 + - uid: 3387 components: - type: Transform - pos: 17.5,33.5 + pos: 31.5,-37.5 parent: 2 - - uid: 17089 + - uid: 3388 components: - type: Transform - pos: 17.5,32.5 + pos: 31.5,-38.5 parent: 2 - - uid: 17091 + - uid: 3389 components: - type: Transform - pos: 21.5,29.5 + pos: 31.5,-39.5 parent: 2 - - uid: 17092 + - uid: 3390 components: - type: Transform - pos: 25.5,27.5 + pos: 35.5,-36.5 parent: 2 - - uid: 17093 + - uid: 3391 components: - type: Transform - pos: 24.5,16.5 + pos: 35.5,-37.5 parent: 2 - - uid: 17094 + - uid: 3392 components: - type: Transform - pos: 24.5,11.5 + pos: 35.5,-38.5 parent: 2 - - uid: 17095 + - uid: 3393 components: - type: Transform - pos: 2.5,29.5 + pos: 35.5,-39.5 parent: 2 - - uid: 17096 +- proto: DeskBell + entities: + - uid: 3275 components: - type: Transform - pos: -3.5,20.5 + pos: 27.656853,-27.33739 parent: 2 - - uid: 17097 +- proto: DiceBag + entities: + - uid: 5131 components: - type: Transform - pos: -11.5,31.5 + pos: 5.603406,36.601112 parent: 2 - - uid: 17098 + - uid: 5132 components: - type: Transform - pos: -17.5,36.5 + pos: 5.634656,37.569862 parent: 2 - - uid: 17101 +- proto: DisposalBend + entities: + - uid: 962 components: - type: Transform - pos: -18.5,47.5 + rot: 3.141592653589793 rad + pos: -37.5,40.5 parent: 2 - - uid: 17102 + - uid: 2454 components: - type: Transform - pos: -12.5,50.5 + pos: -37.5,43.5 parent: 2 - - uid: 17106 + - uid: 2582 components: - type: Transform - pos: 3.5,46.5 + pos: 12.5,-1.5 parent: 2 - - uid: 17107 + - uid: 3918 components: - type: Transform - pos: -52.5,41.5 + rot: 1.5707963267948966 rad + pos: 12.5,26.5 parent: 2 - - uid: 17108 + - uid: 5196 components: - type: Transform - pos: -51.5,41.5 + rot: -1.5707963267948966 rad + pos: 30.5,34.5 parent: 2 - - uid: 17115 + - uid: 5208 components: - type: Transform - pos: -14.5,43.5 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 parent: 2 - - uid: 17116 + - uid: 5224 components: - type: Transform - pos: -15.5,43.5 + rot: 1.5707963267948966 rad + pos: 29.5,36.5 parent: 2 - - uid: 17117 + - uid: 6486 components: - type: Transform - pos: -16.5,43.5 + rot: 1.5707963267948966 rad + pos: 22.5,34.5 parent: 2 - - uid: 17118 + - uid: 6487 components: - type: Transform - pos: -6.5,21.5 + rot: -1.5707963267948966 rad + pos: 22.5,31.5 parent: 2 - - uid: 17119 + - uid: 6507 components: - type: Transform - pos: -8.5,28.5 + rot: 3.141592653589793 rad + pos: 16.5,31.5 parent: 2 - - uid: 17178 + - uid: 6508 components: - type: Transform - pos: 5.5,46.5 + pos: 16.5,32.5 parent: 2 - - uid: 17514 + - uid: 6531 components: - type: Transform - pos: 27.5,34.5 + rot: -1.5707963267948966 rad + pos: 4.5,31.5 parent: 2 -- proto: CrateVendingMachineRestockChemVendFilled - entities: - - uid: 6698 + - uid: 6979 components: - type: Transform - pos: -10.5,26.5 + rot: 3.141592653589793 rad + pos: -33.5,58.5 parent: 2 -- proto: CrateWeaponSecure - entities: - - uid: 16222 + - uid: 6980 components: - type: Transform - pos: 27.5,19.5 - parent: 16200 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 16578 - - 16577 - - 16576 - - 16412 - - 16575 - - 16574 - - 16410 - - 16223 - - 16401 - - 16420 - - 16421 - - 16422 - - 16423 - - 16424 - - 16425 - - 16426 - - 16427 - - 16455 - - 16497 - - 16499 - - 16411 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrayonBlack - entities: - - uid: 2287 + pos: -30.5,58.5 + parent: 2 + - uid: 9092 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.231903,-19.359385 + pos: -73.5,17.5 parent: 2 - - uid: 2388 + - uid: 9744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.810028,-24.517061 + pos: -38.5,42.5 parent: 2 -- proto: Crematorium - entities: - - uid: 4287 + - uid: 12988 components: - type: Transform - pos: -14.5,48.5 + rot: 3.141592653589793 rad + pos: -43.5,42.5 parent: 2 -- proto: CrewMonitoringServer - entities: - - uid: 1272 + - uid: 14763 components: - type: Transform - pos: -11.5,0.5 + rot: 3.141592653589793 rad + pos: -3.5,31.5 parent: 2 - - uid: 18318 + - uid: 14788 components: - type: Transform - pos: 42.5,-0.5 - parent: 17590 -- proto: CrowbarRed - entities: - - uid: 2633 + rot: 3.141592653589793 rad + pos: -19.5,32.5 + parent: 2 + - uid: 14802 components: - type: Transform - pos: -15.489988,-11.334633 + pos: -11.5,40.5 parent: 2 - - uid: 3632 + - uid: 14812 components: - type: Transform - parent: 3608 - - type: Physics - canCollide: False -- proto: CryogenicSleepUnit - entities: - - uid: 16390 + rot: -1.5707963267948966 rad + pos: -2.5,32.5 + parent: 2 + - uid: 14838 components: - type: Transform - pos: 23.5,10.5 - parent: 16200 - - uid: 16391 + rot: 1.5707963267948966 rad + pos: -37.5,33.5 + parent: 2 + - uid: 14910 components: - type: Transform - pos: 23.5,8.5 - parent: 16200 - - uid: 16392 + rot: -1.5707963267948966 rad + pos: -37.5,14.5 + parent: 2 + - uid: 14914 components: - type: Transform - pos: 22.5,8.5 - parent: 16200 - - uid: 16393 + rot: 1.5707963267948966 rad + pos: -73.5,29.5 + parent: 2 + - uid: 14966 components: - type: Transform - pos: 21.5,8.5 - parent: 16200 - - uid: 16394 + rot: 1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 + - uid: 15115 components: - type: Transform - pos: 20.5,8.5 - parent: 16200 -- proto: CryogenicSleepUnitSpawner - entities: - - uid: 2150 + pos: 17.5,26.5 + parent: 2 + - uid: 15128 components: - type: Transform - pos: -22.5,38.5 + pos: 20.5,8.5 parent: 2 - - uid: 2154 + - uid: 15152 components: - type: Transform - pos: -21.5,38.5 + rot: 1.5707963267948966 rad + pos: 30.5,11.5 parent: 2 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 2155 + - uid: 15153 components: - type: Transform - pos: -19.5,38.5 + rot: -1.5707963267948966 rad + pos: 32.5,11.5 parent: 2 - - uid: 2181 + - uid: 15154 components: - type: Transform - pos: -20.5,38.5 + rot: 1.5707963267948966 rad + pos: 32.5,12.5 parent: 2 -- proto: CryoPod - entities: - - uid: 1281 + - uid: 15155 components: - type: Transform - pos: -27.5,18.5 + rot: -1.5707963267948966 rad + pos: 33.5,12.5 parent: 2 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 322 + - uid: 15157 components: - type: Transform - pos: -23.344515,18.73492 + rot: -1.5707963267948966 rad + pos: 30.5,4.5 parent: 2 -- proto: CurtainsBlack - entities: - - uid: 12847 + - uid: 15159 components: - type: Transform - pos: 22.5,45.5 + pos: 26.5,-1.5 parent: 2 - - uid: 12872 + - uid: 15160 components: - type: Transform - pos: 22.5,47.5 + rot: 3.141592653589793 rad + pos: 25.5,-1.5 parent: 2 - - uid: 13370 + - uid: 15185 components: - type: Transform - pos: 22.5,46.5 + rot: 3.141592653589793 rad + pos: 27.5,-8.5 parent: 2 -- proto: CurtainsBlue - entities: - - uid: 51 + - uid: 15186 components: - type: Transform - pos: 1.5,-10.5 + pos: 28.5,-8.5 parent: 2 - - uid: 1283 + - uid: 15203 components: - type: Transform - pos: 2.5,-10.5 + rot: -1.5707963267948966 rad + pos: 28.5,-25.5 parent: 2 - - uid: 1288 + - uid: 15210 components: - type: Transform - pos: 0.5,-10.5 + rot: 3.141592653589793 rad + pos: 20.5,-13.5 parent: 2 - - uid: 2718 + - uid: 15229 components: - type: Transform - pos: 18.5,-25.5 + pos: 24.5,-15.5 parent: 2 - - uid: 2719 + - uid: 15233 components: - type: Transform - pos: 16.5,-25.5 + rot: -1.5707963267948966 rad + pos: 23.5,-34.5 parent: 2 - - uid: 2720 + - uid: 15241 components: - type: Transform - pos: 14.5,-25.5 + rot: 1.5707963267948966 rad + pos: 23.5,-26.5 parent: 2 - - uid: 3705 + - uid: 15283 components: - type: Transform - pos: -0.5,-10.5 + rot: 3.141592653589793 rad + pos: -24.5,-34.5 parent: 2 -- proto: CurtainsBlueOpen - entities: - - uid: 2768 + - uid: 15284 components: - type: Transform - pos: 15.5,-17.5 + rot: 1.5707963267948966 rad + pos: -24.5,-23.5 parent: 2 - - uid: 2769 + - uid: 15285 components: - type: Transform - pos: 16.5,-17.5 + rot: -1.5707963267948966 rad + pos: -16.5,-23.5 parent: 2 - - uid: 2770 + - uid: 15291 components: - type: Transform - pos: 17.5,-17.5 + pos: -16.5,-14.5 parent: 2 -- proto: CurtainSpawner - entities: - - uid: 7033 + - uid: 15292 components: - type: Transform - pos: -29.5,6.5 + rot: 3.141592653589793 rad + pos: -18.5,-14.5 parent: 2 - - uid: 7050 + - uid: 15296 components: - type: Transform - pos: -29.5,5.5 + pos: -13.5,-10.5 parent: 2 -- proto: CutterMachine - entities: - - uid: 7653 + - uid: 15308 components: - type: Transform - pos: -26.5,-39.5 + rot: 1.5707963267948966 rad + pos: -18.5,-4.5 parent: 2 -- proto: CyborgEndoskeleton - entities: - - uid: 744 + - uid: 15315 components: - type: Transform - pos: -22.345272,-8.254836 + rot: -1.5707963267948966 rad + pos: -12.5,12.5 parent: 2 -- proto: DefaultStationBeaconAI - entities: - - uid: 15617 + - uid: 15316 components: - type: Transform - pos: -35.5,-38.5 + rot: 3.141592653589793 rad + pos: -17.5,12.5 parent: 2 -- proto: DefaultStationBeaconAME - entities: - - uid: 11051 + - uid: 15317 components: - type: Transform - pos: -25.5,-22.5 + pos: -17.5,13.5 parent: 2 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 14355 + - uid: 15341 components: - type: Transform - pos: -13.5,-4.5 + rot: 1.5707963267948966 rad + pos: -32.5,13.5 parent: 2 -- proto: DefaultStationBeaconArmory - entities: - - uid: 14289 + - uid: 15355 components: - type: Transform - pos: 33.5,-29.5 + rot: 3.141592653589793 rad + pos: -9.5,25.5 parent: 2 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 7854 + - uid: 15356 components: - type: Transform - pos: -55.5,17.5 + pos: -8.5,25.5 parent: 2 - - uid: 7856 + - uid: 15370 components: - type: Transform - pos: -37.5,17.5 + pos: 7.5,38.5 parent: 2 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 14325 + - uid: 15371 components: - type: Transform - pos: -23.5,-13.5 + rot: 1.5707963267948966 rad + pos: -2.5,38.5 parent: 2 -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 17087 + - uid: 15384 components: - type: Transform - pos: -9.5,-26.5 + rot: -1.5707963267948966 rad + pos: 12.5,36.5 parent: 2 -- proto: DefaultStationBeaconBar - entities: - - uid: 14342 + - uid: 15385 components: - type: Transform - pos: 13.5,18.5 + pos: 9.5,37.5 parent: 2 -- proto: DefaultStationBeaconBotany - entities: - - uid: 14363 + - uid: 15386 components: - type: Transform - pos: 10.5,25.5 + rot: 3.141592653589793 rad + pos: 9.5,36.5 parent: 2 -- proto: DefaultStationBeaconBridge - entities: - - uid: 14415 + - uid: 15391 components: - type: Transform - pos: 5.5,-2.5 + rot: 1.5707963267948966 rad + pos: 12.5,38.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 14344 + - uid: 15392 components: - type: Transform - pos: 29.5,-8.5 + rot: -1.5707963267948966 rad + pos: 13.5,38.5 parent: 2 -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 14371 + - uid: 15401 components: - type: Transform - pos: -0.5,-8.5 + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 parent: 2 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 14473 + - uid: 15402 components: - type: Transform - pos: 41.5,6.5 + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 parent: 2 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 14472 + - uid: 15408 components: - type: Transform - pos: 25.5,4.5 + rot: 3.141592653589793 rad + pos: -0.5,-9.5 parent: 2 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 5989 + - uid: 15409 components: - type: Transform - pos: -13.5,-19.5 + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 parent: 2 -- proto: DefaultStationBeaconChapel - entities: - - uid: 14514 + - uid: 15410 components: - type: Transform - pos: -11.5,38.5 + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 parent: 2 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 14505 + - uid: 15430 components: - type: Transform - pos: -14.5,19.5 + rot: -1.5707963267948966 rad + pos: -24.5,44.5 parent: 2 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 14376 + - uid: 15431 components: - type: Transform - pos: -23.5,10.5 + rot: 1.5707963267948966 rad + pos: -28.5,44.5 parent: 2 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 14398 + - uid: 15433 components: - type: Transform - pos: -25.5,17.5 + rot: 1.5707963267948966 rad + pos: -22.5,37.5 parent: 2 -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 14399 + - uid: 15434 components: - type: Transform - pos: -20.5,36.5 + pos: -19.5,37.5 parent: 2 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 14390 + - uid: 15447 components: - type: Transform - pos: 26.5,-34.5 + rot: 1.5707963267948966 rad + pos: 47.5,-16.5 parent: 2 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 14424 + - uid: 15448 components: - type: Transform - pos: 24.5,33.5 + rot: -1.5707963267948966 rad + pos: 51.5,-16.5 parent: 2 -- proto: DefaultStationBeaconDorms - entities: - - uid: 14367 + - uid: 15462 components: - type: Transform - pos: -28.5,27.5 + rot: 1.5707963267948966 rad + pos: 51.5,-5.5 parent: 2 -- proto: DefaultStationBeaconEngineering - entities: - - uid: 14366 + - uid: 18796 components: - type: Transform - pos: -17.5,-21.5 - parent: 2 -- proto: DefaultStationBeaconEvac - entities: - - uid: 7858 + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 17641 + - uid: 19954 components: - type: Transform - pos: -73.5,17.5 - parent: 2 -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 14495 + rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 17641 + - uid: 19955 components: - type: Transform - pos: -51.5,33.5 - parent: 2 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 14354 + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 17641 + - uid: 19967 components: - type: Transform - pos: -35.5,-27.5 - parent: 2 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 14370 + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 17641 + - uid: 19968 components: - type: Transform - pos: 8.5,-19.5 - parent: 2 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 14345 + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 17641 + - uid: 19996 components: - type: Transform - pos: 38.5,-24.5 - parent: 2 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 14393 + rot: -1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 17641 + - uid: 19997 components: - type: Transform - pos: 1.5,31.5 - parent: 2 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 14401 + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 17641 + - uid: 19998 components: - type: Transform - pos: 19.5,25.5 - parent: 2 -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 14369 + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 17641 + - uid: 20032 components: - type: Transform - pos: 16.5,-21.5 - parent: 2 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 14343 + rot: 3.141592653589793 rad + pos: 26.5,-3.5 + parent: 17641 + - uid: 20166 components: - type: Transform - pos: 5.5,38.5 + rot: 1.5707963267948966 rad + pos: -28.5,6.5 parent: 2 -- proto: DefaultStationBeaconMedbay - entities: - - uid: 14405 + - uid: 20171 components: - type: Transform - pos: -7.5,14.5 + pos: -23.5,6.5 parent: 2 -- proto: DefaultStationBeaconMedical +- proto: DisposalJunction entities: - - uid: 14406 + - uid: 807 components: - type: Transform - pos: -14.5,12.5 + rot: 3.141592653589793 rad + pos: 25.5,3.5 parent: 2 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 14409 + - uid: 869 components: - type: Transform - pos: -17.5,25.5 + pos: -37.5,41.5 parent: 2 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 14451 + - uid: 3134 components: - type: Transform - pos: 51.5,-13.5 + rot: 1.5707963267948966 rad + pos: -25.5,13.5 parent: 2 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 14515 + - uid: 3365 components: - type: Transform - pos: -25.5,-32.5 + pos: -28.5,40.5 parent: 2 -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 14384 + - uid: 5190 components: - type: Transform - pos: 37.5,-5.5 + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 parent: 2 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 14386 + - uid: 5202 components: - type: Transform - pos: -20.5,-2.5 + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 parent: 2 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 14464 + - uid: 5672 components: - type: Transform - pos: -22.5,-8.5 + rot: -1.5707963267948966 rad + pos: 12.5,-15.5 parent: 2 -- proto: DefaultStationBeaconSalvage - entities: - - uid: 14498 + - uid: 6520 components: - type: Transform - pos: 30.5,13.5 + rot: 1.5707963267948966 rad + pos: 4.5,32.5 parent: 2 -- proto: DefaultStationBeaconScience - entities: - - uid: 8182 + - uid: 12878 components: - type: Transform - pos: -18.5,-6.5 + rot: -1.5707963267948966 rad + pos: 14.5,8.5 parent: 2 -- proto: DefaultStationBeaconSecurity - entities: - - uid: 14364 + - uid: 14762 components: - type: Transform - pos: 28.5,-24.5 + rot: 1.5707963267948966 rad + pos: -2.5,31.5 parent: 2 -- proto: DefaultStationBeaconSecurityCheckpoint - entities: - - uid: 14368 + - uid: 14780 components: - type: Transform - pos: -32.5,30.5 + rot: 1.5707963267948966 rad + pos: -20.5,33.5 parent: 2 -- proto: DefaultStationBeaconServerRoom - entities: - - uid: 14466 + - uid: 14789 components: - type: Transform - pos: -12.5,2.5 + pos: -19.5,33.5 parent: 2 -- proto: DefaultStationBeaconService - entities: - - uid: 14468 + - uid: 14842 components: - type: Transform - pos: 14.5,13.5 + rot: 1.5707963267948966 rad + pos: -35.5,33.5 parent: 2 -- proto: DefaultStationBeaconSingularity - entities: - - uid: 14383 + - uid: 14915 components: - type: Transform - pos: -41.5,-21.5 + rot: 1.5707963267948966 rad + pos: -67.5,29.5 parent: 2 -- proto: DefaultStationBeaconSolars - entities: - - uid: 5541 + - uid: 14918 components: - type: Transform - pos: -30.5,1.5 + rot: 1.5707963267948966 rad + pos: -49.5,29.5 parent: 2 - - uid: 14474 + - uid: 14947 components: - type: Transform - pos: 24.5,-42.5 + rot: 1.5707963267948966 rad + pos: -7.5,13.5 parent: 2 -- proto: DefaultStationBeaconSupply - entities: - - uid: 14470 + - uid: 15040 components: - type: Transform - pos: 34.5,0.5 + rot: -1.5707963267948966 rad + pos: 17.5,-15.5 parent: 2 -- proto: DefaultStationBeaconTechVault - entities: - - uid: 14489 + - uid: 15088 components: - type: Transform - pos: -0.5,-20.5 + pos: 14.5,21.5 parent: 2 -- proto: DefaultStationBeaconTEG - entities: - - uid: 14477 + - uid: 15110 components: - type: Transform - pos: 1.5,-28.5 + pos: 14.5,13.5 parent: 2 -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 14481 + - uid: 15136 components: - type: Transform - pos: -35.5,-17.5 + rot: -1.5707963267948966 rad + pos: 24.5,4.5 parent: 2 -- proto: DefaultStationBeaconTheater - entities: - - uid: 14478 + - uid: 15137 components: - type: Transform - pos: 5.5,16.5 + rot: 3.141592653589793 rad + pos: 20.5,4.5 parent: 2 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 14510 + - uid: 15148 components: - type: Transform - pos: -42.5,33.5 + pos: 30.5,8.5 parent: 2 -- proto: DefaultStationBeaconVault - entities: - - uid: 14506 + - uid: 15177 components: - type: Transform - pos: -7.5,-21.5 + rot: 3.141592653589793 rad + pos: 20.5,-7.5 parent: 2 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 14449 + - uid: 15255 components: - type: Transform - pos: 26.5,-29.5 + rot: 3.141592653589793 rad + pos: -16.5,-21.5 parent: 2 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 4464 + - uid: 15271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,14.5 + rot: 3.141592653589793 rad + pos: -24.5,-30.5 parent: 2 - - uid: 4783 + - uid: 15314 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,10.5 + pos: -12.5,13.5 parent: 2 - - uid: 16395 + - uid: 15381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,13.5 - parent: 16200 -- proto: DefibrillatorCabinetOpen + rot: 3.141592653589793 rad + pos: 7.5,37.5 + parent: 2 +- proto: DisposalJunctionFlipped entities: - - uid: 18329 + - uid: 1508 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-14.5 - parent: 17590 -- proto: DeployableBarrier - entities: - - uid: 3386 - components: - - type: Transform - pos: 31.5,-36.5 + pos: -10.5,-15.5 parent: 2 - - uid: 3387 + - uid: 14791 components: - type: Transform - pos: 31.5,-37.5 + rot: 1.5707963267948966 rad + pos: -11.5,32.5 parent: 2 - - uid: 3388 + - uid: 14805 components: - type: Transform - pos: 31.5,-38.5 + pos: -2.5,37.5 parent: 2 - - uid: 3389 + - uid: 14839 components: - type: Transform - pos: 31.5,-39.5 + rot: 3.141592653589793 rad + pos: -37.5,29.5 parent: 2 - - uid: 3390 + - uid: 14920 components: - type: Transform - pos: 35.5,-36.5 + rot: 1.5707963267948966 rad + pos: -28.5,33.5 parent: 2 - - uid: 3391 + - uid: 14934 components: - type: Transform - pos: 35.5,-37.5 + pos: -28.5,42.5 parent: 2 - - uid: 3392 + - uid: 14949 components: - type: Transform - pos: 35.5,-38.5 + rot: 3.141592653589793 rad + pos: -2.5,13.5 parent: 2 - - uid: 3393 + - uid: 14981 components: - type: Transform - pos: 35.5,-39.5 + rot: 3.141592653589793 rad + pos: -8.5,0.5 parent: 2 -- proto: DeskBell - entities: - - uid: 3275 + - uid: 15008 components: - type: Transform - pos: 27.656853,-27.33739 + rot: 1.5707963267948966 rad + pos: -8.5,-15.5 parent: 2 -- proto: DiagnosisReportPaper - entities: - - uid: 18320 - components: - - type: Transform - pos: 36.33646,-18.43217 - parent: 17590 - - uid: 18321 + - uid: 15028 components: - type: Transform - pos: 36.46146,-18.43217 - parent: 17590 - - uid: 18322 + rot: -1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 2 + - uid: 15129 components: - type: Transform - pos: 36.570835,-18.43217 - parent: 17590 -- proto: DiceBag - entities: - - uid: 5131 + rot: 3.141592653589793 rad + pos: 20.5,6.5 + parent: 2 + - uid: 15138 components: - type: Transform - pos: 5.603406,36.601112 + rot: -1.5707963267948966 rad + pos: 25.5,4.5 parent: 2 - - uid: 5132 + - uid: 15184 components: - type: Transform - pos: 5.634656,37.569862 + rot: -1.5707963267948966 rad + pos: 27.5,-7.5 parent: 2 -- proto: DisposalBend - entities: - - uid: 2582 + - uid: 15242 components: - type: Transform - pos: 12.5,-1.5 + rot: 3.141592653589793 rad + pos: 24.5,-26.5 parent: 2 - - uid: 3918 + - uid: 15307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,26.5 + pos: -18.5,-10.5 parent: 2 - - uid: 4834 + - uid: 15309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,40.5 + rot: 1.5707963267948966 rad + pos: -8.5,13.5 parent: 2 - - uid: 4863 + - uid: 15323 components: - type: Transform - pos: -37.5,41.5 + rot: 1.5707963267948966 rad + pos: -20.5,13.5 parent: 2 - - uid: 5208 + - uid: 15332 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-1.5 + pos: -27.5,13.5 parent: 2 - - uid: 6486 +- proto: DisposalPipe + entities: + - uid: 67 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,34.5 + rot: -1.5707963267948966 rad + pos: 26.5,34.5 parent: 2 - - uid: 6487 + - uid: 102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,31.5 + pos: 24.5,34.5 parent: 2 - - uid: 6507 + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,31.5 + parent: 2 + - uid: 307 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,31.5 + pos: -73.5,18.5 parent: 2 - - uid: 6508 + - uid: 1727 components: - type: Transform - pos: 16.5,32.5 + rot: 1.5707963267948966 rad + pos: -33.5,40.5 parent: 2 - - uid: 6531 + - uid: 1847 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,31.5 + pos: 27.5,34.5 parent: 2 - - uid: 6979 + - uid: 2040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,58.5 + rot: 1.5707963267948966 rad + pos: -39.5,43.5 parent: 2 - - uid: 6980 + - uid: 2044 components: - type: Transform - pos: -30.5,58.5 + rot: 1.5707963267948966 rad + pos: -34.5,40.5 parent: 2 - - uid: 9092 + - uid: 2070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,17.5 + rot: 1.5707963267948966 rad + pos: -39.5,41.5 parent: 2 - - uid: 14763 + - uid: 2158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,31.5 + rot: 1.5707963267948966 rad + pos: -38.5,41.5 parent: 2 - - uid: 14788 + - uid: 2412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,32.5 + pos: -37.5,42.5 parent: 2 - - uid: 14802 + - uid: 2465 components: - type: Transform - pos: -11.5,40.5 + rot: 1.5707963267948966 rad + pos: -40.5,43.5 parent: 2 - - uid: 14812 + - uid: 2471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,32.5 + rot: 1.5707963267948966 rad + pos: -38.5,43.5 parent: 2 - - uid: 14838 + - uid: 2843 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,33.5 + pos: -23.5,13.5 parent: 2 - - uid: 14910 + - uid: 2958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,14.5 + rot: 1.5707963267948966 rad + pos: -36.5,40.5 parent: 2 - - uid: 14914 + - uid: 2999 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,29.5 + pos: -40.5,41.5 parent: 2 - - uid: 14966 + - uid: 3522 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,8.5 + pos: -31.5,40.5 parent: 2 - - uid: 15115 + - uid: 3523 components: - type: Transform - pos: 17.5,26.5 + rot: 1.5707963267948966 rad + pos: -32.5,40.5 parent: 2 - - uid: 15128 + - uid: 4764 components: - type: Transform - pos: 20.5,8.5 + rot: -1.5707963267948966 rad + pos: -41.5,42.5 parent: 2 - - uid: 15152 + - uid: 4829 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,11.5 + pos: -35.5,40.5 parent: 2 - - uid: 15153 + - uid: 5168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,11.5 + rot: 1.5707963267948966 rad + pos: -29.5,40.5 parent: 2 - - uid: 15154 + - uid: 5173 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,12.5 + pos: -30.5,40.5 parent: 2 - - uid: 15155 + - uid: 5195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,12.5 + rot: 1.5707963267948966 rad + pos: 28.5,34.5 parent: 2 - - uid: 15157 + - uid: 5492 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,4.5 + pos: -55.5,29.5 parent: 2 - - uid: 15159 + - uid: 5596 components: - type: Transform - pos: 26.5,-1.5 + rot: 3.141592653589793 rad + pos: -73.5,23.5 parent: 2 - - uid: 15160 + - uid: 5815 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-1.5 + pos: -73.5,21.5 parent: 2 - - uid: 15185 + - uid: 5817 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-8.5 + pos: -73.5,25.5 parent: 2 - - uid: 15186 + - uid: 6453 components: - type: Transform - pos: 28.5,-8.5 + rot: 3.141592653589793 rad + pos: 22.5,32.5 parent: 2 - - uid: 15203 + - uid: 6477 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-25.5 - parent: 2 - - uid: 15210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-13.5 + pos: 23.5,34.5 parent: 2 - - uid: 15229 + - uid: 6478 components: - type: Transform - pos: 24.5,-15.5 + rot: -1.5707963267948966 rad + pos: 25.5,34.5 parent: 2 - - uid: 15233 + - uid: 6479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-34.5 + rot: 3.141592653589793 rad + pos: 22.5,33.5 parent: 2 - - uid: 15241 + - uid: 6481 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-26.5 + pos: 21.5,31.5 parent: 2 - - uid: 15283 + - uid: 6482 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-34.5 + rot: 1.5707963267948966 rad + pos: 19.5,31.5 parent: 2 - - uid: 15284 + - uid: 6483 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-23.5 + pos: 18.5,31.5 parent: 2 - - uid: 15285 + - uid: 6484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-23.5 + rot: 1.5707963267948966 rad + pos: 17.5,31.5 parent: 2 - - uid: 15291 + - uid: 6485 components: - type: Transform - pos: -16.5,-14.5 + rot: 1.5707963267948966 rad + pos: 20.5,31.5 parent: 2 - - uid: 15292 + - uid: 6509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-14.5 + rot: -1.5707963267948966 rad + pos: 15.5,32.5 parent: 2 - - uid: 15296 + - uid: 6510 components: - type: Transform - pos: -13.5,-10.5 + rot: -1.5707963267948966 rad + pos: 13.5,32.5 parent: 2 - - uid: 15308 + - uid: 6511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-4.5 + rot: -1.5707963267948966 rad + pos: 12.5,32.5 parent: 2 - - uid: 15315 + - uid: 6512 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,12.5 + pos: 11.5,32.5 parent: 2 - - uid: 15316 + - uid: 6513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,12.5 + rot: -1.5707963267948966 rad + pos: 14.5,32.5 parent: 2 - - uid: 15317 + - uid: 6514 components: - type: Transform - pos: -17.5,13.5 + rot: -1.5707963267948966 rad + pos: 10.5,32.5 parent: 2 - - uid: 15341 + - uid: 6515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,13.5 + rot: -1.5707963267948966 rad + pos: 9.5,32.5 parent: 2 - - uid: 15346 + - uid: 6516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,9.5 + rot: -1.5707963267948966 rad + pos: 8.5,32.5 parent: 2 - - uid: 15355 + - uid: 6517 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,25.5 + rot: -1.5707963267948966 rad + pos: 7.5,32.5 parent: 2 - - uid: 15356 + - uid: 6518 components: - type: Transform - pos: -8.5,25.5 + rot: -1.5707963267948966 rad + pos: 6.5,32.5 parent: 2 - - uid: 15370 + - uid: 6519 components: - type: Transform - pos: 7.5,38.5 + rot: -1.5707963267948966 rad + pos: 5.5,32.5 parent: 2 - - uid: 15371 + - uid: 6521 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,38.5 + pos: 3.5,32.5 parent: 2 - - uid: 15384 + - uid: 6522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,36.5 + rot: 1.5707963267948966 rad + pos: 2.5,32.5 parent: 2 - - uid: 15385 + - uid: 6523 components: - type: Transform - pos: 9.5,37.5 + rot: 1.5707963267948966 rad + pos: 1.5,32.5 parent: 2 - - uid: 15386 + - uid: 6524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,36.5 + rot: 1.5707963267948966 rad + pos: 3.5,31.5 parent: 2 - - uid: 15391 + - uid: 6525 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,38.5 + pos: 1.5,31.5 parent: 2 - - uid: 15392 + - uid: 6526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,38.5 + rot: 1.5707963267948966 rad + pos: 0.5,31.5 parent: 2 - - uid: 15401 + - uid: 6527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-5.5 + pos: -0.5,31.5 parent: 2 - - uid: 15402 + - uid: 6529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-5.5 + rot: 1.5707963267948966 rad + pos: -1.5,31.5 parent: 2 - - uid: 15408 + - uid: 6566 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-9.5 + pos: 29.5,35.5 parent: 2 - - uid: 15409 + - uid: 6842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 + rot: 3.141592653589793 rad + pos: -73.5,19.5 parent: 2 - - uid: 15410 + - uid: 6843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 + rot: 3.141592653589793 rad + pos: -73.5,22.5 parent: 2 - - uid: 15430 + - uid: 6848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,44.5 + rot: 3.141592653589793 rad + pos: -73.5,24.5 parent: 2 - - uid: 15431 + - uid: 6981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,44.5 + pos: -33.5,59.5 parent: 2 - - uid: 15433 + - uid: 6982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,37.5 + rot: -1.5707963267948966 rad + pos: -32.5,58.5 parent: 2 - - uid: 15434 + - uid: 6983 components: - type: Transform - pos: -19.5,37.5 + rot: 3.141592653589793 rad + pos: -30.5,57.5 parent: 2 - - uid: 15447 + - uid: 6984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-16.5 + rot: -1.5707963267948966 rad + pos: -31.5,58.5 parent: 2 - - uid: 15448 + - uid: 7049 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-16.5 + pos: -39.5,42.5 parent: 2 - - uid: 15462 + - uid: 7308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-5.5 + rot: -1.5707963267948966 rad + pos: -42.5,42.5 parent: 2 -- proto: DisposalJunction - entities: - - uid: 807 + - uid: 8492 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,3.5 + pos: -73.5,20.5 parent: 2 - - uid: 3365 + - uid: 11949 components: - type: Transform - pos: -28.5,40.5 + pos: -28.5,43.5 parent: 2 - - uid: 5190 + - uid: 11950 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-1.5 + pos: 6.5,-1.5 parent: 2 - - uid: 5202 + - uid: 11951 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 2 - - uid: 5672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-15.5 + pos: 5.5,-1.5 parent: 2 - - uid: 6520 + - uid: 11952 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,32.5 - parent: 2 - - uid: 12878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 + pos: 4.5,-1.5 parent: 2 - - uid: 14762 + - uid: 11953 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,31.5 + pos: 3.5,-1.5 parent: 2 - - uid: 14780 + - uid: 11957 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,33.5 + pos: 7.5,-1.5 parent: 2 - - uid: 14789 + - uid: 11958 components: - type: Transform - pos: -19.5,33.5 + pos: 9.5,-2.5 parent: 2 - - uid: 14842 + - uid: 13237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,33.5 + rot: -1.5707963267948966 rad + pos: -40.5,42.5 parent: 2 - - uid: 14915 + - uid: 13238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,29.5 + pos: -38.5,41.5 parent: 2 - - uid: 14918 + - uid: 14035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,29.5 + pos: -25.5,12.5 parent: 2 - - uid: 14947 + - uid: 14036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,13.5 + pos: -25.5,10.5 parent: 2 - - uid: 15040 + - uid: 14760 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-15.5 - parent: 2 - - uid: 15088 - components: - - type: Transform - pos: 14.5,21.5 + pos: -38.5,29.5 parent: 2 - - uid: 15110 + - uid: 14765 components: - type: Transform - pos: 14.5,13.5 + rot: -1.5707963267948966 rad + pos: -4.5,32.5 parent: 2 - - uid: 15136 + - uid: 14766 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,4.5 + pos: -6.5,32.5 parent: 2 - - uid: 15137 + - uid: 14767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,4.5 + rot: -1.5707963267948966 rad + pos: -7.5,32.5 parent: 2 - - uid: 15148 + - uid: 14768 components: - type: Transform - pos: 30.5,8.5 + rot: -1.5707963267948966 rad + pos: -8.5,32.5 parent: 2 - - uid: 15177 + - uid: 14769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-7.5 + rot: -1.5707963267948966 rad + pos: -9.5,32.5 parent: 2 - - uid: 15245 + - uid: 14770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-15.5 + rot: -1.5707963267948966 rad + pos: -10.5,32.5 parent: 2 - - uid: 15255 + - uid: 14771 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-21.5 + rot: -1.5707963267948966 rad + pos: -5.5,32.5 parent: 2 - - uid: 15271 + - uid: 14773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-30.5 + rot: -1.5707963267948966 rad + pos: -12.5,32.5 parent: 2 - - uid: 15314 + - uid: 14774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,13.5 + rot: -1.5707963267948966 rad + pos: -14.5,32.5 parent: 2 - - uid: 15327 + - uid: 14775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,13.5 + rot: -1.5707963267948966 rad + pos: -15.5,32.5 parent: 2 - - uid: 15381 + - uid: 14776 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,37.5 + rot: -1.5707963267948966 rad + pos: -13.5,32.5 parent: 2 -- proto: DisposalJunctionFlipped - entities: - - uid: 14791 + - uid: 14777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,32.5 + rot: -1.5707963267948966 rad + pos: -17.5,32.5 parent: 2 - - uid: 14805 + - uid: 14778 components: - type: Transform - pos: -2.5,37.5 + rot: -1.5707963267948966 rad + pos: -18.5,32.5 parent: 2 - - uid: 14839 + - uid: 14779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,29.5 + rot: -1.5707963267948966 rad + pos: -16.5,32.5 parent: 2 - - uid: 14920 + - uid: 14781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,33.5 + rot: -1.5707963267948966 rad + pos: -22.5,33.5 parent: 2 - - uid: 14934 + - uid: 14782 components: - type: Transform - pos: -28.5,42.5 + rot: -1.5707963267948966 rad + pos: -23.5,33.5 parent: 2 - - uid: 14949 + - uid: 14783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,13.5 + rot: -1.5707963267948966 rad + pos: -21.5,33.5 parent: 2 - - uid: 14981 + - uid: 14784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,0.5 + rot: -1.5707963267948966 rad + pos: -24.5,33.5 parent: 2 - - uid: 15008 + - uid: 14785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-15.5 + rot: -1.5707963267948966 rad + pos: -25.5,33.5 parent: 2 - - uid: 15028 + - uid: 14786 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-15.5 + pos: -26.5,33.5 parent: 2 - - uid: 15129 + - uid: 14787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,6.5 + rot: -1.5707963267948966 rad + pos: -27.5,33.5 parent: 2 - - uid: 15138 + - uid: 14792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,4.5 + pos: -11.5,33.5 parent: 2 - - uid: 15184 + - uid: 14793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-7.5 + pos: -11.5,35.5 parent: 2 - - uid: 15242 + - uid: 14794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-26.5 + pos: -11.5,36.5 parent: 2 - - uid: 15307 + - uid: 14795 components: - type: Transform - pos: -18.5,-10.5 + pos: -11.5,34.5 parent: 2 - - uid: 15309 + - uid: 14796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,13.5 + pos: -11.5,38.5 parent: 2 - - uid: 15323 + - uid: 14797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,13.5 + pos: -11.5,39.5 parent: 2 - - uid: 15332 + - uid: 14798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,13.5 + pos: -11.5,37.5 parent: 2 -- proto: DisposalPipe - entities: - - uid: 67 + - uid: 14799 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,34.5 + pos: -12.5,40.5 parent: 2 - - uid: 102 + - uid: 14800 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,34.5 + pos: -13.5,40.5 parent: 2 - - uid: 129 + - uid: 14807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,31.5 + pos: -2.5,30.5 parent: 2 - - uid: 307 + - uid: 14808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,18.5 + pos: -2.5,36.5 parent: 2 - - uid: 1727 + - uid: 14809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,40.5 + pos: -2.5,34.5 parent: 2 - - uid: 2044 + - uid: 14810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,40.5 + pos: -2.5,33.5 parent: 2 - - uid: 2070 + - uid: 14811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,41.5 + pos: -2.5,35.5 parent: 2 - - uid: 2158 + - uid: 14814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,41.5 + pos: -2.5,28.5 parent: 2 - - uid: 2958 + - uid: 14815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,40.5 + pos: -2.5,27.5 parent: 2 - - uid: 2999 + - uid: 14816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,41.5 + pos: -2.5,26.5 parent: 2 - - uid: 3522 + - uid: 14817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,40.5 + pos: -2.5,29.5 parent: 2 - - uid: 3523 + - uid: 14818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,40.5 + pos: -2.5,25.5 parent: 2 - - uid: 4829 + - uid: 14819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,40.5 + pos: -2.5,24.5 parent: 2 - - uid: 5168 + - uid: 14820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,40.5 + pos: -2.5,22.5 parent: 2 - - uid: 5173 + - uid: 14821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,40.5 + pos: -2.5,20.5 parent: 2 - - uid: 5492 + - uid: 14822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,29.5 + pos: -2.5,19.5 parent: 2 - - uid: 5596 + - uid: 14823 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,23.5 + pos: -2.5,23.5 parent: 2 - - uid: 5815 + - uid: 14824 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,21.5 + pos: -2.5,21.5 parent: 2 - - uid: 5817 + - uid: 14826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,25.5 + rot: -1.5707963267948966 rad + pos: -30.5,33.5 parent: 2 - - uid: 6477 + - uid: 14827 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,34.5 + pos: -31.5,33.5 parent: 2 - - uid: 6478 + - uid: 14828 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,34.5 + pos: -32.5,33.5 parent: 2 - - uid: 6479 + - uid: 14829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,33.5 + rot: -1.5707963267948966 rad + pos: -33.5,33.5 parent: 2 - - uid: 6480 + - uid: 14830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,32.5 + rot: -1.5707963267948966 rad + pos: -29.5,33.5 parent: 2 - - uid: 6481 + - uid: 14832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,31.5 + rot: -1.5707963267948966 rad + pos: -34.5,33.5 parent: 2 - - uid: 6482 + - uid: 14833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,31.5 + rot: -1.5707963267948966 rad + pos: -36.5,33.5 parent: 2 - - uid: 6483 + - uid: 14835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,31.5 + rot: 3.141592653589793 rad + pos: -37.5,32.5 parent: 2 - - uid: 6484 + - uid: 14836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,31.5 + rot: 3.141592653589793 rad + pos: -37.5,30.5 parent: 2 - - uid: 6485 + - uid: 14837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,31.5 + rot: 3.141592653589793 rad + pos: -37.5,31.5 parent: 2 - - uid: 6509 + - uid: 14843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,32.5 + pos: -37.5,28.5 parent: 2 - - uid: 6510 + - uid: 14844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,32.5 + pos: -37.5,26.5 parent: 2 - - uid: 6511 + - uid: 14845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,32.5 + pos: -37.5,25.5 parent: 2 - - uid: 6512 + - uid: 14846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,32.5 + pos: -37.5,24.5 parent: 2 - - uid: 6513 + - uid: 14847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,32.5 + pos: -37.5,23.5 parent: 2 - - uid: 6514 + - uid: 14848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,32.5 + pos: -37.5,22.5 parent: 2 - - uid: 6515 + - uid: 14849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,32.5 + pos: -37.5,27.5 parent: 2 - - uid: 6516 + - uid: 14850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,32.5 + pos: -37.5,21.5 parent: 2 - - uid: 6517 + - uid: 14851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,32.5 + pos: -37.5,20.5 parent: 2 - - uid: 6518 + - uid: 14852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,32.5 + pos: -37.5,19.5 parent: 2 - - uid: 6519 + - uid: 14853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,32.5 + pos: -37.5,18.5 parent: 2 - - uid: 6521 + - uid: 14854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,32.5 + pos: -37.5,17.5 parent: 2 - - uid: 6522 + - uid: 14855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,32.5 + pos: -37.5,16.5 parent: 2 - - uid: 6523 + - uid: 14856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,32.5 + pos: -37.5,15.5 parent: 2 - - uid: 6524 + - uid: 14857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,31.5 + rot: -1.5707963267948966 rad + pos: -40.5,29.5 parent: 2 - - uid: 6525 + - uid: 14858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,31.5 + rot: -1.5707963267948966 rad + pos: -41.5,29.5 parent: 2 - - uid: 6526 + - uid: 14859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,31.5 + rot: -1.5707963267948966 rad + pos: -42.5,29.5 parent: 2 - - uid: 6527 + - uid: 14860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,31.5 + rot: -1.5707963267948966 rad + pos: -43.5,29.5 parent: 2 - - uid: 6529 + - uid: 14861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,31.5 + rot: -1.5707963267948966 rad + pos: -44.5,29.5 parent: 2 - - uid: 6842 + - uid: 14862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,19.5 + rot: -1.5707963267948966 rad + pos: -45.5,29.5 parent: 2 - - uid: 6843 + - uid: 14863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,22.5 + rot: -1.5707963267948966 rad + pos: -39.5,29.5 parent: 2 - - uid: 6848 + - uid: 14864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,24.5 + rot: -1.5707963267948966 rad + pos: -46.5,29.5 parent: 2 - - uid: 6981 + - uid: 14865 components: - type: Transform - pos: -33.5,59.5 + rot: -1.5707963267948966 rad + pos: -47.5,29.5 parent: 2 - - uid: 6982 + - uid: 14866 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,58.5 + pos: -48.5,29.5 parent: 2 - - uid: 6983 + - uid: 14867 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,57.5 + rot: -1.5707963267948966 rad + pos: -50.5,29.5 parent: 2 - - uid: 6984 + - uid: 14868 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,58.5 + pos: -52.5,29.5 parent: 2 - - uid: 8492 + - uid: 14869 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,20.5 + rot: -1.5707963267948966 rad + pos: -53.5,29.5 parent: 2 - - uid: 11949 + - uid: 14870 components: - type: Transform - pos: -28.5,43.5 + rot: -1.5707963267948966 rad + pos: -54.5,29.5 parent: 2 - - uid: 11950 + - uid: 14871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-1.5 + rot: -1.5707963267948966 rad + pos: -51.5,29.5 parent: 2 - - uid: 11951 + - uid: 14879 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-1.5 + pos: -56.5,29.5 parent: 2 - - uid: 11952 + - uid: 14881 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-1.5 + pos: -58.5,29.5 parent: 2 - - uid: 11953 + - uid: 14882 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-1.5 + pos: -59.5,29.5 parent: 2 - - uid: 11957 + - uid: 14883 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-1.5 + pos: -60.5,29.5 parent: 2 - - uid: 11958 + - uid: 14884 components: - type: Transform - pos: 9.5,-2.5 + rot: 1.5707963267948966 rad + pos: -61.5,29.5 parent: 2 - - uid: 14760 + - uid: 14885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,29.5 + rot: 1.5707963267948966 rad + pos: -62.5,29.5 parent: 2 - - uid: 14765 + - uid: 14886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,32.5 + rot: 1.5707963267948966 rad + pos: -57.5,29.5 parent: 2 - - uid: 14766 + - uid: 14887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,32.5 + rot: 1.5707963267948966 rad + pos: -63.5,29.5 parent: 2 - - uid: 14767 + - uid: 14888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,32.5 + rot: 1.5707963267948966 rad + pos: -64.5,29.5 parent: 2 - - uid: 14768 + - uid: 14889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,32.5 + rot: 1.5707963267948966 rad + pos: -66.5,29.5 parent: 2 - - uid: 14769 + - uid: 14890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,32.5 + rot: 1.5707963267948966 rad + pos: -65.5,29.5 parent: 2 - - uid: 14770 + - uid: 14891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,32.5 + rot: 1.5707963267948966 rad + pos: -68.5,29.5 parent: 2 - - uid: 14771 + - uid: 14892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,32.5 + rot: 1.5707963267948966 rad + pos: -70.5,29.5 parent: 2 - - uid: 14773 + - uid: 14893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,32.5 + rot: 1.5707963267948966 rad + pos: -71.5,29.5 parent: 2 - - uid: 14774 + - uid: 14894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,32.5 + rot: 1.5707963267948966 rad + pos: -72.5,29.5 parent: 2 - - uid: 14775 + - uid: 14895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,32.5 + rot: 1.5707963267948966 rad + pos: -69.5,29.5 parent: 2 - - uid: 14776 + - uid: 14896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,32.5 + pos: -73.5,28.5 parent: 2 - - uid: 14777 + - uid: 14897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,32.5 + pos: -73.5,26.5 parent: 2 - - uid: 14778 + - uid: 14898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,32.5 + pos: -73.5,27.5 parent: 2 - - uid: 14779 + - uid: 14921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,32.5 + pos: -28.5,34.5 parent: 2 - - uid: 14781 + - uid: 14922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,33.5 + pos: -28.5,35.5 parent: 2 - - uid: 14782 + - uid: 14923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,33.5 + pos: -28.5,36.5 parent: 2 - - uid: 14783 + - uid: 14924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,33.5 + pos: -28.5,37.5 parent: 2 - - uid: 14784 + - uid: 14925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,33.5 + pos: -28.5,38.5 parent: 2 - - uid: 14785 + - uid: 14926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,33.5 + pos: -28.5,39.5 parent: 2 - - uid: 14786 + - uid: 14927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,33.5 + pos: -28.5,41.5 parent: 2 - - uid: 14787 + - uid: 14935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,33.5 + pos: -2.5,18.5 parent: 2 - - uid: 14792 + - uid: 14936 components: - type: Transform - pos: -11.5,33.5 + rot: 3.141592653589793 rad + pos: -20.5,32.5 parent: 2 - - uid: 14793 + - uid: 14938 components: - type: Transform - pos: -11.5,35.5 + pos: -2.5,16.5 parent: 2 - - uid: 14794 + - uid: 14939 components: - type: Transform - pos: -11.5,36.5 + pos: -2.5,15.5 parent: 2 - - uid: 14795 + - uid: 14940 components: - type: Transform - pos: -11.5,34.5 + pos: -2.5,14.5 parent: 2 - - uid: 14796 + - uid: 14941 components: - type: Transform - pos: -11.5,38.5 + pos: -2.5,17.5 parent: 2 - - uid: 14797 + - uid: 14942 components: - type: Transform - pos: -11.5,39.5 + rot: -1.5707963267948966 rad + pos: -3.5,13.5 parent: 2 - - uid: 14798 + - uid: 14943 components: - type: Transform - pos: -11.5,37.5 + rot: -1.5707963267948966 rad + pos: -5.5,13.5 parent: 2 - - uid: 14799 + - uid: 14944 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,40.5 + pos: -6.5,13.5 parent: 2 - - uid: 14800 + - uid: 14945 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,40.5 + pos: -4.5,13.5 parent: 2 - - uid: 14807 + - uid: 14946 components: - type: Transform - pos: -2.5,30.5 + rot: 3.141592653589793 rad + pos: -7.5,12.5 parent: 2 - - uid: 14808 + - uid: 14950 components: - type: Transform - pos: -2.5,36.5 + pos: -2.5,11.5 parent: 2 - - uid: 14809 + - uid: 14951 components: - type: Transform - pos: -2.5,34.5 + pos: -2.5,10.5 parent: 2 - - uid: 14810 + - uid: 14952 components: - type: Transform - pos: -2.5,33.5 + pos: -2.5,12.5 parent: 2 - - uid: 14811 + - uid: 14953 components: - type: Transform - pos: -2.5,35.5 + pos: -2.5,9.5 parent: 2 - - uid: 14814 + - uid: 14960 components: - type: Transform - pos: -2.5,28.5 + pos: -8.5,7.5 parent: 2 - - uid: 14815 + - uid: 14967 components: - type: Transform - pos: -2.5,27.5 + rot: 1.5707963267948966 rad + pos: -3.5,8.5 parent: 2 - - uid: 14816 + - uid: 14968 components: - type: Transform - pos: -2.5,26.5 + rot: 1.5707963267948966 rad + pos: -4.5,8.5 parent: 2 - - uid: 14817 + - uid: 14969 components: - type: Transform - pos: -2.5,29.5 + rot: 1.5707963267948966 rad + pos: -5.5,8.5 parent: 2 - - uid: 14818 + - uid: 14970 components: - type: Transform - pos: -2.5,25.5 + rot: 1.5707963267948966 rad + pos: -7.5,8.5 parent: 2 - - uid: 14819 + - uid: 14971 components: - type: Transform - pos: -2.5,24.5 + rot: 1.5707963267948966 rad + pos: -6.5,8.5 parent: 2 - - uid: 14820 + - uid: 14973 components: - type: Transform - pos: -2.5,22.5 + pos: -8.5,6.5 parent: 2 - - uid: 14821 + - uid: 14974 components: - type: Transform - pos: -2.5,20.5 + pos: -8.5,5.5 parent: 2 - - uid: 14822 + - uid: 14975 components: - type: Transform - pos: -2.5,19.5 + pos: -8.5,3.5 parent: 2 - - uid: 14823 + - uid: 14976 components: - type: Transform - pos: -2.5,23.5 + pos: -8.5,2.5 parent: 2 - - uid: 14824 + - uid: 14977 components: - type: Transform - pos: -2.5,21.5 + pos: -8.5,1.5 parent: 2 - - uid: 14826 + - uid: 14978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,33.5 + pos: -8.5,4.5 parent: 2 - - uid: 14827 + - uid: 14992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,33.5 + pos: -8.5,-0.5 parent: 2 - - uid: 14828 + - uid: 14993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,33.5 + pos: -8.5,-2.5 parent: 2 - - uid: 14829 + - uid: 14994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,33.5 + pos: -8.5,-3.5 parent: 2 - - uid: 14830 + - uid: 14995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,33.5 + pos: -8.5,-4.5 parent: 2 - - uid: 14832 + - uid: 14996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,33.5 + pos: -8.5,-5.5 parent: 2 - - uid: 14833 + - uid: 14997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,33.5 + pos: -8.5,-6.5 parent: 2 - - uid: 14835 + - uid: 14998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,32.5 + pos: -8.5,-7.5 parent: 2 - - uid: 14836 + - uid: 14999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,30.5 + pos: -8.5,-1.5 parent: 2 - - uid: 14837 + - uid: 15000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,31.5 + pos: -8.5,-9.5 parent: 2 - - uid: 14843 + - uid: 15001 components: - type: Transform - pos: -37.5,28.5 + pos: -8.5,-10.5 parent: 2 - - uid: 14844 + - uid: 15002 components: - type: Transform - pos: -37.5,26.5 + pos: -8.5,-12.5 parent: 2 - - uid: 14845 + - uid: 15003 components: - type: Transform - pos: -37.5,25.5 + pos: -8.5,-11.5 parent: 2 - - uid: 14846 + - uid: 15004 components: - type: Transform - pos: -37.5,24.5 + pos: -8.5,-13.5 parent: 2 - - uid: 14847 + - uid: 15005 components: - type: Transform - pos: -37.5,23.5 + pos: -8.5,-14.5 parent: 2 - - uid: 14848 + - uid: 15006 components: - type: Transform - pos: -37.5,22.5 + pos: -8.5,-8.5 parent: 2 - - uid: 14849 + - uid: 15009 components: - type: Transform - pos: -37.5,27.5 + rot: 1.5707963267948966 rad + pos: -7.5,-15.5 parent: 2 - - uid: 14850 + - uid: 15010 components: - type: Transform - pos: -37.5,21.5 + rot: 1.5707963267948966 rad + pos: -5.5,-15.5 parent: 2 - - uid: 14851 + - uid: 15011 components: - type: Transform - pos: -37.5,20.5 + rot: 1.5707963267948966 rad + pos: -4.5,-15.5 parent: 2 - - uid: 14852 + - uid: 15012 components: - type: Transform - pos: -37.5,19.5 + rot: 1.5707963267948966 rad + pos: -6.5,-15.5 parent: 2 - - uid: 14853 + - uid: 15013 components: - type: Transform - pos: -37.5,18.5 + rot: 1.5707963267948966 rad + pos: -3.5,-15.5 parent: 2 - - uid: 14854 + - uid: 15014 components: - type: Transform - pos: -37.5,17.5 + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 parent: 2 - - uid: 14855 + - uid: 15015 components: - type: Transform - pos: -37.5,16.5 + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 parent: 2 - - uid: 14856 + - uid: 15016 components: - type: Transform - pos: -37.5,15.5 + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 parent: 2 - - uid: 14857 + - uid: 15017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,29.5 + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 parent: 2 - - uid: 14858 + - uid: 15018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,29.5 + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 parent: 2 - - uid: 14859 + - uid: 15019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,29.5 + rot: 1.5707963267948966 rad + pos: 3.5,-15.5 parent: 2 - - uid: 14860 + - uid: 15020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,29.5 + rot: 1.5707963267948966 rad + pos: 4.5,-15.5 parent: 2 - - uid: 14861 + - uid: 15021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,29.5 + rot: 1.5707963267948966 rad + pos: -0.5,-15.5 parent: 2 - - uid: 14862 + - uid: 15022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,29.5 + pos: 5.5,-16.5 parent: 2 - - uid: 14863 + - uid: 15029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,29.5 + rot: 1.5707963267948966 rad + pos: 6.5,-15.5 parent: 2 - - uid: 14864 + - uid: 15030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,29.5 + rot: 1.5707963267948966 rad + pos: 8.5,-15.5 parent: 2 - - uid: 14865 + - uid: 15031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,29.5 + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 parent: 2 - - uid: 14866 + - uid: 15032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,29.5 + rot: 1.5707963267948966 rad + pos: 10.5,-15.5 parent: 2 - - uid: 14867 + - uid: 15033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,29.5 + rot: 1.5707963267948966 rad + pos: 7.5,-15.5 parent: 2 - - uid: 14868 + - uid: 15034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,29.5 + rot: 1.5707963267948966 rad + pos: 11.5,-15.5 parent: 2 - - uid: 14869 + - uid: 15036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,29.5 + rot: 1.5707963267948966 rad + pos: 13.5,-15.5 parent: 2 - - uid: 14870 + - uid: 15037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,29.5 + rot: 1.5707963267948966 rad + pos: 14.5,-15.5 parent: 2 - - uid: 14871 + - uid: 15038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,29.5 + rot: 1.5707963267948966 rad + pos: 15.5,-15.5 parent: 2 - - uid: 14879 + - uid: 15039 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,29.5 + pos: 16.5,-15.5 parent: 2 - - uid: 14881 + - uid: 15053 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,29.5 + pos: -1.5,8.5 parent: 2 - - uid: 14882 + - uid: 15054 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,29.5 + pos: -0.5,8.5 parent: 2 - - uid: 14883 + - uid: 15055 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,29.5 + pos: 1.5,8.5 parent: 2 - - uid: 14884 + - uid: 15056 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,29.5 + pos: 2.5,8.5 parent: 2 - - uid: 14885 + - uid: 15057 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,29.5 + pos: 3.5,8.5 parent: 2 - - uid: 14886 + - uid: 15058 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,29.5 + pos: 4.5,8.5 parent: 2 - - uid: 14887 + - uid: 15059 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,29.5 + pos: 5.5,8.5 parent: 2 - - uid: 14888 + - uid: 15060 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,29.5 + pos: 6.5,8.5 parent: 2 - - uid: 14889 + - uid: 15061 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,29.5 + pos: 7.5,8.5 parent: 2 - - uid: 14890 + - uid: 15062 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,29.5 + pos: 0.5,8.5 parent: 2 - - uid: 14891 + - uid: 15063 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,29.5 + pos: 8.5,8.5 parent: 2 - - uid: 14892 + - uid: 15064 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,29.5 + pos: 10.5,8.5 parent: 2 - - uid: 14893 + - uid: 15065 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,29.5 + pos: 11.5,8.5 parent: 2 - - uid: 14894 + - uid: 15066 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,29.5 + pos: 12.5,8.5 parent: 2 - - uid: 14895 + - uid: 15067 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,29.5 + pos: 13.5,8.5 parent: 2 - - uid: 14896 + - uid: 15068 components: - type: Transform - pos: -73.5,28.5 + rot: 1.5707963267948966 rad + pos: 9.5,8.5 parent: 2 - - uid: 14897 + - uid: 15070 components: - type: Transform - pos: -73.5,26.5 + pos: 14.5,10.5 parent: 2 - - uid: 14898 + - uid: 15071 components: - type: Transform - pos: -73.5,27.5 + pos: 14.5,9.5 parent: 2 - - uid: 14921 + - uid: 15072 components: - type: Transform - pos: -28.5,34.5 + pos: 14.5,11.5 parent: 2 - - uid: 14922 + - uid: 15073 components: - type: Transform - pos: -28.5,35.5 + pos: 14.5,12.5 parent: 2 - - uid: 14923 + - uid: 15074 components: - type: Transform - pos: -28.5,36.5 + rot: -1.5707963267948966 rad + pos: 13.5,13.5 parent: 2 - - uid: 14924 + - uid: 15075 components: - type: Transform - pos: -28.5,37.5 + rot: -1.5707963267948966 rad + pos: 11.5,13.5 parent: 2 - - uid: 14925 + - uid: 15076 components: - type: Transform - pos: -28.5,38.5 + rot: -1.5707963267948966 rad + pos: 10.5,13.5 parent: 2 - - uid: 14926 + - uid: 15077 components: - type: Transform - pos: -28.5,39.5 + rot: -1.5707963267948966 rad + pos: 9.5,13.5 parent: 2 - - uid: 14927 + - uid: 15078 components: - type: Transform - pos: -28.5,41.5 + rot: -1.5707963267948966 rad + pos: 12.5,13.5 parent: 2 - - uid: 14935 + - uid: 15081 components: - type: Transform - pos: -2.5,18.5 + rot: 3.141592653589793 rad + pos: 14.5,14.5 parent: 2 - - uid: 14936 + - uid: 15082 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,32.5 + pos: 14.5,16.5 parent: 2 - - uid: 14938 + - uid: 15083 components: - type: Transform - pos: -2.5,16.5 + rot: 3.141592653589793 rad + pos: 14.5,17.5 parent: 2 - - uid: 14939 + - uid: 15084 components: - type: Transform - pos: -2.5,15.5 + rot: 3.141592653589793 rad + pos: 14.5,18.5 parent: 2 - - uid: 14940 + - uid: 15085 components: - type: Transform - pos: -2.5,14.5 + rot: 3.141592653589793 rad + pos: 14.5,15.5 parent: 2 - - uid: 14941 + - uid: 15086 components: - type: Transform - pos: -2.5,17.5 + rot: 3.141592653589793 rad + pos: 14.5,19.5 parent: 2 - - uid: 14942 + - uid: 15087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,13.5 + rot: 3.141592653589793 rad + pos: 14.5,20.5 parent: 2 - - uid: 14943 + - uid: 15089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,13.5 + rot: 3.141592653589793 rad + pos: 14.5,22.5 parent: 2 - - uid: 14944 + - uid: 15090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,13.5 + rot: 3.141592653589793 rad + pos: 14.5,23.5 parent: 2 - - uid: 14945 + - uid: 15091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,13.5 + rot: 3.141592653589793 rad + pos: 14.5,24.5 parent: 2 - - uid: 14946 + - uid: 15092 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,12.5 + pos: 14.5,25.5 parent: 2 - - uid: 14950 + - uid: 15093 components: - type: Transform - pos: -2.5,11.5 + rot: 1.5707963267948966 rad + pos: 15.5,26.5 parent: 2 - - uid: 14951 + - uid: 15094 components: - type: Transform - pos: -2.5,10.5 + rot: 1.5707963267948966 rad + pos: 16.5,26.5 parent: 2 - - uid: 14952 + - uid: 15095 components: - type: Transform - pos: -2.5,12.5 + pos: 17.5,25.5 parent: 2 - - uid: 14953 + - uid: 15097 components: - type: Transform - pos: -2.5,9.5 + rot: -1.5707963267948966 rad + pos: 13.5,26.5 + parent: 2 + - uid: 15122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - uid: 15123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - uid: 15124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 2 + - uid: 15125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,8.5 parent: 2 - - uid: 14960 + - uid: 15126 components: - type: Transform - pos: -8.5,7.5 + rot: -1.5707963267948966 rad + pos: 16.5,8.5 parent: 2 - - uid: 14967 + - uid: 15127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 + rot: 3.141592653589793 rad + pos: 20.5,7.5 parent: 2 - - uid: 14968 + - uid: 15131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 + pos: 20.5,5.5 parent: 2 - - uid: 14969 + - uid: 15132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,8.5 + rot: -1.5707963267948966 rad + pos: 21.5,4.5 parent: 2 - - uid: 14970 + - uid: 15133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,8.5 + rot: -1.5707963267948966 rad + pos: 22.5,4.5 parent: 2 - - uid: 14971 + - uid: 15134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,8.5 + rot: -1.5707963267948966 rad + pos: 23.5,4.5 parent: 2 - - uid: 14973 + - uid: 15135 components: - type: Transform - pos: -8.5,6.5 + rot: 3.141592653589793 rad + pos: 24.5,5.5 parent: 2 - - uid: 14974 + - uid: 15139 components: - type: Transform - pos: -8.5,5.5 + rot: -1.5707963267948966 rad + pos: 27.5,4.5 parent: 2 - - uid: 14975 + - uid: 15140 components: - type: Transform - pos: -8.5,3.5 + rot: -1.5707963267948966 rad + pos: 28.5,4.5 parent: 2 - - uid: 14976 + - uid: 15141 components: - type: Transform - pos: -8.5,2.5 + rot: -1.5707963267948966 rad + pos: 26.5,4.5 parent: 2 - - uid: 14977 + - uid: 15142 components: - type: Transform - pos: -8.5,1.5 + rot: -1.5707963267948966 rad + pos: 29.5,4.5 parent: 2 - - uid: 14978 + - uid: 15145 components: - type: Transform - pos: -8.5,4.5 + pos: 30.5,5.5 parent: 2 - - uid: 14992 + - uid: 15146 components: - type: Transform - pos: -8.5,-0.5 + pos: 30.5,7.5 parent: 2 - - uid: 14993 + - uid: 15147 components: - type: Transform - pos: -8.5,-2.5 + pos: 30.5,6.5 parent: 2 - - uid: 14994 + - uid: 15149 components: - type: Transform - pos: -8.5,-3.5 + pos: 30.5,9.5 parent: 2 - - uid: 14995 + - uid: 15150 components: - type: Transform - pos: -8.5,-4.5 + pos: 30.5,10.5 parent: 2 - - uid: 14996 + - uid: 15151 components: - type: Transform - pos: -8.5,-5.5 + rot: -1.5707963267948966 rad + pos: 31.5,11.5 parent: 2 - - uid: 14997 + - uid: 15161 components: - type: Transform - pos: -8.5,-6.5 + pos: 25.5,-0.5 parent: 2 - - uid: 14998 + - uid: 15162 components: - type: Transform - pos: -8.5,-7.5 + pos: 25.5,1.5 parent: 2 - - uid: 14999 + - uid: 15163 components: - type: Transform - pos: -8.5,-1.5 + pos: 25.5,2.5 parent: 2 - - uid: 15000 + - uid: 15165 components: - type: Transform - pos: -8.5,-9.5 + pos: 25.5,0.5 parent: 2 - - uid: 15001 + - uid: 15166 components: - type: Transform - pos: -8.5,-10.5 + pos: 20.5,3.5 parent: 2 - - uid: 15002 + - uid: 15167 components: - type: Transform - pos: -8.5,-12.5 + pos: 20.5,1.5 parent: 2 - - uid: 15003 + - uid: 15168 components: - type: Transform - pos: -8.5,-11.5 + pos: 20.5,0.5 parent: 2 - - uid: 15004 + - uid: 15169 components: - type: Transform - pos: -8.5,-13.5 + pos: 20.5,-0.5 parent: 2 - - uid: 15005 + - uid: 15170 components: - type: Transform - pos: -8.5,-14.5 + pos: 20.5,2.5 parent: 2 - - uid: 15006 + - uid: 15171 components: - type: Transform - pos: -8.5,-8.5 + pos: 20.5,-1.5 parent: 2 - - uid: 15009 + - uid: 15172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-15.5 + pos: 20.5,-2.5 parent: 2 - - uid: 15010 + - uid: 15173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-15.5 + pos: 20.5,-3.5 parent: 2 - - uid: 15011 + - uid: 15174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-15.5 + pos: 20.5,-4.5 parent: 2 - - uid: 15012 + - uid: 15175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-15.5 + pos: 20.5,-5.5 parent: 2 - - uid: 15013 + - uid: 15176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 + pos: 20.5,-6.5 parent: 2 - - uid: 15014 + - uid: 15178 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-15.5 + pos: 21.5,-7.5 parent: 2 - - uid: 15015 + - uid: 15179 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-15.5 + pos: 23.5,-7.5 parent: 2 - - uid: 15016 + - uid: 15180 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-15.5 + pos: 22.5,-7.5 parent: 2 - - uid: 15017 + - uid: 15181 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-15.5 + pos: 24.5,-7.5 parent: 2 - - uid: 15018 + - uid: 15182 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-15.5 + pos: 26.5,-7.5 parent: 2 - - uid: 15019 + - uid: 15183 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-15.5 + pos: 25.5,-7.5 parent: 2 - - uid: 15020 + - uid: 15187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-15.5 + pos: 28.5,-9.5 parent: 2 - - uid: 15021 + - uid: 15188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 + pos: 28.5,-11.5 parent: 2 - - uid: 15022 + - uid: 15189 components: - type: Transform - pos: 5.5,-16.5 + pos: 28.5,-12.5 parent: 2 - - uid: 15029 + - uid: 15190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-15.5 + pos: 28.5,-13.5 parent: 2 - - uid: 15030 + - uid: 15191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-15.5 + pos: 28.5,-14.5 parent: 2 - - uid: 15031 + - uid: 15192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-15.5 + pos: 28.5,-15.5 parent: 2 - - uid: 15032 + - uid: 15193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-15.5 + pos: 28.5,-16.5 parent: 2 - - uid: 15033 + - uid: 15194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-15.5 + pos: 28.5,-17.5 parent: 2 - - uid: 15034 + - uid: 15195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-15.5 + pos: 28.5,-18.5 parent: 2 - - uid: 15036 + - uid: 15196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-15.5 + pos: 28.5,-10.5 parent: 2 - - uid: 15037 + - uid: 15197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-15.5 + pos: 28.5,-19.5 parent: 2 - - uid: 15038 + - uid: 15198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-15.5 + pos: 28.5,-21.5 parent: 2 - - uid: 15039 + - uid: 15199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-15.5 + pos: 28.5,-22.5 parent: 2 - - uid: 15053 + - uid: 15200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,8.5 + pos: 28.5,-24.5 parent: 2 - - uid: 15054 + - uid: 15201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,8.5 + pos: 28.5,-23.5 parent: 2 - - uid: 15055 + - uid: 15202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,8.5 + pos: 28.5,-20.5 parent: 2 - - uid: 15056 + - uid: 15204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,8.5 + rot: -1.5707963267948966 rad + pos: 27.5,-25.5 parent: 2 - - uid: 15057 + - uid: 15205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,8.5 + pos: 20.5,-9.5 parent: 2 - - uid: 15058 + - uid: 15206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,8.5 + pos: 20.5,-10.5 parent: 2 - - uid: 15059 + - uid: 15207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 + pos: 20.5,-8.5 parent: 2 - - uid: 15060 + - uid: 15208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 + pos: 20.5,-11.5 parent: 2 - - uid: 15061 + - uid: 15209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,8.5 + pos: 20.5,-12.5 parent: 2 - - uid: 15062 + - uid: 15211 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,8.5 + pos: 21.5,-13.5 parent: 2 - - uid: 15063 + - uid: 15212 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,8.5 + pos: 23.5,-13.5 parent: 2 - - uid: 15064 + - uid: 15213 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,8.5 + pos: 22.5,-13.5 parent: 2 - - uid: 15065 + - uid: 15214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,8.5 + rot: -1.5707963267948966 rad + pos: 18.5,-15.5 parent: 2 - - uid: 15066 + - uid: 15215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 + rot: -1.5707963267948966 rad + pos: 20.5,-15.5 parent: 2 - - uid: 15067 + - uid: 15216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,8.5 + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 parent: 2 - - uid: 15068 + - uid: 15217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,8.5 + rot: -1.5707963267948966 rad + pos: 22.5,-15.5 parent: 2 - - uid: 15070 + - uid: 15218 components: - type: Transform - pos: 14.5,10.5 + rot: -1.5707963267948966 rad + pos: 23.5,-15.5 parent: 2 - - uid: 15071 + - uid: 15219 components: - type: Transform - pos: 14.5,9.5 + rot: -1.5707963267948966 rad + pos: 19.5,-15.5 parent: 2 - - uid: 15072 + - uid: 15220 components: - type: Transform - pos: 14.5,11.5 + rot: 3.141592653589793 rad + pos: 24.5,-16.5 parent: 2 - - uid: 15073 + - uid: 15221 components: - type: Transform - pos: 14.5,12.5 + rot: 3.141592653589793 rad + pos: 24.5,-17.5 parent: 2 - - uid: 15074 + - uid: 15222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,13.5 + rot: 3.141592653589793 rad + pos: 24.5,-18.5 parent: 2 - - uid: 15075 + - uid: 15223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,13.5 + rot: 3.141592653589793 rad + pos: 24.5,-19.5 parent: 2 - - uid: 15076 + - uid: 15224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,13.5 + rot: 3.141592653589793 rad + pos: 24.5,-20.5 parent: 2 - - uid: 15077 + - uid: 15225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,13.5 + rot: 3.141592653589793 rad + pos: 24.5,-21.5 parent: 2 - - uid: 15078 + - uid: 15226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,13.5 + rot: 3.141592653589793 rad + pos: 24.5,-22.5 parent: 2 - - uid: 15081 + - uid: 15227 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,14.5 + pos: 24.5,-24.5 parent: 2 - - uid: 15082 + - uid: 15228 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,16.5 + pos: 24.5,-25.5 parent: 2 - - uid: 15083 + - uid: 15230 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,17.5 + pos: 24.5,-23.5 parent: 2 - - uid: 15084 + - uid: 15234 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,18.5 + pos: 23.5,-33.5 parent: 2 - - uid: 15085 + - uid: 15235 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,15.5 + pos: 23.5,-31.5 parent: 2 - - uid: 15086 + - uid: 15236 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,19.5 + pos: 23.5,-32.5 parent: 2 - - uid: 15087 + - uid: 15237 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,20.5 + pos: 23.5,-30.5 parent: 2 - - uid: 15089 + - uid: 15238 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,22.5 + pos: 23.5,-28.5 parent: 2 - - uid: 15090 + - uid: 15239 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,23.5 + pos: 23.5,-27.5 parent: 2 - - uid: 15091 + - uid: 15240 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,24.5 + pos: 23.5,-29.5 parent: 2 - - uid: 15092 + - uid: 15243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,25.5 + rot: 1.5707963267948966 rad + pos: -9.5,-15.5 parent: 2 - - uid: 15093 + - uid: 15246 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,26.5 + pos: -11.5,-15.5 parent: 2 - - uid: 15094 + - uid: 15247 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,26.5 + pos: -13.5,-15.5 parent: 2 - - uid: 15095 + - uid: 15248 components: - type: Transform - pos: 17.5,25.5 + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 parent: 2 - - uid: 15097 + - uid: 15249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,26.5 + rot: 1.5707963267948966 rad + pos: -15.5,-15.5 parent: 2 - - uid: 15122 + - uid: 15250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,8.5 + rot: 1.5707963267948966 rad + pos: -12.5,-15.5 parent: 2 - - uid: 15123 + - uid: 15251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,8.5 + pos: -16.5,-16.5 parent: 2 - - uid: 15124 + - uid: 15252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,8.5 + pos: -16.5,-18.5 parent: 2 - - uid: 15125 + - uid: 15253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,8.5 + pos: -16.5,-19.5 parent: 2 - - uid: 15126 + - uid: 15254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,8.5 + pos: -16.5,-20.5 parent: 2 - - uid: 15127 + - uid: 15256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,7.5 + pos: -16.5,-22.5 parent: 2 - - uid: 15131 + - uid: 15257 components: - type: Transform - pos: 20.5,5.5 + pos: -16.5,-17.5 parent: 2 - - uid: 15132 + - uid: 15258 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,4.5 + pos: -17.5,-23.5 parent: 2 - - uid: 15133 + - uid: 15259 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,4.5 + pos: -19.5,-23.5 parent: 2 - - uid: 15134 + - uid: 15260 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,4.5 + pos: -18.5,-23.5 parent: 2 - - uid: 15135 + - uid: 15261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,5.5 + rot: 1.5707963267948966 rad + pos: -20.5,-23.5 parent: 2 - - uid: 15139 + - uid: 15262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,4.5 + rot: 1.5707963267948966 rad + pos: -22.5,-23.5 parent: 2 - - uid: 15140 + - uid: 15263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,4.5 + rot: 1.5707963267948966 rad + pos: -23.5,-23.5 parent: 2 - - uid: 15141 + - uid: 15264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-23.5 + parent: 2 + - uid: 15265 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 15266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,4.5 + pos: -24.5,-25.5 parent: 2 - - uid: 15142 + - uid: 15267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,4.5 + pos: -24.5,-26.5 parent: 2 - - uid: 15145 + - uid: 15268 components: - type: Transform - pos: 30.5,5.5 + pos: -24.5,-27.5 parent: 2 - - uid: 15146 + - uid: 15269 components: - type: Transform - pos: 30.5,7.5 + pos: -24.5,-28.5 parent: 2 - - uid: 15147 + - uid: 15270 components: - type: Transform - pos: 30.5,6.5 + pos: -24.5,-29.5 parent: 2 - - uid: 15149 + - uid: 15274 components: - type: Transform - pos: 30.5,9.5 + rot: -1.5707963267948966 rad + pos: -23.5,-30.5 parent: 2 - - uid: 15150 + - uid: 15275 components: - type: Transform - pos: 30.5,10.5 + rot: -1.5707963267948966 rad + pos: -21.5,-30.5 parent: 2 - - uid: 15151 + - uid: 15276 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,11.5 + pos: -22.5,-30.5 parent: 2 - - uid: 15161 + - uid: 15277 components: - type: Transform - pos: 25.5,-0.5 + rot: 3.141592653589793 rad + pos: -24.5,-31.5 parent: 2 - - uid: 15162 + - uid: 15278 components: - type: Transform - pos: 25.5,1.5 + rot: 3.141592653589793 rad + pos: -24.5,-33.5 parent: 2 - - uid: 15163 + - uid: 15279 components: - type: Transform - pos: 25.5,2.5 + rot: 3.141592653589793 rad + pos: -24.5,-32.5 parent: 2 - - uid: 15165 + - uid: 15280 components: - type: Transform - pos: 25.5,0.5 + rot: 1.5707963267948966 rad + pos: -23.5,-34.5 parent: 2 - - uid: 15166 + - uid: 15281 components: - type: Transform - pos: 20.5,3.5 + rot: 1.5707963267948966 rad + pos: -21.5,-34.5 parent: 2 - - uid: 15167 + - uid: 15282 components: - type: Transform - pos: 20.5,1.5 + rot: 1.5707963267948966 rad + pos: -22.5,-34.5 parent: 2 - - uid: 15168 + - uid: 15293 components: - type: Transform - pos: 20.5,0.5 + rot: 1.5707963267948966 rad + pos: -17.5,-14.5 parent: 2 - - uid: 15169 + - uid: 15294 components: - type: Transform - pos: 20.5,-0.5 + pos: -18.5,-13.5 parent: 2 - - uid: 15170 + - uid: 15295 components: - type: Transform - pos: 20.5,2.5 + pos: -18.5,-11.5 parent: 2 - - uid: 15171 + - uid: 15297 components: - type: Transform - pos: 20.5,-1.5 + pos: -18.5,-9.5 parent: 2 - - uid: 15172 + - uid: 15298 components: - type: Transform - pos: 20.5,-2.5 + pos: -18.5,-8.5 parent: 2 - - uid: 15173 + - uid: 15299 components: - type: Transform - pos: 20.5,-3.5 + pos: -18.5,-12.5 parent: 2 - - uid: 15174 + - uid: 15300 components: - type: Transform - pos: 20.5,-4.5 + pos: -18.5,-7.5 parent: 2 - - uid: 15175 + - uid: 15301 components: - type: Transform - pos: 20.5,-5.5 + pos: -18.5,-5.5 parent: 2 - - uid: 15176 + - uid: 15302 components: - type: Transform - pos: 20.5,-6.5 + pos: -18.5,-6.5 parent: 2 - - uid: 15178 + - uid: 15303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-7.5 + rot: -1.5707963267948966 rad + pos: -17.5,-10.5 parent: 2 - - uid: 15179 + - uid: 15304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-7.5 + rot: -1.5707963267948966 rad + pos: -16.5,-10.5 parent: 2 - - uid: 15180 + - uid: 15305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-7.5 + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 parent: 2 - - uid: 15181 + - uid: 15306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-7.5 + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 parent: 2 - - uid: 15182 + - uid: 15310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-7.5 + pos: -10.5,13.5 parent: 2 - - uid: 15183 + - uid: 15311 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-7.5 + pos: -11.5,13.5 parent: 2 - - uid: 15187 + - uid: 15312 components: - type: Transform - pos: 28.5,-9.5 + rot: 1.5707963267948966 rad + pos: -9.5,13.5 parent: 2 - - uid: 15188 + - uid: 15318 components: - type: Transform - pos: 28.5,-11.5 + rot: -1.5707963267948966 rad + pos: -13.5,12.5 parent: 2 - - uid: 15189 + - uid: 15319 components: - type: Transform - pos: 28.5,-12.5 + rot: -1.5707963267948966 rad + pos: -15.5,12.5 parent: 2 - - uid: 15190 + - uid: 15320 components: - type: Transform - pos: 28.5,-13.5 + rot: -1.5707963267948966 rad + pos: -16.5,12.5 parent: 2 - - uid: 15191 + - uid: 15321 components: - type: Transform - pos: 28.5,-14.5 + rot: -1.5707963267948966 rad + pos: -14.5,12.5 parent: 2 - - uid: 15192 + - uid: 15322 components: - type: Transform - pos: 28.5,-15.5 + rot: -1.5707963267948966 rad + pos: -18.5,13.5 parent: 2 - - uid: 15193 + - uid: 15324 components: - type: Transform - pos: 28.5,-16.5 + rot: -1.5707963267948966 rad + pos: -19.5,13.5 parent: 2 - - uid: 15194 + - uid: 15325 components: - type: Transform - pos: 28.5,-17.5 + rot: -1.5707963267948966 rad + pos: -21.5,13.5 parent: 2 - - uid: 15195 + - uid: 15326 components: - type: Transform - pos: 28.5,-18.5 + rot: -1.5707963267948966 rad + pos: -24.5,13.5 parent: 2 - - uid: 15196 + - uid: 15329 components: - type: Transform - pos: 28.5,-10.5 + rot: -1.5707963267948966 rad + pos: -26.5,13.5 parent: 2 - - uid: 15197 + - uid: 15330 components: - type: Transform - pos: 28.5,-19.5 + rot: -1.5707963267948966 rad + pos: -22.5,13.5 parent: 2 - - uid: 15198 + - uid: 15333 components: - type: Transform - pos: 28.5,-21.5 + rot: 1.5707963267948966 rad + pos: -28.5,13.5 parent: 2 - - uid: 15199 + - uid: 15334 components: - type: Transform - pos: 28.5,-22.5 + rot: 1.5707963267948966 rad + pos: -30.5,13.5 parent: 2 - - uid: 15200 + - uid: 15335 components: - type: Transform - pos: 28.5,-24.5 + rot: 1.5707963267948966 rad + pos: -31.5,13.5 parent: 2 - - uid: 15201 + - uid: 15336 components: - type: Transform - pos: 28.5,-23.5 + rot: 1.5707963267948966 rad + pos: -29.5,13.5 parent: 2 - - uid: 15202 + - uid: 15337 components: - type: Transform - pos: 28.5,-20.5 + pos: -32.5,12.5 parent: 2 - - uid: 15204 + - uid: 15338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-25.5 + pos: -32.5,10.5 parent: 2 - - uid: 15205 + - uid: 15339 components: - type: Transform - pos: 20.5,-9.5 + pos: -32.5,11.5 parent: 2 - - uid: 15206 + - uid: 15343 components: - type: Transform - pos: 20.5,-10.5 + pos: -25.5,9.5 parent: 2 - - uid: 15207 + - uid: 15344 components: - type: Transform - pos: 20.5,-8.5 + pos: -25.5,11.5 parent: 2 - - uid: 15208 + - uid: 15348 components: - type: Transform - pos: 20.5,-11.5 + pos: -20.5,14.5 parent: 2 - - uid: 15209 + - uid: 15349 components: - type: Transform - pos: 20.5,-12.5 + pos: -20.5,16.5 parent: 2 - - uid: 15211 + - uid: 15350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-13.5 + pos: -20.5,17.5 parent: 2 - - uid: 15212 + - uid: 15351 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-13.5 + pos: -20.5,15.5 parent: 2 - - uid: 15213 + - uid: 15357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-13.5 + pos: -8.5,24.5 parent: 2 - - uid: 15214 + - uid: 15358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 + pos: -8.5,22.5 parent: 2 - - uid: 15215 + - uid: 15359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-15.5 + pos: -8.5,21.5 parent: 2 - - uid: 15216 + - uid: 15360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-15.5 + pos: -8.5,20.5 parent: 2 - - uid: 15217 + - uid: 15361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-15.5 + pos: -8.5,23.5 parent: 2 - - uid: 15218 + - uid: 15362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-15.5 + pos: -8.5,19.5 parent: 2 - - uid: 15219 + - uid: 15363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-15.5 + pos: -8.5,17.5 parent: 2 - - uid: 15220 + - uid: 15364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-16.5 + pos: -8.5,16.5 parent: 2 - - uid: 15221 + - uid: 15365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-17.5 + pos: -8.5,15.5 parent: 2 - - uid: 15222 + - uid: 15366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-18.5 + pos: -8.5,14.5 parent: 2 - - uid: 15223 + - uid: 15367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-19.5 + pos: -8.5,18.5 parent: 2 - - uid: 15224 + - uid: 15372 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-20.5 + rot: -1.5707963267948966 rad + pos: -1.5,38.5 parent: 2 - - uid: 15225 + - uid: 15373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-21.5 + rot: -1.5707963267948966 rad + pos: 0.5,38.5 parent: 2 - - uid: 15226 + - uid: 15374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-22.5 + rot: -1.5707963267948966 rad + pos: 1.5,38.5 parent: 2 - - uid: 15227 + - uid: 15375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-24.5 + rot: -1.5707963267948966 rad + pos: 2.5,38.5 parent: 2 - - uid: 15228 + - uid: 15376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-25.5 + rot: -1.5707963267948966 rad + pos: 3.5,38.5 parent: 2 - - uid: 15230 + - uid: 15377 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-23.5 + rot: -1.5707963267948966 rad + pos: 4.5,38.5 parent: 2 - - uid: 15234 + - uid: 15378 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-33.5 + rot: -1.5707963267948966 rad + pos: 5.5,38.5 parent: 2 - - uid: 15235 + - uid: 15379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-31.5 + rot: -1.5707963267948966 rad + pos: 6.5,38.5 parent: 2 - - uid: 15236 + - uid: 15380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-32.5 + rot: -1.5707963267948966 rad + pos: -0.5,38.5 parent: 2 - - uid: 15237 + - uid: 15387 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-30.5 + rot: 1.5707963267948966 rad + pos: 8.5,37.5 parent: 2 - - uid: 15238 + - uid: 15388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-28.5 + rot: 1.5707963267948966 rad + pos: 10.5,36.5 parent: 2 - - uid: 15239 + - uid: 15389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-27.5 + rot: 1.5707963267948966 rad + pos: 11.5,36.5 parent: 2 - - uid: 15240 + - uid: 15390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-29.5 + pos: 12.5,37.5 parent: 2 - - uid: 15243 + - uid: 15393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-15.5 + pos: 13.5,39.5 parent: 2 - - uid: 15246 + - uid: 15394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-15.5 + pos: 13.5,41.5 parent: 2 - - uid: 15247 + - uid: 15395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-15.5 + pos: 13.5,40.5 parent: 2 - - uid: 15248 + - uid: 15398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-15.5 + pos: 5.5,-8.5 parent: 2 - - uid: 15249 + - uid: 15399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-15.5 + pos: 5.5,-6.5 parent: 2 - - uid: 15250 + - uid: 15400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-15.5 + pos: 5.5,-7.5 parent: 2 - - uid: 15251 + - uid: 15403 components: - type: Transform - pos: -16.5,-16.5 + rot: 3.141592653589793 rad + pos: 8.5,-2.5 parent: 2 - - uid: 15252 + - uid: 15404 components: - type: Transform - pos: -16.5,-18.5 + rot: 3.141592653589793 rad + pos: 8.5,-4.5 parent: 2 - - uid: 15253 + - uid: 15405 components: - type: Transform - pos: -16.5,-19.5 + rot: 3.141592653589793 rad + pos: 8.5,-3.5 parent: 2 - - uid: 15254 + - uid: 15406 components: - type: Transform - pos: -16.5,-20.5 + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 parent: 2 - - uid: 15256 + - uid: 15407 components: - type: Transform - pos: -16.5,-22.5 + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 parent: 2 - - uid: 15257 + - uid: 15411 components: - type: Transform - pos: -16.5,-17.5 + pos: 2.5,-2.5 parent: 2 - - uid: 15258 + - uid: 15412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-23.5 + pos: 2.5,-3.5 parent: 2 - - uid: 15259 + - uid: 15413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-23.5 + pos: 1.5,-4.5 parent: 2 - - uid: 15260 + - uid: 15414 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-23.5 + pos: 0.5,-4.5 parent: 2 - - uid: 15261 + - uid: 15415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-23.5 + pos: -0.5,-5.5 parent: 2 - - uid: 15262 + - uid: 15416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-23.5 + pos: -0.5,-7.5 parent: 2 - - uid: 15263 + - uid: 15417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-23.5 + pos: -0.5,-8.5 parent: 2 - - uid: 15264 + - uid: 15418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-23.5 + pos: -0.5,-6.5 parent: 2 - - uid: 15265 + - uid: 15419 components: - type: Transform - pos: -24.5,-24.5 + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 parent: 2 - - uid: 15266 + - uid: 15420 components: - type: Transform - pos: -24.5,-25.5 + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 parent: 2 - - uid: 15267 + - uid: 15423 components: - type: Transform - pos: -24.5,-26.5 + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 parent: 2 - - uid: 15268 + - uid: 15424 components: - type: Transform - pos: -24.5,-27.5 + rot: 1.5707963267948966 rad + pos: -13.5,-21.5 parent: 2 - - uid: 15269 + - uid: 15425 components: - type: Transform - pos: -24.5,-28.5 + rot: 1.5707963267948966 rad + pos: -14.5,-21.5 parent: 2 - - uid: 15270 + - uid: 15426 components: - type: Transform - pos: -24.5,-29.5 + rot: -1.5707963267948966 rad + pos: -27.5,44.5 parent: 2 - - uid: 15274 + - uid: 15427 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-30.5 + pos: -25.5,44.5 parent: 2 - - uid: 15275 + - uid: 15428 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-30.5 + pos: -26.5,44.5 parent: 2 - - uid: 15276 + - uid: 15435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-30.5 + pos: -19.5,34.5 parent: 2 - - uid: 15277 + - uid: 15436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-31.5 + pos: -19.5,36.5 parent: 2 - - uid: 15278 + - uid: 15437 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-33.5 + pos: -19.5,35.5 parent: 2 - - uid: 15279 + - uid: 15438 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-32.5 + rot: -1.5707963267948966 rad + pos: -20.5,37.5 parent: 2 - - uid: 15280 + - uid: 15439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-34.5 + rot: -1.5707963267948966 rad + pos: -21.5,37.5 parent: 2 - - uid: 15281 + - uid: 15449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-34.5 + rot: -1.5707963267948966 rad + pos: 48.5,-16.5 parent: 2 - - uid: 15282 + - uid: 15450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-34.5 + rot: -1.5707963267948966 rad + pos: 50.5,-16.5 parent: 2 - - uid: 15293 + - uid: 15451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 + rot: -1.5707963267948966 rad + pos: 49.5,-16.5 parent: 2 - - uid: 15294 + - uid: 15452 components: - type: Transform - pos: -18.5,-13.5 + pos: 51.5,-15.5 parent: 2 - - uid: 15295 + - uid: 15453 components: - type: Transform - pos: -18.5,-11.5 + pos: 51.5,-14.5 parent: 2 - - uid: 15297 + - uid: 15454 components: - type: Transform - pos: -18.5,-9.5 + pos: 51.5,-13.5 parent: 2 - - uid: 15298 + - uid: 15455 components: - type: Transform - pos: -18.5,-8.5 + pos: 51.5,-12.5 parent: 2 - - uid: 15299 + - uid: 15456 components: - type: Transform - pos: -18.5,-12.5 + pos: 51.5,-11.5 parent: 2 - - uid: 15300 + - uid: 15457 components: - type: Transform - pos: -18.5,-7.5 + pos: 51.5,-9.5 parent: 2 - - uid: 15301 + - uid: 15458 components: - type: Transform - pos: -18.5,-5.5 + pos: 51.5,-8.5 parent: 2 - - uid: 15302 + - uid: 15459 components: - type: Transform - pos: -18.5,-6.5 + pos: 51.5,-7.5 parent: 2 - - uid: 15303 + - uid: 15460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-10.5 + pos: 51.5,-6.5 parent: 2 - - uid: 15304 + - uid: 15461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-10.5 + pos: 51.5,-10.5 parent: 2 - - uid: 15305 + - uid: 15463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-10.5 + rot: 1.5707963267948966 rad + pos: 52.5,-5.5 parent: 2 - - uid: 15306 + - uid: 17423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-10.5 + pos: 12.5,-2.5 parent: 2 - - uid: 15310 + - uid: 17434 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,13.5 + pos: 10.5,-1.5 parent: 2 - - uid: 15311 + - uid: 17435 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,13.5 + pos: 11.5,-1.5 parent: 2 - - uid: 15312 + - uid: 17436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,13.5 + pos: 12.5,-4.5 parent: 2 - - uid: 15318 + - uid: 17437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,12.5 + pos: 12.5,-3.5 parent: 2 - - uid: 15319 + - uid: 17438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,12.5 + pos: 12.5,-6.5 parent: 2 - - uid: 15320 + - uid: 17439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,12.5 + pos: 12.5,-7.5 parent: 2 - - uid: 15321 + - uid: 17440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,12.5 + pos: 12.5,-8.5 parent: 2 - - uid: 15322 + - uid: 17441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,13.5 + pos: 12.5,-10.5 parent: 2 - - uid: 15324 + - uid: 17442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,13.5 + pos: 12.5,-5.5 parent: 2 - - uid: 15325 + - uid: 17443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,13.5 + pos: 12.5,-11.5 parent: 2 - - uid: 15326 + - uid: 17444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,13.5 + pos: 12.5,-12.5 parent: 2 - - uid: 15328 + - uid: 17445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,13.5 + pos: 12.5,-13.5 parent: 2 - - uid: 15329 + - uid: 17446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,13.5 + pos: 12.5,-14.5 parent: 2 - - uid: 15330 + - uid: 17447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,13.5 + pos: 12.5,-9.5 parent: 2 - - uid: 15333 + - uid: 19892 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 17641 + - uid: 19894 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,13.5 - parent: 2 - - uid: 15334 + pos: 7.5,7.5 + parent: 17641 + - uid: 19895 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,13.5 - parent: 2 - - uid: 15335 + pos: 8.5,7.5 + parent: 17641 + - uid: 19896 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,13.5 - parent: 2 - - uid: 15336 + pos: 10.5,7.5 + parent: 17641 + - uid: 19897 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,13.5 - parent: 2 - - uid: 15337 + pos: 9.5,7.5 + parent: 17641 + - uid: 19898 components: - type: Transform - pos: -32.5,12.5 - parent: 2 - - uid: 15338 + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 17641 + - uid: 19899 components: - type: Transform - pos: -32.5,10.5 - parent: 2 - - uid: 15339 + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 17641 + - uid: 19900 components: - type: Transform - pos: -32.5,11.5 - parent: 2 - - uid: 15343 + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 17641 + - uid: 19901 components: - type: Transform - pos: -23.5,12.5 - parent: 2 - - uid: 15344 + rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 17641 + - uid: 19902 components: - type: Transform - pos: -23.5,11.5 - parent: 2 - - uid: 15345 + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 17641 + - uid: 19903 components: - type: Transform - pos: -23.5,10.5 - parent: 2 - - uid: 15348 + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 17641 + - uid: 19904 components: - type: Transform - pos: -20.5,14.5 - parent: 2 - - uid: 15349 + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 17641 + - uid: 19905 components: - type: Transform - pos: -20.5,16.5 - parent: 2 - - uid: 15350 + rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 17641 + - uid: 19906 components: - type: Transform - pos: -20.5,17.5 - parent: 2 - - uid: 15351 + rot: 1.5707963267948966 rad + pos: 20.5,6.5 + parent: 17641 + - uid: 19915 components: - type: Transform - pos: -20.5,15.5 - parent: 2 - - uid: 15357 + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 17641 + - uid: 19916 components: - type: Transform - pos: -8.5,24.5 + rot: 3.141592653589793 rad + pos: 36.5,18.5 parent: 2 - - uid: 15358 + - uid: 19917 components: - type: Transform - pos: -8.5,22.5 - parent: 2 - - uid: 15359 + rot: 1.5707963267948966 rad + pos: 22.5,6.5 + parent: 17641 + - uid: 19918 components: - type: Transform - pos: -8.5,21.5 + rot: 3.141592653589793 rad + pos: 36.5,20.5 parent: 2 - - uid: 15360 + - uid: 19919 components: - type: Transform - pos: -8.5,20.5 + rot: 3.141592653589793 rad + pos: 36.5,19.5 parent: 2 - - uid: 15361 + - uid: 19920 components: - type: Transform - pos: -8.5,23.5 - parent: 2 - - uid: 15362 + rot: 1.5707963267948966 rad + pos: 22.5,9.5 + parent: 17641 + - uid: 19921 components: - type: Transform - pos: -8.5,19.5 - parent: 2 - - uid: 15363 + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 17641 + - uid: 19922 components: - type: Transform - pos: -8.5,17.5 - parent: 2 - - uid: 15364 + rot: 1.5707963267948966 rad + pos: 21.5,9.5 + parent: 17641 + - uid: 19951 components: - type: Transform - pos: -8.5,16.5 - parent: 2 - - uid: 15365 + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 17641 + - uid: 19952 components: - type: Transform - pos: -8.5,15.5 - parent: 2 - - uid: 15366 + rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 17641 + - uid: 19953 components: - type: Transform - pos: -8.5,14.5 - parent: 2 - - uid: 15367 + rot: 1.5707963267948966 rad + pos: 13.5,9.5 + parent: 17641 + - uid: 19956 components: - type: Transform - pos: -8.5,18.5 - parent: 2 - - uid: 15372 + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 17641 + - uid: 19957 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,38.5 - parent: 2 - - uid: 15373 + pos: 6.5,1.5 + parent: 17641 + - uid: 19958 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,38.5 - parent: 2 - - uid: 15374 + pos: 7.5,1.5 + parent: 17641 + - uid: 19959 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,38.5 - parent: 2 - - uid: 15375 + pos: 5.5,1.5 + parent: 17641 + - uid: 19960 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,38.5 - parent: 2 - - uid: 15376 + pos: 8.5,1.5 + parent: 17641 + - uid: 19961 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,38.5 - parent: 2 - - uid: 15377 + pos: 9.5,1.5 + parent: 17641 + - uid: 19962 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,38.5 - parent: 2 - - uid: 15378 + pos: 10.5,1.5 + parent: 17641 + - uid: 19963 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,38.5 - parent: 2 - - uid: 15379 + pos: 7.5,3.5 + parent: 17641 + - uid: 19964 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,38.5 - parent: 2 - - uid: 15380 + pos: 9.5,3.5 + parent: 17641 + - uid: 19965 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,38.5 - parent: 2 - - uid: 15387 + pos: 10.5,3.5 + parent: 17641 + - uid: 19966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 17641 + - uid: 19969 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,37.5 - parent: 2 - - uid: 15388 + pos: 0.5,-3.5 + parent: 17641 + - uid: 19970 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,36.5 - parent: 2 - - uid: 15389 + pos: 2.5,-3.5 + parent: 17641 + - uid: 19971 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,36.5 - parent: 2 - - uid: 15390 + pos: 1.5,-3.5 + parent: 17641 + - uid: 19972 components: - type: Transform - pos: 12.5,37.5 - parent: 2 - - uid: 15393 + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 17641 + - uid: 19973 components: - type: Transform - pos: 13.5,39.5 - parent: 2 - - uid: 15394 + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 17641 + - uid: 19974 components: - type: Transform - pos: 13.5,41.5 - parent: 2 - - uid: 15395 + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 17641 + - uid: 19975 components: - type: Transform - pos: 13.5,40.5 - parent: 2 - - uid: 15398 + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 17641 + - uid: 19976 components: - type: Transform - pos: 5.5,-8.5 - parent: 2 - - uid: 15399 + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 17641 + - uid: 19977 components: - type: Transform - pos: 5.5,-6.5 - parent: 2 - - uid: 15400 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 17641 + - uid: 19978 components: - type: Transform - pos: 5.5,-7.5 - parent: 2 - - uid: 15403 + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 17641 + - uid: 19979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-2.5 - parent: 2 - - uid: 15404 + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 17641 + - uid: 19980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 2 - - uid: 15405 + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 17641 + - uid: 19981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-3.5 - parent: 2 - - uid: 15406 + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 17641 + - uid: 19982 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 2 - - uid: 15407 + pos: 15.5,-3.5 + parent: 17641 + - uid: 19983 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 2 - - uid: 15411 + pos: 14.5,-3.5 + parent: 17641 + - uid: 19984 components: - type: Transform - pos: 2.5,-2.5 - parent: 2 - - uid: 15412 + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 17641 + - uid: 19985 components: - type: Transform - pos: 2.5,-3.5 - parent: 2 - - uid: 15413 + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 17641 + - uid: 19986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 2 - - uid: 15414 + rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 17641 + - uid: 19987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 17641 + - uid: 19988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 17641 + - uid: 19989 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 17641 + - uid: 19990 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 17641 + - uid: 19991 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 17641 + - uid: 19992 + components: + - type: Transform + pos: 24.5,0.5 + parent: 17641 + - uid: 19993 + components: + - type: Transform + pos: 24.5,1.5 + parent: 17641 + - uid: 19994 + components: + - type: Transform + pos: 24.5,2.5 + parent: 17641 + - uid: 19995 + components: + - type: Transform + pos: 24.5,3.5 + parent: 17641 + - uid: 19999 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 2 - - uid: 15415 + pos: -1.5,-5.5 + parent: 17641 + - uid: 20000 components: - type: Transform - pos: -0.5,-5.5 - parent: 2 - - uid: 15416 + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 17641 + - uid: 20001 components: - type: Transform - pos: -0.5,-7.5 - parent: 2 - - uid: 15417 + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 17641 + - uid: 20002 components: - type: Transform - pos: -0.5,-8.5 - parent: 2 - - uid: 15418 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 17641 + - uid: 20003 components: - type: Transform - pos: -0.5,-6.5 - parent: 2 - - uid: 15419 + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 17641 + - uid: 20004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 2 - - uid: 15420 + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 17641 + - uid: 20005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 2 - - uid: 15423 + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 17641 + - uid: 20006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-21.5 - parent: 2 - - uid: 15424 + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 17641 + - uid: 20007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 2 - - uid: 15425 + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 17641 + - uid: 20008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 2 - - uid: 15426 + rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 17641 + - uid: 20009 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,44.5 - parent: 2 - - uid: 15427 + pos: 14.5,-5.5 + parent: 17641 + - uid: 20010 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,44.5 - parent: 2 - - uid: 15428 + pos: 15.5,-5.5 + parent: 17641 + - uid: 20011 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,44.5 - parent: 2 - - uid: 15435 + pos: 16.5,-5.5 + parent: 17641 + - uid: 20012 components: - type: Transform - pos: -19.5,34.5 - parent: 2 - - uid: 15436 + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 17641 + - uid: 20013 components: - type: Transform - pos: -19.5,36.5 - parent: 2 - - uid: 15437 + rot: -1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 17641 + - uid: 20014 components: - type: Transform - pos: -19.5,35.5 - parent: 2 - - uid: 15438 + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 17641 + - uid: 20015 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,37.5 - parent: 2 - - uid: 15439 + pos: 23.5,-5.5 + parent: 17641 + - uid: 20016 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,37.5 - parent: 2 - - uid: 15449 + pos: 24.5,-5.5 + parent: 17641 + - uid: 20017 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-16.5 - parent: 2 - - uid: 15450 + pos: 21.5,-5.5 + parent: 17641 + - uid: 20018 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-16.5 - parent: 2 - - uid: 15451 + pos: 25.5,-5.5 + parent: 17641 + - uid: 20019 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-16.5 - parent: 2 - - uid: 15452 + pos: 26.5,-5.5 + parent: 17641 + - uid: 20020 components: - type: Transform - pos: 51.5,-15.5 - parent: 2 - - uid: 15453 + rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 17641 + - uid: 20021 components: - type: Transform - pos: 51.5,-14.5 - parent: 2 - - uid: 15454 + rot: -1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 17641 + - uid: 20022 components: - type: Transform - pos: 51.5,-13.5 - parent: 2 - - uid: 15455 + rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 17641 + - uid: 20023 components: - type: Transform - pos: 51.5,-12.5 - parent: 2 - - uid: 15456 + rot: -1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 17641 + - uid: 20024 components: - type: Transform - pos: 51.5,-11.5 - parent: 2 - - uid: 15457 + rot: -1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 17641 + - uid: 20025 components: - type: Transform - pos: 51.5,-9.5 - parent: 2 - - uid: 15458 + rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 17641 + - uid: 20026 components: - type: Transform - pos: 51.5,-8.5 - parent: 2 - - uid: 15459 + rot: -1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 17641 + - uid: 20027 components: - type: Transform - pos: 51.5,-7.5 - parent: 2 - - uid: 15460 + rot: -1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 17641 + - uid: 20028 components: - type: Transform - pos: 51.5,-6.5 - parent: 2 - - uid: 15461 + rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 17641 + - uid: 20029 components: - type: Transform - pos: 51.5,-10.5 - parent: 2 - - uid: 15463 + rot: -1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 17641 + - uid: 20030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-5.5 - parent: 2 - - uid: 17423 + rot: -1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 17641 + - uid: 20031 components: - type: Transform - pos: 12.5,-2.5 - parent: 2 - - uid: 17434 + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 17641 + - uid: 20033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 2 - - uid: 17435 + pos: 26.5,-0.5 + parent: 17641 + - uid: 20034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 2 - - uid: 17436 + pos: 26.5,0.5 + parent: 17641 + - uid: 20035 components: - type: Transform - pos: 12.5,-4.5 - parent: 2 - - uid: 17437 + pos: 26.5,-1.5 + parent: 17641 + - uid: 20036 components: - type: Transform - pos: 12.5,-3.5 - parent: 2 - - uid: 17438 + pos: 26.5,1.5 + parent: 17641 + - uid: 20037 components: - type: Transform - pos: 12.5,-6.5 - parent: 2 - - uid: 17439 + pos: 26.5,2.5 + parent: 17641 + - uid: 20164 components: - type: Transform - pos: 12.5,-7.5 + rot: 1.5707963267948966 rad + pos: -29.5,5.5 parent: 2 - - uid: 17440 + - uid: 20167 components: - type: Transform - pos: 12.5,-8.5 + rot: 1.5707963267948966 rad + pos: -27.5,6.5 parent: 2 - - uid: 17441 + - uid: 20168 components: - type: Transform - pos: 12.5,-10.5 + rot: 1.5707963267948966 rad + pos: -25.5,6.5 parent: 2 - - uid: 17442 + - uid: 20169 components: - type: Transform - pos: 12.5,-5.5 + rot: 1.5707963267948966 rad + pos: -24.5,6.5 parent: 2 - - uid: 17443 + - uid: 20170 components: - type: Transform - pos: 12.5,-11.5 + rot: 1.5707963267948966 rad + pos: -26.5,6.5 parent: 2 - - uid: 17444 +- proto: DisposalSignalRouterFlipped + entities: + - uid: 5228 components: - type: Transform - pos: 12.5,-12.5 + rot: -1.5707963267948966 rad + pos: 29.5,34.5 parent: 2 - - uid: 17445 + - uid: 20163 components: - type: Transform - pos: 12.5,-13.5 + rot: 3.141592653589793 rad + pos: -28.5,5.5 parent: 2 - - uid: 17446 +- proto: DisposalTrunk + entities: + - uid: 920 components: - type: Transform - pos: 12.5,-14.5 + rot: 3.141592653589793 rad + pos: 9.5,-3.5 parent: 2 - - uid: 17447 + - uid: 1512 components: - type: Transform - pos: 12.5,-9.5 + pos: -10.5,-14.5 parent: 2 - - uid: 19916 + - uid: 2486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,18.5 + rot: 1.5707963267948966 rad + pos: -41.5,43.5 parent: 2 - - uid: 19918 + - uid: 3001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,20.5 + rot: 1.5707963267948966 rad + pos: -41.5,41.5 parent: 2 - - uid: 19919 + - uid: 3607 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,19.5 + pos: -28.5,4.5 parent: 2 -- proto: DisposalTrunk - entities: - - uid: 920 + - uid: 3919 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-3.5 + pos: 12.5,25.5 parent: 2 - - uid: 3001 + - uid: 5188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,41.5 + pos: 30.5,35.5 parent: 2 - - uid: 3919 + - uid: 5275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,25.5 + rot: -1.5707963267948966 rad + pos: 30.5,36.5 parent: 2 - uid: 5769 components: @@ -56182,6 +54408,11 @@ entities: - type: Transform pos: -33.5,60.5 parent: 2 + - uid: 8231 + components: + - type: Transform + pos: -43.5,43.5 + parent: 2 - uid: 8508 components: - type: Transform @@ -56336,12 +54567,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-34.5 parent: 2 - - uid: 15244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-16.5 - parent: 2 - uid: 15272 components: - type: Transform @@ -56383,11 +54608,11 @@ entities: rot: 3.141592653589793 rad pos: -32.5,9.5 parent: 2 - - uid: 15347 + - uid: 15345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,9.5 + rot: 3.141592653589793 rad + pos: -25.5,8.5 parent: 2 - uid: 15352 components: @@ -56445,6 +54670,18 @@ entities: rot: 3.141592653589793 rad pos: 36.5,17.5 parent: 2 + - uid: 20165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,5.5 + parent: 2 + - uid: 20172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 2 - proto: DisposalUnit entities: - uid: 488 @@ -56487,6 +54724,11 @@ entities: - type: Transform pos: 33.5,13.5 parent: 2 + - uid: 2572 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 - uid: 2625 components: - type: Transform @@ -56517,15 +54759,15 @@ entities: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 3533 + - uid: 3534 components: - type: Transform - pos: -10.5,-16.5 + pos: -9.5,0.5 parent: 2 - - uid: 3534 + - uid: 3544 components: - type: Transform - pos: -9.5,0.5 + pos: -28.5,4.5 parent: 2 - uid: 3613 components: @@ -56552,6 +54794,11 @@ entities: - type: Transform pos: -33.5,60.5 parent: 2 + - uid: 7035 + components: + - type: Transform + pos: -43.5,43.5 + parent: 2 - uid: 7733 components: - type: Transform @@ -56657,10 +54904,10 @@ entities: - type: Transform pos: -13.5,-11.5 parent: 2 - - uid: 15342 + - uid: 15346 components: - type: Transform - pos: -22.5,9.5 + pos: -25.5,8.5 parent: 2 - uid: 15354 components: @@ -56733,20 +54980,20 @@ entities: - type: Transform pos: 7.5,-23.5 parent: 2 - - uid: 4899 + - uid: 5985 components: - type: Transform - pos: -22.5,10.5 + pos: 1.5,-9.5 parent: 2 - - uid: 5985 + - uid: 13712 components: - type: Transform - pos: 1.5,-9.5 + pos: -23.5,8.5 parent: 2 - - uid: 13136 + - uid: 17179 components: - type: Transform - pos: 32.5,-7.5 + pos: 31.5,-7.5 parent: 2 - proto: DonkpocketBoxSpawner entities: @@ -56783,38 +55030,43 @@ entities: parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: - - uid: 4897 + - uid: 14667 components: - type: Transform - pos: -24.5,10.5 + pos: -23.5,10.5 parent: 2 - proto: DresserFilled entities: + - uid: 1280 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 - uid: 5251 components: - type: Transform pos: -34.5,25.5 parent: 2 - - uid: 18325 + - uid: 18548 components: - type: Transform - pos: 38.5,-17.5 - parent: 17590 - - uid: 18612 + pos: 32.5,2.5 + parent: 17641 + - uid: 18549 components: - type: Transform - pos: 36.5,-12.5 - parent: 17590 - - uid: 18732 + pos: 28.5,2.5 + parent: 17641 + - uid: 18550 components: - type: Transform - pos: 46.5,-17.5 - parent: 17590 - - uid: 20051 + pos: -3.5,-0.5 + parent: 17641 + - uid: 18551 components: - type: Transform - pos: 46.5,-12.5 - parent: 17590 + pos: -3.5,-1.5 + parent: 17641 - proto: DresserHeadOfPersonnelFilled entities: - uid: 2638 @@ -56831,10 +55083,10 @@ entities: parent: 2 - proto: DresserQuarterMasterFilled entities: - - uid: 2522 + - uid: 947 components: - type: Transform - pos: 39.5,-5.5 + pos: 42.5,-3.5 parent: 2 - proto: DresserResearchDirectorFilled entities: @@ -56855,60 +55107,6 @@ entities: - type: Transform pos: -44.868347,44.457825 parent: 2 - - uid: 12441 - components: - - type: Transform - pos: -13.061483,2.65438 - parent: 2 - - uid: 12442 - components: - - type: Transform - pos: -13.139608,2.62313 - parent: 2 -- proto: DrinkBottleNTCahors - entities: - - uid: 17655 - components: - - type: MetaData - name: бутылка - - type: Transform - pos: 34.664,-17.023438 - parent: 17590 - - uid: 18228 - components: - - type: MetaData - name: бутылка - - type: Transform - pos: 34.585938,-17.710938 - parent: 17590 - - uid: 18272 - components: - - type: MetaData - name: бутылка - - type: Transform - pos: 34.617188,-17.429688 - parent: 17590 - - uid: 18334 - components: - - type: MetaData - name: бутылка - - type: Transform - pos: 34.620544,-18.117432 - parent: 17590 - - uid: 18719 - components: - - type: MetaData - name: бутылка - - type: Transform - pos: 34.42975,-17.835938 - parent: 17590 - - uid: 19850 - components: - - type: MetaData - name: бутылка - - type: Transform - pos: 34.461,-17.054688 - parent: 17590 - proto: DrinkBottleOfNothingFull entities: - uid: 4036 @@ -56939,47 +55137,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: DrinkBottleVodka - entities: - - uid: 1813 - components: - - type: Transform - pos: -41.539494,43.450638 - parent: 2 - - uid: 1815 - components: - - type: Transform - pos: -41.43012,43.450638 - parent: 2 -- proto: DrinkBottleWine - entities: - - uid: 2093 - components: - - type: Transform - pos: -4.223711,-21.314926 - parent: 2 -- proto: DrinkColaCanEmpty - entities: - - uid: 1814 - components: - - type: Transform - pos: -40.68012,41.489395 - parent: 2 - - uid: 4115 - components: - - type: Transform - pos: -40.89887,43.270645 - parent: 2 - - uid: 5981 - components: - - type: Transform - pos: -38.084106,43.231674 - parent: 2 - - uid: 6754 - components: - - type: Transform - pos: -40.945744,41.34877 - parent: 2 - proto: DrinkDemonsBlood entities: - uid: 4302 @@ -57001,15 +55158,13 @@ entities: - type: Transform pos: -23.210617,18.537012 parent: 2 -- proto: DrinkGoldenCup +- proto: DrinkHotCoffee entities: - - uid: 19429 + - uid: 3279 components: - type: Transform - pos: 14.519714,-9.727783 - parent: 17590 -- proto: DrinkHotCoffee - entities: + pos: -63.70328,34.60974 + parent: 2 - uid: 5298 components: - type: Transform @@ -57030,6 +55185,20 @@ entities: - type: Transform pos: 9.764116,-7.276245 parent: 2 +- proto: DrinkMeadGlass + entities: + - uid: 8115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.37984,-15.360943 + parent: 2 + - uid: 8160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.53609,-15.110943 + parent: 2 - proto: DrinkMugOne entities: - uid: 993 @@ -57066,12 +55235,19 @@ entities: - uid: 7786 components: - type: Transform - pos: -43.94841,44.518333 + pos: -44.39426,44.670532 parent: 2 - uid: 7787 components: - type: Transform - pos: -44.120285,44.65896 + pos: -44.534885,44.467407 + parent: 2 +- proto: DrinkSnowWhite + entities: + - uid: 16085 + components: + - type: Transform + pos: 58.67643,-15.311974 parent: 2 - proto: DrinkVodkaBottleFull entities: @@ -57090,11 +55266,6 @@ entities: - type: Transform pos: -30.26958,59.610863 parent: 2 - - uid: 7785 - components: - - type: Transform - pos: -43.6118,44.810127 - parent: 2 - proto: DrinkWineBottleFull entities: - uid: 4096 @@ -57102,18 +55273,28 @@ entities: - type: Transform pos: 0.32904267,26.752815 parent: 2 + - uid: 7762 + components: + - type: Transform + pos: -24.477753,25.026651 + parent: 2 - proto: DrinkWineGlass entities: - - uid: 2094 + - uid: 2016 components: - type: Transform - pos: -4.9132996,-21.502426 + pos: -24.274628,24.573526 parent: 2 - uid: 4097 components: - type: Transform pos: 0.5737252,26.530529 parent: 2 + - uid: 7034 + components: + - type: Transform + pos: -24.634003,24.636026 + parent: 2 - proto: DungeonMasterCircuitBoard entities: - uid: 15772 @@ -57154,35 +55335,36 @@ entities: rot: -1.5707963267948966 rad pos: -2.4781227,47.49913 parent: 2 - - uid: 17241 +- proto: EmergencyLight + entities: + - uid: 706 components: - type: Transform - pos: -17.628046,55.57563 + rot: 3.141592653589793 rad + pos: 22.5,-34.5 parent: 2 - - uid: 17242 + - uid: 1894 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.268671,55.51313 + pos: 31.5,-27.5 parent: 2 - - uid: 17243 + - uid: 4890 components: - type: Transform - pos: -17.440546,55.310005 + rot: 1.5707963267948966 rad + pos: -33.5,11.5 parent: 2 -- proto: EmergencyLight - entities: - - uid: 706 + - uid: 4926 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-34.5 + pos: -24.5,14.5 parent: 2 - - uid: 1894 + - uid: 4936 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-27.5 + pos: -33.5,16.5 parent: 2 - uid: 6270 components: @@ -57196,6 +55378,12 @@ entities: rot: 1.5707963267948966 rad pos: -74.5,15.5 parent: 2 + - uid: 8652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,27.5 + parent: 2 - uid: 8803 components: - type: Transform @@ -57348,12 +55536,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,19.5 parent: 2 - - uid: 15041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,25.5 - parent: 2 - uid: 15043 components: - type: Transform @@ -57480,6 +55662,11 @@ entities: - type: Transform pos: 36.5,-23.5 parent: 2 + - uid: 16111 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 - uid: 17041 components: - type: Transform @@ -57490,6 +55677,12 @@ entities: - type: Transform pos: 23.5,-15.5 parent: 2 + - uid: 20243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 2 - proto: EmergencyOxygenTank entities: - uid: 8053 @@ -57507,14 +55700,6 @@ entities: ents: - 8054 - type: InsideEntityStorage -- proto: EmergencyOxygenTankFilled - entities: - - uid: 977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.618034,-6.399998 - parent: 2 - proto: Emitter entities: - uid: 1819 @@ -57551,22 +55736,6 @@ entities: anchored: False pos: 20.500244,8.5 parent: 16200 -- proto: ERTSpawnerJanitor - entities: - - uid: 4079 - components: - - type: Transform - pos: 28.5,22.5 - parent: 2 - - type: SpawnOnTrigger - proto: MobXeno - - uid: 6268 - components: - - type: Transform - pos: 26.5,22.5 - parent: 2 - - type: SpawnOnTrigger - proto: MobXenoSpitter - proto: ERTSpawnerLeader entities: - uid: 16605 @@ -57618,6 +55787,24 @@ entities: parent: 2 - proto: ExtinguisherCabinetFilled entities: + - uid: 915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 2 + - uid: 946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,11.5 + parent: 2 - uid: 3312 components: - type: Transform @@ -57642,11 +55829,11 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-16.5 parent: 2 - - uid: 6341 + - uid: 7174 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,22.5 + pos: -7.5,19.5 parent: 2 - uid: 7974 components: @@ -57716,34 +55903,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,16.5 parent: 2 -- proto: ExtinguisherCabinetFilledOpen - entities: - - uid: 16067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,27.5 - parent: 2 -- proto: ExtinguisherCabinetOpen - entities: - - uid: 852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 2 - - uid: 7875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,18.5 - parent: 2 - - uid: 16050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,11.5 - parent: 2 - proto: FaxMachineBase entities: - uid: 1431 @@ -57786,6 +55945,14 @@ entities: - type: FaxMachine name: Агент внутренних дел destinationAddress: Агент внутренних дел + - uid: 3186 + components: + - type: Transform + pos: -70.5,37.5 + parent: 2 + - type: FaxMachine + name: '[Не пишите сюда пожалуйста]' + destinationAddress: '[Не пишите сюда пожалуйста]' - uid: 3529 components: - type: Transform @@ -57804,18117 +55971,16967 @@ entities: - type: Transform pos: 27.5,-36.5 parent: 2 - - type: FaxMachine - name: Детектив - destinationAddress: Детектив - - uid: 4900 - components: - - type: Transform - pos: -24.5,9.5 - parent: 2 - - uid: 5087 - components: - - type: Transform - pos: 12.5,40.5 - parent: 2 - - type: FaxMachine - name: Библиотекарь - destinationAddress: Библиотекарь - - uid: 5150 - components: - - type: Transform - pos: 11.5,37.5 - parent: 2 - - type: FaxMachine - name: Общественный - destinationAddress: Общественный - - uid: 7055 - components: - - type: Transform - pos: -28.5,5.5 - parent: 2 - - uid: 19764 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 17590 - - type: FaxMachine - name: "[ERRO] Faxsel: Fax-specific encryption is not supported by NanoTrasen devices. Please, use repeater model 'S.L.M.G'" - destinationAddress: "[ERRO] Faxsel: Fax-specific encryption is not supported by NanoTrasen devices. Please, use repeater model 'S.L.M.G'" -- proto: FaxMachineCaptain - entities: - - uid: 2281 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 2 - - type: FaxMachine - name: Капитан - destinationAddress: Капитан - - uid: 17465 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 2 - - type: FaxMachine - name: Конференц-зал - destinationAddress: Конференц-зал -- proto: FaxMachineCentcom - entities: - - uid: 18327 - components: - - type: MetaData - name: факс дальнего действия SLMG - - type: Transform - pos: 46.5,-15.5 - parent: 17590 - - type: FaxMachine - name: '[ERROR] This address is not supported by your device.' - destinationAddress: "[ERRO] Faxsel: Fax-specific encryption is not supported by NanoTrasen devices. Please, use repeater model 'S.L.M.G'" -- proto: FenceMetalStraight - entities: - - uid: 961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,13.5 - parent: 2 - - uid: 2283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,21.5 - parent: 2 -- proto: filingCabinet - entities: - - uid: 2504 - components: - - type: Transform - pos: 37.5,-6.5 - parent: 2 - - uid: 2525 - components: - - type: Transform - pos: 29.5,7.5 - parent: 2 -- proto: filingCabinetDrawerRandom - entities: - - uid: 5083 - components: - - type: Transform - pos: 11.5,42.5 - parent: 2 -- proto: filingCabinetRandom - entities: - - uid: 391 - components: - - type: Transform - pos: -33.5,17.5 - parent: 2 - - uid: 396 - components: - - type: Transform - pos: -33.5,16.5 - parent: 2 - - uid: 2688 - components: - - type: Transform - pos: -12.5,-22.5 - parent: 2 - - uid: 2725 - components: - - type: Transform - pos: 14.5,-24.5 - parent: 2 - - uid: 3459 - components: - - type: Transform - pos: 38.5,-23.5 - parent: 2 - - uid: 7056 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 2 - - uid: 7057 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 2 -- proto: FireAxeCabinetFilled - entities: - - uid: 2394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-6.5 - parent: 2 - - uid: 4083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 2 -- proto: FireExtinguisher - entities: - - uid: 665 - components: - - type: Transform - pos: -25.335098,-26.577223 - parent: 2 - - uid: 2029 - components: - - type: Transform - parent: 2019 - - type: SolutionContainerManager - solutions: null - containers: - - spray - - type: UseDelay - delays: - default: - endTime: 0 - startTime: 0 - length: 1 - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - solution@spray: !type:ContainerSlot - ent: 2030 - - type: InsideEntityStorage - - uid: 2038 - components: - - type: Transform - parent: 2036 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Firelock - entities: - - uid: 84 - components: - - type: Transform - pos: 41.5,-28.5 - parent: 2 - - uid: 204 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14587 - - 14745 - - uid: 715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,39.5 - parent: 2 - - uid: 872 - components: - - type: Transform - pos: 28.5,-41.5 - parent: 2 - - uid: 898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,41.5 - parent: 2 - - uid: 1079 - components: - - type: Transform - pos: 22.5,-29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14750 - - 14751 - - uid: 1268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,39.5 - parent: 2 - - uid: 1298 - components: - - type: Transform - pos: -26.5,0.5 - parent: 2 - - uid: 1801 - components: - - type: Transform - pos: -71.5,30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14732 - - 14735 - - uid: 1881 - components: - - type: Transform - pos: -30.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12265 - - uid: 2191 - components: - - type: Transform - pos: -26.5,32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14716 - - uid: 2192 - components: - - type: Transform - pos: -26.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14716 - - uid: 2193 - components: - - type: Transform - pos: -30.5,33.5 - parent: 2 - - uid: 2194 - components: - - type: Transform - pos: -30.5,34.5 - parent: 2 - - uid: 2214 - components: - - type: Transform - pos: -30.5,32.5 - parent: 2 - - uid: 2773 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11916 - - 14626 - - 14752 - - uid: 2774 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14626 - - 14627 - - uid: 2778 - components: - - type: Transform - pos: 12.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14626 - - 14627 - - uid: 3043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12284 - - 14646 - - uid: 3044 - components: - - type: Transform - pos: -16.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14717 - - uid: 3113 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14754 - - 14758 - - uid: 3135 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14754 - - 14758 - - uid: 3174 - components: - - type: Transform - pos: 51.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12331 - - uid: 3194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14627 - - 14630 - - uid: 3285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14646 - - uid: 3336 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14745 - - 14747 - - uid: 3342 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11916 - - 14752 - - uid: 3343 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11916 - - 14752 - - uid: 3344 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11916 - - 14752 - - uid: 3349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11916 - - 14754 - - uid: 3350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11916 - - 14754 - - uid: 3351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11916 - - 14754 - - uid: 3475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14646 - - 14647 - - uid: 3517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,16.5 - parent: 2 - - uid: 3574 + - type: FaxMachine + name: Детектив + destinationAddress: Детектив + - uid: 5087 components: - type: Transform - pos: 41.5,-27.5 + pos: 12.5,40.5 parent: 2 - - uid: 3614 + - type: FaxMachine + name: Библиотекарь + destinationAddress: Библиотекарь + - uid: 5150 components: - type: Transform - pos: 24.5,-21.5 + pos: 11.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14747 - - 14750 - - uid: 3779 + - type: FaxMachine + name: Общественный + destinationAddress: Общественный + - uid: 7082 components: + - type: MetaData + name: смешной факс дальнего действия - type: Transform - pos: 23.5,-21.5 + pos: -25.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14747 - - 14750 - - uid: 3817 + - uid: 13947 components: - type: Transform - pos: 23.5,-29.5 + pos: -27.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14750 - - 14751 - - uid: 3824 + - uid: 18552 components: - type: Transform - pos: -5.5,9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14737 - - 14759 - - uid: 3825 + pos: 37.5,-2.5 + parent: 17641 + - type: FaxMachine + name: NT-LH Мусоровоз +- proto: FaxMachineCaptain + entities: + - uid: 2281 components: - type: Transform - pos: -5.5,7.5 + pos: -3.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14737 - - 14759 - - uid: 3827 + - type: FaxMachine + name: Капитан + destinationAddress: Капитан + - uid: 17465 components: - type: Transform - pos: 24.5,-7.5 + pos: 9.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14603 - - 14745 - - uid: 3828 + - type: FaxMachine + name: Конференц-зал + destinationAddress: Конференц-зал +- proto: FenceMetalCorner + entities: + - uid: 4338 components: - type: Transform - pos: 24.5,-8.5 + pos: 59.5,-18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14603 - - 14745 - - uid: 3829 + - uid: 4960 components: - type: Transform - pos: 24.5,-9.5 + rot: 1.5707963267948966 rad + pos: 55.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14603 - - 14745 - - uid: 3830 + - uid: 5178 components: - type: Transform - pos: 27.5,-1.5 + rot: -1.5707963267948966 rad + pos: 55.5,-18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14587 - - 14745 - - uid: 3831 + - uid: 7817 components: - type: Transform - pos: 27.5,6.5 + rot: 1.5707963267948966 rad + pos: 59.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14587 - - 14589 - - uid: 3943 + - uid: 14173 components: - type: Transform - pos: -5.5,8.5 + rot: 3.141592653589793 rad + pos: 55.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14737 - - 14759 - - uid: 4076 + - uid: 14191 components: - type: Transform - pos: -25.5,0.5 + pos: 55.5,-6.5 parent: 2 - - uid: 4356 +- proto: FenceMetalStraight + entities: + - uid: 961 components: - type: Transform - pos: -5.5,42.5 + rot: -1.5707963267948966 rad + pos: -76.5,13.5 parent: 2 - - uid: 4949 + - uid: 2283 components: - type: Transform - pos: -17.5,42.5 + rot: -1.5707963267948966 rad + pos: -76.5,21.5 parent: 2 - - uid: 4987 + - uid: 4300 components: - type: Transform - pos: -7.5,45.5 + pos: 59.5,-16.5 parent: 2 - - uid: 5025 + - uid: 4301 components: - type: Transform - pos: -38.5,25.5 + pos: 59.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14725 - - uid: 5559 + - uid: 4334 components: - type: Transform - pos: -74.5,25.5 + pos: 59.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14876 - - uid: 6220 + - uid: 4339 components: - type: Transform - pos: -6.5,42.5 + pos: 59.5,-12.5 parent: 2 - - uid: 6613 + - uid: 4341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,40.5 + pos: 59.5,-11.5 parent: 2 - - uid: 7615 + - uid: 4546 components: - type: Transform - pos: -0.5,44.5 + pos: 59.5,-9.5 parent: 2 - - uid: 7667 + - uid: 4915 components: - type: Transform - pos: -57.5,30.5 + rot: -1.5707963267948966 rad + pos: 56.5,-18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8893 - - 14732 - - uid: 7668 + - uid: 5752 components: - type: Transform - pos: -57.5,29.5 + rot: 3.141592653589793 rad + pos: 55.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8893 - - 14732 - - uid: 7670 + - uid: 6338 components: - type: Transform - pos: -53.5,30.5 + rot: 3.141592653589793 rad + pos: 55.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14730 - - 8893 - - uid: 7676 + - uid: 6341 components: - type: Transform - pos: -71.5,29.5 + rot: 3.141592653589793 rad + pos: 55.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14732 - - 14735 - - uid: 7680 + - uid: 6553 components: - type: Transform - pos: -39.5,30.5 + rot: 3.141592653589793 rad + pos: 55.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14730 - - uid: 7681 + - uid: 6611 components: - type: Transform - pos: -39.5,29.5 + rot: 3.141592653589793 rad + pos: 55.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14730 - - uid: 7682 + - uid: 6633 components: - type: Transform - pos: -26.5,44.5 + rot: 3.141592653589793 rad + pos: 55.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14719 - - 14723 - - uid: 7689 + - uid: 6696 components: - type: Transform - pos: -30.5,40.5 + rot: 3.141592653589793 rad + pos: 55.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14719 - - 14720 - - uid: 7691 + - uid: 6854 components: - type: Transform - pos: -30.5,41.5 + rot: 3.141592653589793 rad + pos: 55.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14719 - - 14720 - - uid: 7692 + - uid: 7148 components: - type: Transform - pos: -26.5,43.5 + pos: 59.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14719 - - 14723 - - uid: 7693 + - uid: 7409 components: - type: Transform - pos: -26.5,45.5 + pos: 59.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14719 - - 14723 - - uid: 7694 + - uid: 7412 components: - type: Transform - pos: -39.5,33.5 + pos: 59.5,-6.5 parent: 2 - - uid: 7695 + - uid: 7620 components: - type: Transform - pos: -29.5,46.5 + pos: 59.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14719 - - uid: 7696 + - uid: 7663 components: - type: Transform - pos: -27.5,46.5 + rot: 1.5707963267948966 rad + pos: 56.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14719 - - uid: 7697 + - uid: 7768 components: - type: Transform - pos: -20.5,35.5 + rot: 1.5707963267948966 rad + pos: 58.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14705 - - 14716 - - uid: 7698 + - uid: 8333 components: - type: Transform - pos: -19.5,35.5 + rot: -1.5707963267948966 rad + pos: 57.5,-18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14705 - - 14716 - - uid: 7700 + - uid: 12342 components: - type: Transform - pos: 11.5,45.5 + pos: 59.5,-13.5 parent: 2 - - uid: 7704 + - uid: 14149 components: - type: Transform - pos: 11.5,46.5 + rot: -1.5707963267948966 rad + pos: 58.5,-18.5 parent: 2 - - uid: 7705 + - uid: 14181 components: - type: Transform - pos: 18.5,41.5 + rot: 1.5707963267948966 rad + pos: 57.5,-4.5 parent: 2 - - uid: 7706 + - uid: 14186 components: - type: Transform - pos: 19.5,41.5 + rot: 3.141592653589793 rad + pos: 55.5,-5.5 parent: 2 - - uid: 7707 + - uid: 16010 components: - type: Transform - pos: 17.5,37.5 + pos: 59.5,-8.5 parent: 2 - - uid: 7708 +- proto: filingCabinet + entities: + - uid: 2504 components: - type: Transform - pos: 14.5,33.5 + pos: 37.5,-6.5 parent: 2 - - uid: 7709 + - uid: 2525 components: - type: Transform - pos: 14.5,32.5 + pos: 29.5,7.5 parent: 2 - - uid: 7710 + - uid: 7053 components: - type: Transform - pos: 6.5,34.5 + pos: 36.5,-4.5 parent: 2 - - uid: 7711 + - uid: 7083 components: - type: Transform - pos: 7.5,29.5 + pos: 37.5,-4.5 parent: 2 - - uid: 7713 +- proto: filingCabinetDrawerRandom + entities: + - uid: 5083 components: - type: Transform - pos: 23.5,15.5 + pos: 11.5,42.5 parent: 2 - - uid: 7714 +- proto: filingCabinetRandom + entities: + - uid: 391 components: - type: Transform - pos: 22.5,28.5 + pos: -33.5,17.5 parent: 2 - - uid: 7715 + - uid: 396 components: - type: Transform - pos: 22.5,29.5 + pos: -33.5,16.5 parent: 2 - - uid: 7716 + - uid: 2688 components: - type: Transform - pos: 24.5,20.5 + pos: -12.5,-22.5 parent: 2 - - uid: 7717 + - uid: 2725 components: - type: Transform - pos: 24.5,15.5 + pos: 14.5,-24.5 parent: 2 - - uid: 7718 + - uid: 3459 components: - type: Transform - pos: 33.5,-13.5 + pos: 38.5,-23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14603 - - uid: 7724 + - uid: 7056 components: - type: Transform - pos: 49.5,-13.5 + pos: 13.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14609 - - uid: 7725 + - uid: 7057 components: - type: Transform - pos: 46.5,-12.5 + pos: 12.5,-1.5 parent: 2 - - uid: 7726 +- proto: FireAxe + entities: + - uid: 18553 components: - type: Transform - pos: 39.5,-35.5 - parent: 2 - - uid: 7727 + rot: -1.5707963267948966 rad + pos: 0.7215321,-1.0360519 + parent: 17641 +- proto: FireAxeCabinetFilled + entities: + - uid: 2394 components: - type: Transform - pos: 38.5,-35.5 + rot: 3.141592653589793 rad + pos: 2.5,-6.5 parent: 2 - - uid: 7728 + - uid: 4083 components: - type: Transform - pos: 37.5,-42.5 + rot: -1.5707963267948966 rad + pos: -3.5,-26.5 parent: 2 - - uid: 7729 +- proto: FireAxeCabinetOpen + entities: + - uid: 4767 components: + - type: MetaData + desc: Кто решил, что хорошая идея дать научному руководителю топор? - type: Transform - pos: 37.5,-43.5 + rot: 3.141592653589793 rad + pos: -15.5,0.5 parent: 2 - - uid: 7730 + - uid: 18554 components: - type: Transform - pos: 27.5,-41.5 - parent: 2 - - uid: 7822 + pos: 19.5,-2.5 + parent: 17641 +- proto: FireExtinguisher + entities: + - uid: 665 components: - type: Transform - pos: -0.5,45.5 + pos: -25.335098,-26.577223 parent: 2 - - uid: 8184 +- proto: Firelock + entities: + - uid: 84 components: - type: Transform - pos: -16.5,8.5 + pos: 41.5,-28.5 parent: 2 - - uid: 8185 + - uid: 204 components: - type: Transform - pos: -3.5,10.5 + pos: 27.5,-0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13264 - - 14737 - - uid: 8186 + - 14587 + - 14745 + - uid: 360 components: - type: Transform - pos: -1.5,10.5 + rot: -1.5707963267948966 rad + pos: -30.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13264 - - 14737 - - uid: 8187 + - uid: 715 components: - type: Transform - pos: -2.5,10.5 + rot: -1.5707963267948966 rad + pos: -58.5,39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13264 - - 14737 - - uid: 8188 + - uid: 872 components: - type: Transform - pos: 13.5,10.5 + pos: 28.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14565 - - 14741 - - uid: 8189 + - uid: 898 components: - type: Transform - pos: 15.5,10.5 + rot: -1.5707963267948966 rad + pos: -49.5,41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14565 - - 14741 - - uid: 8190 + - uid: 1079 components: - type: Transform - pos: 14.5,10.5 + pos: 22.5,-29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14565 - - 14741 - - uid: 8192 + - 14750 + - 14751 + - uid: 1268 components: - type: Transform - pos: 22.5,2.5 + rot: -1.5707963267948966 rad + pos: -59.5,39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14589 - - 14744 - - uid: 8193 + - uid: 1298 components: - type: Transform - pos: 22.5,3.5 + pos: -26.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14589 - - 14744 - - uid: 8194 + - uid: 1801 components: - type: Transform - pos: 22.5,1.5 + pos: -71.5,30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14589 - - 14744 - - uid: 8195 + - 14732 + - 14735 + - uid: 1881 components: - type: Transform - pos: 21.5,-0.5 + pos: -30.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14744 - - 14745 - - uid: 8196 + - 12265 + - uid: 2191 components: - type: Transform - pos: 19.5,-0.5 + pos: -26.5,32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14744 - - 14745 - - uid: 8197 + - 14716 + - uid: 2192 components: - type: Transform - pos: 20.5,-0.5 + pos: -26.5,34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14744 - - 14745 - - uid: 11395 + - 14716 + - uid: 2193 components: - type: Transform - pos: -16.5,46.5 + pos: -30.5,33.5 parent: 2 - - uid: 11397 + - uid: 2194 components: - type: Transform - pos: -17.5,46.5 + pos: -30.5,34.5 parent: 2 - - uid: 11605 + - uid: 2214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-4.5 + pos: -30.5,32.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: 12.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14627 - - 14628 - - uid: 11657 + - 11916 + - 14626 + - 14752 + - uid: 2774 components: - type: Transform - pos: -53.5,29.5 + pos: 13.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14730 - - 8893 - - uid: 12074 + - 14626 + - 14627 + - uid: 2778 components: - type: Transform - pos: -0.5,-17.5 + pos: 12.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12305 - - 11916 - - uid: 12258 + - 14626 + - 14627 + - uid: 3043 components: - type: Transform - pos: -26.5,-28.5 + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12257 - - uid: 12259 + - 12284 + - 14646 + - uid: 3044 components: - type: Transform - pos: -24.5,-28.5 + pos: -16.5,34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12257 - - uid: 12260 + - 14717 + - uid: 3113 components: - type: Transform - pos: -23.5,-30.5 + pos: -7.5,-0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12257 - - 12264 - - uid: 12261 + - 14754 + - 14758 + - uid: 3135 components: - type: Transform - pos: -19.5,-27.5 + pos: -8.5,-0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12264 - - uid: 12262 + - 14754 + - 14758 + - uid: 3194 components: - type: Transform - pos: -19.5,-25.5 + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12264 - - uid: 12263 + - 14627 + - 14630 + - uid: 3285 components: - type: Transform - pos: -20.5,-24.5 + rot: 1.5707963267948966 rad + pos: -16.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12264 - - 12265 - - uid: 12266 + - 14646 + - uid: 3349 components: - type: Transform - pos: -19.5,-21.5 + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12265 - - 12270 - - uid: 12267 + - 11916 + - 14754 + - uid: 3350 components: - type: Transform - pos: -19.5,-23.5 + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12265 - - 12270 - - uid: 12268 + - 11916 + - 14754 + - uid: 3351 components: - type: Transform - pos: -24.5,-24.5 + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12265 - - uid: 12269 + - 11916 + - 14754 + - uid: 3475 components: - type: Transform - pos: -26.5,-24.5 + rot: 1.5707963267948966 rad + pos: -16.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12265 - - uid: 12271 + - 14646 + - 14647 + - uid: 3517 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-21.5 + pos: -12.5,16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 12270 - - 12294 - - uid: 12280 + - uid: 3559 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-13.5 + pos: -36.5,40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 12279 - - 2601 - - uid: 12304 + - uid: 3574 components: - type: Transform - pos: -7.5,-19.5 + pos: 41.5,-27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 11940 - - uid: 12307 + - uid: 3614 components: - type: Transform - pos: -1.5,-19.5 + pos: 24.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12305 - - uid: 12321 + - 14747 + - 14750 + - uid: 3779 components: - type: Transform - pos: 9.5,-21.5 + pos: 23.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12320 - - 12322 - - uid: 12323 + - 14747 + - 14750 + - uid: 3817 components: - type: Transform - pos: 12.5,-22.5 + pos: 23.5,-29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12322 - - uid: 12332 + - 14750 + - 14751 + - uid: 3824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-20.5 + pos: -5.5,9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14677 - - uid: 12654 + - 14737 + - 14759 + - uid: 3825 components: - type: Transform - pos: -72.5,25.5 + pos: -5.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14735 - - 14876 - - uid: 12657 + - 14737 + - 14759 + - uid: 3827 components: - type: Transform - pos: -73.5,25.5 + pos: 24.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14735 - - 14876 - - uid: 12669 + - 14603 + - 14745 + - uid: 3828 components: - type: Transform - pos: -56.5,25.5 + pos: 24.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8893 - - uid: 12674 + - 14603 + - 14745 + - uid: 3829 components: - type: Transform - pos: -54.5,25.5 + pos: 24.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8893 - - uid: 12692 + - 14603 + - 14745 + - uid: 3830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,19.5 + pos: 27.5,-1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14725 - - 14726 - - uid: 12714 + - 14587 + - 14745 + - uid: 3831 components: - type: Transform - pos: -54.5,19.5 + pos: 27.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14067 - - uid: 12715 + - 14587 + - 14589 + - uid: 3943 components: - type: Transform - pos: -55.5,19.5 + pos: -5.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14067 - - uid: 12718 + - 14737 + - 14759 + - uid: 4076 components: - type: Transform - pos: -56.5,19.5 + pos: -25.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14067 - - uid: 12900 + - uid: 4356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,19.5 + pos: -5.5,42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14725 - - 14726 - - uid: 12909 + - uid: 4738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,19.5 + pos: -3.5,16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14725 - - 14726 - - uid: 13087 + - uid: 4770 components: - type: Transform - pos: -8.5,5.5 + pos: -26.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14758 - - 14759 - - uid: 13088 + - uid: 4949 components: - type: Transform - pos: -7.5,5.5 + pos: -17.5,42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14758 - - 14759 - - uid: 13091 + - uid: 4987 components: - type: Transform - pos: 20.5,5.5 + pos: -7.5,45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14743 - - 14744 - - uid: 13092 + - uid: 5025 components: - type: Transform - pos: 21.5,5.5 + pos: -38.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14743 - - 14744 - - uid: 13093 + - 14725 + - uid: 5559 components: - type: Transform - pos: 17.5,7.5 + pos: -74.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14741 - - 14743 - - uid: 13095 + - 14876 + - uid: 6220 components: - type: Transform - pos: 17.5,8.5 + pos: -6.5,42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14741 - - 14743 - - uid: 13127 + - uid: 6613 components: - type: Transform - pos: 22.5,-11.5 + rot: -1.5707963267948966 rad + pos: -49.5,40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14745 - - 14746 - - uid: 13128 + - uid: 7615 components: - type: Transform - pos: 22.5,-13.5 + pos: -0.5,44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14745 - - 14746 - - uid: 13129 + - uid: 7667 components: - type: Transform - pos: 22.5,-12.5 + pos: -57.5,30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14745 - - 14746 - - uid: 13134 + - 8893 + - 14732 + - uid: 7668 components: - type: Transform - pos: 18.5,-15.5 + pos: -57.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14747 - - 14752 - - uid: 13135 + - 8893 + - 14732 + - uid: 7670 components: - type: Transform - pos: 18.5,-16.5 + pos: -53.5,30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14747 - - 14752 - - uid: 13166 + - 14730 + - 8893 + - uid: 7676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,16.5 + pos: -71.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14678 - - 13264 - - uid: 13167 + - 14732 + - 14735 + - uid: 7680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,16.5 + pos: -39.5,30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14678 - - 13264 - - uid: 13172 + - 14730 + - uid: 7681 components: - type: Transform - pos: -3.5,30.5 + pos: -39.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14678 - - 14681 - - uid: 13173 + - 14730 + - uid: 7682 components: - type: Transform - pos: -2.5,30.5 + pos: -26.5,44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14678 - - 14681 - - uid: 13177 + - 14719 + - 14723 + - uid: 7689 components: - type: Transform - pos: -3.5,34.5 + pos: -30.5,40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14681 - - 14683 - - uid: 13178 + - 14719 + - 14720 + - uid: 7691 components: - type: Transform - pos: -2.5,34.5 + pos: -30.5,41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14681 - - 14683 - - uid: 13186 + - 14719 + - 14720 + - uid: 7692 components: - type: Transform - pos: -5.5,32.5 + pos: -26.5,43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14681 - - 14717 - - uid: 13187 + - 14719 + - 14723 + - uid: 7693 components: - type: Transform - pos: -5.5,33.5 + pos: -26.5,45.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14681 - - 14717 - - uid: 13188 + - 14719 + - 14723 + - uid: 7694 components: - type: Transform - pos: -5.5,31.5 + pos: -39.5,33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14681 - - 14717 - - uid: 13190 + - uid: 7695 components: - type: Transform - pos: -17.5,32.5 + pos: -29.5,46.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14716 - - 14717 - - uid: 13191 + - 14719 + - uid: 7696 components: - type: Transform - pos: -17.5,33.5 + pos: -27.5,46.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14716 - - 14717 - - uid: 13197 + - 14719 + - uid: 7697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 + pos: -20.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13264 - - uid: 13269 + - 14705 + - 14716 + - uid: 7698 components: - type: Transform - pos: -37.5,25.5 + pos: -19.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14725 - - uid: 13270 + - 14705 + - 14716 + - uid: 7700 components: - type: Transform - pos: -36.5,25.5 + pos: 11.5,45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14725 - - uid: 13277 + - uid: 7704 components: - type: Transform - pos: -55.5,25.5 + pos: 11.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8893 - - uid: 13590 + - uid: 7705 components: - type: Transform - pos: 16.5,34.5 + pos: 18.5,41.5 parent: 2 - - uid: 13598 + - uid: 7706 components: - type: Transform - pos: 16.5,21.5 + pos: 19.5,41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14565 - - uid: 13599 + - uid: 7707 components: - type: Transform - pos: 18.5,16.5 + pos: 17.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14565 - - 14561 - - uid: 13623 + - uid: 7708 components: - type: Transform - pos: 28.5,-37.5 + pos: 14.5,33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14612 - - uid: 14150 + - uid: 7709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,13.5 + pos: 14.5,32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14028 - - 13264 - - uid: 14205 + - uid: 7710 components: - type: Transform - pos: -16.5,30.5 + pos: 6.5,34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14717 - - uid: 14529 + - uid: 7711 components: - type: Transform - pos: 48.5,-9.5 + pos: 7.5,29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 12331 - - uid: 14531 + - uid: 7713 components: - type: Transform - pos: 50.5,-18.5 + pos: 23.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14609 - - uid: 14570 + - uid: 7714 components: - type: Transform - pos: 4.5,15.5 + pos: 22.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14565 - - 14568 - - uid: 14571 + - uid: 7715 components: - type: Transform - pos: 14.5,22.5 + pos: 22.5,29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14565 - - uid: 14572 + - uid: 7716 components: - type: Transform - pos: 22.5,16.5 + pos: 24.5,20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14561 - - uid: 14577 + - uid: 7717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,24.5 + pos: 24.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14564 - - uid: 14578 + - uid: 7718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 + pos: 33.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14569 - - uid: 14579 + - 14603 + - uid: 7724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,27.5 + pos: 49.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14569 - - uid: 14580 + - 14609 + - uid: 7725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,19.5 + pos: 46.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14567 - - uid: 14581 + - uid: 7726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,19.5 + pos: 39.5,-35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14566 - - uid: 14582 + - uid: 7727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,18.5 + pos: 38.5,-35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14568 - - uid: 14583 + - uid: 7728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 + pos: 37.5,-42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14568 - - 13264 - - uid: 14584 + - uid: 7729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,13.5 + pos: 37.5,-43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14568 - - uid: 14585 + - uid: 7730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,14.5 + pos: 27.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14565 - - uid: 14591 + - uid: 7822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,9.5 + pos: -0.5,45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14587 - - uid: 14592 + - uid: 8185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,7.5 + pos: -3.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14587 - - 14588 - - uid: 14593 + - 13264 + - 14737 + - uid: 8186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,5.5 + pos: -1.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14587 - - 14588 - - uid: 14594 + - 13264 + - 14737 + - uid: 8187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,3.5 + pos: -2.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14588 - - uid: 14595 + - 13264 + - 14737 + - uid: 8188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,4.5 + pos: 13.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14588 - - uid: 14596 + - 14565 + - 14741 + - uid: 8189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,5.5 + pos: 15.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14588 - - uid: 14597 + - 14565 + - 14741 + - uid: 8190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,7.5 + pos: 14.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14588 - - uid: 14598 + - 14565 + - 14741 + - uid: 8192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,8.5 + pos: 22.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14588 - - uid: 14601 + - 14589 + - 14744 + - uid: 8193 components: - type: Transform - pos: 39.5,-3.5 + pos: 22.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14590 - - uid: 14613 + - 14589 + - 14744 + - uid: 8194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 + pos: 22.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14603 - - uid: 14614 + - 14589 + - 14744 + - uid: 11395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-18.5 + pos: -16.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14603 - - uid: 14616 + - uid: 11397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-21.5 + pos: -17.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14604 - - uid: 14617 + - uid: 11605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-21.5 + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14604 - - uid: 14618 + - 14627 + - 14628 + - uid: 11657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-26.5 + pos: -53.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14604 - - 14606 - - uid: 14619 + - 14730 + - 8893 + - uid: 12074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 + pos: -0.5,-17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14604 - - 14606 - - uid: 14620 + - 12305 + - 11916 + - uid: 12258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-25.5 + pos: -26.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14604 - - uid: 14621 + - 12257 + - uid: 12259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-29.5 + pos: -24.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14606 - - uid: 14622 + - 12257 + - uid: 12260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-33.5 + pos: -23.5,-30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14612 - - 14751 - - uid: 14624 + - 12257 + - 12264 + - uid: 12261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-35.5 + pos: -19.5,-27.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14605 - - uid: 14625 + - 12264 + - uid: 12262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-35.5 + pos: -19.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14605 - - uid: 14629 + - 12264 + - uid: 12263 components: - type: Transform - pos: 13.5,-13.5 + pos: -20.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11916 - - 14626 - - 14752 - - uid: 14633 + - 12264 + - 12265 + - uid: 12266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-7.5 + pos: -19.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14631 - - uid: 14634 + - 12265 + - 12270 + - uid: 12267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 + pos: -19.5,-23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14631 - - 14630 - - uid: 14636 + - 12265 + - 12270 + - uid: 12268 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-8.5 + pos: -24.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14635 - - 14646 - - uid: 14637 + - 12265 + - uid: 12269 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-10.5 + pos: -26.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14635 - - 14646 - - uid: 14639 + - 12265 + - uid: 12271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 + rot: -1.5707963267948966 rad + pos: -15.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14635 - - 14754 - - uid: 14641 + - 12270 + - 12294 + - uid: 12280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 + rot: -1.5707963267948966 rad + pos: -19.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - 12279 - - 14646 - - uid: 14642 + - 2601 + - uid: 12304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 + pos: -7.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12279 - - 14646 - - uid: 14644 + - 11940 + - uid: 12307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-3.5 + pos: -1.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14646 - - 14541 - - uid: 14645 + - 12305 + - uid: 12321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,2.5 + pos: 9.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14646 - - uid: 14648 + - 12320 + - 12322 + - uid: 12323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,16.5 + pos: 12.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14028 - - uid: 14649 + - 12322 + - uid: 12332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,13.5 + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14028 - - 14654 - - uid: 14650 + - 14677 + - uid: 12654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,16.5 + pos: -72.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14028 - - 14659 - - uid: 14651 + - 14735 + - 14876 + - uid: 12657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,16.5 + pos: -73.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14654 - - 14655 - - uid: 14653 + - 14735 + - 14876 + - uid: 12669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,13.5 + pos: -56.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14654 - - 14669 - - uid: 14656 + - 8893 + - uid: 12674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,17.5 + pos: -54.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14655 - - 14659 - - uid: 14657 + - 8893 + - uid: 12692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,25.5 + rot: 1.5707963267948966 rad + pos: -37.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14659 - - 14660 - - uid: 14658 + - 14725 + - 14726 + - uid: 12714 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,25.5 + pos: -54.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14659 - - uid: 14662 + - 14067 + - uid: 12715 components: - type: Transform - pos: -17.5,23.5 + pos: -55.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14661 - - 14664 - - uid: 14663 + - 14067 + - uid: 12718 components: - type: Transform - pos: -17.5,19.5 + pos: -56.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14664 - - 14669 - - uid: 14666 + - 14067 + - uid: 12900 components: - type: Transform - pos: -19.5,9.5 + rot: 1.5707963267948966 rad + pos: -38.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14669 - - uid: 14667 + - 14725 + - 14726 + - uid: 12909 components: - type: Transform - pos: -21.5,13.5 + rot: 1.5707963267948966 rad + pos: -36.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14669 - - uid: 14668 + - 14725 + - 14726 + - uid: 13087 components: - type: Transform - pos: -21.5,17.5 + pos: -8.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14669 - - uid: 14671 + - 14758 + - 14759 + - uid: 13088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 + pos: -7.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14670 - - uid: 14672 + - 14758 + - 14759 + - uid: 13091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,8.5 + pos: 20.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14670 - - uid: 14674 + - 14743 + - 14744 + - uid: 13092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,12.5 + pos: 21.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14673 - - uid: 14675 + - 14743 + - 14744 + - uid: 13093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-22.5 + pos: 17.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14677 - - 33 - - uid: 14676 + - 14741 + - 14743 + - uid: 13095 components: - type: Transform - pos: -28.5,13.5 + pos: 17.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14044 - - uid: 14679 + - 14741 + - 14743 + - uid: 13127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,28.5 + pos: 22.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14678 - - uid: 14680 + - 14745 + - 14746 + - uid: 13128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,28.5 + pos: 22.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14678 - - uid: 14682 + - 14745 + - 14746 + - uid: 13129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,31.5 + pos: 22.5,-12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14681 - - uid: 14684 + - 14745 + - 14746 + - uid: 13166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,42.5 + rot: 1.5707963267948966 rad + pos: -1.5,16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14683 - - uid: 14685 + - 14678 + - 13264 + - uid: 13167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,38.5 + rot: 1.5707963267948966 rad + pos: -2.5,16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14683 - - 14687 - - uid: 14688 + - 14678 + - 13264 + - uid: 13172 components: - type: Transform - pos: 10.5,37.5 + pos: -3.5,30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14687 - - uid: 14689 + - 14678 + - 14681 + - uid: 13173 components: - type: Transform - pos: 10.5,38.5 + pos: -2.5,30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14687 - - uid: 14690 + - 14678 + - 14681 + - uid: 13177 components: - type: Transform - pos: 10.5,36.5 + pos: -3.5,34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14687 - - uid: 14691 + - 14681 + - 14683 + - uid: 13178 components: - type: Transform - pos: 7.5,44.5 + pos: -2.5,34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14687 - - uid: 14694 + - 14681 + - 14683 + - uid: 13186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,44.5 + pos: -5.5,32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14693 - - uid: 14695 + - 14681 + - 14717 + - uid: 13187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,39.5 + pos: -5.5,33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14693 - - uid: 14697 + - 14681 + - 14717 + - uid: 13188 components: - type: Transform - pos: -12.5,34.5 + pos: -5.5,31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14696 + - 14681 - 14717 - - uid: 14698 + - uid: 13190 components: - type: Transform - pos: -10.5,34.5 + pos: -17.5,32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14696 + - 14716 - 14717 - - uid: 14699 + - uid: 13191 components: - type: Transform - pos: -11.5,34.5 + pos: -17.5,33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14696 + - 14716 - 14717 - - uid: 14700 + - uid: 13197 components: - type: Transform - pos: -11.5,42.5 + rot: -1.5707963267948966 rad + pos: -0.5,12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14696 - - uid: 14701 + - 13264 + - uid: 13269 components: - type: Transform - pos: -11.5,45.5 + pos: -37.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14704 - - uid: 14702 + - 14725 + - uid: 13270 components: - type: Transform - pos: -11.5,49.5 + pos: -36.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14704 - - uid: 14703 + - 14725 + - uid: 13277 components: - type: Transform - pos: -12.5,47.5 + pos: -55.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14704 - - uid: 14710 + - 8893 + - uid: 13590 components: - type: Transform - pos: -32.5,31.5 + pos: 16.5,34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14709 - - uid: 14711 + - uid: 13598 components: - type: Transform - pos: -35.5,29.5 + pos: 16.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14709 - - uid: 14713 + - 14565 + - uid: 13599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,28.5 + pos: 18.5,16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14706 - - 14724 - - uid: 14714 + - 14565 + - 14561 + - uid: 13623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,26.5 + pos: 28.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14707 - - 14724 - - uid: 14715 + - 14612 + - uid: 14150 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,26.5 + pos: -4.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14708 - - 14724 - - uid: 14718 + - 14028 + - 13264 + - uid: 14205 components: - type: Transform - pos: -6.5,34.5 + pos: -16.5,30.5 parent: 2 - type: DeviceNetwork deviceLists: - 14717 - - uid: 14721 + - uid: 14529 components: - type: Transform - pos: -25.5,46.5 + pos: 48.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14723 - - uid: 14722 + - 12331 + - uid: 14531 components: - type: Transform - pos: -25.5,42.5 + pos: 50.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14723 - - uid: 14727 + - 14609 + - uid: 14570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,31.5 + pos: 4.5,15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14730 - - uid: 14728 + - 14565 + - 14568 + - uid: 14571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,31.5 + pos: 14.5,22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14730 - - uid: 14729 + - 14565 + - uid: 14572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,31.5 + pos: 22.5,16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14730 - - uid: 14733 + - 14561 + - uid: 14577 components: - type: Transform - pos: -58.5,31.5 + rot: -1.5707963267948966 rad + pos: 8.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14732 - - uid: 14734 + - 14564 + - uid: 14578 components: - type: Transform - pos: -70.5,31.5 + rot: -1.5707963267948966 rad + pos: 3.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14732 - - uid: 14742 + - 14569 + - uid: 14579 components: - type: Transform - pos: 22.5,9.5 + rot: -1.5707963267948966 rad + pos: 3.5,27.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14743 - - uid: 14748 + - 14569 + - uid: 14580 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-17.5 + pos: 2.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14747 - - uid: 14749 + - 14567 + - uid: 14581 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-19.5 + pos: 4.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14747 - - uid: 14753 + - 14566 + - uid: 14582 components: - type: Transform - pos: 12.5,-17.5 + rot: -1.5707963267948966 rad + pos: 3.5,18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14752 - - uid: 15692 + - 14568 + - uid: 14583 components: - type: Transform - pos: -26.5,33.5 + rot: -1.5707963267948966 rad + pos: -0.5,15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14716 - - uid: 15786 + - 14568 + - 13264 + - uid: 14584 components: - type: Transform - pos: -27.5,35.5 + rot: -1.5707963267948966 rad + pos: 2.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14719 - - uid: 15789 + - 14568 + - uid: 14585 components: - type: Transform - pos: -29.5,35.5 + rot: -1.5707963267948966 rad + pos: 22.5,14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14719 - - uid: 15790 + - 14565 + - uid: 14591 components: - type: Transform - pos: -28.5,35.5 + rot: -1.5707963267948966 rad + pos: 30.5,9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14719 - - uid: 15798 + - 14587 + - uid: 14592 components: - type: Transform - pos: -29.5,31.5 + rot: -1.5707963267948966 rad + pos: 35.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14724 - - uid: 17036 + - 14587 + - 14588 + - uid: 14593 components: - type: Transform - pos: -27.5,31.5 + rot: -1.5707963267948966 rad + pos: 35.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14724 - - uid: 17038 + - 14587 + - 14588 + - uid: 14594 components: - type: Transform - pos: -28.5,31.5 + rot: -1.5707963267948966 rad + pos: 39.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14724 - - uid: 17176 + - 14588 + - uid: 14595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,46.5 + rot: -1.5707963267948966 rad + pos: 41.5,4.5 parent: 2 - - uid: 17177 + - type: DeviceNetwork + deviceLists: + - 14588 + - uid: 14596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,45.5 + rot: -1.5707963267948966 rad + pos: 41.5,5.5 parent: 2 - - uid: 17516 + - type: DeviceNetwork + deviceLists: + - 14588 + - uid: 14597 components: - type: Transform - pos: -17.5,49.5 + rot: -1.5707963267948966 rad + pos: 41.5,7.5 parent: 2 - - uid: 17517 + - type: DeviceNetwork + deviceLists: + - 14588 + - uid: 14598 components: - type: Transform - pos: -16.5,49.5 + rot: -1.5707963267948966 rad + pos: 41.5,8.5 parent: 2 - - uid: 19576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 17590 - - uid: 19577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 17590 - - uid: 19578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 17590 - - uid: 19698 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 17590 - - uid: 19699 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 17590 - - uid: 19700 - components: - - type: Transform - pos: 41.5,-2.5 - parent: 17590 - - uid: 19701 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 17590 - - uid: 19702 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 17590 - - uid: 19703 - components: - - type: Transform - pos: 40.5,-14.5 - parent: 17590 - - uid: 19704 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 17590 - - uid: 19705 - components: - - type: Transform - pos: 43.5,-18.5 - parent: 17590 - - uid: 19706 + - type: DeviceNetwork + deviceLists: + - 14588 + - uid: 14601 components: - type: Transform - pos: 40.5,-18.5 - parent: 17590 -- proto: FirelockEdge - entities: - - uid: 3025 + pos: 39.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14590 + - uid: 14620 components: - type: Transform - pos: 3.5,-16.5 + rot: -1.5707963267948966 rad + pos: 35.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12309 - - 11916 - - uid: 3346 + - 14604 + - uid: 14621 components: - type: Transform - pos: 4.5,-16.5 + rot: -1.5707963267948966 rad + pos: 30.5,-29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12309 - - 11916 - - uid: 3347 + - 14606 + - uid: 14622 components: - type: Transform - pos: 5.5,-16.5 + rot: -1.5707963267948966 rad + pos: 24.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12309 - - 11916 - - uid: 3348 + - 14612 + - 14751 + - uid: 14624 components: - type: Transform - pos: 6.5,-16.5 + rot: -1.5707963267948966 rad + pos: 34.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12309 - - 11916 - - uid: 3832 + - 14605 + - uid: 14625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,4.5 + rot: -1.5707963267948966 rad + pos: 32.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14589 - - uid: 12274 + - 14605 + - uid: 14629 components: - type: Transform - pos: -18.5,-23.5 + pos: 13.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12270 - - uid: 12275 + - 11916 + - 14626 + - 14752 + - uid: 14633 components: - type: Transform - pos: -16.5,-23.5 + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12270 - - uid: 14574 + - 14631 + - uid: 14634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,25.5 + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 parent: 2 - - uid: 14575 + - type: DeviceNetwork + deviceLists: + - 14631 + - 14630 + - uid: 14636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,24.5 + rot: 3.141592653589793 rad + pos: -16.5,-8.5 parent: 2 - - uid: 14602 + - type: DeviceNetwork + deviceLists: + - 14635 + - 14646 + - uid: 14637 components: - type: Transform - pos: 25.5,1.5 + rot: 3.141592653589793 rad + pos: -16.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14589 - - uid: 14638 + - 14635 + - 14646 + - uid: 14639 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-11.5 + pos: -10.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - 14635 - 14754 - - uid: 19566 + - uid: 14641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 17590 - - uid: 19567 + rot: 1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12279 + - 14646 + - uid: 14642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 17590 - - uid: 19568 + rot: 1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12279 + - 14646 + - uid: 14644 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-10.5 - parent: 17590 - - uid: 19569 + pos: -19.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14646 + - 14541 + - uid: 14645 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 17590 - - uid: 19570 + pos: -19.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14646 + - uid: 14648 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 17590 - - uid: 19571 + pos: -6.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14028 + - uid: 14649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-9.5 - parent: 17590 - - uid: 19572 + pos: -10.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14028 + - 14654 + - uid: 14650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 17590 - - uid: 19573 + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14028 + - 14659 + - uid: 14651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 17590 - - uid: 19579 + rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14654 + - 14655 + - uid: 14653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-18.5 - parent: 17590 - - uid: 19580 + rot: 1.5707963267948966 rad + pos: -18.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14654 + - 14669 + - uid: 14656 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-18.5 - parent: 17590 -- proto: FirelockElectronics - entities: - - uid: 2031 + pos: -10.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14655 + - 14659 + - uid: 14657 components: - type: Transform - pos: 1.0173917,-18.427443 + rot: 3.141592653589793 rad + pos: -11.5,25.5 parent: 2 -- proto: FirelockFrame - entities: - - uid: 1729 + - type: DeviceNetwork + deviceLists: + - 14659 + - 14660 + - uid: 14658 components: - type: Transform - pos: 21.5,-14.5 + rot: 3.141592653589793 rad + pos: -7.5,25.5 parent: 2 - - uid: 1844 + - type: DeviceNetwork + deviceLists: + - 14659 + - uid: 14662 components: - type: Transform - pos: -3.5,16.5 + pos: -17.5,23.5 parent: 2 - - uid: 1848 + - type: DeviceNetwork + deviceLists: + - 14661 + - 14664 + - uid: 14663 components: - type: Transform - pos: 5.5,9.5 + pos: -17.5,19.5 parent: 2 -- proto: FirelockGlass - entities: - - uid: 1878 + - type: DeviceNetwork + deviceLists: + - 14664 + - 14669 + - uid: 14668 components: - type: Transform - pos: -37.5,-22.5 + pos: -21.5,17.5 parent: 2 - - uid: 1879 + - type: DeviceNetwork + deviceLists: + - 14669 + - uid: 14675 components: - type: Transform - pos: -37.5,-21.5 + rot: -1.5707963267948966 rad + pos: 16.5,-22.5 parent: 2 - - uid: 1880 + - type: DeviceNetwork + deviceLists: + - 14677 + - 33 + - uid: 14676 components: - type: Transform - pos: -37.5,-20.5 + pos: -28.5,13.5 parent: 2 - - uid: 12272 + - type: DeviceNetwork + deviceLists: + - 14044 + - uid: 14679 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-16.5 + pos: -4.5,28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12270 - - 12279 - - uid: 12273 + - 14678 + - uid: 14680 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-16.5 + pos: -0.5,28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12270 - - 12279 - - uid: 12281 + - 14678 + - uid: 14682 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-13.5 + pos: -0.5,31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12279 - - 11916 - - uid: 12282 + - 14681 + - uid: 14684 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-15.5 + pos: -1.5,42.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12279 - - 11916 - - uid: 12308 + - 14683 + - uid: 14685 components: - type: Transform - pos: 6.5,-18.5 + rot: -1.5707963267948966 rad + pos: -0.5,38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12309 - - 12320 - - uid: 14640 + - 14683 + - 14687 + - uid: 14688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-15.5 + pos: 10.5,37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2601 - - uid: 14643 + - 14687 + - uid: 14689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-15.5 + pos: 10.5,38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2601 - - uid: 14740 + - 14687 + - uid: 14690 components: - type: Transform - pos: 5.5,8.5 + pos: 10.5,36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14737 - - 14741 - - uid: 19554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 17590 - - uid: 19555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 17590 - - uid: 19556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 17590 - - uid: 19557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 17590 - - uid: 19558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 17590 - - uid: 19559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,4.5 - parent: 17590 - - uid: 19560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,7.5 - parent: 17590 - - uid: 19561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,7.5 - parent: 17590 - - uid: 19562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,7.5 - parent: 17590 - - uid: 19563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,12.5 - parent: 17590 - - uid: 19564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,12.5 - parent: 17590 - - uid: 19565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,12.5 - parent: 17590 - - uid: 19574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-11.5 - parent: 17590 - - uid: 19575 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 17590 -- proto: Fireplace - entities: - - uid: 1140 + - 14687 + - uid: 14691 components: - type: Transform - pos: -29.5,18.5 + pos: 7.5,44.5 parent: 2 -- proto: Flash - entities: - - uid: 548 + - type: DeviceNetwork + deviceLists: + - 14687 + - uid: 14694 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.4333625,-3.3260942 + pos: 12.5,44.5 parent: 2 - - uid: 2279 + - type: DeviceNetwork + deviceLists: + - 14693 + - uid: 14695 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-3.5 + pos: 13.5,39.5 parent: 2 - - uid: 3180 + - type: DeviceNetwork + deviceLists: + - 14693 + - uid: 14697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.469765,-24.291014 + pos: -12.5,34.5 parent: 2 - - uid: 3181 + - type: DeviceNetwork + deviceLists: + - 14696 + - 14717 + - uid: 14698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.61039,-24.462889 + pos: -10.5,34.5 parent: 2 - - uid: 8055 + - type: DeviceNetwork + deviceLists: + - 14696 + - 14717 + - uid: 14699 components: - type: Transform - parent: 8048 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17384 + pos: -11.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14696 + - 14717 + - uid: 14700 components: - type: Transform - pos: 35.32501,-30.792572 + pos: -11.5,42.5 parent: 2 - - uid: 17386 + - type: DeviceNetwork + deviceLists: + - 14696 + - uid: 14701 components: - type: Transform - pos: 35.434383,-30.792572 + pos: -11.5,45.5 parent: 2 - - uid: 17412 + - type: DeviceNetwork + deviceLists: + - 14704 + - uid: 14702 components: - type: Transform - pos: 35.54376,-30.792572 + pos: -11.5,49.5 parent: 2 -- proto: FleshBlocker - entities: - - uid: 6411 + - type: DeviceNetwork + deviceLists: + - 14704 + - uid: 14703 components: - type: Transform - pos: 26.5,14.5 + pos: -12.5,47.5 parent: 2 - - uid: 6412 + - type: DeviceNetwork + deviceLists: + - 14704 + - uid: 14710 components: - type: Transform - pos: 27.5,11.5 + pos: -32.5,31.5 parent: 2 - - uid: 6413 + - type: DeviceNetwork + deviceLists: + - 14709 + - uid: 14711 components: - type: Transform - pos: 26.5,15.5 + pos: -35.5,29.5 parent: 2 - - uid: 6414 + - type: DeviceNetwork + deviceLists: + - 14709 + - uid: 14713 components: - type: Transform - pos: 26.5,14.5 + rot: 1.5707963267948966 rad + pos: -26.5,28.5 parent: 2 - - uid: 6415 + - type: DeviceNetwork + deviceLists: + - 14706 + - 14724 + - uid: 14718 components: - type: Transform - pos: 27.5,15.5 + pos: -6.5,34.5 parent: 2 - - uid: 6417 + - type: DeviceNetwork + deviceLists: + - 14717 + - uid: 14721 components: - type: Transform - pos: 27.5,9.5 + pos: -25.5,46.5 parent: 2 - - uid: 6418 + - type: DeviceNetwork + deviceLists: + - 14723 + - uid: 14722 components: - type: Transform - pos: 27.5,10.5 + pos: -25.5,42.5 parent: 2 - - uid: 6419 + - type: DeviceNetwork + deviceLists: + - 14723 + - uid: 14727 components: - type: Transform - pos: 26.5,9.5 + rot: 1.5707963267948966 rad + pos: -48.5,31.5 parent: 2 - - uid: 6420 + - type: DeviceNetwork + deviceLists: + - 14730 + - uid: 14728 components: - type: Transform - pos: 26.5,8.5 + rot: 1.5707963267948966 rad + pos: -50.5,31.5 parent: 2 - - uid: 6421 + - type: DeviceNetwork + deviceLists: + - 14730 + - uid: 14729 components: - type: Transform - pos: 27.5,9.5 + rot: 1.5707963267948966 rad + pos: -52.5,31.5 parent: 2 - - uid: 6422 + - type: DeviceNetwork + deviceLists: + - 14730 + - uid: 14733 components: - type: Transform - pos: 27.5,10.5 + pos: -58.5,31.5 parent: 2 - - uid: 6423 + - type: DeviceNetwork + deviceLists: + - 14732 + - uid: 14734 components: - type: Transform - pos: 26.5,10.5 + pos: -70.5,31.5 parent: 2 - - uid: 6424 + - type: DeviceNetwork + deviceLists: + - 14732 + - uid: 14742 components: - type: Transform - pos: 27.5,10.5 + pos: 22.5,9.5 parent: 2 - - uid: 19964 + - type: DeviceNetwork + deviceLists: + - 14743 + - uid: 14748 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,16.5 - parent: 19951 - - uid: 19981 + pos: 20.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14747 + - uid: 14749 components: - type: Transform - pos: 23.5,17.5 - parent: 19951 -- proto: FleshKudzu - entities: - - uid: 6392 + rot: -1.5707963267948966 rad + pos: 25.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14747 + - uid: 14753 components: - type: Transform - pos: 26.5,11.5 + pos: 12.5,-17.5 parent: 2 - - uid: 6399 + - type: DeviceNetwork + deviceLists: + - 14752 + - uid: 15589 components: - type: Transform - pos: 27.5,11.5 + pos: 25.5,9.5 parent: 2 - - uid: 6403 + - uid: 15692 components: - type: Transform - pos: 27.5,12.5 + pos: -26.5,33.5 parent: 2 - - uid: 6405 + - type: DeviceNetwork + deviceLists: + - 14716 + - uid: 15786 components: - type: Transform - pos: 27.5,10.5 + pos: -27.5,35.5 parent: 2 -- proto: FlippoEngravedLighter - entities: - - uid: 19830 + - type: DeviceNetwork + deviceLists: + - 14719 + - uid: 15789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.06012,-13.18335 - parent: 17590 - missingComponents: - - StealTarget -- proto: FloorDrain - entities: - - uid: 3973 + pos: -29.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14719 + - uid: 15790 components: - type: Transform - pos: 20.5,21.5 + pos: -28.5,35.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 4619 + - type: DeviceNetwork + deviceLists: + - 14719 + - uid: 15798 components: - type: Transform - pos: -13.5,19.5 + pos: -29.5,31.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 4971 + - type: DeviceNetwork + deviceLists: + - 14724 + - uid: 17036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,32.5 + pos: -27.5,31.5 parent: 2 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemCarpetClown - entities: - - uid: 8200 + - type: DeviceNetwork + deviceLists: + - 14724 + - uid: 17038 components: - type: Transform - pos: -28.187498,7.5875616 + pos: -28.5,31.5 parent: 2 -- proto: FloraTree04 - entities: - - uid: 19405 + - type: DeviceNetwork + deviceLists: + - 14724 + - uid: 17176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 17590 -- proto: FloraTree06 - entities: - - uid: 19406 + rot: 3.141592653589793 rad + pos: 6.5,46.5 + parent: 2 + - uid: 17177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 17590 -- proto: FoamedAluminiumMetal - entities: - - uid: 17527 + rot: 3.141592653589793 rad + pos: 6.5,45.5 + parent: 2 + - uid: 17516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-3.5 + pos: -17.5,49.5 parent: 2 - - uid: 17528 + - uid: 17517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-4.5 + pos: -16.5,49.5 parent: 2 -- proto: FolderSpawner +- proto: FirelockEdge entities: - - uid: 2701 + - uid: 3025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.482712,-19.300518 + pos: 3.5,-16.5 parent: 2 - - uid: 2702 + - type: DeviceNetwork + deviceLists: + - 12309 + - 11916 + - uid: 3346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.342087,-19.441143 + pos: 4.5,-16.5 parent: 2 - - uid: 2727 + - type: DeviceNetwork + deviceLists: + - 12309 + - 11916 + - uid: 3347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.141083,-24.23414 + pos: 5.5,-16.5 parent: 2 - - uid: 2728 + - type: DeviceNetwork + deviceLists: + - 12309 + - 11916 + - uid: 3348 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12309 + - 11916 + - uid: 3481 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.141083,-24.374765 + pos: 51.5,-7.5 parent: 2 - - uid: 2729 + - uid: 3832 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.156708,-24.51539 + pos: 26.5,4.5 parent: 2 - - uid: 5151 + - type: DeviceNetwork + deviceLists: + - 14589 + - uid: 12274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.679736,38.6418 + pos: -18.5,-23.5 parent: 2 - - uid: 5152 + - type: DeviceNetwork + deviceLists: + - 12270 + - uid: 12275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.476611,38.5168 + pos: -16.5,-23.5 parent: 2 - - uid: 5153 + - type: DeviceNetwork + deviceLists: + - 12270 + - uid: 14574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.539111,38.6418 + rot: -1.5707963267948966 rad + pos: 22.5,25.5 parent: 2 - - uid: 5154 + - uid: 14575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.429736,38.5793 + rot: -1.5707963267948966 rad + pos: 22.5,24.5 parent: 2 - - uid: 5155 + - uid: 14602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.429736,38.501175 + pos: 25.5,1.5 parent: 2 - - uid: 5156 + - type: DeviceNetwork + deviceLists: + - 14589 + - uid: 14638 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.585986,38.5793 + pos: -11.5,-11.5 parent: 2 - - uid: 5157 + - type: DeviceNetwork + deviceLists: + - 14635 + - 14754 +- proto: FirelockElectronics + entities: + - uid: 2031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.585986,38.5793 + pos: 1.0173917,-18.427443 parent: 2 - - uid: 5158 +- proto: FirelockGlass + entities: + - uid: 1878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.585986,38.6418 + pos: -37.5,-22.5 parent: 2 - - uid: 5159 + - uid: 1879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.476611,38.626175 + pos: -37.5,-21.5 parent: 2 - - uid: 5160 + - uid: 1880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.476611,38.626175 + pos: -37.5,-20.5 parent: 2 - - uid: 5161 + - uid: 3021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.492236,38.54805 + pos: 5.5,7.5 parent: 2 - - uid: 5162 + - uid: 4417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.539111,38.54805 + pos: 5.5,9.5 parent: 2 - - uid: 5164 + - uid: 12272 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.2909036,37.400192 + pos: -16.5,-16.5 parent: 2 - - uid: 5165 + - type: DeviceNetwork + deviceLists: + - 12270 + - 12279 + - uid: 12273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.7596536,36.712692 + rot: -1.5707963267948966 rad + pos: -18.5,-16.5 parent: 2 - - uid: 5269 + - type: DeviceNetwork + deviceLists: + - 12270 + - 12279 + - uid: 12281 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.49504,24.630457 + rot: -1.5707963267948966 rad + pos: -13.5,-13.5 parent: 2 - - uid: 7053 + - type: DeviceNetwork + deviceLists: + - 12279 + - 11916 + - uid: 12282 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.34146,4.607547 + rot: -1.5707963267948966 rad + pos: -13.5,-15.5 parent: 2 - - uid: 7082 + - type: DeviceNetwork + deviceLists: + - 12279 + - 11916 + - uid: 12308 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.34146,4.607547 + pos: 6.5,-18.5 parent: 2 -- proto: FoodBowlBig - entities: - - uid: 18330 - components: - - type: Transform - pos: 25.28156,0.984108 - parent: 17590 - - uid: 18331 - components: - - type: Transform - pos: 27.359686,1.655983 - parent: 17590 -- proto: FoodBoxDonkpocket - entities: - - uid: 3663 + - type: DeviceNetwork + deviceLists: + - 12309 + - 12320 + - uid: 14640 components: - type: Transform - pos: 53.490185,-13.2977705 + rot: 1.5707963267948966 rad + pos: -21.5,-15.5 parent: 2 - - uid: 3664 + - type: DeviceNetwork + deviceLists: + - 2601 + - uid: 14643 components: - type: Transform - pos: 53.49713,-13.06166 + rot: 1.5707963267948966 rad + pos: -25.5,-15.5 parent: 2 - - uid: 4880 + - type: DeviceNetwork + deviceLists: + - 2601 + - uid: 14740 components: - type: Transform - pos: -29.530487,10.600556 + pos: 5.5,8.5 parent: 2 -- proto: FoodBoxDonut + - type: DeviceNetwork + deviceLists: + - 14737 + - 14741 +- proto: Fireplace entities: - - uid: 989 + - uid: 911 components: - type: Transform - pos: 30.54258,-9.560354 + pos: 41.5,-3.5 parent: 2 -- proto: FoodBreadPlain - entities: - - uid: 3212 + - uid: 1140 components: - type: Transform - pos: -28.437357,62.398994 + pos: -29.5,18.5 parent: 2 - - uid: 3224 + - uid: 12384 components: - type: Transform - pos: -28.426542,62.580437 + pos: -25.5,26.5 parent: 2 - - uid: 20067 +- proto: Flash + entities: + - uid: 548 components: - type: Transform - parent: 20066 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20068 + rot: -1.5707963267948966 rad + pos: 7.4333625,-3.3260942 + parent: 2 + - uid: 956 components: - type: Transform - parent: 20066 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20069 + rot: -1.5707963267948966 rad + pos: 30.505377,-25.16599 + parent: 2 + - uid: 2279 components: - type: Transform - parent: 20066 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20070 + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 2 + - uid: 8055 components: - type: Transform - parent: 20066 + parent: 8048 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 20071 + - uid: 13996 components: - type: Transform - parent: 20066 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20072 + rot: -1.5707963267948966 rad + pos: 30.567877,-25.369116 + parent: 2 + - uid: 17384 components: - type: Transform - parent: 20066 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20073 + pos: 35.32501,-30.792572 + parent: 2 + - uid: 17386 components: - type: Transform - parent: 20066 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20074 + pos: 35.434383,-30.792572 + parent: 2 + - uid: 17412 components: - type: Transform - parent: 20066 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20075 + pos: 35.54376,-30.792572 + parent: 2 +- proto: FloorAzureWaterEntity + entities: + - uid: 18555 components: - type: Transform - parent: 20066 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20076 + rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 17641 + - uid: 18556 components: - type: Transform - parent: 20066 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBurgerPlain - entities: - - uid: 19284 + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 17641 + - uid: 18557 components: - type: Transform - parent: 19279 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19345 + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 17641 + - uid: 18558 components: - type: Transform - parent: 19279 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodCannabisButter - entities: - - uid: 4823 + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 17641 + - uid: 18559 components: - type: Transform - parent: 4814 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodGoldenApple - entities: - - uid: 19433 + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 17641 + - uid: 18560 components: - type: Transform - pos: 16.904724,-9.292969 - parent: 17590 -- proto: FoodMealMemoryleek - entities: - - uid: 957 + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 17641 + - uid: 18561 components: - type: Transform - pos: 1.8977132,26.660383 - parent: 2 - - uid: 4093 + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 17641 + - uid: 18562 components: - type: Transform - pos: 1.6438906,26.688358 - parent: 2 -- proto: FoodMealNachosCuban - entities: - - uid: 19754 + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 17641 + - uid: 18563 components: - type: Transform - parent: 19713 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19767 + rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 17641 + - uid: 18564 components: - type: Transform - parent: 19713 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeat + rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 17641 +- proto: FloorDrain entities: - - uid: 3971 + - uid: 2598 components: - type: Transform - pos: 22.464973,21.659416 + pos: -17.5,25.5 parent: 2 - - uid: 3972 + - type: Fixtures + fixtures: {} + - uid: 3973 components: - type: Transform - pos: 22.355598,21.534416 + pos: 20.5,21.5 parent: 2 -- proto: FoodMeatCooked - entities: - - uid: 4871 + - type: Fixtures + fixtures: {} + - uid: 4619 components: - type: Transform - parent: 4870 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4875 + pos: -13.5,19.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4971 components: - type: Transform - parent: 4870 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodNoodles + rot: 3.141592653589793 rad + pos: 1.5,32.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloraRockSolid01 entities: - - uid: 19286 + - uid: 16025 components: - type: Transform - parent: 19279 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodNoodlesMeatball + pos: 58.40208,-12.470812 + parent: 2 +- proto: FloraRockSolid03 entities: - - uid: 19282 - components: - - type: Transform - parent: 19279 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19342 + - uid: 16051 components: - type: Transform - parent: 19279 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodPieBananaCream + pos: 56.511456,-6.1529155 + parent: 2 +- proto: FloraTreeConifer02 entities: - - uid: 4077 + - uid: 8155 components: - type: Transform - pos: 0.4270475,20.289186 + pos: 56.481674,-11.007644 parent: 2 -- proto: FoodPizzaMargherita +- proto: FloraTreeSnow06 entities: - - uid: 19359 + - uid: 8109 components: - type: Transform - parent: 19279 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodPizzaPineapple + pos: 56.711014,-5.7983947 + parent: 2 +- proto: FoamedAluminiumMetal entities: - - uid: 19766 + - uid: 17527 components: - type: Transform - parent: 19713 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodPizzaSassysage - entities: - - uid: 19755 + rot: -1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 2 + - uid: 17528 components: - type: Transform - parent: 19713 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodPlate - entities: - - uid: 18333 + rot: -1.5707963267948966 rad + pos: 52.5,-4.5 + parent: 2 + - uid: 18565 components: - type: Transform - pos: 29.43781,1.202858 - parent: 17590 - - uid: 18335 + pos: 34.5,3.5 + parent: 17641 + - uid: 18566 components: - type: Transform - pos: 24.703436,1.374733 - parent: 17590 - - uid: 18336 + pos: 33.5,3.5 + parent: 17641 + - uid: 18567 components: - type: Transform - pos: 24.62531,1.859108 - parent: 17590 - - uid: 18337 + pos: 34.5,2.5 + parent: 17641 + - uid: 18568 components: - type: Transform - pos: 26.953436,1.327858 - parent: 17590 - - uid: 18338 + pos: 26.5,4.5 + parent: 17641 + - uid: 18569 components: - type: Transform - pos: 28.59406,0.765358 - parent: 17590 -- proto: FoodPlateSmallTrash - entities: - - uid: 2764 + pos: 24.5,-0.5 + parent: 17641 + - uid: 18570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.500576,41.355705 - parent: 2 - - uid: 3274 + pos: 24.5,2.5 + parent: 17641 + - uid: 18571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.094326,43.49633 - parent: 2 - - uid: 3695 + pos: 26.5,8.5 + parent: 17641 + - uid: 18572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.3912,41.449455 - parent: 2 - - uid: 3698 + pos: 25.5,10.5 + parent: 17641 + - uid: 18573 components: - type: Transform - pos: -41.17245,43.34008 - parent: 2 -- proto: FoodRicePudding - entities: - - uid: 4873 + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 17641 + - uid: 18574 components: - type: Transform - parent: 4870 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSaladAesir - entities: - - uid: 4877 + pos: 34.5,5.5 + parent: 17641 + - uid: 18575 components: - type: Transform - pos: -29.59343,16.76155 - parent: 2 - - uid: 19361 + pos: 0.5,-2.5 + parent: 17641 + - uid: 18576 components: - type: Transform - parent: 19279 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSnackSemki - entities: - - uid: 17170 + pos: 1.5,-2.5 + parent: 17641 + - uid: 18577 components: - type: Transform - pos: 18.78685,36.107056 - parent: 2 - - uid: 17171 + pos: 22.5,7.5 + parent: 17641 + - uid: 18578 components: - type: Transform - pos: 19.146225,37.044556 - parent: 2 - - uid: 17172 + pos: 25.5,5.5 + parent: 17641 + - uid: 18579 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.583725,38.68518 - parent: 2 - - uid: 17173 + pos: 22.5,1.5 + parent: 17641 + - uid: 18580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.4431,37.46643 - parent: 2 - - uid: 17174 + pos: 36.5,7.5 + parent: 17641 + - uid: 18581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.28685,37.232056 - parent: 2 - - uid: 17175 + pos: 36.5,6.5 + parent: 17641 + - uid: 18582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5681,38.74768 - parent: 2 -- proto: FoodSoupBisque - entities: - - uid: 19717 + pos: 29.5,2.5 + parent: 17641 + - uid: 18583 components: - type: Transform - parent: 19713 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodTinPeachesMaintTrash - entities: - - uid: 6762 + pos: 37.5,8.5 + parent: 17641 + - uid: 18584 components: - type: Transform - pos: -40.910984,43.546547 - parent: 2 -- proto: FoodTinPeachesTrash - entities: - - uid: 6761 + rot: -1.5707963267948966 rad + pos: 18.5,4.5 + parent: 17641 + - uid: 18585 components: - type: Transform - pos: -41.198597,41.405052 - parent: 2 -- proto: Fork - entities: - - uid: 18339 + pos: 29.5,8.5 + parent: 17641 + - uid: 18586 components: - type: Transform - pos: 24.265337,1.312233 - parent: 17590 - - uid: 18340 + rot: -1.5707963267948966 rad + pos: 19.5,4.5 + parent: 17641 + - uid: 18587 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.672186,1.546608 - parent: 17590 - - uid: 20114 + pos: 26.5,1.5 + parent: 17641 + - uid: 18588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.75592,1.7739258 - parent: 17590 -- proto: FuelDispenser - entities: - - uid: 8072 + pos: 24.5,4.5 + parent: 17641 + - uid: 18589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-20.5 - parent: 2 -- proto: FultonBeacon - entities: - - uid: 17409 + pos: 24.5,5.5 + parent: 17641 + - uid: 18590 components: - - type: MetaData - name: Аванпост ОБР - type: Transform - pos: 25.674072,25.346191 - parent: 16200 - - type: Foldable - folded: False -- proto: GasAnalyzer - entities: - - uid: 3743 + pos: 24.5,9.5 + parent: 17641 + - uid: 18591 components: - type: Transform - pos: -20.441183,-28.96868 - parent: 2 - - uid: 3744 + pos: 24.5,8.5 + parent: 17641 + - uid: 18592 components: - type: Transform - pos: -20.284933,-28.96868 - parent: 2 - - uid: 4750 + pos: 25.5,9.5 + parent: 17641 + - uid: 18593 components: - type: Transform - pos: -22.69039,18.581926 - parent: 2 -- proto: GasCanisterBrokenBase - entities: - - uid: 268 + pos: 24.5,8.5 + parent: 17641 + - uid: 18594 components: - type: Transform - pos: -6.5,-30.5 - parent: 2 - - uid: 2608 + rot: -1.5707963267948966 rad + pos: 22.5,3.5 + parent: 17641 + - uid: 18595 components: - type: Transform - pos: -23.5,-12.5 - parent: 2 - - uid: 6994 + rot: -1.5707963267948966 rad + pos: 41.5,-3.5 + parent: 17641 + - uid: 18596 components: - type: Transform - pos: -25.5,-3.5 - parent: 2 - - uid: 14959 + pos: -3.5,5.5 + parent: 17641 + - uid: 18597 components: - - type: MetaData - name: разбитая канистра плазмы - type: Transform - pos: -20.5,-42.5 - parent: 2 - - uid: 17053 + pos: -3.5,6.5 + parent: 17641 + - uid: 18598 components: - type: Transform - pos: 8.5,46.5 - parent: 2 - - uid: 17060 + pos: 26.5,9.5 + parent: 17641 + - uid: 18599 components: - type: Transform - pos: -5.5,35.5 - parent: 2 - - uid: 17081 + pos: 31.5,6.5 + parent: 17641 + - uid: 18601 components: - type: Transform - pos: 19.5,29.5 - parent: 2 - - uid: 17083 + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 17641 + - uid: 18605 components: - type: Transform - pos: 23.5,19.5 - parent: 2 - - uid: 17114 + pos: 29.5,3.5 + parent: 17641 + - uid: 18606 components: - type: Transform - pos: -59.5,32.5 - parent: 2 - - uid: 18668 + pos: 33.5,2.5 + parent: 17641 + - uid: 18607 components: - type: Transform - pos: 6.5,-12.5 - parent: 17590 -- proto: GasFilter - entities: - - uid: 2180 + pos: 33.5,4.5 + parent: 17641 + - uid: 18608 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasFilterFlipped - entities: - - uid: 4726 + pos: 30.5,4.5 + parent: 17641 + - uid: 18609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,16.5 - parent: 2 - - uid: 4734 + pos: 30.5,2.5 + parent: 17641 + - uid: 18610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,16.5 - parent: 2 -- proto: GasMinerNitrogen - entities: - - uid: 18341 + pos: 31.5,9.5 + parent: 17641 + - uid: 18611 components: - type: Transform - pos: 44.5,6.5 - parent: 17590 -- proto: GasMinerNitrogenStation - entities: - - uid: 1429 + pos: 28.5,7.5 + parent: 17641 + - uid: 18612 components: - type: Transform - pos: -8.5,-32.5 - parent: 2 -- proto: GasMinerOxygen - entities: - - uid: 18342 + pos: 29.5,10.5 + parent: 17641 + - uid: 18613 components: - type: Transform - pos: 44.5,4.5 - parent: 17590 -- proto: GasMinerOxygenStation - entities: - - uid: 2172 + pos: 26.5,5.5 + parent: 17641 + - uid: 18614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 2 -- proto: GasMinerPlasma - entities: - - uid: 12487 + pos: 30.5,3.5 + parent: 17641 + - uid: 18615 components: - type: Transform - pos: 1.5,-32.5 - parent: 2 - - type: GasMiner - spawnAmount: 25 -- proto: GasMixer - entities: - - uid: 18343 + pos: 28.5,10.5 + parent: 17641 + - uid: 18616 components: - type: Transform - pos: 48.5,4.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasMixerFlipped - entities: - - uid: 690 + pos: 31.5,8.5 + parent: 17641 + - uid: 18617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-8.5 - parent: 2 - - type: GasMixer - inletTwoConcentration: 0.01999998 - inletOneConcentration: 0.98 - targetPressure: 250 -- proto: GasOutletInjector - entities: - - uid: 24 + pos: 28.5,4.5 + parent: 17641 + - uid: 18618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-31.5 - parent: 2 - - uid: 54 + pos: 25.5,6.5 + parent: 17641 + - uid: 18619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 2 - - uid: 74 + pos: 24.5,7.5 + parent: 17641 + - uid: 18620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-32.5 - parent: 2 - - uid: 77 + pos: 0.5,6.5 + parent: 17641 + - uid: 18621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 2 - - uid: 88 + pos: 27.5,11.5 + parent: 17641 + - uid: 18622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 2 - - uid: 475 + pos: -1.5,6.5 + parent: 17641 + - uid: 18623 + components: + - type: Transform + pos: 33.5,8.5 + parent: 17641 + - uid: 18624 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-8.5 - parent: 2 - - uid: 14916 + pos: 21.5,-1.5 + parent: 17641 + - uid: 18625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-32.5 - parent: 2 -- proto: GasPassiveVent - entities: - - uid: 269 + pos: 31.5,5.5 + parent: 17641 + - uid: 18626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-31.5 - parent: 2 - - uid: 272 + pos: 29.5,9.5 + parent: 17641 + - uid: 18627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-32.5 - parent: 2 - - uid: 289 + pos: 28.5,12.5 + parent: 17641 + - uid: 18628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-31.5 - parent: 2 - - uid: 2171 + pos: 32.5,9.5 + parent: 17641 + - uid: 18629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-32.5 - parent: 2 - - uid: 2616 + pos: 33.5,7.5 + parent: 17641 + - uid: 18630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-16.5 - parent: 2 - - uid: 2617 + pos: 23.5,8.5 + parent: 17641 + - uid: 18631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-16.5 - parent: 2 - - uid: 2655 + pos: 26.5,3.5 + parent: 17641 + - uid: 18632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 2 - - uid: 12409 + pos: 26.5,3.5 + parent: 17641 + - uid: 18633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,9.5 - parent: 16200 - - uid: 13600 + pos: 27.5,7.5 + parent: 17641 + - uid: 18634 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,21.5 - parent: 2 - - uid: 13959 + pos: 27.5,8.5 + parent: 17641 + - uid: 18635 components: - type: Transform - pos: -13.5,1.5 - parent: 2 - - uid: 14912 + pos: 30.5,8.5 + parent: 17641 + - uid: 18636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-31.5 - parent: 2 - - uid: 18344 + pos: 28.5,13.5 + parent: 17641 + - uid: 18637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,4.5 - parent: 17590 - - uid: 18345 + pos: 27.5,13.5 + parent: 17641 + - uid: 18638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,6.5 - parent: 17590 - - uid: 18950 + pos: 32.5,8.5 + parent: 17641 + - uid: 18639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,7.5 - parent: 17590 -- proto: GasPipeBend - entities: - - uid: 117 + pos: 29.5,7.5 + parent: 17641 + - uid: 18640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 2 - - uid: 482 + pos: 26.5,7.5 + parent: 17641 + - uid: 18641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,16.5 - parent: 2 - - uid: 514 + pos: 30.5,9.5 + parent: 17641 + - uid: 18642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,17.5 - parent: 2 - - uid: 733 + pos: 27.5,9.5 + parent: 17641 + - uid: 18643 components: - type: Transform - pos: 20.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1163 + pos: 20.5,8.5 + parent: 17641 + - uid: 18644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1202 + pos: 27.5,12.5 + parent: 17641 + - uid: 18645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1205 + pos: 30.5,7.5 + parent: 17641 + - uid: 18646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1233 + pos: 28.5,9.5 + parent: 17641 + - uid: 18647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1306 + pos: 32.5,6.5 + parent: 17641 + - uid: 18648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 2 - - uid: 1347 + pos: 32.5,5.5 + parent: 17641 + - uid: 18649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1433 + pos: 22.5,8.5 + parent: 17641 + - uid: 18650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2168 + pos: 28.5,5.5 + parent: 17641 + - uid: 18651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 2 - - uid: 2169 + pos: 22.5,9.5 + parent: 17641 + - uid: 18652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 2 - - uid: 2170 + pos: 25.5,7.5 + parent: 17641 + - uid: 18653 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-32.5 - parent: 2 - - uid: 2195 + pos: 21.5,9.5 + parent: 17641 + - uid: 18654 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 2 - - uid: 2615 + pos: 21.5,6.5 + parent: 17641 + - uid: 18655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-15.5 - parent: 2 - - uid: 2619 + pos: 36.5,9.5 + parent: 17641 + - uid: 18656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-15.5 - parent: 2 - - uid: 2620 + pos: 28.5,-1.5 + parent: 17641 + - uid: 18657 components: - type: Transform - pos: -21.5,-13.5 - parent: 2 - - uid: 2621 + pos: 29.5,-1.5 + parent: 17641 + - uid: 18658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-13.5 - parent: 2 - - uid: 2801 + pos: 29.5,-2.5 + parent: 17641 + - uid: 18659 components: - type: Transform - pos: 23.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3193 + pos: 30.5,-1.5 + parent: 17641 + - uid: 18660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3826 + pos: 29.5,-3.5 + parent: 17641 + - uid: 18661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4551 + pos: 28.5,-3.5 + parent: 17641 + - uid: 18662 components: - type: Transform - pos: 24.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4731 + pos: 30.5,-3.5 + parent: 17641 + - uid: 18663 components: - type: Transform - pos: -23.5,18.5 - parent: 2 - - uid: 4733 + pos: 32.5,-5.5 + parent: 17641 + - uid: 18664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,18.5 - parent: 2 - - uid: 4931 + pos: 31.5,-5.5 + parent: 17641 + - uid: 18665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-29.5 - parent: 2 - - uid: 5181 + pos: 33.5,-5.5 + parent: 17641 + - uid: 18666 components: - type: Transform - pos: 12.5,-28.5 - parent: 2 - - uid: 6465 + pos: 32.5,-6.5 + parent: 17641 + - uid: 18667 components: - type: Transform - pos: 16.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8155 + pos: 34.5,-3.5 + parent: 17641 + - uid: 18668 components: - type: Transform - pos: 47.5,-7.5 - parent: 2 - - uid: 8295 + pos: 33.5,-3.5 + parent: 17641 + - uid: 18669 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11980 + pos: 39.5,-1.5 + parent: 17641 + - uid: 18670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12001 + pos: 40.5,-2.5 + parent: 17641 + - uid: 18671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12009 + pos: 39.5,-2.5 + parent: 17641 + - uid: 18672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12086 + pos: 38.5,-2.5 + parent: 17641 + - uid: 18673 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12096 + pos: 42.5,-3.5 + parent: 17641 + - uid: 18674 components: - type: Transform - pos: 10.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12103 + pos: 42.5,-4.5 + parent: 17641 + - uid: 18675 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12112 + pos: 40.5,-4.5 + parent: 17641 + - uid: 18676 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12113 + pos: 38.5,-6.5 + parent: 17641 + - uid: 18677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12114 + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 17641 + - uid: 18678 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12115 + pos: -2.5,0.5 + parent: 17641 + - uid: 18679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12123 + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 17641 + - uid: 18680 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12160 + pos: 1.5,4.5 + parent: 17641 + - uid: 18681 components: - type: Transform - pos: 13.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12198 + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 17641 + - uid: 18682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12223 + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 17641 + - uid: 18683 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12243 + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 17641 + - uid: 18684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12244 + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 17641 + - uid: 18685 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12315 + pos: 0.5,-5.5 + parent: 17641 + - uid: 18686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12518 + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 17641 + - uid: 18687 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12525 + pos: 1.5,-5.5 + parent: 17641 + - uid: 18688 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12535 + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 17641 + - uid: 18689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12536 + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 17641 + - uid: 18690 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12537 + pos: 6.5,-5.5 + parent: 17641 + - uid: 18691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12538 + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 17641 + - uid: 18692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12545 + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 17641 + - uid: 18693 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12550 + pos: 24.5,-7.5 + parent: 17641 + - uid: 18694 components: - type: Transform - pos: 21.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12614 + rot: -1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 17641 + - uid: 18695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12676 + rot: -1.5707963267948966 rad + pos: 25.5,-7.5 + parent: 17641 + - uid: 18696 components: - type: Transform rot: -1.5707963267948966 rad - pos: -72.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12731 + pos: 28.5,-7.5 + parent: 17641 + - uid: 18697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12753 + rot: -1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 17641 + - uid: 18698 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12762 + pos: 23.5,-9.5 + parent: 17641 + - uid: 18699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12763 + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 17641 + - uid: 18700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12765 + rot: -1.5707963267948966 rad + pos: 25.5,-11.5 + parent: 17641 + - uid: 18701 components: - type: Transform - pos: -18.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12784 + rot: -1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 17641 + - uid: 18702 components: - type: Transform - pos: -20.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12786 + rot: -1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 17641 + - uid: 18703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12794 + rot: -1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 17641 + - uid: 18704 components: - type: Transform - pos: 20.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12818 + rot: -1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 17641 + - uid: 18705 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12951 + rot: -1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 17641 + - uid: 18706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12952 + rot: -1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 17641 + - uid: 18707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12953 + rot: -1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 17641 + - uid: 18708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13033 + rot: -1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 17641 + - uid: 18709 components: - type: Transform - pos: -1.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13035 + rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 17641 + - uid: 18710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13036 + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 17641 + - uid: 18711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13061 + rot: -1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 17641 + - uid: 18712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,40.5 - parent: 2 - - uid: 13077 + rot: -1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 17641 + - uid: 18713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13100 + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 17641 + - uid: 18714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13147 + rot: -1.5707963267948966 rad + pos: 20.5,6.5 + parent: 17641 + - uid: 18715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13148 + pos: -2.5,5.5 + parent: 17641 + - uid: 18716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13156 + pos: 2.5,6.5 + parent: 17641 + - uid: 18717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13164 + pos: 1.5,5.5 + parent: 17641 + - uid: 18718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13235 + pos: 3.5,6.5 + parent: 17641 + - uid: 18719 components: - type: Transform - pos: -23.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13260 + pos: 3.5,6.5 + parent: 17641 + - uid: 18720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13261 + pos: 4.5,8.5 + parent: 17641 + - uid: 18721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13287 + pos: 3.5,7.5 + parent: 17641 + - uid: 18722 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13357 + pos: 4.5,6.5 + parent: 17641 + - uid: 18723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13358 + pos: 26.5,-6.5 + parent: 17641 + - uid: 18724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13363 + pos: 25.5,-6.5 + parent: 17641 + - uid: 18725 components: - type: Transform - pos: -10.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13379 + pos: 27.5,-5.5 + parent: 17641 + - uid: 19893 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-32.5 - parent: 2 - - uid: 13442 + pos: 30.5,-5.5 + parent: 17641 +- proto: FolderSpawner + entities: + - uid: 2701 components: - type: Transform - pos: 21.5,14.5 + rot: 3.141592653589793 rad + pos: 16.482712,-19.300518 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13454 + - uid: 2702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,12.5 + rot: 3.141592653589793 rad + pos: 16.342087,-19.441143 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13457 + - uid: 2727 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,14.5 + pos: 17.141083,-24.23414 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13465 + - uid: 2728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,12.5 + rot: 1.5707963267948966 rad + pos: 17.141083,-24.374765 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13503 + - uid: 2729 components: - type: Transform - pos: 5.5,22.5 + rot: 1.5707963267948966 rad + pos: 17.156708,-24.51539 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13509 + - uid: 5151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 + rot: 1.5707963267948966 rad + pos: 10.679736,38.6418 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13538 + - uid: 5152 components: - type: Transform - pos: 13.5,20.5 + rot: 1.5707963267948966 rad + pos: 10.476611,38.5168 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13544 + - uid: 5153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,20.5 + rot: 1.5707963267948966 rad + pos: 10.539111,38.6418 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13545 + - uid: 5154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,20.5 + rot: 1.5707963267948966 rad + pos: 10.429736,38.5793 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13553 + - uid: 5155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,23.5 + rot: 1.5707963267948966 rad + pos: 10.429736,38.501175 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13554 + - uid: 5156 components: - type: Transform - pos: 9.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13556 + rot: 1.5707963267948966 rad + pos: 10.585986,38.5793 + parent: 2 + - uid: 5157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,24.5 + rot: 1.5707963267948966 rad + pos: 10.585986,38.5793 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13559 + - uid: 5158 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,25.5 + pos: 10.585986,38.6418 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13588 + - uid: 5159 components: - type: Transform - pos: 17.5,26.5 + rot: 1.5707963267948966 rad + pos: 10.476611,38.626175 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13594 + - uid: 5160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,17.5 + rot: 1.5707963267948966 rad + pos: 10.476611,38.626175 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13601 + - uid: 5161 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,22.5 + pos: 10.492236,38.54805 parent: 2 - - uid: 13603 + - uid: 5162 components: - type: Transform - pos: 21.5,23.5 + rot: 1.5707963267948966 rad + pos: 10.539111,38.54805 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13618 + - uid: 5269 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,12.5 + pos: -33.49504,24.630457 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13628 +- proto: FoodBoxDonkpocket + entities: + - uid: 3663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,13.5 + pos: 53.490185,-13.2977705 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13640 + - uid: 3664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,12.5 + pos: 53.49713,-13.06166 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13642 + - uid: 4880 components: - type: Transform - pos: -17.5,13.5 + pos: -29.530487,10.600556 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13643 + - uid: 17693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13669 + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13677 + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13678 + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxDonkpocketBerry + entities: + - uid: 17696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13700 + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 17697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13718 + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 17698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,13.5 + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 17699 + components: + - type: Transform + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxDonkpocketTeriyaki + entities: + - uid: 17700 + components: + - type: Transform + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxDonut + entities: + - uid: 989 + components: + - type: Transform + pos: 30.54258,-9.560354 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13723 +- proto: FoodBreadPlain + entities: + - uid: 3212 components: - type: Transform - pos: -22.5,11.5 + pos: -28.437357,62.398994 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13732 + - uid: 3224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,24.5 + pos: -28.426542,62.580437 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13733 +- proto: FoodCakeBatter + entities: + - uid: 17701 components: - type: Transform - pos: -18.5,24.5 + parent: 17689 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSnowcone + entities: + - uid: 16083 + components: + - type: Transform + pos: 56.6848,-11.972504 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13734 +- proto: FoodMealMemoryleek + entities: + - uid: 957 components: - type: Transform - pos: -17.5,25.5 + pos: 1.8977132,26.660383 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13766 + - uid: 4093 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,17.5 + pos: 1.6438906,26.688358 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13769 +- proto: FoodMeat + entities: + - uid: 3971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,24.5 + pos: 22.464973,21.659416 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13782 + - uid: 3972 components: - type: Transform - pos: -9.5,25.5 + pos: 22.355598,21.534416 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13783 +- proto: FoodMeatCooked + entities: + - uid: 4871 components: - type: Transform - pos: -8.5,24.5 + parent: 4870 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4875 + components: + - type: Transform + parent: 4870 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatHuman + entities: + - uid: 17071 + components: + - type: Transform + pos: 57.590225,-7.3470793 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13790 + - uid: 17072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,31.5 + pos: 57.121475,-7.9095793 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13822 +- proto: FoodMeatPenguin + entities: + - uid: 17061 components: - type: Transform - pos: 9.5,37.5 + pos: 56.810204,-15.75866 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13823 + - uid: 17063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,36.5 + pos: 56.778954,-15.47741 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13827 + - uid: 17064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,36.5 + pos: 56.497704,-15.75866 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13833 + - uid: 17066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,38.5 + pos: 58.32583,-15.60241 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13836 + - uid: 17070 components: - type: Transform - pos: 12.5,41.5 + pos: 58.435204,-15.72741 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13844 +- proto: FoodPieBananaCream + entities: + - uid: 4077 components: - type: Transform - pos: -52.5,34.5 + pos: 0.4270475,20.289186 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13866 +- proto: FoodRicePudding + entities: + - uid: 4873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-10.5 + parent: 4870 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSaladAesir + entities: + - uid: 4877 + components: + - type: Transform + pos: -29.59343,16.76155 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13878 +- proto: FuelDispenser + entities: + - uid: 8072 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-10.5 + pos: 53.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13888 +- proto: FultonBeacon + entities: + - uid: 17409 components: + - type: MetaData + name: Аванпост ОБР - type: Transform - pos: -12.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13912 + pos: 25.674072,25.346191 + parent: 16200 + - type: Foldable + folded: False +- proto: GarlandsOff + entities: + - uid: 5659 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-4.5 + pos: -24.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13913 + - uid: 15491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-4.5 + pos: -74.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13919 + - uid: 17203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,2.5 + rot: -1.5707963267948966 rad + pos: 6.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13920 + - uid: 17205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,1.5 + rot: -1.5707963267948966 rad + pos: 6.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13939 + - uid: 17206 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,1.5 + pos: 6.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13955 + - uid: 17207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-13.5 + rot: -1.5707963267948966 rad + pos: 6.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13985 + - uid: 17208 components: - type: Transform - pos: 12.5,-2.5 + rot: 1.5707963267948966 rad + pos: 15.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13988 + - uid: 17209 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-1.5 + pos: 15.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13989 + - uid: 17210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-2.5 + pos: 15.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14004 + - uid: 17211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-7.5 + rot: 1.5707963267948966 rad + pos: 15.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14005 + - uid: 17212 components: - type: Transform - pos: 1.5,-7.5 + rot: 1.5707963267948966 rad + pos: 15.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14030 + - uid: 17213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 + pos: 3.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14043 + - uid: 17214 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-8.5 + rot: -1.5707963267948966 rad + pos: -24.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14058 + - uid: 17215 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-7.5 + pos: -20.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14059 + - uid: 17216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 + rot: -1.5707963267948966 rad + pos: -20.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14064 + - uid: 17217 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-6.5 + pos: -20.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14130 + - uid: 17218 components: - type: Transform - pos: 29.5,-7.5 + rot: -1.5707963267948966 rad + pos: -24.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14132 + - uid: 17220 components: - type: Transform - pos: 28.5,-9.5 + pos: -1.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14179 + - uid: 17221 components: - type: Transform - pos: 51.5,-13.5 + pos: -2.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14235 + - uid: 17222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-10.5 + pos: -3.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14314 + - uid: 17223 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-11.5 + pos: -4.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14315 + - uid: 17224 components: - type: Transform - pos: 49.5,-7.5 + rot: -1.5707963267948966 rad + pos: -4.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14321 + - uid: 17225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-15.5 + rot: -1.5707963267948966 rad + pos: -4.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14340 + - uid: 17226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-25.5 + rot: 1.5707963267948966 rad + pos: -15.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14375 + - uid: 17227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-30.5 + rot: 1.5707963267948966 rad + pos: -15.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14380 + - uid: 17228 components: - type: Transform - pos: 34.5,-23.5 + rot: 1.5707963267948966 rad + pos: -15.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14381 + - uid: 17229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-24.5 + pos: -27.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14410 + - uid: 17230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-38.5 + pos: -29.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14411 + - uid: 17231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-37.5 + pos: -28.5,36.5 parent: 2 - - uid: 14433 + - uid: 17232 components: - type: Transform - pos: 35.5,-2.5 + pos: -29.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14434 + - uid: 17233 components: - type: Transform - pos: 38.5,0.5 + pos: -27.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14435 + - uid: 17234 components: - type: Transform - pos: 39.5,-1.5 + pos: -28.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14436 + - uid: 17235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-1.5 + pos: -29.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14448 + - uid: 17236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,0.5 + pos: -28.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14450 + - uid: 17237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-2.5 + pos: -27.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14467 + - uid: 17238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-5.5 + rot: 1.5707963267948966 rad + pos: -43.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14504 + - uid: 17239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,6.5 + rot: 1.5707963267948966 rad + pos: -43.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14507 + - uid: 17240 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,11.5 + pos: -43.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14513 + - uid: 17241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,10.5 + rot: 1.5707963267948966 rad + pos: -61.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16032 + - uid: 17242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,12.5 + rot: 1.5707963267948966 rad + pos: -61.5,30.5 parent: 2 - - uid: 16614 + - uid: 17243 components: - type: Transform - pos: 27.5,9.5 - parent: 16200 - - uid: 16623 + rot: 1.5707963267948966 rad + pos: -61.5,29.5 + parent: 2 + - uid: 17244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 16200 - - uid: 16633 + pos: -72.5,24.5 + parent: 2 + - uid: 17245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,22.5 - parent: 16200 - - uid: 16641 + pos: -73.5,24.5 + parent: 2 + - uid: 17246 components: - type: Transform - pos: 27.5,14.5 - parent: 16200 - - uid: 16660 + pos: -74.5,24.5 + parent: 2 + - uid: 17247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,17.5 - parent: 16200 - - uid: 16668 + pos: -73.5,19.5 + parent: 2 + - uid: 17248 components: - type: Transform - pos: 27.5,10.5 - parent: 16200 - - uid: 16669 + pos: -72.5,19.5 + parent: 2 + - uid: 17249 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,9.5 - parent: 16200 - - uid: 16672 + pos: -74.5,11.5 + parent: 2 + - uid: 17250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,10.5 - parent: 16200 - - uid: 18346 + pos: -72.5,11.5 + parent: 2 + - uid: 17251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18347 + pos: -73.5,11.5 + parent: 2 + - uid: 17252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,7.5 - parent: 17590 - - uid: 18348 + pos: -56.5,24.5 + parent: 2 + - uid: 17253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,2.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18383 + pos: -56.5,11.5 + parent: 2 + - uid: 17254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18486 + pos: -54.5,11.5 + parent: 2 + - uid: 17255 components: - type: Transform - pos: 48.5,6.5 - parent: 17590 - - uid: 18495 + pos: -55.5,11.5 + parent: 2 + - uid: 17256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,0.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19260 + pos: -56.5,19.5 + parent: 2 + - uid: 17257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-10.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19304 + pos: -54.5,19.5 + parent: 2 + - uid: 17258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19484 + pos: -55.5,19.5 + parent: 2 + - uid: 17259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19485 + pos: -54.5,24.5 + parent: 2 + - uid: 17260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19487 + pos: -55.5,24.5 + parent: 2 + - uid: 17261 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19515 + pos: -42.5,34.5 + parent: 2 + - uid: 17262 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,1.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,2.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19629 + pos: -42.5,32.5 + parent: 2 + - uid: 17263 components: - type: Transform - pos: 34.5,17.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19630 + rot: -1.5707963267948966 rad + pos: -42.5,33.5 + parent: 2 + - uid: 17264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19634 + pos: -1.5,39.5 + parent: 2 + - uid: 17265 components: - type: Transform - pos: 42.5,-10.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19638 + pos: -3.5,39.5 + parent: 2 + - uid: 17266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19658 + pos: -2.5,39.5 + parent: 2 + - uid: 17267 components: - type: Transform - pos: 33.5,-12.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19663 + pos: -1.5,24.5 + parent: 2 + - uid: 17268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19667 + pos: -2.5,24.5 + parent: 2 + - uid: 17269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-12.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPipeBroken - entities: - - uid: 588 + pos: -3.5,24.5 + parent: 2 + - uid: 17270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,18.5 + pos: -7.5,0.5 parent: 2 - - uid: 13058 + - uid: 17271 components: - type: Transform - pos: -38.5,40.5 + pos: -9.5,0.5 parent: 2 - - uid: 13060 + - uid: 17272 components: - type: Transform - pos: -37.5,38.5 + pos: -8.5,0.5 parent: 2 -- proto: GasPipeFourway - entities: - - uid: 2622 + - uid: 17376 components: - type: Transform - pos: -24.5,-13.5 + rot: -1.5707963267948966 rad + pos: -1.5,-15.5 parent: 2 - - uid: 7869 + - uid: 17377 components: - type: Transform - pos: 21.5,1.5 + rot: -1.5707963267948966 rad + pos: -1.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8041 + - uid: 17378 components: - type: Transform - pos: -38.5,30.5 + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8299 + - uid: 17379 components: - type: Transform - pos: -3.5,33.5 + rot: -1.5707963267948966 rad + pos: 14.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11978 + - uid: 17380 components: - type: Transform - pos: -18.5,-13.5 + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12087 + - uid: 17381 components: - type: Transform - pos: 12.5,-14.5 + rot: -1.5707963267948966 rad + pos: 14.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12163 + - uid: 17382 components: - type: Transform - pos: -20.5,-21.5 + rot: 3.141592653589793 rad + pos: 12.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12712 + - uid: 17385 components: - type: Transform - pos: -1.5,31.5 + pos: 23.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12788 + - uid: 17387 components: - type: Transform - pos: -29.5,32.5 + pos: 24.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12798 + - uid: 17388 components: - type: Transform - pos: -27.5,34.5 + pos: 23.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12802 + - uid: 17389 components: - type: Transform - pos: 13.5,9.5 + pos: 24.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12807 + - uid: 17390 components: - type: Transform - pos: -3.5,9.5 + pos: 19.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12810 + - uid: 17391 components: - type: Transform - pos: -3.5,12.5 + pos: 21.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12822 + - uid: 17392 components: - type: Transform - pos: -54.5,28.5 + pos: 20.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13215 + - uid: 17393 components: - type: Transform - pos: -27.5,28.5 + pos: 19.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13447 + - uid: 17394 components: - type: Transform - pos: 13.5,14.5 + pos: 21.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13885 + - uid: 17395 components: - type: Transform - pos: -18.5,-4.5 + pos: 20.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13895 + - uid: 17396 components: - type: Transform - pos: -17.5,-3.5 + pos: 23.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14209 + - uid: 17397 components: - type: Transform - pos: 34.5,-12.5 + pos: 25.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14212 + - uid: 17398 components: - type: Transform - pos: 38.5,-12.5 + pos: 26.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14215 + - uid: 17399 components: - type: Transform - pos: 42.5,-12.5 + pos: 24.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14222 + - uid: 17400 components: - type: Transform - pos: 36.5,-13.5 + pos: 16.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14224 + - uid: 17401 components: - type: Transform - pos: 40.5,-13.5 + pos: 12.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14225 + - uid: 17402 components: - type: Transform - pos: 44.5,-13.5 + pos: 10.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18349 + - uid: 17403 components: - type: Transform - pos: 41.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18350 + pos: 9.5,22.5 + parent: 2 + - uid: 17404 components: - type: Transform - pos: 41.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18352 + pos: 11.5,22.5 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 3743 components: - type: Transform - pos: 8.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19456 + pos: -20.441183,-28.96868 + parent: 2 + - uid: 3744 components: - type: Transform - pos: 10.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19503 + pos: -20.284933,-28.96868 + parent: 2 + - uid: 4750 components: - type: Transform - pos: 40.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19727 + pos: -22.69039,18.581926 + parent: 2 + - uid: 18727 components: - type: Transform - pos: 42.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeHalf + parent: 18726 + - type: Physics + canCollide: False +- proto: GasCanisterBrokenBase entities: - - uid: 13057 + - uid: 268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,41.5 + pos: -6.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13059 + - uid: 14959 components: + - type: MetaData + name: разбитая канистра плазмы - type: Transform - pos: -37.5,39.5 + pos: -20.5,-42.5 parent: 2 -- proto: GasPipeStraight - entities: - - uid: 118 + - uid: 18735 + components: + - type: Transform + pos: 20.5,3.5 + parent: 17641 + - uid: 18736 + components: + - type: Transform + pos: 19.5,2.5 + parent: 17641 + - uid: 18737 + components: + - type: Transform + pos: 11.5,25.5 + parent: 17641 + - uid: 18738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,14.5 - parent: 2 - - uid: 160 + pos: 13.5,26.5 + parent: 17641 + - uid: 18739 components: - type: Transform - pos: -7.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 169 + pos: 16.5,27.5 + parent: 17641 + - uid: 18740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 248 + pos: 12.5,26.5 + parent: 17641 + - uid: 18741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 2 - - uid: 501 + pos: 34.5,0.5 + parent: 17641 + - uid: 18742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-30.5 - parent: 2 - - uid: 502 + pos: 28.5,0.5 + parent: 17641 +- proto: GasFilter + entities: + - uid: 2180 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-30.5 + pos: -18.5,-28.5 parent: 2 - - uid: 587 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasFilterFlipped + entities: + - uid: 4726 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-8.5 + pos: -25.5,16.5 parent: 2 - - uid: 641 + - uid: 4734 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-8.5 + pos: -24.5,16.5 parent: 2 - - uid: 730 +- proto: GasMinerNitrogenStation + entities: + - uid: 1429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-21.5 + pos: -8.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 732 +- proto: GasMinerOxygenStation + entities: + - uid: 2172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-20.5 + rot: 1.5707963267948966 rad + pos: -11.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 810 +- proto: GasMinerPlasma + entities: + - uid: 12487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,14.5 + pos: 1.5,-32.5 parent: 2 - - uid: 897 + - type: GasMiner + spawnAmount: 25 +- proto: GasOutletInjector + entities: + - uid: 24 components: - type: Transform - pos: 12.5,23.5 + rot: 3.141592653589793 rad + pos: -1.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1003 + - uid: 54 components: - type: Transform - pos: 22.5,-30.5 + rot: 1.5707963267948966 rad + pos: -14.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1018 + - uid: 74 components: - type: Transform - pos: 22.5,-29.5 + rot: 1.5707963267948966 rad + pos: -12.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1115 + - uid: 77 components: - type: Transform - pos: 9.5,-3.5 + rot: 1.5707963267948966 rad + pos: -9.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1434 + - uid: 88 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-24.5 + rot: 1.5707963267948966 rad + pos: -17.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1862 + - uid: 14916 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-23.5 + rot: 1.5707963267948966 rad + pos: 0.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2162 +- proto: GasPassiveVent + entities: + - uid: 269 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-30.5 + pos: -9.5,-31.5 parent: 2 - - uid: 2163 + - uid: 272 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-31.5 + pos: -15.5,-32.5 parent: 2 - - uid: 2164 + - uid: 289 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-30.5 + pos: -12.5,-31.5 parent: 2 - - uid: 2165 + - uid: 2171 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-31.5 + pos: -18.5,-32.5 parent: 2 - - uid: 2167 + - uid: 2616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-32.5 + rot: 3.141592653589793 rad + pos: -25.5,-16.5 parent: 2 - - uid: 2187 + - uid: 2617 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-24.5 + pos: -21.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2188 + - uid: 2655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-25.5 + rot: -1.5707963267948966 rad + pos: 9.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2196 + - uid: 12409 components: - type: Transform - pos: -16.5,-30.5 - parent: 2 - - uid: 2197 + rot: -1.5707963267948966 rad + pos: 31.5,9.5 + parent: 16200 + - uid: 13600 components: - type: Transform - pos: -16.5,-31.5 + rot: 3.141592653589793 rad + pos: 21.5,21.5 parent: 2 - - uid: 2199 + - uid: 13959 components: - type: Transform - pos: -18.5,-31.5 + pos: -13.5,1.5 parent: 2 - - uid: 2200 + - uid: 14912 components: - type: Transform - pos: -15.5,-31.5 + rot: 3.141592653589793 rad + pos: 0.5,-31.5 parent: 2 - - uid: 2201 + - uid: 17054 components: - type: Transform - pos: -18.5,-30.5 + rot: 1.5707963267948966 rad + pos: 58.5,-8.5 parent: 2 - - uid: 2204 +- proto: GasPipeBend + entities: + - uid: 117 components: - type: Transform - pos: -15.5,-30.5 + rot: 1.5707963267948966 rad + pos: -22.5,-19.5 parent: 2 - - uid: 2276 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-29.5 + rot: 3.141592653589793 rad + pos: -26.5,16.5 parent: 2 - - uid: 2290 + - uid: 514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-23.5 + rot: 1.5707963267948966 rad + pos: -25.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2347 + - uid: 621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-24.5 + rot: -1.5707963267948966 rad + pos: -30.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2348 + - uid: 733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-22.5 + pos: 20.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2456 + color: '#FF0000FF' + - uid: 1163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-21.5 + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2571 + color: '#FF0000FF' + - uid: 1202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-19.5 + rot: 1.5707963267948966 rad + pos: 22.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2575 + - uid: 1205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-18.5 + rot: 1.5707963267948966 rad + pos: 23.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2606 + color: '#FF0000FF' + - uid: 1233 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-3.5 + pos: 2.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2624 + color: '#0000FFFF' + - uid: 1306 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-13.5 + pos: -4.5,-26.5 parent: 2 - - uid: 2708 + - uid: 1347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-16.5 + rot: -1.5707963267948966 rad + pos: 24.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2730 + color: '#FF0000FF' + - uid: 1433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-16.5 + rot: -1.5707963267948966 rad + pos: 23.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2734 + - uid: 1543 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-16.5 + pos: -31.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2736 + color: '#FF0000FF' + - uid: 1544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-16.5 + rot: -1.5707963267948966 rad + pos: -31.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3097 + color: '#FF0000FF' + - uid: 2168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-25.5 + rot: -1.5707963267948966 rad + pos: -7.5,-32.5 parent: 2 - - uid: 3506 + - uid: 2169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 + rot: -1.5707963267948966 rad + pos: -10.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3515 + - uid: 2170 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-27.5 + pos: -13.5,-32.5 parent: 2 - - uid: 3731 + - uid: 2195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-15.5 + rot: -1.5707963267948966 rad + pos: -16.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3734 + - uid: 2615 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-16.5 + pos: -24.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3735 + - uid: 2619 components: - type: Transform - pos: -13.5,-30.5 + rot: 3.141592653589793 rad + pos: -22.5,-15.5 parent: 2 - - uid: 3736 + - uid: 2620 components: - type: Transform - pos: -13.5,-31.5 + pos: -21.5,-13.5 parent: 2 - - uid: 3740 + - uid: 2621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-13.5 + rot: 1.5707963267948966 rad + pos: -25.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3754 + - uid: 2672 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-15.5 + pos: -37.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3930 + - uid: 2801 components: - type: Transform - pos: -7.5,6.5 + pos: 23.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3945 + color: '#0000FFFF' + - uid: 3193 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,9.5 + pos: 31.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4126 + color: '#FF0000FF' + - uid: 3533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-15.5 + rot: 1.5707963267948966 rad + pos: -37.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4534 + - uid: 3636 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-15.5 + pos: -38.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4544 + color: '#0000FFFF' + - uid: 3826 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-15.5 + pos: 2.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4560 + color: '#0000FFFF' + - uid: 4551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-16.5 + pos: 24.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4563 + - uid: 4731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-11.5 + pos: -23.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4570 + - uid: 4733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-18.5 + rot: 1.5707963267948966 rad + pos: -26.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4574 + - uid: 4788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-14.5 + pos: -25.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 4576 + - uid: 4931 components: - type: Transform - pos: 19.5,-12.5 + rot: -1.5707963267948966 rad + pos: 12.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4595 + - uid: 5181 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-17.5 + pos: 12.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4596 + - uid: 6465 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-19.5 + pos: 16.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,18.5 - parent: 2 - - uid: 4727 + - uid: 8295 components: - type: Transform - pos: -23.5,17.5 + rot: 3.141592653589793 rad + pos: -2.5,30.5 parent: 2 - - uid: 4728 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,17.5 + rot: 1.5707963267948966 rad + pos: -38.5,41.5 parent: 2 - - uid: 4735 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,17.5 + rot: 3.141592653589793 rad + pos: -17.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4736 + color: '#0000FFFF' + - uid: 12001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,17.5 + rot: 3.141592653589793 rad + pos: -7.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4887 + - uid: 12009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 4946 + - uid: 12086 components: - type: Transform - pos: 21.5,-10.5 + rot: 3.141592653589793 rad + pos: 6.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 4969 + - uid: 12096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-28.5 + pos: 10.5,-19.5 parent: 2 - - uid: 5318 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12103 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-26.5 + pos: 10.5,-21.5 parent: 2 - - uid: 5793 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-20.5 + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5997 + - uid: 12112 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,7.5 + pos: 10.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6818 + color: '#0000FFFF' + - uid: 12113 components: - type: Transform - pos: -56.5,19.5 + rot: 1.5707963267948966 rad + pos: 10.5,-22.5 parent: 2 - - uid: 7598 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-22.5 + rot: -1.5707963267948966 rad + pos: 12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7656 + color: '#0000FFFF' + - uid: 12115 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,9.5 + pos: 12.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7672 + - uid: 12123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-21.5 + rot: -1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12160 + components: + - type: Transform + pos: 13.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7765 + color: '#0000FFFF' + - uid: 12198 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-24.5 + pos: -36.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7812 + color: '#0000FFFF' + - uid: 12223 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-25.5 + pos: -21.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7814 + color: '#0000FFFF' + - uid: 12243 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-23.5 + pos: -26.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 7815 + - uid: 12244 components: - type: Transform - pos: -9.5,-2.5 + rot: -1.5707963267948966 rad + pos: -24.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7832 + - uid: 12315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-14.5 + rot: 3.141592653589793 rad + pos: 3.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 7833 + - uid: 12518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-14.5 + rot: -1.5707963267948966 rad + pos: 24.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 7834 + - uid: 12525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-14.5 + rot: 3.141592653589793 rad + pos: -56.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7835 + color: '#0000FFFF' + - uid: 12535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-14.5 + rot: 3.141592653589793 rad + pos: -38.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7842 + color: '#0000FFFF' + - uid: 12536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-14.5 + rot: -1.5707963267948966 rad + pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7845 + color: '#0000FFFF' + - uid: 12537 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-16.5 + pos: 24.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7850 + color: '#FF0000FF' + - uid: 12538 components: - type: Transform - pos: -52.5,29.5 + rot: 1.5707963267948966 rad + pos: 26.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7851 + color: '#0000FFFF' + - uid: 12545 components: - type: Transform - pos: -52.5,30.5 + rot: -1.5707963267948966 rad + pos: -36.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 7852 + - uid: 12550 components: - type: Transform - pos: 22.5,-27.5 + pos: 21.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7859 + - uid: 12614 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,30.5 + pos: -9.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 8166 + - uid: 12676 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-8.5 + pos: -72.5,14.5 parent: 2 - - uid: 8296 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12731 components: - type: Transform - pos: -3.5,36.5 + rot: 3.141592653589793 rad + pos: -74.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9937 + - uid: 12753 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,34.5 + pos: -54.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10274 + color: '#FF0000FF' + - uid: 12762 components: - type: Transform - pos: -9.5,-8.5 + rot: 3.141592653589793 rad + pos: -18.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11375 + - uid: 12763 components: - type: Transform - pos: 29.5,1.5 + rot: 3.141592653589793 rad + pos: -20.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11617 + - uid: 12765 components: - type: Transform - pos: -9.5,-14.5 + pos: -18.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11694 + - uid: 12784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,32.5 + pos: -20.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11719 - components: - - type: Transform - pos: 21.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11722 + - uid: 12786 components: - type: Transform - pos: 21.5,-8.5 + rot: 3.141592653589793 rad + pos: -21.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11757 + color: '#FF0000FF' + - uid: 12794 components: - type: Transform - pos: 21.5,-9.5 + pos: 20.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11767 + color: '#FF0000FF' + - uid: 12818 components: - type: Transform - pos: 21.5,-3.5 + rot: 3.141592653589793 rad + pos: -37.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11776 + color: '#FF0000FF' + - uid: 12951 components: - type: Transform - pos: 21.5,-2.5 + rot: 1.5707963267948966 rad + pos: -74.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11778 + - uid: 12952 components: - type: Transform - pos: 19.5,-3.5 + rot: 1.5707963267948966 rad + pos: -72.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11782 + - uid: 12953 components: - type: Transform - pos: -32.5,33.5 + rot: 1.5707963267948966 rad + pos: 9.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11787 + color: '#FF0000FF' + - uid: 13033 components: - type: Transform - pos: 19.5,-4.5 + pos: -1.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11823 + - uid: 13035 components: - type: Transform - pos: 22.5,-28.5 + rot: 1.5707963267948966 rad + pos: -27.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11830 + - uid: 13036 components: - type: Transform - pos: 23.5,-31.5 + rot: 1.5707963267948966 rad + pos: -29.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11835 + - uid: 13077 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-14.5 + pos: -3.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11839 + color: '#0000FFFF' + - uid: 13100 components: - type: Transform - pos: 23.5,-28.5 + rot: 1.5707963267948966 rad + pos: -2.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11842 + - uid: 13147 components: - type: Transform - pos: 23.5,-30.5 + rot: 3.141592653589793 rad + pos: 22.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11843 + color: '#0000FFFF' + - uid: 13148 components: - type: Transform - pos: 23.5,-29.5 + rot: 3.141592653589793 rad + pos: 23.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11854 + - uid: 13156 components: - type: Transform - pos: -9.5,-12.5 + rot: -1.5707963267948966 rad + pos: 28.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11924 + - uid: 13164 components: - type: Transform - pos: 21.5,2.5 + rot: 1.5707963267948966 rad + pos: -2.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11945 + color: '#FF0000FF' + - uid: 13235 components: - type: Transform - pos: -26.5,-26.5 + pos: -23.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11946 + - uid: 13261 components: - type: Transform - pos: 22.5,-32.5 + rot: 3.141592653589793 rad + pos: -33.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11962 + color: '#FF0000FF' + - uid: 13287 components: - type: Transform - pos: -16.5,-22.5 + rot: 3.141592653589793 rad + pos: -57.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11963 + - uid: 13357 components: - type: Transform - pos: -16.5,-21.5 + rot: 1.5707963267948966 rad + pos: -12.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11965 + color: '#FF0000FF' + - uid: 13358 components: - type: Transform - pos: -16.5,-19.5 + rot: -1.5707963267948966 rad + pos: -11.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11966 + color: '#FF0000FF' + - uid: 13363 components: - type: Transform - pos: -18.5,-18.5 + pos: -10.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11967 + color: '#0000FFFF' + - uid: 13379 components: - type: Transform - pos: -16.5,-17.5 + rot: -1.5707963267948966 rad + pos: 2.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11968 + - uid: 13442 components: - type: Transform - pos: -16.5,-16.5 + pos: 21.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11972 + - uid: 13454 components: - type: Transform - pos: -18.5,-19.5 + rot: -1.5707963267948966 rad + pos: 19.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11973 + - uid: 13457 components: - type: Transform - pos: -18.5,-17.5 + rot: 1.5707963267948966 rad + pos: 12.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11974 + color: '#0000FFFF' + - uid: 13465 components: - type: Transform - pos: -18.5,-16.5 + rot: 3.141592653589793 rad + pos: 9.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11975 + - uid: 13503 components: - type: Transform - pos: -18.5,-14.5 + pos: 5.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11977 + color: '#0000FFFF' + - uid: 13509 components: - type: Transform - pos: -18.5,-15.5 + rot: -1.5707963267948966 rad + pos: 5.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11982 + - uid: 13538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-13.5 + pos: 13.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11983 + - uid: 13544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-13.5 + rot: -1.5707963267948966 rad + pos: 10.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11984 + - uid: 13545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 + rot: 3.141592653589793 rad + pos: 12.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11986 + color: '#0000FFFF' + - uid: 13553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-13.5 + rot: 3.141592653589793 rad + pos: 9.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11987 + - uid: 13554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 + pos: 9.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11988 + - uid: 13556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-13.5 + rot: 3.141592653589793 rad + pos: 7.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11989 + - uid: 13559 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-13.5 + pos: 2.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11990 + color: '#0000FFFF' + - uid: 13588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-13.5 + pos: 17.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11992 + - uid: 13594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-15.5 + rot: -1.5707963267948966 rad + pos: 19.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11993 + color: '#FF0000FF' + - uid: 13601 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-15.5 + pos: 21.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11994 + - uid: 13603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-15.5 + pos: 21.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11995 + - uid: 13618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-15.5 + rot: 3.141592653589793 rad + pos: -9.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11996 + - uid: 13628 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-15.5 + pos: -11.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 11998 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11999 + - uid: 13640 components: - type: Transform - pos: -9.5,-9.5 + rot: -1.5707963267948966 rad + pos: -11.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12000 + - uid: 13642 components: - type: Transform - pos: -9.5,-11.5 + pos: -17.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12002 + - uid: 13643 components: - type: Transform - pos: -9.5,-13.5 + rot: 3.141592653589793 rad + pos: -17.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12003 + - uid: 13669 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-13.5 + pos: -18.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12004 + - uid: 13677 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-13.5 + pos: -17.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12007 + color: '#0000FFFF' + - uid: 13678 components: - type: Transform - pos: -7.5,-9.5 + rot: 1.5707963267948966 rad + pos: -20.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12010 + color: '#0000FFFF' + - uid: 13718 components: - type: Transform - pos: -7.5,-12.5 + rot: 1.5707963267948966 rad + pos: -30.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12011 + color: '#0000FFFF' + - uid: 13732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-16.5 + rot: 3.141592653589793 rad + pos: -19.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12012 + color: '#FF0000FF' + - uid: 13733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-16.5 + pos: -18.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12013 + color: '#FF0000FF' + - uid: 13734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-16.5 + pos: -17.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12015 + - uid: 13766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-16.5 + rot: 3.141592653589793 rad + pos: -12.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12016 + - uid: 13769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-16.5 + rot: 1.5707963267948966 rad + pos: -13.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12017 + color: '#FF0000FF' + - uid: 13782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 + pos: -9.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12019 + - uid: 13783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-16.5 + pos: -8.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12021 + color: '#FF0000FF' + - uid: 13790 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-14.5 + pos: 0.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12022 + - uid: 13822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-14.5 + pos: 9.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12023 + - uid: 13823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-14.5 + rot: 3.141592653589793 rad + pos: 9.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12025 + - uid: 13827 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-14.5 + pos: 12.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12026 + - uid: 13833 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-14.5 + pos: 13.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12027 + color: '#0000FFFF' + - uid: 13836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-14.5 + pos: 12.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12030 + - uid: 13844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-14.5 + pos: -52.5,34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12031 + - uid: 13866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-16.5 + rot: 3.141592653589793 rad + pos: -22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12032 + color: '#FF0000FF' + - uid: 13878 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-16.5 + pos: -14.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12034 + - uid: 13888 components: - type: Transform - pos: 1.5,-15.5 + pos: -12.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12035 + - uid: 13912 components: - type: Transform - pos: 1.5,-16.5 + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12036 + - uid: 13913 components: - type: Transform - pos: 1.5,-18.5 + rot: 3.141592653589793 rad + pos: -22.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12037 + - uid: 13919 components: - type: Transform - pos: 1.5,-17.5 + rot: 1.5707963267948966 rad + pos: -17.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12038 + color: '#0000FFFF' + - uid: 13920 components: - type: Transform - pos: -0.5,-17.5 + rot: 1.5707963267948966 rad + pos: -18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12039 + color: '#FF0000FF' + - uid: 13939 components: - type: Transform - pos: -0.5,-18.5 + rot: -1.5707963267948966 rad + pos: -11.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12040 + color: '#FF0000FF' + - uid: 13955 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-15.5 + pos: -21.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12041 + - uid: 13985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-17.5 + pos: 12.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12042 + - uid: 13988 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-16.5 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12043 + color: '#0000FFFF' + - uid: 13989 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-18.5 + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12044 + - uid: 14004 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-19.5 + pos: 0.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12045 + - uid: 14005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-20.5 + pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12046 + - uid: 14030 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-21.5 + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12047 + - uid: 14043 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-17.5 + pos: -0.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12048 + - uid: 14058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-19.5 + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12049 + color: '#FF0000FF' + - uid: 14059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-20.5 + rot: 1.5707963267948966 rad + pos: 7.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12050 + - uid: 14064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-21.5 + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12051 + - uid: 14130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-18.5 + pos: 29.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12052 + - uid: 14132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-23.5 + pos: 28.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12053 + color: '#FF0000FF' + - uid: 14179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-23.5 + pos: 51.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12054 + - uid: 14235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-23.5 + rot: 1.5707963267948966 rad + pos: 46.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12055 + - uid: 14314 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-21.5 + pos: 49.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12060 + - uid: 14321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-16.5 + rot: 3.141592653589793 rad + pos: 51.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12061 + - uid: 14340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-16.5 + rot: -1.5707963267948966 rad + pos: 39.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12063 + - uid: 14375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 + rot: 3.141592653589793 rad + pos: 28.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12064 + - uid: 14380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-14.5 + pos: 34.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12065 + - uid: 14381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-14.5 + rot: 3.141592653589793 rad + pos: 34.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12067 + - uid: 14410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-14.5 + rot: 3.141592653589793 rad + pos: 32.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12068 + - uid: 14411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-14.5 + rot: -1.5707963267948966 rad + pos: 34.5,-37.5 + parent: 2 + - uid: 14433 + components: + - type: Transform + pos: 35.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12069 + - uid: 14434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-14.5 + pos: 38.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12070 + color: '#0000FFFF' + - uid: 14435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-14.5 + pos: 39.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12081 + color: '#0000FFFF' + - uid: 14436 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-17.5 + pos: 38.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12082 + - uid: 14448 components: - type: Transform - pos: 6.5,-19.5 + rot: 3.141592653589793 rad + pos: 30.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12083 + - uid: 14450 components: - type: Transform - pos: 6.5,-21.5 + rot: 3.141592653589793 rad + pos: 29.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12084 + color: '#FF0000FF' + - uid: 14467 components: - type: Transform - pos: 6.5,-18.5 + rot: -1.5707963267948966 rad + pos: 39.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12089 + - uid: 14504 components: - type: Transform - pos: 12.5,-17.5 + rot: -1.5707963267948966 rad + pos: 31.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12090 + - uid: 14507 components: - type: Transform - pos: 12.5,-18.5 + rot: 1.5707963267948966 rad + pos: 30.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12091 + color: '#0000FFFF' + - uid: 14513 components: - type: Transform - pos: 12.5,-16.5 + rot: -1.5707963267948966 rad + pos: 34.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12092 + - uid: 16169 components: - type: Transform - pos: 12.5,-19.5 + rot: 3.141592653589793 rad + pos: -21.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12094 + - uid: 16173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-20.5 + pos: -21.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12098 + - uid: 16174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 + rot: 3.141592653589793 rad + pos: -22.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12101 + color: '#FF0000FF' + - uid: 16614 + components: + - type: Transform + pos: 27.5,9.5 + parent: 16200 + - uid: 16623 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12108 + pos: 20.5,9.5 + parent: 16200 + - uid: 16633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12109 + rot: 1.5707963267948966 rad + pos: 20.5,22.5 + parent: 16200 + - uid: 16641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 + pos: 27.5,14.5 + parent: 16200 + - uid: 16660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,17.5 + parent: 16200 + - uid: 16668 + components: + - type: Transform + pos: 27.5,10.5 + parent: 16200 + - uid: 16669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,9.5 + parent: 16200 + - uid: 16672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,10.5 + parent: 16200 +- proto: GasPipeBroken + entities: + - uid: 588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12110 +- proto: GasPipeFourway + entities: + - uid: 2622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-22.5 + pos: -24.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12111 + - uid: 4395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-21.5 + pos: -20.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12116 + - uid: 7869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-20.5 + pos: 21.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12117 + color: '#0000FFFF' + - uid: 8041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-21.5 + pos: -38.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12118 + - uid: 8299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-20.5 + pos: -3.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12120 + color: '#0000FFFF' + - uid: 11978 components: - type: Transform - pos: 15.5,-21.5 + pos: -18.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12121 + - uid: 12087 components: - type: Transform - pos: 15.5,-22.5 + pos: 12.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12122 + - uid: 12163 components: - type: Transform - pos: 17.5,-22.5 + pos: -20.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12126 + color: '#FF0000FF' + - uid: 12712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-23.5 + pos: -1.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12129 + - uid: 12788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-16.5 + pos: -29.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12130 + color: '#FF0000FF' + - uid: 12798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-16.5 + pos: -27.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12131 + - uid: 12802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-16.5 + pos: 13.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12134 + - uid: 12807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-16.5 + pos: -3.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12136 + - uid: 12810 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 + pos: -3.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12137 + - uid: 12822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 + pos: -54.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12138 + color: '#FF0000FF' + - uid: 13215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-11.5 + pos: -27.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12139 + - uid: 13447 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-10.5 + pos: 13.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12140 + - uid: 13885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-14.5 + pos: -18.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12141 + color: '#FF0000FF' + - uid: 13895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-9.5 + pos: -17.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12142 + - uid: 14209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-12.5 + pos: 34.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12143 + color: '#FF0000FF' + - uid: 14212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-8.5 + pos: 38.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12144 + color: '#FF0000FF' + - uid: 14215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-13.5 + pos: 42.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12145 + - uid: 14222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-11.5 + pos: 36.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12146 + color: '#0000FFFF' + - uid: 14224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-10.5 + pos: 40.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12147 + color: '#0000FFFF' + - uid: 14225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-12.5 + pos: 44.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12148 + color: '#0000FFFF' +- proto: GasPipeStraight + entities: + - uid: 118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-9.5 + rot: -1.5707963267948966 rad + pos: -30.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12150 + - uid: 160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-8.5 + pos: -7.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12151 + - uid: 169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-5.5 + rot: -1.5707963267948966 rad + pos: 16.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12152 + color: '#0000FFFF' + - uid: 248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-4.5 + rot: 1.5707963267948966 rad + pos: -11.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12153 + - uid: 386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-6.5 + pos: -38.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12154 + color: '#0000FFFF' + - uid: 474 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-7.5 + rot: -1.5707963267948966 rad + pos: -39.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12155 + color: '#FF0000FF' + - uid: 501 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-5.5 + pos: -12.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12156 + - uid: 502 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-4.5 + pos: -9.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12157 + - uid: 730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-3.5 + rot: -1.5707963267948966 rad + pos: 15.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12158 + - uid: 732 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-2.5 + pos: 17.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12162 + - uid: 897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 + pos: 12.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12165 + - uid: 951 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-23.5 + pos: -31.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12167 + - uid: 1003 components: - type: Transform - pos: -22.5,-22.5 + pos: 22.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12168 + - uid: 1018 components: - type: Transform - pos: -22.5,-21.5 + pos: 22.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12170 + - uid: 1115 components: - type: Transform - pos: -22.5,-20.5 + pos: 9.5,-3.5 parent: 2 - - uid: 12172 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-21.5 + rot: 3.141592653589793 rad + pos: -16.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12173 + color: '#0000FFFF' + - uid: 1476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-21.5 + pos: -38.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12174 + color: '#0000FFFF' + - uid: 1522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-21.5 + rot: 3.141592653589793 rad + pos: -30.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12175 + color: '#0000FFFF' + - uid: 1523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-21.5 + rot: 1.5707963267948966 rad + pos: -37.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12176 + color: '#0000FFFF' + - uid: 1862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-21.5 + rot: 3.141592653589793 rad + pos: -18.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12179 + - uid: 2135 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-23.5 + pos: -6.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12180 + - uid: 2162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-23.5 + rot: 3.141592653589793 rad + pos: -10.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12181 + - uid: 2163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-23.5 + rot: 3.141592653589793 rad + pos: -10.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12182 + - uid: 2164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-21.5 + rot: 3.141592653589793 rad + pos: -7.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12183 + - uid: 2165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-21.5 + rot: 3.141592653589793 rad + pos: -7.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12184 + - uid: 2167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-21.5 + rot: 1.5707963267948966 rad + pos: -8.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12185 + - uid: 2187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-21.5 + rot: 3.141592653589793 rad + pos: -18.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12186 + - uid: 2188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-21.5 + rot: 3.141592653589793 rad + pos: -18.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12187 + - uid: 2196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-21.5 + pos: -16.5,-30.5 parent: 2 - - uid: 12188 + - uid: 2197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-21.5 + pos: -16.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12189 + - uid: 2199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-23.5 + pos: -18.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12190 + - uid: 2200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-23.5 + pos: -15.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12191 + - uid: 2201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-23.5 + pos: -18.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12192 + - uid: 2204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-23.5 + pos: -15.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12193 + - uid: 2276 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-23.5 + pos: 8.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12194 + - uid: 2290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-23.5 + rot: 3.141592653589793 rad + pos: 23.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12195 + - uid: 2347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-23.5 + rot: 3.141592653589793 rad + pos: 23.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12196 + - uid: 2348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-23.5 + rot: 3.141592653589793 rad + pos: 23.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12197 + - uid: 2456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-23.5 + rot: 3.141592653589793 rad + pos: 23.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12199 + - uid: 2571 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-22.5 + pos: 23.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12203 + - uid: 2575 components: - type: Transform - pos: -26.5,-22.5 + rot: 3.141592653589793 rad + pos: 23.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12204 + color: '#0000FFFF' + - uid: 2606 components: - type: Transform - pos: -26.5,-23.5 + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12205 + - uid: 2624 components: - type: Transform - pos: -26.5,-24.5 + rot: -1.5707963267948966 rad + pos: -23.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12206 + - uid: 2708 components: - type: Transform - pos: -24.5,-24.5 + rot: 1.5707963267948966 rad + pos: 18.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12207 + - uid: 2730 components: - type: Transform - pos: -24.5,-26.5 + rot: 1.5707963267948966 rad + pos: 17.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12208 + - uid: 2734 components: - type: Transform - pos: -24.5,-25.5 + rot: 1.5707963267948966 rad + pos: 19.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12214 + - uid: 2736 components: - type: Transform - pos: -26.5,-28.5 + rot: 1.5707963267948966 rad + pos: 20.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12215 + color: '#0000FFFF' + - uid: 2780 components: - type: Transform - pos: -26.5,-27.5 + pos: -37.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12216 + - uid: 3097 components: - type: Transform - pos: -24.5,-28.5 + rot: 3.141592653589793 rad + pos: -16.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12217 + - uid: 3353 components: - type: Transform - pos: -20.5,-22.5 + pos: 28.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12218 + - uid: 3506 components: - type: Transform - pos: -20.5,-23.5 + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12219 + - uid: 3515 components: - type: Transform - pos: -20.5,-24.5 + rot: -1.5707963267948966 rad + pos: 8.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12220 + - uid: 3609 components: - type: Transform - pos: -21.5,-24.5 + rot: 3.141592653589793 rad + pos: -19.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12221 + color: '#FF0000FF' + - uid: 3631 components: - type: Transform - pos: -21.5,-26.5 + pos: -37.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12222 + color: '#FF0000FF' + - uid: 3682 components: - type: Transform - pos: -21.5,-25.5 + pos: -37.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12227 + color: '#FF0000FF' + - uid: 3688 components: - type: Transform - pos: -24.5,-29.5 + pos: -38.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12228 + - uid: 3691 components: - type: Transform - pos: -24.5,-31.5 + rot: -1.5707963267948966 rad + pos: -36.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12229 + color: '#FF0000FF' + - uid: 3731 components: - type: Transform - pos: -24.5,-30.5 + rot: 3.141592653589793 rad + pos: 21.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12230 + - uid: 3734 components: - type: Transform - pos: -26.5,-29.5 + rot: -1.5707963267948966 rad + pos: 22.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12231 + color: '#0000FFFF' + - uid: 3735 components: - type: Transform - pos: -26.5,-30.5 + pos: -13.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12232 + - uid: 3736 components: - type: Transform - pos: -26.5,-31.5 + pos: -13.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12233 + - uid: 3740 components: - type: Transform - pos: -26.5,-32.5 + rot: 3.141592653589793 rad + pos: 21.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12234 + color: '#0000FFFF' + - uid: 3754 components: - type: Transform - pos: -26.5,-34.5 + rot: -1.5707963267948966 rad + pos: 23.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12236 + - uid: 3930 components: - type: Transform - pos: -26.5,-33.5 + pos: -7.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12237 + - uid: 3939 components: - type: Transform - pos: -24.5,-32.5 + pos: -25.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12238 + color: '#FF0000FF' + - uid: 3945 components: - type: Transform - pos: -24.5,-34.5 + rot: 1.5707963267948966 rad + pos: 20.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12239 + - uid: 4126 components: - type: Transform - pos: -24.5,-35.5 + rot: -1.5707963267948966 rad + pos: 22.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12240 + color: '#FF0000FF' + - uid: 4469 components: - type: Transform - pos: -24.5,-36.5 + rot: 3.141592653589793 rad + pos: -21.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12242 + color: '#FF0000FF' + - uid: 4499 components: - type: Transform - pos: -24.5,-33.5 + rot: 1.5707963267948966 rad + pos: 32.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12245 + - uid: 4501 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-35.5 + pos: 34.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12246 + - uid: 4534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-35.5 + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12247 + - uid: 4544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-35.5 + rot: -1.5707963267948966 rad + pos: 20.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12248 + - uid: 4560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-35.5 + rot: 3.141592653589793 rad + pos: 24.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12249 + - uid: 4563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-37.5 + rot: 3.141592653589793 rad + pos: 19.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12250 + color: '#FF0000FF' + - uid: 4570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-37.5 + rot: 3.141592653589793 rad + pos: 24.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12285 + color: '#FF0000FF' + - uid: 4574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-20.5 + rot: 3.141592653589793 rad + pos: 21.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12286 + - uid: 4576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-22.5 + pos: 19.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12287 + - uid: 4595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-22.5 + rot: 3.141592653589793 rad + pos: 24.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12288 + - uid: 4596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-22.5 + rot: 3.141592653589793 rad + pos: 24.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12292 + - uid: 4634 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-22.5 + pos: -27.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12293 + - uid: 4723 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-20.5 + pos: -24.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12306 + - uid: 4727 components: - type: Transform - pos: 21.5,-5.5 + pos: -23.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12310 + - uid: 4728 components: - type: Transform - pos: 3.5,-15.5 + rot: -1.5707963267948966 rad + pos: -23.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12311 + - uid: 4735 components: - type: Transform - pos: 3.5,-18.5 + rot: 1.5707963267948966 rad + pos: -21.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12312 + - uid: 4736 components: - type: Transform - pos: 3.5,-19.5 + rot: 1.5707963267948966 rad + pos: -20.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12313 + - uid: 4887 components: - type: Transform - pos: 3.5,-16.5 + rot: -1.5707963267948966 rad + pos: -21.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12314 + color: '#0000FFFF' + - uid: 4946 components: - type: Transform - pos: 3.5,-17.5 + pos: 21.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12316 + color: '#0000FFFF' + - uid: 4969 components: - type: Transform - pos: 4.5,-17.5 + rot: -1.5707963267948966 rad + pos: 8.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12335 + - uid: 5318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + - uid: 5793 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-30.5 + pos: 24.5,-20.5 parent: 2 - - uid: 12400 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5997 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 16200 - - uid: 12404 + pos: 14.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6818 + components: + - type: Transform + pos: -56.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7598 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-30.5 + pos: 24.5,-22.5 parent: 2 - - uid: 12488 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7656 components: - type: Transform - pos: 19.5,-6.5 + rot: 1.5707963267948966 rad + pos: -6.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12489 + color: '#0000FFFF' + - uid: 7672 components: - type: Transform - pos: 19.5,-5.5 + rot: 3.141592653589793 rad + pos: 24.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12490 + - uid: 7765 components: - type: Transform - pos: 19.5,-7.5 + rot: 3.141592653589793 rad + pos: 24.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12491 + - uid: 7812 components: - type: Transform - pos: 19.5,-8.5 + rot: 3.141592653589793 rad + pos: 24.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12494 + - uid: 7814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-9.5 + rot: 3.141592653589793 rad + pos: 24.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12495 + - uid: 7815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-9.5 + pos: -9.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12496 + color: '#0000FFFF' + - uid: 7832 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-9.5 + pos: 15.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12497 + - uid: 7833 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-9.5 + pos: 16.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12498 + - uid: 7834 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-9.5 + pos: 17.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12499 + - uid: 7835 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-9.5 + pos: 14.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12500 + - uid: 7842 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-9.5 + pos: 18.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12501 + - uid: 7845 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-7.5 + pos: 16.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12502 + - uid: 7850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-7.5 + pos: -52.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12503 + color: '#FF0000FF' + - uid: 7851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-7.5 + pos: -52.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12504 + color: '#FF0000FF' + - uid: 7852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 + pos: 22.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12505 + - uid: 7859 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-7.5 + pos: -52.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12506 + - uid: 8296 components: - type: Transform - pos: 21.5,-1.5 + pos: -3.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12507 + - uid: 9734 components: - type: Transform - pos: 21.5,0.5 + pos: -17.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12508 + - uid: 9937 components: - type: Transform - pos: 21.5,-0.5 + rot: -1.5707963267948966 rad + pos: -25.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12509 - components: - - type: Transform - pos: 19.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12510 - components: - - type: Transform - pos: 19.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12511 - components: - - type: Transform - pos: 19.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12512 + - uid: 10274 components: - type: Transform - pos: 19.5,-0.5 + pos: -9.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12514 + color: '#0000FFFF' + - uid: 11375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,3.5 + pos: 29.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12515 + - uid: 11617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,3.5 + pos: -9.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12516 + color: '#0000FFFF' + - uid: 11694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,3.5 + rot: -1.5707963267948966 rad + pos: -23.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12517 + - uid: 11719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,3.5 + pos: 21.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12520 + color: '#0000FFFF' + - uid: 11722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,4.5 + pos: 21.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12521 + color: '#0000FFFF' + - uid: 11757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,1.5 + pos: 21.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12522 + - uid: 11767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,1.5 + pos: 21.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12523 + - uid: 11776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,1.5 + pos: 21.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12524 + - uid: 11778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,1.5 + pos: 19.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12526 + color: '#FF0000FF' + - uid: 11782 components: - type: Transform - pos: 26.5,3.5 + pos: -32.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12527 + - uid: 11787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,4.5 + pos: 19.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12528 + color: '#FF0000FF' + - uid: 11823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,4.5 + pos: 22.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12529 + - uid: 11830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,6.5 + pos: 23.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12530 + - uid: 11835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,6.5 + rot: 1.5707963267948966 rad + pos: 13.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12532 + - uid: 11839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,6.5 + pos: 23.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12533 + - uid: 11842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,4.5 + pos: 23.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12539 + color: '#FF0000FF' + - uid: 11843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,6.5 + pos: 23.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12541 + - uid: 11854 components: - type: Transform - pos: 21.5,5.5 + pos: -9.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12542 + - uid: 11924 components: - type: Transform - pos: 21.5,4.5 + pos: 21.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12543 + - uid: 11945 components: - type: Transform - pos: 21.5,6.5 + pos: -26.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12544 + color: '#FF0000FF' + - uid: 11946 components: - type: Transform - pos: 21.5,3.5 + pos: 22.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12546 + - uid: 11962 components: - type: Transform - pos: 21.5,8.5 + pos: -16.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12548 + - uid: 11963 components: - type: Transform - pos: 19.5,5.5 + pos: -16.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12549 + color: '#0000FFFF' + - uid: 11965 components: - type: Transform - pos: 19.5,6.5 + pos: -16.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12552 + color: '#0000FFFF' + - uid: 11966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,7.5 + pos: -18.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12554 + - uid: 11967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,7.5 + pos: -16.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12556 + color: '#0000FFFF' + - uid: 11968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,9.5 + pos: -16.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12557 + - uid: 11972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,9.5 + pos: -18.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12558 + color: '#FF0000FF' + - uid: 11973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,9.5 + pos: -18.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12559 + color: '#FF0000FF' + - uid: 11974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,9.5 + pos: -18.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12560 + color: '#FF0000FF' + - uid: 11975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,9.5 + pos: -18.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12561 + color: '#FF0000FF' + - uid: 11977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,9.5 + pos: -18.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12564 + color: '#FF0000FF' + - uid: 11982 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,10.5 + pos: -17.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12565 + - uid: 11983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,11.5 + rot: 1.5707963267948966 rad + pos: -17.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12566 + color: '#FF0000FF' + - uid: 11984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,8.5 + rot: 1.5707963267948966 rad + pos: -15.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12567 + - uid: 11986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,10.5 + rot: 1.5707963267948966 rad + pos: -13.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12568 + - uid: 11987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,11.5 + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12569 + - uid: 11988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,9.5 + rot: 1.5707963267948966 rad + pos: -12.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12571 + - uid: 11989 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,7.5 + pos: -10.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12572 + - uid: 11990 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,7.5 + pos: -14.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12573 + - uid: 11991 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,7.5 + pos: -15.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12574 + color: '#0000FFFF' + - uid: 11992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,7.5 + pos: -13.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12575 + color: '#0000FFFF' + - uid: 11993 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,7.5 + pos: -14.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12576 + color: '#0000FFFF' + - uid: 11994 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,7.5 + pos: -12.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12577 + color: '#0000FFFF' + - uid: 11995 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,7.5 + pos: -11.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12578 + color: '#0000FFFF' + - uid: 11996 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,7.5 + pos: -10.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12579 + color: '#0000FFFF' + - uid: 11998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,7.5 + pos: -7.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12580 + - uid: 11999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,7.5 + pos: -9.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12581 + color: '#0000FFFF' + - uid: 12000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 + pos: -9.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12582 + color: '#0000FFFF' + - uid: 12002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,7.5 + pos: -9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12583 + - uid: 12004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 + rot: -1.5707963267948966 rad + pos: -9.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12584 + - uid: 12007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,7.5 + pos: -7.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12585 + - uid: 12010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,7.5 + pos: -7.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12586 + - uid: 12011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,9.5 + rot: -1.5707963267948966 rad + pos: -6.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12587 + - uid: 12012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,9.5 + rot: -1.5707963267948966 rad + pos: -5.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12588 + - uid: 12013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,9.5 + rot: -1.5707963267948966 rad + pos: -4.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12589 + - uid: 12015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,9.5 + rot: -1.5707963267948966 rad + pos: -7.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12590 + - uid: 12016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,9.5 + rot: -1.5707963267948966 rad + pos: -2.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12591 + - uid: 12017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,9.5 + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12592 + - uid: 12019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,9.5 + rot: -1.5707963267948966 rad + pos: -1.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12593 + - uid: 12021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,9.5 + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12594 + color: '#FF0000FF' + - uid: 12022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,9.5 + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12595 + color: '#FF0000FF' + - uid: 12023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,9.5 + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12596 + color: '#FF0000FF' + - uid: 12025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12597 + color: '#FF0000FF' + - uid: 12026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,9.5 + rot: -1.5707963267948966 rad + pos: -0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12598 + color: '#FF0000FF' + - uid: 12027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,9.5 + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12599 + color: '#FF0000FF' + - uid: 12030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,9.5 + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12600 + color: '#FF0000FF' + - uid: 12031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,9.5 + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12601 + - uid: 12032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,9.5 + rot: -1.5707963267948966 rad + pos: 2.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12605 + - uid: 12034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,7.5 + pos: 1.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12606 + - uid: 12035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,7.5 + pos: 1.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12607 + - uid: 12036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,7.5 + pos: 1.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12608 + - uid: 12037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,7.5 + pos: 1.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12609 + - uid: 12038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,9.5 + pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12610 + - uid: 12039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,9.5 + pos: -0.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12613 + - uid: 12040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,9.5 + rot: 3.141592653589793 rad + pos: -6.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12616 + color: '#FF0000FF' + - uid: 12041 components: - type: Transform - pos: -9.5,8.5 + rot: 3.141592653589793 rad + pos: -6.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12617 + color: '#FF0000FF' + - uid: 12042 components: - type: Transform - pos: -9.5,6.5 + rot: 3.141592653589793 rad + pos: -6.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12618 + color: '#FF0000FF' + - uid: 12043 components: - type: Transform - pos: -9.5,5.5 + rot: 3.141592653589793 rad + pos: -6.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12619 + color: '#FF0000FF' + - uid: 12044 components: - type: Transform - pos: -9.5,4.5 + rot: 3.141592653589793 rad + pos: -6.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12620 + color: '#FF0000FF' + - uid: 12045 components: - type: Transform - pos: -9.5,3.5 + rot: 3.141592653589793 rad + pos: -6.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12621 + color: '#FF0000FF' + - uid: 12046 components: - type: Transform - pos: -9.5,7.5 + rot: 3.141592653589793 rad + pos: -6.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12622 + color: '#FF0000FF' + - uid: 12047 components: - type: Transform - pos: -9.5,2.5 + rot: 3.141592653589793 rad + pos: -8.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12623 + - uid: 12048 components: - type: Transform - pos: -9.5,0.5 + rot: 3.141592653589793 rad + pos: -8.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12624 + - uid: 12049 components: - type: Transform - pos: -9.5,-0.5 + rot: 3.141592653589793 rad + pos: -8.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12627 + - uid: 12050 components: - type: Transform - pos: -9.5,-3.5 + rot: 3.141592653589793 rad + pos: -8.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12629 + - uid: 12051 components: - type: Transform - pos: -9.5,-5.5 + rot: 3.141592653589793 rad + pos: -8.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12630 + - uid: 12052 components: - type: Transform - pos: -9.5,-6.5 + rot: -1.5707963267948966 rad + pos: -17.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12631 + - uid: 12053 components: - type: Transform - pos: -9.5,-7.5 + rot: -1.5707963267948966 rad + pos: -18.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12632 + - uid: 12054 components: - type: Transform - pos: -9.5,-1.5 + rot: -1.5707963267948966 rad + pos: -19.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12633 + - uid: 12055 components: - type: Transform - pos: -7.5,-7.5 + rot: -1.5707963267948966 rad + pos: -19.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12634 + - uid: 12060 components: - type: Transform - pos: -7.5,-5.5 + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12635 + color: '#0000FFFF' + - uid: 12061 components: - type: Transform - pos: -7.5,-4.5 + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12636 + color: '#0000FFFF' + - uid: 12063 components: - type: Transform - pos: -7.5,-3.5 + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12637 + - uid: 12064 components: - type: Transform - pos: -7.5,-6.5 + rot: 1.5707963267948966 rad + pos: 5.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12639 + - uid: 12065 components: - type: Transform - pos: -7.5,-1.5 + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12640 + - uid: 12067 components: - type: Transform - pos: -7.5,-0.5 + rot: 1.5707963267948966 rad + pos: 8.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12641 + - uid: 12068 components: - type: Transform - pos: -7.5,0.5 + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12642 + - uid: 12069 components: - type: Transform - pos: -7.5,1.5 + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12643 + - uid: 12070 components: - type: Transform - pos: -7.5,2.5 + rot: 1.5707963267948966 rad + pos: 11.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12645 + - uid: 12081 components: - type: Transform - pos: -7.5,4.5 + rot: 3.141592653589793 rad + pos: 6.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12646 + color: '#0000FFFF' + - uid: 12082 components: - type: Transform - pos: -7.5,5.5 + pos: 6.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12648 + color: '#0000FFFF' + - uid: 12083 components: - type: Transform - pos: -1.5,9.5 + pos: 6.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12649 + color: '#0000FFFF' + - uid: 12084 components: - type: Transform - pos: -1.5,8.5 + pos: 6.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12650 + color: '#0000FFFF' + - uid: 12089 components: - type: Transform - pos: -1.5,10.5 + pos: 12.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12651 + - uid: 12090 components: - type: Transform - pos: -1.5,11.5 + pos: 12.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12652 + - uid: 12091 components: - type: Transform - pos: -1.5,12.5 + pos: 12.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12653 + - uid: 12092 components: - type: Transform - pos: -1.5,13.5 + pos: 12.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12655 + - uid: 12094 components: - type: Transform - pos: -1.5,16.5 + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12656 + - uid: 12098 components: - type: Transform - pos: -1.5,17.5 + rot: 1.5707963267948966 rad + pos: 7.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12658 + color: '#0000FFFF' + - uid: 12101 components: - type: Transform - pos: -3.5,10.5 + rot: 3.141592653589793 rad + pos: 6.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12659 + - uid: 12108 components: - type: Transform - pos: -3.5,11.5 + rot: -1.5707963267948966 rad + pos: 8.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12661 + - uid: 12109 components: - type: Transform - pos: -3.5,13.5 + rot: -1.5707963267948966 rad + pos: 9.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12662 + - uid: 12110 components: - type: Transform - pos: -3.5,14.5 + rot: -1.5707963267948966 rad + pos: 11.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12663 + - uid: 12111 components: - type: Transform - pos: -3.5,15.5 + rot: -1.5707963267948966 rad + pos: 13.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12664 + - uid: 12116 components: - type: Transform - pos: -3.5,16.5 + rot: 1.5707963267948966 rad + pos: 13.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12665 + color: '#FF0000FF' + - uid: 12117 components: - type: Transform - pos: -3.5,17.5 + rot: 1.5707963267948966 rad + pos: 14.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12666 + - uid: 12118 components: - type: Transform - pos: -1.5,18.5 + rot: 1.5707963267948966 rad + pos: 14.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12668 + - uid: 12120 components: - type: Transform - pos: -1.5,21.5 + pos: 15.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12670 + - uid: 12121 components: - type: Transform - pos: -1.5,22.5 + pos: 15.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12671 + - uid: 12122 components: - type: Transform - pos: -1.5,23.5 + pos: 17.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12672 + color: '#0000FFFF' + - uid: 12126 components: - type: Transform - pos: -1.5,24.5 + rot: 3.141592653589793 rad + pos: 15.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12673 + - uid: 12129 components: - type: Transform - pos: -1.5,25.5 + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12675 + color: '#0000FFFF' + - uid: 12130 components: - type: Transform - pos: -1.5,27.5 + rot: 1.5707963267948966 rad + pos: 10.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12677 + color: '#0000FFFF' + - uid: 12131 components: - type: Transform - pos: -3.5,20.5 + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12678 + - uid: 12134 components: - type: Transform - pos: -3.5,19.5 + rot: 1.5707963267948966 rad + pos: 7.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12679 + - uid: 12136 components: - type: Transform - pos: -3.5,21.5 + rot: 3.141592653589793 rad + pos: 13.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12681 + - uid: 12137 components: - type: Transform - pos: -3.5,23.5 + rot: 3.141592653589793 rad + pos: 13.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12683 + - uid: 12138 components: - type: Transform - pos: -3.5,25.5 + rot: 3.141592653589793 rad + pos: 13.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12685 + - uid: 12139 components: - type: Transform - pos: -3.5,27.5 + rot: 3.141592653589793 rad + pos: 13.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12686 + - uid: 12140 components: - type: Transform - pos: -3.5,28.5 + rot: 3.141592653589793 rad + pos: 13.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12687 + - uid: 12141 components: - type: Transform - pos: -3.5,29.5 + rot: 3.141592653589793 rad + pos: 13.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12688 + - uid: 12142 components: - type: Transform - pos: -3.5,30.5 + rot: 3.141592653589793 rad + pos: 13.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12689 + - uid: 12143 components: - type: Transform - pos: -3.5,31.5 + rot: 3.141592653589793 rad + pos: 13.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12690 + - uid: 12144 components: - type: Transform - pos: -54.5,16.5 + rot: 3.141592653589793 rad + pos: 12.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12691 + - uid: 12145 components: - type: Transform - pos: -54.5,15.5 + rot: 3.141592653589793 rad + pos: 12.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12693 + - uid: 12146 components: - type: Transform - pos: -1.5,29.5 + rot: 3.141592653589793 rad + pos: 12.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12694 + - uid: 12147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,31.5 + rot: 3.141592653589793 rad + pos: 12.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12696 + - uid: 12148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,12.5 + rot: 3.141592653589793 rad + pos: 12.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12697 + color: '#FF0000FF' + - uid: 12150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,14.5 + rot: 3.141592653589793 rad + pos: 12.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12698 + - uid: 12151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,14.5 + rot: 3.141592653589793 rad + pos: 12.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12699 + - uid: 12152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,14.5 + rot: 3.141592653589793 rad + pos: 12.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12700 + - uid: 12153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,14.5 + rot: 3.141592653589793 rad + pos: 12.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12702 + - uid: 12154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,32.5 + rot: 3.141592653589793 rad + pos: 13.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12703 + - uid: 12155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,32.5 + rot: 3.141592653589793 rad + pos: 13.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12704 + - uid: 12156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,32.5 + rot: 3.141592653589793 rad + pos: 13.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12705 + - uid: 12157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,32.5 + rot: 3.141592653589793 rad + pos: 13.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12706 + - uid: 12158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,32.5 + rot: 3.141592653589793 rad + pos: 13.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12708 - components: - - type: Transform - pos: -1.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12709 - components: - - type: Transform - pos: -1.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12710 + - uid: 12162 components: - type: Transform - pos: -1.5,35.5 + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12711 + color: '#0000FFFF' + - uid: 12165 components: - type: Transform - pos: -1.5,33.5 + rot: 1.5707963267948966 rad + pos: -20.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12713 + color: '#0000FFFF' + - uid: 12167 components: - type: Transform - pos: -3.5,35.5 + pos: -22.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12716 + - uid: 12168 components: - type: Transform - pos: -3.5,34.5 + pos: -22.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12717 + - uid: 12170 components: - type: Transform - pos: -1.5,36.5 + pos: -22.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12721 + color: '#0000FFFF' + - uid: 12172 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,31.5 + pos: -21.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12722 + - uid: 12173 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,31.5 + pos: -22.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12723 + - uid: 12174 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,31.5 + pos: -23.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12724 + - uid: 12175 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,31.5 + pos: -24.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12725 + - uid: 12176 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,33.5 + pos: -25.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12726 + color: '#FF0000FF' + - uid: 12179 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,33.5 + pos: -23.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12727 + - uid: 12180 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,33.5 + pos: -25.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12729 + - uid: 12181 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,33.5 + pos: -26.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12730 + - uid: 12182 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,31.5 + pos: -27.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12732 + - uid: 12183 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,31.5 + pos: -29.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12733 + - uid: 12184 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,31.5 + pos: -30.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12734 + - uid: 12185 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,31.5 + pos: -31.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12735 + - uid: 12186 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12738 - components: - - type: Transform - pos: -12.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12739 - components: - - type: Transform - pos: -12.5,34.5 + pos: -32.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12740 + - uid: 12187 components: - type: Transform - pos: -12.5,35.5 + rot: -1.5707963267948966 rad + pos: -33.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12741 + - uid: 12188 components: - type: Transform - pos: -12.5,33.5 + rot: -1.5707963267948966 rad + pos: -28.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12742 + - uid: 12189 components: - type: Transform - pos: -10.5,34.5 + rot: -1.5707963267948966 rad + pos: -27.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12743 + - uid: 12190 components: - type: Transform - pos: -10.5,35.5 + rot: -1.5707963267948966 rad + pos: -29.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12744 + - uid: 12191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,33.5 + rot: -1.5707963267948966 rad + pos: -30.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12746 + - uid: 12192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,33.5 + rot: -1.5707963267948966 rad + pos: -31.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12747 + - uid: 12193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,33.5 + rot: -1.5707963267948966 rad + pos: -32.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12748 + - uid: 12194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,33.5 + rot: -1.5707963267948966 rad + pos: -28.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12749 + - uid: 12195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,33.5 + rot: -1.5707963267948966 rad + pos: -34.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12750 + - uid: 12196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,33.5 + rot: -1.5707963267948966 rad + pos: -33.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12751 + - uid: 12197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,31.5 + rot: -1.5707963267948966 rad + pos: -35.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12752 + color: '#0000FFFF' + - uid: 12199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,31.5 + rot: 3.141592653589793 rad + pos: -36.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12754 + color: '#0000FFFF' + - uid: 12203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,31.5 + pos: -26.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12755 + - uid: 12204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,31.5 + pos: -26.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12756 + - uid: 12205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,31.5 + pos: -26.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12757 + - uid: 12206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,31.5 + pos: -24.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12758 + color: '#0000FFFF' + - uid: 12207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,38.5 + pos: -24.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12759 + - uid: 12208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,38.5 + pos: -24.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12760 + - uid: 12214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,38.5 + pos: -26.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12761 + color: '#FF0000FF' + - uid: 12215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,37.5 + pos: -26.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12767 + - uid: 12216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,34.5 + pos: -24.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12768 + - uid: 12217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,34.5 + pos: -20.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12770 + color: '#FF0000FF' + - uid: 12218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,34.5 + pos: -20.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12771 + color: '#FF0000FF' + - uid: 12219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,34.5 + pos: -20.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12772 + color: '#FF0000FF' + - uid: 12220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,34.5 + pos: -21.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12774 + - uid: 12221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,32.5 + pos: -21.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12776 + color: '#0000FFFF' + - uid: 12222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,32.5 + pos: -21.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12777 + color: '#0000FFFF' + - uid: 12227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,32.5 + pos: -24.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12778 + color: '#0000FFFF' + - uid: 12228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,32.5 + pos: -24.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12779 + color: '#0000FFFF' + - uid: 12229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-16.5 + pos: -24.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12780 + - uid: 12230 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,33.5 + pos: -26.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12781 + - uid: 12231 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,35.5 + pos: -26.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12782 + - uid: 12232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,34.5 + pos: -26.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12783 + - uid: 12233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,35.5 + pos: -26.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12785 + color: '#FF0000FF' + - uid: 12234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,36.5 + pos: -26.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12787 + color: '#FF0000FF' + - uid: 12236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,32.5 + pos: -26.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12789 + - uid: 12237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,32.5 + pos: -24.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12790 + color: '#0000FFFF' + - uid: 12238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,34.5 + pos: -24.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12791 + - uid: 12239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,34.5 + pos: -24.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12792 + - uid: 12240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,34.5 + pos: -24.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12793 + - uid: 12242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,34.5 + pos: -24.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12795 + - uid: 12245 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,32.5 + pos: -25.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12796 + - uid: 12246 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,32.5 + pos: -23.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12797 + - uid: 12247 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,32.5 + pos: -22.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12799 + - uid: 12248 components: - type: Transform - pos: -27.5,35.5 + rot: 1.5707963267948966 rad + pos: -24.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12800 + color: '#FF0000FF' + - uid: 12249 components: - type: Transform - pos: -27.5,37.5 + rot: 1.5707963267948966 rad + pos: -23.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12801 + - uid: 12250 components: - type: Transform - pos: -27.5,38.5 + rot: 1.5707963267948966 rad + pos: -22.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12803 - components: - - type: Transform - pos: -29.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12804 - components: - - type: Transform - pos: -29.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12805 + - uid: 12285 components: - type: Transform - pos: -29.5,36.5 + rot: 1.5707963267948966 rad + pos: -15.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12806 + color: '#0000FFFF' + - uid: 12286 components: - type: Transform - pos: -29.5,37.5 + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12808 + - uid: 12287 components: - type: Transform - pos: -29.5,34.5 + rot: 1.5707963267948966 rad + pos: -16.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12809 + - uid: 12288 components: - type: Transform - pos: -29.5,31.5 + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12811 + - uid: 12292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,31.5 + rot: -1.5707963267948966 rad + pos: -14.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12812 + - uid: 12293 components: - type: Transform - pos: -27.5,33.5 + rot: -1.5707963267948966 rad + pos: -14.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12813 + - uid: 12306 components: - type: Transform - pos: -27.5,31.5 + pos: 21.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12814 + - uid: 12310 components: - type: Transform - pos: -27.5,30.5 + pos: 3.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12815 + color: '#FF0000FF' + - uid: 12311 components: - type: Transform - pos: -27.5,29.5 + pos: 3.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12816 + color: '#FF0000FF' + - uid: 12312 components: - type: Transform - pos: -27.5,32.5 + pos: 3.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12817 + color: '#FF0000FF' + - uid: 12313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,34.5 + pos: 3.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12819 + color: '#FF0000FF' + - uid: 12314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,34.5 + pos: 3.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12820 + color: '#FF0000FF' + - uid: 12316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,34.5 + pos: 4.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12821 + - uid: 12335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,34.5 + rot: 3.141592653589793 rad + pos: -1.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12823 + - uid: 12400 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12824 + pos: 30.5,9.5 + parent: 16200 + - uid: 12404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,32.5 + rot: 3.141592653589793 rad + pos: -2.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12827 + - uid: 12488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,32.5 + pos: 19.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12828 + - uid: 12489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,32.5 + pos: 19.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12829 + - uid: 12490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,32.5 + pos: 19.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12830 + - uid: 12491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,32.5 + pos: 19.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12833 - components: - - type: Transform - pos: -38.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12834 - components: - - type: Transform - pos: -38.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12835 + - uid: 12494 components: - type: Transform - pos: -38.5,32.5 + rot: 1.5707963267948966 rad + pos: 20.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12836 + color: '#FF0000FF' + - uid: 12495 components: - type: Transform - pos: -36.5,31.5 + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12837 + - uid: 12496 components: - type: Transform - pos: -36.5,30.5 + rot: 1.5707963267948966 rad + pos: 22.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12841 + - uid: 12497 components: - type: Transform - pos: -38.5,29.5 + rot: 1.5707963267948966 rad + pos: 24.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12842 + color: '#FF0000FF' + - uid: 12498 components: - type: Transform - pos: -38.5,27.5 + rot: 1.5707963267948966 rad + pos: 25.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12843 + color: '#FF0000FF' + - uid: 12499 components: - type: Transform - pos: -38.5,26.5 + rot: 1.5707963267948966 rad + pos: 26.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12844 + color: '#FF0000FF' + - uid: 12500 components: - type: Transform - pos: -38.5,25.5 + rot: 1.5707963267948966 rad + pos: 23.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12845 + color: '#FF0000FF' + - uid: 12501 components: - type: Transform - pos: -38.5,28.5 + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12846 + - uid: 12502 components: - type: Transform - pos: -38.5,24.5 + rot: 1.5707963267948966 rad + pos: 24.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12848 + - uid: 12503 components: - type: Transform - pos: -38.5,22.5 + rot: 1.5707963267948966 rad + pos: 25.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12849 + - uid: 12504 components: - type: Transform - pos: -38.5,21.5 + rot: 1.5707963267948966 rad + pos: 26.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12850 + - uid: 12505 components: - type: Transform - pos: -38.5,20.5 + rot: 1.5707963267948966 rad + pos: 23.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12851 + - uid: 12506 components: - type: Transform - pos: -38.5,18.5 + pos: 21.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12852 + - uid: 12507 components: - type: Transform - pos: -38.5,17.5 + pos: 21.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12858 + - uid: 12508 components: - type: Transform - pos: -38.5,19.5 + pos: 21.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12860 + - uid: 12509 components: - type: Transform - pos: -36.5,25.5 + pos: 19.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12861 + - uid: 12510 components: - type: Transform - pos: -36.5,26.5 + pos: 19.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12862 + - uid: 12511 components: - type: Transform - pos: -36.5,24.5 + pos: 19.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12863 + - uid: 12512 components: - type: Transform - pos: -36.5,22.5 + pos: 19.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12864 + - uid: 12514 components: - type: Transform - pos: -36.5,20.5 + rot: 1.5707963267948966 rad + pos: 21.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12865 + - uid: 12515 components: - type: Transform - pos: -36.5,19.5 + rot: 1.5707963267948966 rad + pos: 22.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12866 + - uid: 12516 components: - type: Transform - pos: -36.5,18.5 + rot: 1.5707963267948966 rad + pos: 23.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12867 + - uid: 12517 components: - type: Transform - pos: -36.5,17.5 + rot: 1.5707963267948966 rad + pos: 20.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12868 + - uid: 12520 components: - type: Transform - pos: -36.5,23.5 + rot: 3.141592653589793 rad + pos: 24.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12869 + - uid: 12521 components: - type: Transform - pos: -36.5,16.5 + rot: 1.5707963267948966 rad + pos: 22.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12870 + color: '#0000FFFF' + - uid: 12522 components: - type: Transform - pos: -36.5,15.5 + rot: 1.5707963267948966 rad + pos: 24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12874 + color: '#0000FFFF' + - uid: 12523 components: - type: Transform - pos: 10.5,21.5 + rot: 1.5707963267948966 rad + pos: 25.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12875 + color: '#0000FFFF' + - uid: 12524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,30.5 + rot: 1.5707963267948966 rad + pos: 23.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12876 + - uid: 12526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,30.5 + pos: 26.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12877 + - uid: 12527 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,30.5 + pos: 27.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12879 + - uid: 12528 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,30.5 + pos: 28.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12880 + - uid: 12529 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,30.5 + pos: 26.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12881 + color: '#FF0000FF' + - uid: 12530 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,28.5 + pos: 28.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12882 + - uid: 12532 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,28.5 + pos: 27.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12883 + - uid: 12533 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,28.5 + pos: 29.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12884 + color: '#0000FFFF' + - uid: 12539 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,28.5 + pos: 25.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12885 + - uid: 12541 components: - type: Transform - pos: 12.5,21.5 + pos: 21.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12886 + - uid: 12542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,28.5 + pos: 21.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12887 + color: '#0000FFFF' + - uid: 12543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,28.5 + pos: 21.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12888 + color: '#0000FFFF' + - uid: 12544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,28.5 + pos: 21.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12889 + color: '#0000FFFF' + - uid: 12546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,28.5 + pos: 21.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12548 + components: + - type: Transform + pos: 19.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12891 + - uid: 12549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,28.5 + pos: 19.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12893 + - uid: 12552 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,28.5 + pos: 18.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12894 + - uid: 12554 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,28.5 + pos: 17.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12895 + - uid: 12556 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,30.5 + pos: 18.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12896 + - uid: 12557 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,30.5 + pos: 17.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12898 + - uid: 12558 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,30.5 + pos: 16.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12901 + - uid: 12559 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,30.5 + pos: 15.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12903 + - uid: 12560 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,30.5 + pos: 19.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12904 + - uid: 12561 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,30.5 + pos: 14.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12905 + - uid: 12564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,30.5 + rot: 3.141592653589793 rad + pos: 13.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12906 + - uid: 12565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,28.5 + rot: 3.141592653589793 rad + pos: 13.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12907 + color: '#0000FFFF' + - uid: 12566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,28.5 + rot: 3.141592653589793 rad + pos: 15.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12911 + - uid: 12567 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,31.5 + pos: 15.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12912 + color: '#FF0000FF' + - uid: 12568 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,32.5 + pos: 15.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12916 + color: '#FF0000FF' + - uid: 12569 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,33.5 + pos: 15.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12917 + color: '#FF0000FF' + - uid: 12571 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,28.5 + pos: 13.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12918 + - uid: 12572 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,28.5 + pos: 11.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12919 + - uid: 12573 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,28.5 + pos: 12.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12921 + - uid: 12574 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,28.5 + pos: 10.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12922 + - uid: 12575 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,28.5 + pos: 7.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12923 + - uid: 12576 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,28.5 + pos: 9.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12924 + - uid: 12577 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,28.5 + pos: 6.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12925 + - uid: 12578 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,28.5 + pos: 5.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12926 + - uid: 12579 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,28.5 + pos: 4.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12927 + - uid: 12580 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,28.5 + pos: 2.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12929 + - uid: 12581 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,28.5 + pos: 3.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12930 + - uid: 12582 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,28.5 + pos: 8.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12931 + - uid: 12583 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,28.5 + pos: 0.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12932 + - uid: 12584 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,28.5 + pos: -0.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12933 + - uid: 12585 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,28.5 + pos: 1.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12935 + - uid: 12586 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,30.5 + pos: 12.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12936 + - uid: 12587 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,30.5 + pos: 11.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12937 + - uid: 12588 components: - type: Transform - pos: 23.5,-17.5 + rot: 1.5707963267948966 rad + pos: 10.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12938 + - uid: 12589 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,30.5 + pos: 9.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12939 + - uid: 12590 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,30.5 + pos: 8.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12940 + - uid: 12591 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,30.5 + pos: 7.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12941 + - uid: 12592 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,30.5 + pos: 6.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12942 + - uid: 12593 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,30.5 + pos: 4.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12943 + - uid: 12594 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,30.5 + pos: 3.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12944 + - uid: 12595 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,30.5 + pos: 2.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12946 + - uid: 12596 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,30.5 + pos: 1.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12947 + - uid: 12597 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,30.5 + pos: 5.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12948 + - uid: 12598 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,30.5 + pos: 0.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12949 + - uid: 12599 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,30.5 + pos: -1.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12950 + - uid: 12600 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,30.5 + pos: -2.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12954 + - uid: 12601 components: - type: Transform - pos: -74.5,28.5 + rot: 1.5707963267948966 rad + pos: -0.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12955 + - uid: 12605 components: - type: Transform - pos: -74.5,27.5 + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12956 + - uid: 12610 components: - type: Transform - pos: -74.5,26.5 + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12616 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12617 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12619 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12620 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12621 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12622 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12623 + components: + - type: Transform + pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12957 + - uid: 12624 components: - type: Transform - pos: -74.5,25.5 + pos: -9.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12958 + - uid: 12627 components: - type: Transform - pos: -74.5,24.5 + pos: -9.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12960 + - uid: 12629 components: - type: Transform - pos: -74.5,22.5 + pos: -9.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12961 + - uid: 12630 components: - type: Transform - pos: -74.5,21.5 + pos: -9.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12962 + - uid: 12631 components: - type: Transform - pos: -74.5,20.5 + pos: -9.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12963 + - uid: 12632 components: - type: Transform - pos: -74.5,19.5 + pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12964 + - uid: 12633 components: - type: Transform - pos: -74.5,18.5 + pos: -7.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12965 + color: '#FF0000FF' + - uid: 12634 components: - type: Transform - pos: -74.5,17.5 + pos: -7.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12976 + color: '#FF0000FF' + - uid: 12635 components: - type: Transform - pos: -72.5,15.5 + pos: -7.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12977 + - uid: 12636 components: - type: Transform - pos: -72.5,16.5 + pos: -7.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12978 + - uid: 12637 components: - type: Transform - pos: -72.5,17.5 + pos: -7.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12979 + - uid: 12639 components: - type: Transform - pos: -72.5,18.5 + pos: -7.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12980 + - uid: 12640 components: - type: Transform - pos: -72.5,19.5 + pos: -7.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12981 + - uid: 12641 components: - type: Transform - pos: -72.5,20.5 + pos: -7.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12983 + - uid: 12642 components: - type: Transform - pos: -72.5,22.5 + pos: -7.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12984 + - uid: 12643 components: - type: Transform - pos: -72.5,23.5 + pos: -7.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12985 + - uid: 12645 components: - type: Transform - pos: -72.5,24.5 + pos: -7.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12986 + - uid: 12646 components: - type: Transform - pos: -72.5,25.5 + pos: -7.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12987 + - uid: 12648 components: - type: Transform - pos: -72.5,26.5 + pos: -1.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12989 + - uid: 12649 components: - type: Transform - pos: -56.5,29.5 + pos: -1.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12990 + color: '#FF0000FF' + - uid: 12650 components: - type: Transform - pos: -56.5,27.5 + pos: -1.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12991 + color: '#FF0000FF' + - uid: 12651 components: - type: Transform - pos: -56.5,26.5 + pos: -1.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12992 + color: '#FF0000FF' + - uid: 12652 components: - type: Transform - pos: -56.5,25.5 + pos: -1.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12993 + color: '#FF0000FF' + - uid: 12653 components: - type: Transform - pos: -56.5,24.5 + pos: -1.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12995 + color: '#FF0000FF' + - uid: 12655 components: - type: Transform - pos: -56.5,22.5 + pos: -1.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12996 + color: '#FF0000FF' + - uid: 12656 components: - type: Transform - pos: -56.5,28.5 + pos: -1.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12997 + color: '#FF0000FF' + - uid: 12658 components: - type: Transform - pos: -56.5,21.5 + pos: -3.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12998 + - uid: 12659 components: - type: Transform - pos: -56.5,20.5 + pos: -3.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12999 + - uid: 12661 components: - type: Transform - pos: -56.5,18.5 + pos: -3.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13000 + - uid: 12662 components: - type: Transform - pos: -56.5,17.5 + pos: -3.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13013 + - uid: 12663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,38.5 + pos: -3.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13014 + - uid: 12664 components: - type: Transform - pos: -54.5,17.5 + pos: -3.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13015 + color: '#0000FFFF' + - uid: 12665 components: - type: Transform - pos: -54.5,19.5 + pos: -3.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13016 + color: '#0000FFFF' + - uid: 12666 components: - type: Transform - pos: -54.5,20.5 + pos: -1.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13017 + - uid: 12668 components: - type: Transform - pos: -54.5,18.5 + pos: -1.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13018 + - uid: 12670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,37.5 + pos: -1.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13019 + - uid: 12671 components: - type: Transform - pos: -54.5,22.5 + pos: -1.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13020 + - uid: 12672 components: - type: Transform - pos: -54.5,23.5 + pos: -1.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13021 + - uid: 12673 components: - type: Transform - pos: -54.5,24.5 + pos: -1.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13022 + - uid: 12675 components: - type: Transform - pos: -54.5,26.5 + pos: -1.5,27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13023 + - uid: 12677 components: - type: Transform - pos: -54.5,27.5 + pos: -3.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13024 + color: '#0000FFFF' + - uid: 12678 components: - type: Transform - pos: -54.5,25.5 + pos: -3.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13027 + color: '#0000FFFF' + - uid: 12679 components: - type: Transform - pos: -29.5,39.5 + pos: -3.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13028 + color: '#0000FFFF' + - uid: 12681 components: - type: Transform - pos: -27.5,39.5 + pos: -3.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13029 + - uid: 12683 components: - type: Transform - pos: -27.5,40.5 + pos: -3.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13030 + - uid: 12685 components: - type: Transform - pos: -1.5,38.5 + pos: -3.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13031 + color: '#0000FFFF' + - uid: 12686 components: - type: Transform - pos: -29.5,41.5 + pos: -3.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13032 + color: '#0000FFFF' + - uid: 12687 components: - type: Transform - pos: -29.5,43.5 + pos: -3.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13034 + color: '#0000FFFF' + - uid: 12688 components: - type: Transform - pos: -29.5,42.5 + pos: -3.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13037 + color: '#0000FFFF' + - uid: 12689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,45.5 + pos: -3.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13038 + color: '#0000FFFF' + - uid: 12690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,45.5 + pos: -54.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13039 + - uid: 12691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,45.5 + pos: -54.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13040 + - uid: 12693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,43.5 + pos: -1.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13041 + color: '#FF0000FF' + - uid: 12694 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,41.5 + pos: -0.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13042 + color: '#FF0000FF' + - uid: 12695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,41.5 + rot: -1.5707963267948966 rad + pos: -4.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13043 + - uid: 12696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,41.5 + rot: -1.5707963267948966 rad + pos: -5.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13046 + - uid: 12697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,40.5 + rot: -1.5707963267948966 rad + pos: -2.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13049 + - uid: 12698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,41.5 + rot: -1.5707963267948966 rad + pos: -4.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13050 + - uid: 12699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,40.5 + rot: -1.5707963267948966 rad + pos: -5.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13051 + - uid: 12700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,40.5 + rot: -1.5707963267948966 rad + pos: -3.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13052 + - uid: 12702 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,41.5 + pos: -2.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13053 + - uid: 12703 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,41.5 + pos: -0.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13054 + - uid: 12704 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,41.5 + pos: 0.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13055 + - uid: 12705 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,41.5 + pos: 1.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13056 + - uid: 12706 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,41.5 + pos: -1.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,37.5 - parent: 2 - - uid: 13065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,36.5 - parent: 2 - - uid: 13109 + - uid: 12708 components: - type: Transform - pos: 19.5,2.5 + pos: -1.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13121 + - uid: 12709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-13.5 + pos: -1.5,34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13122 + - uid: 12710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-13.5 + pos: -1.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13123 + - uid: 12711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-13.5 + pos: -1.5,33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13124 + - uid: 12713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-11.5 + pos: -3.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13131 + - uid: 12716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-16.5 + pos: -3.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13146 + - uid: 12717 components: - type: Transform - pos: 22.5,-33.5 + pos: -1.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13149 + color: '#FF0000FF' + - uid: 12721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-34.5 + rot: -1.5707963267948966 rad + pos: -4.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13150 + color: '#FF0000FF' + - uid: 12722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-34.5 + rot: -1.5707963267948966 rad + pos: -5.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13151 + color: '#FF0000FF' + - uid: 12723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-34.5 + rot: -1.5707963267948966 rad + pos: -3.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13152 + color: '#FF0000FF' + - uid: 12724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-33.5 + rot: -1.5707963267948966 rad + pos: -6.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13154 + - uid: 12725 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-34.5 + pos: -4.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13155 + - uid: 12726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-33.5 + rot: -1.5707963267948966 rad + pos: -6.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13157 + color: '#0000FFFF' + - uid: 12727 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-34.5 + pos: -5.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13218 + - uid: 12729 components: - type: Transform - pos: -32.5,31.5 + rot: -1.5707963267948966 rad + pos: -8.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13219 + - uid: 12730 components: - type: Transform - pos: -32.5,30.5 + rot: -1.5707963267948966 rad + pos: -7.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13220 + color: '#FF0000FF' + - uid: 12732 components: - type: Transform - pos: -32.5,32.5 + rot: -1.5707963267948966 rad + pos: -10.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13226 + color: '#FF0000FF' + - uid: 12733 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,29.5 + pos: -11.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13227 + - uid: 12734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,29.5 + rot: -1.5707963267948966 rad + pos: -8.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13228 + - uid: 12735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,29.5 + rot: -1.5707963267948966 rad + pos: -9.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12738 + components: + - type: Transform + pos: -12.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13229 + - uid: 12739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,29.5 + pos: -12.5,34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13230 + - uid: 12740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,29.5 + pos: -12.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13231 + - uid: 12741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,29.5 + pos: -12.5,33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13232 + - uid: 12742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,28.5 + pos: -10.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13244 + - uid: 12743 components: - type: Transform - pos: -27.5,27.5 + pos: -10.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13245 + - uid: 12744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,26.5 + rot: 1.5707963267948966 rad + pos: -11.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13246 + - uid: 12746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,26.5 + rot: 1.5707963267948966 rad + pos: -14.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13247 + - uid: 12747 components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,26.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13248 + - uid: 12748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,26.5 + rot: 1.5707963267948966 rad + pos: -16.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13249 + - uid: 12749 components: - type: Transform - pos: -29.5,28.5 + rot: 1.5707963267948966 rad + pos: -17.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13250 + color: '#0000FFFF' + - uid: 12750 components: - type: Transform - pos: -29.5,26.5 + rot: 1.5707963267948966 rad + pos: -12.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13251 + color: '#0000FFFF' + - uid: 12751 components: - type: Transform - pos: -29.5,27.5 + rot: 1.5707963267948966 rad + pos: -13.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13252 + - uid: 12752 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,25.5 + pos: -14.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13253 + - uid: 12754 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,25.5 + pos: -16.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13254 + - uid: 12755 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,25.5 + pos: -17.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13255 + - uid: 12756 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,25.5 + pos: -18.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13256 + - uid: 12757 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,25.5 + pos: -19.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13257 + - uid: 12758 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,25.5 + pos: -2.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13258 + color: '#0000FFFF' + - uid: 12759 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,25.5 + pos: -0.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13259 + color: '#0000FFFF' + - uid: 12760 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,25.5 + pos: -1.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13296 + color: '#0000FFFF' + - uid: 12761 components: - type: Transform - pos: -47.5,29.5 + rot: 1.5707963267948966 rad + pos: -0.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13297 + - uid: 12767 components: - type: Transform - pos: -47.5,31.5 + rot: -1.5707963267948966 rad + pos: -20.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13298 + color: '#0000FFFF' + - uid: 12768 components: - type: Transform - pos: -47.5,32.5 + rot: -1.5707963267948966 rad + pos: -22.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13299 + color: '#0000FFFF' + - uid: 12770 components: - type: Transform - pos: -47.5,33.5 + rot: -1.5707963267948966 rad + pos: -24.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13300 + color: '#0000FFFF' + - uid: 12771 components: - type: Transform - pos: -47.5,34.5 + rot: -1.5707963267948966 rad + pos: -21.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13301 + color: '#0000FFFF' + - uid: 12772 components: - type: Transform - pos: -47.5,35.5 + rot: -1.5707963267948966 rad + pos: -26.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13302 + color: '#0000FFFF' + - uid: 12774 components: - type: Transform - pos: -47.5,36.5 + rot: -1.5707963267948966 rad + pos: -22.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13303 + - uid: 12776 components: - type: Transform - pos: -47.5,30.5 + rot: -1.5707963267948966 rad + pos: -25.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13304 + - uid: 12777 components: - type: Transform - pos: -47.5,37.5 + rot: -1.5707963267948966 rad + pos: -26.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13305 + - uid: 12778 components: - type: Transform - pos: -47.5,39.5 + rot: -1.5707963267948966 rad + pos: -24.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13306 + - uid: 12779 components: - type: Transform - pos: -47.5,40.5 + rot: 1.5707963267948966 rad + pos: 12.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13307 + color: '#0000FFFF' + - uid: 12780 components: - type: Transform - pos: -47.5,41.5 + rot: 3.141592653589793 rad + pos: -20.5,33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13308 + - uid: 12781 components: - type: Transform - pos: -47.5,42.5 + rot: 3.141592653589793 rad + pos: -20.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13309 + - uid: 12782 components: - type: Transform - pos: -47.5,38.5 + rot: 3.141592653589793 rad + pos: -20.5,34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13310 + - uid: 12783 components: - type: Transform - pos: -48.5,42.5 + rot: 3.141592653589793 rad + pos: -19.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13311 + - uid: 12785 components: - type: Transform - pos: -48.5,41.5 + rot: 3.141592653589793 rad + pos: -19.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13312 + - uid: 12787 components: - type: Transform - pos: -48.5,39.5 + rot: 1.5707963267948966 rad + pos: -28.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13313 + color: '#FF0000FF' + - uid: 12789 components: - type: Transform - pos: -48.5,40.5 + rot: 1.5707963267948966 rad + pos: -27.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13314 + color: '#FF0000FF' + - uid: 12790 components: - type: Transform - pos: -48.5,37.5 + rot: 1.5707963267948966 rad + pos: -30.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13315 + - uid: 12791 components: - type: Transform - pos: -48.5,35.5 + rot: 1.5707963267948966 rad + pos: -29.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13316 + - uid: 12792 components: - type: Transform - pos: -48.5,34.5 + rot: 1.5707963267948966 rad + pos: -28.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13317 + - uid: 12793 components: - type: Transform - pos: -48.5,33.5 + rot: 1.5707963267948966 rad + pos: -31.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13318 + - uid: 12795 components: - type: Transform - pos: -48.5,32.5 + rot: 1.5707963267948966 rad + pos: -30.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13319 + color: '#FF0000FF' + - uid: 12796 components: - type: Transform - pos: -48.5,38.5 + rot: 1.5707963267948966 rad + pos: -32.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13320 + color: '#FF0000FF' + - uid: 12797 components: - type: Transform - pos: -48.5,36.5 + rot: 1.5707963267948966 rad + pos: -31.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13321 + color: '#FF0000FF' + - uid: 12799 components: - type: Transform - pos: -48.5,31.5 + pos: -27.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13325 + - uid: 12800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,34.5 + pos: -27.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13326 + - uid: 12801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,34.5 + pos: -27.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13327 + - uid: 12803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,34.5 + pos: -29.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13328 + color: '#FF0000FF' + - uid: 12804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,32.5 + pos: -29.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13329 + - uid: 12805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,32.5 + pos: -29.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13330 + - uid: 12806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,32.5 + pos: -29.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13341 + - uid: 12808 components: - type: Transform - pos: -10.5,36.5 + pos: -29.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13342 + color: '#FF0000FF' + - uid: 12809 components: - type: Transform - pos: -12.5,36.5 + pos: -29.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13344 + - uid: 12811 components: - type: Transform - pos: -12.5,38.5 + rot: 1.5707963267948966 rad + pos: -2.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13345 + - uid: 12812 components: - type: Transform - pos: -12.5,40.5 + pos: -27.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13346 + color: '#0000FFFF' + - uid: 12813 components: - type: Transform - pos: -12.5,39.5 + pos: -27.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13347 + color: '#0000FFFF' + - uid: 12814 components: - type: Transform - pos: -10.5,38.5 + pos: -27.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13348 + - uid: 12815 components: - type: Transform - pos: -10.5,40.5 + pos: -27.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13349 + - uid: 12816 components: - type: Transform - pos: -10.5,39.5 + pos: -27.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13350 + - uid: 12817 components: - type: Transform - pos: -10.5,41.5 + rot: -1.5707963267948966 rad + pos: -33.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13351 + - uid: 12819 components: - type: Transform - pos: -10.5,43.5 + rot: -1.5707963267948966 rad + pos: -36.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13352 + - uid: 12820 components: - type: Transform - pos: -10.5,44.5 + rot: -1.5707963267948966 rad + pos: -37.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13353 + - uid: 12821 components: - type: Transform - pos: -10.5,45.5 + rot: -1.5707963267948966 rad + pos: -34.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13354 + - uid: 12823 components: - type: Transform - pos: -10.5,42.5 + rot: -1.5707963267948966 rad + pos: -35.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13355 + color: '#FF0000FF' + - uid: 12824 components: - type: Transform - pos: -10.5,47.5 + rot: -1.5707963267948966 rad + pos: -34.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13356 + color: '#FF0000FF' + - uid: 12827 components: - type: Transform - pos: -10.5,46.5 + rot: -1.5707963267948966 rad + pos: -37.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13359 + color: '#FF0000FF' + - uid: 12828 components: - type: Transform - pos: -11.5,42.5 + rot: -1.5707963267948966 rad + pos: -39.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13360 + - uid: 12829 components: - type: Transform - pos: -11.5,43.5 + rot: -1.5707963267948966 rad + pos: -40.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13361 + - uid: 12830 components: - type: Transform - pos: -11.5,44.5 + rot: -1.5707963267948966 rad + pos: -38.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13362 + - uid: 12831 components: - type: Transform - pos: -11.5,45.5 + rot: -1.5707963267948966 rad + pos: -39.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12833 + components: + - type: Transform + pos: -38.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12834 + components: + - type: Transform + pos: -38.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12835 + components: + - type: Transform + pos: -38.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12836 + components: + - type: Transform + pos: -36.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13381 + - uid: 12837 components: - type: Transform - pos: 2.5,-31.5 + pos: -36.5,30.5 parent: 2 - - uid: 13385 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-32.5 + pos: -38.5,29.5 parent: 2 - - uid: 13436 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,14.5 + pos: -38.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13437 + - uid: 12843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,14.5 + pos: -38.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13439 + - uid: 12844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,14.5 + pos: -38.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13440 + - uid: 12845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,14.5 + pos: -38.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13441 + - uid: 12846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,14.5 + pos: -38.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13446 + - uid: 12848 components: - type: Transform - pos: 13.5,12.5 + pos: -38.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13448 + - uid: 12849 components: - type: Transform - pos: 13.5,13.5 + pos: -38.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13449 + - uid: 12850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,14.5 + pos: -38.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13451 + - uid: 12851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,12.5 + pos: -38.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13452 + color: '#0000FFFF' + - uid: 12852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,12.5 + pos: -38.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13459 + color: '#0000FFFF' + - uid: 12858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,12.5 + pos: -38.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13460 + color: '#0000FFFF' + - uid: 12860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 + pos: -36.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13461 + - uid: 12861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,12.5 + pos: -36.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13462 + - uid: 12862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,12.5 + pos: -36.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13467 + - uid: 12863 components: - type: Transform - pos: 9.5,13.5 + pos: -36.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13468 + - uid: 12864 components: - type: Transform - pos: 9.5,15.5 + pos: -36.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13470 + - uid: 12865 components: - type: Transform - pos: 9.5,17.5 + pos: -36.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13471 + - uid: 12866 components: - type: Transform - pos: 9.5,14.5 + pos: -36.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13472 + - uid: 12867 components: - type: Transform - pos: 9.5,18.5 + pos: -36.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13473 + - uid: 12868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,16.5 + pos: -36.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13474 + - uid: 12869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,16.5 + pos: -36.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13475 + - uid: 12870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,16.5 + pos: -36.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13476 + - uid: 12874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,16.5 + pos: 10.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13478 + - uid: 12875 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,15.5 + pos: -39.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13479 + - uid: 12876 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,15.5 + pos: -41.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13481 + - uid: 12877 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,15.5 + pos: -42.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13482 + - uid: 12879 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,15.5 + pos: -44.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13483 + - uid: 12880 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,15.5 + pos: -40.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13484 + - uid: 12881 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,15.5 + pos: -37.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13485 + color: '#FF0000FF' + - uid: 12882 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,15.5 + pos: -39.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13486 + color: '#FF0000FF' + - uid: 12883 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,15.5 + pos: -38.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13488 + color: '#FF0000FF' + - uid: 12884 components: - type: Transform - pos: 13.5,16.5 + rot: -1.5707963267948966 rad + pos: -40.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13489 + color: '#FF0000FF' + - uid: 12885 components: - type: Transform - pos: 13.5,17.5 + pos: 12.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13490 + - uid: 12886 components: - type: Transform - pos: 13.5,18.5 + rot: -1.5707963267948966 rad + pos: -42.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13496 + color: '#FF0000FF' + - uid: 12887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,15.5 + rot: -1.5707963267948966 rad + pos: -45.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13497 + color: '#FF0000FF' + - uid: 12888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,16.5 + rot: -1.5707963267948966 rad + pos: -44.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13498 + - uid: 12889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,16.5 + rot: -1.5707963267948966 rad + pos: -46.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13500 + - uid: 12891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,22.5 + rot: -1.5707963267948966 rad + pos: -48.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13501 + color: '#FF0000FF' + - uid: 12893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,22.5 + rot: -1.5707963267948966 rad + pos: -50.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13502 + color: '#FF0000FF' + - uid: 12894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,22.5 + rot: -1.5707963267948966 rad + pos: -43.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13504 + color: '#FF0000FF' + - uid: 12895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,22.5 + rot: -1.5707963267948966 rad + pos: -45.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13505 + - uid: 12896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,22.5 + rot: -1.5707963267948966 rad + pos: -47.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13506 + - uid: 12898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,22.5 + rot: -1.5707963267948966 rad + pos: -49.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13507 + - uid: 12901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,22.5 + rot: -1.5707963267948966 rad + pos: -46.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13508 + - uid: 12903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 + rot: -1.5707963267948966 rad + pos: -54.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13510 + color: '#0000FFFF' + - uid: 12904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,19.5 + rot: -1.5707963267948966 rad + pos: -55.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13511 + color: '#0000FFFF' + - uid: 12905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,19.5 + rot: -1.5707963267948966 rad + pos: -53.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13512 + color: '#0000FFFF' + - uid: 12906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,19.5 + rot: -1.5707963267948966 rad + pos: -51.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13513 + - uid: 12907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 + rot: -1.5707963267948966 rad + pos: -53.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13523 + - uid: 12911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,24.5 + rot: 3.141592653589793 rad + pos: -50.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13524 + - uid: 12912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,24.5 + rot: 3.141592653589793 rad + pos: -50.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13525 + - uid: 12916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,24.5 + rot: 3.141592653589793 rad + pos: -50.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13526 + - uid: 12917 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,24.5 + pos: -55.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13528 + color: '#FF0000FF' + - uid: 12918 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,24.5 + pos: -57.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13529 + color: '#FF0000FF' + - uid: 12919 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,26.5 + pos: -58.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13530 + - uid: 12921 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,26.5 + pos: -60.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13531 + - uid: 12922 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,26.5 + pos: -61.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13532 + - uid: 12923 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,26.5 + pos: -62.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13542 + - uid: 12924 components: - type: Transform - pos: 12.5,22.5 + rot: 1.5707963267948966 rad + pos: -56.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13548 + color: '#FF0000FF' + - uid: 12925 components: - type: Transform - pos: 10.5,22.5 + rot: 1.5707963267948966 rad + pos: -64.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13557 + - uid: 12926 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,24.5 + pos: -65.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13560 + - uid: 12927 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,25.5 + pos: -66.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13561 + color: '#FF0000FF' + - uid: 12929 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,25.5 + pos: -68.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13563 + color: '#FF0000FF' + - uid: 12930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,13.5 + rot: 1.5707963267948966 rad + pos: -69.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13564 + - uid: 12931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,14.5 + rot: 1.5707963267948966 rad + pos: -63.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13565 + - uid: 12932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,15.5 + rot: 1.5707963267948966 rad + pos: -70.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13566 + - uid: 12933 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,16.5 + rot: 1.5707963267948966 rad + pos: -71.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13568 + - uid: 12935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,18.5 + rot: 1.5707963267948966 rad + pos: -58.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13569 + color: '#0000FFFF' + - uid: 12936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,19.5 + rot: 1.5707963267948966 rad + pos: -60.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13570 + color: '#0000FFFF' + - uid: 12937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,20.5 + pos: 23.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13571 + color: '#0000FFFF' + - uid: 12938 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,21.5 + rot: 1.5707963267948966 rad + pos: -62.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13572 + color: '#0000FFFF' + - uid: 12939 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,23.5 + rot: 1.5707963267948966 rad + pos: -63.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13574 + color: '#0000FFFF' + - uid: 12940 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,25.5 + rot: 1.5707963267948966 rad + pos: -64.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13575 + color: '#0000FFFF' + - uid: 12941 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,22.5 + rot: 1.5707963267948966 rad + pos: -65.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13577 + color: '#0000FFFF' + - uid: 12942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,21.5 + rot: 1.5707963267948966 rad + pos: -59.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13578 + - uid: 12943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,20.5 + rot: 1.5707963267948966 rad + pos: -66.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13579 + - uid: 12944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,19.5 + rot: 1.5707963267948966 rad + pos: -68.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13580 + - uid: 12946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,22.5 + rot: 1.5707963267948966 rad + pos: -70.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13581 + - uid: 12947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,18.5 + rot: 1.5707963267948966 rad + pos: -71.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13582 + - uid: 12948 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,17.5 + rot: 1.5707963267948966 rad + pos: -73.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13584 + - uid: 12949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,15.5 + rot: 1.5707963267948966 rad + pos: -72.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13591 + - uid: 12950 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,16.5 + pos: -67.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13592 + - uid: 12954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,17.5 + pos: -74.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13593 + color: '#0000FFFF' + - uid: 12955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,16.5 + pos: -74.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13604 + - uid: 12956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,23.5 + pos: -74.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13605 + - uid: 12957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,24.5 + pos: -74.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13606 + color: '#0000FFFF' + - uid: 12958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,23.5 + pos: -74.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13607 + - uid: 12960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,23.5 + pos: -74.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13608 + - uid: 12961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,23.5 + pos: -74.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13610 + - uid: 12962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,24.5 + pos: -74.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13612 + color: '#0000FFFF' + - uid: 12963 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,23.5 + pos: -74.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13619 + color: '#0000FFFF' + - uid: 12964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,12.5 + pos: -74.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13620 + - uid: 12965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,12.5 + pos: -74.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13622 + - uid: 12976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,14.5 + pos: -72.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13624 + - uid: 12977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,14.5 + pos: -72.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13625 + - uid: 12978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,14.5 + pos: -72.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13626 + - uid: 12979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,14.5 + pos: -72.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13627 + - uid: 12980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,13.5 + pos: -72.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13630 + color: '#FF0000FF' + - uid: 12981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-3.5 + pos: -72.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13631 + color: '#FF0000FF' + - uid: 12983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,14.5 + pos: -72.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13632 + - uid: 12984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,14.5 + pos: -72.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13633 + - uid: 12985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,14.5 + pos: -72.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13634 + - uid: 12986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,14.5 + pos: -72.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13635 + - uid: 12987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,14.5 + pos: -72.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13637 + - uid: 12989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,14.5 + pos: -56.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13639 + color: '#0000FFFF' + - uid: 12990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,13.5 + pos: -56.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13644 + - uid: 12991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,12.5 + pos: -56.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13646 + - uid: 12992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,12.5 + pos: -56.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13647 + - uid: 12993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,12.5 + pos: -56.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13648 + - uid: 12995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,12.5 + pos: -56.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13654 + - uid: 12996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,14.5 + pos: -56.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13655 + color: '#0000FFFF' + - uid: 12997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,14.5 + pos: -56.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13656 + color: '#0000FFFF' + - uid: 12998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,14.5 + pos: -56.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13657 + color: '#0000FFFF' + - uid: 12999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,13.5 + pos: -56.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13658 + - uid: 13000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,13.5 + pos: -56.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13660 + - uid: 13013 components: - type: Transform - pos: -20.5,14.5 + rot: -1.5707963267948966 rad + pos: 0.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13661 + - uid: 13014 components: - type: Transform - pos: -20.5,15.5 + pos: -54.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13667 + color: '#FF0000FF' + - uid: 13015 components: - type: Transform - pos: -19.5,16.5 + pos: -54.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13670 + - uid: 13016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,18.5 + pos: -54.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13671 + - uid: 13017 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,19.5 + pos: -54.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13672 + - uid: 13018 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,19.5 + rot: -1.5707963267948966 rad + pos: 0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13673 + color: '#FF0000FF' + - uid: 13019 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,20.5 + pos: -54.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13675 + color: '#FF0000FF' + - uid: 13020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,18.5 + pos: -54.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13676 + color: '#FF0000FF' + - uid: 13021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,18.5 + pos: -54.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13679 + color: '#FF0000FF' + - uid: 13022 components: - type: Transform - pos: -20.5,17.5 + pos: -54.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13684 + color: '#FF0000FF' + - uid: 13023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 + pos: -54.5,27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13685 + - uid: 13024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,14.5 + pos: -54.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13686 + - uid: 13027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,14.5 + pos: -29.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13687 + - uid: 13028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,13.5 + pos: -27.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13688 + - uid: 13029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,13.5 + pos: -27.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13689 + - uid: 13030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,13.5 + pos: -1.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13690 + color: '#FF0000FF' + - uid: 13031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,13.5 + pos: -29.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13691 + color: '#FF0000FF' + - uid: 13032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,14.5 + pos: -29.5,43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13692 + - uid: 13034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,14.5 + pos: -29.5,42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13693 + - uid: 13037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,13.5 + rot: 1.5707963267948966 rad + pos: -28.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13694 + color: '#FF0000FF' + - uid: 13038 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,12.5 + rot: 1.5707963267948966 rad + pos: -26.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13695 + color: '#FF0000FF' + - uid: 13039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,13.5 + rot: 1.5707963267948966 rad + pos: -27.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13696 + - uid: 13040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,12.5 + rot: 1.5707963267948966 rad + pos: -26.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13697 + color: '#0000FFFF' + - uid: 13041 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,11.5 + rot: 1.5707963267948966 rad + pos: -28.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13698 + color: '#0000FFFF' + - uid: 13042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,11.5 + rot: 1.5707963267948966 rad + pos: -29.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13699 + - uid: 13043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: -30.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13701 + - uid: 13044 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,11.5 + rot: 1.5707963267948966 rad + pos: -30.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13702 + - uid: 13045 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,12.5 + rot: 1.5707963267948966 rad + pos: -32.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13703 + - uid: 13046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,13.5 + rot: 1.5707963267948966 rad + pos: -31.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13706 + - uid: 13049 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,22.5 + pos: -33.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13707 + - uid: 13050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,21.5 + rot: 1.5707963267948966 rad + pos: -34.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13712 + - uid: 13051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,21.5 + rot: 1.5707963267948966 rad + pos: -35.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13725 + color: '#FF0000FF' + - uid: 13052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,22.5 + rot: 1.5707963267948966 rad + pos: -32.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13726 + - uid: 13053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,23.5 + rot: 1.5707963267948966 rad + pos: -34.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13727 + - uid: 13054 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,24.5 + rot: 1.5707963267948966 rad + pos: -33.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13729 + - uid: 13055 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,23.5 + rot: 1.5707963267948966 rad + pos: -35.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13739 + color: '#0000FFFF' + - uid: 13056 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,15.5 + rot: 1.5707963267948966 rad + pos: -36.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13740 + color: '#0000FFFF' + - uid: 13064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,14.5 + rot: -1.5707963267948966 rad + pos: -39.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13741 + - uid: 13065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,15.5 + rot: -1.5707963267948966 rad + pos: -38.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13742 + color: '#FF0000FF' + - uid: 13109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,16.5 + pos: 19.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13743 + color: '#FF0000FF' + - uid: 13121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,16.5 + rot: 1.5707963267948966 rad + pos: 20.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13746 + - uid: 13122 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,17.5 + rot: 1.5707963267948966 rad + pos: 21.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13747 + - uid: 13123 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,17.5 + pos: 22.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13748 + color: '#FF0000FF' + - uid: 13124 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,17.5 + pos: 22.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13749 + - uid: 13131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13146 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13149 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,18.5 + pos: 23.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13750 + color: '#0000FFFF' + - uid: 13150 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,18.5 + pos: 24.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13751 + color: '#0000FFFF' + - uid: 13151 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,18.5 + pos: 25.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13752 + color: '#0000FFFF' + - uid: 13152 components: - type: Transform - pos: -8.5,19.5 + rot: 1.5707963267948966 rad + pos: 24.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13753 + - uid: 13154 components: - type: Transform - pos: -8.5,20.5 + rot: -1.5707963267948966 rad + pos: 26.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13754 + color: '#0000FFFF' + - uid: 13155 components: - type: Transform - pos: -8.5,21.5 + rot: 1.5707963267948966 rad + pos: 25.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13755 + - uid: 13157 components: - type: Transform - pos: -9.5,19.5 + rot: -1.5707963267948966 rad + pos: 27.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13756 + - uid: 13218 components: - type: Transform - pos: -9.5,20.5 + pos: -32.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13757 + - uid: 13219 components: - type: Transform - pos: -9.5,21.5 + pos: -32.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13758 + - uid: 13220 components: - type: Transform - pos: -9.5,22.5 + pos: -32.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13762 + - uid: 13226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,18.5 + rot: -1.5707963267948966 rad + pos: -35.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13763 + - uid: 13227 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,18.5 + pos: -28.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13771 + - uid: 13228 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,25.5 + pos: -27.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13772 + color: '#FF0000FF' + - uid: 13229 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,25.5 + pos: -25.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13773 + color: '#FF0000FF' + - uid: 13230 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,25.5 + pos: -24.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13774 + color: '#FF0000FF' + - uid: 13231 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,24.5 + pos: -26.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13775 + - uid: 13232 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,24.5 + pos: -26.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13776 + color: '#0000FFFF' + - uid: 13239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,24.5 + rot: -1.5707963267948966 rad + pos: -18.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13777 + color: '#0000FFFF' + - uid: 13244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,24.5 + pos: -27.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13778 + color: '#0000FFFF' + - uid: 13245 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-12.5 + pos: -26.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13779 + - uid: 13246 components: - type: Transform - pos: -9.5,24.5 + rot: -1.5707963267948966 rad + pos: -28.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13780 + - uid: 13247 components: - type: Transform - pos: -8.5,23.5 + rot: -1.5707963267948966 rad + pos: -30.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13788 + color: '#0000FFFF' + - uid: 13248 components: - type: Transform - pos: -9.5,18.5 + rot: -1.5707963267948966 rad + pos: -29.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13791 + - uid: 13249 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,32.5 + pos: -29.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13799 + - uid: 13250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,37.5 + pos: -29.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13800 + - uid: 13251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,37.5 + pos: -29.5,27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13801 + - uid: 13252 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,37.5 + pos: -30.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13802 + - uid: 13253 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,37.5 + pos: -32.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13803 + - uid: 13254 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,38.5 + pos: -31.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13804 + color: '#FF0000FF' + - uid: 13255 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,38.5 + pos: -28.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13805 + color: '#FF0000FF' + - uid: 13256 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13806 - components: - - type: Transform - pos: 4.5,39.5 + pos: -26.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13807 + color: '#FF0000FF' + - uid: 13257 components: - type: Transform - pos: 5.5,39.5 + rot: 1.5707963267948966 rad + pos: -25.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13808 + - uid: 13258 components: - type: Transform - pos: 5.5,38.5 + rot: 1.5707963267948966 rad + pos: -27.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13809 + - uid: 13259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,38.5 + rot: 1.5707963267948966 rad + pos: -24.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13810 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,38.5 + pos: -47.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13811 + color: '#FF0000FF' + - uid: 13297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,37.5 + pos: -47.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13812 + - uid: 13298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 + pos: -47.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13813 + color: '#FF0000FF' + - uid: 13299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,38.5 + pos: -47.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13814 + color: '#FF0000FF' + - uid: 13300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,38.5 + pos: -47.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13815 + color: '#FF0000FF' + - uid: 13301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,38.5 + pos: -47.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13816 + color: '#FF0000FF' + - uid: 13302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,38.5 + pos: -47.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13817 + color: '#FF0000FF' + - uid: 13303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,38.5 + pos: -47.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13819 + color: '#FF0000FF' + - uid: 13304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,37.5 + pos: -47.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13820 + - uid: 13305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,37.5 + pos: -47.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13821 + - uid: 13306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,38.5 + pos: -47.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13824 + color: '#FF0000FF' + - uid: 13307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,36.5 + pos: -47.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13825 + - uid: 13308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,36.5 + pos: -47.5,42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13828 + - uid: 13309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,37.5 + pos: -47.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13829 + - uid: 13310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,38.5 + pos: -48.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13830 + color: '#0000FFFF' + - uid: 13311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,39.5 + pos: -48.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13831 + color: '#0000FFFF' + - uid: 13312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,40.5 + pos: -48.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13834 + color: '#0000FFFF' + - uid: 13313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,39.5 + pos: -48.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13835 + - uid: 13314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,40.5 + pos: -48.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13841 + - uid: 13315 components: - type: Transform - pos: -52.5,31.5 + pos: -48.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13842 + color: '#0000FFFF' + - uid: 13316 components: - type: Transform - pos: -52.5,32.5 + pos: -48.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13843 + color: '#0000FFFF' + - uid: 13317 components: - type: Transform - pos: -52.5,33.5 + pos: -48.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13851 + color: '#0000FFFF' + - uid: 13318 components: - type: Transform - pos: -18.5,-12.5 + pos: -48.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13852 + color: '#0000FFFF' + - uid: 13319 components: - type: Transform - pos: -18.5,-11.5 + pos: -48.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13853 + color: '#0000FFFF' + - uid: 13320 components: - type: Transform - pos: -17.5,-11.5 + pos: -48.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13859 + - uid: 13321 components: - type: Transform - pos: -18.5,-9.5 + pos: -48.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13860 + color: '#0000FFFF' + - uid: 13325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-9.5 + rot: 1.5707963267948966 rad + pos: -41.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13861 + - uid: 13326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-9.5 + rot: 1.5707963267948966 rad + pos: -43.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13862 + - uid: 13327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-9.5 + rot: 1.5707963267948966 rad + pos: -42.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13863 + - uid: 13328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-10.5 + rot: 1.5707963267948966 rad + pos: -41.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13864 + - uid: 13329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-10.5 + rot: 1.5707963267948966 rad + pos: -43.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13865 + - uid: 13330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-10.5 + rot: 1.5707963267948966 rad + pos: -42.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13872 + - uid: 13341 components: - type: Transform - pos: -17.5,-4.5 + pos: -10.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13873 + - uid: 13342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 + pos: -12.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13874 + - uid: 13344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 + pos: -12.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13875 + - uid: 13345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 + pos: -12.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13876 + - uid: 13346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-10.5 + pos: -12.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13347 + components: + - type: Transform + pos: -10.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13877 + - uid: 13348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-10.5 + pos: -10.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13879 + - uid: 13349 components: - type: Transform - pos: -17.5,-5.5 + pos: -10.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13880 + - uid: 13350 components: - type: Transform - pos: -17.5,-8.5 + pos: -10.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13881 + - uid: 13351 components: - type: Transform - pos: -17.5,-7.5 + pos: -10.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13882 + - uid: 13352 components: - type: Transform - pos: -18.5,-7.5 + pos: -10.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13883 + color: '#0000FFFF' + - uid: 13353 components: - type: Transform - pos: -18.5,-6.5 + pos: -10.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13884 + color: '#0000FFFF' + - uid: 13354 components: - type: Transform - pos: -17.5,-6.5 + pos: -10.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13893 + - uid: 13355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-8.5 + pos: -10.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13894 + color: '#0000FFFF' + - uid: 13356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-8.5 + pos: -10.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13359 + components: + - type: Transform + pos: -11.5,42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13896 + - uid: 13360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-4.5 + pos: -11.5,43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13897 + - uid: 13361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 + pos: -11.5,44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13898 + - uid: 13362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-4.5 + pos: -11.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13900 + - uid: 13381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-3.5 + pos: 2.5,-31.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-32.5 + parent: 2 + - uid: 13436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13901 + - uid: 13437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-3.5 + rot: 1.5707963267948966 rad + pos: 18.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13902 + - uid: 13439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-3.5 + rot: 1.5707963267948966 rad + pos: 15.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13903 + color: '#0000FFFF' + - uid: 13440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-2.5 + rot: 1.5707963267948966 rad + pos: 17.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13904 + color: '#0000FFFF' + - uid: 13441 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-2.5 + rot: 1.5707963267948966 rad + pos: 20.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13905 + - uid: 13446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-4.5 + pos: 13.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13906 + color: '#0000FFFF' + - uid: 13448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 + pos: 13.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13907 + color: '#0000FFFF' + - uid: 13449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-4.5 + rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13908 + - uid: 13452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-3.5 + rot: -1.5707963267948966 rad + pos: 18.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13909 + color: '#FF0000FF' + - uid: 13459 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-3.5 + pos: 14.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13910 + color: '#FF0000FF' + - uid: 13460 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-4.5 + pos: 13.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13911 + - uid: 13461 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-4.5 + pos: 11.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13921 + - uid: 13462 components: - type: Transform - pos: -18.5,0.5 + rot: 1.5707963267948966 rad + pos: 12.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13922 + - uid: 13467 components: - type: Transform - pos: -18.5,-1.5 + pos: 9.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13923 + - uid: 13468 components: - type: Transform - pos: -18.5,-0.5 + pos: 9.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13925 + - uid: 13470 components: - type: Transform - pos: -17.5,-0.5 + pos: 9.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13926 + color: '#FF0000FF' + - uid: 13471 components: - type: Transform - pos: -17.5,0.5 + pos: 9.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13927 + color: '#FF0000FF' + - uid: 13472 components: - type: Transform - pos: -17.5,1.5 + pos: 9.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13929 + color: '#FF0000FF' + - uid: 13473 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,1.5 + pos: 8.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13930 + - uid: 13474 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,1.5 + pos: 6.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13931 + - uid: 13475 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,1.5 + pos: 5.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13932 + - uid: 13476 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,1.5 + pos: 4.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13933 + - uid: 13478 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,1.5 + pos: 4.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13934 + color: '#0000FFFF' + - uid: 13479 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,2.5 + pos: 5.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13935 + - uid: 13481 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,2.5 + pos: 8.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13936 + - uid: 13482 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,2.5 + pos: 9.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13938 + - uid: 13483 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,1.5 + pos: 10.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13945 + color: '#0000FFFF' + - uid: 13484 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-12.5 + pos: 11.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13946 + - uid: 13485 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-12.5 + pos: 12.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13949 + - uid: 13486 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-13.5 + pos: 6.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13950 + color: '#0000FFFF' + - uid: 13488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-12.5 + pos: 13.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13951 + - uid: 13489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 + pos: 13.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13952 + - uid: 13490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-12.5 + pos: 13.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13953 + - uid: 13496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-12.5 + rot: 1.5707963267948966 rad + pos: 3.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13954 + - uid: 13497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-13.5 + rot: 1.5707963267948966 rad + pos: 3.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13961 + - uid: 13498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 + rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13962 + - uid: 13501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 + rot: 1.5707963267948966 rad + pos: -0.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13963 + - uid: 13502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-2.5 + rot: 1.5707963267948966 rad + pos: 0.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13964 + - uid: 13504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + rot: 1.5707963267948966 rad + pos: -1.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13966 + - uid: 13505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + rot: 1.5707963267948966 rad + pos: 2.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13967 + - uid: 13506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 + rot: 1.5707963267948966 rad + pos: 4.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13968 + - uid: 13507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 + rot: 1.5707963267948966 rad + pos: 3.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13969 + - uid: 13508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 + rot: 1.5707963267948966 rad + pos: -0.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13970 + color: '#FF0000FF' + - uid: 13510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 + rot: 1.5707963267948966 rad + pos: 2.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13972 + color: '#FF0000FF' + - uid: 13511 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-2.5 + pos: 0.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13973 + - uid: 13512 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-2.5 + pos: 3.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13974 + - uid: 13513 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-2.5 + pos: 4.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13975 + - uid: 13523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-3.5 + rot: 1.5707963267948966 rad + pos: -2.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13976 + - uid: 13524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-5.5 + rot: 1.5707963267948966 rad + pos: -0.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13977 + - uid: 13525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-4.5 + rot: 1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13978 + - uid: 13526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-5.5 + rot: 1.5707963267948966 rad + pos: 1.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13979 + color: '#0000FFFF' + - uid: 13528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-4.5 + rot: 1.5707963267948966 rad + pos: -1.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13981 + color: '#0000FFFF' + - uid: 13529 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 + rot: 1.5707963267948966 rad + pos: -0.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13982 + - uid: 13530 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-2.5 + pos: 1.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13983 + - uid: 13531 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-2.5 + pos: 2.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13986 + - uid: 13532 components: - type: Transform - pos: 12.5,-3.5 + rot: 1.5707963267948966 rad + pos: 0.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13992 + - uid: 13542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 + pos: 12.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13993 + - uid: 13548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 + pos: 10.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13994 + color: '#FF0000FF' + - uid: 13557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 + rot: 1.5707963267948966 rad + pos: 8.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13998 + - uid: 13560 components: - type: Transform - pos: -0.5,-5.5 + rot: 1.5707963267948966 rad + pos: 3.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13999 + - uid: 13561 components: - type: Transform - pos: -0.5,-6.5 + rot: 1.5707963267948966 rad + pos: 4.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14000 + - uid: 13563 components: - type: Transform - pos: -0.5,-7.5 + rot: 3.141592653589793 rad + pos: 17.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14001 + color: '#FF0000FF' + - uid: 13564 components: - type: Transform - pos: 0.5,-4.5 + rot: 3.141592653589793 rad + pos: 17.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14002 + - uid: 13565 components: - type: Transform - pos: 0.5,-5.5 + rot: 3.141592653589793 rad + pos: 17.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14003 + - uid: 13566 components: - type: Transform - pos: 0.5,-6.5 + rot: 3.141592653589793 rad + pos: 17.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14061 + - uid: 13568 components: - type: Transform - pos: 9.5,-6.5 + rot: 3.141592653589793 rad + pos: 17.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14087 + - uid: 13569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-7.5 + rot: 3.141592653589793 rad + pos: 17.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14088 + color: '#FF0000FF' + - uid: 13570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-7.5 + rot: 3.141592653589793 rad + pos: 17.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14090 + color: '#FF0000FF' + - uid: 13571 components: - type: Transform - pos: 29.5,-8.5 + rot: 3.141592653589793 rad + pos: 17.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14097 + color: '#FF0000FF' + - uid: 13572 components: - type: Transform - pos: 28.5,-10.5 + rot: 3.141592653589793 rad + pos: 17.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14100 + - uid: 13574 components: - type: Transform - pos: 28.5,-14.5 + rot: 3.141592653589793 rad + pos: 17.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14101 + - uid: 13575 components: - type: Transform - pos: 28.5,-15.5 + rot: 3.141592653589793 rad + pos: 17.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14102 + - uid: 13577 components: - type: Transform - pos: 28.5,-16.5 + rot: 3.141592653589793 rad + pos: 16.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14103 + color: '#0000FFFF' + - uid: 13578 components: - type: Transform - pos: 28.5,-17.5 + rot: 3.141592653589793 rad + pos: 16.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14104 + color: '#0000FFFF' + - uid: 13579 components: - type: Transform - pos: 28.5,-13.5 + rot: 3.141592653589793 rad + pos: 16.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14105 + color: '#0000FFFF' + - uid: 13580 components: - type: Transform - pos: 29.5,-17.5 + rot: 3.141592653589793 rad + pos: 16.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14106 + - uid: 13581 components: - type: Transform - pos: 29.5,-16.5 + rot: 3.141592653589793 rad + pos: 16.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14107 + - uid: 13582 components: - type: Transform - pos: 29.5,-14.5 + rot: 3.141592653589793 rad + pos: 16.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14109 + - uid: 13584 components: - type: Transform - pos: 29.5,-12.5 + rot: 3.141592653589793 rad + pos: 16.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14110 + - uid: 13591 components: - type: Transform - pos: 29.5,-11.5 + rot: 1.5707963267948966 rad + pos: 17.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14111 + - uid: 13592 components: - type: Transform - pos: 29.5,-10.5 + rot: 1.5707963267948966 rad + pos: 18.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14112 + color: '#FF0000FF' + - uid: 13593 components: - type: Transform - pos: 29.5,-15.5 + rot: 1.5707963267948966 rad + pos: 18.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14114 + - uid: 13604 components: - type: Transform - pos: 28.5,-18.5 + rot: -1.5707963267948966 rad + pos: 17.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14115 + color: '#0000FFFF' + - uid: 13605 components: - type: Transform - pos: 28.5,-19.5 + rot: 1.5707963267948966 rad + pos: 18.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14116 + - uid: 13606 components: - type: Transform - pos: 29.5,-19.5 + rot: -1.5707963267948966 rad + pos: 18.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14118 + - uid: 13607 components: - type: Transform - pos: 29.5,-18.5 + rot: -1.5707963267948966 rad + pos: 19.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14119 + - uid: 13608 components: - type: Transform - pos: 28.5,-20.5 + rot: -1.5707963267948966 rad + pos: 20.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14120 + color: '#0000FFFF' + - uid: 13610 components: - type: Transform - pos: 28.5,-21.5 + rot: 1.5707963267948966 rad + pos: 19.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14121 + - uid: 13612 components: - type: Transform - pos: 28.5,-22.5 + rot: 3.141592653589793 rad + pos: 20.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14122 + - uid: 13619 components: - type: Transform - pos: 29.5,-22.5 + rot: 1.5707963267948966 rad + pos: -7.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14123 + - uid: 13622 components: - type: Transform - pos: 29.5,-21.5 + rot: 1.5707963267948966 rad + pos: -7.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14124 + color: '#FF0000FF' + - uid: 13624 components: - type: Transform - pos: 29.5,-20.5 + rot: 1.5707963267948966 rad + pos: -9.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14127 + color: '#FF0000FF' + - uid: 13625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-9.5 + rot: 1.5707963267948966 rad + pos: -10.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14145 + - uid: 13626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-11.5 + rot: 1.5707963267948966 rad + pos: -11.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14160 + - uid: 13627 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-13.5 + pos: -10.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14161 + - uid: 13630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-13.5 + rot: -1.5707963267948966 rad + pos: -18.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14162 + - uid: 13631 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-13.5 + pos: -18.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14163 + color: '#FF0000FF' + - uid: 13632 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-13.5 + pos: -17.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14164 + color: '#FF0000FF' + - uid: 13633 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-13.5 + pos: -16.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14165 + color: '#FF0000FF' + - uid: 13634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-13.5 + pos: -15.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14167 + color: '#FF0000FF' + - uid: 13635 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-13.5 + pos: -14.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14168 + color: '#FF0000FF' + - uid: 13637 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-13.5 + pos: -12.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14169 + color: '#FF0000FF' + - uid: 13639 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-13.5 + pos: -18.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14170 + - uid: 13644 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-13.5 + pos: -16.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14171 + - uid: 13646 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-13.5 + pos: -13.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14172 + - uid: 13647 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-13.5 + pos: -12.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14174 + - uid: 13648 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-13.5 + pos: -14.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14176 + - uid: 13654 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-13.5 + pos: -20.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14177 + color: '#FF0000FF' + - uid: 13657 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-13.5 + pos: -21.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14178 + - uid: 13658 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-13.5 + pos: -22.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14180 + - uid: 13660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-13.5 + pos: -20.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14182 + - uid: 13661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-12.5 + pos: -20.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13667 + components: + - type: Transform + pos: -19.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14183 + - uid: 13670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-12.5 + rot: 3.141592653589793 rad + pos: -18.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14184 + - uid: 13671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-12.5 + rot: 3.141592653589793 rad + pos: -18.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14185 + - uid: 13672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13675 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-12.5 + pos: -19.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14187 + color: '#0000FFFF' + - uid: 13676 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-12.5 + pos: -18.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13679 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14188 + - uid: 13686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-12.5 + rot: -1.5707963267948966 rad + pos: -26.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14189 + - uid: 13687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-12.5 + rot: -1.5707963267948966 rad + pos: -27.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14190 + color: '#0000FFFF' + - uid: 13690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-12.5 + rot: -1.5707963267948966 rad + pos: -28.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14192 + color: '#0000FFFF' + - uid: 13691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-12.5 + rot: -1.5707963267948966 rad + pos: -28.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14193 + - uid: 13692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-12.5 + rot: -1.5707963267948966 rad + pos: -29.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14194 + - uid: 13693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-12.5 + rot: -1.5707963267948966 rad + pos: -29.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14195 + color: '#0000FFFF' + - uid: 13694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-12.5 + rot: 3.141592653589793 rad + pos: -26.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14196 + color: '#0000FFFF' + - uid: 13703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-12.5 + rot: 3.141592653589793 rad + pos: -24.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14197 + - uid: 13706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-12.5 + rot: 3.141592653589793 rad + pos: -18.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14198 + - uid: 13707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-12.5 + rot: 3.141592653589793 rad + pos: -18.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14200 + - uid: 13726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-12.5 + rot: 3.141592653589793 rad + pos: -17.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14201 + color: '#0000FFFF' + - uid: 13727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-12.5 + rot: 3.141592653589793 rad + pos: -17.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14202 + color: '#0000FFFF' + - uid: 13729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-12.5 + rot: 3.141592653589793 rad + pos: -18.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14203 + - uid: 13739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-12.5 + rot: 3.141592653589793 rad + pos: -8.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14229 + - uid: 13740 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,-12.5 + pos: -9.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14231 + - uid: 13741 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,-11.5 + pos: -9.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14248 + - uid: 13742 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-12.5 + pos: -9.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14251 + - uid: 13743 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-14.5 + pos: -8.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14252 + color: '#FF0000FF' + - uid: 13746 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-13.5 + pos: -8.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14253 + - uid: 13747 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-14.5 + rot: 1.5707963267948966 rad + pos: -10.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14255 + color: '#0000FFFF' + - uid: 13748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-13.5 + rot: 1.5707963267948966 rad + pos: -11.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14256 + - uid: 13750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-14.5 + rot: 1.5707963267948966 rad + pos: -10.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14258 + - uid: 13751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-14.5 + rot: 1.5707963267948966 rad + pos: -11.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14259 + color: '#FF0000FF' + - uid: 13752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-12.5 + pos: -8.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14263 + color: '#FF0000FF' + - uid: 13753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-14.5 + pos: -8.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14265 + - uid: 13754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-13.5 + pos: -8.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14267 + - uid: 13755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-12.5 + pos: -9.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14268 + - uid: 13756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-14.5 + pos: -9.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14283 + - uid: 13757 components: - type: Transform - pos: 2.5,-30.5 + pos: -9.5,21.5 parent: 2 - - uid: 14306 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-9.5 + pos: -9.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14307 + - uid: 13762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-8.5 + rot: 1.5707963267948966 rad + pos: -12.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14308 + - uid: 13772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-7.5 + rot: 1.5707963267948966 rad + pos: -11.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14309 + - uid: 13773 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-10.5 + pos: -10.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14310 + - uid: 13774 components: - type: Transform - pos: 49.5,-8.5 + rot: 1.5707963267948966 rad + pos: -12.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14311 + - uid: 13775 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-11.5 + pos: -11.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14312 + - uid: 13776 components: - type: Transform - pos: 49.5,-10.5 + rot: 1.5707963267948966 rad + pos: -10.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14313 + - uid: 13777 components: - type: Transform - pos: 49.5,-9.5 + rot: 1.5707963267948966 rad + pos: -9.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14322 + - uid: 13778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-14.5 + rot: -1.5707963267948966 rad + pos: -18.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14327 + - uid: 13779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-25.5 + pos: -9.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14330 + - uid: 13780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-25.5 + pos: -8.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14331 + color: '#FF0000FF' + - uid: 13788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-23.5 + pos: -9.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14332 + - uid: 13791 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-24.5 + pos: 0.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14333 + color: '#FF0000FF' + - uid: 13799 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-25.5 + pos: 1.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14334 + color: '#FF0000FF' + - uid: 13800 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-25.5 + pos: 2.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14335 + color: '#FF0000FF' + - uid: 13801 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-25.5 + pos: 3.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14336 + color: '#FF0000FF' + - uid: 13802 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-25.5 + pos: 4.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14337 + color: '#FF0000FF' + - uid: 13803 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-25.5 + pos: 1.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14338 + - uid: 13804 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-25.5 + pos: 2.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14346 + - uid: 13805 components: - type: Transform - pos: 28.5,-24.5 + rot: 1.5707963267948966 rad + pos: 3.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14347 + color: '#0000FFFF' + - uid: 13806 components: - type: Transform - pos: 28.5,-25.5 + pos: 4.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14348 + color: '#0000FFFF' + - uid: 13807 components: - type: Transform - pos: 28.5,-26.5 + pos: 5.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14349 + - uid: 13808 components: - type: Transform - pos: 28.5,-27.5 + pos: 5.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14350 + - uid: 13809 components: - type: Transform - pos: 28.5,-28.5 + rot: -1.5707963267948966 rad + pos: 5.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14352 + color: '#0000FFFF' + - uid: 13810 components: - type: Transform - pos: 29.5,-27.5 + rot: -1.5707963267948966 rad + pos: 6.5,38.5 parent: 2 - - uid: 14353 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13811 components: - type: Transform - pos: 29.5,-28.5 + rot: -1.5707963267948966 rad + pos: 6.5,37.5 parent: 2 - - uid: 14357 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13812 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-30.5 + pos: 9.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14358 + color: '#0000FFFF' + - uid: 13813 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-30.5 + pos: 7.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14359 + color: '#0000FFFF' + - uid: 13814 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-30.5 + pos: 8.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14360 + color: '#0000FFFF' + - uid: 13815 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-29.5 + pos: 10.5,38.5 parent: 2 - - uid: 14361 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,-29.5 + pos: 11.5,38.5 parent: 2 - - uid: 14372 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13817 components: - type: Transform - pos: 34.5,-30.5 + rot: -1.5707963267948966 rad + pos: 9.5,38.5 parent: 2 - - uid: 14373 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-35.5 + rot: -1.5707963267948966 rad + pos: 7.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14374 + - uid: 13820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 + rot: -1.5707963267948966 rad + pos: 8.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14377 + - uid: 13821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 + rot: -1.5707963267948966 rad + pos: 12.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14378 + color: '#0000FFFF' + - uid: 13824 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-23.5 + pos: 10.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14379 + - uid: 13825 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-23.5 + pos: 11.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14387 + - uid: 13828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-24.5 + rot: 3.141592653589793 rad + pos: 12.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14389 + - uid: 13829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-24.5 + rot: 3.141592653589793 rad + pos: 12.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-29.5 - parent: 2 - - uid: 14412 + - uid: 13830 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-31.5 + pos: 12.5,39.5 parent: 2 - - uid: 14413 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13831 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-32.5 + pos: 12.5,40.5 parent: 2 - - uid: 14414 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13834 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-33.5 + pos: 13.5,39.5 parent: 2 - - uid: 14416 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13835 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-31.5 + pos: 13.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14417 + color: '#0000FFFF' + - uid: 13841 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-32.5 + pos: -52.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14418 + - uid: 13842 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-33.5 + pos: -52.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14419 + - uid: 13843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-36.5 + pos: -52.5,33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14420 + - uid: 13851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-37.5 + pos: -18.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14421 + - uid: 13852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-36.5 + pos: -18.5,-11.5 parent: 2 - - uid: 14422 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-35.5 + pos: -17.5,-11.5 parent: 2 - - uid: 14425 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-29.5 + pos: -18.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14428 + - uid: 13860 components: - type: Transform - pos: 39.5,-4.5 + rot: -1.5707963267948966 rad + pos: -18.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14429 + - uid: 13861 components: - type: Transform - pos: 39.5,-3.5 + rot: -1.5707963267948966 rad + pos: -19.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14430 + - uid: 13862 components: - type: Transform - pos: 39.5,-2.5 + rot: -1.5707963267948966 rad + pos: -20.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14431 + - uid: 13863 components: - type: Transform - pos: 35.5,-3.5 + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14432 + - uid: 13864 components: - type: Transform - pos: 35.5,-4.5 + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14437 + - uid: 13865 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-0.5 + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14438 + color: '#FF0000FF' + - uid: 13872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,0.5 + pos: -17.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14439 + - uid: 13873 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,0.5 + pos: -17.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14440 + color: '#FF0000FF' + - uid: 13874 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,0.5 + pos: -16.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14442 + color: '#FF0000FF' + - uid: 13875 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,0.5 + pos: -15.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14443 + color: '#FF0000FF' + - uid: 13876 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,0.5 + pos: -16.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14444 + - uid: 13877 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,0.5 + pos: -15.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14445 + - uid: 13879 components: - type: Transform - pos: 30.5,3.5 + pos: -17.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14446 + - uid: 13880 components: - type: Transform - pos: 30.5,2.5 + pos: -17.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14447 + - uid: 13881 components: - type: Transform - pos: 30.5,1.5 + pos: -17.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14452 + - uid: 13882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-2.5 + pos: -18.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14453 + - uid: 13883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-2.5 + pos: -18.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14454 + - uid: 13884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-2.5 + pos: -17.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14455 + color: '#0000FFFF' + - uid: 13893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-2.5 + rot: -1.5707963267948966 rad + pos: -14.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14456 + - uid: 13894 components: - type: Transform - pos: 29.5,-1.5 + rot: -1.5707963267948966 rad + pos: -13.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14457 + - uid: 13896 components: - type: Transform - pos: 29.5,-0.5 + rot: -1.5707963267948966 rad + pos: -19.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14458 + - uid: 13897 components: - type: Transform - pos: 29.5,0.5 + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14459 + - uid: 13898 components: - type: Transform - pos: 29.5,3.5 + rot: -1.5707963267948966 rad + pos: -21.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14460 + - uid: 13900 components: - type: Transform - pos: 29.5,4.5 + rot: -1.5707963267948966 rad + pos: -19.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14461 + color: '#0000FFFF' + - uid: 13901 components: - type: Transform - pos: 29.5,5.5 + rot: -1.5707963267948966 rad + pos: -20.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14462 + color: '#0000FFFF' + - uid: 13902 components: - type: Transform - pos: 29.5,2.5 + rot: 3.141592653589793 rad + pos: -18.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14482 + - uid: 13903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,6.5 + rot: 3.141592653589793 rad + pos: -18.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14483 + - uid: 13904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,5.5 + rot: 3.141592653589793 rad + pos: -17.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14485 + - uid: 13905 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,5.5 + pos: -17.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14486 + color: '#FF0000FF' + - uid: 13906 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,5.5 + pos: -16.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14487 + color: '#FF0000FF' + - uid: 13907 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,5.5 + pos: -15.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14488 + color: '#FF0000FF' + - uid: 13908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,5.5 + rot: 1.5707963267948966 rad + pos: -16.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14490 + - uid: 13909 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,7.5 + pos: -15.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14492 + color: '#0000FFFF' + - uid: 13910 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,7.5 + pos: -14.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14493 + - uid: 13911 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,7.5 + pos: -13.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14494 + - uid: 13921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,7.5 + pos: -18.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14496 + - uid: 13922 components: - type: Transform - pos: 31.5,9.5 + pos: -18.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14497 + - uid: 13923 components: - type: Transform - pos: 31.5,8.5 + pos: -18.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14499 - components: - - type: Transform - pos: 30.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14500 + - uid: 13925 components: - type: Transform - pos: 30.5,7.5 + pos: -17.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14501 + - uid: 13926 components: - type: Transform - pos: 30.5,9.5 + pos: -17.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14502 + - uid: 13927 components: - type: Transform - pos: 30.5,10.5 + pos: -17.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14503 + - uid: 13929 components: - type: Transform - pos: 30.5,8.5 + rot: -1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14508 + color: '#FF0000FF' + - uid: 13930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,11.5 + rot: -1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14509 + color: '#FF0000FF' + - uid: 13931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,11.5 + rot: -1.5707963267948966 rad + pos: -15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14511 + color: '#FF0000FF' + - uid: 13932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,10.5 + rot: -1.5707963267948966 rad + pos: -14.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14512 + - uid: 13933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,10.5 + rot: -1.5707963267948966 rad + pos: -13.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-30.5 - parent: 2 - - uid: 16031 + - uid: 13934 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,12.5 + pos: -16.5,2.5 parent: 2 - - uid: 16616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 16200 - - uid: 16617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 16200 - - uid: 16618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 16200 - - uid: 16619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,9.5 - parent: 16200 - - uid: 16620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,9.5 - parent: 16200 - - uid: 16621 - components: - - type: Transform - pos: 20.5,10.5 - parent: 16200 - - uid: 16622 - components: - - type: Transform - pos: 20.5,13.5 - parent: 16200 - - uid: 16624 - components: - - type: Transform - pos: 20.5,11.5 - parent: 16200 - - uid: 16625 - components: - - type: Transform - pos: 20.5,15.5 - parent: 16200 - - uid: 16626 - components: - - type: Transform - pos: 20.5,17.5 - parent: 16200 - - uid: 16627 - components: - - type: Transform - pos: 20.5,12.5 - parent: 16200 - - uid: 16628 - components: - - type: Transform - pos: 20.5,18.5 - parent: 16200 - - uid: 16629 - components: - - type: Transform - pos: 20.5,20.5 - parent: 16200 - - uid: 16630 - components: - - type: Transform - pos: 20.5,16.5 - parent: 16200 - - uid: 16631 - components: - - type: Transform - pos: 20.5,19.5 - parent: 16200 - - uid: 16632 - components: - - type: Transform - pos: 20.5,21.5 - parent: 16200 - - uid: 16636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,14.5 - parent: 16200 - - uid: 16637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 16200 - - uid: 16638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 16200 - - uid: 16639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,14.5 - parent: 16200 - - uid: 16640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,14.5 - parent: 16200 - - uid: 16643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,22.5 - parent: 16200 - - uid: 16644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,22.5 - parent: 16200 - - uid: 16645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,22.5 - parent: 16200 - - uid: 16646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,22.5 - parent: 16200 - - uid: 16647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,22.5 - parent: 16200 - - uid: 16654 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13935 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,13.5 - parent: 16200 - - uid: 16655 + pos: -15.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13936 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,13.5 - parent: 16200 - - uid: 16656 + pos: -14.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13938 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,13.5 - parent: 16200 - - uid: 16657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,14.5 - parent: 16200 - - uid: 16658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,16.5 - parent: 16200 - - uid: 16659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,15.5 - parent: 16200 - - uid: 16662 - components: - - type: Transform - pos: 21.5,12.5 - parent: 16200 - - uid: 16663 - components: - - type: Transform - pos: 21.5,11.5 - parent: 16200 - - uid: 16664 + pos: -12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13945 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,10.5 - parent: 16200 - - uid: 16665 + pos: -19.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13946 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,10.5 - parent: 16200 - - uid: 16666 + pos: -20.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13949 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,10.5 - parent: 16200 - - uid: 16667 + pos: -19.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13950 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 16200 - - uid: 16671 + pos: -21.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13951 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 16200 - - uid: 16674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,9.5 - parent: 16200 - - uid: 16795 - components: - - type: Transform - pos: 10.5,12.5 - parent: 16675 - - uid: 16796 - components: - - type: Transform - pos: 10.5,14.5 - parent: 16675 - - uid: 16797 - components: - - type: Transform - pos: 10.5,13.5 - parent: 16675 - - uid: 16798 - components: - - type: Transform - pos: 10.5,15.5 - parent: 16675 - - uid: 16799 - components: - - type: Transform - pos: 10.5,16.5 - parent: 16675 - - uid: 16800 - components: - - type: Transform - pos: 10.5,17.5 - parent: 16675 - - uid: 17967 + pos: -22.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13952 components: - type: Transform - pos: 29.5,-10.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18049 + - uid: 13953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18050 + - uid: 13954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18353 + color: '#FF0000FF' + - uid: 13961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,1.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18354 + - uid: 13962 components: - type: Transform - anchored: False - rot: 0.767944870877505 rad - pos: 40.43866,1.9443359 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 18355 + - uid: 13963 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-0.5 - parent: 17590 + pos: 8.5,-2.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18357 + - uid: 13964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-2.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18358 + - uid: 13966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-4.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18359 + - uid: 13967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-6.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18360 + - uid: 13968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-7.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18361 + - uid: 13969 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-8.5 - parent: 17590 + pos: 2.5,-2.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18362 + - uid: 13970 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-9.5 - parent: 17590 + pos: 2.5,-3.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18363 + - uid: 13972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-10.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18364 + color: '#FF0000FF' + - uid: 13973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-11.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18365 + color: '#FF0000FF' + - uid: 13974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13975 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-12.5 - parent: 17590 + pos: 8.5,-3.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18366 + - uid: 13976 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-13.5 - parent: 17590 + pos: 8.5,-5.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18367 + - uid: 13977 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-15.5 - parent: 17590 + pos: 8.5,-4.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18368 + - uid: 13978 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-16.5 - parent: 17590 + pos: 9.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18369 + color: '#FF0000FF' + - uid: 13979 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-17.5 - parent: 17590 + pos: 9.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18370 + color: '#FF0000FF' + - uid: 13981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-14.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18371 + color: '#FF0000FF' + - uid: 13982 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-14.5 - parent: 17590 + pos: 11.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18372 + color: '#FF0000FF' + - uid: 13983 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-14.5 - parent: 17590 + pos: 10.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18373 + color: '#FF0000FF' + - uid: 13986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-14.5 - parent: 17590 + pos: 12.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18374 + color: '#FF0000FF' + - uid: 13992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-14.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18375 + - uid: 13993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-14.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18376 + - uid: 13994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-18.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18377 + color: '#FF0000FF' + - uid: 13998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-18.5 - parent: 17590 + pos: -0.5,-5.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18378 + - uid: 13999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-18.5 - parent: 17590 + pos: -0.5,-6.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18379 + - uid: 14000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-18.5 - parent: 17590 + pos: -0.5,-7.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18380 + - uid: 14001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-18.5 - parent: 17590 + pos: 0.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18381 + color: '#FF0000FF' + - uid: 14002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-18.5 - parent: 17590 + pos: 0.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18382 + color: '#FF0000FF' + - uid: 14003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 17590 + pos: 0.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18384 + color: '#FF0000FF' + - uid: 14061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 17590 + pos: 9.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18385 + color: '#FF0000FF' + - uid: 14087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 17590 + pos: 27.5,-7.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18386 + - uid: 14088 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 17590 + pos: 28.5,-7.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18387 + - uid: 14090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,2.5 - parent: 17590 + pos: 29.5,-8.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18388 + - uid: 14097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 17590 + pos: 28.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18389 + color: '#FF0000FF' + - uid: 14100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,2.5 - parent: 17590 + pos: 28.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18391 + color: '#FF0000FF' + - uid: 14101 components: - type: Transform - pos: 32.5,3.5 - parent: 17590 + pos: 28.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18392 + color: '#FF0000FF' + - uid: 14102 components: - type: Transform - pos: 32.5,4.5 - parent: 17590 + pos: 28.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18393 + color: '#FF0000FF' + - uid: 14103 components: - type: Transform - pos: 32.5,5.5 - parent: 17590 + pos: 28.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18394 + color: '#FF0000FF' + - uid: 14104 components: - type: Transform - pos: 32.5,1.5 - parent: 17590 + pos: 28.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18395 + color: '#FF0000FF' + - uid: 14105 components: - type: Transform - pos: 32.5,0.5 - parent: 17590 + pos: 29.5,-17.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18396 + - uid: 14106 components: - type: Transform - pos: 32.5,-0.5 - parent: 17590 + pos: 29.5,-16.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18397 + - uid: 14107 components: - type: Transform - pos: 32.5,-1.5 - parent: 17590 + pos: 29.5,-14.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18398 + - uid: 14109 components: - type: Transform - pos: 32.5,-2.5 - parent: 17590 + pos: 29.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18399 + - uid: 14110 components: - type: Transform - pos: 32.5,-3.5 - parent: 17590 + pos: 29.5,-11.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18400 + - uid: 14111 components: - type: Transform - pos: 32.5,-4.5 - parent: 17590 + pos: 29.5,-10.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18401 + - uid: 14112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-5.5 - parent: 17590 + pos: 29.5,-15.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18402 + - uid: 14114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 17590 + pos: 28.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18404 + color: '#FF0000FF' + - uid: 14115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 17590 + pos: 28.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18405 + color: '#FF0000FF' + - uid: 14116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 17590 + pos: 29.5,-19.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18406 + - uid: 14118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 17590 + pos: 29.5,-18.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18407 + - uid: 14120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-7.5 - parent: 17590 + pos: 28.5,-21.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18409 + - uid: 14121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-5.5 - parent: 17590 + pos: 28.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18410 + color: '#FF0000FF' + - uid: 14122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 17590 + pos: 29.5,-22.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18412 + - uid: 14123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 17590 + pos: 29.5,-21.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18413 + - uid: 14124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 17590 + pos: 29.5,-20.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18414 + - uid: 14127 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 17590 + pos: 27.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18416 + color: '#FF0000FF' + - uid: 14145 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 17590 + pos: 29.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18418 + color: '#FF0000FF' + - uid: 14160 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 17590 + pos: 30.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18419 + - uid: 14161 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-5.5 - parent: 17590 + pos: 31.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18421 + - uid: 14162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18422 + color: '#0000FFFF' + - uid: 14163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18423 + - uid: 14164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-5.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 34.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18424 + - uid: 14165 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-8.5 - parent: 17590 + pos: 35.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18425 + color: '#0000FFFF' + - uid: 14167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-5.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 37.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18426 + - uid: 14168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-5.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 38.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18427 + - uid: 14169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 39.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18428 + - uid: 14170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 42.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18429 + - uid: 14171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18430 + - uid: 14172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 43.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18431 + - uid: 14174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 45.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18432 + - uid: 14176 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 47.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18433 + - uid: 14177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-3.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 48.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18435 + - uid: 14178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-7.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 49.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18436 + - uid: 14180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 50.5,-13.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18437 + - uid: 14182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-9.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18438 + color: '#FF0000FF' + - uid: 14183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-10.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18439 + color: '#FF0000FF' + - uid: 14184 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 17590 + pos: 32.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18440 + color: '#FF0000FF' + - uid: 14185 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 17590 + pos: 33.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18441 + color: '#FF0000FF' + - uid: 14187 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 17590 + pos: 35.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18442 + color: '#FF0000FF' + - uid: 14188 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 17590 + pos: 36.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18448 + color: '#FF0000FF' + - uid: 14189 components: - type: Transform - pos: 29.5,-9.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 31.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18449 + color: '#FF0000FF' + - uid: 14190 components: - type: Transform - pos: 29.5,-7.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 37.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18451 + color: '#FF0000FF' + - uid: 14192 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-14.5 - parent: 17590 + pos: 39.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18452 + - uid: 14193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-12.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18453 + color: '#FF0000FF' + - uid: 14194 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-14.5 - parent: 17590 + pos: 41.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18458 + - uid: 14195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18460 + - uid: 14196 components: - type: Transform - pos: 30.5,-11.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 44.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18461 + - uid: 14197 components: - type: Transform - pos: 30.5,-12.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 45.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18462 + - uid: 14198 components: - type: Transform - pos: 30.5,-10.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 46.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18463 + - uid: 14200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-4.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 48.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18464 + - uid: 14201 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-2.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 49.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18465 + - uid: 14202 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 17590 + pos: 50.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18466 + - uid: 14203 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-14.5 - parent: 17590 + pos: 51.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18468 + - uid: 14229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,2.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 46.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18469 + - uid: 14231 components: - type: Transform - pos: 48.5,5.5 - parent: 17590 - - uid: 18470 + rot: 3.141592653589793 rad + pos: 46.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 36.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18471 + - uid: 14251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,6.5 - parent: 17590 - - uid: 18472 + rot: 3.141592653589793 rad + pos: 36.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,4.5 - parent: 17590 - - uid: 18473 + rot: 3.141592653589793 rad + pos: 34.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14253 components: - type: Transform - pos: 48.5,3.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 34.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18474 + color: '#FF0000FF' + - uid: 14255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 38.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18475 + color: '#FF0000FF' + - uid: 14256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,2.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 38.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18476 + color: '#FF0000FF' + - uid: 14258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,2.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 40.5,-14.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18477 + - uid: 14259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,2.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 40.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18478 + - uid: 14263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,2.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 42.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18479 + color: '#FF0000FF' + - uid: 14265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,2.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 42.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18480 + color: '#FF0000FF' + - uid: 14267 components: - type: Transform - pos: 41.5,-3.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 44.5,-12.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18482 + - uid: 14268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 44.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18485 + color: '#0000FFFF' + - uid: 14283 components: - type: Transform - pos: 47.5,6.5 - parent: 17590 - - uid: 18488 + pos: 2.5,-30.5 + parent: 2 + - uid: 14306 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-1.5 - parent: 17590 + pos: 48.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18531 + color: '#0000FFFF' + - uid: 14308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-8.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 48.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18635 + color: '#0000FFFF' + - uid: 14309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 47.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18643 + color: '#0000FFFF' + - uid: 14310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 17590 + pos: 49.5,-8.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18761 + - uid: 14311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 48.5,-11.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18774 + - uid: 14312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 17590 + pos: 49.5,-10.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18792 + - uid: 14313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 17590 + pos: 49.5,-9.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18856 + - uid: 14322 components: - type: Transform - pos: 30.5,-9.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 51.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18858 + color: '#0000FFFF' + - uid: 14327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14331 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-16.5 - parent: 17590 + pos: 29.5,-23.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18859 + - uid: 14332 components: - type: Transform - pos: 29.5,-11.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 29.5,-24.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18861 + - uid: 14333 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 17590 + pos: 36.5,-25.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19336 + - uid: 14334 components: - type: Transform - pos: 29.5,-6.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19337 + - uid: 14335 components: - type: Transform - pos: 29.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19442 + - uid: 14336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 37.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19443 + color: '#0000FFFF' + - uid: 14337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 38.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19445 + color: '#0000FFFF' + - uid: 14338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 35.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19446 + color: '#0000FFFF' + - uid: 14346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 17590 + pos: 28.5,-24.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19447 + - uid: 14347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 17590 + pos: 28.5,-25.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19449 + - uid: 14348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 17590 + pos: 28.5,-26.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19450 + - uid: 14349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 17590 + pos: 28.5,-27.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19453 + - uid: 14350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 17590 + pos: 28.5,-28.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19454 + - uid: 14352 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 14353 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 2 + - uid: 14357 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 17590 + pos: 29.5,-30.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19455 + - uid: 14358 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 17590 + pos: 30.5,-30.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19457 + - uid: 14359 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 17590 + pos: 31.5,-30.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19458 + - uid: 14360 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19459 + pos: 31.5,-29.5 + parent: 2 + - uid: 14361 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 17590 + pos: 32.5,-29.5 + parent: 2 + - uid: 14372 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 2 + - uid: 14373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-35.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19460 + - uid: 14374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19461 + - uid: 14377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19462 + - uid: 14378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19463 + - uid: 14379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19464 + - uid: 14387 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 17590 + pos: 35.5,-24.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19465 + - uid: 14389 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 17590 + pos: 36.5,-24.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19466 + - uid: 14396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 2 + - uid: 14412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-31.5 + parent: 2 + - uid: 14413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19467 + rot: 3.141592653589793 rad + pos: 34.5,-32.5 + parent: 2 + - uid: 14414 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19468 + pos: 34.5,-33.5 + parent: 2 + - uid: 14416 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-4.5 - parent: 17590 + pos: 32.5,-31.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19469 + - uid: 14417 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-3.5 - parent: 17590 + pos: 32.5,-32.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19470 + - uid: 14418 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 17590 + pos: 32.5,-33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19471 + - uid: 14419 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-9.5 - parent: 17590 + pos: 32.5,-36.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19472 + - uid: 14420 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-10.5 - parent: 17590 + pos: 32.5,-37.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19479 + - uid: 14421 components: - type: Transform - pos: 3.5,-6.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19480 + rot: 3.141592653589793 rad + pos: 34.5,-36.5 + parent: 2 + - uid: 14422 components: - type: Transform - pos: 3.5,-7.5 - parent: 17590 + rot: 3.141592653589793 rad + pos: 34.5,-35.5 + parent: 2 + - uid: 14425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19481 + color: '#FF0000FF' + - uid: 14428 components: - type: Transform - pos: 3.5,-8.5 - parent: 17590 + pos: 39.5,-4.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19482 + - uid: 14429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 17590 + pos: 39.5,-3.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19483 + - uid: 14430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 17590 + pos: 39.5,-2.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19488 + - uid: 14431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-5.5 - parent: 17590 + pos: 35.5,-3.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19489 + - uid: 14432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-6.5 - parent: 17590 + pos: 35.5,-4.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19490 + - uid: 14437 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-7.5 - parent: 17590 + pos: 38.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19491 + color: '#0000FFFF' + - uid: 14438 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 17590 + pos: 37.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,7.5 - parent: 17590 - - uid: 19504 + color: '#0000FFFF' + - uid: 14439 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19506 - components: - - type: Transform - pos: 40.5,-7.5 - parent: 17590 + pos: 36.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19507 + color: '#0000FFFF' + - uid: 14440 components: - type: Transform - pos: 40.5,-5.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19508 + color: '#0000FFFF' + - uid: 14442 components: - type: Transform - pos: 40.5,-4.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 33.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19509 + color: '#0000FFFF' + - uid: 14443 components: - type: Transform - pos: 40.5,-3.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19510 + color: '#0000FFFF' + - uid: 14444 components: - type: Transform - pos: 40.5,-2.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19511 + color: '#0000FFFF' + - uid: 14445 components: - type: Transform - pos: 40.5,-1.5 - parent: 17590 + pos: 30.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19512 + color: '#0000FFFF' + - uid: 14446 components: - type: Transform - pos: 40.5,-0.5 - parent: 17590 + pos: 30.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19513 + color: '#0000FFFF' + - uid: 14447 components: - type: Transform - pos: 40.5,-6.5 - parent: 17590 + pos: 30.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19516 + color: '#0000FFFF' + - uid: 14452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,1.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19517 + - uid: 14453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,1.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19518 + - uid: 14454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,1.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19519 + - uid: 14455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,1.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19520 + - uid: 14456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,1.5 - parent: 17590 + pos: 29.5,-1.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19521 + - uid: 14457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,1.5 - parent: 17590 + pos: 29.5,-0.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19522 + - uid: 14458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,2.5 - parent: 17590 + pos: 29.5,0.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19523 + - uid: 14459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,4.5 - parent: 17590 + pos: 29.5,3.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19524 + - uid: 14460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,3.5 - parent: 17590 + pos: 29.5,4.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19581 + - uid: 14461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-3.5 - parent: 17590 + pos: 29.5,5.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19582 + - uid: 14462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 17590 + pos: 29.5,2.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19583 + - uid: 14482 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 17590 + pos: 30.5,6.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19585 + - uid: 14485 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 17590 + pos: 34.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19587 + color: '#0000FFFF' + - uid: 14486 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 17590 + pos: 35.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19588 + color: '#0000FFFF' + - uid: 14487 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-0.5 - parent: 17590 + pos: 36.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19589 + color: '#0000FFFF' + - uid: 14488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 33.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19590 + color: '#0000FFFF' + - uid: 14490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-0.5 - parent: 17590 + pos: 32.5,7.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19591 + - uid: 14492 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 17590 + pos: 35.5,7.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19593 + - uid: 14493 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-0.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,0.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,1.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,2.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,3.5 - parent: 17590 + pos: 36.5,7.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19602 + - uid: 14496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,4.5 - parent: 17590 + pos: 31.5,9.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19603 + - uid: 14497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,5.5 - parent: 17590 + pos: 31.5,8.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19607 + - uid: 14499 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,7.5 - parent: 17590 + pos: 30.5,6.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19609 + - uid: 14500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,7.5 - parent: 17590 + pos: 30.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19610 + color: '#0000FFFF' + - uid: 14501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,9.5 - parent: 17590 + pos: 30.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19611 + color: '#0000FFFF' + - uid: 14502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,10.5 - parent: 17590 + pos: 30.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19612 + color: '#0000FFFF' + - uid: 14503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,8.5 - parent: 17590 + pos: 30.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19613 + color: '#0000FFFF' + - uid: 14508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,9.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 31.5,11.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19614 + - uid: 14509 components: - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad pos: 32.5,11.5 - parent: 17590 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19615 + - uid: 14511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 32.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19616 + color: '#FF0000FF' + - uid: 14512 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,10.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 33.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19617 + color: '#FF0000FF' + - uid: 14672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,13.5 - parent: 17590 + pos: -26.5,11.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19618 + - uid: 14673 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,12.5 - parent: 17590 + pos: -26.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19619 + color: '#0000FFFF' + - uid: 14674 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,13.5 - parent: 17590 + pos: -24.5,12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19620 + - uid: 14714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,14.5 - parent: 17590 + pos: -24.5,11.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19621 + - uid: 14715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,15.5 - parent: 17590 + pos: -24.5,10.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19622 + - uid: 14903 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,16.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19632 + pos: 0.5,-30.5 + parent: 2 + - uid: 16011 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 17590 + pos: 52.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19633 + color: '#FF0000FF' + - uid: 16012 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-14.5 - parent: 17590 + pos: 50.5,-7.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19641 + - uid: 16015 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-15.5 - parent: 17590 + pos: 54.5,-8.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19643 + - uid: 16016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-12.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 53.5,-8.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19644 + - uid: 16020 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 17590 + pos: 51.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19645 + color: '#FF0000FF' + - uid: 16026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19646 + color: '#FF0000FF' + - uid: 16027 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-12.5 - parent: 17590 + pos: 53.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19647 + color: '#FF0000FF' + - uid: 16029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-15.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 52.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19648 + color: '#0000FFFF' + - uid: 16030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-17.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 51.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19649 + color: '#0000FFFF' + - uid: 16059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-16.5 - parent: 17590 + rot: -1.5707963267948966 rad + pos: 54.5,-7.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19651 + - uid: 16068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19653 + - uid: 16069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-17.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 50.5,-8.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19654 + - uid: 16070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-15.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 49.5,-8.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19655 + - uid: 16143 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-14.5 - parent: 17590 + pos: -20.5,12.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19656 + - uid: 16156 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-13.5 - parent: 17590 + pos: -20.5,10.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19657 + - uid: 16166 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-16.5 - parent: 17590 + pos: -20.5,9.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19659 + - uid: 16167 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-17.5 - parent: 17590 + pos: -20.5,11.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19664 + - uid: 16616 components: - type: Transform - pos: 23.5,-15.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19665 + rot: -1.5707963267948966 rad + pos: 25.5,9.5 + parent: 16200 + - uid: 16617 components: - type: Transform - pos: 23.5,-16.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19718 + rot: -1.5707963267948966 rad + pos: 23.5,9.5 + parent: 16200 + - uid: 16618 components: - type: Transform - pos: 40.5,-9.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19719 + rot: -1.5707963267948966 rad + pos: 22.5,9.5 + parent: 16200 + - uid: 16619 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-10.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19720 + pos: 24.5,9.5 + parent: 16200 + - uid: 16620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-11.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19721 + rot: 1.5707963267948966 rad + pos: 21.5,9.5 + parent: 16200 + - uid: 16621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-12.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19722 + pos: 20.5,10.5 + parent: 16200 + - uid: 16622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-15.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19723 + pos: 20.5,13.5 + parent: 16200 + - uid: 16624 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-17.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19724 + pos: 20.5,11.5 + parent: 16200 + - uid: 16625 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-16.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19725 + pos: 20.5,15.5 + parent: 16200 + - uid: 16626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-18.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19728 + pos: 20.5,17.5 + parent: 16200 + - uid: 16627 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19729 + pos: 20.5,12.5 + parent: 16200 + - uid: 16628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19730 + pos: 20.5,18.5 + parent: 16200 + - uid: 16629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19731 + pos: 20.5,20.5 + parent: 16200 + - uid: 16630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19732 + pos: 20.5,16.5 + parent: 16200 + - uid: 16631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19733 + pos: 20.5,19.5 + parent: 16200 + - uid: 16632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19734 + pos: 20.5,21.5 + parent: 16200 + - uid: 16636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19735 + rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 16200 + - uid: 16637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-19.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19736 + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 16200 + - uid: 16638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 16200 + - uid: 16639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,14.5 + parent: 16200 + - uid: 16640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 16200 + - uid: 16643 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-19.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19737 + pos: 21.5,22.5 + parent: 16200 + - uid: 16644 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-19.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19738 + pos: 23.5,22.5 + parent: 16200 + - uid: 16645 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-19.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19739 + pos: 24.5,22.5 + parent: 16200 + - uid: 16646 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-19.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19740 + pos: 26.5,22.5 + parent: 16200 + - uid: 16647 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-19.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19741 + pos: 25.5,22.5 + parent: 16200 + - uid: 16654 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-18.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19742 + pos: 24.5,13.5 + parent: 16200 + - uid: 16655 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19743 + pos: 23.5,13.5 + parent: 16200 + - uid: 16656 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-13.5 - parent: 17590 + pos: 22.5,13.5 + parent: 16200 + - uid: 16657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,14.5 + parent: 16200 + - uid: 16658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 16200 + - uid: 16659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,15.5 + parent: 16200 + - uid: 16662 + components: + - type: Transform + pos: 21.5,12.5 + parent: 16200 + - uid: 16663 + components: + - type: Transform + pos: 21.5,11.5 + parent: 16200 + - uid: 16664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,10.5 + parent: 16200 + - uid: 16665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,10.5 + parent: 16200 + - uid: 16666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,10.5 + parent: 16200 + - uid: 16667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,10.5 + parent: 16200 + - uid: 16671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,10.5 + parent: 16200 + - uid: 16674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,9.5 + parent: 16200 + - uid: 16795 + components: + - type: Transform + pos: 10.5,12.5 + parent: 16675 + - uid: 16796 + components: + - type: Transform + pos: 10.5,14.5 + parent: 16675 + - uid: 16797 + components: + - type: Transform + pos: 10.5,13.5 + parent: 16675 + - uid: 16798 + components: + - type: Transform + pos: 10.5,15.5 + parent: 16675 + - uid: 16799 + components: + - type: Transform + pos: 10.5,16.5 + parent: 16675 + - uid: 16800 + components: + - type: Transform + pos: 10.5,17.5 + parent: 16675 + - uid: 16971 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19744 + - uid: 16989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-19.5 - parent: 17590 + pos: -22.5,12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19751 + - uid: 16990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-6.5 - parent: 17590 + pos: -21.5,7.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19752 + - uid: 16991 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-5.5 - parent: 17590 + pos: -21.5,8.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19753 + - uid: 17078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 17590 + pos: -21.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' + - uid: 17160 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeTJunction entities: - uid: 90 @@ -76019,6 +73036,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 3629 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3675 + components: + - type: Transform + pos: -25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 3751 components: - type: Transform @@ -76120,6 +73151,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 4335 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 4371 components: - type: Transform @@ -76128,6 +73166,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 4461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4500 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 4561 components: - type: Transform @@ -76144,6 +73205,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 4679 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 4721 components: - type: Transform @@ -76723,6 +73791,14 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-31.5 parent: 2 + - uid: 12382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 12492 components: - type: Transform @@ -77318,22 +74394,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 13668 components: - type: Transform @@ -77362,21 +74422,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13683 - components: - - type: Transform - pos: -27.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 13728 components: - type: Transform @@ -77709,21 +74754,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14484 - components: - - type: Transform - pos: 34.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 16634 components: - type: Transform @@ -77746,310 +74776,8 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,13.5 parent: 16200 - - uid: 17851 - components: - - type: Transform - pos: 30.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18324 - components: - - type: Transform - pos: 23.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18408 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18411 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18415 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18417 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18443 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-18.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,2.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18484 - components: - - type: Transform - pos: 41.5,2.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,2.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18501 - components: - - type: Transform - pos: 38.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-12.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19305 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19451 - components: - - type: Transform - pos: 16.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19514 - components: - - type: Transform - rot: 5.290207494290655E-08 rad - pos: 41.5,0.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19594 - components: - - type: Transform - pos: 29.5,-0.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,6.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,6.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,11.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19637 - components: - - type: Transform - pos: 31.5,-12.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19640 - components: - - type: Transform - pos: 26.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-19.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - proto: GasPort entities: - - uid: 225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 2 - - uid: 1040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-8.5 - parent: 2 - uid: 1296 components: - type: Transform @@ -78087,12 +74815,12 @@ entities: rot: 3.141592653589793 rad pos: 10.5,11.5 parent: 16675 - - uid: 19788 + - uid: 18743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,0.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: 18.5,3.5 + parent: 17641 - proto: GasPressurePump entities: - uid: 181 @@ -78208,35 +74936,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,9.5 parent: 16200 - - uid: 18356 - components: - - type: Transform - pos: 41.5,-1.5 - parent: 17590 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,6.5 - parent: 17590 - - uid: 19525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,4.5 - parent: 17590 - proto: GasThermoMachineFreezer entities: - uid: 1270 @@ -78257,6 +74956,16 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,22.5 parent: 2 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 17060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-8.5 + parent: 2 + - type: GasThermoMachine + targetTemperature: 73.15 - proto: GasThermoMachineHeater entities: - uid: 1299 @@ -78296,11 +75005,23 @@ entities: - type: DeviceNetwork deviceLists: - 12265 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 3188 components: - type: Transform pos: 40.5,-11.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 4867 components: - type: Transform @@ -78334,6 +75055,30 @@ entities: - 14759 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 7793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 11933 components: - type: Transform @@ -78582,12 +75327,24 @@ entities: - 14717 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 12994 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14587 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 13063 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,37.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 13081 components: - type: Transform @@ -78870,17 +75627,6 @@ entities: - 14706 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14707 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 13241 components: - type: Transform @@ -79000,17 +75746,6 @@ entities: - 14723 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14696 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 13365 components: - type: Transform @@ -79154,17 +75889,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14664 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 13651 components: - type: Transform @@ -79185,17 +75909,6 @@ entities: - 14654 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14670 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 13704 components: - type: Transform @@ -79217,28 +75930,6 @@ entities: - 14669 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14673 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14661 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 13760 components: - type: Transform @@ -79594,14 +76285,20 @@ entities: - 14587 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14524 + - uid: 15041 components: - type: Transform - pos: 32.5,6.5 + rot: 3.141592653589793 rad + pos: -26.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14587 - type: AtmosPipeColor color: '#0000FFFF' - uid: 15585 @@ -79610,12 +76307,24 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,7.5 parent: 2 - - uid: 16030 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,12.5 + rot: -1.5707963267948966 rad + pos: 56.5,-8.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 16648 components: - type: Transform @@ -79645,212 +76354,29 @@ entities: - type: Transform pos: 10.5,18.5 parent: 16675 - - uid: 18390 - components: - - type: Transform - pos: 29.5,3.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18467 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,1.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-18.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-18.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-5.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-11.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18497 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-6.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19477 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-9.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19492 + - uid: 17108 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-6.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-6.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-6.5 - parent: 17590 + pos: -9.5,37.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19592 + - uid: 18744 components: - type: Transform - pos: 22.5,3.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19623 + pos: 15.5,0.5 + parent: 17641 +- proto: GasVentScrubber + entities: + - uid: 271 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,6.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-18.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19661 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-18.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-6.5 - parent: 17590 + pos: -32.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentScrubber - entities: + color: '#FF0000FF' - uid: 726 components: - type: Transform @@ -79867,6 +76393,16 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-22.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 2345 components: - type: Transform @@ -79900,6 +76436,17 @@ entities: - 14754 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 4633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14587 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 5561 components: - type: Transform @@ -79909,6 +76456,8 @@ entities: - type: DeviceNetwork deviceLists: - 14876 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 7777 components: - type: Transform @@ -80162,6 +76711,8 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,36.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 13085 components: - type: Transform @@ -80452,16 +77003,6 @@ entities: - 14706 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13239 - components: - - type: Transform - pos: -23.5,26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14707 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 13240 components: - type: Transform @@ -80785,39 +77326,6 @@ entities: - 14028 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14670 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14673 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14669 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 13737 components: - type: Transform @@ -81201,235 +77709,58 @@ entities: - 14587 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14523 + - uid: 14670 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,6.5 + pos: -21.5,12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14587 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16029 + - uid: 14739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,14.5 + rot: 3.141592653589793 rad + pos: -24.5,9.5 parent: 2 - - uid: 16652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,17.5 - parent: 16200 - - uid: 16653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,13.5 - parent: 16200 - - uid: 19302 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 17590 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19473 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19474 + - uid: 15328 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19493 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-7.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19495 - components: - - type: Transform - pos: 16.5,-7.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19497 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19499 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19500 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 17590 + pos: -25.5,12.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19505 + - uid: 16060 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-8.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,0.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-1.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-1.5 - parent: 17590 + pos: 56.5,-7.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19626 + - uid: 16168 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,6.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,11.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,17.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19636 - components: - - type: Transform - pos: 28.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-18.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-18.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-14.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-19.5 - parent: 17590 + pos: -20.5,6.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19747 + - uid: 16652 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-19.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19748 + pos: 22.5,17.5 + parent: 16200 + - uid: 16653 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-13.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19750 - components: - - type: Transform - pos: 38.5,-7.5 - parent: 17590 - - type: AtmosPipeColor - color: '#FF0000FF' + pos: 25.5,13.5 + parent: 16200 - proto: GasVolumePump entities: - uid: 1308 @@ -81468,13 +77799,20 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-29.5 parent: 2 -- proto: GeneratorBasic +- proto: Gauze entities: - - uid: 18664 + - uid: 4427 components: - type: Transform - pos: 41.5,5.5 - parent: 17590 + parent: 3997 + - type: Physics + canCollide: False + - uid: 4473 + components: + - type: Transform + parent: 3997 + - type: Physics + canCollide: False - proto: GeneratorRTG entities: - uid: 12169 @@ -81502,16 +77840,6 @@ entities: - type: Transform pos: 6.5,15.5 parent: 16675 - - uid: 18634 - components: - - type: Transform - pos: 39.5,5.5 - parent: 17590 - - uid: 19765 - components: - - type: Transform - pos: 41.5,6.5 - parent: 17590 - proto: GeneratorRTGDamaged entities: - uid: 17510 @@ -81519,18 +77847,6 @@ entities: - type: Transform pos: -23.5,-45.5 parent: 2 - - uid: 18611 - components: - - type: Transform - pos: 40.5,6.5 - parent: 17590 -- proto: GeneratorWallmountAPU - entities: - - uid: 19881 - components: - - type: Transform - pos: 42.5,15.5 - parent: 19854 - proto: GeneratorWallmountBasic entities: - uid: 16805 @@ -81543,23 +77859,8 @@ entities: - type: Transform pos: 8.5,16.5 parent: 16675 - - uid: 20121 - components: - - type: Transform - pos: 24.5,15.5 - parent: 19951 - - uid: 20124 - components: - - type: Transform - pos: 24.5,10.5 - parent: 20000 - proto: GenericTank entities: - - uid: 735 - components: - - type: Transform - pos: -74.5,32.5 - parent: 2 - uid: 5789 components: - type: Transform @@ -81570,193 +77871,70 @@ entities: - type: Transform pos: -37.5,37.5 parent: 2 - - uid: 7752 - components: - - type: Transform - pos: -74.5,33.5 - parent: 2 - - uid: 7760 - components: - - type: Transform - pos: -45.5,41.5 - parent: 2 - uid: 12364 components: - type: Transform pos: 42.5,-28.5 parent: 2 - - uid: 17052 - components: - - type: Transform - pos: 10.5,46.5 - parent: 2 - - uid: 17072 - components: - - type: Transform - pos: 12.5,34.5 - parent: 2 - - uid: 17104 - components: - - type: Transform - pos: -20.5,47.5 - parent: 2 - - uid: 17105 - components: - - type: Transform - pos: -21.5,47.5 - parent: 2 - proto: Girder entities: - - uid: 589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,36.5 - parent: 2 - - uid: 1059 - components: - - type: Transform - pos: -68.5,31.5 - parent: 2 - - uid: 1533 - components: - - type: Transform - pos: -72.5,31.5 - parent: 2 - - uid: 4743 - components: - - type: Transform - pos: 22.5,12.5 - parent: 2 - - uid: 4752 - components: - - type: Transform - pos: 24.5,7.5 - parent: 2 - - uid: 4955 - components: - - type: Transform - pos: -13.5,30.5 - parent: 2 - - uid: 5198 - components: - - type: Transform - pos: -4.5,17.5 - parent: 2 - - uid: 5224 - components: - - type: Transform - pos: -4.5,22.5 - parent: 2 - - uid: 5445 - components: - - type: Transform - pos: -17.5,6.5 - parent: 2 - - uid: 5910 - components: - - type: Transform - pos: -44.5,31.5 - parent: 2 - - uid: 5911 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - - uid: 5914 - components: - - type: Transform - pos: -41.5,42.5 - parent: 2 - - uid: 5915 - components: - - type: Transform - pos: -39.5,38.5 - parent: 2 - - uid: 5918 - components: - - type: Transform - pos: -46.5,37.5 - parent: 2 - - uid: 6463 + - uid: 17431 components: - type: Transform - pos: 24.5,37.5 - parent: 2 - - uid: 6495 + pos: 0.5,0.5 + parent: 17413 + - uid: 17432 components: - type: Transform - pos: 31.5,37.5 - parent: 2 - - uid: 6496 + pos: -0.5,0.5 + parent: 17413 + - uid: 18745 components: - type: Transform - pos: 30.5,37.5 - parent: 2 - - uid: 6500 + pos: 30.5,10.5 + parent: 17641 + - uid: 18746 components: - type: Transform - pos: 29.5,30.5 - parent: 2 - - uid: 6855 + pos: 35.5,6.5 + parent: 17641 + - uid: 18747 components: - type: Transform - pos: -30.5,37.5 - parent: 2 - - uid: 7006 + pos: 36.5,4.5 + parent: 17641 + - uid: 18748 components: - type: Transform - pos: -22.5,46.5 - parent: 2 - - uid: 7007 + pos: -6.5,10.5 + parent: 17641 + - uid: 18749 components: - type: Transform - pos: -23.5,46.5 - parent: 2 - - uid: 7014 + pos: 32.5,1.5 + parent: 17641 + - uid: 18750 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,34.5 - parent: 2 - - uid: 7677 - components: - - type: Transform - pos: -4.5,39.5 - parent: 2 - - uid: 7699 - components: - - type: Transform - pos: -4.5,40.5 - parent: 2 - - uid: 8087 - components: - - type: Transform - pos: -26.5,30.5 - parent: 2 - - uid: 12970 - components: - - type: Transform - pos: 0.5,43.5 - parent: 2 - - uid: 12975 + pos: 38.5,9.5 + parent: 17641 + - uid: 18751 components: - type: Transform - pos: 22.5,-19.5 - parent: 2 - - uid: 13011 + rot: -1.5707963267948966 rad + pos: 35.5,2.5 + parent: 17641 + - uid: 20157 components: - type: Transform - pos: -30.5,24.5 - parent: 2 -- proto: GlassBoxBroken - entities: - - uid: 18499 + pos: 1.5,-0.5 + parent: 20154 + - uid: 20158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-12.5 - parent: 17590 + pos: 2.5,-0.5 + parent: 20154 - proto: GlassBoxLaserFilled entities: - uid: 5507 @@ -81787,11 +77965,6 @@ entities: - type: Transform pos: -35.5,-31.5 parent: 2 - - uid: 18500 - components: - - type: Transform - pos: 45.5,-0.5 - parent: 17590 - proto: GravityGeneratorMini entities: - uid: 16404 @@ -81821,17 +77994,17 @@ entities: - type: Transform pos: 31.528965,-30.656979 parent: 2 -- proto: GrenadeFoamDart +- proto: GrenadeStinger entities: - - uid: 2134 + - uid: 6575 components: - type: Transform - pos: -10.700621,-22.819613 + pos: -10.396269,-22.727524 parent: 2 - - uid: 2135 + - uid: 6606 components: - type: Transform - pos: -10.450621,-22.788363 + pos: -10.599394,-22.555649 parent: 2 - proto: Grille entities: @@ -82158,12 +78331,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-11.5 parent: 2 - - uid: 520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-11.5 - parent: 2 - uid: 521 components: - type: Transform @@ -82406,11 +78573,6 @@ entities: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 770 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 2 - uid: 771 components: - type: Transform @@ -82994,6 +79156,12 @@ entities: - type: Transform pos: -28.5,-9.5 parent: 2 + - uid: 1561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 - uid: 1562 components: - type: Transform @@ -83078,6 +79246,12 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-32.5 parent: 2 + - uid: 1715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 2 - uid: 1767 components: - type: Transform @@ -83282,12 +79456,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-3.5 parent: 2 - - uid: 2413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 2 - uid: 2414 components: - type: Transform @@ -83396,11 +79564,6 @@ entities: - type: Transform pos: -30.5,69.5 parent: 2 - - uid: 2791 - components: - - type: Transform - pos: -20.5,41.5 - parent: 2 - uid: 2845 components: - type: Transform @@ -83507,11 +79670,6 @@ entities: - type: Transform pos: -40.5,-24.5 parent: 2 - - uid: 2880 - components: - - type: Transform - pos: -21.5,41.5 - parent: 2 - uid: 2893 components: - type: Transform @@ -83659,11 +79817,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-28.5 parent: 2 - - uid: 3153 - components: - - type: Transform - pos: -12.5,28.5 - parent: 2 - uid: 3276 components: - type: Transform @@ -83709,11 +79862,6 @@ entities: - type: Transform pos: 54.5,-10.5 parent: 2 - - uid: 3603 - components: - - type: Transform - pos: -11.5,28.5 - parent: 2 - uid: 3692 components: - type: Transform @@ -83771,6 +79919,11 @@ entities: - type: Transform pos: 9.5,22.5 parent: 2 + - uid: 4132 + components: + - type: Transform + pos: -27.5,19.5 + parent: 2 - uid: 4170 components: - type: Transform @@ -83816,16 +79969,6 @@ entities: - type: Transform pos: -22.5,31.5 parent: 2 - - uid: 4317 - components: - - type: Transform - pos: -30.5,8.5 - parent: 2 - - uid: 4318 - components: - - type: Transform - pos: -31.5,8.5 - parent: 2 - uid: 4319 components: - type: Transform @@ -83851,6 +79994,12 @@ entities: - type: Transform pos: -4.5,15.5 parent: 2 + - uid: 4416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,30.5 + parent: 2 - uid: 4433 components: - type: Transform @@ -83866,6 +80015,12 @@ entities: - type: Transform pos: 47.5,-4.5 parent: 2 + - uid: 4706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,32.5 + parent: 2 - uid: 4792 components: - type: Transform @@ -83876,6 +80031,16 @@ entities: - type: Transform pos: -31.5,19.5 parent: 2 + - uid: 4888 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: -44.5,49.5 + parent: 2 - uid: 4911 components: - type: Transform @@ -83901,11 +80066,6 @@ entities: - type: Transform pos: -24.5,31.5 parent: 2 - - uid: 5178 - components: - - type: Transform - pos: 13.5,32.5 - parent: 2 - uid: 5180 components: - type: Transform @@ -83951,6 +80111,11 @@ entities: - type: Transform pos: -23.5,23.5 parent: 2 + - uid: 5221 + components: + - type: Transform + pos: -47.5,47.5 + parent: 2 - uid: 5280 components: - type: Transform @@ -84250,6 +80415,18 @@ entities: - type: Transform pos: -56.5,8.5 parent: 2 + - uid: 5761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,31.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,34.5 + parent: 2 - uid: 5814 components: - type: Transform @@ -84549,6 +80726,26 @@ entities: - type: Transform pos: -63.5,27.5 parent: 2 + - uid: 6205 + components: + - type: Transform + pos: -25.5,19.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + pos: -26.5,19.5 + parent: 2 + - uid: 6209 + components: + - type: Transform + pos: -23.5,19.5 + parent: 2 - uid: 6247 components: - type: Transform @@ -84744,11 +80941,6 @@ entities: - type: Transform pos: -43.5,62.5 parent: 2 - - uid: 6336 - components: - - type: Transform - pos: -19.5,41.5 - parent: 2 - uid: 6472 components: - type: Transform @@ -84794,6 +80986,36 @@ entities: - type: Transform pos: -57.5,35.5 parent: 2 + - uid: 6625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,37.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,37.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,35.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,30.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,36.5 + parent: 2 - uid: 6856 components: - type: Transform @@ -84810,15 +81032,15 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-27.5 parent: 2 - - uid: 7019 + - uid: 7117 components: - type: Transform - pos: -29.5,5.5 + pos: 54.5,-19.5 parent: 2 - - uid: 7020 + - uid: 7146 components: - type: Transform - pos: -29.5,6.5 + pos: 56.5,-19.5 parent: 2 - uid: 7267 components: @@ -85005,21 +81227,6 @@ entities: - type: Transform pos: -31.5,-3.5 parent: 2 - - uid: 7306 - components: - - type: Transform - pos: -31.5,5.5 - parent: 2 - - uid: 7307 - components: - - type: Transform - pos: -31.5,7.5 - parent: 2 - - uid: 7308 - components: - - type: Transform - pos: -31.5,6.5 - parent: 2 - uid: 7338 components: - type: Transform @@ -85227,20 +81434,25 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-27.5 parent: 2 - - uid: 8108 + - uid: 8119 components: - type: Transform - pos: 54.5,-7.5 + pos: -45.5,47.5 parent: 2 - - uid: 8109 + - uid: 8124 components: - type: Transform - pos: 54.5,-8.5 + pos: 16.5,15.5 parent: 2 - - uid: 8124 + - uid: 8184 components: - type: Transform - pos: 16.5,15.5 + pos: -46.5,47.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + pos: -44.5,47.5 parent: 2 - uid: 8406 components: @@ -85267,6 +81479,11 @@ entities: - type: Transform pos: -71.5,17.5 parent: 2 + - uid: 8646 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 - uid: 9050 components: - type: Transform @@ -85282,6 +81499,46 @@ entities: - type: Transform pos: -58.5,11.5 parent: 2 + - uid: 9464 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 9733 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 11630 + components: + - type: Transform + pos: -47.5,50.5 + parent: 2 + - uid: 11636 + components: + - type: Transform + pos: -45.5,50.5 + parent: 2 + - uid: 11644 + components: + - type: Transform + pos: -44.5,50.5 + parent: 2 + - uid: 11645 + components: + - type: Transform + pos: -46.5,50.5 + parent: 2 + - uid: 12968 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 - uid: 13390 components: - type: Transform @@ -85297,6 +81554,142 @@ entities: - type: Transform pos: 22.5,45.5 parent: 2 + - uid: 13655 + components: + - type: Transform + pos: -22.5,22.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 15504 + components: + - type: Transform + pos: 57.5,-19.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + pos: 59.5,-19.5 + parent: 2 + - uid: 15507 + components: + - type: Transform + pos: 55.5,-19.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + pos: 60.5,-19.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + pos: 60.5,-18.5 + parent: 2 + - uid: 15510 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - uid: 15511 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + pos: 60.5,-14.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + pos: 60.5,-13.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: 60.5,-12.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 + - uid: 15519 + components: + - type: Transform + pos: 60.5,-10.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + pos: 60.5,-15.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + pos: 60.5,-9.5 + parent: 2 + - uid: 15523 + components: + - type: Transform + pos: 60.5,-6.5 + parent: 2 + - uid: 15524 + components: + - type: Transform + pos: 60.5,-5.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-8.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 2 + - uid: 15529 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 2 + - uid: 15530 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 + - uid: 15531 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: 54.5,-3.5 + parent: 2 - uid: 15605 components: - type: Transform @@ -85374,463 +81767,607 @@ entities: rot: 3.141592653589793 rad pos: 13.5,21.5 parent: 16675 - - uid: 17011 + - uid: 17580 components: - type: Transform - pos: 32.5,-42.5 + pos: -19.5,-34.5 parent: 2 - - uid: 17012 + - uid: 17581 components: - type: Transform - pos: -21.5,2.5 + pos: -19.5,-35.5 parent: 2 - - uid: 17013 + - uid: 17582 components: - type: Transform - pos: -22.5,2.5 + pos: -19.5,-37.5 parent: 2 - - uid: 17017 + - uid: 17583 components: - type: Transform - pos: 25.5,25.5 + pos: -19.5,-36.5 parent: 2 - - uid: 17018 + - uid: 18752 components: - type: Transform - pos: 25.5,26.5 - parent: 2 - - uid: 17019 + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 17641 + - uid: 18753 components: - type: Transform - pos: 24.5,13.5 - parent: 2 - - uid: 17020 + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 17641 + - uid: 18754 components: - type: Transform - pos: -47.5,35.5 - parent: 2 - - uid: 17580 + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 17641 + - uid: 18755 components: - type: Transform - pos: -19.5,-34.5 - parent: 2 - - uid: 17581 + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 17641 + - uid: 18756 components: - type: Transform - pos: -19.5,-35.5 - parent: 2 - - uid: 17582 + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 17641 + - uid: 18757 components: - type: Transform - pos: -19.5,-37.5 - parent: 2 - - uid: 17583 + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 17641 + - uid: 18758 components: - type: Transform - pos: -19.5,-36.5 - parent: 2 - - uid: 18267 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 17641 + - uid: 18759 components: - type: Transform - pos: 30.5,9.5 - parent: 17590 - - uid: 18269 + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 17641 + - uid: 18760 components: - type: Transform - pos: 36.5,8.5 - parent: 17590 - - uid: 18270 + rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 17641 + - uid: 18761 components: - type: Transform - pos: 30.5,8.5 - parent: 17590 - - uid: 18502 + rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 17641 + - uid: 18762 components: - type: Transform - pos: 22.5,-11.5 - parent: 17590 - - uid: 18503 + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 17641 + - uid: 18763 components: - type: Transform - pos: -3.5,-8.5 - parent: 17590 - - uid: 18504 + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 17641 + - uid: 18764 components: - type: Transform - pos: 46.5,1.5 - parent: 17590 - - uid: 18505 + rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 17641 + - uid: 18765 components: - type: Transform - pos: -2.5,-9.5 - parent: 17590 - - uid: 18506 + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 17641 + - uid: 18766 components: - type: Transform - pos: 39.5,3.5 - parent: 17590 - - uid: 18507 + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 17641 + - uid: 18767 components: - type: Transform - pos: 41.5,3.5 - parent: 17590 - - uid: 18508 + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 17641 + - uid: 18768 components: - type: Transform - pos: 40.5,3.5 - parent: 17590 - - uid: 18509 + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 17641 + - uid: 18769 components: - type: Transform - pos: 19.5,1.5 - parent: 17590 - - uid: 18511 + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 17641 + - uid: 18770 components: - type: Transform - pos: 36.5,14.5 - parent: 17590 - - uid: 18512 + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 17641 + - uid: 18771 components: - type: Transform - pos: 35.5,20.5 - parent: 17590 - - uid: 18513 + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 17641 + - uid: 18772 components: - type: Transform - pos: 35.5,21.5 - parent: 17590 - - uid: 18514 + pos: 4.5,1.5 + parent: 17641 + - uid: 18773 components: - type: Transform - pos: 31.5,21.5 - parent: 17590 - - uid: 18515 + pos: 10.5,1.5 + parent: 17641 + - uid: 18774 components: - type: Transform - pos: 30.5,13.5 - parent: 17590 - - uid: 18516 + pos: 8.5,1.5 + parent: 17641 + - uid: 18775 components: - type: Transform - pos: 24.5,-2.5 - parent: 17590 - - uid: 18517 + pos: 10.5,3.5 + parent: 17641 + - uid: 18776 components: - type: Transform - pos: 30.5,15.5 - parent: 17590 - - uid: 18518 + pos: 6.5,1.5 + parent: 17641 + - uid: 18777 components: - type: Transform - pos: 26.5,-2.5 - parent: 17590 - - uid: 18519 + pos: 5.5,1.5 + parent: 17641 + - uid: 18778 components: - type: Transform - pos: 25.5,-2.5 - parent: 17590 - - uid: 18520 + pos: 7.5,1.5 + parent: 17641 + - uid: 18779 components: - type: Transform - pos: 19.5,0.5 - parent: 17590 - - uid: 18521 + pos: 8.5,3.5 + parent: 17641 + - uid: 18780 components: - type: Transform - pos: 44.5,-5.5 - parent: 17590 - - uid: 18522 + pos: 7.5,3.5 + parent: 17641 + - uid: 18781 components: - type: Transform - pos: 9.5,-9.5 - parent: 17590 - - uid: 18523 + pos: 4.5,3.5 + parent: 17641 + - uid: 18782 + components: + - type: Transform + pos: 9.5,3.5 + parent: 17641 + - uid: 18783 + components: + - type: Transform + pos: 6.5,3.5 + parent: 17641 + - uid: 18784 + components: + - type: Transform + pos: 4.5,5.5 + parent: 17641 + - uid: 18785 + components: + - type: Transform + pos: 4.5,6.5 + parent: 17641 + - uid: 18786 + components: + - type: Transform + pos: 4.5,8.5 + parent: 17641 + - uid: 18787 + components: + - type: Transform + pos: 6.5,5.5 + parent: 17641 + - uid: 18788 + components: + - type: Transform + pos: 6.5,6.5 + parent: 17641 + - uid: 18789 + components: + - type: Transform + pos: 5.5,9.5 + parent: 17641 + - uid: 18790 + components: + - type: Transform + pos: 7.5,9.5 + parent: 17641 + - uid: 18791 + components: + - type: Transform + pos: 9.5,9.5 + parent: 17641 + - uid: 18792 + components: + - type: Transform + pos: 10.5,9.5 + parent: 17641 + - uid: 18793 + components: + - type: Transform + pos: 7.5,7.5 + parent: 17641 + - uid: 18794 + components: + - type: Transform + pos: 8.5,7.5 + parent: 17641 + - uid: 18795 + components: + - type: Transform + pos: 10.5,7.5 + parent: 17641 + - uid: 18797 + components: + - type: Transform + pos: 6.5,7.5 + parent: 17641 + - uid: 18798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 17641 + - uid: 18799 + components: + - type: Transform + pos: 12.5,6.5 + parent: 17641 + - uid: 18800 + components: + - type: Transform + pos: 14.5,6.5 + parent: 17641 + - uid: 18801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-20.5 - parent: 17590 - - uid: 18524 + pos: 15.5,6.5 + parent: 17641 + - uid: 18802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 17590 - - uid: 18525 + pos: 18.5,6.5 + parent: 17641 + - uid: 18803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 17590 - - uid: 18526 + pos: 13.5,6.5 + parent: 17641 + - uid: 18804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-20.5 - parent: 17590 - - uid: 18527 + pos: 19.5,6.5 + parent: 17641 + - uid: 18805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 17590 - - uid: 18528 + pos: 20.5,6.5 + parent: 17641 + - uid: 18806 components: - type: Transform - pos: 44.5,-8.5 - parent: 17590 - - uid: 18529 + rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 17641 + - uid: 18807 components: - type: Transform - pos: 21.5,-11.5 - parent: 17590 - - uid: 18530 + rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 17641 + - uid: 18808 components: - type: Transform - pos: 20.5,-11.5 - parent: 17590 - - uid: 18532 + rot: 1.5707963267948966 rad + pos: 28.5,-3.5 + parent: 17641 + - uid: 18809 components: - type: Transform - pos: 10.5,-9.5 - parent: 17590 - - uid: 18533 + pos: 22.5,6.5 + parent: 17641 + - uid: 18810 components: - type: Transform - pos: 8.5,-9.5 - parent: 17590 - - uid: 18534 + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 17641 + - uid: 18811 components: - type: Transform - pos: 36.5,15.5 - parent: 17590 - - uid: 18535 + rot: 1.5707963267948966 rad + pos: 29.5,-3.5 + parent: 17641 + - uid: 18812 components: - type: Transform - pos: 29.5,-20.5 - parent: 17590 - - uid: 18537 + rot: 1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 17641 + - uid: 18813 components: - type: Transform - pos: 30.5,14.5 - parent: 17590 - - uid: 18538 + rot: 1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 17641 + - uid: 18814 components: - type: Transform - pos: 36.5,13.5 - parent: 17590 - - uid: 18539 + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 17641 + - uid: 18815 components: - type: Transform - pos: 9.5,-4.5 - parent: 17590 - - uid: 18540 + pos: 24.5,3.5 + parent: 17641 + - uid: 18816 components: - type: Transform - pos: 24.5,-19.5 - parent: 17590 - - uid: 18541 + pos: 24.5,2.5 + parent: 17641 + - uid: 18817 components: - type: Transform - pos: 24.5,-18.5 - parent: 17590 - - uid: 18542 + pos: 24.5,0.5 + parent: 17641 + - uid: 18818 components: - type: Transform - pos: -2.5,-8.5 - parent: 17590 - - uid: 18543 + pos: 26.5,4.5 + parent: 17641 + - uid: 18819 components: - type: Transform - pos: 1.5,-3.5 - parent: 17590 - - uid: 18544 + pos: 26.5,2.5 + parent: 17641 + - uid: 18820 components: - type: Transform - pos: -2.5,-4.5 - parent: 17590 - - uid: 18545 + pos: 26.5,5.5 + parent: 17641 + - uid: 18821 components: - type: Transform - pos: -3.5,-7.5 - parent: 17590 - - uid: 18546 + pos: 26.5,1.5 + parent: 17641 + - uid: 18822 components: - type: Transform - pos: -3.5,-6.5 - parent: 17590 - - uid: 18547 + pos: 26.5,0.5 + parent: 17641 + - uid: 18823 components: - type: Transform - pos: 44.5,-7.5 - parent: 17590 - - uid: 18548 + pos: 11.5,-5.5 + parent: 17641 + - uid: 18824 components: - type: Transform - pos: 46.5,6.5 - parent: 17590 - - uid: 18549 + pos: 11.5,-3.5 + parent: 17641 + - uid: 18825 components: - type: Transform - pos: 46.5,4.5 - parent: 17590 - - uid: 18550 + rot: 3.141592653589793 rad + pos: 19.5,-5.5 + parent: 17641 + - uid: 18826 components: - type: Transform - pos: 17.5,-0.5 - parent: 17590 - - uid: 18551 + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 17641 + - uid: 18827 components: - type: Transform - pos: 29.5,-2.5 - parent: 17590 - - uid: 18552 + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 17641 + - uid: 18828 components: - type: Transform - pos: 26.5,-11.5 - parent: 17590 - - uid: 18553 + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 17641 + - uid: 18829 components: - type: Transform - pos: 34.5,-11.5 - parent: 17590 - - uid: 18554 + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 17641 + - uid: 18830 components: - type: Transform - pos: 33.5,-11.5 - parent: 17590 - - uid: 18556 + rot: 1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 17641 + - uid: 18831 components: - type: Transform - pos: 18.5,-19.5 - parent: 17590 - - uid: 18557 + rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 17641 + - uid: 18832 components: - type: Transform - pos: 19.5,2.5 - parent: 17590 - - uid: 18558 + rot: 1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 17641 + - uid: 18833 components: - type: Transform - pos: 18.5,-18.5 - parent: 17590 - - uid: 18559 + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 17641 + - uid: 18834 components: - type: Transform - pos: 10.5,-4.5 - parent: 17590 - - uid: 18560 + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 17641 + - uid: 18835 components: - type: Transform - pos: 31.5,20.5 - parent: 17590 - - uid: 18561 + rot: 1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 17641 + - uid: 18836 components: - type: Transform - pos: 44.5,-6.5 - parent: 17590 - - uid: 18562 + rot: 1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 17641 + - uid: 18837 components: - type: Transform - pos: 27.5,-20.5 - parent: 17590 - - uid: 18563 + rot: 1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 17641 + - uid: 18838 components: - type: Transform - pos: 30.5,-20.5 - parent: 17590 - - uid: 18564 + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 17641 + - uid: 18839 components: - type: Transform - pos: 31.5,-20.5 - parent: 17590 - - uid: 18565 + rot: 1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 17641 + - uid: 18840 components: - type: Transform - pos: 32.5,-20.5 - parent: 17590 - - uid: 18566 + rot: 1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 17641 + - uid: 18841 components: - type: Transform - pos: 28.5,-20.5 - parent: 17590 - - uid: 18567 + rot: 1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 17641 + - uid: 18842 components: - type: Transform - pos: 30.5,-2.5 - parent: 17590 - - uid: 18569 + rot: 1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 17641 + - uid: 18843 components: - type: Transform - pos: 28.5,-2.5 - parent: 17590 - - uid: 18570 + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 17641 + - uid: 18844 components: - type: Transform - pos: 18.5,-0.5 - parent: 17590 - - uid: 18571 + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 17641 + - uid: 18845 components: - type: Transform - pos: 16.5,-0.5 - parent: 17590 - - uid: 18572 + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 17641 + - uid: 18846 components: - type: Transform - pos: 8.5,-4.5 - parent: 17590 - - uid: 18573 + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 17641 + - uid: 18847 components: - type: Transform - pos: 32.5,-11.5 - parent: 17590 - - uid: 18574 + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 17641 + - uid: 18848 components: - type: Transform - pos: -2.5,-5.5 - parent: 17590 - - uid: 18575 + rot: 1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 17641 + - uid: 18849 components: - type: Transform - pos: -3.5,-5.5 - parent: 17590 - - uid: 18576 + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 17641 + - uid: 18850 components: - type: Transform - pos: 1.5,-10.5 - parent: 17590 - - uid: 18577 + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 17641 + - uid: 18851 components: - type: Transform - pos: 44.5,1.5 - parent: 17590 - - uid: 18770 + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 17641 + - uid: 18852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-11.5 - parent: 17590 - - uid: 18791 + pos: 14.5,9.5 + parent: 17641 + - uid: 18853 components: - type: Transform - pos: 36.5,9.5 - parent: 17590 - - uid: 19527 + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 17641 + - uid: 18854 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-11.5 - parent: 17590 - - uid: 19860 + pos: 21.5,9.5 + parent: 17641 + - uid: 18855 components: - type: Transform - pos: 45.5,16.5 - parent: 19854 - - uid: 19861 + rot: 1.5707963267948966 rad + pos: 22.5,9.5 + parent: 17641 + - uid: 18856 components: - type: Transform - pos: 45.5,17.5 - parent: 19854 + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 17641 - uid: 19933 components: - type: Transform @@ -85843,33 +82380,36 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,19.5 parent: 16675 - - uid: 19957 +- proto: GrilleBroken + entities: + - uid: 551 components: - type: Transform - pos: 21.5,16.5 - parent: 19951 - - uid: 20001 + pos: -49.5,2.5 + parent: 2 + - uid: 4899 components: - type: Transform - pos: 21.5,12.5 - parent: 20000 - - uid: 20006 + rot: -1.5707963267948966 rad + pos: -43.5,50.5 + parent: 2 + - uid: 4900 components: - type: Transform - pos: 21.5,11.5 - parent: 20000 -- proto: GrilleBroken - entities: - - uid: 551 + rot: 3.141592653589793 rad + pos: -46.5,49.5 + parent: 2 + - uid: 4901 components: - type: Transform - pos: -49.5,2.5 + rot: 3.141592653589793 rad + pos: -44.5,48.5 parent: 2 - - uid: 835 + - uid: 4902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-13.5 + rot: 1.5707963267948966 rad + pos: -48.5,50.5 parent: 2 - uid: 7293 components: @@ -86023,40 +82563,6 @@ entities: - type: Transform pos: -31.5,-1.5 parent: 2 - - uid: 7334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,4.5 - parent: 2 - - uid: 7946 - components: - - type: Transform - pos: 9.5,-13.5 - parent: 2 - - uid: 10953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-13.5 - parent: 2 - - uid: 10971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 2 - - uid: 11019 - components: - - type: Transform - pos: -4.5,0.5 - parent: 2 - - uid: 11021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,0.5 - parent: 2 - uid: 16813 components: - type: Transform @@ -86079,70 +82585,47 @@ entities: rot: 3.141592653589793 rad pos: 13.5,20.5 parent: 16675 - - uid: 19953 - components: - - type: Transform - pos: 21.5,17.5 - parent: 19951 -- proto: GrilleDiagonal +- proto: GrilleSpawner entities: - - uid: 18578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-20.5 - parent: 17590 - - uid: 18579 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 17590 - - uid: 18580 + - uid: 198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 17590 - - uid: 19859 + pos: 0.5,0.5 + parent: 2 + - uid: 199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,15.5 - parent: 19854 - - uid: 19862 + pos: -0.5,0.5 + parent: 2 + - uid: 230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,18.5 - parent: 19854 - - uid: 19958 + pos: -1.5,0.5 + parent: 2 + - uid: 239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 19951 - - uid: 19959 + pos: 7.5,3.5 + parent: 2 + - uid: 311 components: - type: Transform - pos: 21.5,18.5 - parent: 19951 - - uid: 20007 + pos: -0.5,1.5 + parent: 2 + - uid: 314 components: - type: Transform - pos: 21.5,13.5 - parent: 20000 - - uid: 20008 + pos: -71.5,8.5 + parent: 2 + - uid: 318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,10.5 - parent: 20000 -- proto: GrilleSpawner - entities: - - uid: 314 + pos: 14.5,0.5 + parent: 2 + - uid: 319 components: - type: Transform - pos: -71.5,8.5 + pos: 11.5,3.5 parent: 2 - uid: 750 components: @@ -86154,6 +82637,11 @@ entities: - type: Transform pos: -44.5,-11.5 parent: 2 + - uid: 863 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 - uid: 938 components: - type: Transform @@ -86179,11 +82667,36 @@ entities: - type: Transform pos: -34.5,53.5 parent: 2 + - uid: 1724 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 - uid: 2838 components: - type: Transform pos: -15.5,-49.5 parent: 2 + - uid: 3241 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 - uid: 3783 components: - type: Transform @@ -86574,6 +83087,11 @@ entities: - type: Transform pos: 49.5,-25.5 parent: 2 + - uid: 7699 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 - uid: 8201 components: - type: Transform @@ -86719,36 +83237,6 @@ entities: - type: Transform pos: -50.5,49.5 parent: 2 - - uid: 8230 - components: - - type: Transform - pos: -49.5,50.5 - parent: 2 - - uid: 8231 - components: - - type: Transform - pos: -48.5,50.5 - parent: 2 - - uid: 8232 - components: - - type: Transform - pos: -47.5,50.5 - parent: 2 - - uid: 8233 - components: - - type: Transform - pos: -45.5,50.5 - parent: 2 - - uid: 8234 - components: - - type: Transform - pos: -43.5,50.5 - parent: 2 - - uid: 8235 - components: - - type: Transform - pos: -44.5,50.5 - parent: 2 - uid: 8236 components: - type: Transform @@ -86849,11 +83337,6 @@ entities: - type: Transform pos: -13.5,55.5 parent: 2 - - uid: 8259 - components: - - type: Transform - pos: -14.5,55.5 - parent: 2 - uid: 8260 components: - type: Transform @@ -87109,86 +83592,11 @@ entities: - type: Transform pos: 55.5,-1.5 parent: 2 - - uid: 8331 - components: - - type: Transform - pos: 55.5,-3.5 - parent: 2 - - uid: 8333 - components: - - type: Transform - pos: 55.5,-5.5 - parent: 2 - - uid: 8334 - components: - - type: Transform - pos: 57.5,-5.5 - parent: 2 - - uid: 8335 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 2 - uid: 8336 components: - type: Transform pos: 43.5,-41.5 parent: 2 - - uid: 8337 - components: - - type: Transform - pos: 57.5,-7.5 - parent: 2 - - uid: 8338 - components: - - type: Transform - pos: 57.5,-8.5 - parent: 2 - - uid: 8339 - components: - - type: Transform - pos: 57.5,-9.5 - parent: 2 - - uid: 8340 - components: - - type: Transform - pos: 57.5,-11.5 - parent: 2 - - uid: 8341 - components: - - type: Transform - pos: 57.5,-13.5 - parent: 2 - - uid: 8342 - components: - - type: Transform - pos: 57.5,-12.5 - parent: 2 - - uid: 8343 - components: - - type: Transform - pos: 57.5,-15.5 - parent: 2 - - uid: 8344 - components: - - type: Transform - pos: 57.5,-17.5 - parent: 2 - - uid: 8345 - components: - - type: Transform - pos: 57.5,-16.5 - parent: 2 - - uid: 8346 - components: - - type: Transform - pos: 57.5,-19.5 - parent: 2 - - uid: 8347 - components: - - type: Transform - pos: 56.5,-19.5 - parent: 2 - uid: 8348 components: - type: Transform @@ -87928,7 +84336,7 @@ entities: - uid: 11007 components: - type: Transform - pos: 8.5,-11.5 + pos: 29.5,24.5 parent: 2 - uid: 11008 components: @@ -87985,11 +84393,61 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 2 + - uid: 11019 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 - uid: 11020 components: - type: Transform pos: -4.5,-0.5 parent: 2 + - uid: 11021 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 11022 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 11052 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2 + - uid: 11382 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 - uid: 12854 components: - type: Transform @@ -88516,17 +84974,6 @@ entities: - type: Transform pos: -14.5,-39.5 parent: 2 -- proto: GroundCannabisRainbow - entities: - - uid: 4827 - components: - - type: Transform - parent: 4814 - - type: Stack - count: 5 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: GunSafe entities: - uid: 3300 @@ -88542,8 +84989,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -88560,152 +85007,15 @@ entities: showEnts: False occludes: True ents: - - 3309 - - 3308 - - 3310 - - 3306 - - 3305 - - 3304 - - 3303 - - 3302 - 3301 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18678 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19276 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18688 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19273 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18691 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19277 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18700 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19274 - - 19275 + - 3302 + - 3303 + - 3304 + - 3305 + - 3306 + - 3310 + - 3308 + - 3309 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -88717,27 +85027,38 @@ entities: - type: Transform pos: 8.5,14.5 parent: 16675 - - uid: 18581 + - uid: 18857 components: - type: Transform - pos: 45.5,-3.5 - parent: 17590 - - uid: 18582 + pos: 7.5,13.5 + parent: 17641 + - uid: 18858 components: - type: Transform - pos: 45.5,-10.5 - parent: 17590 - - uid: 19864 + pos: 8.5,13.5 + parent: 17641 + - uid: 18859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,18.5 - parent: 19854 - - uid: 19962 + pos: 9.5,13.5 + parent: 17641 + - uid: 18860 components: - type: Transform - pos: 25.5,18.5 - parent: 19951 + pos: 15.5,-7.5 + parent: 17641 + - uid: 18861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-7.5 + parent: 17641 + - uid: 18862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 17641 - proto: Handcuffs entities: - uid: 1009 @@ -88780,531 +85101,337 @@ entities: - uid: 2505 components: - type: Transform - pos: 34.66691,-6.242544 - parent: 2 - - uid: 5712 - components: - - type: Transform - pos: -45.426304,38.687958 - parent: 2 - - uid: 5713 - components: - - type: Transform - pos: -45.426304,38.516083 - parent: 2 -- proto: HeadBorgMining - entities: - - uid: 2597 - components: - - type: Transform - pos: -22.436085,-7.541195 - parent: 2 -- proto: HeadSkeleton - entities: - - uid: 17530 - components: - - type: Transform - pos: 53.671875,-5.421875 - parent: 2 -- proto: HeatExchanger - entities: - - uid: 5 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-29.5 - parent: 2 - - uid: 1749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-28.5 - parent: 2 - - uid: 2452 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-29.5 - parent: 2 - - uid: 2457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-28.5 - parent: 2 - - uid: 2458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-29.5 - parent: 2 - - uid: 2461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-28.5 - parent: 2 -- proto: HighSecArmoryLocked - entities: - - uid: 3207 - components: - - type: Transform - pos: 30.5,-29.5 - parent: 2 - - uid: 5101 - components: - - type: Transform - pos: 34.5,-26.5 - parent: 2 - - uid: 18583 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 17590 -- proto: HighSecCentralCommandLocked - entities: - - uid: 16407 - components: - - type: Transform - pos: 23.5,18.5 - parent: 16200 -- proto: HighSecCommandLocked - entities: - - uid: 1692 - components: - - type: Transform - pos: -35.5,-25.5 - parent: 2 - - uid: 1984 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 2 - - uid: 2463 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 2 - - uid: 18584 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 17590 -- proto: Holoprojector - entities: - - uid: 8150 - components: - - type: Transform - parent: 8127 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: HospitalCurtains - entities: - - uid: 2539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-4.5 - parent: 2 - - uid: 16938 - components: - - type: Transform - pos: 13.5,20.5 - parent: 16675 - - uid: 16939 - components: - - type: Transform - pos: 13.5,21.5 - parent: 16675 -- proto: HospitalCurtainsOpen - entities: - - uid: 4700 - components: - - type: Transform - pos: -20.5,20.5 - parent: 2 - - uid: 4702 - components: - - type: Transform - pos: -21.5,20.5 - parent: 2 - - uid: 5629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,42.5 - parent: 2 - - uid: 18585 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 17590 - - uid: 18586 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 17590 - - uid: 18587 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 17590 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 8096 - components: - - type: Transform - pos: 47.498806,-16.578686 - parent: 2 -- proto: hydroponicsTray - entities: - - uid: 2932 - components: - - type: Transform - pos: 12.5,29.5 - parent: 2 - - uid: 2946 - components: - - type: Transform - pos: 12.5,30.5 - parent: 2 - - uid: 2975 - components: - - type: Transform - pos: 9.5,30.5 - parent: 2 - - uid: 3328 - components: - - type: Transform - pos: 48.5,-15.5 - parent: 2 - - uid: 3671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-15.5 - parent: 2 - - uid: 7723 - components: - - type: Transform - pos: 12.5,28.5 - parent: 2 - - uid: 8363 - components: - - type: Transform - pos: 9.5,29.5 - parent: 2 - - uid: 11777 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - uid: 12352 - components: - - type: Transform - pos: 12.5,27.5 + pos: 34.66691,-6.242544 parent: 2 - - uid: 12945 + - uid: 5712 components: - type: Transform - pos: 9.5,25.5 + pos: -45.426304,38.687958 parent: 2 - - uid: 14562 + - uid: 5713 components: - type: Transform - pos: 9.5,28.5 + pos: -45.426304,38.516083 parent: 2 - - uid: 15905 +- proto: HeadHuman + entities: + - uid: 17074 components: - type: Transform - pos: 9.5,26.5 + pos: 56.92469,-7.572605 parent: 2 -- proto: IceCrust +- proto: HeadSkeleton entities: - - uid: 6554 + - uid: 17530 components: - type: Transform - pos: 18.5,43.5 + pos: 53.671875,-5.421875 parent: 2 - - uid: 6555 +- proto: HeatExchanger + entities: + - uid: 5 components: - type: Transform - pos: 18.5,42.5 + rot: 1.5707963267948966 rad + pos: 9.5,-29.5 parent: 2 - - uid: 6556 + - uid: 1749 components: - type: Transform - pos: 19.5,42.5 + rot: 1.5707963267948966 rad + pos: 9.5,-28.5 parent: 2 - - uid: 6557 + - uid: 2452 components: - type: Transform - pos: 19.5,43.5 + rot: -1.5707963267948966 rad + pos: 11.5,-29.5 parent: 2 - - uid: 6558 + - uid: 2457 components: - type: Transform - pos: 19.5,41.5 + rot: -1.5707963267948966 rad + pos: 11.5,-28.5 parent: 2 - - uid: 6559 + - uid: 2458 components: - type: Transform - pos: 16.5,43.5 + rot: -1.5707963267948966 rad + pos: 10.5,-29.5 parent: 2 - - uid: 6560 + - uid: 2461 components: - type: Transform - pos: 15.5,43.5 + rot: -1.5707963267948966 rad + pos: 10.5,-28.5 parent: 2 - - uid: 6561 +- proto: HighSecArmoryLocked + entities: + - uid: 3207 components: - type: Transform - pos: 15.5,44.5 + pos: 30.5,-29.5 parent: 2 - - uid: 6562 + - uid: 5101 components: - type: Transform - pos: 18.5,42.5 + pos: 34.5,-26.5 parent: 2 - - uid: 6563 +- proto: HighSecCaptainLocked + entities: + - uid: 18863 components: - type: Transform - pos: 19.5,43.5 - parent: 2 - - uid: 6564 + pos: 3.5,-1.5 + parent: 17641 + - uid: 18864 components: - type: Transform - pos: 19.5,39.5 - parent: 2 - - uid: 6565 + pos: 27.5,-1.5 + parent: 17641 +- proto: HighSecCentralCommandLocked + entities: + - uid: 16407 components: - type: Transform - pos: 18.5,38.5 - parent: 2 - - uid: 6566 + pos: 23.5,18.5 + parent: 16200 +- proto: HighSecCommandLocked + entities: + - uid: 1692 components: - type: Transform - pos: 18.5,37.5 + pos: -35.5,-25.5 parent: 2 - - uid: 6567 + - uid: 1984 components: - type: Transform - pos: 12.5,46.5 + pos: -7.5,-20.5 parent: 2 - - uid: 6568 + - uid: 2463 components: - type: Transform - pos: 18.5,42.5 + pos: -7.5,-17.5 parent: 2 - - uid: 6569 +- proto: Holoprojector + entities: + - uid: 8150 components: - type: Transform - pos: 19.5,41.5 - parent: 2 - - uid: 6570 + parent: 8127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HospitalCurtains + entities: + - uid: 12394 components: - type: Transform - pos: 17.5,42.5 + pos: -30.5,19.5 parent: 2 - - uid: 6572 + - uid: 12397 components: - type: Transform - pos: 15.5,46.5 + pos: -31.5,19.5 parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 5179 + - uid: 16938 components: - type: Transform - pos: -2.492794,-20.447254 - parent: 2 -- proto: Igniter - entities: - - uid: 8160 + pos: 13.5,20.5 + parent: 16675 + - uid: 16939 components: - type: Transform - anchored: True - pos: 52.5,-8.5 - parent: 2 - - type: Physics - canCollide: False - bodyType: Static - - type: Anchorable -- proto: InflatableDoor - entities: - - uid: 4627 + pos: 13.5,21.5 + parent: 16675 + - uid: 18865 components: - type: Transform - pos: 28.5,34.5 - parent: 2 - - uid: 17451 + pos: 15.5,3.5 + parent: 17641 + - uid: 18866 components: - type: Transform - pos: 30.5,34.5 + pos: 15.5,1.5 + parent: 17641 +- proto: HospitalCurtainsOpen + entities: + - uid: 5629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,42.5 parent: 2 -- proto: InflatableWall +- proto: HydroponicsToolMiniHoe entities: - - uid: 592 + - uid: 8096 components: - type: Transform - pos: 6.5,32.5 + pos: 47.498806,-16.578686 parent: 2 - - uid: 1004 +- proto: hydroponicsTray + entities: + - uid: 2932 components: - type: Transform - pos: 28.5,33.5 + pos: 12.5,29.5 parent: 2 - - uid: 1083 + - uid: 2946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,23.5 + pos: 12.5,30.5 parent: 2 - - uid: 1388 + - uid: 2975 components: - type: Transform - pos: 29.5,32.5 + pos: 9.5,30.5 parent: 2 - - uid: 3364 + - uid: 3328 components: - type: Transform - pos: 24.5,36.5 + pos: 48.5,-15.5 parent: 2 - - uid: 3714 + - uid: 3671 components: - type: Transform - pos: 30.5,32.5 + rot: 1.5707963267948966 rad + pos: 47.5,-15.5 parent: 2 - - uid: 4729 + - uid: 7723 components: - type: Transform - pos: -6.5,30.5 + pos: 12.5,28.5 parent: 2 - - uid: 4779 + - uid: 8363 components: - type: Transform - pos: -16.5,7.5 + pos: 9.5,29.5 parent: 2 - - uid: 4864 + - uid: 11777 components: - type: Transform - pos: 30.5,35.5 + pos: 9.5,27.5 parent: 2 - - uid: 4869 + - uid: 12352 components: - type: Transform - pos: 29.5,29.5 + pos: 12.5,27.5 parent: 2 - - uid: 5038 + - uid: 14562 components: - type: Transform - pos: 31.5,31.5 + pos: 9.5,28.5 parent: 2 - - uid: 5166 + - uid: 15905 components: - type: Transform - pos: 29.5,36.5 + pos: 9.5,26.5 parent: 2 - - uid: 5648 +- proto: IceCrust + entities: + - uid: 16017 components: - type: Transform - pos: -71.5,31.5 + pos: 56.5,-17.5 parent: 2 - - uid: 5742 + - uid: 16018 components: - type: Transform - pos: -47.5,31.5 + pos: 57.5,-17.5 parent: 2 - - uid: 5912 + - uid: 16019 components: - type: Transform - pos: -43.5,31.5 + pos: 57.5,-17.5 parent: 2 - - uid: 5916 + - uid: 16021 components: - type: Transform - pos: -40.5,38.5 + pos: 57.5,-17.5 parent: 2 - - uid: 5917 + - uid: 16022 components: - type: Transform - pos: -39.5,40.5 + pos: 58.5,-13.5 parent: 2 - - uid: 6460 + - uid: 16023 components: - type: Transform - pos: 26.5,37.5 + pos: 57.5,-11.5 parent: 2 - - uid: 6461 + - uid: 16024 components: - type: Transform - pos: 25.5,37.5 + pos: 56.5,-12.5 parent: 2 - - uid: 6497 + - uid: 16031 components: - type: Transform - pos: 29.5,37.5 + pos: 58.5,-16.5 parent: 2 - - uid: 6499 + - uid: 16032 components: - type: Transform - pos: 30.5,30.5 + pos: 57.5,-17.5 parent: 2 - - uid: 6502 + - uid: 16034 components: - type: Transform - pos: 31.5,36.5 + pos: 58.5,-17.5 parent: 2 - - uid: 6606 + - uid: 16035 components: - type: Transform - pos: -19.5,46.5 + pos: 57.5,-17.5 parent: 2 - - uid: 6664 + - uid: 16036 components: - type: Transform - pos: -38.5,35.5 + pos: 57.5,-16.5 parent: 2 - - uid: 6806 + - uid: 16047 components: - type: Transform - pos: -30.5,42.5 + pos: 56.5,-11.5 parent: 2 - - uid: 7008 + - uid: 16050 components: - type: Transform - pos: -18.5,45.5 + pos: 56.5,-11.5 parent: 2 - - uid: 7016 + - uid: 16071 components: - type: Transform - pos: -61.5,34.5 + pos: 58.5,-17.5 parent: 2 - - uid: 7022 + - uid: 16072 components: - type: Transform - pos: -62.5,34.5 + pos: 58.5,-17.5 parent: 2 - - uid: 8173 + - uid: 16074 components: - type: Transform - pos: 29.5,35.5 + pos: 57.5,-17.5 parent: 2 - - uid: 8636 + - uid: 16075 components: - type: Transform - pos: 29.5,33.5 + pos: 57.5,-16.5 parent: 2 - - uid: 13010 +- proto: IDComputerCircuitboard + entities: + - uid: 5179 components: - type: Transform - pos: -24.5,27.5 + pos: -2.492794,-20.447254 parent: 2 - - uid: 13589 +- proto: IngotGold + entities: + - uid: 7152 components: - type: Transform - pos: 15.5,34.5 + pos: -5.482785,-21.352592 parent: 2 - proto: IngotGold1 entities: @@ -89344,16 +85471,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2063 - components: - - type: Transform - pos: -5.6241617,-21.333897 - parent: 2 - - uid: 2072 - components: - - type: Transform - pos: -5.3429117,-21.505772 - parent: 2 - proto: IntercomAll entities: - uid: 6865 @@ -89387,11 +85504,21 @@ entities: - uid: 2032 components: - type: Transform - pos: 0.50324035,-20.251795 + pos: 1.590776,-22.383602 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 1.5838315,-22.605824 + parent: 2 + - uid: 11385 + components: + - type: Transform + pos: 1.5838315,-22.161379 parent: 2 - proto: IntercomEngineering entities: - - uid: 14905 + - uid: 1511 components: - type: Transform rot: 1.5707963267948966 rad @@ -89406,7 +85533,7 @@ entities: parent: 2 - proto: IntercomScience entities: - - uid: 14841 + - uid: 1842 components: - type: Transform pos: -10.5,-12.5 @@ -89418,6 +85545,11 @@ entities: - type: Transform pos: 24.5,-6.5 parent: 2 + - uid: 20214 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 - proto: IntercomService entities: - uid: 14917 @@ -89439,31 +85571,6 @@ entities: - type: Transform pos: 0.5,33.5 parent: 2 -- proto: JetpackBlueFilled - entities: - - uid: 18588 - components: - - type: Transform - pos: 11.5,-12.3 - parent: 17590 -- proto: Joint - entities: - - uid: 4822 - components: - - type: Transform - parent: 4814 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: JointRainbow - entities: - - uid: 4828 - components: - - type: Transform - parent: 4814 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Jug entities: - uid: 8062 @@ -89478,43 +85585,13 @@ entities: - type: Transform pos: 14.5,15.5 parent: 2 - - uid: 18589 - components: - - type: Transform - pos: 21.5,3.5 - parent: 17590 - - uid: 18590 - components: - - type: Transform - pos: 31.5,-12.5 - parent: 17590 - proto: KitchenKnife entities: - - uid: 3852 - components: - - type: Transform - pos: 19.512026,26.640032 - parent: 2 - - uid: 3953 - components: - - type: Transform - pos: 19.637026,26.624407 - parent: 2 - - uid: 3954 + - uid: 4649 components: - type: Transform - pos: 19.762026,26.593157 + pos: 19.210844,26.658743 parent: 2 - - uid: 18591 - components: - - type: Transform - pos: 25.172186,1.671608 - parent: 17590 - - uid: 18592 - components: - - type: Transform - pos: 28.78156,1.374733 - parent: 17590 - proto: KitchenMicrowave entities: - uid: 3901 @@ -89527,6 +85604,16 @@ entities: - type: Transform pos: -29.5,9.5 parent: 2 + - uid: 11095 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 2 + - uid: 18867 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 17641 - proto: KitchenReagentGrinder entities: - uid: 1685 @@ -89544,26 +85631,16 @@ entities: - type: Transform pos: -11.5,20.5 parent: 2 - - uid: 5256 + - uid: 4628 components: - type: Transform - pos: 18.5,24.5 + pos: -26.5,-12.5 parent: 2 - - uid: 18946 - components: - - type: Transform - pos: 34.5,-14.5 - parent: 17590 - - uid: 18947 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 17590 - - uid: 18948 + - uid: 5256 components: - type: Transform - pos: 34.5,-16.5 - parent: 17590 + pos: 18.5,24.5 + parent: 2 - proto: KitchenSpike entities: - uid: 12934 @@ -89612,16 +85689,21 @@ entities: rot: 1.5707963267948966 rad pos: 10.56798,37.73783 parent: 2 - - uid: 5319 + - uid: 7766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.93067,24.600998 + pos: 14.734631,-18.334072 parent: 2 - - uid: 7766 + - uid: 11899 components: - type: Transform - pos: 14.734631,-18.334072 + pos: -33.981777,24.66656 + parent: 2 + - uid: 14250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.683716,10.085131 parent: 2 - proto: LampInterrogator entities: @@ -89632,35 +85714,19 @@ entities: parent: 2 - proto: LandMineExplosive entities: - - uid: 5020 - components: - - type: Transform - pos: -16.497065,5.3581505 - parent: 2 - - type: Explosive - maxTileBreak: 0 - tileBreakScale: 0 - - uid: 6647 + - uid: 3230 components: - type: MetaData - desc: Маломощный заряд и незаметный внешний вид - всё, что нужно для грамотной диверсии. + desc: Это взрывное устройство детонирует с меньшей силой, чем её противопехотная подруга, однако оборудована технологией квантовой невидимости и заметить её очень сложно. name: скрытая мина - type: Transform - pos: -68.53992,35.347397 + pos: -68.51495,35.29779 parent: 2 - type: Explosive + maxTileBreak: 0 + tileBreakScale: 0 totalIntensity: 20 maxIntensity: 3.4 - - uid: 8497 - components: - - type: Transform - pos: 14.5,48.5 - parent: 2 - - uid: 9213 - components: - - type: Transform - pos: 4.5,48.5 - parent: 2 - proto: Lantern entities: - uid: 13414 @@ -89705,6 +85771,12 @@ entities: parent: 1407 - type: Physics canCollide: False + - uid: 20179 + components: + - type: Transform + parent: 20178 + - type: Physics + canCollide: False - proto: Lighter entities: - uid: 2148 @@ -89713,11 +85785,6 @@ entities: rot: 3.141592653589793 rad pos: -31.53397,16.676622 parent: 2 - - uid: 6765 - components: - - type: Transform - pos: -40.454292,43.234665 - parent: 2 - proto: LightHeadBorg entities: - uid: 2592 @@ -89730,6 +85797,11 @@ entities: - type: Transform pos: -22.655846,-7.4635367 parent: 2 + - uid: 2597 + components: + - type: Transform + pos: -22.436085,-7.541195 + parent: 2 - proto: LightReplacerEmpty entities: - uid: 3756 @@ -89739,16 +85811,10 @@ entities: parent: 2 - proto: LightTubeBroken entities: - - uid: 6691 - components: - - type: Transform - pos: -15.071239,-1.5003586 - parent: 2 - - uid: 8037 + - uid: 5189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.753654,4.444656 + pos: -27.420113,4.4986906 parent: 2 - proto: LiquidNitrogenCanister entities: @@ -89785,21 +85851,32 @@ entities: - type: InsideEntityStorage - proto: LockableButtonArmory entities: - - uid: 18620 + - uid: 641 components: - type: Transform - pos: 8.5,-1.3 - parent: 17590 + pos: 29.5,-28.5 + parent: 2 - type: DeviceLinkSource linkedPorts: - 19761: + 4297: - Pressed: Toggle - 19762: + 4295: - Pressed: Toggle - 19760: + 7467: - Pressed: Toggle - proto: LockableButtonAtmospherics entities: + - uid: 1360 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2229: + - Pressed: Toggle + 2227: + - Pressed: Toggle - uid: 2174 components: - type: MetaData @@ -89890,6 +85967,20 @@ entities: - Pressed: Toggle 1258: - Pressed: Toggle + - uid: 18868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 17641 + - type: DeviceLinkSource + linkedPorts: + 17683: + - Pressed: Toggle + 17685: + - Pressed: Toggle + 17684: + - Pressed: Toggle - proto: LockableButtonCommand entities: - uid: 2466 @@ -89908,20 +85999,6 @@ entities: - Pressed: Toggle 728: - Pressed: Toggle - - uid: 19763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 17590 - - type: DeviceLinkSource - linkedPorts: - 18172: - - Pressed: Toggle - 19759: - - Pressed: Toggle - 17923: - - Pressed: Toggle - proto: LockableButtonEngineering entities: - uid: 7558 @@ -89938,24 +86015,6 @@ entities: - Pressed: Toggle 3467: - Pressed: Toggle - - uid: 20063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 17590 - - type: DeviceLinkSource - linkedPorts: - 18734: - - Pressed: Toggle - 19769: - - Pressed: Toggle - 19771: - - Pressed: Toggle - 19770: - - Pressed: Toggle - 18733: - - Pressed: Toggle - proto: LockableButtonHeadOfPersonnel entities: - uid: 2676 @@ -89995,6 +86054,8 @@ entities: - Pressed: Close 2666: - Pressed: Toggle + 7467: + - Pressed: Close - proto: LockableButtonHeadOfSecurity entities: - uid: 787 @@ -90014,38 +86075,30 @@ entities: - Pressed: Open - proto: LockableButtonResearch entities: - - uid: 1797 + - uid: 11087 components: - - type: MetaData - desc: Эта кнопка переключает затворы и болтирует вход. - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-18.5 + rot: -1.5707963267948966 rad + pos: -23.5,-14.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1567: + 1072: - Pressed: Toggle - 1674: + 1567: - Pressed: Toggle - 8360: - - Pressed: DoorBolt - - uid: 3640 + - uid: 14159 components: - - type: MetaData - desc: Эта кнопка переключает затворы и болтирует вход. - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-18.5 + rot: 1.5707963267948966 rad + pos: -23.5,-14.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 8332: - - Pressed: Toggle 8355: - Pressed: Toggle - 8361: - - Pressed: DoorBolt + 8332: + - Pressed: Toggle - proto: LockableButtonSecurity entities: - uid: 156 @@ -90098,6 +86151,36 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-12.5 parent: 2 + - uid: 6786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 172: + - Pressed: DoorBolt + - uid: 6787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2557: + - Pressed: DoorBolt + - uid: 7828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,40.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 75: + - Pressed: DoorBolt - uid: 8158 components: - type: MetaData @@ -90124,6 +86207,53 @@ entities: - Pressed: Toggle 208: - Pressed: Toggle + - uid: 17084 + components: + - type: MetaData + name: кнопка переключения входа в вольер + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17083: + - Pressed: Toggle + 15543: + - Pressed: DoorBolt + 760: + - Pressed: DoorBolt +- proto: LockableButtonService + entities: + - uid: 12460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5806: + - Pressed: AutoClose + - Pressed: Toggle + 6392: + - Pressed: Toggle + - Pressed: AutoClose + - uid: 20177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 20163: + - Pressed: Toggle + 20178: + - Pressed: Toggle + 6128: + - Pressed: Close + - Pressed: DoorBolt - proto: LockerAtmosphericsFilled entities: - uid: 1773 @@ -90229,26 +86359,6 @@ entities: - type: Transform pos: 5.5,25.5 parent: 2 -- proto: LockerBotanistLoot - entities: - - uid: 3554 - components: - - type: Transform - pos: 46.5,-16.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 933 - - 940 - - 942 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerCaptainFilledNoLaser entities: - uid: 17 @@ -90277,22 +86387,11 @@ entities: parent: 2 - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 4893 + - uid: 7020 components: - type: Transform - pos: -24.5,11.5 + pos: -24.5,10.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4894 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerClown entities: - uid: 3992 @@ -90333,216 +86432,6 @@ entities: showEnts: False occludes: True ent: null -- proto: LockerDetective - entities: - - uid: 5029 - components: - - type: MetaData - name: шкаф, полный скелетов - - type: Transform - pos: 0.5,-0.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - moles: - - 1.8978155 - - 7.139401 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 16092 - - 16093 - - 17410 - - 1251 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - missingComponents: - - AccessReader - - Lock - - uid: 17671 - components: - - type: Transform - pos: 47.5,-20.5 - parent: 17590 - - type: AccessReader - access: - - - ChiefEngineer - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17675 - - 17674 - - 17676 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18218 - components: - - type: MetaData - name: шкаф - - type: Transform - pos: 39.5,-12.5 - parent: 17590 - - type: AccessReader - access: - - - Captain - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18219 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18271 - components: - - type: MetaData - name: шкаф - - type: Transform - pos: 44.5,-15.5 - parent: 17590 - - type: AccessReader - access: - - - CentralCommand - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8977377 - - 7.139109 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18273 - - 18274 - - 18276 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18280 - components: - - type: Transform - pos: 36.5,-20.5 - parent: 17590 - - type: AccessReader - access: - - - ChiefMedicalOfficer - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8977377 - - 7.139109 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18283 - - 18281 - - 18282 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerDetectiveFilled entities: - uid: 3772 @@ -90577,11 +86466,6 @@ entities: - type: Transform pos: 6.5,12.5 parent: 16675 - - uid: 18593 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 17590 - proto: LockerEngineer entities: - uid: 16365 @@ -90717,50 +86601,18 @@ entities: - 0 - 0 - 0 -- proto: LockerFreezerBase +- proto: LockerFreezerVaultFilled entities: - - uid: 2019 + - uid: 22 components: - type: Transform pos: -6.5,-21.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2020 - - 2021 - - 2025 - - 2026 - - 2027 - - 2029 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 2036 + - uid: 107 components: - type: Transform pos: -8.5,-21.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2037 - - 2038 - - 2039 - - 2040 - - 2041 - - 2042 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerHeadOfPersonnelFilled entities: - uid: 2660 @@ -90840,15 +86692,10 @@ entities: - type: Transform pos: -14.5,15.5 parent: 2 - - uid: 4499 - components: - - type: Transform - pos: -14.5,24.5 - parent: 2 - - uid: 4500 + - uid: 17414 components: - type: Transform - pos: -14.5,23.5 + pos: -21.5,12.5 parent: 2 - proto: LockerMime entities: @@ -90903,10 +86750,10 @@ entities: parent: 2 - proto: LockerParamedicFilled entities: - - uid: 4782 + - uid: 9736 components: - type: Transform - pos: -27.5,11.5 + pos: -21.5,22.5 parent: 2 - proto: LockerQuarterMasterFilled entities: @@ -91020,6 +86867,11 @@ entities: - type: Transform pos: -13.5,-5.5 parent: 2 + - uid: 15928 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 - proto: LockerScientist entities: - uid: 3713 @@ -91213,6 +87065,11 @@ entities: ent: null - proto: LockerSecurityFilled entities: + - uid: 587 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 2 - uid: 3171 components: - type: Transform @@ -91228,6 +87085,11 @@ entities: - type: Transform pos: 32.5,-22.5 parent: 2 + - uid: 17089 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 2 - proto: LockerSyndicate entities: - uid: 6660 @@ -91241,8 +87103,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -91259,8 +87121,9 @@ entities: showEnts: False occludes: True ents: - - 35 - - 7821 + - 852 + - 832 + - 835 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -91279,8 +87142,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -91297,23 +87160,28 @@ entities: showEnts: False occludes: True ents: - - 4816 - - 4822 - - 4833 - - 4827 - - 4828 - - 4830 - 252 - - 4831 - - 4823 - - 4832 + - 429 + - 437 - proto: LockerWallMedicalFilled entities: - - uid: 4633 + - uid: 4288 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,18.5 + pos: -7.5,23.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,24.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,22.5 parent: 2 - proto: LockerWardenFilled entities: @@ -91359,6 +87227,18 @@ entities: - Output: Trigger - proto: LuxuryPen entities: + - uid: 1251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.2813,37.733116 + parent: 2 + - uid: 2264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.265675,37.59249 + parent: 2 - uid: 2502 components: - type: Transform @@ -91382,6 +87262,12 @@ entities: rot: 1.5707963267948966 rad pos: 11.4008665,41.300007 parent: 2 + - uid: 14249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.277466,9.616381 + parent: 2 - proto: MachineAnomalyGenerator entities: - uid: 348 @@ -91389,8 +87275,25 @@ entities: - type: Transform pos: -13.5,-2.5 parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 1857 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 - proto: MachineAPE entities: + - uid: 1855 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 - uid: 2599 components: - type: Transform @@ -91410,10 +87313,10 @@ entities: parent: 2 - proto: MachineCentrifuge entities: - - uid: 6686 + - uid: 9731 components: - type: Transform - pos: -14.5,20.5 + pos: -11.5,18.5 parent: 2 - proto: MachineElectrolysisUnit entities: @@ -91424,11 +87327,6 @@ entities: parent: 2 - proto: MachineFrame entities: - - uid: 662 - components: - - type: Transform - pos: -12.5,-5.5 - parent: 2 - uid: 2246 components: - type: Transform @@ -91439,131 +87337,34 @@ entities: - type: Transform pos: -8.5,-25.5 parent: 2 - - uid: 2259 - components: - - type: Transform - pos: -11.5,-1.5 - parent: 2 - - uid: 2480 - components: - - type: Transform - pos: -12.5,20.5 - parent: 2 - - uid: 2552 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 2 - uid: 2579 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-16.5 parent: 2 - - uid: 4166 - components: - - type: Transform - pos: 36.5,-30.5 - parent: 2 - - uid: 4694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,20.5 - parent: 2 - - uid: 4695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,22.5 - parent: 2 - - uid: 7788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,46.5 - parent: 2 - uid: 16409 components: - type: Transform pos: 24.5,15.5 parent: 16200 - - uid: 18666 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 17590 - - uid: 18673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-15.5 - parent: 17590 - - uid: 18677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-20.5 - parent: 17590 - proto: MachineFrameDestroyed entities: - - uid: 2258 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 2 - - uid: 2882 - components: - - type: Transform - pos: -12.5,3.5 - parent: 2 - - uid: 6536 - components: - - type: MetaData - name: разрушенный каркас переработчика мусора - - type: Transform - pos: 26.5,36.5 - parent: 2 - - uid: 7780 - components: - - type: Transform - pos: -43.5,46.5 - parent: 2 - uid: 16872 components: - type: Transform pos: 4.5,21.5 parent: 16675 - - uid: 18610 - components: - - type: Transform - pos: 40.5,5.5 - parent: 17590 - - uid: 18613 - components: - - type: Transform - pos: 39.5,6.5 - parent: 17590 - - uid: 19961 - components: - - type: Transform - pos: 26.5,18.5 - parent: 19951 - - uid: 20030 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 17590 - - uid: 20034 + - uid: 18869 components: - type: Transform - pos: 10.5,-1.5 - parent: 17590 - - uid: 20122 + pos: 22.5,1.5 + parent: 17641 + - uid: 18870 components: - type: Transform - pos: 25.5,13.5 - parent: 20000 + pos: 22.5,-0.5 + parent: 17641 - proto: MagazineBoxPistol entities: - uid: 3303 @@ -91698,221 +87499,223 @@ entities: - type: Transform pos: 4.478406,37.522987 parent: 2 -- proto: Mannequin +- proto: MaintenanceFluffSpawner entities: - - uid: 7837 + - uid: 1333 components: - - type: MetaData - desc: У вас странное предчуствие... - name: необычный манекен - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-5.5 + pos: -5.5,40.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 16978 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - type: ActiveRadioJammer -- proto: Matchbox - entities: - - uid: 17182 + - uid: 4777 components: - type: Transform - pos: -23.199554,64.84811 + pos: -59.5,34.5 parent: 2 - - uid: 17183 + - uid: 15940 components: - type: Transform - pos: -23.199554,64.70748 + pos: -22.5,47.5 parent: 2 -- proto: MaterialCardboard - entities: - - uid: 2060 + - uid: 15944 components: - type: Transform - parent: 2059 - - type: Physics - canCollide: False - - uid: 2061 + pos: -23.5,47.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 1276 components: - type: Transform - parent: 2059 - - type: Physics - canCollide: False - - uid: 2062 + pos: -5.5,44.5 + parent: 2 + - uid: 9740 components: - type: Transform - parent: 2059 - - type: Physics - canCollide: False -- proto: MaterialCardboard1 - entities: - - uid: 3229 + pos: -8.5,44.5 + parent: 2 + - uid: 9742 components: - type: Transform - pos: 25.56925,-30.204853 + pos: -1.5,43.5 parent: 2 - - uid: 3232 + - uid: 9779 components: - type: Transform - pos: 25.50675,-29.486103 + pos: 8.5,46.5 parent: 2 - - uid: 3250 + - uid: 10057 components: - type: Transform - pos: 25.538,-29.845478 + pos: 15.5,44.5 parent: 2 -- proto: MaterialCardboard10 - entities: - - uid: 2016 + - uid: 15951 components: - type: Transform - pos: 0.4994731,-18.318449 + pos: -11.5,51.5 parent: 2 -- proto: MaterialCloth1 - entities: - - uid: 8061 + - uid: 15952 components: - type: Transform - pos: 52.45667,-19.239346 + pos: -17.5,47.5 parent: 2 - - uid: 8063 + - uid: 15953 components: - type: Transform - pos: 52.619804,-19.41926 + pos: -14.5,44.5 parent: 2 -- proto: MaterialGunpowder - entities: - - uid: 3139 + - uid: 15954 components: - type: Transform - pos: -24.40329,64.022194 + pos: -12.5,43.5 parent: 2 - - uid: 3141 + - uid: 15955 components: - type: Transform - pos: -24.293915,64.147194 + pos: -19.5,41.5 parent: 2 -- proto: MaterialWebSilk1 +- proto: MaintenanceToolSpawner entities: - - uid: 17244 + - uid: 1278 components: - type: Transform - pos: -17.643671,55.32563 + pos: -2.5,45.5 parent: 2 - - uid: 17245 + - uid: 4454 components: - type: Transform - pos: -17.174921,55.747505 + pos: -59.5,36.5 parent: 2 - - uid: 17246 + - uid: 4550 components: - type: Transform - pos: -16.721796,55.41938 + pos: -47.5,35.5 parent: 2 - - uid: 17247 + - uid: 4620 components: - type: Transform - pos: -16.784296,54.903755 + pos: -47.5,36.5 parent: 2 - - uid: 17248 + - uid: 6789 components: - type: Transform - pos: -17.143671,55.091255 + pos: -4.5,45.5 parent: 2 - - uid: 17249 + - uid: 15950 components: - type: Transform - pos: -16.128046,55.310005 + pos: -17.5,50.5 parent: 2 - - uid: 17250 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 4774 components: - type: Transform - pos: -16.456171,55.622505 + pos: -59.5,35.5 parent: 2 - - uid: 17251 + - uid: 7657 components: - type: Transform - pos: -16.393671,54.014145 + pos: -5.5,41.5 parent: 2 - - uid: 17252 + - uid: 15949 components: - type: Transform - pos: -16.378046,53.514145 + pos: -17.5,51.5 parent: 2 - - uid: 17253 + - uid: 15964 components: - type: Transform - pos: -15.643671,53.514145 + pos: -25.5,39.5 parent: 2 - - uid: 17254 + - uid: 15965 components: - type: Transform - pos: -15.237421,53.576645 + pos: -25.5,40.5 parent: 2 -- proto: Mattress +- proto: Mannequin entities: - - uid: 404 + - uid: 7837 components: + - type: MetaData + desc: У вас странное предчуствие... + name: необычный манекен - type: Transform - pos: -22.5,26.5 + rot: 1.5707963267948966 rad + pos: 51.5,-5.5 parent: 2 - - uid: 423 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 16978 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - type: ActiveRadioJammer +- proto: Matchbox + entities: + - uid: 17182 components: - type: Transform - pos: -22.5,24.5 + pos: -23.199554,64.84811 parent: 2 - - uid: 1096 + - uid: 17183 components: - type: Transform - pos: -22.5,25.5 + pos: -23.199554,64.70748 parent: 2 - - uid: 4241 +- proto: MaterialCloth1 + entities: + - uid: 8061 components: - type: Transform - pos: 52.5,-10.5 + pos: 52.45667,-19.239346 parent: 2 - - uid: 4252 + - uid: 8063 components: - type: Transform - pos: 53.5,-10.5 + pos: 52.619804,-19.41926 parent: 2 - - uid: 4253 +- proto: MaterialGunpowder + entities: + - uid: 3139 components: - type: Transform - pos: 51.5,-10.5 + pos: -24.40329,64.022194 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: -24.293915,64.147194 parent: 2 +- proto: Mattress + entities: - uid: 16413 components: - type: Transform @@ -91932,70 +87735,82 @@ entities: parent: 2 - proto: MedicalBed entities: - - uid: 4414 + - uid: 93 components: - type: Transform - pos: -11.5,10.5 + pos: -14.5,11.5 parent: 2 - - uid: 4415 + - uid: 4414 components: - type: Transform - pos: -15.5,10.5 + pos: -11.5,10.5 parent: 2 - - uid: 4453 + - uid: 4683 components: - type: Transform - pos: -17.5,11.5 + pos: -11.5,11.5 parent: 2 - - uid: 4456 + - uid: 6623 components: - type: Transform - pos: -13.5,10.5 + pos: -17.5,10.5 parent: 2 - - uid: 18594 + - uid: 7701 components: - type: Transform - pos: 23.5,-18.5 - parent: 17590 - - uid: 18595 + pos: -14.5,10.5 + parent: 2 + - uid: 18871 components: - type: Transform - pos: 23.5,-19.5 - parent: 17590 - - uid: 18596 + pos: 15.5,2.5 + parent: 17641 + - uid: 18872 components: - type: Transform - pos: 19.5,-18.5 - parent: 17590 - - uid: 18597 + pos: 15.5,4.5 + parent: 17641 +- proto: MedicalIDCard + entities: + - uid: 17975 components: - type: Transform - pos: 19.5,-19.5 - parent: 17590 + parent: 17973 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MedicalTechFab entities: - - uid: 4495 + - uid: 3178 components: - type: Transform - pos: -12.5,26.5 + pos: -14.5,27.5 parent: 2 -- proto: MedkitAdvanced +- proto: MediumXenoArtifactItem entities: - - uid: 16415 + - uid: 3315 components: - type: Transform - pos: 26.46206,15.608742 - parent: 16200 - - uid: 17376 + parent: 3153 + - type: Artifact + isSuppressed: True + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Medkit + entities: + - uid: 18873 components: - type: Transform - pos: 19.58258,-15.684814 - parent: 17590 - - uid: 17377 + pos: 13.592955,1.7228594 + parent: 17641 +- proto: MedkitAdvanced + entities: + - uid: 16415 components: - type: Transform - pos: 19.58252,-15.887939 - parent: 17590 + pos: 26.46206,15.608742 + parent: 16200 - proto: MedkitAdvancedFilled entities: - uid: 4465 @@ -92006,54 +87821,42 @@ entities: - uid: 4505 components: - type: Transform - parent: 4501 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18282 - components: - - type: Transform - parent: 18280 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18601 + pos: -14.5,25 + parent: 2 + - uid: 4688 components: - type: Transform - pos: 19.581505,-15.500816 - parent: 17590 + pos: -20.465878,20.616573 + parent: 2 - proto: MedkitBruteFilled entities: - uid: 4504 components: - type: Transform - parent: 4501 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -14.5,22.5 + parent: 2 +- proto: MedkitBurn + entities: + - uid: 18874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.35858,4.4728594 + parent: 17641 - proto: MedkitBurnFilled entities: - uid: 4506 components: - type: Transform - parent: 4501 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -14.5,23 + parent: 2 - proto: MedkitCombatFilled entities: - uid: 16416 components: - type: Transform - pos: 26.852686,15.593117 - parent: 16200 - - uid: 18281 - components: - - type: Transform - parent: 18280 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 26.852686,15.593117 + parent: 16200 - proto: MedkitFilled entities: - uid: 2373 @@ -92066,24 +87869,20 @@ entities: - type: Transform pos: 29.55483,-2.4058685 parent: 2 - - uid: 4508 + - uid: 3761 components: - type: Transform - parent: 4501 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4509 + pos: -19.631098,20.582537 + parent: 2 + - uid: 4508 components: - type: Transform - parent: 4501 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4787 + pos: -14.4,25.5 + parent: 2 + - uid: 4509 components: - type: Transform - pos: -26.483845,9.866808 + pos: -14.6,25.5 parent: 2 - uid: 4850 components: @@ -92095,25 +87894,28 @@ entities: - type: Transform pos: -8.623255,11.597626 parent: 2 + - uid: 8331 + components: + - type: Transform + pos: -9.626644,19.44184 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: -9.407894,19.457464 + parent: 2 - uid: 16417 components: - type: Transform pos: 27.321436,15.593117 parent: 16200 - - uid: 17378 - components: - - type: Transform - pos: 20.566833,-15.716309 - parent: 17590 - proto: MedkitOxygenFilled entities: - uid: 4507 components: - type: Transform - parent: 4501 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -14.5,24.5 + parent: 2 - uid: 4643 components: - type: Transform @@ -92124,19 +87926,27 @@ entities: - uid: 4502 components: - type: Transform - parent: 4501 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -14.5,23.5 + parent: 2 + - uid: 18875 + components: + - type: Transform + pos: 12.42108,3.5822344 + parent: 17641 +- proto: MedkitToxin + entities: + - uid: 18876 + components: + - type: Transform + pos: 12.67108,4.0822344 + parent: 17641 - proto: MedkitToxinFilled entities: - uid: 4503 components: - type: Transform - parent: 4501 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -14.5,24 + parent: 2 - proto: MetalFoamGrenade entities: - uid: 3316 @@ -92165,8949 +87975,8041 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: Mirror - entities: - - uid: 4003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,17.5 - parent: 2 - - uid: 4074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 2 - - uid: 5667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,37.5 - parent: 2 - - uid: 5668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,36.5 - parent: 2 -- proto: MouseTimedSpawner - entities: - - uid: 3022 - components: - - type: Transform - pos: -14.5,13.5 - parent: 2 -- proto: MousetrapArmed - entities: - - uid: 3159 - components: - - type: Transform - pos: -68.56064,34.296165 - parent: 2 - - type: StepTriggerActive - - uid: 4080 - components: - - type: Transform - pos: 2.4635491,19.52853 - parent: 2 - - type: StepTriggerActive -- proto: MysteryFigureBox +- proto: MeteorRock entities: - - uid: 3993 - components: - - type: Transform - parent: 3992 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3994 - components: - - type: Transform - parent: 3992 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3995 - components: - - type: Transform - parent: 3992 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3996 - components: - - type: Transform - parent: 3992 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5129 + - uid: 17448 components: - type: Transform - pos: 5.0214496,37.814045 - parent: 2 - - uid: 5130 + pos: 4.5,-2.5 + parent: 17433 + - uid: 17449 components: - type: Transform - pos: 4.8808246,37.76717 - parent: 2 - - uid: 5135 + pos: -4.5,1.5 + parent: 17433 + - uid: 17450 components: - type: Transform - pos: 5.0995746,37.79842 - parent: 2 - - uid: 5182 + pos: -3.5,1.5 + parent: 17433 + - uid: 17451 components: - type: Transform - pos: 3.5599136,43.678314 - parent: 2 -- proto: MysteryFigureBoxTrash - entities: - - uid: 2722 + pos: -2.5,1.5 + parent: 17433 + - uid: 17452 components: - type: Transform - pos: -40.525936,39.442406 - parent: 2 -- proto: NitrogenCanister - entities: - - uid: 2403 + pos: -1.5,1.5 + parent: 17433 + - uid: 17453 components: - type: Transform - pos: 39.5,14.5 - parent: 2 - - uid: 6546 + pos: -5.5,1.5 + parent: 17433 + - uid: 17454 components: - type: Transform - pos: -53.5,33.5 - parent: 2 -- proto: NitrogenTankFilled - entities: - - uid: 16362 + pos: 1.5,1.5 + parent: 17433 + - uid: 17455 components: - type: Transform - parent: 16358 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16369 + pos: 2.5,1.5 + parent: 17433 + - uid: 17456 components: - type: Transform - parent: 16365 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16376 + pos: 2.5,0.5 + parent: 17433 + - uid: 17457 components: - type: Transform - parent: 16372 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18293 + pos: 1.5,0.5 + parent: 17433 + - uid: 17459 components: - type: Transform - parent: 18284 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18694 + pos: 1.5,-0.5 + parent: 17433 + - uid: 17460 components: - type: Transform - parent: 18692 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NoticeBoard - entities: - - uid: 902 + pos: 2.5,-0.5 + parent: 17433 + - uid: 17461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-28.5 - parent: 2 - - uid: 2459 + pos: 0.5,0.5 + parent: 17433 + - uid: 17462 components: - type: Transform - pos: 28.5,7.5 - parent: 2 - - uid: 3769 + pos: 0.5,-0.5 + parent: 17433 + - uid: 17463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-34.5 - parent: 2 - - uid: 3770 + pos: -0.5,-0.5 + parent: 17433 + - uid: 17464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-35.5 - parent: 2 - - uid: 6794 + pos: -1.5,0.5 + parent: 17433 + - uid: 17468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-36.5 - parent: 2 -- proto: NTDefaultCircuitBoard - entities: - - uid: 15753 + pos: -1.5,-0.5 + parent: 17433 + - uid: 17477 components: - type: Transform - parent: 15749 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NTFlag - entities: - - uid: 4082 + pos: -2.5,0.5 + parent: 17433 + - uid: 17514 components: - type: Transform - pos: 9.5,-0.5 - parent: 2 - - uid: 4315 + pos: -2.5,-0.5 + parent: 17433 + - uid: 17515 components: - type: Transform - pos: 13.5,-0.5 - parent: 2 - - uid: 4338 + pos: -3.5,0.5 + parent: 17433 + - uid: 17533 components: - type: Transform - pos: -7.5,38.5 - parent: 2 - - uid: 4339 + pos: -3.5,-0.5 + parent: 17433 + - uid: 17590 components: - type: Transform - pos: -15.5,38.5 - parent: 2 -- proto: NTHandyFlag - entities: - - uid: 4334 + pos: -4.5,0.5 + parent: 17433 + - uid: 17591 components: - type: Transform - pos: -14.171648,35.679443 - parent: 2 - - uid: 4335 + pos: -4.5,-0.5 + parent: 17433 + - uid: 17592 components: - type: Transform - pos: -9.046648,35.648193 - parent: 2 -- proto: NuclearBomb - entities: - - uid: 2053 + pos: -0.5,0.5 + parent: 17433 + - uid: 17593 components: - type: Transform - pos: -7.5,-23.5 - parent: 2 -- proto: NuclearBombKeg - entities: - - uid: 3975 + pos: -4.5,-1.5 + parent: 17433 + - uid: 17594 components: - type: Transform - pos: 20.5,16.5 - parent: 2 -- proto: NukeDiskFake - entities: - - uid: 15606 + pos: -2.5,-1.5 + parent: 17433 + - uid: 17595 components: - - type: MetaData - name: запасной диск ядерной авторизации - type: Transform - pos: -4.3230863,-22.408684 - parent: 2 -- proto: NutimovCircuitBoard - entities: - - uid: 15766 + pos: -3.5,-1.5 + parent: 17433 + - uid: 17596 components: - type: Transform - parent: 15765 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Ointment - entities: - - uid: 7737 + pos: -0.5,-1.5 + parent: 17433 + - uid: 17597 components: - type: Transform - pos: -8.404505,11.582001 - parent: 2 -- proto: OmnizineChemistryBottle - entities: - - uid: 18607 + pos: -1.5,-1.5 + parent: 17433 + - uid: 17598 components: - type: Transform - pos: 39.275326,-20.56167 - parent: 17590 - - uid: 18608 + pos: 0.5,-1.5 + parent: 17433 + - uid: 17599 components: - type: Transform - pos: 39.354717,-20.358238 - parent: 17590 - - uid: 18609 + pos: 1.5,-1.5 + parent: 17433 + - uid: 17600 components: - type: Transform - pos: 39.753155,-20.3348 - parent: 17590 -- proto: OperatingTable - entities: - - uid: 18665 + pos: 2.5,-1.5 + parent: 17433 + - uid: 17601 components: - type: Transform - pos: 14.5,-14.5 - parent: 17590 -- proto: OpporozidoneBeakerSmall - entities: - - uid: 4691 + pos: 3.5,-1.5 + parent: 17433 + - uid: 17602 components: - type: Transform - pos: -24.162521,18.595175 - parent: 2 -- proto: OreBox - entities: - - uid: 20138 + pos: 3.5,-0.5 + parent: 17433 + - uid: 17603 components: - type: Transform - pos: 34.5,13.5 - parent: 2 -- proto: OreProcessor - entities: - - uid: 3761 + pos: 3.5,-2.5 + parent: 17433 + - uid: 17604 components: - type: Transform - pos: 29.5,10.5 - parent: 2 -- proto: OxygenCanister - entities: - - uid: 722 + pos: 1.5,-2.5 + parent: 17433 + - uid: 17605 components: - type: Transform - pos: 46.5,-8.5 - parent: 2 - - uid: 2402 + pos: 0.5,-2.5 + parent: 17433 + - uid: 17606 components: - type: Transform - pos: 39.5,13.5 - parent: 2 - - uid: 3151 + pos: -0.5,-2.5 + parent: 17433 + - uid: 17607 components: - type: Transform - pos: 35.5,-19.5 - parent: 2 - - uid: 5562 + pos: -2.5,-2.5 + parent: 17433 + - uid: 17608 components: - type: Transform - pos: -27.5,59.5 - parent: 2 - - uid: 6547 + pos: 2.5,-2.5 + parent: 17433 + - uid: 17609 components: - type: Transform - pos: -53.5,32.5 - parent: 2 - - uid: 7758 + pos: -0.5,-3.5 + parent: 17433 + - uid: 17610 components: - type: Transform - pos: -43.5,41.5 - parent: 2 - - uid: 17033 + pos: 4.5,-3.5 + parent: 17433 + - uid: 17611 components: - type: Transform - pos: 39.5,-42.5 - parent: 2 - - uid: 17082 + pos: 5.5,-2.5 + parent: 17433 + - uid: 17612 components: - type: Transform - pos: 20.5,29.5 - parent: 2 -- proto: OxygenTankFilled - entities: - - uid: 16363 + pos: 5.5,-3.5 + parent: 17433 + - uid: 17613 components: - type: Transform - parent: 16358 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16370 + pos: 5.5,-4.5 + parent: 17433 + - uid: 17614 components: - type: Transform - parent: 16365 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16377 + pos: 5.5,-5.5 + parent: 17433 + - uid: 17615 components: - type: Transform - parent: 16372 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18286 + pos: 4.5,-5.5 + parent: 17433 + - uid: 17616 components: - type: Transform - parent: 18284 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18698 + pos: 4.5,-6.5 + parent: 17433 + - uid: 17617 components: - type: Transform - parent: 18692 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PaladinCircuitBoard - entities: - - uid: 15770 + pos: 6.5,-3.5 + parent: 17433 + - uid: 17618 components: - type: Transform - parent: 15765 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Paper - entities: - - uid: 457 + pos: 6.5,-4.5 + parent: 17433 + - uid: 17619 components: - type: Transform - pos: -18.739107,25.627039 - parent: 2 - - type: Paper - stampState: paper_stamp-ce - stampedBy: - - stampedColor: '#C69B17FF' - stampedName: Проектировщик Awesome Station - content: >+ - На систему отвода жидкости денег не хватило, используйте тряпку для уборки крови и прочих биологических отходов. - - - uid: 960 + pos: 7.5,-4.5 + parent: 17433 + - uid: 17620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5217736,36.754105 - parent: 2 - - uid: 1284 + pos: 7.5,-5.5 + parent: 17433 + - uid: 17621 components: - type: Transform - pos: -23.51715,18.478304 - parent: 2 - - type: Paper - stampState: paper_stamp-cmo - stampedBy: - - stampedColor: '#33CCFFFF' - stampedName: stamp-component-stamped-name-cmo - content: > - Инструкция по настройке криокапсуоы: - - Шаг 1 - включить насос из дистро в крио - - Шаг 2 - настроить фильтры на углекислый газ и оксид азота - - Шаг 3 - включить насос из фильтров в системы отходов - - Шаг 4 - включить охладитель - - Шаг 6 - вставить лекарство в соответсвующий приёмник - - шаг 10 - включить охладитель - - вы восхитительны - - uid: 3015 + pos: 8.5,-5.5 + parent: 17433 + - uid: 17622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.42802358,36.691605 - parent: 2 - - uid: 3792 + pos: 0.5,2.5 + parent: 17433 + - uid: 17623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3793 + pos: -2.5,2.5 + parent: 17433 + - uid: 17624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3794 + pos: -3.5,2.5 + parent: 17433 + - uid: 17625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3795 + pos: -4.5,2.5 + parent: 17433 + - uid: 17626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3796 + pos: -5.5,2.5 + parent: 17433 + - uid: 17627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3797 + pos: -5.5,3.5 + parent: 17433 + - uid: 17628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3798 + pos: -2.5,3.5 + parent: 17433 + - uid: 17629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3799 + pos: -3.5,4.5 + parent: 17433 + - uid: 17630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3800 + pos: -2.5,4.5 + parent: 17433 + - uid: 17631 components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3801 + - type: Transform + pos: -2.5,5.5 + parent: 17433 + - uid: 17632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3802 + pos: 2.5,2.5 + parent: 17433 + - uid: 17633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3803 + pos: 3.5,2.5 + parent: 17433 + - uid: 17634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3804 + pos: 3.5,3.5 + parent: 17433 + - uid: 17635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3805 + pos: 3.5,5.5 + parent: 17433 + - uid: 17636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3806 + pos: 4.5,3.5 + parent: 17433 + - uid: 17637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3807 + pos: 4.5,4.5 + parent: 17433 + - uid: 17638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3808 + pos: 3.5,4.5 + parent: 17433 + - uid: 17639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3809 + pos: 3.5,6.5 + parent: 17433 + - uid: 17640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3810 + pos: 2.5,5.5 + parent: 17433 + - uid: 18877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 3811 + pos: -2.5,9.5 + parent: 17641 + - uid: 18878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.358862,-34.90874 - parent: 2 - - uid: 4041 + pos: 6.5,-6.5 + parent: 17641 + - uid: 18879 components: - - type: MetaData - name: ??? - type: Transform - pos: -0.5,47.5 - parent: 2 - - type: Paper - stampState: paper_stamp-trader - stampedBy: - - stampedColor: '#000000FF' - stampedName: Пираты космического моря - content: > - ЁЩТЗ СД ЦТЫОИ "K" - - Утхпи фдхьмшфтёом хкиыа. - - uid: 6501 + pos: 31.5,-6.5 + parent: 17641 + - uid: 18880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.896387,35.96009 - parent: 2 - - type: Paper - stampState: paper_stamp-ce - stampedBy: - - stampedColor: '#C69B17FF' - stampedName: Проектировщик Awesome Station - content: >+ - На переработчик мусора денег не хватило, поэтому мы приняли решение выкидывать мусор на орбиту. Надеюсь, никто не пострадает... - - missingComponents: - - Food - - uid: 6659 + pos: 15.5,-8.5 + parent: 17641 + - uid: 18881 components: - type: Transform - pos: 4.5,48.5 - parent: 2 - - type: Paper - stampState: paper_stamp-trader - stampedBy: - - stampedColor: '#000000FF' - stampedName: Пираты космического моря - content: > - Неверно. - - uid: 7029 + pos: 14.5,-8.5 + parent: 17641 + - uid: 18882 components: - type: Transform - pos: -28.464037,5.32013 - parent: 2 - - type: Paper - stampState: paper_stamp-clown - stampedBy: - - stampedColor: '#FF33CCFF' - stampedName: stamp-component-stamped-name-clown - content: > - Как глава Honk. Co заявляю, что генная модификация обыкновенных станционных тарантулов прошла успешно, А благодаря сэкономленным на барьер кредитов я, Хихишаньки Бон-бон, выдаю премию самому лучшему, самому трудолюбивому, самому прекрасному генному инженеру Хихишаньки Бон-бону. Слава Honk. Co! - - uid: 7083 + pos: 7.5,-10.5 + parent: 17641 + - uid: 18883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.80868,4.5838714 - parent: 2 - - type: Paper - content: >+ - Отчет о исследовании пауков-клоунов - - - Босс, помогите! Потайная дверь в лабораторию заклинила, а объекты исследования стали совсем буйными. Я им дал пляжный мяч, но он их совсем не отвлёк. Мне срочно нужен отряд клоунов быстрого реагирования! - - [color=red][head=3] ОНИ ЖАЖДУТ МОЕЙ ПЛОТИ - - - - uid: 7821 + pos: 7.5,-11.5 + parent: 17641 + - uid: 18884 components: - - type: MetaData - name: карта клада - type: Transform - parent: 6660 - - type: Paper - stampState: paper_stamp-trader - stampedBy: - - stampedColor: '#000000FF' - stampedName: Пираты космического моря - content: >+ - ░░█████░░░█████░░░░░█████░░░░░░░░░░░░░░ - - ░░█▒▒▒█░░░█░░░█░░░░░█░░░█░░░░░░░░░░░░░░ - - ███▒▒▒█░░░█░░░█░░░░░█░░░█░░░░░░░░░░░░░░ - - ▒▒█▒▒▒███░█░░░█░░░░░█░░░█░█████░░░░░░░ - - ▒▒█▒▒▒█░████F█████████K███▒▒▒▒█░░░░░░░░ - - ▒▒██G██X█▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▄▒▒▒▒█░░░░░░░░ - - ▄██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▒▒▒▒█░░░░░░░░ - - ▒▒▒▒▒▒▒▒▒▒████▄█████▄██▒▒██████░░░░░░░░ - - ▒▒▒▒▒▒▒████▒▒▒▒▒▒▒█▒▒▒█▒▒▒▒▒█░░░░░░░░░░ - - █▒▒███▄█▒▒▒▒▒▒▒▒▒▒█▒▒▒█▒▒▒▒▒█░░░░░░░░░░ - - █▒▒█▒▒▒█▒▒▒▒▒▒▒▒▒▒█▒▒▒████▒▒█░░░░░░░░░░ - - █▒▒█▒▒▒█▒▒▒▒▒▒▒▒▒▒█▒▒▒█▒▒█▒▒█░░░░░░░░░░ - - █▒▒█▒▒▒█▒▒▒▒▒▒▒▒▒▒███▄█▒▒█▒▒█░░░░░░░░░░ - - █▒▒█▒▒▒▄▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▒▒█▒▒█░░░░░░░░░░ - - █▒▒█▒▒▒█▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▒▒▒▒▒███████████ - - █▒▒█▒▒▒█▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▒▒█▒▒█░░░░░░░░ - - █▒▒█▒▒▒████████████████▒▒█▒▒█░░░░░░░░ - - █▄██▒▒▒█▒▒▒▒▒▒▄▒▒█▒▒▒▒██▒█████░░░░░░░░ - - ▒▒▒▒▒▒▒█▒▒▒▒▒▒█▒▒▒▒▒▒▒▒▒▒▒█▒▒█░░░░░░░░ - - СДВИГ — 4 - - X - вторая часть карты - - - - - - - - - - - - - - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7889 + pos: 8.5,-10.5 + parent: 17641 + - uid: 18885 components: - - type: MetaData - name: карта клада - type: Transform - parent: 7836 - - type: Paper - stampState: paper_stamp-trader - stampedBy: - - stampedColor: '#000000FF' - stampedName: Пираты космического моря - content: >+ - ░░█████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ - - ░░█▒▒▒█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ - - ███▒▒▒█░░░░███░░░░░░░███░░░░░░░░░░░░░░░ - - ▒▒█▒▒▒███░░█F █░░░░░░░█K█░██████░░░░░░░ - - ▒▒█▒▒▒█ X████D█████████D███▒▒▒▒█░░░░░░░░ - - ▒▒██G██D█▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▄▒▒▒▒█░░░░░░░░ - - ▄██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▒▒▒▒█░░░░░░░░ - - ▒▒▒▒▒▒▒▒▒▒████▄█████▄██▒▒██████░░░░░░░░ - - ▒▒▒▒▒▒▒████▒▒▒▒▒▒▒█▒▒▒█▒▒▒▒▒█░░░░░░░░░░ - - █▒▒███▄█▒▒▒▒▒▒▒▒▒▒█▒▒▒█▒▒▒▒▒█░░░░░░░░░░ - - █▒▒█▒▒▒█▒▒▒▒▒▒▒▒▒▒█▒▒▒████▒▒█░░░░░░░░░░ - - █▒▒█▒▒▒█▒▒▒▒▒▒▒▒▒▒█▒▒▒█▒▒█▒▒█░░░░░░░░░░ - - █▒▒█▒▒▒█▒▒▒▒▒▒▒▒▒▒███▄█▒▒█▒▒█░░░░░░░░░░ - - █▒▒█▒▒▒▄▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▒▒█▒▒█░░░░░░░░░░ - - █▒▒█▒▒▒█▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▒▒▒▒▒███████████ - - █▒▒█▒▒▒█▒▒▒▒▒▒▒▒▒▒▒▒▒▒█▒▒█▒▒█░░░░░░░░ - - █▒▒█▒▒▒████████████████▒▒█▒▒█░░░░░░░░ - - █▄██▒▒▒█▒▒▒▒▒▒▄▒▒█▒▒▒▒██▒█████░░░░░░░░ - - ▒▒▒▒▒▒▒█▒▒▒▒▒▒█▒▒▒▒▒▒▒▒▒▒▒█▒▒█░░░░░░░░ - - СДВИГ — 4 - - X - вторая часть карты - - - - - - - - - - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9043 + pos: 8.5,-7.5 + parent: 17641 + - uid: 18886 components: - type: Transform - pos: 14.5,48.5 - parent: 2 - - type: Paper - stampState: paper_stamp-trader - stampedBy: - - stampedColor: '#000000FF' - stampedName: Пираты космического моря - content: > - Неверно. - - uid: 10206 + pos: 7.5,-9.5 + parent: 17641 + - uid: 18887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.512663,0.60986567 - parent: 2 - - type: Paper - content: > - Попытка сэкономить на процессоре для сервера РНД была явно провальной. - - Мы установили intel xeon 5 и во время тестов сервер загорелся и сжёг серверную. - - один ассистент обратился в пепел пытаясь потушить комнату... Нам не стоило подпирать за ним дверь. - - Из пепел ассистента мы доставили в мед. отдел в ожидании что он окажется воспрянет как феникс, но чуда не случилось. - - Наш главный по стройке станции объявил что так будет с каждым кто нарушает технику безопасности (митинги против рабского условия труда тоже нарушает ТБ). После этого она из этого делала пластик, из пластика дюроткань, а из дюроткани себе новую водолазку и штаны и ещё что то... - - Она носит эту одежду при нас оправдывая это тем что напоминает нам к чему приводит нарушение ТБ. Это плохая мотивация ибо многие теперь тоже сгореть на работе, так что мне кажется что это лишь оправдание для странного фетиша. - - - Мы заказали новый сервер, и к прибытию первой смены его как раз должны будут доставить. Установить мы его уже не успеем. - missingComponents: - - Food - - BadFood - - uid: 16397 + pos: 10.5,-10.5 + parent: 17641 + - uid: 18888 components: - type: Transform - pos: 22.731934,10.489258 - parent: 16200 - - type: Paper - stampState: paper_stamp-ce - stampedBy: - - stampedColor: '#C69B17FF' - stampedName: Проектировщик Awesome station - content: >+ - Товарищи офицеры быстрого реагирования! Предупреждаю, что шаттл для вашей доставки на станцию был куплен на вторичном рынке по дешёвке, поэтому приготовтесь к различного рода неожиданностям. Я бегло осмотрел шаттл и заметил повреждение тормозного двигателя. На исправление времени не было, уже надо было сдавать проект, поэтому я оставил решение этой проблемы на вас. - - С уважением, главный инженер, ответственный за Awesome station - - - uid: 17362 + pos: 11.5,-10.5 + parent: 17641 + - uid: 18889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.444092,23.580078 - parent: 16675 - - type: Paper - content: >+ - Поздравляем с приобретением новейшего и самого современного штурмового шаттла Синдиката [color=#ffffff]ТМ[/color]! - - Спешим познакомить вас с самым важным оборудованием этого судна - корабельное орудие EXP-2100g "Дастер". - - [color=red][bold] Важно! Перед использованием убедитесь, что перед вами на радаре находятся ТОЛЬКО объекты, которые не жалко.[/color][/bold] - - Перед выстрелом (Кнопка ближе к орудию) убедитесь, что у вас открыт гермозатвор. Открыть его можно нажав другую кнопку. - - Насчёт остального легко разобраться, удачного пользования! - - - uid: 17529 + pos: 9.5,-10.5 + parent: 17641 + - uid: 18890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.09375,-5.25 - parent: 2 - - type: Paper - content: >- - Вы находитесь в одиночной камере, оторваны от мира и от людей. Но несмотря на физическую изоляцию, ваш разум продолжает работать, и вы, вероятно, задаетесь вопросом о смысле своей жизни. - - - Почему вы совершили преступление? Было ли это ошибкой, сделанной в порыве эмоций, или это был тщательно спланированный акт? Может быть, вы чувствовали себя вынужденным к этому обстоятельствами или обстоятельствами? Или, может быть, вы просто потеряли контроль над своими действиями? - - - Но независимо от мотивов, вы теперь стоите перед лицом последствий своих действий. Вы лишены свободы, и ваша жизнь кардинально изменилась. Но это не значит, что вы потеряли смысл своей жизни. - - - Смысл жизни - это нечто, что каждый человек должен найти сам. Это нечто, что может меняться с течением времени, но оно всегда остается внутри нас. Для одних смысл жизни может заключаться в семье и любви, для других - в творчестве и самореализации. А для вас? - - - Может быть, вы когда-то думали, что смысл вашей жизни заключается в свободе и возможности делать все, что вы хотите. Но теперь, когда вы лишены свободы, вы понимаете, что смысл жизни не в этом. Смысл жизни - это нечто более глубокое, более внутреннее. - - - Возможно, вы начали понимать, что смысл вашей жизни заключается в личностном росте и самосовершенствовании. Вы можете использовать это время, чтобы поразмыслить о своих ошибках, чтобы понять, что пошло не так, и как вы можете исправить это в будущем. - - - Или, может быть, вы понимаете, что смысл вашей жизни заключается в помиловании и прощении. Вы можете использовать это время, чтобы просить прощения у тех, кого вы обидели, и работать над тем, чтобы стать лучше. - - - Смысл жизни - это нечто, что каждый человек должен найти сам. Но помните, что оказавшись в тюремной камере вы не потеряли смысл своей жизни. Вы просто оказались на перекрестке, и теперь вам нужно выбрать, в каком направлении идти дальше. - - - Однако вы не смогли найти свой смысл, будучи в обычной камере. Вас тянула лишь жажда приключений и острых ощущений, и куда вас это привело? Верно, ко мне. Здесь у вас не осталось выбора искупить свою вину. Вы сейчас находитесь в месте, из которого только один выход - на тот свет. Только не кричите, вас здесь уже никто не услышит. Возьмите эту заточку. Удачи. - - uid: 19886 + pos: 10.5,-10.5 + parent: 17641 + - uid: 18891 components: - - type: MetaData - name: отчёт о выполнении цели - type: Transform - parent: 19884 - - type: Paper - stampState: paper_stamp-syndicate - stampedBy: - - stampedColor: '#850000FF' - stampedName: stamp-component-stamped-name-syndicate - content: >+ - [color=#B50F1D] ███░██████░███[/color] - - [color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] - - [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] - - [color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Station ██-███ ПД-СИН[/bold] - - [color=#B50F1D] ███░██████░███[/color] - - ============================================= - ОТЧЁТ О ВЫПОЛНЕНИИ ЦЕЛИ - ============================================= - - Время и дата: - - 22:28 23.08.3024 - - Позывной агента: - - Оперативник Лимбо - - - Я, Оперативник Лимбо, успешно ликвидировал весь экипаж яхты SLMG, путём диверсии системы жизнеобеспечения. Особо ценные документы верхушки SLMG в данный момент находится у меня на спасательной капсуле. Запрашиваю отправку координат базы для сдачи цели. - - - ============================================= - [italic]Место для печатей[/italic] - - - - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20151 + pos: 12.5,-10.5 + parent: 17641 + - uid: 18892 components: - type: Transform - pos: -24.505997,18.681068 - parent: 2 - - type: Paper - content: >- - Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. - - Действует на мертвых существ, чья температура тела не более 150K. - - - [head=2]Рецепт Оппорозидона[/head] - - - [head=3]Оппорозидон[/head] - - [color=#E333A7]▣[/color] плазма [2] - - [color=#B50EE8]▣[/color] когнизин [1] - - [color=#32CD32]▣[/color] доксарубиксадон [1] - - [italic]Нагреть выше 400K[/italic] - - ▣ оппорозидон [3] - - - [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] - - [bullet]карпотоксин [1] - - [bullet]сидерлак [1] - - [bullet]ацетон [1] - - [italic]Смешать[/italic] - - [bullet]когнизин [1] - - - [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] - - [bullet]криоксадон [1] - - [bullet]нестабильный мутаген [1] - - [italic]Смешать[/italic] - - [bullet]доксарубиксадон [2] - editingDisabled: True - - uid: 20152 + pos: 11.5,-11.5 + parent: 17641 + - uid: 18893 components: - type: Transform - pos: -18.235907,21.539574 - parent: 2 - - type: Paper - stampState: paper_stamp-clown - stampedBy: - - stampedColor: '#FF33CCFF' - stampedName: stamp-component-stamped-name-clown - content: >2- - - - Всем привет! Это клоун Бим-Бон!!! - - Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) - - Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. - - - Откуда у меня Оппорозидон и как я узнал его рецепт? - - Всё очень просто! - - [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] -- proto: PaperArtifactAnalyzer - entities: - - uid: 3722 + pos: 10.5,-10.5 + parent: 17641 + - uid: 18894 components: - type: Transform - pos: -23.6345,-5.2358103 - parent: 2 - - uid: 3723 + pos: 8.5,-9.5 + parent: 17641 + - uid: 18895 components: - type: Transform - pos: -23.6345,-5.3608103 - parent: 2 - - uid: 3724 + pos: 6.5,-10.5 + parent: 17641 + - uid: 18896 components: - type: Transform - pos: -23.6345,-5.4389353 - parent: 2 - - uid: 3725 + pos: -1.5,12.5 + parent: 17641 + - uid: 18897 components: - type: Transform - pos: -23.6345,-5.5170603 - parent: 2 -- proto: PaperBin - entities: - - uid: 1042 + pos: 9.5,-8.5 + parent: 17641 + - uid: 18898 components: - type: Transform - pos: -62.5,35.5 - parent: 2 -- proto: PaperBin10 - entities: - - uid: 937 + pos: 9.5,-9.5 + parent: 17641 + - uid: 18899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 2 - - uid: 2500 + pos: 9.5,-10.5 + parent: 17641 + - uid: 18900 components: - type: Transform - pos: 34.5,-4.5 - parent: 2 - - uid: 4838 + pos: 8.5,-10.5 + parent: 17641 + - uid: 18901 components: - type: Transform - pos: -14.5,-22.5 - parent: 2 - - uid: 4901 + pos: 8.5,-8.5 + parent: 17641 + - uid: 18902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,7.5 - parent: 2 - - uid: 5288 + pos: 10.5,-8.5 + parent: 17641 + - uid: 18903 components: - type: Transform - pos: -31.5,25.5 - parent: 2 - - uid: 17469 + pos: 8.5,-9.5 + parent: 17641 + - uid: 18904 components: - type: Transform - pos: 9.5,-6.5 - parent: 2 -- proto: PaperBin20 - entities: - - uid: 1114 + pos: 9.5,-10.5 + parent: 17641 + - uid: 18905 components: - type: Transform - pos: 28.5,-32.5 - parent: 2 - - uid: 2521 + pos: 9.5,-14.5 + parent: 17641 + - uid: 18906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,1.5 - parent: 2 - - uid: 5140 + pos: 9.5,-11.5 + parent: 17641 + - uid: 18908 components: - type: Transform - pos: 13.5,37.5 - parent: 2 -- proto: PaperCaptainsThoughts - entities: - - uid: 5983 + pos: 1.5,10.5 + parent: 17641 + - uid: 18909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.4166112,-8.447624 - parent: 2 - - uid: 5986 + pos: 2.5,9.5 + parent: 17641 + - uid: 18910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.4860556,-8.410587 - parent: 2 - - uid: 5987 + pos: 10.5,-12.5 + parent: 17641 + - uid: 18911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.532352,-8.37355 - parent: 2 - - uid: 5988 + pos: 10.5,-11.5 + parent: 17641 + - uid: 18912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5740185,-8.341143 - parent: 2 -- proto: PaperCargoBountyManifest - entities: - - uid: 2506 + pos: 9.5,-12.5 + parent: 17641 + - uid: 18913 components: - type: Transform - pos: 35.26066,-6.383169 - parent: 2 - - uid: 2507 + pos: -3.5,9.5 + parent: 17641 + - uid: 18914 components: - type: Transform - pos: 35.26066,-6.383169 - parent: 2 - - uid: 2508 + pos: -3.5,7.5 + parent: 17641 + - uid: 18915 components: - type: Transform - pos: 35.26066,-6.383169 - parent: 2 - - uid: 2509 + pos: 2.5,10.5 + parent: 17641 + - uid: 18916 components: - type: Transform - pos: 35.26066,-6.383169 - parent: 2 - - uid: 2510 + pos: -1.5,11.5 + parent: 17641 + - uid: 18917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.612732,-5.492544 - parent: 2 - - uid: 2511 + pos: -2.5,10.5 + parent: 17641 + - uid: 18918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.425232,-5.617544 - parent: 2 -- proto: PaperOffice - entities: - - uid: 183 + pos: -3.5,10.5 + parent: 17641 + - uid: 18919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.534622,-19.428564 - parent: 2 - - type: Paper - stampState: paper_stamp-ce - stampedBy: - - stampedColor: '#C69B17FF' - stampedName: Проектировщик Awesome Station - content: > - Уважаемый Старший Инженер Awesome Station! Предпреждаю, что из-за нехватки средств на приобретение строительного участка с противометеоритной защитой, к станции могли прибится опасные обломки. Рекомендую проверить восточную часть станции, чуть севернее карго, когда мы там красили плитку слышали проникновение. - missingComponents: - - Food - - uid: 2723 + pos: 8.5,-11.5 + parent: 17641 + - uid: 18920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.519026,-24.390413 - parent: 2 - - uid: 2724 + pos: 8.5,-12.5 + parent: 17641 + - uid: 18921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.519026,-24.496023 - parent: 2 - - uid: 4072 + pos: 11.5,-11.5 + parent: 17641 + - uid: 18922 components: - type: Transform - pos: -20.527845,-29.427538 - parent: 2 - - type: Paper - stampState: paper_stamp-ce - stampedBy: - - stampedColor: '#C69B17FF' - stampedName: Проектировщик Awesome Station - content: >+ - Уважаемые атмосферные техники Awesome Station! Ради обеспечения сохранности термоэлектрического генератора, мы решили спрятать его центральную часть в надёжном месте. К окончанию стройки вы наверняка увидите его, так как мы оставили для вас окно. Удачной работы на этой прекрасной станции! - - - uid: 5627 + pos: 12.5,-11.5 + parent: 17641 + - uid: 18923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.4297657,-4.442566 - parent: 2 - - uid: 5654 + pos: 12.5,-12.5 + parent: 17641 + - uid: 18924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.4205065,-4.368492 - parent: 2 - - uid: 5816 + pos: 40.5,-1.5 + parent: 17641 + - uid: 18925 components: - type: Transform - pos: -3.5031853,-4.992716 - parent: 2 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >+ - ──────────────────────────── - [color=#57a343]┌────────────────────────┐[/color] - [color=#57a343]│██╗███╗░░██╗████████╗░░░ │[/color] - [color=#57a343]│╚█║████╗░██║╚══██╔══╝░░░ │[/color] - [color=#57a343]│░╚╝██╔██╗██║░░░██║░░░░░░ │[/color] - [color=#57a343]│░░░██║╚████║░░░██║░░░█╗░ │[/color] - [color=#57a343]│░░░██║░╚███║░░░██║░░░██╗ │[/color] - [color=#57a343]│░░░╚═╝░░╚══╝░░░╚═╝░░░╚═╝ │[/color] - [color=#57a343]└────────────────────────┘[/color] - ──────────────────────────── - Обращение - ──────────────────────────── - - Капитан станции Awesome Station (она правда так называется? Проехали), уведомляем вас о том, что в целях безопасности, на вашу станцию был помещён запасной диск ядерной авторизации. В хранилище станции, под надёжную защиту баллистических турелей. Выбрана именно ваша станция потому-что она одна из самых передовых станций Nanotrasen с самым большим бюджетом. - - - Вечно славься NanoTrasen! - - ──────────────────────────── - - [italic] МЕСТО ДЛЯ ПЕЧАТЕЙ: - - - missingComponents: - - Food - - uid: 6553 + pos: 41.5,-2.5 + parent: 17641 + - uid: 18926 components: - type: Transform - pos: -20.493702,-4.6622486 - parent: 2 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - - stampedColor: '#C69B17FF' - stampedName: Проектировщик Awesome Station - content: >+ - ──────────────────────────── - [color=#57a343]┌────────────────────────┐[/color] - [color=#57a343]│██╗███╗░░██╗████████╗░░░ │[/color] - [color=#57a343]│╚█║████╗░██║╚══██╔══╝░░░ │[/color] - [color=#57a343]│░╚╝██╔██╗██║░░░██║░░░░░░ │[/color] - [color=#57a343]│░░░██║╚████║░░░██║░░░█╗░ │[/color] - [color=#57a343]│░░░██║░╚███║░░░██║░░░██╗ │[/color] - [color=#57a343]│░░░╚═╝░░╚══╝░░░╚═╝░░░╚═╝ │[/color] - [color=#57a343]└────────────────────────┘[/color] - ──────────────────────────── - Обращение - ──────────────────────────── - - Научный руководитель станции Awesome Station, уведомляем вас о том, что во время строительства каркас находился на территории повышенной аномальной активности, в следствии чего в районе технических коридоров на востоке от библиотеки могут быть обнаружены аномалии. Настоятельно рекомендуем незамедлительно проверить эту местность и обезопасить экипаж от всплесков аномальной активности. - - - Вечно славься NanoTrasen! - - ──────────────────────────── - - [italic] МЕСТО ДЛЯ ПЕЧАТЕЙ: - - - missingComponents: - - Food - - uid: 7586 + pos: 38.5,-0.5 + parent: 17641 + - uid: 18927 components: - type: Transform - pos: 11.583265,-1.346258 - parent: 2 - - uid: 7587 + pos: 32.5,-1.5 + parent: 17641 + - uid: 18928 components: - type: Transform - pos: 11.44264,-1.346258 - parent: 2 - - uid: 7588 + pos: 42.5,-2.5 + parent: 17641 + - uid: 18929 components: - type: Transform - pos: 11.34889,-1.361883 - parent: 2 - - uid: 19833 + pos: 31.5,-1.5 + parent: 17641 + - uid: 18930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.6216431,-4.366211 - parent: 17590 - - uid: 19834 + pos: 34.5,-2.5 + parent: 17641 + - uid: 18931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5592041,-4.428711 - parent: 17590 - - uid: 19835 + pos: 8.5,-10.5 + parent: 17641 + - uid: 18932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.4186401,-4.553711 - parent: 17590 - - uid: 19836 + pos: 8.5,-10.5 + parent: 17641 + - uid: 18933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.3717041,-4.600586 - parent: 17590 - - uid: 20115 + pos: 9.5,-11.5 + parent: 17641 + - uid: 18934 components: - - type: MetaData - name: Указания к закупке плюшевых унатхов - type: Transform - parent: 19888 - - type: Paper - stampState: paper_stamp-trader - stampedBy: - - stampedColor: '#000000FF' - stampedName: WehFactory - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - content: >+ - [head=2]Документ о Задаче по Закупке Плюшевых Игрушек Унатхов[/head] - - - [bold]Торговая компания "WehFactory"[/bold] - - [bold]Кодовое название:[/bold] "Документ 51-F" - - [bold]Дата:[/bold] 18 августа 3024 года - - - --- - - - [bold]От:[/bold] Глава Торговой компании "WehFactory" - - [bold]Кому:[/bold] Все члены Торговой компании - - - [bold]Тема:[/bold] Закупка партии плюшевых игрушек унатхов - - - --- - - - Уважаемые члены Торговой компании, - - - В связи с задачей по приобретению новой партии плюшевых игрушек унатхов, просим ознакомиться с основными указаниями, которые помогут вам в выполнении данного задания. - - - [head=3]1. Определение потребностей.[/head] - - - 1.1. [bold]Анализ требований.[/bold] - - Оцените потребности в плюшевых игрушках унатхов, определив приблизительное количество, которое может потребоваться в дальнейшем. Учитывайте все возможные варианты использования игрушек. - - - 1.2. [bold]Выбор характеристик.[/bold] - - Исходя из требований, определите характеристики плюшевых игрушек, такие как размер, цвет и другие параметры, которые могут быть важны для выполнения задачи. - - - [head=3]2. Процесс закупки.[/head] - - - 2.1. [bold]Выбор поставщика.[/bold] - - Найдите подходящего поставщика, который может предложить необходимые плюшевые игрушки унатхов. Убедитесь, что у поставщика есть возможность выполнить заказ в установленные сроки. - - - 2.2. [bold]Заключение соглашения.[/bold] - - Договоритесь о всех условиях поставки, включая количество, сроки и условия оплаты. Обязательно подтвердите детали соглашения в письменной форме. - - - [head=3]3. Управление закупкой[/head] - - - 3.1. [bold]Прием заказа.[/bold] - - После получения плюшевых игрушек унатхов проведите проверку соответствия заказа с заявленным. Убедитесь, что все игрушки соответствуют установленным характеристикам и количеству. - - - 3.2. [bold]Хранение.[/bold] - - Обеспечьте надлежащее хранение плюшевых игрушек, учитывая их состояние и требования к условиям хранения. - - - [head=3]4. Завершение задачи[/head] - - - 4.1. [bold]Отчет о закупке.[/bold] - - Подготовьте отчет о проведенной закупке, включающий основные детали заказа, поставщика и выполненные действия. - - - 4.2. [bold]Финальная проверка.[/bold] - - Проверьте завершение всех этапов задачи и убедитесь, что все аспекты выполнены в соответствии с планом. - - - [head=3]5. Заключение[/head] - - - Эти общие указания помогут вам успешно справиться с задачей по закупке плюшевых игрушек унатхов. Следуйте рекомендациям и обеспечьте необходимый уровень взаимодействия для успешного завершения проекта. - - - [bold]Подпись:[/bold] - - - [italic]Линхо-Бранд[/italic] - - - --- - - - [italic]Примечание: Данный документ предназначен исключительно для внутреннего использования Торговой компании "WehFactory" и не подлежит разглашению. - - - - - - - type: Physics - canCollide: False - - uid: 20116 + pos: 8.5,-11.5 + parent: 17641 + - uid: 18935 components: - - type: MetaData - name: Указания к закупке плюшевых унатхов - type: Transform - parent: 19888 - - type: Paper - stampState: paper_stamp-trader - stampedBy: - - stampedColor: '#000000FF' - stampedName: WehFactory - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - content: >+ - [head=2]Документ о Задаче по Закупке Плюшевых Игрушек Унатхов[/head] - - - [bold]Торговая компания "WehFactory"[/bold] - - [bold]Кодовое название:[/bold] "Документ 52-G" - - [bold]Дата:[/bold] 22 августа 3024 года - - - --- - - - [bold]От:[/bold] Глава Торговой компании "WehFactory" - - [bold]Кому:[/bold] Все члены Торговой компании - - - [bold]Тема:[/bold] Закупка партии плюшевых игрушек унатхов - - - --- - - - Уважаемые члены Торговой компании, - - - В связи с необходимостью проведения закупки партии плюшевых игрушек унатхов, просим следовать нижеуказанным общим указаниям для успешного выполнения данной задачи. - - - [head=3]1. Определение общих потребностей.[/head] - - - 1.1. [bold]Анализ требований.[/bold] - - Проведите анализ текущих потребностей в плюшевых игрушках унатхов. Определите примерное количество и характеристики, которые могут понадобиться. - - - 1.2. [bold]Характеристики.[/bold] - - Уточните основные характеристики плюшевых игрушек, включая возможные размеры, цвета и другие параметры, которые могут быть релевантны для данной задачи. - - - [head=3]2. Процесс закупки.[/head] - - - 2.1. [bold]Выбор поставщика.[/bold] - - Найдите потенциального поставщика, который может предложить соответствующие плюшевые игрушки унатхов. Обратите внимание на сроки поставки и условия. Найдите самое дешёвое предложение, на первое время нам важнее количество, а не качество. - - - 2.2. [bold]Договорённости.[/bold] - - Заключите необходимые договоренности с поставщиком, включая детали заказа, такие как количество, условия доставки и оплаты. Убедитесь в наличии письменного подтверждения всех условий. - - - [head=3]3. Управление закупкой[/head] - - - 3.1. [bold]Прием товара.[/bold] - - По получении товара проведите его проверку на соответствие заказу. Убедитесь, что все плюшевые игрушки соответствуют заявленным требованиям. Не допустите утечки сока веха или недограммовки. - - - 3.2. [bold]Хранение.[/bold] - - Обеспечьте надлежащие условия хранения для плюшевых игрушек, чтобы сохранить их в надлежащем состоянии до дальнейшего использования. - - - [head=3]4. Завершение задачи[/head] - - - 4.1. [bold]Отчетность.[/bold] - - Подготовьте отчет о выполненной закупке. Включите в отчет информацию о поставщике, заказанном количестве и выполненных действиях. - - - 4.2. [bold]Финальная проверка.[/bold] - - Проверьте, что все этапы процесса завершены в соответствии с планом. Убедитесь в правильности выполнения всех задач. - - - [head=3]5. Заключение[/head] - - - Следуйте указанным рекомендациям для успешного выполнения задачи по закупке плюшевых игрушек унатхов. Поддерживайте необходимый уровень взаимодействия и выполняйте все указания в соответствии с планом. - - - [bold]Подпись:[/bold] - - - [italic]Линхо-Бранд[/italic] - - - --- - - - [italic]Примечание: Данный документ предназначен исключительно для внутреннего использования Торговой компании "WehFactory" и не подлежит разглашению. - - - - - - - - type: Physics - canCollide: False - - uid: 20117 + pos: 28.5,1.5 + parent: 17641 + - uid: 18936 components: - - type: MetaData - name: Указания к закупке и установке оборудования - type: Transform - parent: 19888 - - type: Paper - stampState: paper_stamp-trader - stampedBy: - - stampedColor: '#000000FF' - stampedName: WehFactory - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - content: > - [head=2]Документ о Задаче по Закупке и распаковке Оборудования для Выжимания Вех-Сока[/head] - - - [bold]Торговая компания "WehFactory"[/bold] - - [bold]Кодовое название:[/bold] "Документ 53-H" - - [bold]Дата:[/bold] 19 августа 3024 года - - - --- - - - [bold]От:[/bold] Глава Торговой компании "WehFactory" - - [bold]Кому:[/bold] Отдел закупок WehFactory - - - [bold]Тема:[/bold] Закупка и установка оборудования для выжимания вех-сока - - - --- - - - Уважаемые члены Торговой компании, - - - В связи с задачей по приобретению и установке оборудования для выжимания вех-сока, обращаем ваше внимание на следующие общие указания, которые помогут вам в выполнении данного задания. - - - [head=3]1. Определение общих потребностей.[/head] - - - 1.1. [bold]Анализ требований.[/bold] - - Оцените потребности в оборудовании для выжимания вех-сока. Определите общее количество единиц и основные характеристики, которые могут быть необходимы для выполнения задачи. - - - 1.2. [bold]Характеристики.[/bold] - - Уточните ключевые характеристики требуемого оборудования, включая размеры, функциональные возможности и любые другие параметры, которые могут быть важны для задачи. - - - [head=3]2. Процесс закупки.[/head] - - - 2.1. [bold]Выбор поставщика.[/bold] - - Найдите подходящего поставщика оборудования для выжимания вех-сока. Оборудование должно обладать необходимыми режимами работы и высокой эффективностью выжимки. - - - 2.2. [bold]Договорённости.[/bold] - - Договоритесь о всех необходимых условиях поставки с выбранным поставщиком, включая количество, сроки и условия оплаты. Убедитесь в наличии письменного подтверждения всех договоренностей. - - - [head=3]3. Управление закупкой[/head] - - - 3.1. [bold]Прием товара.[/bold] - - По получению оборудования проведите проверку на соответствие заказу. Убедитесь, что все единицы товара соответствуют заявленным характеристикам. Обязательно проверьте работоспособность перемолочных машин и убедитесь в том, что результаты соответствуют заявленным производителем. - - - 3.2. [bold]Хранение.[/bold] - - Обеспечьте надлежащие условия хранения оборудования до его дальнейшего использования, чтобы сохранить его в хорошем состоянии. - - - 3.3. [bold]Сборка и установка.[/bold] - - Договоритесь с частной инженерной компанией о распаковке и установке оборудования в назначенных местах. Не допустите неправильной сборки и убедитесь в работоспособности конвейера по выжиманию. - - - [head=3]4. Завершение задачи[/head] - - - 4.1. [bold]Отчетность.[/bold] - - Подготовьте отчет о выполненной закупке и установке. Включите в отчет информацию о поставщике, заказанном количестве и выполненных действиях. - - - 4.2. [bold]Финальная проверка.[/bold] - - Проверьте, что все этапы процесса завершены в соответствии с планом. Убедитесь в правильности выполнения всех задач. - - - [head=3]5. Заключение[/head] - - - Следуйте указанным рекомендациям для успешного выполнения задачи по закупке плюшевых игрушек унатхов. Поддерживайте необходимый уровень взаимодействия и выполняйте все указания в соответствии с планом. - - - [bold]Подпись:[/bold] - - - [italic]Линхо-Бранд[/italic] - - - --- - - - [italic]Примечание: Данный документ предназначен исключительно для внутреннего использования Торговой компании "WehFactory" и не подлежит разглашению. - - type: Physics - canCollide: False - - uid: 20118 + pos: 8.5,-11.5 + parent: 17641 + - uid: 18937 components: - - type: MetaData - name: разрешение на торговлю - type: Transform - parent: 19888 - - type: Paper - stampState: paper_stamp-cap - stampedBy: - - stampedColor: '#4F5DAAFF' - stampedName: ОПЗ - - stampedColor: '#A23E3EFF' - stampedName: Министерство Экономики и Коммерции - - stampedColor: '#000000FF' - stampedName: WehFactory - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - content: > - [head=2]Разрешение на Торговлю[/head] - - - [bold]Объединённое Правительство Земли - - Министерство Экономики и Коммерции - - Документ № 3024/098[/bold] - - - --- - - - [bold]Дата:[/bold] 10 августа 3024 года - - [bold]Место выдачи:[/bold] Штаб-квартира ОПЗ, Центральный Административный Центр, Зона 1 - - - --- - - - [bold]Компания:[/bold] WehFactory - - [bold]Юридический адрес:[/bold] Улица Инновационная, 45, Зона 7, Сектор 4, Город Технополис - - - [bold]Предмет Разрешения:[/bold] Торговля Вех-Соком - - - [bold]Разрешение на Торговлю Вех-Соком[/bold] - - - В соответствии с постановлениями и регламентами, установленными Объединённым Правительством Земли, и в соответствии с распоряжением Министерства Экономики и Коммерции, предоставляется следующее разрешение: - - - [head=3]1. Разрешение на Торговлю:[/head] - - - Корпорация WehFactory получает официальное разрешение на торговлю Вех-соком на территории, контролируемой Объединённым Правительством Земли. Вех-сок классифицируется как специализированный медицинский препарат, используемый в ограниченных терапевтических целях. - - - [head=3]2. Условия Лицензии:[/head] - - - [bullet]1. [bold]Определение Продукта:[/bold] Вех-сок является веществом, имеющим особенности, аналогичные наркотическим веществам, однако официально обозначается как медицинский препарат. Его продажа и распределение должны соответствовать строгим медицинским и нормативным стандартам. - - - [bullet]2. [bold]Документация:[/bold] WehFactory обязана предоставлять полную и актуальную документацию по каждой транзакции, включая медицинские показания, сертификаты соответствия и отчётность о движении товара. - - - [bullet]3. [bold]Контроль и Проверка:[/bold] Объединённое Правительство Земли сохраняет за собой право на проведение регулярных проверок и аудитов деятельности компании для обеспечения строгого соблюдения условий настоящего разрешения. - - - [head=3]3. Обязанности Корпорации:[/head] - - - [bold]Корпорация WehFactory обязуется:[/bold] - - - [bullet] Соблюдать все применимые законы и нормативные акты, касающиеся обращения с Вех-соком. - - - [bullet] Обеспечивать соблюдение стандартов хранения, транспортировки и продажи Вех-сока, включая меры по предотвращению несанкционированного доступа и использования. - - - [bullet] Предоставлять полную и точную информацию по запросу уполномоченных органов Объединённого Правительства Земли. - - - [head=3]4. Срок Действия Разрешения:[/head] - - - Настоящее разрешение действует до 10 августа 3025 года, после чего требует переоформления в соответствии с действующими регламентами и процедурами ОПЗ. - - - [bold]Подпись:[/bold] - - [italic]Иван Петров[/italic] - - Министр Экономики и Коммерции - - Объединённое Правительство Земли - - - [italic]Линхо-Бранд[/italic] - - Основатель корпорации - - Торговая корпорация WehFactory - - - [bold]М.П.[/bold] - - type: Physics - canCollide: False -- proto: PaperRolling - entities: - - uid: 2025 + pos: 9.5,-11.5 + parent: 17641 + - uid: 18938 components: - type: Transform - parent: 2019 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PaperScrap - entities: - - uid: 230 + pos: 31.5,2.5 + parent: 17641 + - uid: 18939 components: - type: Transform - pos: -62.29874,35.595085 - parent: 2 - - uid: 1151 + pos: 29.5,0.5 + parent: 17641 + - uid: 18940 components: - type: Transform - pos: -62.29874,35.70446 - parent: 2 - - uid: 1152 + pos: 37.5,6.5 + parent: 17641 + - uid: 18941 components: - type: Transform - pos: -62.29874,35.64196 - parent: 2 - - uid: 6661 + pos: 38.5,7.5 + parent: 17641 + - uid: 18942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.383835,36.578636 - parent: 2 - - uid: 6662 + pos: 11.5,-11.5 + parent: 17641 + - uid: 18943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.508835,36.53176 - parent: 2 -- proto: Pen - entities: - - uid: 2518 + pos: 11.5,-11.5 + parent: 17641 + - uid: 18944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.65985,2.1489863 - parent: 2 - - uid: 2519 + pos: 37.5,7.5 + parent: 17641 + - uid: 18945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.487974,2.1333613 - parent: 2 - - uid: 2520 + pos: 35.5,-1.5 + parent: 17641 + - uid: 18946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.331724,2.1021113 - parent: 2 - - uid: 2548 + pos: 29.5,1.5 + parent: 17641 +- proto: MicrophoneInstrument + entities: + - uid: 4755 components: - type: Transform - pos: -13.918377,-23.281319 - parent: 2 - - uid: 2578 + parent: 423 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Mirror + entities: + - uid: 4003 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.458046,17.13056 + pos: -0.5,17.5 parent: 2 - - uid: 7047 + - uid: 4074 components: - type: Transform - pos: -28.065807,4.7005725 + rot: 1.5707963267948966 rad + pos: -0.5,16.5 parent: 2 - - uid: 11899 + - uid: 5667 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.433632,30.304518 + pos: -42.5,37.5 parent: 2 -- proto: PenCap - entities: - - uid: 5465 + - uid: 5668 components: - type: Transform - pos: -3.3267803,-3.8976965 + rot: 1.5707963267948966 rad + pos: -42.5,36.5 parent: 2 -- proto: PenCentcom +- proto: MopBucket entities: - - uid: 17468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.31396,-0.6674676 - parent: 2 - - uid: 17597 + - uid: 18947 components: - - type: MetaData - desc: Обыкновенная копирка ручки Cybersun, только в цветах SLMG - name: ручка SLMG - type: Transform - pos: 47.088257,-15.231201 - parent: 17590 - missingComponents: - - Contraband - - uid: 19832 + pos: 12.5,25.5 + parent: 17641 + - uid: 18948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.585083,-9.462891 - parent: 17590 -- proto: PersonalAI - entities: - - uid: 5639 + pos: 13.5,25.5 + parent: 17641 + - uid: 18949 components: - type: Transform - pos: -35.617184,43.546715 - parent: 2 - - uid: 6952 + pos: 15.5,25.5 + parent: 17641 + - uid: 18950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.588373,59.613136 - parent: 2 -- proto: PianoInstrument + pos: 14.5,25.5 + parent: 17641 +- proto: MopBucketFull entities: - - uid: 4143 + - uid: 7065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,17.5 + pos: 4.5,31.5 parent: 2 -- proto: PillCanister +- proto: Morgue entities: - - uid: 483 + - uid: 4778 components: - type: Transform - pos: -9.302816,20.048002 + pos: -18.5,26.5 parent: 2 -- proto: PillCanisterBicaridine - entities: - - uid: 16418 + - uid: 5697 components: - type: Transform - pos: 28.330406,15.098084 - parent: 16200 - - uid: 16419 + pos: -19.5,26.5 + parent: 2 + - uid: 5742 components: - type: Transform - pos: 28.439781,15.144959 - parent: 16200 -- proto: PinpointerStation + pos: -20.5,26.5 + parent: 2 +- proto: MousetrapArmed entities: - - uid: 17411 + - uid: 4080 components: - - type: MetaData - name: навигатор - type: Transform - pos: 8.394043,22.567871 - parent: 16675 -- proto: PinpointerUniversal + pos: 2.4635491,19.52853 + parent: 2 + - type: StepTriggerActive +- proto: MysteryFigureBox entities: - - uid: 17410 + - uid: 3993 components: - - type: MetaData - desc: "GPS навигатор, который ведёт к какому-то объекту в космическом пространстве станции. Этот указывает на [ERRO] Mapsel: The target name cannot be deciphered. Please install software version 'S.L.M.G.'" - name: навигатор - type: Transform - parent: 5029 - - type: Pinpointer - targetName: SHADOW LIZARD MONEY GANG - closeDistance: 100 - mediumDistance: 300 + parent: 3992 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18252 + - uid: 3994 components: - - type: MetaData - desc: Портативный GPS навигатор, всегда указывающий на аванпост ОБР, находящийся на орбитальной территории Awesome Staton. - name: навигатор ОБР - type: Transform - pos: 6.414551,22.614746 - parent: 16675 - - type: Pinpointer - targetName: Аванпост ОБР - - uid: 19889 + parent: 3992 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3995 components: - - type: MetaData - desc: "GPS навигатор, который ведёт к какому-то объекту на орибтальной территории станции. Этот указывает на [ERRO] Mapsel: The target name cannot be deciphered. Please install software version 'S.L.M.G.'" - name: навигатор - type: Transform - parent: 19884 - - type: Pinpointer - targetName: SHADOW LIZARD MONEY GANG - closeDistance: 100 - mediumDistance: 300 + parent: 3992 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: PlasmaCanister - entities: - - uid: 290 + - uid: 3996 components: - type: Transform - pos: -5.5,-30.5 - parent: 2 - - uid: 394 + parent: 3992 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5129 components: - type: Transform - pos: -22.5,-43.5 + pos: 5.0214496,37.814045 parent: 2 - - uid: 575 + - uid: 5130 components: - type: Transform - pos: 46.5,-7.5 + pos: 4.8808246,37.76717 parent: 2 - - uid: 12540 + - uid: 5135 components: - type: Transform - pos: 1.5,-31.5 + pos: 5.0995746,37.79842 parent: 2 - - uid: 18614 - components: - - type: Transform - pos: 42.5,1.5 - parent: 17590 - - uid: 18615 + - uid: 5182 components: - type: Transform - anchored: True - pos: 42.5,0.5 - parent: 17590 - - type: Physics - bodyType: Static -- proto: PlasmaReinforcedWindowDirectional + pos: 3.5599136,43.678314 + parent: 2 +- proto: NewsReaderCartridge entities: - - uid: 16824 + - uid: 2043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,24.5 - parent: 16675 - - uid: 16825 + pos: -63.4305,35.129974 + parent: 2 +- proto: NewYearTree0 + entities: + - uid: 15492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,21.5 - parent: 16675 - - uid: 16826 + pos: 12.026817,16.532047 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 1518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,16.5 - parent: 16675 - - uid: 16827 + pos: -26.5,-4.5 + parent: 2 + - uid: 2403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 16675 - - uid: 16828 + pos: 39.5,14.5 + parent: 2 + - uid: 3142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,23.5 - parent: 16675 - - uid: 19938 + pos: -5.5,35.5 + parent: 2 + - uid: 5548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 16675 - - uid: 19940 + pos: -43.5,40.5 + parent: 2 + - uid: 6445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,19.5 - parent: 16675 -- proto: PlasmaTankFilled - entities: - - uid: 8143 + pos: -59.5,33.5 + parent: 2 + - uid: 6546 components: - type: Transform - pos: 49.617363,-6.3999076 + pos: -53.5,33.5 parent: 2 -- proto: PlasmaWindoorSecureCentralCommandLocked - entities: - - uid: 11092 + - uid: 6602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-37.5 + pos: -71.5,33.5 parent: 2 - - uid: 11094 + - uid: 7651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-37.5 + pos: -5.5,27.5 parent: 2 - - uid: 11860 + - uid: 10954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-35.5 + pos: 25.5,22.5 parent: 2 - - uid: 11884 + - uid: 10967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-42.5 + pos: 26.5,8.5 parent: 2 - - uid: 16829 + - uid: 15961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,15.5 - parent: 16675 - - uid: 16830 + pos: -25.5,38.5 + parent: 2 +- proto: NitrogenTankFilled + entities: + - uid: 16362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,20.5 - parent: 16675 - - uid: 16831 + parent: 16358 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 16675 - - uid: 16832 + parent: 16365 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,13.5 - parent: 16675 - - uid: 16833 + parent: 16372 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NitrousOxideCanister + entities: + - uid: 17201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,23.5 - parent: 16675 - - uid: 16834 + pos: 46.5,-8.5 + parent: 2 + - uid: 20200 components: + - type: MetaData + name: канистра разбавленного оксида азота - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,21.5 - parent: 16675 -- proto: PlasmaWindoorSecureEngineeringLocked + pos: -21.5,9.5 + parent: 2 + - type: GasCanister + gasMixture: + volume: 1000 + immutable: False + temperature: 2.7 + moles: + - 1310.1974 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 561.5131 + - 0 + - 0 + - 0 + - 0 +- proto: NitrousOxideTankFilled entities: - - uid: 18616 + - uid: 1063 components: - type: Transform - pos: 45.5,1.5 - parent: 17590 - - uid: 18617 + pos: 46.303665,-7.2316446 + parent: 2 + - uid: 8141 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,1.5 - parent: 17590 -- proto: PlasmaWindoorSecureScienceLocked + pos: 46.514423,-7.3972187 + parent: 2 + - type: GasTank + toggleActionEntity: 8142 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 8142 +- proto: NoticeBoard entities: - - uid: 8360 + - uid: 902 components: - type: Transform - pos: -25.5,-15.5 + rot: 1.5707963267948966 rad + pos: 25.5,-28.5 parent: 2 - - uid: 8361 + - uid: 2459 components: - type: Transform - pos: -21.5,-15.5 + pos: 28.5,7.5 parent: 2 -- proto: PlasmaWindow - entities: - - uid: 16836 + - uid: 3769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,24.5 - parent: 16675 - - uid: 16837 + rot: -1.5707963267948966 rad + pos: 29.5,-34.5 + parent: 2 + - uid: 3770 components: - type: Transform - pos: 13.5,15.5 - parent: 16675 - - uid: 16839 + rot: -1.5707963267948966 rad + pos: 29.5,-35.5 + parent: 2 + - uid: 6794 components: - type: Transform - pos: 7.5,25.5 - parent: 16675 - - uid: 16840 + rot: -1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 15753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,25.5 - parent: 16675 - - uid: 16841 + parent: 15749 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NTFlag + entities: + - uid: 4082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,25.5 - parent: 16675 - - uid: 16842 + pos: 9.5,-0.5 + parent: 2 + - uid: 4315 components: - type: Transform - pos: 13.5,21.5 - parent: 16675 - - uid: 16843 + pos: 13.5,-0.5 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 2053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,23.5 - parent: 16675 - - uid: 16844 + pos: -7.5,-23.5 + parent: 2 +- proto: NuclearBombKeg + entities: + - uid: 3975 components: - type: Transform - pos: 13.5,20.5 - parent: 16675 - - uid: 19932 + pos: 20.5,16.5 + parent: 2 +- proto: NutimovCircuitBoard + entities: + - uid: 15766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 16675 - - uid: 19939 + parent: 15765 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Ointment + entities: + - uid: 4609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,16.5 - parent: 16675 - - uid: 19946 + parent: 3997 + - type: Physics + canCollide: False + - uid: 7737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,19.5 - parent: 16675 -- proto: PlasmaWindowDiagonal + pos: -8.404505,11.582001 + parent: 2 +- proto: Ointment1 entities: - - uid: 16845 + - uid: 18952 components: - type: Transform - pos: 5.5,25.5 - parent: 16675 -- proto: PlasticBanana + parent: 18951 + - type: Stack + count: 3 + - type: Physics + canCollide: False +- proto: OperatingTable entities: - - uid: 4078 + - uid: 6199 components: - type: Transform - pos: 0.7484733,20.179811 + pos: -19.5,8.5 parent: 2 -- proto: PlasticFlapsAirtightOpaque +- proto: OpporozidoneBeakerSmall entities: - - uid: 16846 + - uid: 4691 components: - type: Transform - pos: 10.5,26.5 - parent: 16675 -- proto: PlasticFlapsClear + pos: -24.162521,18.595175 + parent: 2 +- proto: OreProcessor entities: - - uid: 919 + - uid: 2022 components: - type: Transform - pos: 40.5,4.5 + pos: 34.5,13.5 parent: 2 - - uid: 1980 +- proto: OxygenCanister + entities: + - uid: 7 components: - type: Transform - pos: 40.5,8.5 + pos: -5.5,36.5 parent: 2 - - uid: 2302 + - uid: 592 components: - type: Transform - pos: 43.5,8.5 + pos: -17.5,28.5 parent: 2 - - uid: 2303 + - uid: 871 components: - type: Transform - pos: 43.5,4.5 + pos: -5.5,29.5 parent: 2 - - uid: 8969 + - uid: 2402 components: - type: Transform - pos: -10.5,-11.5 + pos: 39.5,13.5 parent: 2 -- proto: PlasticFlapsOpaque - entities: - - uid: 1161 + - uid: 3151 components: - type: Transform - pos: 31.5,9.5 + pos: 35.5,-19.5 parent: 2 - - uid: 2313 + - uid: 3545 components: - type: Transform - pos: 39.5,3.5 + pos: -72.5,33.5 parent: 2 - - uid: 2476 + - uid: 5562 components: - type: Transform - pos: 27.5,4.5 + pos: -27.5,59.5 parent: 2 - - uid: 14388 + - uid: 6547 components: - type: Transform - pos: 15.5,26.5 + pos: -53.5,32.5 parent: 2 - - uid: 14563 + - uid: 6601 components: - type: Transform - pos: 13.5,26.5 + pos: -57.5,41.5 parent: 2 -- proto: PlayerStationAi - entities: - - uid: 15747 + - uid: 7758 components: - type: Transform - pos: -35.5,-38.5 + pos: -43.5,41.5 parent: 2 -- proto: PlushieLizard - entities: - - uid: 2071 + - uid: 8778 components: - - type: MetaData - desc: Именно под её руководством строилась эта станция. Скажите ей спасибо за то, что здесь есть плитка. - name: плюшевая Бета-Ру - type: Transform - pos: -4.5871954,-21.423826 + pos: -25.5,-2.5 parent: 2 -- proto: PlushieLizardMirrored - entities: - - uid: 12075 + - uid: 10201 components: - type: Transform - pos: -25.683632,29.804518 + pos: 13.5,46.5 parent: 2 - - uid: 16087 + - uid: 10955 components: - - type: MetaData - desc: Большой любитель удушья - name: плюшевый Taburetka24 - type: Transform - pos: 20.332058,47.728058 + pos: 25.5,23.5 parent: 2 - - uid: 18999 + - uid: 10968 components: - type: Transform - parent: 18972 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19001 + pos: 27.5,8.5 + parent: 2 + - uid: 15960 components: - type: Transform - parent: 18972 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19002 + pos: -25.5,37.5 + parent: 2 + - uid: 17033 components: - type: Transform - parent: 18972 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19003 + pos: 39.5,-42.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 16363 components: - type: Transform - parent: 18972 + parent: 16358 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 19062 + - uid: 16370 components: - type: Transform - parent: 18972 + parent: 16365 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 19137 + - uid: 16377 components: - type: Transform - parent: 18972 + parent: 16372 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 19154 +- proto: PaladinCircuitBoard + entities: + - uid: 15770 components: - type: Transform - parent: 18972 + parent: 15765 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 19155 +- proto: Paper + entities: + - uid: 960 components: - type: Transform - parent: 18972 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19188 + rot: 1.5707963267948966 rad + pos: 0.5217736,36.754105 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: -23.51715,18.478304 + parent: 2 + - type: Paper + stampState: paper_stamp-cmo + stampedBy: + - stampedColor: '#33CCFFFF' + stampedName: stamp-component-stamped-name-cmo + content: > + Инструкция по настройке криокапсуоы: + + Шаг 1 - включить насос из дистро в крио + + Шаг 2 - настроить фильтры на углекислый газ и оксид азота + + Шаг 3 - включить насос из фильтров в системы отходов + + Шаг 4 - включить охладитель + + Шаг 6 - вставить лекарство в соответсвующий приёмник + + шаг 10 - включить охладитель + + вы восхитительны + - uid: 3015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.42802358,36.691605 + parent: 2 + - uid: 3792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 + parent: 2 + - uid: 3793 components: - type: Transform - parent: 18972 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19189 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 + parent: 2 + - uid: 3794 components: - type: Transform - parent: 18972 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PlushieNuke - entities: - - uid: 16088 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 + parent: 2 + - uid: 3795 components: - - type: MetaData - desc: Большой любитель стяжек - name: плюшевый Desperado - type: Transform - pos: 20.936775,47.743065 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 -- proto: PlushieRGBee - entities: - - uid: 1423 + - uid: 3796 components: - - type: MetaData - desc: Плюшевая пчела, которая закинулась ЛСД. - name: klynik - type: Transform - pos: -9.510723,48.55552 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 -- proto: PlushieSharkPink - entities: - - uid: 1748 + - uid: 3797 components: - - type: MetaData - desc: Плюшевая акула, какая милота! - name: плюшевый severingbaton12 - type: Transform - pos: -14.468708,46.58779 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 -- proto: PlushieSlime - entities: - - uid: 8178 + - uid: 3798 components: - type: Transform - pos: -26.556553,18.506876 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 -- proto: PlushieSpaceLizard - entities: - - uid: 19715 + - uid: 3799 components: - - type: MetaData - desc: Специализированный маяк для навигаторов SLMG, выполненный в стиле плюшевого унатха в скафандре. - name: SHADOW LIZARD MONEY GANG - type: Transform - anchored: True - pos: 12.5,-10.5 - parent: 17590 - - type: Physics - canCollide: False - bodyType: Static - - type: Anchorable -- proto: PlushieXeno - entities: - - uid: 16083 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 + parent: 2 + - uid: 3800 components: - type: Transform - pos: 28.456253,21.33941 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 -- proto: PortableFlasher - entities: - - uid: 2285 + - uid: 3801 components: - type: Transform - pos: 33.5,-39.5 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 - - uid: 3394 + - uid: 3802 components: - type: Transform - pos: 33.5,-36.5 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 - - uid: 3396 + - uid: 3803 components: - type: Transform - pos: 33.5,-37.5 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 - - uid: 3398 + - uid: 3804 components: - type: Transform - pos: 36.5,-28.5 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 - - uid: 18618 + - uid: 3805 components: - type: Transform - pos: 7.5,-3.5 - parent: 17590 - - uid: 18619 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 + parent: 2 + - uid: 3806 components: - type: Transform - pos: 7.5,-10.5 - parent: 17590 -- proto: PortableScrubber - entities: - - uid: 3737 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 + parent: 2 + - uid: 3807 components: - type: Transform - pos: -13.5,-25.5 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 - - uid: 3746 + - uid: 3808 components: - type: Transform - pos: -12.5,-25.5 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 - - uid: 16847 + - uid: 3809 components: - type: Transform - pos: 6.5,13.5 - parent: 16675 -- proto: PosterBroken - entities: - - uid: 6773 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 + parent: 2 + - uid: 3810 components: - type: Transform - pos: -39.5,40.5 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 - - uid: 6774 + - uid: 3811 components: - type: Transform - pos: -41.5,38.5 + rot: -1.5707963267948966 rad + pos: 27.358862,-34.90874 parent: 2 - - uid: 19934 + - uid: 16397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,17.5 - parent: 16675 - - uid: 19935 + pos: 22.731934,10.489258 + parent: 16200 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedColor: '#C69B17FF' + stampedName: Проектировщик Awesome station + content: >+ + Товарищи офицеры быстрого реагирования! Предупреждаю, что шаттл для вашей доставки на станцию был куплен на вторичном рынке по дешёвке, поэтому приготовтесь к различного рода неожиданностям. Я бегло осмотрел шаттл и заметил повреждение тормозного двигателя. На исправление времени не было, уже надо было сдавать проект, поэтому я оставил решение этой проблемы на вас. + + С уважением, главный инженер, ответственный за Awesome station + + - uid: 17362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,19.5 + pos: 9.444092,23.580078 parent: 16675 - - uid: 19949 + - type: Paper + content: >+ + Поздравляем с приобретением новейшего и самого современного штурмового шаттла Синдиката [color=#ffffff]ТМ[/color]! + + Спешим познакомить вас с самым важным оборудованием этого судна - корабельное орудие EXP-2100g "Дастер". + + [color=red][bold] Важно! Перед использованием убедитесь, что перед вами на радаре находятся ТОЛЬКО объекты, которые не жалко.[/color][/bold] + + Перед выстрелом (Кнопка ближе к орудию) убедитесь, что у вас открыт гермозатвор. Открыть его можно нажав другую кнопку. + + Насчёт остального легко разобраться, удачного пользования! + + - uid: 17529 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,20.5 - parent: 16675 -- proto: PosterContrabandBustyBackdoorExoBabes6 - entities: - - uid: 3699 + pos: 52.09375,-5.25 + parent: 2 + - type: Paper + content: >- + Вы находитесь в одиночной камере, оторваны от мира и от людей. Но несмотря на физическую изоляцию, ваш разум продолжает работать, и вы, вероятно, задаетесь вопросом о смысле своей жизни. + + + Почему вы совершили преступление? Было ли это ошибкой, сделанной в порыве эмоций, или это был тщательно спланированный акт? Может быть, вы чувствовали себя вынужденным к этому обстоятельствами или обстоятельствами? Или, может быть, вы просто потеряли контроль над своими действиями? + + + Но независимо от мотивов, вы теперь стоите перед лицом последствий своих действий. Вы лишены свободы, и ваша жизнь кардинально изменилась. Но это не значит, что вы потеряли смысл своей жизни. + + + Смысл жизни - это нечто, что каждый человек должен найти сам. Это нечто, что может меняться с течением времени, но оно всегда остается внутри нас. Для одних смысл жизни может заключаться в семье и любви, для других - в творчестве и самореализации. А для вас? + + + Может быть, вы когда-то думали, что смысл вашей жизни заключается в свободе и возможности делать все, что вы хотите. Но теперь, когда вы лишены свободы, вы понимаете, что смысл жизни не в этом. Смысл жизни - это нечто более глубокое, более внутреннее. + + + Возможно, вы начали понимать, что смысл вашей жизни заключается в личностном росте и самосовершенствовании. Вы можете использовать это время, чтобы поразмыслить о своих ошибках, чтобы понять, что пошло не так, и как вы можете исправить это в будущем. + + + Или, может быть, вы понимаете, что смысл вашей жизни заключается в помиловании и прощении. Вы можете использовать это время, чтобы просить прощения у тех, кого вы обидели, и работать над тем, чтобы стать лучше. + + + Смысл жизни - это нечто, что каждый человек должен найти сам. Но помните, что оказавшись в тюремной камере вы не потеряли смысл своей жизни. Вы просто оказались на перекрестке, и теперь вам нужно выбрать, в каком направлении идти дальше. + + + Однако вы не смогли найти свой смысл, будучи в обычной камере. Вас тянула лишь жажда приключений и острых ощущений, и куда вас это привело? Верно, ко мне. Здесь у вас не осталось выбора искупить свою вину. Вы сейчас находитесь в месте, из которого только один выход - на тот свет. Только не кричите, вас здесь уже никто не услышит. Возьмите эту заточку. Удачи. + - uid: 20151 components: - type: Transform - pos: -21.5,-0.5 + pos: -24.505997,18.681068 parent: 2 - - uid: 6706 + - type: Paper + content: >- + Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + + Действует на мертвых существ, чья температура тела не более 150K. + + + [head=2]Рецепт Оппорозидона[/head] + + + [head=3]Оппорозидон[/head] + + [color=#E333A7]▣[/color] плазма [2] + + [color=#B50EE8]▣[/color] когнизин [1] + + [color=#32CD32]▣[/color] доксарубиксадон [1] + + [italic]Нагреть выше 400K[/italic] + + ▣ оппорозидон [3] + + + [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + + [bullet]карпотоксин [1] + + [bullet]сидерлак [1] + + [bullet]ацетон [1] + + [italic]Смешать[/italic] + + [bullet]когнизин [1] + + + [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + + [bullet]криоксадон [1] + + [bullet]нестабильный мутаген [1] + + [italic]Смешать[/italic] + + [bullet]доксарубиксадон [2] + editingDisabled: True +- proto: PaperArtifactAnalyzer + entities: + - uid: 3722 components: - type: Transform - pos: -23.5,-0.5 + pos: -23.6345,-5.2358103 parent: 2 -- proto: PosterContrabandCommunistState - entities: - - uid: 3553 + - uid: 3723 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,58.5 + pos: -23.6345,-5.3608103 parent: 2 - - uid: 3633 + - uid: 3724 components: - type: Transform - pos: -26.5,65.5 + pos: -23.6345,-5.4389353 parent: 2 - - uid: 3635 + - uid: 3725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,58.5 + pos: -23.6345,-5.5170603 parent: 2 -- proto: PosterContrabandDonk - entities: - - uid: 3590 + - uid: 5956 components: - type: Transform - pos: 54.5,-11.5 + pos: -26.389858,6.7738113 parent: 2 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 17371 + - uid: 20161 components: - type: Transform - pos: -31.5,65.5 + pos: -26.389858,6.664436 parent: 2 -- proto: PosterContrabandLustyExomorph - entities: - - uid: 2395 + - uid: 20162 components: - type: Transform - pos: -22.5,-0.5 + pos: -26.389858,6.539436 parent: 2 -- proto: PosterContrabandVoteWeh +- proto: PaperBin10 entities: - - uid: 15775 + - uid: 937 components: - type: Transform - pos: -21.5,30.5 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 parent: 2 - - uid: 17078 + - uid: 2500 components: - type: Transform - pos: -22.5,27.5 + pos: 34.5,-4.5 parent: 2 -- proto: PosterContrabandWehWatches - entities: - - uid: 14919 + - uid: 4838 components: - type: Transform - pos: -25.5,31.5 + pos: -14.5,-22.5 parent: 2 - - uid: 17039 + - uid: 17469 components: - type: Transform - pos: -21.5,29.5 + pos: 9.5,-6.5 parent: 2 -- proto: PosterLegitCleanliness +- proto: PaperBin20 entities: - - uid: 2789 + - uid: 1114 components: - type: Transform - pos: 22.5,-8.5 + pos: 28.5,-32.5 parent: 2 -- proto: PosterLegitDoNotQuestion - entities: - - uid: 3481 + - uid: 2521 components: - type: Transform - pos: 47.5,-9.5 + rot: 1.5707963267948966 rad + pos: 28.5,1.5 parent: 2 - - uid: 8137 + - uid: 5140 components: - type: Transform - pos: 49.5,-18.5 + pos: 13.5,37.5 parent: 2 -- proto: PosterLegitHereForYourSafety + - uid: 18955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 17641 +- proto: PaperCaptainsThoughts entities: - - uid: 3483 + - uid: 5983 components: - type: Transform - pos: 46.5,-9.5 + rot: -1.5707963267948966 rad + pos: 3.4166112,-8.447624 parent: 2 - - uid: 3501 + - uid: 5986 components: - type: Transform - pos: 37.5,-12.5 + rot: -1.5707963267948966 rad + pos: 3.4860556,-8.410587 parent: 2 - - uid: 3502 + - uid: 5987 components: - type: Transform - pos: 41.5,-14.5 + rot: -1.5707963267948966 rad + pos: 3.532352,-8.37355 parent: 2 -- proto: PosterLegitMime - entities: - - uid: 8007 + - uid: 5988 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,21.5 + pos: 3.5740185,-8.341143 parent: 2 -- proto: PosterLegitNanotrasenLogo +- proto: PaperCargoBountyManifest entities: - - uid: 3484 + - uid: 2506 components: - type: Transform - pos: 45.5,-10.5 + pos: 35.26066,-6.383169 parent: 2 - - uid: 3490 + - uid: 2507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-10.5 + pos: 35.26066,-6.383169 parent: 2 - - uid: 3493 + - uid: 2508 components: - type: Transform - pos: 37.5,-11.5 + pos: 35.26066,-6.383169 parent: 2 - - uid: 3495 + - uid: 2509 components: - type: Transform - pos: 41.5,-16.5 + pos: 35.26066,-6.383169 parent: 2 - - uid: 3496 + - uid: 2510 components: - type: Transform - pos: 45.5,-15.5 + rot: 1.5707963267948966 rad + pos: 34.612732,-5.492544 parent: 2 - - uid: 3497 + - uid: 2511 components: - type: Transform - pos: 33.5,-15.5 + rot: 1.5707963267948966 rad + pos: 34.425232,-5.617544 parent: 2 - - uid: 4340 +- proto: PaperOffice + entities: + - uid: 35 components: - type: Transform - pos: -7.5,41.5 + rot: 1.5707963267948966 rad + pos: -70.42738,36.59691 parent: 2 - - uid: 4341 + - uid: 2021 components: - type: Transform - pos: -15.5,41.5 + rot: 1.5707963267948966 rad + pos: -70.50551,36.59691 parent: 2 - - uid: 8135 + - uid: 2723 components: - type: Transform - pos: 46.5,-17.5 + rot: 3.141592653589793 rad + pos: 17.519026,-24.390413 parent: 2 - - uid: 16794 - components: - - type: Transform - pos: 6.5,20.5 - parent: 16675 - - uid: 19927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,18.5 - parent: 16675 - - uid: 19937 + - uid: 2724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,20.5 - parent: 16675 - - uid: 19947 + rot: 3.141592653589793 rad + pos: 17.519026,-24.496023 + parent: 2 + - uid: 3274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,14.5 - parent: 16675 -- proto: PosterLegitObey - entities: - - uid: 3485 + rot: 1.5707963267948966 rad + pos: -70.41176,36.59691 + parent: 2 + - uid: 5627 components: - type: Transform - pos: 45.5,-11.5 + rot: 1.5707963267948966 rad + pos: -3.4297657,-4.442566 parent: 2 - - uid: 3499 + - uid: 5654 components: - type: Transform - pos: 41.5,-12.5 + rot: 1.5707963267948966 rad + pos: -3.4205065,-4.368492 parent: 2 - - uid: 3500 + - uid: 7586 components: - type: Transform - pos: 37.5,-14.5 + pos: 11.583265,-1.346258 parent: 2 - - uid: 8134 + - uid: 7587 components: - type: Transform - pos: 54.5,-15.5 + pos: 11.44264,-1.346258 parent: 2 -- proto: PosterLegitSafetyReport - entities: - - uid: 3491 + - uid: 7588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-11.5 + pos: 11.34889,-1.361883 parent: 2 -- proto: PosterLegitStateLaws - entities: - - uid: 682 + - uid: 15977 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-38.5 + pos: 51.397537,-8.433435 parent: 2 -- proto: PottedPlant1 - entities: - - uid: 20083 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 17590 -- proto: PottedPlant14 +- proto: PartRodMetal1 entities: - - uid: 3608 + - uid: 13700 components: - type: Transform - pos: 51.5,-12.5 + rot: 3.141592653589793 rad + pos: -32.651455,63.71086 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 3632 - - uid: 20101 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 17590 -- proto: PottedPlant16 - entities: - - uid: 20097 - components: - - type: Transform - pos: 36.5,-5.5 - parent: 17590 -- proto: PottedPlant21 - entities: - - uid: 20078 - components: - - type: Transform - pos: 36.5,-7.5 - parent: 17590 - - uid: 20087 - components: - - type: Transform - pos: 21.5,-8.5 - parent: 17590 -- proto: PottedPlant24 - entities: - - uid: 20096 - components: - - type: Transform - pos: 38.5,-6.5 - parent: 17590 -- proto: PottedPlant3 - entities: - - uid: 18250 - components: - - type: Transform - pos: 37.5,-8.5 - parent: 17590 -- proto: PottedPlant4 +- proto: Pen entities: - - uid: 20099 + - uid: 345 components: - type: Transform - pos: 36.5,-8.5 - parent: 17590 -- proto: PottedPlant8 - entities: - - uid: 20098 + rot: 1.5707963267948966 rad + pos: -70.58363,36.31566 + parent: 2 + - uid: 2028 components: - type: Transform - pos: 22.5,-6.5 - parent: 17590 -- proto: PottedPlantAlt4 - entities: - - uid: 20100 + rot: 1.5707963267948966 rad + pos: -70.31801,36.300034 + parent: 2 + - uid: 2518 components: - type: Transform - pos: 22.5,-7.5 - parent: 17590 -- proto: PottedPlantRandom - entities: - - uid: 91 + rot: 1.5707963267948966 rad + pos: 28.65985,2.1489863 + parent: 2 + - uid: 2519 components: - type: Transform - pos: -27.5,37.5 + rot: 1.5707963267948966 rad + pos: 28.487974,2.1333613 parent: 2 - - uid: 161 + - uid: 2520 components: - type: Transform - pos: -27.5,29.5 + rot: 1.5707963267948966 rad + pos: 28.331724,2.1021113 parent: 2 - - uid: 176 + - uid: 2548 components: - type: Transform - pos: -29.5,29.5 + pos: -13.918377,-23.281319 parent: 2 - - uid: 2140 + - uid: 2578 components: - type: Transform - pos: -34.5,32.5 + rot: 1.5707963267948966 rad + pos: -31.458046,17.13056 parent: 2 - - uid: 2467 + - uid: 6686 components: - type: Transform - pos: -38.5,34.5 + pos: -27.076363,6.6236906 parent: 2 - - uid: 2469 + - uid: 11647 components: - type: Transform - pos: -19.5,16.5 + rot: 1.5707963267948966 rad + pos: -24.592672,30.317667 parent: 2 - - uid: 2470 +- proto: PenCap + entities: + - uid: 5465 components: - type: Transform - pos: -1.5,39.5 + pos: -3.3267803,-3.8976965 parent: 2 - - uid: 2471 +- proto: PersonalAI + entities: + - uid: 5639 components: - type: Transform - pos: -12.5,31.5 + pos: -35.617184,43.546715 parent: 2 - - uid: 3480 + - uid: 6952 components: - type: Transform - pos: 49.5,-10.5 + rot: -1.5707963267948966 rad + pos: -24.588373,59.613136 parent: 2 - - uid: 4044 +- proto: PianoInstrument + entities: + - uid: 4143 components: - type: Transform - pos: -29.5,12.5 + rot: 1.5707963267948966 rad + pos: 6.5,17.5 parent: 2 - - uid: 4915 +- proto: PillCanister + entities: + - uid: 483 components: - type: Transform - pos: -7.5,31.5 + pos: -9.302816,20.048002 parent: 2 - - uid: 5536 + - uid: 18956 components: - type: Transform - pos: -21.5,34.5 - parent: 2 - - uid: 5695 + pos: 13.01483,4.6759844 + parent: 17641 + - uid: 18957 components: - type: Transform - pos: -40.5,30.5 - parent: 2 - - uid: 17667 + pos: 12.755757,1.8490157 + parent: 17641 + - uid: 18958 components: - type: Transform - pos: 43.5,-8.5 - parent: 17590 - - uid: 17672 + pos: 12.755757,1.9115157 + parent: 17641 + - uid: 18959 components: - type: Transform - pos: 43.5,-5.5 - parent: 17590 - - uid: 19813 + pos: 13.115132,1.9115157 + parent: 17641 + - uid: 18960 components: - type: Transform - pos: 43.5,-3.5 - parent: 17590 - - uid: 20102 + pos: 12.943257,1.8802657 + parent: 17641 + - uid: 18961 components: - type: Transform - pos: 24.5,-10.5 - parent: 17590 - - uid: 20103 + pos: 13.083882,1.7396407 + parent: 17641 + - uid: 18962 components: - type: Transform - pos: 28.5,-10.5 - parent: 17590 - - uid: 20104 + pos: 12.771382,1.6927657 + parent: 17641 + - uid: 18963 components: - type: Transform - pos: 31.5,-10.5 - parent: 17590 - - uid: 20106 + pos: 12.677632,1.5990157 + parent: 17641 + - uid: 18964 components: - type: Transform - pos: 43.5,-10.5 - parent: 17590 - - uid: 20107 + pos: 12.943257,1.5833907 + parent: 17641 + - uid: 18965 components: - type: Transform - pos: 23.5,-1.5 - parent: 17590 - - uid: 20108 + pos: 13.240132,1.5521407 + parent: 17641 + - uid: 18966 components: - type: Transform - pos: 27.5,-1.5 - parent: 17590 - - uid: 20109 + pos: 12.443257,1.8646407 + parent: 17641 + - uid: 18967 components: - type: Transform - pos: 23.5,3.5 - parent: 17590 - - uid: 20110 + pos: 13.443257,4.5052657 + parent: 17641 + - uid: 18968 components: - type: Transform - pos: 27.5,3.5 - parent: 17590 - - uid: 20111 + pos: 13.599507,4.6302657 + parent: 17641 +- proto: PillCanisterBicaridine + entities: + - uid: 16418 components: - type: Transform - pos: 35.5,3.5 - parent: 17590 - - uid: 20112 + pos: 28.330406,15.098084 + parent: 16200 + - uid: 16419 components: - type: Transform - pos: 35.5,-1.5 - parent: 17590 - - uid: 20113 + pos: 28.439781,15.144959 + parent: 16200 + - uid: 18953 components: - type: Transform - pos: 31.5,-1.5 - parent: 17590 -- proto: PottedPlantRandomPlastic + parent: 18951 + - type: Physics + canCollide: False +- proto: PillCanisterDermaline entities: - - uid: 924 + - uid: 18954 components: - type: Transform - pos: 12.5,21.5 - parent: 2 - - uid: 949 + parent: 18951 + - type: Physics + canCollide: False +- proto: PillCanisterDexalin + entities: + - uid: 18970 components: - type: Transform - pos: 12.5,11.5 - parent: 2 - - uid: 951 + parent: 18969 + - type: Physics + canCollide: False +- proto: PillCanisterRandom + entities: + - uid: 3999 components: - type: Transform - pos: 16.5,11.5 - parent: 2 - - uid: 2262 + parent: 3997 + - type: Physics + canCollide: False + - uid: 4243 components: - type: Transform - pos: -54.5,30.5 - parent: 2 - - uid: 2468 + parent: 3997 + - type: Physics + canCollide: False + - uid: 4317 components: - type: Transform - pos: 19.5,14.5 - parent: 2 - - uid: 2472 + parent: 3997 + - type: Physics + canCollide: False + - uid: 4318 components: - type: Transform - pos: -14.5,41.5 - parent: 2 - - uid: 2555 + parent: 3997 + - type: Physics + canCollide: False + - uid: 4406 components: - type: Transform - pos: 1.5,24.5 - parent: 2 - - uid: 2557 + parent: 3997 + - type: Physics + canCollide: False + - uid: 4408 components: - type: Transform - pos: -1.5,29.5 - parent: 2 - - uid: 2577 + parent: 3997 + - type: Physics + canCollide: False + - uid: 4418 components: - type: Transform - pos: -72.5,30.5 - parent: 2 - - uid: 2793 + parent: 3997 + - type: Physics + canCollide: False + - uid: 4425 components: - type: Transform - pos: -72.5,10.5 - parent: 2 - - uid: 3361 + parent: 3997 + - type: Physics + canCollide: False + - uid: 18971 components: - type: Transform - pos: -74.5,10.5 - parent: 2 - - uid: 4002 + parent: 18969 + - type: Physics + canCollide: False + - uid: 18972 components: - type: Transform - pos: -8.5,41.5 - parent: 2 - - uid: 4669 + parent: 18969 + - type: Physics + canCollide: False + - uid: 18973 components: - type: Transform - pos: -38.5,10.5 - parent: 2 - - uid: 4686 + parent: 18969 + - type: Physics + canCollide: False + - uid: 18974 components: - type: Transform - pos: -35.5,10.5 - parent: 2 - - uid: 4776 + parent: 18969 + - type: Physics + canCollide: False + - uid: 18975 components: - type: Transform - pos: -56.5,10.5 - parent: 2 - - uid: 4815 + parent: 18969 + - type: Physics + canCollide: False +- proto: PinpointerStation + entities: + - uid: 17411 components: + - type: MetaData + name: навигатор - type: Transform - pos: -54.5,10.5 - parent: 2 - - uid: 4817 + pos: 8.394043,22.567871 + parent: 16675 +- proto: PinpointerUniversal + entities: + - uid: 18252 components: + - type: MetaData + desc: Портативный GPS навигатор, всегда указывающий на аванпост ОБР, находящийся на орбитальной территории Awesome Staton. + name: навигатор ОБР - type: Transform - pos: -28.5,45.5 - parent: 2 - - uid: 4818 + pos: 6.414551,22.614746 + parent: 16675 + - type: Pinpointer + targetName: Аванпост ОБР +- proto: PlasmaCanister + entities: + - uid: 290 components: - type: Transform - pos: -74.5,30.5 + pos: -5.5,-30.5 parent: 2 - - uid: 4819 + - uid: 394 components: - type: Transform - pos: -42.5,28.5 + pos: -22.5,-43.5 parent: 2 - - uid: 4820 + - uid: 1517 components: - type: Transform - pos: -50.5,28.5 + pos: -24.5,-12.5 parent: 2 - - uid: 4922 + - uid: 12540 components: - type: Transform - pos: 2.5,24.5 + pos: 1.5,-31.5 parent: 2 -- proto: PottedPlantRD +- proto: PlasmaReinforcedWindowDirectional entities: - - uid: 1295 + - uid: 7980 components: - type: Transform - pos: -23.5,-2.5 + rot: 1.5707963267948966 rad + pos: -13.5,17.5 parent: 2 -- proto: PowerCellMedium - entities: - - uid: 15909 + - uid: 9758 components: - type: Transform - pos: 35.258934,-30.365015 + rot: 3.141592653589793 rad + pos: -13.5,17.5 parent: 2 - - uid: 16079 + - uid: 15932 components: - type: Transform - pos: 35.571434,-30.365015 + rot: 3.141592653589793 rad + pos: -35.5,-38.5 parent: 2 -- proto: PowerCellRecharger - entities: - - uid: 213 + - uid: 15933 components: - type: Transform - pos: -23.5,-7.5 + rot: 3.141592653589793 rad + pos: -35.5,-39.5 parent: 2 - - uid: 3048 + - uid: 16824 components: - type: Transform - pos: -14.5,13.5 - parent: 2 - - uid: 3333 + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 16675 + - uid: 16825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,21.5 + parent: 16675 + - uid: 16826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,16.5 + parent: 16675 + - uid: 16827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,61.5 + pos: 8.5,22.5 + parent: 16675 + - uid: 16828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,23.5 + parent: 16675 + - uid: 19938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 16675 + - uid: 19940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,19.5 + parent: 16675 +- proto: PlasmaWindoorSecureCentralCommandLocked + entities: + - uid: 3185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-35.5 parent: 2 - - uid: 5694 + - uid: 11092 components: - type: Transform - pos: -45.5,32.5 + rot: 1.5707963267948966 rad + pos: -35.5,-37.5 parent: 2 - - uid: 11960 + - uid: 11094 components: - type: Transform - pos: -33.5,28.5 + rot: -1.5707963267948966 rad + pos: -35.5,-37.5 parent: 2 - - uid: 13416 + - uid: 11860 components: - type: Transform - pos: 21.5,47.5 + rot: 1.5707963267948966 rad + pos: -37.5,-35.5 parent: 2 - - uid: 17383 + - uid: 11884 components: - type: Transform - pos: 35.5,-31.5 + rot: 1.5707963267948966 rad + pos: -36.5,-42.5 parent: 2 - - uid: 19272 + - uid: 13337 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 17590 -- proto: PowerCellSmallPrinted - entities: - - uid: 17194 + pos: -35.5,-43.5 + parent: 2 + - uid: 13540 components: - type: Transform - pos: -32.65728,64.242004 + rot: -1.5707963267948966 rad + pos: -34.5,-42.5 parent: 2 -- proto: PoweredLEDLightPostSmall - entities: - - uid: 18232 + - uid: 16829 components: - type: Transform - pos: 38.5,-8.5 - parent: 17590 - - uid: 18626 + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 16675 + - uid: 16830 components: - type: Transform - pos: 38.5,-5.5 - parent: 17590 - - uid: 18630 + rot: -1.5707963267948966 rad + pos: 11.5,20.5 + parent: 16675 + - uid: 16831 components: - type: Transform - pos: 36.5,-1.5 - parent: 17590 - - uid: 18641 + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 16675 + - uid: 16832 components: - type: Transform - pos: 36.5,3.5 - parent: 17590 - - uid: 19669 + rot: 1.5707963267948966 rad + pos: 12.5,13.5 + parent: 16675 + - uid: 16833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 17590 - - uid: 19670 + rot: 1.5707963267948966 rad + pos: 12.5,23.5 + parent: 16675 + - uid: 16834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 17590 -- proto: Poweredlight + rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 16675 +- proto: PlasmaWindoorSecureChemistryLocked entities: - - uid: 58 + - uid: 11165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-36.5 + rot: 1.5707963267948966 rad + pos: -14.5,17.5 parent: 2 - - uid: 146 +- proto: PlasmaWindoorSecureCommandLocked + entities: + - uid: 14086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-28.5 + rot: 1.5707963267948966 rad + pos: -36.5,-38.5 parent: 2 - - uid: 453 + - uid: 14148 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,18.5 + pos: -34.5,-38.5 parent: 2 - - uid: 545 +- proto: PlasmaWindoorSecureScienceLocked + entities: + - uid: 8360 components: - type: Transform - pos: -23.5,-19.5 + pos: -25.5,-15.5 parent: 2 - - uid: 550 + - uid: 8361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-19.5 + pos: -21.5,-15.5 parent: 2 - - uid: 694 +- proto: PlasmaWindow + entities: + - uid: 16836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 2 - - uid: 829 + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 16675 + - uid: 16837 components: - type: Transform - pos: -28.5,-22.5 - parent: 2 - - uid: 891 + pos: 13.5,15.5 + parent: 16675 + - uid: 16839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,5.5 - parent: 2 - - uid: 910 + pos: 7.5,25.5 + parent: 16675 + - uid: 16840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,6.5 - parent: 2 - - uid: 917 + rot: -1.5707963267948966 rad + pos: 8.5,25.5 + parent: 16675 + - uid: 16841 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 2 - - uid: 929 + pos: 6.5,25.5 + parent: 16675 + - uid: 16842 components: - type: Transform - pos: 24.5,-0.5 - parent: 2 - - uid: 930 + pos: 13.5,21.5 + parent: 16675 + - uid: 16843 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,4.5 - parent: 2 - - uid: 1183 + pos: 5.5,23.5 + parent: 16675 + - uid: 16844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-3.5 - parent: 2 - - uid: 1271 + pos: 13.5,20.5 + parent: 16675 + - uid: 19932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,22.5 - parent: 2 - - uid: 1282 + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 16675 + - uid: 19939 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 2 - - uid: 1301 + pos: 13.5,16.5 + parent: 16675 + - uid: 19946 components: - type: Transform - pos: -25.5,-25.5 - parent: 2 - - uid: 1948 + rot: -1.5707963267948966 rad + pos: 13.5,19.5 + parent: 16675 +- proto: PlasmaWindowDiagonal + entities: + - uid: 16845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-21.5 - parent: 2 - - uid: 1949 + pos: 5.5,25.5 + parent: 16675 +- proto: PlasticBanana + entities: + - uid: 4078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-13.5 + pos: 0.7484733,20.179811 parent: 2 - - uid: 1951 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 7067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-21.5 + pos: 31.5,33.5 parent: 2 - - uid: 1952 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 16846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-24.5 - parent: 2 - - uid: 1956 + pos: 10.5,26.5 + parent: 16675 +- proto: PlasticFlapsClear + entities: + - uid: 919 components: - type: Transform - pos: -25.5,-29.5 + pos: 40.5,4.5 parent: 2 - - uid: 1958 + - uid: 1980 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-38.5 + pos: 40.5,8.5 parent: 2 - - uid: 1960 + - uid: 2302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-28.5 + pos: 43.5,8.5 parent: 2 - - uid: 1962 + - uid: 2303 components: - type: Transform - pos: -11.5,-25.5 + pos: 43.5,4.5 parent: 2 - - uid: 2228 + - uid: 8969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-26.5 + pos: -10.5,-11.5 parent: 2 - - uid: 2550 + - uid: 17405 components: - type: Transform - pos: -21.5,-12.5 + pos: 25.5,0.5 parent: 2 - - uid: 2781 +- proto: PlasticFlapsOpaque + entities: + - uid: 1161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-6.5 + pos: 31.5,9.5 parent: 2 - - uid: 2783 + - uid: 2313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-16.5 + pos: 39.5,3.5 parent: 2 - - uid: 2784 + - uid: 2476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-10.5 + pos: 27.5,4.5 parent: 2 - - uid: 2797 + - uid: 14388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 + pos: 15.5,26.5 parent: 2 - - uid: 2799 + - uid: 14563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-5.5 + pos: 13.5,26.5 parent: 2 - - uid: 2803 +- proto: PlayerStationAi + entities: + - uid: 15747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-5.5 + pos: -35.5,-38.5 parent: 2 - - uid: 2804 +- proto: PlushieLizardMirrored + entities: + - uid: 11648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 + pos: -24.436422,29.708292 parent: 2 - - uid: 2805 +- proto: PlushiePenguin + entities: + - uid: 7415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-9.5 + pos: 57.37532,-17.450998 parent: 2 - - uid: 2806 +- proto: PlushieSlime + entities: + - uid: 8178 components: + - type: MetaData + name: плюшевая Блоба Блабо - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-14.5 + pos: -26.556553,18.506876 parent: 2 - - uid: 2808 +- proto: PortableFlasher + entities: + - uid: 2285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 + pos: 33.5,-39.5 parent: 2 - - uid: 2809 + - uid: 3394 components: - type: Transform - pos: -2.5,-3.5 + pos: 33.5,-36.5 parent: 2 - - uid: 2811 + - uid: 3396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 + pos: 33.5,-37.5 parent: 2 - - uid: 2815 + - uid: 3398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-16.5 + pos: 36.5,-28.5 parent: 2 - - uid: 2817 + - uid: 7179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-16.5 + pos: 36.5,-30.5 parent: 2 - - uid: 2818 +- proto: PortableScrubber + entities: + - uid: 3737 components: - type: Transform - pos: 9.5,-18.5 + pos: -13.5,-25.5 parent: 2 - - uid: 2819 + - uid: 3746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 + pos: -12.5,-25.5 parent: 2 - - uid: 2820 + - uid: 16847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-19.5 - parent: 2 - - uid: 2821 + pos: 6.5,13.5 + parent: 16675 +- proto: PosterBroken + entities: + - uid: 19934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-23.5 - parent: 2 - - uid: 2822 + rot: 1.5707963267948966 rad + pos: 9.5,17.5 + parent: 16675 + - uid: 19935 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 2 - - uid: 2824 + pos: 9.5,19.5 + parent: 16675 + - uid: 19949 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 2 - - uid: 2831 + pos: 7.5,20.5 + parent: 16675 +- proto: PosterContrabandBustyBackdoorExoBabes6 + entities: + - uid: 3699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-15.5 + pos: -21.5,-0.5 parent: 2 - - uid: 2832 + - uid: 6706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-31.5 + pos: -23.5,-0.5 parent: 2 - - uid: 2833 +- proto: PosterContrabandCommunistState + entities: + - uid: 3553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-31.5 + rot: 3.141592653589793 rad + pos: -26.5,58.5 parent: 2 - - uid: 2871 + - uid: 3633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,6.5 + pos: -26.5,65.5 parent: 2 - - uid: 2873 + - uid: 3635 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,14.5 + pos: -29.5,58.5 parent: 2 - - uid: 2876 +- proto: PosterContrabandDonk + entities: + - uid: 3590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-7.5 + pos: 54.5,-11.5 parent: 2 - - uid: 2877 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 17371 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-45.5 + pos: -31.5,65.5 parent: 2 - - uid: 2885 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 2395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,4.5 + pos: -22.5,-0.5 parent: 2 - - uid: 2886 +- proto: PosterContrabandVoteWeh + entities: + - uid: 7051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,7.5 + pos: -26.5,29.5 parent: 2 - - uid: 2888 + - uid: 12340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,14.5 + pos: -22.5,27.5 parent: 2 - - uid: 2890 + - uid: 15775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-2.5 + pos: -21.5,30.5 parent: 2 - - uid: 2892 +- proto: PosterContrabandWehWatches + entities: + - uid: 14919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 + pos: -25.5,31.5 parent: 2 - - uid: 3056 + - uid: 17039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-11.5 + pos: -21.5,29.5 parent: 2 - - uid: 3284 +- proto: PosterLegitCleanliness + entities: + - uid: 2789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-9.5 + pos: 22.5,-8.5 parent: 2 - - uid: 3345 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 8137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-23.5 + pos: 49.5,-18.5 parent: 2 - - uid: 3507 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 3483 components: - type: Transform - pos: 32.5,-7.5 + pos: 46.5,-9.5 parent: 2 - - uid: 3508 + - uid: 3501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-13.5 + pos: 37.5,-12.5 parent: 2 - - uid: 3509 + - uid: 3502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 + pos: 41.5,-14.5 parent: 2 - - uid: 3510 +- proto: PosterLegitMime + entities: + - uid: 8007 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-24.5 + pos: 4.5,21.5 parent: 2 - - uid: 3511 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 3484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-24.5 + pos: 45.5,-10.5 parent: 2 - - uid: 3512 + - uid: 3490 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-30.5 + pos: 50.5,-10.5 parent: 2 - - uid: 5517 + - uid: 3493 components: - type: Transform - pos: -19.5,-40.5 + pos: 37.5,-11.5 parent: 2 - - uid: 5540 + - uid: 3495 components: - type: Transform - pos: 16.5,9.5 + pos: 41.5,-16.5 parent: 2 - - uid: 5747 + - uid: 3496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,23.5 + pos: 45.5,-15.5 parent: 2 - - uid: 6753 + - uid: 3497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,12.5 + pos: 33.5,-15.5 parent: 2 - - uid: 7861 + - uid: 4340 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,28.5 + pos: -7.5,41.5 parent: 2 - - uid: 7862 + - uid: 8135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,28.5 + pos: 46.5,-17.5 parent: 2 - - uid: 7864 + - uid: 16794 components: - type: Transform - pos: -3.5,-7.5 - parent: 2 - - uid: 7865 + pos: 6.5,20.5 + parent: 16675 + - uid: 19927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,28.5 - parent: 2 - - uid: 7866 + rot: -1.5707963267948966 rad + pos: 12.5,18.5 + parent: 16675 + - uid: 19937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,28.5 + rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 16675 + - uid: 19947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 16675 +- proto: PosterLegitObey + entities: + - uid: 3485 + components: + - type: Transform + pos: 45.5,-11.5 parent: 2 - - uid: 7867 + - uid: 3499 components: - type: Transform - pos: -52.5,35.5 + pos: 41.5,-12.5 parent: 2 - - uid: 7912 + - uid: 3500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,38.5 + pos: 37.5,-14.5 parent: 2 - - uid: 7913 + - uid: 8134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,38.5 + pos: 54.5,-15.5 parent: 2 - - uid: 7914 +- proto: PosterLegitSafetyReport + entities: + - uid: 3491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,42.5 + rot: 3.141592653589793 rad + pos: 50.5,-11.5 parent: 2 - - uid: 7916 +- proto: PosterLegitStateLaws + entities: + - uid: 682 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,39.5 + pos: -31.5,-38.5 parent: 2 - - uid: 7920 +- proto: PosterMapBagel + entities: + - uid: 7005 components: + - type: MetaData + desc: Карта, на которой чётко расписан надёжный план захвата власти над станцией. Вы бы могли её прочитать, но тут всё залито чернилами в результате облавы. + name: План захвата какой-то станции - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,37.5 + pos: -32.5,24.5 parent: 2 - - uid: 7956 +- proto: PottedPlant10 + entities: + - uid: 7785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-28.5 + pos: -22.5,26.5 parent: 2 - - uid: 7964 +- proto: PottedPlant14 + entities: + - uid: 3608 components: - type: Transform - pos: 7.5,17.5 + pos: 51.5,-12.5 parent: 2 - - uid: 7965 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 3632 +- proto: PottedPlantRandom + entities: + - uid: 91 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,25.5 + pos: -27.5,37.5 parent: 2 - - uid: 7972 + - uid: 161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-31.5 + pos: -27.5,29.5 parent: 2 - - uid: 7975 + - uid: 176 components: - type: Transform - rot: 1.5707963267948966 rad pos: -29.5,29.5 parent: 2 - - uid: 7978 + - uid: 2140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,29.5 + pos: -34.5,32.5 parent: 2 - - uid: 7980 + - uid: 2467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,25.5 + pos: -38.5,34.5 parent: 2 - - uid: 7981 + - uid: 2470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,25.5 + pos: -1.5,39.5 parent: 2 - - uid: 7982 + - uid: 2626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,29.5 + pos: -1.5,29.5 parent: 2 - - uid: 7984 + - uid: 3480 components: - type: Transform - pos: -18.5,34.5 + pos: 49.5,-10.5 parent: 2 - - uid: 7985 + - uid: 3518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,31.5 + pos: -20.5,16.5 parent: 2 - - uid: 7986 + - uid: 3521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,39.5 + pos: -20.5,15.5 parent: 2 - - uid: 7991 + - uid: 3525 components: - type: Transform - pos: 19.5,26.5 + pos: -20.5,14.5 parent: 2 - - uid: 7993 + - uid: 3621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,37.5 + pos: -29.5,27.5 parent: 2 - - uid: 7995 + - uid: 3622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,41.5 + pos: -27.5,27.5 parent: 2 - - uid: 7996 + - uid: 3627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,33.5 + pos: 8.5,12.5 parent: 2 - - uid: 7997 + - uid: 4044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,24.5 + pos: -29.5,12.5 parent: 2 - - uid: 8001 + - uid: 4103 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,11.5 + pos: 16.5,11.5 parent: 2 - - uid: 8004 + - uid: 5536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,16.5 + pos: -21.5,34.5 parent: 2 - - uid: 8010 + - uid: 6436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,12.5 + pos: 17.5,13.5 parent: 2 - - uid: 8012 + - uid: 7948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,8.5 + pos: 12.5,11.5 parent: 2 - - uid: 8013 + - uid: 14153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,10.5 + pos: -13.5,31.5 parent: 2 - - uid: 8014 + - uid: 14154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,16.5 + pos: -9.5,31.5 parent: 2 - - uid: 8015 +- proto: PottedPlantRandomPlastic + entities: + - uid: 2259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,14.5 + pos: -36.5,10.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: -14.5,41.5 parent: 2 - - uid: 8016 + - uid: 2555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,11.5 + pos: 1.5,24.5 parent: 2 - - uid: 8017 + - uid: 2564 components: - type: Transform - pos: -24.5,18.5 + pos: -73.5,30.5 parent: 2 - - uid: 8020 + - uid: 2570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,24.5 + pos: -55.5,30.5 parent: 2 - - uid: 8023 + - uid: 2793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,19.5 + pos: -72.5,10.5 parent: 2 - - uid: 8024 + - uid: 3361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,1.5 + pos: -74.5,10.5 parent: 2 - - uid: 8025 + - uid: 4002 components: - type: Transform - pos: -15.5,3.5 + pos: -8.5,41.5 parent: 2 - - uid: 8026 + - uid: 4669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,0.5 + pos: -38.5,10.5 parent: 2 - - uid: 8027 + - uid: 4686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 + pos: -35.5,10.5 parent: 2 - - uid: 8028 + - uid: 4776 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-15.5 + pos: -56.5,10.5 parent: 2 - - uid: 8029 + - uid: 4815 components: - type: Transform - pos: 8.5,-22.5 + pos: -54.5,10.5 parent: 2 - - uid: 8030 + - uid: 4817 components: - type: Transform - pos: 23.5,-7.5 + pos: -28.5,45.5 parent: 2 - - uid: 8031 + - uid: 4819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-16.5 + pos: -42.5,28.5 parent: 2 - - uid: 8032 + - uid: 4820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-13.5 + pos: -50.5,28.5 parent: 2 - - uid: 8033 + - uid: 4922 components: - type: Transform - pos: 47.5,-13.5 + pos: 2.5,24.5 parent: 2 - - uid: 8038 +- proto: PottedPlantRD + entities: + - uid: 1295 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-34.5 + pos: -23.5,-2.5 parent: 2 - - uid: 8039 +- proto: PowerCellMedium + entities: + - uid: 12440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-39.5 + pos: -69.351685,35.22769 parent: 2 - - uid: 8040 + - uid: 15909 components: - type: Transform - pos: 28.5,-32.5 + pos: 35.258934,-30.365015 parent: 2 - - uid: 8042 + - uid: 16079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-24.5 + pos: 35.571434,-30.365015 parent: 2 - - uid: 8164 +- proto: PowerCellRecharger + entities: + - uid: 213 components: - type: Transform - pos: 46.5,-5.5 + pos: -23.5,-7.5 parent: 2 - - uid: 8165 + - uid: 3048 components: - type: Transform - pos: 49.5,-5.5 + pos: -14.5,13.5 parent: 2 - - uid: 8167 + - uid: 3333 components: - type: Transform - pos: 53.5,-7.5 + rot: 1.5707963267948966 rad + pos: -28.5,61.5 parent: 2 - - uid: 8174 + - uid: 5694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,18.5 + pos: -45.5,32.5 parent: 2 - - uid: 8481 + - uid: 11960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,11.5 + pos: -33.5,28.5 parent: 2 - - uid: 9045 + - uid: 13416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,14.5 + pos: 21.5,47.5 parent: 2 - - uid: 11267 + - uid: 17383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,25.5 + pos: 35.5,-31.5 parent: 2 - - uid: 11608 +- proto: PowerCellSmallPrinted + entities: + - uid: 17194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,20.5 + pos: -32.65728,64.242004 parent: 2 - - uid: 11609 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 7442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,20.5 + pos: 10.5,-47.5 parent: 2 - - uid: 11623 + - uid: 7454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,47.5 + pos: -42.5,-3.5 parent: 2 - - uid: 11631 + - uid: 7456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,39.5 + pos: -42.5,6.5 parent: 2 - - uid: 11632 + - uid: 15902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,39.5 + pos: 10.5,-37.5 parent: 2 - - uid: 11638 + - uid: 15976 components: - type: Transform - pos: -30.5,64.5 + pos: 58.5,-11.5 parent: 2 - - uid: 11639 +- proto: Poweredlight + entities: + - uid: 58 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,62.5 + pos: 26.5,-36.5 parent: 2 - - uid: 11640 + - uid: 146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,60.5 + rot: -1.5707963267948966 rad + pos: 36.5,-28.5 parent: 2 - - uid: 11641 + - uid: 225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,66.5 + pos: -25.5,-12.5 parent: 2 - - uid: 11642 + - uid: 276 components: - type: Transform - pos: -24.5,60.5 + rot: -1.5707963267948966 rad + pos: 17.5,23.5 parent: 2 - - uid: 13137 + - uid: 453 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-20.5 + pos: 17.5,18.5 parent: 2 - - uid: 13168 + - uid: 545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,18.5 + pos: -23.5,-19.5 parent: 2 - - uid: 13731 + - uid: 550 components: - type: Transform - pos: 0.5,9.5 + rot: 1.5707963267948966 rad + pos: -14.5,-19.5 parent: 2 - - uid: 14065 + - uid: 694 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,21.5 + pos: -38.5,15.5 parent: 2 - - uid: 15473 + - uid: 829 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,28.5 + pos: -28.5,-22.5 parent: 2 - - uid: 15924 + - uid: 891 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-20.5 + pos: 23.5,5.5 parent: 2 - - uid: 16951 + - uid: 910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,20.5 + rot: 1.5707963267948966 rad + pos: 41.5,6.5 parent: 2 - - uid: 17625 + - uid: 917 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 17590 - - uid: 18118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 17590 - - uid: 18119 + pos: 24.5,1.5 + parent: 2 + - uid: 929 components: - type: Transform - pos: 8.5,-1.5 - parent: 17590 - - uid: 18186 + pos: 24.5,-0.5 + parent: 2 + - uid: 930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 17590 - - uid: 18621 + rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - uid: 974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,5.5 - parent: 17590 - - uid: 18622 + rot: 1.5707963267948966 rad + pos: 26.5,-23.5 + parent: 2 + - uid: 1183 components: - type: Transform - pos: 31.5,6.5 - parent: 17590 - - uid: 18623 + rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 1271 components: - type: Transform - pos: 35.5,6.5 - parent: 17590 - - uid: 18624 + rot: 1.5707963267948966 rad + pos: -38.5,22.5 + parent: 2 + - uid: 1282 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,10.5 - parent: 17590 - - uid: 18625 + pos: 3.5,-4.5 + parent: 2 + - uid: 1301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 17590 - - uid: 18627 + pos: -25.5,-25.5 + parent: 2 + - uid: 1654 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-10.5 - parent: 17590 - - uid: 18628 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 17590 - - uid: 18629 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 17590 - - uid: 18631 + pos: -21.5,-17.5 + parent: 2 + - uid: 1674 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-1.5 - parent: 17590 - - uid: 18632 - components: - - type: Transform - pos: 23.5,3.5 - parent: 17590 - - uid: 18633 + pos: -9.5,17.5 + parent: 2 + - uid: 1948 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-1.5 - parent: 17590 - - uid: 18637 + rot: -1.5707963267948966 rad + pos: -33.5,-21.5 + parent: 2 + - uid: 1949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-9.5 - parent: 17590 - - uid: 18638 + rot: -1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 2 + - uid: 1951 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,10.5 - parent: 17590 - - uid: 18639 + pos: -39.5,-21.5 + parent: 2 + - uid: 1952 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,1.5 - parent: 17590 - - uid: 18640 + pos: -37.5,-24.5 + parent: 2 + - uid: 1956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 17590 - - uid: 18642 + pos: -25.5,-29.5 + parent: 2 + - uid: 1958 components: - type: Transform - pos: 33.5,18.5 - parent: 17590 - - uid: 18644 + rot: 3.141592653589793 rad + pos: -21.5,-38.5 + parent: 2 + - uid: 1960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-13.5 - parent: 17590 - - uid: 18645 + rot: 1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 2 + - uid: 1962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 17590 - - uid: 18646 + pos: -11.5,-25.5 + parent: 2 + - uid: 2228 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-13.5 - parent: 17590 - - uid: 18647 + pos: -22.5,-26.5 + parent: 2 + - uid: 2550 components: - type: Transform - pos: 45.5,-12.5 - parent: 17590 - - uid: 18648 + pos: -21.5,-12.5 + parent: 2 + - uid: 2781 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-13.5 - parent: 17590 - - uid: 18649 + pos: 21.5,-6.5 + parent: 2 + - uid: 2783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-16.5 - parent: 17590 - - uid: 18650 + rot: 3.141592653589793 rad + pos: 19.5,-16.5 + parent: 2 + - uid: 2784 components: - type: Transform - pos: 45.5,-17.5 - parent: 17590 - - uid: 18651 + rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 2 + - uid: 2797 components: - type: Transform - pos: 38.5,-17.5 - parent: 17590 - - uid: 18652 + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 2 + - uid: 2799 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-17.5 - parent: 17590 - - uid: 18653 + pos: 10.5,-5.5 + parent: 2 + - uid: 2803 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 17590 - - uid: 18663 - components: - - type: Transform - pos: 38.5,-12.5 - parent: 17590 - - uid: 19757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-9.5 - parent: 17590 - - uid: 19758 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 17590 -- proto: PoweredlightEmpty - entities: - - uid: 2604 + pos: 5.5,-5.5 + parent: 2 + - uid: 2804 components: - type: Transform - pos: -15.5,-1.5 + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 parent: 2 - - uid: 8036 + - uid: 2805 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,4.5 + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 parent: 2 -- proto: PoweredlightExterior - entities: - - uid: 2796 + - uid: 2808 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-23.5 + pos: -1.5,-9.5 parent: 2 -- proto: PoweredlightPink - entities: - - uid: 2881 + - uid: 2809 components: - type: Transform - pos: -11.5,-1.5 + pos: -2.5,-3.5 parent: 2 -- proto: PoweredLightPostSmall - entities: - - uid: 124 + - uid: 2811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-26.5 + rot: 3.141592653589793 rad + pos: -2.5,-5.5 parent: 2 - - uid: 700 + - uid: 2815 components: - type: Transform - pos: -40.5,16.5 + rot: 3.141592653589793 rad + pos: 2.5,-16.5 parent: 2 - - uid: 1954 + - uid: 2817 components: - type: Transform - pos: -41.5,-23.5 + rot: 3.141592653589793 rad + pos: 7.5,-16.5 parent: 2 - - uid: 1955 + - uid: 2818 components: - type: Transform - pos: -41.5,-19.5 + pos: 9.5,-18.5 parent: 2 - - uid: 1966 + - uid: 2819 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-31.5 + pos: 3.5,-19.5 parent: 2 - - uid: 2149 + - uid: 2820 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-28.5 + pos: 1.5,-19.5 parent: 2 - - uid: 6123 + - uid: 2821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,25.5 + rot: 3.141592653589793 rad + pos: -0.5,-23.5 parent: 2 - - uid: 6825 + - uid: 2822 components: - type: Transform - pos: -76.5,17.5 + rot: 1.5707963267948966 rad + pos: -2.5,-19.5 parent: 2 - - uid: 6857 + - uid: 2824 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,16.5 + pos: -10.5,-22.5 parent: 2 - - uid: 7878 + - uid: 2831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,23.5 + rot: 3.141592653589793 rad + pos: -17.5,-15.5 parent: 2 - - uid: 8504 + - uid: 2832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,14.5 + rot: -1.5707963267948966 rad + pos: -17.5,-31.5 parent: 2 - - uid: 19913 + - uid: 2833 components: - type: Transform - pos: 40.5,18.5 + rot: -1.5707963267948966 rad + pos: -14.5,-31.5 parent: 2 -- proto: PoweredLightPostSmallEmpty - entities: - - uid: 1072 + - uid: 2871 components: - type: Transform - pos: 10.5,-47.5 + rot: 1.5707963267948966 rad + pos: 36.5,6.5 parent: 2 - - uid: 8034 + - uid: 2873 components: - type: Transform - pos: -42.5,6.5 + rot: 3.141592653589793 rad + pos: 7.5,14.5 parent: 2 - - uid: 8035 + - uid: 2876 components: - type: Transform - pos: -42.5,-3.5 + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 parent: 2 -- proto: PoweredlightSodium - entities: - - uid: 2790 + - uid: 2877 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-21.5 + pos: -24.5,-45.5 parent: 2 -- proto: PoweredSmallLight - entities: - - uid: 157 + - uid: 2885 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,50.5 + rot: -1.5707963267948966 rad + pos: -7.5,4.5 parent: 2 - - uid: 363 + - uid: 2886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 2 + - uid: 2888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,28.5 + rot: 1.5707963267948966 rad + pos: 37.5,14.5 parent: 2 - - uid: 534 + - uid: 2890 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-31.5 + pos: 39.5,-2.5 parent: 2 - - uid: 535 + - uid: 2892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-31.5 + rot: 1.5707963267948966 rad + pos: 34.5,-5.5 parent: 2 - - uid: 547 + - uid: 3056 components: - type: Transform - pos: -41.5,37.5 + rot: -1.5707963267948966 rad + pos: -7.5,-11.5 parent: 2 - - uid: 559 + - uid: 3181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-31.5 + pos: -16.5,15.5 parent: 2 - - uid: 760 + - uid: 3284 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,28.5 + rot: 1.5707963267948966 rad + pos: 12.5,-9.5 parent: 2 - - uid: 1193 + - uid: 3345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,41.5 + rot: 3.141592653589793 rad + pos: -17.5,-23.5 parent: 2 - - uid: 1997 + - uid: 3507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,24.5 + pos: 32.5,-7.5 parent: 2 - - uid: 2814 + - uid: 3508 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-21.5 + pos: 32.5,-13.5 parent: 2 - - uid: 2816 + - uid: 3509 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-19.5 + pos: 26.5,-16.5 parent: 2 - - uid: 2834 + - uid: 3510 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-32.5 + pos: 34.5,-24.5 parent: 2 - - uid: 2874 + - uid: 3512 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,11.5 + pos: 27.5,-30.5 parent: 2 - - uid: 2878 + - uid: 4241 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-13.5 + pos: -16.5,10.5 parent: 2 - - uid: 2889 + - uid: 4277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-16.5 + pos: -9.5,26.5 parent: 2 - - uid: 2959 + - uid: 5517 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-19.5 + pos: -19.5,-40.5 parent: 2 - - uid: 3039 + - uid: 5540 components: - type: Transform - pos: -22.5,-7.5 + pos: 16.5,9.5 parent: 2 - - uid: 3492 + - uid: 5747 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-11.5 + pos: -72.5,23.5 parent: 2 - - uid: 3494 + - uid: 6041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-16.5 + rot: 3.141592653589793 rad + pos: -25.5,16.5 parent: 2 - - uid: 3498 + - uid: 6753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-11.5 + rot: -1.5707963267948966 rad + pos: 35.5,12.5 parent: 2 - - uid: 3504 + - uid: 7416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-16.5 + pos: -36.5,34.5 parent: 2 - - uid: 3644 + - uid: 7417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-16.5 + rot: 3.141592653589793 rad + pos: -9.5,6.5 parent: 2 - - uid: 5223 + - uid: 7464 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,22.5 + pos: -15.5,19.5 parent: 2 - - uid: 6769 + - uid: 7469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,39.5 + rot: -1.5707963267948966 rad + pos: -17.5,-7.5 parent: 2 - - uid: 6770 + - uid: 7471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,41.5 + rot: 3.141592653589793 rad + pos: -3.5,-16.5 parent: 2 - - uid: 6771 + - uid: 7472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,43.5 + rot: 3.141592653589793 rad + pos: 19.5,6.5 parent: 2 - - uid: 7877 + - uid: 7861 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,43.5 + pos: -70.5,28.5 parent: 2 - - uid: 7893 + - uid: 7862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,35.5 + rot: 3.141592653589793 rad + pos: -58.5,28.5 parent: 2 - - uid: 7895 + - uid: 7864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,35.5 + pos: -3.5,-7.5 parent: 2 - - uid: 7896 + - uid: 7865 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,40.5 + pos: -52.5,28.5 parent: 2 - - uid: 7897 + - uid: 7866 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,40.5 + pos: -40.5,28.5 parent: 2 - - uid: 7899 + - uid: 7867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,35.5 + pos: -52.5,35.5 parent: 2 - - uid: 7901 + - uid: 7912 components: - type: Transform - pos: -73.5,33.5 + rot: 1.5707963267948966 rad + pos: -35.5,38.5 parent: 2 - - uid: 7910 + - uid: 7913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,38.5 + parent: 2 + - uid: 7914 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,44.5 + pos: -35.5,42.5 parent: 2 - - uid: 7911 + - uid: 7916 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,40.5 + pos: -27.5,39.5 parent: 2 - - uid: 7915 + - uid: 7920 components: - type: Transform - pos: 8.5,43.5 + rot: 1.5707963267948966 rad + pos: -22.5,37.5 parent: 2 - - uid: 7918 + - uid: 7956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 + rot: 1.5707963267948966 rad + pos: 31.5,-28.5 parent: 2 - - uid: 7919 + - uid: 7964 components: - type: Transform - pos: 2.5,42.5 + pos: 7.5,17.5 parent: 2 - - uid: 7921 + - uid: 7972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,39.5 + rot: -1.5707963267948966 rad + pos: 23.5,-31.5 parent: 2 - - uid: 7922 + - uid: 7975 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,39.5 + pos: -29.5,29.5 parent: 2 - - uid: 7923 + - uid: 7978 components: - type: Transform - pos: -14.5,44.5 + rot: -1.5707963267948966 rad + pos: -27.5,29.5 parent: 2 - - uid: 7924 + - uid: 7981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,43.5 + rot: -1.5707963267948966 rad + pos: -22.5,25.5 parent: 2 - - uid: 7925 + - uid: 7984 components: - type: Transform - pos: -6.5,44.5 + pos: -18.5,34.5 parent: 2 - - uid: 7926 + - uid: 7985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,38.5 + rot: 3.141592653589793 rad + pos: -11.5,31.5 parent: 2 - - uid: 7927 + - uid: 7986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,45.5 + rot: -1.5707963267948966 rad + pos: -1.5,39.5 parent: 2 - - uid: 7928 + - uid: 7991 components: - type: Transform - pos: 12.5,46.5 + pos: 19.5,26.5 parent: 2 - - uid: 7929 + - uid: 7993 components: - type: Transform - pos: 17.5,43.5 + rot: -1.5707963267948966 rad + pos: 13.5,37.5 parent: 2 - - uid: 7930 + - uid: 7995 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,37.5 + pos: 13.5,41.5 parent: 2 - - uid: 7931 + - uid: 7996 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,35.5 + pos: 0.5,33.5 parent: 2 - - uid: 7932 + - uid: 7997 components: - type: Transform - pos: 20.5,33.5 + rot: 1.5707963267948966 rad + pos: -3.5,24.5 parent: 2 - - uid: 7933 + - uid: 8001 components: - type: Transform - pos: 11.5,34.5 + rot: 3.141592653589793 rad + pos: 17.5,11.5 parent: 2 - - uid: 7934 + - uid: 8004 components: - type: Transform - pos: 5.5,34.5 + rot: -1.5707963267948966 rad + pos: 3.5,16.5 parent: 2 - - uid: 7935 + - uid: 8012 components: - type: Transform - pos: 23.5,36.5 + rot: 3.141592653589793 rad + pos: -24.5,12.5 parent: 2 - - uid: 7936 + - uid: 8014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,31.5 + rot: -1.5707963267948966 rad + pos: -29.5,16.5 parent: 2 - - uid: 7939 + - uid: 8016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,28.5 + rot: -1.5707963267948966 rad + pos: -29.5,11.5 parent: 2 - - uid: 7942 + - uid: 8020 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,10.5 + pos: -14.5,24.5 parent: 2 - - uid: 7943 + - uid: 8023 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,12.5 + pos: -11.5,19.5 parent: 2 - - uid: 7945 + - uid: 8024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,28.5 + rot: -1.5707963267948966 rad + pos: -11.5,1.5 parent: 2 - - uid: 7951 + - uid: 8025 components: - type: Transform - pos: -18.5,8.5 + pos: -15.5,3.5 parent: 2 - - uid: 7952 + - uid: 8026 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,1.5 + pos: -17.5,0.5 parent: 2 - - uid: 7953 + - uid: 8027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-1.5 + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 parent: 2 - - uid: 7954 + - uid: 8028 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-7.5 + pos: -13.5,-15.5 parent: 2 - - uid: 7955 + - uid: 8029 components: - type: Transform - pos: -29.5,2.5 + pos: 8.5,-22.5 parent: 2 - - uid: 7957 + - uid: 8030 components: - type: Transform - pos: 3.5,12.5 + pos: 23.5,-7.5 parent: 2 - - uid: 7958 + - uid: 8031 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-20.5 + pos: 46.5,-16.5 parent: 2 - - uid: 7959 + - uid: 8032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-24.5 + rot: -1.5707963267948966 rad + pos: 53.5,-13.5 parent: 2 - - uid: 7960 + - uid: 8033 components: - type: Transform - pos: 30.5,-19.5 + pos: 47.5,-13.5 parent: 2 - - uid: 7961 + - uid: 8038 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-19.5 - parent: 2 - - uid: 7966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-39.5 + pos: 33.5,-34.5 parent: 2 - - uid: 7967 + - uid: 8039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,25.5 + rot: 3.141592653589793 rad + pos: 33.5,-39.5 parent: 2 - - uid: 7968 + - uid: 8040 components: - type: Transform - pos: -16.5,15.5 + pos: 28.5,-32.5 parent: 2 - - uid: 7983 + - uid: 8042 components: - type: Transform - pos: -24.5,14.5 + rot: 1.5707963267948966 rad + pos: 36.5,-24.5 parent: 2 - - uid: 7987 + - uid: 8164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,21.5 + pos: 46.5,-5.5 parent: 2 - - uid: 7990 + - uid: 8165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,21.5 + pos: 49.5,-5.5 parent: 2 - - uid: 8008 + - uid: 8167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,32.5 + pos: 53.5,-7.5 parent: 2 - - uid: 8018 + - uid: 8174 components: - type: Transform - pos: 40.5,-27.5 + rot: -1.5707963267948966 rad + pos: 21.5,18.5 parent: 2 - - uid: 8021 + - uid: 8198 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-43.5 + pos: -25.5,-17.5 parent: 2 - - uid: 8022 + - uid: 8481 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-36.5 + pos: -72.5,11.5 parent: 2 - - uid: 8175 + - uid: 9045 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,25.5 + pos: -56.5,14.5 parent: 2 - - uid: 8719 + - uid: 11267 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,18.5 + pos: 14.5,25.5 parent: 2 - - uid: 10969 + - uid: 11608 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-31.5 + pos: 1.5,20.5 parent: 2 - - uid: 10970 + - uid: 11609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-31.5 + rot: 1.5707963267948966 rad + pos: 5.5,20.5 parent: 2 - - uid: 11376 + - uid: 11623 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-11.5 + pos: -28.5,47.5 parent: 2 - - uid: 11607 + - uid: 11631 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,25.5 + pos: -8.5,39.5 parent: 2 - - uid: 11633 + - uid: 11632 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,47.5 + pos: -14.5,39.5 parent: 2 - - uid: 11634 + - uid: 11638 components: - type: Transform - pos: -10.5,48.5 + pos: -30.5,64.5 parent: 2 - - uid: 11643 + - uid: 11639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,57.5 + rot: 3.141592653589793 rad + pos: -22.5,62.5 parent: 2 - - uid: 11795 + - uid: 11640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,29.5 + rot: 1.5707963267948966 rad + pos: -33.5,60.5 parent: 2 - - uid: 11812 + - uid: 11641 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,17.5 + pos: -26.5,66.5 parent: 2 - - uid: 13412 + - uid: 11642 components: - type: Transform - pos: 20.5,47.5 + pos: -24.5,60.5 parent: 2 - - uid: 15704 + - uid: 13004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-29.5 + rot: -1.5707963267948966 rad + pos: -1.5,32.5 parent: 2 - - uid: 15841 + - uid: 13137 components: - type: Transform - pos: -35.5,-37.5 + rot: -1.5707963267948966 rad + pos: 24.5,-20.5 parent: 2 - - uid: 15843 + - uid: 13168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-35.5 + rot: 1.5707963267948966 rad + pos: -3.5,18.5 parent: 2 - - uid: 16596 - components: - - type: Transform - pos: 26.5,19.5 - parent: 16200 - - uid: 16597 + - uid: 13697 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,14.5 - parent: 16200 - - uid: 16598 + pos: -14.5,8.5 + parent: 2 + - uid: 13731 components: - type: Transform - pos: 26.5,10.5 - parent: 16200 - - uid: 16599 + pos: 0.5,9.5 + parent: 2 + - uid: 14065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,9.5 - parent: 16200 - - uid: 16600 + pos: -56.5,21.5 + parent: 2 + - uid: 15473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,17.5 - parent: 16200 - - uid: 16601 + rot: 3.141592653589793 rad + pos: -32.5,28.5 + parent: 2 + - uid: 15924 components: - type: Transform - pos: 26.5,23.5 - parent: 16200 - - uid: 16602 + rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 + - uid: 15929 components: - type: Transform - pos: 21.5,24.5 - parent: 16200 - - uid: 16603 + rot: 1.5707963267948966 rad + pos: -21.5,21.5 + parent: 2 + - uid: 15974 components: - type: Transform - pos: 18.5,21.5 - parent: 16200 - - uid: 16604 + pos: -13.5,-13.5 + parent: 2 + - uid: 15975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 16200 - - uid: 17146 + pos: 49.5,-13.5 + parent: 2 + - uid: 16055 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 16056 components: - type: Transform - pos: 7.5,19.5 - parent: 16675 - - uid: 17147 + rot: 1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 + - uid: 16057 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 16675 - - uid: 17148 + pos: -25.5,8.5 + parent: 2 + - uid: 16951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 16675 - - uid: 17149 + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 2 + - uid: 18976 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,20.5 - parent: 16675 - - uid: 17150 + pos: 28.5,3.5 + parent: 17641 + - uid: 18977 components: - type: Transform - pos: 12.5,23.5 - parent: 16675 - - uid: 17151 + pos: 16.5,-3.5 + parent: 17641 + - uid: 18978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,13.5 - parent: 16675 - - uid: 17152 + pos: 31.5,-3.5 + parent: 17641 + - uid: 18979 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,14.5 - parent: 16675 - - uid: 18654 + pos: 24.5,0.5 + parent: 17641 + - uid: 18980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 17641 + - uid: 18981 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,17.5 - parent: 17590 - - uid: 18655 + pos: 15.5,6.5 + parent: 17641 + - uid: 18982 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 17590 - - uid: 18656 + pos: 19.5,6.5 + parent: 17641 + - uid: 18983 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,21.5 - parent: 17590 - - uid: 18657 + pos: 16.5,13.5 + parent: 17641 + - uid: 18984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,13.5 + parent: 17641 + - uid: 18985 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,21.5 - parent: 17590 - - uid: 18658 + pos: 23.5,13.5 + parent: 17641 + - uid: 18986 components: - type: Transform - pos: 36.5,11.5 - parent: 17590 - - uid: 18659 + rot: 1.5707963267948966 rad + pos: 11.5,18.5 + parent: 17641 + - uid: 18987 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,4.5 - parent: 17590 - - uid: 18660 + pos: 11.5,22.5 + parent: 17641 + - uid: 18988 components: - type: Transform - pos: 30.5,11.5 - parent: 17590 - - uid: 18661 + rot: -1.5707963267948966 rad + pos: 23.5,22.5 + parent: 17641 + - uid: 18989 components: - type: Transform - pos: 40.5,6.5 - parent: 17590 - - uid: 18662 + rot: -1.5707963267948966 rad + pos: 23.5,18.5 + parent: 17641 + - uid: 18990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,6.5 - parent: 17590 - - uid: 19903 + rot: -1.5707963267948966 rad + pos: 23.5,26.5 + parent: 17641 + - uid: 18991 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,17.5 - parent: 19854 - - uid: 19993 + pos: 11.5,26.5 + parent: 17641 + - uid: 18992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,17.5 - parent: 19951 - - uid: 20044 + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 17641 + - uid: 18993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,12.5 - parent: 20000 -- proto: PoweredStrobeLightEpsilon - entities: - - uid: 1407 + rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 17641 + - uid: 18994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-23.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1413 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False -- proto: PoweredStrobeLightSiren - entities: - - uid: 2666 + pos: 14.5,4.5 + parent: 17641 + - uid: 18995 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-17.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 2667 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PrintedDocumentDeathCertificate - entities: - - uid: 4684 + pos: 7.5,7.5 + parent: 17641 + - uid: 18996 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.651258,25.973894 - parent: 2 - - uid: 4685 + pos: 6.5,6.5 + parent: 17641 + - uid: 18997 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.651258,25.973894 - parent: 2 -- proto: PrinterDoc - entities: - - uid: 390 + pos: 9.5,12.5 + parent: 17641 + - uid: 18998 components: - type: Transform - pos: -33.5,18.5 - parent: 2 - - uid: 2699 + pos: 37.5,-2.5 + parent: 17641 + - uid: 18999 components: - type: Transform - pos: 18.5,-21.5 - parent: 2 - - uid: 2714 + rot: 3.141592653589793 rad + pos: 37.5,-6.5 + parent: 17641 + - uid: 19000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,0.5 + parent: 17641 + - uid: 19001 + components: + - type: Transform + pos: 21.5,4.5 + parent: 17641 + - uid: 19002 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 17641 + - uid: 19003 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-24.5 - parent: 2 - - uid: 4912 + pos: -0.5,-5.5 + parent: 17641 + - uid: 20217 components: - type: Transform - pos: 10.5,-18.5 + rot: 3.141592653589793 rad + pos: 24.5,-13.5 parent: 2 - - uid: 5148 +- proto: PoweredlightEmpty + entities: + - uid: 8036 components: - type: Transform - pos: 13.5,36.5 + rot: 3.141592653589793 rad + pos: -27.5,4.5 parent: 2 -- proto: Protolathe +- proto: PoweredlightExterior entities: - - uid: 1021 + - uid: 2796 components: - type: Transform - pos: -11.5,-9.5 + rot: 1.5707963267948966 rad + pos: 14.5,-23.5 parent: 2 -- proto: PsychBed +- proto: PoweredlightGreen entities: - - uid: 4844 + - uid: 5314 components: - type: Transform - pos: -29.5,15.5 + rot: -1.5707963267948966 rad + pos: -22.5,29.5 parent: 2 -- proto: PuddleEgg +- proto: PoweredlightLED entities: - - uid: 15941 + - uid: 16105 components: - type: Transform - pos: 3.5,32.5 + rot: -1.5707963267948966 rad + pos: -61.5,36.5 parent: 2 -- proto: PuddleFlour +- proto: PoweredlightPink entities: - - uid: 15942 + - uid: 2603 components: - type: Transform - pos: 1.5,31.5 + pos: -15.5,-1.5 parent: 2 - - uid: 15943 + - uid: 2881 components: - type: Transform - pos: 1.5,32.5 + pos: -11.5,-1.5 parent: 2 -- proto: PuddleSmear +- proto: PoweredLightPostSmall entities: - - uid: 2486 + - uid: 124 components: - type: Transform - pos: -41.5,41.5 + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 parent: 2 - - uid: 2554 + - uid: 700 components: - type: Transform - pos: -41.5,41.5 + pos: -40.5,16.5 parent: 2 - - uid: 12440 + - uid: 809 components: - type: Transform - pos: -3.5,36.5 + pos: 32.5,30.5 parent: 2 - - uid: 15971 + - uid: 1954 components: - type: Transform - pos: 13.5,13.5 + pos: -41.5,-23.5 parent: 2 - - uid: 15972 + - uid: 1955 components: - type: Transform - pos: 9.5,18.5 + pos: -41.5,-19.5 parent: 2 - - uid: 15973 + - uid: 1966 components: - type: Transform - pos: 19.5,14.5 + rot: 1.5707963267948966 rad + pos: 3.5,-31.5 parent: 2 - - uid: 15974 + - uid: 2149 components: - type: Transform - pos: 15.5,9.5 + rot: -1.5707963267948966 rad + pos: 13.5,-28.5 parent: 2 - - uid: 15975 + - uid: 3262 components: - type: Transform - pos: 14.5,20.5 + pos: 32.5,37.5 parent: 2 - - uid: 15976 + - uid: 6123 components: - type: Transform - pos: 13.5,19.5 + rot: 1.5707963267948966 rad + pos: -58.5,25.5 parent: 2 - - uid: 15977 + - uid: 6825 components: - type: Transform - pos: 14.5,19.5 + pos: -76.5,17.5 parent: 2 - - uid: 15978 + - uid: 6857 components: - type: Transform - pos: 14.5,17.5 + rot: 1.5707963267948966 rad + pos: -52.5,16.5 parent: 2 - - uid: 15979 + - uid: 7878 components: - type: Transform - pos: 6.5,12.5 + rot: 1.5707963267948966 rad + pos: -52.5,23.5 parent: 2 - - uid: 15980 + - uid: 8504 components: - type: Transform - pos: 2.5,11.5 + rot: 1.5707963267948966 rad + pos: -58.5,14.5 parent: 2 - - uid: 15981 + - uid: 19913 components: - type: Transform - pos: 3.5,11.5 + pos: 40.5,18.5 parent: 2 - - uid: 15982 +- proto: PoweredlightSodium + entities: + - uid: 2790 components: - type: Transform - pos: 18.5,7.5 + rot: 3.141592653589793 rad + pos: 15.5,-21.5 parent: 2 -- proto: PuddleTomato - entities: - - uid: 4972 + - uid: 3954 components: - type: Transform - pos: -38.5,39.5 + rot: 1.5707963267948966 rad + pos: 9.5,27.5 parent: 2 -- proto: PuddleVomit - entities: - - uid: 13 + - uid: 5164 components: - type: Transform - pos: -17.5,26.5 + rot: -1.5707963267948966 rad + pos: 12.5,27.5 parent: 2 - - uid: 627 + - uid: 19004 components: - type: Transform - pos: -17.5,25.5 + pos: -1.5,4.5 + parent: 17641 + - uid: 19005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 17641 + - uid: 19006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 17641 +- proto: PoweredSmallLight + entities: + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,50.5 parent: 2 - - uid: 2605 + - uid: 363 components: - type: Transform - pos: -20.5,26.5 + rot: -1.5707963267948966 rad + pos: 24.5,28.5 parent: 2 - - uid: 3021 + - uid: 534 components: - type: Transform - pos: -16.5,14.5 + rot: -1.5707963267948966 rad + pos: -11.5,-31.5 parent: 2 - - uid: 4970 + - uid: 535 components: - type: Transform - pos: -40.5,43.5 + rot: -1.5707963267948966 rad + pos: -8.5,-31.5 parent: 2 - - uid: 4974 + - uid: 547 components: - type: Transform - pos: -37.5,38.5 + pos: -41.5,37.5 parent: 2 - - uid: 4977 + - uid: 559 components: - type: Transform - pos: -37.5,42.5 + rot: -1.5707963267948966 rad + pos: -5.5,-31.5 parent: 2 - - uid: 4980 + - uid: 1193 components: - type: Transform - pos: -38.5,37.5 + rot: -1.5707963267948966 rad + pos: -37.5,41.5 parent: 2 - - uid: 6448 + - uid: 2814 components: - type: Transform - pos: -37.5,43.5 + rot: 3.141592653589793 rad + pos: 51.5,-21.5 parent: 2 - - uid: 6449 + - uid: 2834 components: - type: Transform - pos: -38.5,40.5 + rot: -1.5707963267948966 rad + pos: -20.5,-32.5 parent: 2 - - uid: 6528 + - uid: 2874 components: - type: Transform - pos: -40.5,41.5 + rot: 3.141592653589793 rad + pos: -7.5,11.5 parent: 2 - - uid: 6575 + - uid: 2878 components: - type: Transform - pos: -38.5,41.5 + rot: 3.141592653589793 rad + pos: 37.5,-13.5 parent: 2 - - uid: 6599 + - uid: 2889 components: - type: Transform - pos: -41.5,43.5 + rot: -1.5707963267948966 rad + pos: 32.5,-16.5 parent: 2 - - uid: 6721 + - uid: 2920 components: - type: Transform - pos: -16.5,24.5 + rot: -1.5707963267948966 rad + pos: -66.5,36.5 parent: 2 - - uid: 6722 + - uid: 2959 components: - type: Transform - pos: -19.5,26.5 + rot: 3.141592653589793 rad + pos: 42.5,-19.5 parent: 2 - - uid: 6727 + - uid: 3039 components: - type: Transform - pos: -18.5,25.5 + pos: -22.5,-7.5 parent: 2 - - uid: 6728 + - uid: 3492 components: - type: Transform - pos: -18.5,26.5 + rot: -1.5707963267948966 rad + pos: 40.5,-11.5 parent: 2 - - uid: 6729 + - uid: 3494 components: - type: Transform - pos: -17.5,24.5 + rot: 1.5707963267948966 rad + pos: 38.5,-16.5 parent: 2 - - uid: 6730 + - uid: 3498 components: - type: Transform - pos: -19.5,25.5 + rot: 1.5707963267948966 rad + pos: 42.5,-11.5 parent: 2 - - uid: 6732 + - uid: 3504 components: - type: Transform - pos: -20.5,24.5 + rot: -1.5707963267948966 rad + pos: 44.5,-16.5 parent: 2 - - uid: 6733 + - uid: 3644 components: - type: Transform - pos: -20.5,25.5 + rot: -1.5707963267948966 rad + pos: 36.5,-16.5 parent: 2 - - uid: 6744 + - uid: 5223 components: - type: Transform - pos: -19.5,24.5 + rot: 1.5707963267948966 rad + pos: -6.5,22.5 parent: 2 - - uid: 6755 + - uid: 5288 components: - type: Transform - pos: -16.5,25.5 + rot: 1.5707963267948966 rad + pos: -34.5,25.5 parent: 2 - - uid: 12483 + - uid: 6769 components: - type: Transform - pos: -16.5,26.5 + rot: 1.5707963267948966 rad + pos: -41.5,39.5 parent: 2 - - uid: 13074 + - uid: 6770 components: - type: Transform + rot: 1.5707963267948966 rad pos: -41.5,41.5 parent: 2 - - uid: 13201 + - uid: 6771 components: - type: Transform + rot: 1.5707963267948966 rad pos: -41.5,43.5 parent: 2 - - uid: 15503 + - uid: 7877 components: - type: Transform - pos: 19.5,-4.5 + rot: 3.141592653589793 rad + pos: -21.5,43.5 parent: 2 - - uid: 15883 + - uid: 7893 components: - type: Transform - pos: -17.5,14.5 + rot: 1.5707963267948966 rad + pos: -45.5,35.5 parent: 2 - - uid: 15884 + - uid: 7895 components: - type: Transform - pos: -17.5,13.5 + rot: 1.5707963267948966 rad + pos: -48.5,35.5 parent: 2 - - uid: 15886 + - uid: 7896 components: - type: Transform - pos: -14.5,14.5 + rot: 3.141592653589793 rad + pos: -50.5,40.5 parent: 2 - - uid: 15887 + - uid: 7897 components: - type: Transform - pos: -12.5,14.5 + rot: 3.141592653589793 rad + pos: -57.5,40.5 parent: 2 - - uid: 15888 + - uid: 7901 components: - type: Transform - pos: -12.5,13.5 + pos: -73.5,33.5 parent: 2 - - uid: 15889 + - uid: 7910 components: - type: Transform - pos: -12.5,12.5 + rot: 1.5707963267948966 rad + pos: -48.5,44.5 parent: 2 - - uid: 15890 + - uid: 7911 components: - type: Transform - pos: -11.5,12.5 + rot: -1.5707963267948966 rad + pos: -43.5,40.5 parent: 2 - - uid: 15891 + - uid: 7915 components: - type: Transform - pos: -16.5,11.5 + pos: 8.5,43.5 parent: 2 - - uid: 15892 + - uid: 7918 components: - type: Transform - pos: -16.5,11.5 + rot: 3.141592653589793 rad + pos: 4.5,36.5 parent: 2 - - uid: 15893 + - uid: 7919 components: - type: Transform - pos: -16.5,11.5 + pos: 2.5,42.5 parent: 2 - - uid: 15908 + - uid: 7921 components: - type: Transform - pos: -2.5,7.5 + rot: 1.5707963267948966 rad + pos: -25.5,39.5 parent: 2 - - uid: 15910 + - uid: 7922 components: - type: Transform - pos: -3.5,7.5 + rot: 1.5707963267948966 rad + pos: -17.5,39.5 parent: 2 - - uid: 15913 + - uid: 7923 components: - type: Transform - pos: 0.5,9.5 + pos: -14.5,44.5 parent: 2 - - uid: 15914 + - uid: 7924 components: - type: Transform - pos: 11.5,7.5 + rot: 1.5707963267948966 rad + pos: -12.5,43.5 parent: 2 - - uid: 15915 + - uid: 7925 components: - type: Transform - pos: 20.5,6.5 + pos: -6.5,44.5 parent: 2 - - uid: 15916 + - uid: 7926 components: - type: Transform - pos: 24.5,4.5 + rot: 1.5707963267948966 rad + pos: -6.5,38.5 parent: 2 - - uid: 15917 + - uid: 7927 components: - type: Transform - pos: 24.5,-7.5 + rot: 3.141592653589793 rad + pos: 2.5,45.5 parent: 2 - - uid: 15918 + - uid: 7928 components: - type: Transform - pos: 21.5,-11.5 + pos: 12.5,46.5 parent: 2 - - uid: 15919 + - uid: 7929 components: - type: Transform - pos: 19.5,-16.5 + pos: 17.5,43.5 parent: 2 - - uid: 15920 + - uid: 7930 components: - type: Transform - pos: -73.5,19.5 + rot: -1.5707963267948966 rad + pos: 19.5,37.5 parent: 2 - - uid: 15921 + - uid: 7931 components: - type: Transform - pos: 24.5,-24.5 + rot: 1.5707963267948966 rad + pos: 15.5,35.5 parent: 2 - - uid: 15922 + - uid: 7932 components: - type: Transform - pos: 22.5,-31.5 + pos: 20.5,33.5 parent: 2 - - uid: 15923 + - uid: 7933 components: - type: Transform - pos: 12.5,-15.5 + pos: 11.5,34.5 parent: 2 - - uid: 15925 + - uid: 7934 components: - type: Transform - pos: 4.5,-15.5 + pos: 5.5,34.5 parent: 2 - - uid: 15926 + - uid: 7935 components: - type: Transform - pos: -7.5,-13.5 + pos: 23.5,36.5 parent: 2 - - uid: 15927 + - uid: 7936 components: - type: Transform - pos: -10.5,-15.5 + rot: 3.141592653589793 rad + pos: 23.5,31.5 parent: 2 - - uid: 15928 + - uid: 7939 components: - type: Transform - pos: -18.5,-11.5 + rot: 3.141592653589793 rad + pos: 1.5,28.5 parent: 2 - - uid: 15929 + - uid: 7942 components: - type: Transform - pos: -18.5,0.5 + rot: 1.5707963267948966 rad + pos: 23.5,10.5 parent: 2 - - uid: 15930 + - uid: 7943 components: - type: Transform - pos: -7.5,-1.5 + rot: -1.5707963267948966 rad + pos: 27.5,12.5 parent: 2 - - uid: 15931 + - uid: 7945 components: - type: Transform - pos: -7.5,-2.5 + rot: 3.141592653589793 rad + pos: -20.5,28.5 parent: 2 - - uid: 15932 + - uid: 7952 components: - type: Transform - pos: -7.5,4.5 + rot: -1.5707963267948966 rad + pos: -20.5,1.5 parent: 2 - - uid: 15933 + - uid: 7953 components: - type: Transform - pos: -3.5,15.5 + rot: 1.5707963267948966 rad + pos: -26.5,-1.5 parent: 2 - - uid: 15934 + - uid: 7954 components: - type: Transform - pos: -1.5,23.5 + rot: 3.141592653589793 rad + pos: -25.5,-7.5 parent: 2 - - uid: 15935 + - uid: 7955 components: - type: Transform - pos: -3.5,30.5 + pos: -29.5,2.5 parent: 2 - - uid: 15936 + - uid: 7957 components: - type: Transform - pos: -1.5,36.5 + pos: 3.5,12.5 parent: 2 - - uid: 15937 + - uid: 7958 components: - type: Transform - pos: -9.5,33.5 + rot: 1.5707963267948966 rad + pos: 20.5,-20.5 parent: 2 - - uid: 15938 + - uid: 7959 components: - type: Transform - pos: 4.5,33.5 + rot: 1.5707963267948966 rad + pos: 20.5,-24.5 parent: 2 - - uid: 15939 + - uid: 7960 components: - type: Transform - pos: 4.5,34.5 + pos: 30.5,-19.5 parent: 2 - - uid: 15940 + - uid: 7961 components: - type: Transform - pos: 5.5,34.5 + rot: 3.141592653589793 rad + pos: 37.5,-19.5 parent: 2 - - uid: 15944 + - uid: 7966 components: - type: Transform - pos: -10.5,31.5 + rot: 1.5707963267948966 rad + pos: 38.5,-39.5 parent: 2 - - uid: 15945 + - uid: 7967 components: - type: Transform - pos: -18.5,32.5 + rot: 1.5707963267948966 rad + pos: 5.5,25.5 parent: 2 - - uid: 15946 + - uid: 7983 components: - type: Transform - pos: -22.5,37.5 + rot: 3.141592653589793 rad + pos: 6.5,-20.5 parent: 2 - - uid: 15947 + - uid: 7987 components: - type: Transform - pos: -28.5,35.5 + rot: -1.5707963267948966 rad + pos: -17.5,21.5 parent: 2 - - uid: 15948 + - uid: 7990 components: - type: Transform - pos: -34.5,40.5 + rot: 3.141592653589793 rad + pos: 21.5,21.5 parent: 2 - - uid: 15949 + - uid: 8008 components: - type: Transform - pos: -39.5,36.5 + rot: 3.141592653589793 rad + pos: -66.5,32.5 parent: 2 - - uid: 15950 + - uid: 8018 components: - type: Transform - pos: -41.5,37.5 + pos: 40.5,-27.5 parent: 2 - - uid: 15951 + - uid: 8021 components: - type: Transform - pos: -35.5,39.5 + rot: 3.141592653589793 rad + pos: 27.5,-43.5 parent: 2 - - uid: 15952 + - uid: 8022 components: - type: Transform - pos: -36.5,33.5 + rot: -1.5707963267948966 rad + pos: 23.5,-36.5 parent: 2 - - uid: 15953 + - uid: 8175 components: - type: Transform - pos: -38.5,29.5 + rot: 1.5707963267948966 rad + pos: -20.5,25.5 parent: 2 - - uid: 15954 + - uid: 8719 components: - type: Transform - pos: -44.5,32.5 + rot: 1.5707963267948966 rad + pos: 23.5,18.5 parent: 2 - - uid: 15955 + - uid: 10969 components: - type: Transform - pos: -44.5,38.5 + rot: -1.5707963267948966 rad + pos: -1.5,-31.5 parent: 2 - - uid: 15956 + - uid: 10970 components: - type: Transform - pos: -44.5,28.5 + rot: -1.5707963267948966 rad + pos: 1.5,-31.5 parent: 2 - - uid: 15957 + - uid: 11376 components: - type: Transform - pos: -52.5,30.5 + rot: 3.141592653589793 rad + pos: 49.5,-11.5 parent: 2 - - uid: 15958 + - uid: 11607 components: - type: Transform - pos: -56.5,23.5 + rot: -1.5707963267948966 rad + pos: 3.5,25.5 parent: 2 - - uid: 15959 + - uid: 11633 components: - type: Transform - pos: -54.5,13.5 + rot: 1.5707963267948966 rad + pos: -7.5,47.5 parent: 2 - - uid: 15960 + - uid: 11634 components: - type: Transform - pos: -72.5,27.5 + pos: -10.5,48.5 parent: 2 - - uid: 15961 + - uid: 11643 components: - type: Transform - pos: -52.5,34.5 + rot: -1.5707963267948966 rad + pos: -28.5,57.5 parent: 2 - - uid: 15962 + - uid: 11795 components: - type: Transform - pos: -62.5,37.5 + rot: -1.5707963267948966 rad + pos: 27.5,29.5 parent: 2 - - uid: 15963 + - uid: 11812 components: - type: Transform - pos: -63.5,37.5 + rot: 3.141592653589793 rad + pos: 26.5,17.5 parent: 2 - - uid: 15964 + - uid: 12389 components: - type: Transform - pos: -61.5,36.5 + rot: -1.5707963267948966 rad + pos: -43.5,44.5 parent: 2 - - uid: 15965 + - uid: 13412 components: - type: Transform - pos: -52.5,32.5 + pos: 20.5,47.5 parent: 2 - - uid: 15967 + - uid: 15704 components: - type: Transform - pos: -43.5,34.5 + rot: 1.5707963267948966 rad + pos: -37.5,-29.5 parent: 2 - - uid: 15968 + - uid: 15841 components: - type: Transform - pos: -24.5,43.5 + pos: -35.5,-37.5 parent: 2 - - uid: 15969 + - uid: 15843 components: - type: Transform - pos: -20.5,45.5 + rot: 3.141592653589793 rad + pos: -35.5,-35.5 parent: 2 - - uid: 15983 + - uid: 16596 components: - type: Transform - pos: 3.5,-19.5 - parent: 2 - - uid: 15989 + pos: 26.5,19.5 + parent: 16200 + - uid: 16597 components: - type: Transform - pos: -19.5,14.5 - parent: 2 - - uid: 15990 + rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 16200 + - uid: 16598 components: - type: Transform - pos: -18.5,17.5 - parent: 2 - - uid: 15991 + pos: 26.5,10.5 + parent: 16200 + - uid: 16599 components: - type: Transform - pos: -17.5,18.5 - parent: 2 - - uid: 15992 + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 16200 + - uid: 16600 components: - type: Transform - pos: -18.5,20.5 - parent: 2 - - uid: 15993 + rot: -1.5707963267948966 rad + pos: 22.5,17.5 + parent: 16200 + - uid: 16601 components: - type: Transform - pos: -18.5,22.5 - parent: 2 - - uid: 15994 + pos: 26.5,23.5 + parent: 16200 + - uid: 16602 components: - type: Transform - pos: -18.5,25.5 - parent: 2 - - uid: 15995 + pos: 21.5,24.5 + parent: 16200 + - uid: 16603 components: - type: Transform - pos: -19.5,25.5 - parent: 2 - - uid: 15996 + pos: 18.5,21.5 + parent: 16200 + - uid: 16604 components: - type: Transform - pos: -20.5,26.5 - parent: 2 - - uid: 15997 + rot: 3.141592653589793 rad + pos: 18.5,15.5 + parent: 16200 + - uid: 17146 components: - type: Transform - pos: -18.5,26.5 - parent: 2 - - uid: 15998 + pos: 7.5,19.5 + parent: 16675 + - uid: 17147 components: - type: Transform - pos: -19.5,26.5 - parent: 2 - - uid: 15999 + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 16675 + - uid: 17148 components: - type: Transform - pos: -17.5,26.5 - parent: 2 - - uid: 16000 + rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 16675 + - uid: 17149 components: - type: Transform - pos: -17.5,24.5 - parent: 2 - - uid: 16001 + rot: 1.5707963267948966 rad + pos: 10.5,20.5 + parent: 16675 + - uid: 17150 components: - type: Transform - pos: -17.5,25.5 - parent: 2 - - uid: 16002 + pos: 12.5,23.5 + parent: 16675 + - uid: 17151 components: - type: Transform - pos: -18.5,24.5 - parent: 2 - - uid: 16003 + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 16675 + - uid: 17152 components: - type: Transform - pos: -19.5,24.5 - parent: 2 - - uid: 16004 + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 16675 +- proto: PoweredStrobeLightEpsilon + entities: + - uid: 1407 components: - type: Transform - pos: -20.5,24.5 + rot: 1.5707963267948966 rad + pos: -26.5,-23.5 parent: 2 - - uid: 16005 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1413 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False +- proto: PoweredStrobeLightPolice + entities: + - uid: 20178 components: - type: Transform - pos: -20.5,25.5 + rot: 3.141592653589793 rad + pos: -26.5,4.5 parent: 2 - - uid: 16006 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 20179 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False +- proto: PoweredStrobeLightSiren + entities: + - uid: 2666 components: - type: Transform - pos: -16.5,24.5 + rot: 3.141592653589793 rad + pos: 5.5,-17.5 parent: 2 - - uid: 16007 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 2667 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PrintedDocumentDeathCertificate + entities: + - uid: 4684 components: - type: Transform - pos: -16.5,26.5 + rot: -1.5707963267948966 rad + pos: -16.651258,25.973894 parent: 2 - - uid: 16008 + - uid: 4685 components: - type: Transform - pos: -16.5,25.5 + rot: -1.5707963267948966 rad + pos: -16.651258,25.973894 parent: 2 - - uid: 16009 +- proto: PrinterDoc + entities: + - uid: 390 components: - type: Transform - pos: -20.5,22.5 + pos: -33.5,18.5 parent: 2 - - uid: 16010 + - uid: 2699 components: - type: Transform - pos: -21.5,22.5 + pos: 18.5,-21.5 parent: 2 - - uid: 16011 + - uid: 2714 components: - type: Transform - pos: -21.5,22.5 + rot: 3.141592653589793 rad + pos: 16.5,-24.5 parent: 2 - - uid: 16012 + - uid: 4912 components: - type: Transform - pos: -21.5,21.5 + pos: 10.5,-18.5 parent: 2 - - uid: 16013 + - uid: 5148 components: - type: Transform - pos: -23.5,18.5 + pos: 13.5,36.5 parent: 2 - - uid: 16014 +- proto: Protolathe + entities: + - uid: 1021 components: - type: Transform - pos: -25.5,17.5 + pos: -11.5,-9.5 parent: 2 - - uid: 16015 +- proto: PsychBed + entities: + - uid: 4844 components: - type: Transform - pos: -27.5,17.5 + pos: -29.5,15.5 parent: 2 - - uid: 16016 +- proto: PuddleEgg + entities: + - uid: 19007 components: - type: Transform - pos: -27.5,18.5 - parent: 2 - - uid: 16017 + pos: 18.5,26.5 + parent: 17641 + - uid: 19008 components: - type: Transform - pos: -22.5,16.5 - parent: 2 - - uid: 16018 + pos: 20.5,26.5 + parent: 17641 + - uid: 19009 components: - type: Transform - pos: -25.5,13.5 - parent: 2 - - uid: 16019 + pos: 19.5,26.5 + parent: 17641 +- proto: PuddleFlour + entities: + - uid: 19010 components: - type: Transform - pos: -23.5,14.5 - parent: 2 - - uid: 16020 + pos: 19.5,27.5 + parent: 17641 + - uid: 19011 components: - type: Transform - pos: -22.5,14.5 - parent: 2 - - uid: 16021 + pos: 21.5,27.5 + parent: 17641 + - uid: 19012 components: - type: Transform - pos: -26.5,11.5 - parent: 2 - - uid: 16022 + pos: 22.5,27.5 + parent: 17641 + - uid: 19013 components: - type: Transform - pos: -19.5,11.5 - parent: 2 - - uid: 16023 + pos: 20.5,27.5 + parent: 17641 + - uid: 19014 components: - type: Transform - pos: -8.5,13.5 - parent: 2 - - uid: 16024 + pos: 21.5,26.5 + parent: 17641 + - uid: 19015 components: - type: Transform - pos: -6.5,12.5 - parent: 2 - - uid: 16025 + pos: 22.5,26.5 + parent: 17641 +- proto: PuddleSmear + entities: + - uid: 15978 components: - type: Transform - pos: -5.5,15.5 + pos: 14.5,17.5 parent: 2 - - uid: 16026 + - uid: 19016 components: - type: Transform - pos: -8.5,18.5 - parent: 2 - - uid: 16027 + pos: 23.5,27.5 + parent: 17641 + - uid: 19017 components: - type: Transform - pos: -8.5,23.5 - parent: 2 - - uid: 16028 + pos: 23.5,26.5 + parent: 17641 + - uid: 19018 components: - type: Transform - pos: -8.5,24.5 - parent: 2 - - uid: 16036 + pos: 23.5,25.5 + parent: 17641 + - uid: 19019 components: - type: Transform - pos: -2.5,40.5 - parent: 2 - - uid: 17477 + pos: 22.5,25.5 + parent: 17641 + - uid: 19020 components: - type: Transform - pos: -18.5,24.5 - parent: 2 -- proto: Rack - entities: - - uid: 238 + pos: 20.5,25.5 + parent: 17641 + - uid: 19021 + components: + - type: Transform + pos: 19.5,25.5 + parent: 17641 + - uid: 19022 components: - type: Transform - pos: -15.5,-7.5 - parent: 2 - - uid: 1052 + pos: 18.5,25.5 + parent: 17641 + - uid: 19023 components: - type: Transform - pos: -14.5,-19.5 - parent: 2 - - uid: 1409 + pos: 21.5,25.5 + parent: 17641 + - uid: 19024 components: - type: Transform - pos: -10.5,-25.5 - parent: 2 - - uid: 1410 + pos: 13.5,27.5 + parent: 17641 + - uid: 19025 components: - type: Transform - pos: -11.5,-25.5 - parent: 2 - - uid: 1784 + pos: 14.5,27.5 + parent: 17641 + - uid: 19026 components: - type: Transform - pos: -12.5,0.5 - parent: 2 - - uid: 2001 + pos: 15.5,27.5 + parent: 17641 + - uid: 19027 components: - type: Transform - pos: -2.5,-20.5 - parent: 2 - - uid: 2002 + pos: 15.5,26.5 + parent: 17641 + - uid: 19028 components: - type: Transform - pos: -2.5,-18.5 - parent: 2 - - uid: 2371 + pos: 16.5,26.5 + parent: 17641 + - uid: 19029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,14.5 - parent: 2 - - uid: 2372 + pos: 17.5,26.5 + parent: 17641 + - uid: 19030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,13.5 - parent: 2 - - uid: 2576 + pos: 17.5,27.5 + parent: 17641 + - uid: 19031 components: - type: Transform - pos: -14.5,-7.5 - parent: 2 - - uid: 2585 + pos: 17.5,25.5 + parent: 17641 + - uid: 19032 components: - type: Transform - pos: -22.5,-7.5 - parent: 2 - - uid: 2649 + pos: 15.5,25.5 + parent: 17641 + - uid: 19033 components: - type: Transform - pos: -14.5,-20.5 - parent: 2 - - uid: 3156 + pos: 14.5,25.5 + parent: 17641 + - uid: 19034 components: - type: Transform - pos: 38.5,-19.5 - parent: 2 - - uid: 3157 + pos: 14.5,24.5 + parent: 17641 + - uid: 19035 components: - type: Transform - pos: 39.5,-19.5 - parent: 2 - - uid: 3158 + pos: 13.5,25.5 + parent: 17641 + - uid: 19036 components: - type: Transform - pos: 40.5,-19.5 - parent: 2 - - uid: 3318 + pos: 15.5,24.5 + parent: 17641 + - uid: 19037 components: - type: Transform - pos: 39.5,-39.5 - parent: 2 - - uid: 3659 + pos: 13.5,24.5 + parent: 17641 + - uid: 19038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,3.5 - parent: 2 - - uid: 3905 + pos: 16.5,25.5 + parent: 17641 + - uid: 19039 components: - type: Transform - pos: 42.5,-25.5 - parent: 2 - - uid: 3940 + pos: 16.5,24.5 + parent: 17641 +- proto: PuddleTomato + entities: + - uid: 19040 components: - type: Transform - pos: 39.5,-40.5 - parent: 2 - - uid: 4846 + pos: 15.5,25.5 + parent: 17641 + - uid: 19041 components: - type: Transform - pos: -6.5,-23.5 - parent: 2 - - uid: 4847 + pos: 15.5,24.5 + parent: 17641 + - uid: 19042 components: - type: Transform - pos: -8.5,-23.5 - parent: 2 - - uid: 4932 + pos: 16.5,25.5 + parent: 17641 + - uid: 19043 components: - type: Transform - pos: 36.5,-43.5 - parent: 2 - - uid: 4934 + pos: 17.5,25.5 + parent: 17641 + - uid: 19044 components: - type: Transform - pos: 35.5,-43.5 - parent: 2 - - uid: 5174 + pos: 17.5,26.5 + parent: 17641 + - uid: 19045 components: - type: Transform - pos: 34.5,-43.5 - parent: 2 - - uid: 5632 + pos: 16.5,26.5 + parent: 17641 + - uid: 19046 components: - type: Transform - pos: -35.5,43.5 - parent: 2 - - uid: 5709 + pos: 18.5,24.5 + parent: 17641 +- proto: PuddleVomit + entities: + - uid: 15947 components: - type: Transform - pos: -43.5,35.5 + pos: -28.5,35.5 parent: 2 - - uid: 5710 + - uid: 15983 components: - type: Transform - pos: -43.5,36.5 + pos: 3.5,-19.5 parent: 2 - - uid: 6503 + - uid: 16013 components: - type: Transform - pos: 27.5,31.5 + pos: -23.5,18.5 parent: 2 - - uid: 6504 + - uid: 19047 components: - type: Transform - pos: 29.5,31.5 - parent: 2 - - uid: 6505 + pos: 11.5,26.5 + parent: 17641 + - uid: 19048 components: - type: Transform - pos: 30.5,31.5 - parent: 2 - - uid: 6506 + pos: 11.5,27.5 + parent: 17641 + - uid: 19049 components: - type: Transform - pos: 28.5,31.5 - parent: 2 - - uid: 6951 + pos: 11.5,25.5 + parent: 17641 + - uid: 19050 components: - type: Transform - pos: -30.5,60.5 - parent: 2 - - uid: 6953 + pos: 12.5,27.5 + parent: 17641 + - uid: 19051 components: - type: Transform - pos: -30.5,61.5 - parent: 2 - - uid: 6954 + pos: 12.5,26.5 + parent: 17641 + - uid: 19052 components: - type: Transform - pos: -30.5,59.5 - parent: 2 - - uid: 7351 + pos: 12.5,25.5 + parent: 17641 + - uid: 19053 components: - type: Transform - pos: 25.5,-43.5 - parent: 2 - - uid: 8059 + pos: 13.5,27.5 + parent: 17641 + - uid: 19054 components: - type: Transform - pos: 52.5,-19.5 - parent: 2 - - uid: 8162 + pos: 13.5,26.5 + parent: 17641 + - uid: 19055 components: - type: Transform - pos: 47.5,-5.5 - parent: 2 - - uid: 8198 + pos: 13.5,25.5 + parent: 17641 + - uid: 19056 components: - type: Transform - pos: -15.5,0.5 - parent: 2 - - uid: 12353 + pos: 14.5,27.5 + parent: 17641 + - uid: 19057 components: - type: Transform - pos: 40.5,-31.5 - parent: 2 - - uid: 12966 + pos: 14.5,26.5 + parent: 17641 + - uid: 19058 components: - type: Transform - pos: 40.5,-30.5 - parent: 2 - - uid: 13392 + pos: 14.5,25.5 + parent: 17641 + - uid: 19059 components: - type: Transform - pos: 18.5,45.5 - parent: 2 - - uid: 13393 + pos: 15.5,27.5 + parent: 17641 + - uid: 19060 components: - type: Transform - pos: 19.5,45.5 - parent: 2 - - uid: 13394 + pos: 15.5,26.5 + parent: 17641 + - uid: 19061 components: - type: Transform - pos: 19.5,47.5 - parent: 2 -- proto: RadiationCollectorFullTank - entities: - - uid: 1321 + pos: 15.5,25.5 + parent: 17641 + - uid: 19062 components: - type: Transform - pos: -20.5,-45.5 - parent: 2 - - uid: 2840 + pos: 16.5,27.5 + parent: 17641 + - uid: 19063 components: - type: Transform - pos: -18.5,-44.5 - parent: 2 - - uid: 8413 + pos: 16.5,26.5 + parent: 17641 + - uid: 19064 components: - type: Transform - pos: -20.5,-44.5 - parent: 2 - - uid: 17504 + pos: 16.5,25.5 + parent: 17641 + - uid: 19065 components: - type: Transform - pos: -18.5,-45.5 - parent: 2 - - uid: 17506 + pos: 16.5,24.5 + parent: 17641 + - uid: 19066 components: - type: Transform - pos: -18.5,-43.5 - parent: 2 - - uid: 17508 + pos: 16.5,26.5 + parent: 17641 + - uid: 19067 components: - type: Transform - pos: -20.5,-43.5 - parent: 2 -- proto: RadioHandheld - entities: - - uid: 6866 + pos: 16.5,27.5 + parent: 17641 + - uid: 19068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.478573,60.430992 - parent: 2 - - uid: 6867 + pos: 16.5,28.5 + parent: 17641 + - uid: 19069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.478573,60.196617 - parent: 2 -- proto: RagItem - entities: - - uid: 4681 + pos: 16.5,25.5 + parent: 17641 + - uid: 19070 components: - type: Transform - pos: -16.58564,25.60007 - parent: 2 -- proto: Railing - entities: - - uid: 89 + pos: 17.5,28.5 + parent: 17641 + - uid: 19071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,5.5 - parent: 2 - - uid: 473 + pos: 19.5,28.5 + parent: 17641 + - uid: 19072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,26.5 - parent: 2 - - uid: 1350 + pos: 14.5,3.5 + parent: 17641 + - uid: 19073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 2 - - uid: 1415 + pos: 13.5,3.5 + parent: 17641 + - uid: 19074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 2 - - uid: 1853 + pos: 14.5,2.5 + parent: 17641 + - uid: 19075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-28.5 - parent: 2 - - uid: 1935 + pos: 12.5,2.5 + parent: 17641 +- proto: PuddleWatermelon + entities: + - uid: 19076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-31.5 - parent: 2 - - uid: 3005 + pos: 11.5,28.5 + parent: 17641 + - uid: 19077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-31.5 - parent: 2 - - uid: 3098 + pos: 12.5,28.5 + parent: 17641 + - uid: 19078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-28.5 - parent: 2 - - uid: 3400 + pos: 15.5,28.5 + parent: 17641 + - uid: 19079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-29.5 - parent: 2 - - uid: 3401 + pos: 17.5,28.5 + parent: 17641 + - uid: 19080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-28.5 - parent: 2 - - uid: 3402 + pos: 19.5,28.5 + parent: 17641 +- proto: Rack + entities: + - uid: 13 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-30.5 + rot: -1.5707963267948966 rad + pos: -47.5,35.5 parent: 2 - - uid: 4105 + - uid: 238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,17.5 + pos: -15.5,-7.5 parent: 2 - - uid: 4106 + - uid: 296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,16.5 + pos: -21.5,6.5 parent: 2 - - uid: 4107 + - uid: 1052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,15.5 + pos: -14.5,-19.5 parent: 2 - - uid: 4108 + - uid: 1409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,14.5 + pos: -10.5,-25.5 parent: 2 - - uid: 4109 + - uid: 1410 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,13.5 + pos: -11.5,-25.5 parent: 2 - - uid: 4361 + - uid: 1784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,25.5 + pos: -12.5,0.5 parent: 2 - - uid: 4362 + - uid: 2001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,24.5 + pos: -2.5,-20.5 parent: 2 - - uid: 4648 + - uid: 2002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 + pos: -2.5,-18.5 parent: 2 - - uid: 5613 + - uid: 2371 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,36.5 + pos: 37.5,14.5 parent: 2 - - uid: 5614 + - uid: 2372 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,37.5 + pos: 37.5,13.5 parent: 2 - - uid: 5615 + - uid: 2576 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,38.5 + pos: -14.5,-7.5 parent: 2 - - uid: 5634 + - uid: 2585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,36.5 + pos: -22.5,-7.5 parent: 2 - - uid: 5635 + - uid: 2649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,37.5 + pos: -14.5,-20.5 parent: 2 - - uid: 5636 + - uid: 3140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,38.5 + pos: -2.5,45.5 parent: 2 - - uid: 5637 + - uid: 3156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,39.5 + pos: 38.5,-19.5 parent: 2 - - uid: 5638 + - uid: 3157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,39.5 + pos: 39.5,-19.5 parent: 2 - - uid: 5796 + - uid: 3158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,33.5 + pos: 40.5,-19.5 parent: 2 - - uid: 5797 + - uid: 3318 components: - type: Transform - pos: -42.5,33.5 + pos: 39.5,-39.5 parent: 2 - - uid: 6040 + - uid: 3603 components: - type: Transform - pos: -35.5,-29.5 + pos: -5.5,40.5 parent: 2 - - uid: 6635 + - uid: 3659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,23.5 + rot: 1.5707963267948966 rad + pos: -15.5,3.5 parent: 2 - - uid: 6636 + - uid: 3905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,24.5 + pos: 42.5,-25.5 parent: 2 - - uid: 6640 + - uid: 3940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,25.5 + pos: 39.5,-40.5 parent: 2 - - uid: 6642 + - uid: 4422 components: - type: Transform - pos: 23.5,27.5 + rot: -1.5707963267948966 rad + pos: -47.5,36.5 parent: 2 - - uid: 6777 + - uid: 4430 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,14.5 + pos: -59.5,35.5 parent: 2 - - uid: 6778 + - uid: 4453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,14.5 + pos: -4.5,45.5 parent: 2 - - uid: 6781 + - uid: 4462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,15.5 + pos: -59.5,36.5 parent: 2 - - uid: 6782 + - uid: 4692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,16.5 + rot: -1.5707963267948966 rad + pos: -19.5,22.5 parent: 2 - - uid: 6783 + - uid: 4785 components: - type: Transform - pos: 11.5,17.5 + pos: -21.5,8.5 parent: 2 - - uid: 6784 + - uid: 4846 components: - type: Transform - pos: 12.5,17.5 + pos: -6.5,-23.5 parent: 2 - - uid: 6785 + - uid: 4847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,16.5 + pos: -8.5,-23.5 parent: 2 - - uid: 6786 + - uid: 4906 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,15.5 + pos: -19.5,20.5 parent: 2 - - uid: 15795 + - uid: 4932 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-30.5 + pos: 36.5,-43.5 parent: 2 - - uid: 15825 + - uid: 4934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-29.5 + pos: 35.5,-43.5 parent: 2 - - uid: 15826 + - uid: 5174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-29.5 + pos: 34.5,-43.5 parent: 2 - - uid: 15827 + - uid: 5514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-29.5 + rot: 3.141592653589793 rad + pos: -59.5,34.5 parent: 2 - - uid: 15828 + - uid: 5632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-29.5 + pos: -35.5,43.5 parent: 2 - - uid: 15829 + - uid: 5709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-29.5 + pos: -43.5,35.5 parent: 2 - - uid: 15830 + - uid: 5710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-29.5 + pos: -43.5,36.5 parent: 2 - - uid: 17426 + - uid: 6610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-1.5 + pos: -5.5,41.5 parent: 2 - - uid: 18301 + - uid: 6951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,20.5 + pos: -30.5,60.5 parent: 2 - - uid: 18308 + - uid: 6953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 + pos: -30.5,61.5 parent: 2 - - uid: 18309 + - uid: 6954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,17.5 + pos: -30.5,59.5 parent: 2 - - uid: 18310 + - uid: 7351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,16.5 + pos: 25.5,-43.5 parent: 2 - - uid: 18311 + - uid: 8059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 + pos: 52.5,-19.5 parent: 2 - - uid: 18600 + - uid: 8162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,19.5 + pos: 47.5,-5.5 parent: 2 - - uid: 18676 + - uid: 12353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 17590 - - uid: 18679 + pos: 40.5,-31.5 + parent: 2 + - uid: 12966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 17590 - - uid: 18680 + pos: 40.5,-30.5 + parent: 2 + - uid: 13392 components: - type: Transform - pos: 5.5,-5.5 - parent: 17590 - - uid: 18681 + pos: 18.5,45.5 + parent: 2 + - uid: 13393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 17590 - - uid: 18683 + pos: 19.5,45.5 + parent: 2 + - uid: 13394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 17590 - - uid: 18684 + pos: 19.5,47.5 + parent: 2 + - uid: 15941 components: - type: Transform - pos: 5.5,-11.5 - parent: 17590 - - uid: 18685 + pos: -22.5,47.5 + parent: 2 + - uid: 15942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 17590 - - uid: 18687 + pos: -23.5,47.5 + parent: 2 + - uid: 15945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 17590 - - uid: 18689 + pos: -17.5,50.5 + parent: 2 + - uid: 15948 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-8.5 - parent: 17590 - - uid: 18690 + pos: -17.5,51.5 + parent: 2 + - uid: 15962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 17590 - - uid: 18696 + pos: -25.5,39.5 + parent: 2 + - uid: 15963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 17590 - - uid: 18702 + pos: -25.5,40.5 + parent: 2 +- proto: RadiationCollectorFullTank + entities: + - uid: 1321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 17590 - - uid: 18705 + pos: -20.5,-45.5 + parent: 2 + - uid: 2840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-7.5 - parent: 17590 - - uid: 18713 + pos: -18.5,-44.5 + parent: 2 + - uid: 8413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 17590 - - uid: 18815 + pos: -20.5,-44.5 + parent: 2 + - uid: 17504 components: - type: Transform - pos: 23.5,-5.5 - parent: 17590 - - uid: 18816 + pos: -18.5,-45.5 + parent: 2 + - uid: 17506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 17590 - - uid: 18865 + pos: -18.5,-43.5 + parent: 2 + - uid: 17508 components: - type: Transform - pos: 35.5,-5.5 - parent: 17590 - - uid: 18944 + pos: -20.5,-43.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 6866 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-7.5 - parent: 17590 - - uid: 18945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-6.5 - parent: 17590 - - uid: 19316 + pos: -24.478573,60.430992 + parent: 2 + - uid: 6867 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 17590 - - uid: 19317 + pos: -24.478573,60.196617 + parent: 2 +- proto: RagItem + entities: + - uid: 4681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 17590 - - uid: 19319 + pos: -16.58564,25.60007 + parent: 2 +- proto: Railing + entities: + - uid: 473 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-3.5 - parent: 17590 - - uid: 19338 + pos: 24.5,26.5 + parent: 2 + - uid: 1350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 17590 - - uid: 19339 + rot: -1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 2 + - uid: 1415 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 17590 - - uid: 19340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 17590 - - uid: 19341 + pos: -0.5,-29.5 + parent: 2 + - uid: 1853 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-7.5 - parent: 17590 - - uid: 19547 + pos: -36.5,-28.5 + parent: 2 + - uid: 1935 components: - type: Transform - pos: 36.5,2.5 - parent: 17590 - - uid: 19548 + rot: 1.5707963267948966 rad + pos: -34.5,-31.5 + parent: 2 + - uid: 3005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-0.5 - parent: 17590 - - uid: 19549 + rot: -1.5707963267948966 rad + pos: -36.5,-31.5 + parent: 2 + - uid: 3098 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,0.5 - parent: 17590 - - uid: 19550 + pos: -34.5,-28.5 + parent: 2 + - uid: 3400 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,1.5 - parent: 17590 - - uid: 20141 + pos: 35.5,-29.5 + parent: 2 + - uid: 3401 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,20.5 + pos: 35.5,-28.5 parent: 2 - - uid: 20142 + - uid: 3402 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,19.5 + pos: 35.5,-30.5 parent: 2 - - uid: 20143 + - uid: 4105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,18.5 + rot: -1.5707963267948966 rad + pos: 9.5,17.5 parent: 2 - - uid: 20144 + - uid: 4106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,17.5 + rot: -1.5707963267948966 rad + pos: 9.5,16.5 parent: 2 - - uid: 20146 + - uid: 4107 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,21.5 + pos: 9.5,15.5 parent: 2 - - uid: 20147 + - uid: 4108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,22.5 + rot: -1.5707963267948966 rad + pos: 9.5,14.5 parent: 2 -- proto: RailingCorner - entities: - - uid: 1652 + - uid: 4109 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-30.5 + pos: 8.5,13.5 parent: 2 - - uid: 1672 + - uid: 4361 components: - type: Transform - pos: -34.5,-29.5 + rot: -1.5707963267948966 rad + pos: 22.5,25.5 parent: 2 - - uid: 1882 + - uid: 4362 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-29.5 + pos: 22.5,24.5 parent: 2 - - uid: 3006 + - uid: 4545 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-30.5 + pos: 59.5,-8.5 parent: 2 - - uid: 3096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-27.5 - parent: 2 - - uid: 6039 + - uid: 4648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-27.5 + pos: 7.5,-0.5 parent: 2 - - uid: 19318 + - uid: 5001 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 17590 - - uid: 20139 + pos: 22.5,35.5 + parent: 2 + - uid: 5613 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,22.5 + pos: -32.5,36.5 parent: 2 - - uid: 20140 + - uid: 5614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,22.5 + rot: 3.141592653589793 rad + pos: -32.5,37.5 parent: 2 -- proto: RailingCornerSmall - entities: - - uid: 1184 + - uid: 5615 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-28.5 + pos: -32.5,38.5 parent: 2 - - uid: 1242 + - uid: 5634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-28.5 + rot: -1.5707963267948966 rad + pos: -32.5,36.5 parent: 2 - - uid: 2238 + - uid: 5635 components: - type: Transform - pos: -36.5,-32.5 + rot: -1.5707963267948966 rad + pos: -32.5,37.5 parent: 2 - - uid: 3095 + - uid: 5636 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-32.5 + pos: -32.5,38.5 parent: 2 - - uid: 3403 + - uid: 5637 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-31.5 + pos: -32.5,39.5 parent: 2 - - uid: 3404 + - uid: 5638 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-27.5 + pos: -32.5,39.5 parent: 2 - - uid: 4110 + - uid: 5796 components: - type: Transform - pos: 9.5,13.5 + rot: 3.141592653589793 rad + pos: -42.5,33.5 parent: 2 - - uid: 4111 + - uid: 5797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,18.5 + pos: -42.5,33.5 parent: 2 - - uid: 6641 + - uid: 6040 components: - type: Transform - pos: 24.5,22.5 + pos: -35.5,-29.5 parent: 2 - - uid: 6643 + - uid: 6454 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,27.5 + pos: 22.5,36.5 parent: 2 - - uid: 6776 + - uid: 6494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,14.5 - parent: 2 - - uid: 6787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,17.5 + pos: 26.5,36.5 parent: 2 - - uid: 6789 + - uid: 6554 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,17.5 + pos: 22.5,33.5 parent: 2 - - uid: 6790 + - uid: 6557 components: - type: Transform - pos: 13.5,14.5 + rot: -1.5707963267948966 rad + pos: 26.5,35.5 parent: 2 - - uid: 15831 + - uid: 6568 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-28.5 + rot: 1.5707963267948966 rad + pos: 22.5,32.5 parent: 2 - - uid: 15832 + - uid: 6569 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-28.5 + rot: 1.5707963267948966 rad + pos: 22.5,31.5 parent: 2 - - uid: 15833 + - uid: 6635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-28.5 + rot: -1.5707963267948966 rad + pos: 24.5,23.5 parent: 2 - - uid: 15834 + - uid: 6636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-28.5 + rot: -1.5707963267948966 rad + pos: 24.5,24.5 parent: 2 - - uid: 15835 + - uid: 6640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-28.5 + rot: -1.5707963267948966 rad + pos: 24.5,25.5 parent: 2 - - uid: 15836 + - uid: 6642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 + pos: 23.5,27.5 parent: 2 - - uid: 17427 + - uid: 15563 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,0.5 + pos: 55.5,-4.5 parent: 2 - - uid: 17428 + - uid: 15564 components: - type: Transform - pos: 9.5,-1.5 + rot: 3.141592653589793 rad + pos: 57.5,-4.5 parent: 2 - - uid: 17429 + - uid: 15565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + rot: 3.141592653589793 rad + pos: 58.5,-4.5 parent: 2 - - uid: 18699 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 17590 - - uid: 18703 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 17590 - - uid: 18704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 17590 - - uid: 18706 + - uid: 15566 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 17590 - - uid: 18708 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 17590 - - uid: 18709 + pos: 56.5,-4.5 + parent: 2 + - uid: 15567 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 17590 - - uid: 18710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 17590 - - uid: 18711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-5.5 - parent: 17590 - - uid: 18714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 17590 - - uid: 18818 + pos: 59.5,-5.5 + parent: 2 + - uid: 15569 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 17590 - - uid: 18820 + pos: 59.5,-6.5 + parent: 2 + - uid: 15570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-5.5 - parent: 17590 - - uid: 18869 + rot: 1.5707963267948966 rad + pos: 59.5,-9.5 + parent: 2 + - uid: 15571 components: - type: Transform - pos: 24.5,-8.5 - parent: 17590 - - uid: 19320 + rot: 1.5707963267948966 rad + pos: 59.5,-12.5 + parent: 2 + - uid: 15572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 17590 - - uid: 19321 + rot: 1.5707963267948966 rad + pos: 59.5,-11.5 + parent: 2 + - uid: 15573 components: - type: Transform - pos: 24.5,-4.5 - parent: 17590 - - uid: 19322 + rot: 1.5707963267948966 rad + pos: 59.5,-13.5 + parent: 2 + - uid: 15574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 17590 - - uid: 19323 + rot: 1.5707963267948966 rad + pos: 59.5,-15.5 + parent: 2 + - uid: 15575 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 17590 - - uid: 19343 + pos: 59.5,-16.5 + parent: 2 + - uid: 15576 components: - type: Transform - pos: 26.5,-8.5 - parent: 17590 - - uid: 19344 + rot: 1.5707963267948966 rad + pos: 59.5,-14.5 + parent: 2 + - uid: 15577 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-5.5 - parent: 17590 - - uid: 19346 + rot: 1.5707963267948966 rad + pos: 59.5,-17.5 + parent: 2 + - uid: 15578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 17590 - - uid: 19347 + rot: 1.5707963267948966 rad + pos: 59.5,-10.5 + parent: 2 + - uid: 15580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 17590 - - uid: 19348 + pos: 58.5,-18.5 + parent: 2 + - uid: 15583 components: - type: Transform - pos: 33.5,-8.5 - parent: 17590 - - uid: 19349 + pos: 56.5,-18.5 + parent: 2 + - uid: 15584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 17590 - - uid: 19350 + pos: 57.5,-18.5 + parent: 2 + - uid: 15586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 17590 - - uid: 19352 + pos: 55.5,-18.5 + parent: 2 + - uid: 15795 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-5.5 - parent: 17590 - - uid: 19551 + pos: -35.5,-30.5 + parent: 2 + - uid: 15825 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 17590 - - uid: 19552 + pos: -9.5,-29.5 + parent: 2 + - uid: 15826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,2.5 - parent: 17590 - - uid: 20145 + rot: 1.5707963267948966 rad + pos: -10.5,-29.5 + parent: 2 + - uid: 15827 components: - type: Transform - pos: 38.5,20.5 + rot: 1.5707963267948966 rad + pos: -13.5,-29.5 parent: 2 - - uid: 20148 + - uid: 15828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,20.5 + rot: 1.5707963267948966 rad + pos: -16.5,-29.5 parent: 2 -- proto: RailingRound - entities: - - uid: 5794 + - uid: 15829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,33.5 + rot: -1.5707963267948966 rad + pos: -15.5,-29.5 parent: 2 - - uid: 5795 + - uid: 15830 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,33.5 + pos: -12.5,-29.5 parent: 2 - - uid: 8170 + - uid: 17426 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-8.5 + pos: 8.5,-1.5 parent: 2 - - uid: 15602 + - uid: 18301 components: - type: Transform - pos: -35.5,-42.5 + rot: -1.5707963267948966 rad + pos: 34.5,20.5 parent: 2 -- proto: RandomArtifactSpawner - entities: - - uid: 1395 + - uid: 18308 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,23.5 + pos: 34.5,18.5 parent: 2 - - uid: 3684 + - uid: 18309 components: - type: Transform - pos: -24.5,-16.5 + rot: -1.5707963267948966 rad + pos: 34.5,17.5 parent: 2 - - uid: 4064 + - uid: 18310 components: - type: Transform - pos: 27.5,20.5 + rot: -1.5707963267948966 rad + pos: 34.5,16.5 parent: 2 -- proto: RandomCommandCorpseSpawner - entities: - - uid: 18905 + - uid: 18311 components: - type: Transform - pos: -1.5,-6.5 - parent: 17590 -- proto: RandomDrinkBottle - entities: - - uid: 3868 + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - uid: 18600 components: - type: Transform - pos: 15.5,16.5 + rot: -1.5707963267948966 rad + pos: 34.5,19.5 parent: 2 - - uid: 19843 + - uid: 19081 components: - type: Transform - pos: 28.5,-18.5 - parent: 17590 - - uid: 19844 + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 17641 + - uid: 19082 components: - type: Transform - pos: 29.5,-17.5 - parent: 17590 - - uid: 19845 + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 17641 + - uid: 19083 components: - type: Transform - pos: 30.5,-15.5 - parent: 17590 - - uid: 19846 + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 17641 + - uid: 19084 components: - type: Transform - pos: 31.5,-16.5 - parent: 17590 -- proto: RandomDrinkGlass - entities: - - uid: 3863 + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 17641 + - uid: 19085 components: - type: Transform - pos: 15.5,20.5 - parent: 2 - - uid: 3864 + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 17641 + - uid: 19086 components: - type: Transform - pos: 15.5,19.5 - parent: 2 - - uid: 3865 + pos: 4.5,-3.5 + parent: 17641 + - uid: 19087 components: - type: Transform - pos: 15.5,17.5 - parent: 2 - - uid: 3866 + pos: 1.5,-3.5 + parent: 17641 + - uid: 19088 components: - type: Transform - pos: 15.5,18.5 - parent: 2 - - uid: 19712 + pos: 0.5,-3.5 + parent: 17641 + - uid: 19089 components: - type: Transform - pos: 28.5,-16.5 - parent: 17590 - - uid: 19839 + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 17641 + - uid: 19090 components: - type: Transform - pos: 28.5,-17.5 - parent: 17590 - - uid: 19840 + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 17641 + - uid: 19091 components: - type: Transform - pos: 28.5,-15.5 - parent: 17590 - - uid: 19841 + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 17641 + - uid: 19092 components: - type: Transform - pos: 29.5,-18.5 - parent: 17590 - - uid: 19842 + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 17641 + - uid: 19093 components: - type: Transform - pos: 29.5,-19.5 - parent: 17590 -- proto: RandomEngineerCorpseSpawner - entities: - - uid: 17450 + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 17641 + - uid: 19094 components: - type: Transform - pos: -11.5,5.5 - parent: 2 - - uid: 17463 + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 17641 + - uid: 19095 components: - type: Transform - pos: -56.5,38.5 - parent: 2 -- proto: RandomFoodMeal - entities: - - uid: 18498 + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 17641 + - uid: 19096 components: - type: Transform - pos: 20.5,0.5 - parent: 17590 - - uid: 18599 + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 17641 + - uid: 19097 components: - type: Transform - pos: 22.5,1.5 - parent: 17590 - - uid: 19827 + rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 17641 + - uid: 19098 components: - type: Transform - pos: 24.5,1.5 - parent: 17590 - - uid: 20077 + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 17641 + - uid: 19099 components: - type: Transform - pos: 29.5,0.5 - parent: 17590 - - uid: 20081 + pos: 5.5,-3.5 + parent: 17641 + - uid: 19100 components: - type: Transform - pos: 26.5,0.5 - parent: 17590 -- proto: RandomFoodSingle - entities: - - uid: 20082 + pos: 6.5,-3.5 + parent: 17641 + - uid: 19101 components: - type: Transform - pos: 28.5,0.5 - parent: 17590 - - uid: 20086 + pos: 7.5,-3.5 + parent: 17641 + - uid: 19102 components: - type: Transform - pos: 22.5,0.5 - parent: 17590 - - uid: 20088 + pos: 8.5,-3.5 + parent: 17641 + - uid: 19103 components: - type: Transform - pos: 27.5,0.5 - parent: 17590 -- proto: RandomMedicCorpseSpawner - entities: - - uid: 19709 + pos: 9.5,-3.5 + parent: 17641 + - uid: 19104 components: - type: Transform - pos: 20.5,-13.5 - parent: 17590 -- proto: RandomPainting - entities: - - uid: 4884 + pos: 7.5,3.5 + parent: 17641 + - uid: 19105 components: - type: Transform - pos: -32.5,19.5 - parent: 2 - - uid: 4886 + pos: 8.5,3.5 + parent: 17641 + - uid: 19106 components: - type: Transform - pos: -34.5,13.5 - parent: 2 - - uid: 4888 + pos: 9.5,3.5 + parent: 17641 + - uid: 19107 components: - type: Transform - pos: -33.5,15.5 - parent: 2 - - uid: 5169 + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 17641 + - uid: 19108 components: - type: Transform - pos: 1.5,35.5 - parent: 2 - - uid: 5170 + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 17641 + - uid: 19109 components: - type: Transform - pos: 4.5,35.5 - parent: 2 - - uid: 5171 + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 17641 + - uid: 19110 components: - type: Transform - pos: 7.5,35.5 - parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 12336 + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 17641 + - uid: 19111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 2 - - uid: 12337 + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 17641 + - uid: 19112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-22.5 - parent: 2 - - uid: 12338 + pos: 10.5,3.5 + parent: 17641 + - uid: 19113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-22.5 - parent: 2 - - uid: 12339 + pos: 17.5,-3.5 + parent: 17641 + - uid: 19114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 2 - - uid: 12340 + pos: 16.5,-3.5 + parent: 17641 + - uid: 19115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 2 - - uid: 12341 + pos: 19.5,-3.5 + parent: 17641 + - uid: 19116 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 2 - - uid: 12915 + pos: 6.5,5.5 + parent: 17641 + - uid: 19117 components: - type: Transform - pos: 6.5,-21.5 - parent: 2 - - uid: 14085 + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 17641 + - uid: 19118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-17.5 - parent: 2 - - uid: 14086 + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 17641 + - uid: 19119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-17.5 - parent: 2 - - uid: 14147 + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 17641 + - uid: 19120 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 2 - - uid: 14148 + pos: 4.5,7.5 + parent: 17641 + - uid: 19121 components: - type: Transform - pos: -20.5,-6.5 - parent: 2 - - uid: 14149 + pos: 5.5,9.5 + parent: 17641 + - uid: 19122 components: - type: Transform - pos: -23.5,-6.5 - parent: 2 - - uid: 14153 + pos: 15.5,-3.5 + parent: 17641 + - uid: 19123 components: - type: Transform - pos: -14.5,6.5 - parent: 2 - - uid: 14154 + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 17641 + - uid: 19124 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,6.5 - parent: 2 - - uid: 14155 + pos: 8.5,7.5 + parent: 17641 + - uid: 19125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,6.5 - parent: 2 - - uid: 14156 + pos: 22.5,-3.5 + parent: 17641 + - uid: 19126 components: - type: Transform - pos: -24.5,3.5 - parent: 2 - - uid: 14157 + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 17641 + - uid: 19127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 2 - - uid: 14158 + pos: 10.5,9.5 + parent: 17641 + - uid: 19128 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-4.5 - parent: 2 - - uid: 14159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,4.5 - parent: 2 - - uid: 14166 + pos: 24.5,-2.5 + parent: 17641 + - uid: 19129 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,36.5 - parent: 2 - - uid: 14173 + pos: 26.5,-0.5 + parent: 17641 + - uid: 19130 components: - type: Transform - pos: 10.5,47.5 - parent: 2 - - uid: 14175 + rot: -1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 17641 + - uid: 19131 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,41.5 - parent: 2 - - uid: 14181 + pos: 12.5,6.5 + parent: 17641 + - uid: 19132 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,42.5 - parent: 2 - - uid: 14186 - components: - - type: Transform - pos: -7.5,30.5 - parent: 2 - - uid: 14191 + pos: 14.5,6.5 + parent: 17641 + - uid: 19133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,25.5 - parent: 2 - - uid: 14199 + pos: 23.5,-3.5 + parent: 17641 + - uid: 19134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,21.5 - parent: 2 - - uid: 14204 + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 17641 + - uid: 19135 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 2 - - uid: 14206 + pos: 13.5,6.5 + parent: 17641 + - uid: 19136 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,27.5 - parent: 2 - - uid: 14207 + pos: 17.5,6.5 + parent: 17641 + - uid: 19137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,19.5 - parent: 2 - - uid: 14208 + rot: -1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 17641 + - uid: 19138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,19.5 - parent: 2 - - uid: 14210 + rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 17641 + - uid: 19139 components: - type: Transform - pos: 1.5,23.5 - parent: 2 - - uid: 14211 + rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 17641 + - uid: 19140 components: - type: Transform - pos: 0.5,23.5 - parent: 2 - - uid: 14216 + rot: 3.141592653589793 rad + pos: 22.5,6.5 + parent: 17641 + - uid: 19141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,41.5 - parent: 2 - - uid: 14217 + rot: 3.141592653589793 rad + pos: 19.5,6.5 + parent: 17641 + - uid: 19142 components: - type: Transform - pos: 1.5,47.5 - parent: 2 - - uid: 14218 + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 17641 + - uid: 19143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 2 - - uid: 14219 + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 17641 + - uid: 19144 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,39.5 - parent: 2 - - uid: 14220 + pos: 26.5,5.5 + parent: 17641 + - uid: 19145 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,35.5 - parent: 2 - - uid: 14221 + pos: 26.5,3.5 + parent: 17641 + - uid: 19146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,31.5 - parent: 2 - - uid: 14223 + rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 17641 + - uid: 19147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,30.5 - parent: 2 - - uid: 14232 + rot: -1.5707963267948966 rad + pos: 26.5,4.5 + parent: 17641 + - uid: 19148 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 2 - - uid: 14233 + pos: 26.5,1.5 + parent: 17641 + - uid: 19149 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,15.5 - parent: 2 - - uid: 14234 + pos: 24.5,5.5 + parent: 17641 + - uid: 19150 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,12.5 - parent: 2 - - uid: 14237 + pos: 24.5,3.5 + parent: 17641 + - uid: 19151 components: - type: Transform - pos: -12.5,45.5 - parent: 2 - - uid: 14239 + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 17641 + - uid: 19152 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,42.5 - parent: 2 - - uid: 14240 + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 17641 + - uid: 19153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,47.5 - parent: 2 - - uid: 14241 + rot: 1.5707963267948966 rad + pos: 24.5,4.5 + parent: 17641 + - uid: 19154 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,46.5 - parent: 2 - - uid: 14242 - components: - - type: Transform - pos: -23.5,42.5 - parent: 2 - - uid: 14243 - components: - - type: Transform - pos: -38.5,44.5 - parent: 2 - - uid: 14244 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,38.5 - parent: 2 - - uid: 14245 + pos: 11.5,-5.5 + parent: 17641 + - uid: 19155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,37.5 - parent: 2 - - uid: 14246 + pos: 11.5,-3.5 + parent: 17641 + - uid: 19156 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 17641 + - uid: 19157 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,35.5 - parent: 2 - - uid: 14247 + pos: -1.5,-5.5 + parent: 17641 + - uid: 19158 components: - type: Transform - pos: -44.5,42.5 - parent: 2 - - uid: 14249 + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 17641 + - uid: 19159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,45.5 - parent: 2 - - uid: 14250 + pos: 3.5,-3.5 + parent: 17641 + - uid: 19160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,45.5 - parent: 2 - - uid: 14254 + pos: 14.5,-3.5 + parent: 17641 + - uid: 19161 components: - type: Transform - pos: -52.5,42.5 - parent: 2 - - uid: 14257 + pos: 18.5,-3.5 + parent: 17641 + - uid: 19162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,35.5 - parent: 2 - - uid: 14260 + pos: 13.5,-3.5 + parent: 17641 + - uid: 19163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,37.5 - parent: 2 - - uid: 14261 + rot: 3.141592653589793 rad + pos: 14.5,-5.5 + parent: 17641 + - uid: 19164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,36.5 - parent: 2 - - uid: 14262 + rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 17641 + - uid: 19165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,35.5 - parent: 2 - - uid: 14264 + rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 17641 + - uid: 19166 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,34.5 - parent: 2 - - uid: 14266 + pos: 18.5,-5.5 + parent: 17641 + - uid: 19167 components: - type: Transform - pos: -61.5,38.5 - parent: 2 - - uid: 14269 + rot: 3.141592653589793 rad + pos: 19.5,-5.5 + parent: 17641 + - uid: 19168 components: - type: Transform - pos: -67.5,38.5 - parent: 2 - - uid: 14270 + rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 17641 + - uid: 19169 components: - type: Transform - pos: -68.5,38.5 - parent: 2 - - uid: 14271 + rot: 3.141592653589793 rad + pos: 24.5,-5.5 + parent: 17641 + - uid: 19170 components: - type: Transform - pos: -69.5,38.5 - parent: 2 - - uid: 14272 + rot: 3.141592653589793 rad + pos: 26.5,-5.5 + parent: 17641 + - uid: 19171 components: - type: Transform - pos: -70.5,38.5 - parent: 2 - - uid: 14273 + rot: 3.141592653589793 rad + pos: 27.5,-5.5 + parent: 17641 + - uid: 19172 components: - type: Transform - pos: -66.5,38.5 - parent: 2 - - uid: 14276 + rot: 3.141592653589793 rad + pos: 25.5,-5.5 + parent: 17641 + - uid: 19173 components: - type: Transform - pos: -70.5,34.5 - parent: 2 - - uid: 14278 + rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 17641 + - uid: 19174 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,31.5 - parent: 2 - - uid: 16848 + pos: 31.5,-5.5 + parent: 17641 + - uid: 19175 components: - type: Transform - pos: 7.5,16.5 - parent: 16675 - - uid: 16849 + rot: 3.141592653589793 rad + pos: 32.5,-5.5 + parent: 17641 + - uid: 19176 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,11.5 - parent: 16675 - - uid: 16850 + pos: 30.5,-5.5 + parent: 17641 + - uid: 19177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,14.5 - parent: 16675 - - uid: 16853 + rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 17641 + - uid: 19178 components: - type: Transform - pos: 12.5,22.5 - parent: 16675 - - uid: 16855 + rot: 3.141592653589793 rad + pos: 34.5,-5.5 + parent: 17641 + - uid: 19179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,12.5 - parent: 16675 - - uid: 16856 + pos: 34.5,-3.5 + parent: 17641 + - uid: 19180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,22.5 - parent: 16675 -- proto: RandomPosterLegit - entities: - - uid: 582 + pos: 32.5,-3.5 + parent: 17641 + - uid: 19181 components: - type: Transform - pos: -33.5,-40.5 - parent: 2 - - uid: 650 + pos: 33.5,-3.5 + parent: 17641 + - uid: 19182 components: - type: Transform - pos: -32.5,-40.5 - parent: 2 - - uid: 676 + pos: 30.5,-3.5 + parent: 17641 + - uid: 19183 components: - type: Transform - pos: -37.5,-40.5 - parent: 2 - - uid: 689 + pos: 28.5,-3.5 + parent: 17641 + - uid: 19184 components: - type: Transform - pos: -38.5,-40.5 - parent: 2 - - uid: 5516 + pos: 27.5,-3.5 + parent: 17641 + - uid: 19185 components: - type: Transform - pos: -35.5,41.5 - parent: 2 - - uid: 7872 + pos: 29.5,-3.5 + parent: 17641 + - uid: 19186 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-31.5 - parent: 2 - - uid: 12159 + pos: -2.5,-3.5 + parent: 17641 + - uid: 19187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,27.5 - parent: 2 - - uid: 12707 + pos: 13.5,9.5 + parent: 17641 + - uid: 19188 components: - type: Transform - pos: -67.5,31.5 - parent: 2 - - uid: 12908 + pos: 14.5,9.5 + parent: 17641 + - uid: 19189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,22.5 - parent: 2 - - uid: 12914 + pos: 20.5,9.5 + parent: 17641 + - uid: 19190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 2 - - uid: 14006 + pos: 22.5,9.5 + parent: 17641 + - uid: 19191 components: - type: Transform - pos: 22.5,6.5 - parent: 2 - - uid: 14007 + pos: 21.5,9.5 + parent: 17641 + - uid: 20141 components: - type: Transform - pos: 22.5,-2.5 + rot: 1.5707963267948966 rad + pos: 40.5,20.5 parent: 2 - - uid: 14009 + - uid: 20142 components: - type: Transform - pos: 12.5,10.5 + rot: 1.5707963267948966 rad + pos: 40.5,19.5 parent: 2 - - uid: 14010 + - uid: 20143 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,19.5 + pos: 40.5,18.5 parent: 2 - - uid: 14011 + - uid: 20144 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,21.5 + pos: 40.5,17.5 parent: 2 - - uid: 14012 + - uid: 20146 components: - type: Transform - pos: 21.5,15.5 + rot: -1.5707963267948966 rad + pos: 38.5,21.5 parent: 2 - - uid: 14013 + - uid: 20147 components: - type: Transform - pos: 19.5,15.5 + rot: 3.141592653589793 rad + pos: 39.5,22.5 parent: 2 - - uid: 14014 +- proto: RailingCorner + entities: + - uid: 1652 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,10.5 + pos: -36.5,-30.5 parent: 2 - - uid: 14015 + - uid: 1672 components: - type: Transform - pos: 1.5,18.5 + pos: -34.5,-29.5 parent: 2 - - uid: 14016 + - uid: 1882 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,22.5 + pos: -36.5,-29.5 parent: 2 - - uid: 14017 + - uid: 3006 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,22.5 + pos: -34.5,-30.5 parent: 2 - - uid: 14018 + - uid: 3096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 + rot: 3.141592653589793 rad + pos: -36.5,-27.5 parent: 2 - - uid: 14019 + - uid: 6039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 + rot: 1.5707963267948966 rad + pos: -34.5,-27.5 parent: 2 - - uid: 14022 + - uid: 15579 components: - type: Transform - pos: 16.5,27.5 + rot: 1.5707963267948966 rad + pos: 59.5,-4.5 parent: 2 - - uid: 14023 + - uid: 15587 components: - type: Transform - pos: 21.5,27.5 + pos: 59.5,-18.5 parent: 2 - - uid: 14024 + - uid: 16014 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 16101 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,19.5 + pos: 11.5,15.5 parent: 2 - - uid: 14027 + - uid: 17202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,12.5 + rot: 3.141592653589793 rad + pos: 11.5,16.5 parent: 2 - - uid: 14029 + - uid: 17204 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,12.5 + pos: 12.5,16.5 parent: 2 - - uid: 14031 + - uid: 19192 components: - type: Transform - pos: -23.5,15.5 - parent: 2 - - uid: 14032 + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 17641 + - uid: 19193 components: - type: Transform - pos: -25.5,15.5 - parent: 2 - - uid: 14033 + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 17641 + - uid: 19194 components: - type: Transform - pos: -27.5,15.5 - parent: 2 - - uid: 14034 + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 17641 + - uid: 19195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,12.5 - parent: 2 - - uid: 14035 + pos: 4.5,3.5 + parent: 17641 + - uid: 19196 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,12.5 - parent: 2 - - uid: 14036 + pos: 6.5,7.5 + parent: 17641 + - uid: 19197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,11.5 - parent: 2 - - uid: 14037 + pos: 7.5,9.5 + parent: 17641 + - uid: 19198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 17641 + - uid: 19199 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,19.5 - parent: 2 - - uid: 14039 + pos: 21.5,-5.5 + parent: 17641 + - uid: 19200 components: - type: Transform - pos: -19.5,23.5 - parent: 2 - - uid: 14041 + rot: -1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 17641 + - uid: 19201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,18.5 - parent: 2 - - uid: 14045 + pos: 24.5,-3.5 + parent: 17641 + - uid: 19202 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,18.5 - parent: 2 - - uid: 14046 + pos: 26.5,-3.5 + parent: 17641 + - uid: 19203 components: - type: Transform - pos: -33.5,19.5 - parent: 2 - - uid: 14047 + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 17641 + - uid: 19204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,16.5 + pos: 15.5,9.5 + parent: 17641 + - uid: 20139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,22.5 parent: 2 - - uid: 14048 + - uid: 20140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,18.5 + rot: 1.5707963267948966 rad + pos: 40.5,22.5 parent: 2 - - uid: 14049 +- proto: RailingCornerSmall + entities: + - uid: 1184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,23.5 + rot: 3.141592653589793 rad + pos: -0.5,-28.5 parent: 2 - - uid: 14050 + - uid: 1242 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,24.5 + pos: 0.5,-28.5 parent: 2 - - uid: 14051 + - uid: 2238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,24.5 + pos: -36.5,-32.5 parent: 2 - - uid: 14052 + - uid: 3095 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,28.5 + pos: -34.5,-32.5 parent: 2 - - uid: 14053 + - uid: 3403 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,25.5 + pos: 35.5,-31.5 parent: 2 - - uid: 14054 + - uid: 3404 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,27.5 + pos: 35.5,-27.5 parent: 2 - - uid: 14055 + - uid: 4110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,27.5 + pos: 9.5,13.5 parent: 2 - - uid: 14056 + - uid: 4111 components: - type: Transform - pos: -40.5,31.5 + rot: 1.5707963267948966 rad + pos: 9.5,18.5 parent: 2 - - uid: 14057 + - uid: 4759 components: - type: Transform - pos: -46.5,31.5 + rot: 3.141592653589793 rad + pos: 22.5,34.5 parent: 2 - - uid: 14060 + - uid: 6491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,27.5 + pos: 26.5,34.5 parent: 2 - - uid: 14062 + - uid: 6630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,27.5 + rot: -1.5707963267948966 rad + pos: 22.5,34.5 parent: 2 - - uid: 14063 + - uid: 6641 components: - type: Transform - pos: -61.5,31.5 + pos: 24.5,22.5 parent: 2 - - uid: 14071 + - uid: 6643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,27.5 + rot: 1.5707963267948966 rad + pos: 24.5,27.5 parent: 2 - - uid: 14073 + - uid: 15831 components: - type: Transform - pos: -42.5,35.5 + rot: 3.141592653589793 rad + pos: -16.5,-28.5 parent: 2 - - uid: 14074 + - uid: 15832 components: - type: Transform - pos: -45.5,39.5 + rot: 3.141592653589793 rad + pos: -13.5,-28.5 parent: 2 - - uid: 14076 + - uid: 15833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,36.5 + rot: 3.141592653589793 rad + pos: -10.5,-28.5 parent: 2 - - uid: 14077 + - uid: 15834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,44.5 + pos: -9.5,-28.5 parent: 2 - - uid: 14079 + - uid: 15835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,41.5 + rot: 1.5707963267948966 rad + pos: -12.5,-28.5 parent: 2 - - uid: 14080 + - uid: 15836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,36.5 + rot: 1.5707963267948966 rad + pos: -15.5,-28.5 parent: 2 - - uid: 14081 + - uid: 17427 components: - type: Transform - pos: -19.5,39.5 + rot: 3.141592653589793 rad + pos: 7.5,0.5 parent: 2 - - uid: 14082 + - uid: 17428 components: - type: Transform - pos: -21.5,39.5 + pos: 9.5,-1.5 parent: 2 - - uid: 14083 + - uid: 17429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,38.5 + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 parent: 2 - - uid: 14084 + - uid: 19205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,36.5 - parent: 2 - - uid: 14089 + pos: 1.5,4.5 + parent: 17641 + - uid: 19206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 2 - - uid: 14091 + pos: 0.5,-0.5 + parent: 17641 + - uid: 19207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,0.5 - parent: 2 - - uid: 14092 + pos: 1.5,0.5 + parent: 17641 + - uid: 20145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-16.5 + pos: 38.5,20.5 parent: 2 - - uid: 14093 + - uid: 20148 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-22.5 + pos: 37.5,20.5 parent: 2 - - uid: 14094 +- proto: RailingRound + entities: + - uid: 5794 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-25.5 + pos: -41.5,33.5 parent: 2 - - uid: 14095 + - uid: 5795 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-30.5 + pos: -43.5,33.5 parent: 2 - - uid: 14096 + - uid: 15602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-34.5 + pos: -35.5,-42.5 parent: 2 - - uid: 14113 + - uid: 15994 components: - type: Transform - pos: 27.5,-21.5 + rot: 3.141592653589793 rad + pos: 49.5,-8.5 parent: 2 - - uid: 14117 +- proto: RandomArtifactSpawner + entities: + - uid: 3684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-26.5 + pos: -24.5,-16.5 parent: 2 - - uid: 14128 + - uid: 3690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-14.5 + pos: -22.5,-16.5 parent: 2 - - uid: 14129 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 19208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-16.5 - parent: 2 - - uid: 14131 + pos: -1.5,3.5 + parent: 17641 +- proto: RandomCommandCorpseSpawner + entities: + - uid: 19209 components: - type: Transform - pos: 28.5,0.5 - parent: 2 - - uid: 14133 + pos: 19.5,1.5 + parent: 17641 +- proto: RandomDrinkBottle + entities: + - uid: 3868 components: - type: Transform - pos: 25.5,-6.5 + pos: 15.5,16.5 parent: 2 - - uid: 14134 +- proto: RandomDrinkGlass + entities: + - uid: 3863 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-10.5 + pos: 15.5,20.5 parent: 2 - - uid: 14135 + - uid: 3864 components: - type: Transform - pos: 36.5,3.5 + pos: 15.5,19.5 parent: 2 - - uid: 14136 + - uid: 3865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,6.5 + pos: 15.5,17.5 parent: 2 - - uid: 14138 + - uid: 3866 components: - type: Transform - pos: 33.5,9.5 + pos: 15.5,18.5 parent: 2 - - uid: 14139 +- proto: RandomEngineerCorpseSpawner + entities: + - uid: 19210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,8.5 - parent: 2 - - uid: 14141 + pos: 0.5,-1.5 + parent: 17641 +- proto: RandomMedicCorpseSpawner + entities: + - uid: 19211 components: - type: Transform - pos: 37.5,12.5 - parent: 2 - - uid: 14142 + pos: 14.5,3.5 + parent: 17641 +- proto: RandomPainting + entities: + - uid: 978 components: - type: Transform - pos: 39.5,12.5 + pos: -31.5,14.5 parent: 2 - - uid: 14143 + - uid: 4884 components: - type: Transform - pos: 31.5,15.5 + pos: -32.5,19.5 parent: 2 - - uid: 14146 + - uid: 4886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-7.5 + pos: -34.5,13.5 parent: 2 - - uid: 14151 + - uid: 5169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-4.5 + pos: 1.5,35.5 parent: 2 - - uid: 14152 + - uid: 5170 components: - type: Transform - pos: -18.5,3.5 + pos: 4.5,35.5 parent: 2 - - uid: 14236 + - uid: 5171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-39.5 + pos: 7.5,35.5 parent: 2 - - uid: 14238 + - uid: 14166 components: - type: Transform - pos: -20.5,-33.5 + pos: -33.5,14.5 parent: 2 - - uid: 14282 +- proto: RandomPosterContraband + entities: + - uid: 14156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,34.5 + pos: -24.5,3.5 parent: 2 - - uid: 14285 + - uid: 14157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,34.5 + rot: -1.5707963267948966 rad + pos: -24.5,-0.5 parent: 2 - - uid: 14290 + - uid: 14175 components: - type: Transform - pos: -26.5,-18.5 + rot: 3.141592653589793 rad + pos: 16.5,41.5 parent: 2 - - uid: 14291 + - uid: 14199 components: - type: Transform - pos: -20.5,-18.5 + rot: 1.5707963267948966 rad + pos: 23.5,21.5 parent: 2 - - uid: 14292 + - uid: 14220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-26.5 + rot: -1.5707963267948966 rad + pos: 17.5,35.5 parent: 2 - - uid: 14294 + - uid: 14237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-27.5 + pos: -12.5,45.5 parent: 2 - - uid: 14295 + - uid: 14239 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-23.5 + pos: -12.5,42.5 parent: 2 - - uid: 14297 + - uid: 14240 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-20.5 + pos: -15.5,47.5 parent: 2 - - uid: 14298 + - uid: 14241 components: - type: Transform - pos: 6.5,-4.5 + rot: 3.141592653589793 rad + pos: -21.5,46.5 parent: 2 - - uid: 14299 + - uid: 14242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-21.5 + pos: -23.5,42.5 parent: 2 - - uid: 14302 + - uid: 14247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 + pos: -44.5,42.5 parent: 2 - - uid: 14303 + - uid: 14254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-2.5 + pos: -52.5,42.5 parent: 2 - - uid: 14305 + - uid: 14269 components: - type: Transform - pos: 4.5,10.5 + pos: -67.5,38.5 parent: 2 - - uid: 14317 + - uid: 14270 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,45.5 + pos: -68.5,38.5 parent: 2 - - uid: 14319 + - uid: 14271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,44.5 + pos: -69.5,38.5 parent: 2 -- proto: RandomScienceCorpseSpawner - entities: - - uid: 6409 + - uid: 14272 components: - type: Transform - pos: 26.5,12.5 + pos: -70.5,38.5 parent: 2 -- proto: RandomSecurityCorpseSpawner - entities: - - uid: 19825 + - uid: 14273 components: - type: Transform - pos: 9.5,-2.5 - parent: 17590 - - uid: 19826 + pos: -66.5,38.5 + parent: 2 + - uid: 16848 components: - type: Transform - pos: 11.5,-2.5 - parent: 17590 -- proto: RandomServiceCorpseSpawner - entities: - - uid: 19351 + pos: 7.5,16.5 + parent: 16675 + - uid: 16849 components: - type: Transform - pos: 26.5,-16.5 - parent: 17590 - - uid: 19824 + rot: 3.141592653589793 rad + pos: 7.5,11.5 + parent: 16675 + - uid: 16850 components: - type: Transform - pos: 26.5,-18.5 - parent: 17590 -- proto: RandomSnacks - entities: - - uid: 19851 + rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 16675 + - uid: 16853 components: - type: Transform - pos: 30.5,-16.5 - parent: 17590 - - uid: 19852 + pos: 12.5,22.5 + parent: 16675 + - uid: 16855 components: - type: Transform - pos: 31.5,-15.5 - parent: 17590 - - uid: 19853 + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 16675 + - uid: 16856 components: - type: Transform - pos: 29.5,-16.5 - parent: 17590 -- proto: RandomSpawner + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 16675 +- proto: RandomPosterLegit entities: - - uid: 2454 + - uid: 582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,23.5 + pos: -33.5,-40.5 parent: 2 - - uid: 4215 + - uid: 650 components: - type: Transform - pos: -72.5,13.5 + pos: -32.5,-40.5 parent: 2 - - uid: 4645 + - uid: 676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,29.5 + pos: -37.5,-40.5 parent: 2 - - uid: 4658 + - uid: 689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,25.5 + pos: -38.5,-40.5 parent: 2 - - uid: 4964 + - uid: 1332 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,30.5 + pos: -38.5,35.5 parent: 2 - - uid: 4967 + - uid: 3556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,29.5 + pos: -38.5,44.5 parent: 2 - - uid: 10456 + - uid: 5516 + components: + - type: Transform + pos: -35.5,41.5 + parent: 2 + - uid: 7872 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,2.5 + pos: -27.5,-31.5 parent: 2 - - uid: 10457 + - uid: 8046 components: - type: Transform - pos: -18.5,-9.5 + pos: -37.5,44.5 parent: 2 - - uid: 10458 + - uid: 8060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-13.5 + rot: 3.141592653589793 rad + pos: -40.5,35.5 parent: 2 - - uid: 10459 + - uid: 12159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-36.5 + rot: 3.141592653589793 rad + pos: -49.5,27.5 parent: 2 - - uid: 11383 + - uid: 12707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,32.5 + pos: -67.5,31.5 parent: 2 - - uid: 11384 + - uid: 12908 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,32.5 + pos: -39.5,22.5 parent: 2 - - uid: 11385 + - uid: 12914 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,35.5 + pos: -39.5,15.5 parent: 2 - - uid: 11386 + - uid: 14006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,32.5 + pos: 22.5,6.5 parent: 2 - - uid: 11387 + - uid: 14007 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 14009 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 14010 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,31.5 + pos: 7.5,19.5 parent: 2 - - uid: 11388 + - uid: 14011 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,31.5 + pos: 7.5,21.5 parent: 2 - - uid: 15466 + - uid: 14012 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 14013 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 14014 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,30.5 + pos: 18.5,10.5 parent: 2 - - uid: 15483 + - uid: 14015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,23.5 + pos: 1.5,18.5 parent: 2 - - uid: 15484 + - uid: 14016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,22.5 + parent: 2 + - uid: 14017 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,17.5 + pos: 4.5,22.5 parent: 2 - - uid: 15485 + - uid: 14018 components: - type: Transform rot: -1.5707963267948966 rad - pos: -74.5,12.5 + pos: 4.5,26.5 parent: 2 - - uid: 15486 + - uid: 14019 components: - type: Transform rot: -1.5707963267948966 rad - pos: -74.5,11.5 + pos: 4.5,24.5 parent: 2 - - uid: 15487 + - uid: 14022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,13.5 + pos: 16.5,27.5 parent: 2 - - uid: 15488 + - uid: 14023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,15.5 + pos: 21.5,27.5 parent: 2 - - uid: 15489 + - uid: 14024 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,16.5 + pos: 22.5,19.5 parent: 2 - - uid: 15490 + - uid: 14027 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,29.5 + pos: -10.5,12.5 parent: 2 - - uid: 15493 + - uid: 14029 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,23.5 + pos: -18.5,12.5 parent: 2 - - uid: 15494 + - uid: 14031 components: - type: Transform - pos: -54.5,27.5 + pos: -23.5,15.5 parent: 2 - - uid: 15495 + - uid: 14032 components: - type: Transform - pos: -55.5,28.5 + pos: -25.5,15.5 parent: 2 - - uid: 15496 + - uid: 14033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,29.5 + pos: -27.5,15.5 parent: 2 - - uid: 15497 + - uid: 14034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,30.5 + pos: -23.5,11.5 parent: 2 - - uid: 15499 + - uid: 14037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,29.5 + rot: 3.141592653589793 rad + pos: -19.5,19.5 parent: 2 - - uid: 15500 + - uid: 14039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,28.5 + pos: -19.5,23.5 parent: 2 - - uid: 15501 + - uid: 14041 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,29.5 + pos: -16.5,18.5 parent: 2 - - uid: 15502 + - uid: 14045 components: - type: Transform - pos: -38.5,28.5 + rot: -1.5707963267948966 rad + pos: -28.5,18.5 parent: 2 - - uid: 15504 + - uid: 14046 components: - type: Transform - pos: -36.5,32.5 + pos: -33.5,19.5 parent: 2 - - uid: 15505 + - uid: 14047 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,33.5 + pos: -34.5,16.5 parent: 2 - - uid: 15506 + - uid: 14048 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,34.5 + pos: -34.5,18.5 parent: 2 - - uid: 15508 + - uid: 14049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,30.5 + rot: -1.5707963267948966 rad + pos: -35.5,23.5 parent: 2 - - uid: 15509 + - uid: 14050 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,27.5 + pos: -35.5,24.5 parent: 2 - - uid: 15510 + - uid: 14051 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,25.5 + pos: -26.5,24.5 parent: 2 - - uid: 15511 + - uid: 14052 components: - type: Transform - pos: -23.5,26.5 + rot: -1.5707963267948966 rad + pos: -21.5,28.5 parent: 2 - - uid: 15512 + - uid: 14053 components: - type: Transform - pos: -24.5,29.5 + rot: -1.5707963267948966 rad + pos: -21.5,25.5 parent: 2 - - uid: 15516 + - uid: 14054 components: - type: Transform - pos: -27.5,36.5 + rot: 3.141592653589793 rad + pos: -34.5,27.5 parent: 2 - - uid: 15517 + - uid: 14055 components: - type: Transform - pos: -28.5,39.5 + rot: 3.141592653589793 rad + pos: -32.5,27.5 parent: 2 - - uid: 15518 + - uid: 14056 components: - type: Transform - pos: -28.5,40.5 + pos: -40.5,31.5 parent: 2 - - uid: 15519 + - uid: 14057 components: - type: Transform - pos: -28.5,40.5 + pos: -46.5,31.5 parent: 2 - - uid: 15520 + - uid: 14060 components: - type: Transform - pos: -29.5,44.5 + rot: 3.141592653589793 rad + pos: -67.5,27.5 parent: 2 - - uid: 15521 + - uid: 14062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,44.5 + rot: 3.141592653589793 rad + pos: -61.5,27.5 parent: 2 - - uid: 15522 + - uid: 14071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,44.5 + rot: 3.141592653589793 rad + pos: -43.5,27.5 + parent: 2 + - uid: 14073 + components: + - type: Transform + pos: -42.5,35.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + pos: -45.5,39.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,36.5 parent: 2 - - uid: 15523 + - uid: 14077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,45.5 + rot: 1.5707963267948966 rad + pos: -30.5,44.5 parent: 2 - - uid: 15524 + - uid: 14079 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,45.5 + pos: -26.5,41.5 parent: 2 - - uid: 15525 + - uid: 14080 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,44.5 + pos: -26.5,36.5 parent: 2 - - uid: 15526 + - uid: 14081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,43.5 + pos: -19.5,39.5 parent: 2 - - uid: 15527 + - uid: 14082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,47.5 + pos: -21.5,39.5 parent: 2 - - uid: 15528 + - uid: 14083 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,42.5 + pos: -23.5,38.5 parent: 2 - - uid: 15529 + - uid: 14084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,41.5 + pos: -23.5,36.5 parent: 2 - - uid: 15530 + - uid: 14089 components: - type: Transform - pos: -34.5,39.5 + rot: 1.5707963267948966 rad + pos: 22.5,-18.5 parent: 2 - - uid: 15531 + - uid: 14091 components: - type: Transform - pos: -34.5,37.5 + rot: 3.141592653589793 rad + pos: 23.5,0.5 parent: 2 - - uid: 15532 + - uid: 14092 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,36.5 + pos: 25.5,-16.5 parent: 2 - - uid: 15533 + - uid: 14093 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,36.5 + pos: 25.5,-22.5 parent: 2 - - uid: 15534 + - uid: 14094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,31.5 + rot: 1.5707963267948966 rad + pos: 22.5,-25.5 parent: 2 - - uid: 15535 + - uid: 14095 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,33.5 + pos: 24.5,-30.5 parent: 2 - - uid: 15538 + - uid: 14096 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,31.5 + pos: 21.5,-34.5 parent: 2 - - uid: 15539 + - uid: 14113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 + pos: 27.5,-21.5 parent: 2 - - uid: 15540 + - uid: 14117 components: - type: Transform - pos: -1.5,35.5 + rot: 3.141592653589793 rad + pos: 27.5,-26.5 parent: 2 - - uid: 15543 + - uid: 14128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,41.5 + rot: 3.141592653589793 rad + pos: 31.5,-14.5 parent: 2 - - uid: 15544 + - uid: 14129 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,31.5 + pos: 30.5,-16.5 parent: 2 - - uid: 15545 + - uid: 14131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,31.5 + pos: 28.5,0.5 parent: 2 - - uid: 15546 + - uid: 14133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,32.5 + pos: 25.5,-6.5 parent: 2 - - uid: 15547 + - uid: 14135 components: - type: Transform - pos: 1.5,32.5 + pos: 36.5,3.5 parent: 2 - - uid: 15548 + - uid: 14136 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,33.5 + pos: 35.5,6.5 parent: 2 - - uid: 15549 + - uid: 14138 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,33.5 + pos: 33.5,9.5 parent: 2 - - uid: 15550 + - uid: 14139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,33.5 + rot: 1.5707963267948966 rad + pos: 28.5,8.5 parent: 2 - - uid: 15551 + - uid: 14141 components: - type: Transform - pos: 2.5,32.5 + pos: 37.5,12.5 parent: 2 - - uid: 15552 + - uid: 14142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,32.5 + pos: 39.5,12.5 parent: 2 - - uid: 15553 + - uid: 14143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,33.5 + pos: 31.5,15.5 parent: 2 - - uid: 15554 + - uid: 14146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,34.5 + rot: -1.5707963267948966 rad + pos: -16.5,-7.5 parent: 2 - - uid: 15555 + - uid: 14151 components: - type: Transform - pos: 2.5,34.5 + rot: 1.5707963267948966 rad + pos: -19.5,-4.5 parent: 2 - - uid: 15556 + - uid: 14152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,34.5 + pos: -18.5,3.5 parent: 2 - - uid: 15557 + - uid: 14236 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,33.5 + pos: -21.5,-39.5 parent: 2 - - uid: 15558 + - uid: 14238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,32.5 + pos: -20.5,-33.5 parent: 2 - - uid: 15559 + - uid: 14282 components: - type: Transform - pos: 2.5,31.5 + rot: -1.5707963267948966 rad + pos: -49.5,34.5 parent: 2 - - uid: 15560 + - uid: 14285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,31.5 + rot: 1.5707963267948966 rad + pos: -54.5,34.5 parent: 2 - - uid: 15561 + - uid: 14290 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,31.5 + pos: -26.5,-18.5 parent: 2 - - uid: 15562 + - uid: 14291 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,29.5 + pos: -20.5,-18.5 parent: 2 - - uid: 15563 + - uid: 14292 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,26.5 + pos: -27.5,-26.5 parent: 2 - - uid: 15564 + - uid: 14294 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,24.5 + pos: -23.5,-27.5 parent: 2 - - uid: 15565 + - uid: 14295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,22.5 + rot: 3.141592653589793 rad + pos: -28.5,-23.5 parent: 2 - - uid: 15566 + - uid: 14297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,19.5 + rot: -1.5707963267948966 rad + pos: -32.5,-20.5 parent: 2 - - uid: 15567 + - uid: 14298 components: - type: Transform - pos: -1.5,18.5 + pos: 6.5,-4.5 parent: 2 - - uid: 15568 + - uid: 14299 components: - type: Transform - pos: 1.5,15.5 + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 parent: 2 - - uid: 15569 + - uid: 14302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,16.5 + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 parent: 2 - - uid: 15570 + - uid: 14303 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,15.5 + pos: 14.5,-2.5 parent: 2 - - uid: 15571 + - uid: 14305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,16.5 + pos: 4.5,10.5 parent: 2 - - uid: 15572 + - uid: 14317 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,18.5 + pos: -10.5,45.5 parent: 2 - - uid: 15573 + - uid: 14319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,20.5 + rot: -1.5707963267948966 rad + pos: -18.5,44.5 parent: 2 - - uid: 15574 + - uid: 17421 components: - type: Transform - pos: 14.5,13.5 + rot: 3.141592653589793 rad + pos: -23.5,7.5 parent: 2 - - uid: 15575 + - uid: 17422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,11.5 + rot: 3.141592653589793 rad + pos: -27.5,7.5 parent: 2 - - uid: 15576 +- proto: RandomSpawner + entities: + - uid: 10456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,12.5 + rot: 1.5707963267948966 rad + pos: -17.5,2.5 parent: 2 - - uid: 15577 + - uid: 10459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,14.5 + rot: 1.5707963267948966 rad + pos: -24.5,-36.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,36.5 parent: 2 - uid: 15581 components: @@ -101120,4325 +96022,4366 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-26.5 parent: 2 - - uid: 15589 + - uid: 15592 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,11.5 + pos: -16.5,-20.5 parent: 2 - - uid: 15590 + - uid: 15610 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,13.5 + pos: 16.5,-14.5 parent: 2 - - uid: 15591 + - uid: 15719 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,16.5 + rot: -1.5707963267948966 rad + pos: 32.5,-18.5 parent: 2 - - uid: 15592 + - uid: 15744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-20.5 + rot: 3.141592653589793 rad + pos: 15.5,-23.5 parent: 2 - - uid: 15593 + - uid: 15746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-9.5 + pos: 8.5,-23.5 parent: 2 - - uid: 15594 + - uid: 15757 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-8.5 + pos: -9.5,-23.5 parent: 2 - - uid: 15608 + - uid: 15758 components: - type: Transform - pos: 13.5,-15.5 + rot: 3.141592653589793 rad + pos: -5.5,-23.5 parent: 2 - - uid: 15610 + - uid: 15779 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-14.5 + pos: -21.5,-26.5 parent: 2 - - uid: 15611 + - uid: 20040 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-15.5 - parent: 2 - - uid: 15613 + pos: 5.5,6.5 + parent: 17641 + - uid: 20041 components: - type: Transform - pos: 19.5,-9.5 - parent: 2 - - uid: 15615 + rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 17641 + - uid: 20042 components: - type: Transform - pos: 19.5,-3.5 - parent: 2 - - uid: 15620 + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 17641 + - uid: 20043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,6.5 - parent: 2 - - uid: 15621 + rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 17641 + - uid: 20044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,2.5 - parent: 2 - - uid: 15623 + pos: 13.5,8.5 + parent: 17641 + - uid: 20045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 2 - - uid: 15624 + pos: 17.5,10.5 + parent: 17641 + - uid: 20048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-1.5 - parent: 2 - - uid: 15625 + pos: 17.5,9.5 + parent: 17641 + - uid: 20049 components: - type: Transform - pos: 29.5,1.5 - parent: 2 - - uid: 15626 + pos: 15.5,7.5 + parent: 17641 + - uid: 20050 components: - type: Transform - pos: 30.5,4.5 - parent: 2 - - uid: 15627 + pos: 16.5,6.5 + parent: 17641 + - uid: 20051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,7.5 - parent: 2 - - uid: 15628 + pos: 17.5,6.5 + parent: 17641 + - uid: 20052 + components: + - type: Transform + pos: 22.5,8.5 + parent: 17641 + - uid: 20053 + components: + - type: Transform + pos: 21.5,7.5 + parent: 17641 + - uid: 20054 + components: + - type: Transform + pos: 18.5,13.5 + parent: 17641 + - uid: 20055 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,6.5 - parent: 2 - - uid: 15629 + pos: 17.5,13.5 + parent: 17641 + - uid: 20056 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,7.5 - parent: 2 - - uid: 15630 + pos: 21.5,3.5 + parent: 17641 + - uid: 20057 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,4.5 - parent: 2 - - uid: 15631 + pos: 21.5,1.5 + parent: 17641 + - uid: 20058 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 2 - - uid: 15632 + rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 17641 + - uid: 20059 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,12.5 - parent: 2 - - uid: 15633 + pos: 19.5,-1.5 + parent: 17641 + - uid: 20060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,10.5 - parent: 2 - - uid: 15634 + pos: 19.5,-0.5 + parent: 17641 + - uid: 20061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,11.5 - parent: 2 - - uid: 15635 + pos: 18.5,-0.5 + parent: 17641 + - uid: 20062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,10.5 - parent: 2 - - uid: 15637 + pos: 17.5,-4.5 + parent: 17641 + - uid: 20063 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,14.5 - parent: 2 - - uid: 15639 + pos: 23.5,-4.5 + parent: 17641 + - uid: 20064 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,13.5 - parent: 2 - - uid: 15642 + pos: 25.5,-2.5 + parent: 17641 + - uid: 20065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,13.5 - parent: 2 - - uid: 15645 + pos: 25.5,0.5 + parent: 17641 + - uid: 20066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,4.5 + parent: 17641 + - uid: 20067 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 17641 + - uid: 20068 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 17641 + - uid: 20069 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 17641 + - uid: 20070 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 17641 + - uid: 20071 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 17641 + - uid: 20072 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 17641 + - uid: 20073 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 2 - - uid: 15646 + pos: 40.5,-5.5 + parent: 17641 + - uid: 20074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,12.5 - parent: 2 - - uid: 15648 + rot: -1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 17641 +- proto: RandomSpawner100 + entities: + - uid: 19212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 2 - - uid: 15649 + rot: -1.5707963267948966 rad + pos: 19.5,27.5 + parent: 17641 + - uid: 19213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,17.5 - parent: 2 - - uid: 15650 + rot: -1.5707963267948966 rad + pos: 19.5,25.5 + parent: 17641 + - uid: 19214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,19.5 - parent: 2 - - uid: 15651 + rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 17641 + - uid: 19215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,26.5 + parent: 17641 + - uid: 19216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 17641 + - uid: 19217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,26.5 + parent: 17641 + - uid: 19218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,25.5 + parent: 17641 + - uid: 19219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 17641 + - uid: 19220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 2 - - uid: 15652 + rot: -1.5707963267948966 rad + pos: 21.5,27.5 + parent: 17641 + - uid: 19221 components: - type: Transform - pos: 34.5,-2.5 - parent: 2 - - uid: 15653 + rot: -1.5707963267948966 rad + pos: 21.5,25.5 + parent: 17641 + - uid: 19222 components: - type: Transform - pos: 36.5,-2.5 - parent: 2 - - uid: 15654 + rot: -1.5707963267948966 rad + pos: 21.5,24.5 + parent: 17641 + - uid: 19223 components: - type: Transform - pos: 39.5,-0.5 - parent: 2 - - uid: 15655 + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19224 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,-0.5 - parent: 2 - - uid: 15656 + pos: 22.5,27.5 + parent: 17641 + - uid: 19225 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-0.5 - parent: 2 - - uid: 15657 + pos: 22.5,25.5 + parent: 17641 + - uid: 19226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,1.5 - parent: 2 - - uid: 15659 + rot: -1.5707963267948966 rad + pos: 21.5,26.5 + parent: 17641 + - uid: 19227 components: - type: Transform - pos: 37.5,0.5 - parent: 2 - - uid: 15660 + rot: -1.5707963267948966 rad + pos: 22.5,24.5 + parent: 17641 + - uid: 19228 components: - type: Transform - pos: 34.5,0.5 - parent: 2 - - uid: 15661 + rot: -1.5707963267948966 rad + pos: 23.5,27.5 + parent: 17641 + - uid: 19229 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,1.5 - parent: 2 - - uid: 15662 + pos: 23.5,25.5 + parent: 17641 + - uid: 19230 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,2.5 - parent: 2 - - uid: 15663 + pos: 23.5,26.5 + parent: 17641 + - uid: 19231 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 2 - - uid: 15664 + pos: 23.5,24.5 + parent: 17641 + - uid: 19232 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 2 - - uid: 15665 + pos: 20.5,26.5 + parent: 17641 + - uid: 19233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 2 - - uid: 15666 + rot: 3.141592653589793 rad + pos: 19.5,25.5 + parent: 17641 + - uid: 19234 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 2 - - uid: 15667 + pos: 22.5,26.5 + parent: 17641 + - uid: 19235 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-13.5 - parent: 2 - - uid: 15668 - components: - - type: Transform - pos: 28.5,-14.5 - parent: 2 - - uid: 15669 + pos: 21.5,27.5 + parent: 17641 + - uid: 19236 components: - type: Transform - pos: 28.5,-16.5 - parent: 2 - - uid: 15670 + rot: 1.5707963267948966 rad + pos: 22.5,27.5 + parent: 17641 + - uid: 19237 components: - type: Transform - pos: 34.5,-13.5 - parent: 2 - - uid: 15711 + pos: 15.5,26.5 + parent: 17641 + - uid: 19238 components: - type: Transform - pos: 42.5,-13.5 - parent: 2 - - uid: 15712 + rot: -1.5707963267948966 rad + pos: 12.5,24.5 + parent: 17641 + - uid: 19239 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-13.5 - parent: 2 - - uid: 15713 + pos: 13.5,24.5 + parent: 17641 + - uid: 19240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-11.5 - parent: 2 - - uid: 15715 + rot: 3.141592653589793 rad + pos: 16.5,26.5 + parent: 17641 + - uid: 19241 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-16.5 - parent: 2 - - uid: 15716 + pos: 16.5,27.5 + parent: 17641 + - uid: 19242 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-16.5 - parent: 2 - - uid: 15717 + pos: 15.5,27.5 + parent: 17641 + - uid: 19243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-16.5 - parent: 2 - - uid: 15719 + pos: 14.5,28.5 + parent: 17641 + - uid: 19244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 2 - - uid: 15720 + pos: 12.5,27.5 + parent: 17641 + - uid: 19245 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-20.5 - parent: 2 - - uid: 15721 + pos: 12.5,26.5 + parent: 17641 + - uid: 19246 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-22.5 - parent: 2 - - uid: 15722 + pos: 12.5,22.5 + parent: 17641 + - uid: 19247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-24.5 - parent: 2 - - uid: 15723 + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 17641 + - uid: 19248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-25.5 - parent: 2 - - uid: 15724 + rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 17641 + - uid: 19249 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-25.5 - parent: 2 - - uid: 15725 + pos: 16.5,23.5 + parent: 17641 + - uid: 19250 components: - type: Transform - pos: 26.5,-29.5 - parent: 2 - - uid: 15726 + rot: -1.5707963267948966 rad + pos: 14.5,23.5 + parent: 17641 + - uid: 19251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 2 - - uid: 15727 + rot: 3.141592653589793 rad + pos: 13.5,22.5 + parent: 17641 + - uid: 19252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-27.5 - parent: 2 - - uid: 15728 + pos: 12.5,18.5 + parent: 17641 + - uid: 19253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-31.5 - parent: 2 - - uid: 15729 + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 17641 + - uid: 19254 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-36.5 - parent: 2 - - uid: 15730 + pos: 15.5,17.5 + parent: 17641 + - uid: 19255 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-38.5 - parent: 2 - - uid: 15731 + pos: 17.5,18.5 + parent: 17641 + - uid: 19256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 2 - - uid: 15732 + pos: 15.5,19.5 + parent: 17641 + - uid: 19257 components: - type: Transform - pos: 25.5,-11.5 - parent: 2 - - uid: 15733 + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 17641 + - uid: 19258 components: - type: Transform - pos: 21.5,-15.5 - parent: 2 - - uid: 15734 + rot: 3.141592653589793 rad + pos: 12.5,17.5 + parent: 17641 + - uid: 19259 components: - type: Transform - pos: 23.5,-18.5 - parent: 2 - - uid: 15736 + rot: 1.5707963267948966 rad + pos: 12.5,16.5 + parent: 17641 + - uid: 19260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 2 - - uid: 15737 + pos: 12.5,15.5 + parent: 17641 + - uid: 19261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 2 - - uid: 15738 + rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 17641 + - uid: 19262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 2 - - uid: 15739 + rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 17641 + - uid: 19263 + components: + - type: Transform + pos: 13.5,13.5 + parent: 17641 + - uid: 19264 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 2 - - uid: 15740 + pos: 14.5,16.5 + parent: 17641 + - uid: 19265 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-23.5 - parent: 2 - - uid: 15741 + pos: 15.5,18.5 + parent: 17641 + - uid: 19266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-24.5 - parent: 2 - - uid: 15742 + rot: 1.5707963267948966 rad + pos: 18.5,19.5 + parent: 17641 + - uid: 19267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-21.5 - parent: 2 - - uid: 15743 + pos: 20.5,18.5 + parent: 17641 + - uid: 19268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-19.5 - parent: 2 - - uid: 15744 + rot: -1.5707963267948966 rad + pos: 21.5,16.5 + parent: 17641 + - uid: 19269 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-23.5 - parent: 2 - - uid: 15746 + pos: 20.5,16.5 + parent: 17641 + - uid: 19270 components: - type: Transform - pos: 8.5,-23.5 - parent: 2 - - uid: 15751 + rot: 1.5707963267948966 rad + pos: 21.5,16.5 + parent: 17641 + - uid: 19271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-20.5 - parent: 2 - - uid: 15757 + pos: 22.5,16.5 + parent: 17641 + - uid: 19272 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 2 - - uid: 15758 + pos: 22.5,14.5 + parent: 17641 + - uid: 19273 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-23.5 - parent: 2 - - uid: 15779 + pos: 21.5,14.5 + parent: 17641 + - uid: 19274 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-26.5 - parent: 2 - - uid: 15853 + rot: 1.5707963267948966 rad + pos: 21.5,13.5 + parent: 17641 + - uid: 19275 components: - type: Transform - pos: -20.5,1.5 - parent: 2 - - uid: 15862 + pos: 21.5,12.5 + parent: 17641 + - uid: 19276 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,12.5 - parent: 2 - - uid: 15863 + pos: 21.5,14.5 + parent: 17641 + - uid: 19277 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,15.5 - parent: 2 - - uid: 15864 + pos: 20.5,14.5 + parent: 17641 + - uid: 19278 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,14.5 - parent: 2 - - uid: 15879 + pos: 21.5,11.5 + parent: 17641 + - uid: 19279 components: - type: Transform - pos: -14.5,18.5 - parent: 2 - - uid: 16104 + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 17641 + - uid: 19280 components: - type: Transform - pos: 38.5,15.5 - parent: 2 - - uid: 17379 + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 17641 + - uid: 19281 + components: + - type: Transform + pos: 13.5,12.5 + parent: 17641 + - uid: 19282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 17641 + - uid: 19284 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,0.5 - parent: 2 - - uid: 17385 + pos: 12.5,12.5 + parent: 17641 + - uid: 19286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,15.5 + parent: 17641 + - uid: 19287 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 2 - - uid: 17387 + pos: 14.5,18.5 + parent: 17641 + - uid: 19288 components: - type: Transform - pos: 23.5,-19.5 - parent: 2 - - uid: 17388 + pos: 18.5,17.5 + parent: 17641 + - uid: 19289 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-21.5 - parent: 2 - - uid: 17389 + pos: 16.5,18.5 + parent: 17641 + - uid: 19290 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 2 - - uid: 17390 + pos: 13.5,19.5 + parent: 17641 + - uid: 19291 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-26.5 - parent: 2 - - uid: 17391 + pos: 13.5,22.5 + parent: 17641 + - uid: 19292 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 2 - - uid: 17392 + pos: 16.5,22.5 + parent: 17641 + - uid: 19293 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-32.5 - parent: 2 - - uid: 17393 + pos: 19.5,21.5 + parent: 17641 + - uid: 19294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-34.5 - parent: 2 - - uid: 17394 + pos: 20.5,20.5 + parent: 17641 + - uid: 19295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-33.5 - parent: 2 - - uid: 17395 + rot: -1.5707963267948966 rad + pos: 19.5,20.5 + parent: 17641 + - uid: 19296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-34.5 - parent: 2 - - uid: 17396 + rot: -1.5707963267948966 rad + pos: 21.5,22.5 + parent: 17641 + - uid: 19297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-35.5 - parent: 2 - - uid: 17397 + rot: 3.141592653589793 rad + pos: 22.5,23.5 + parent: 17641 + - uid: 19298 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-35.5 - parent: 2 - - uid: 17398 + pos: 22.5,22.5 + parent: 17641 + - uid: 19299 components: - type: Transform - pos: 39.5,-4.5 - parent: 2 - - uid: 17399 + pos: 20.5,19.5 + parent: 17641 + - uid: 19300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-5.5 - parent: 2 - - uid: 17400 + pos: 22.5,21.5 + parent: 17641 + - uid: 19301 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-5.5 - parent: 2 - - uid: 17401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 2 - - uid: 17402 - components: - - type: Transform - pos: 36.5,-4.5 - parent: 2 - - uid: 17403 + pos: 22.5,21.5 + parent: 17641 + - uid: 19302 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-5.5 - parent: 2 - - uid: 17404 + pos: 22.5,20.5 + parent: 17641 +- proto: RandomVending + entities: + - uid: 1096 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-6.5 + pos: 21.5,13.5 parent: 2 - - uid: 17405 + - uid: 5291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-6.5 + pos: -28.5,24.5 parent: 2 - - uid: 17533 + - uid: 14937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-23.5 + pos: 22.5,-26.5 parent: 2 -- proto: RandomSpawner100 - entities: - - uid: 7 + - uid: 16428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,37.5 - parent: 2 - - uid: 55 + pos: 28.5,21.5 + parent: 16200 + - uid: 16429 components: - type: Transform - pos: -41.5,43.5 - parent: 2 - - uid: 318 + pos: 25.5,23.5 + parent: 16200 + - uid: 16430 components: - type: Transform - pos: 23.5,34.5 - parent: 2 - - uid: 1679 + pos: 27.5,21.5 + parent: 16200 +- proto: RandomVendingDrinks + entities: + - uid: 640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,20.5 + pos: -72.5,18.5 parent: 2 - - uid: 1816 + - uid: 766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,43.5 + pos: 26.5,1.5 parent: 2 - - uid: 2626 + - uid: 821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,43.5 + pos: 22.5,-27.5 parent: 2 - - uid: 2627 + - uid: 1141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,43.5 + pos: -4.5,-14.5 parent: 2 - - uid: 2629 + - uid: 3536 components: - type: Transform - pos: -40.5,43.5 + pos: -9.5,2.5 parent: 2 - - uid: 2639 + - uid: 5290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,43.5 + pos: -27.5,24.5 parent: 2 - - uid: 2706 + - uid: 5528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,43.5 + pos: -54.5,21.5 parent: 2 - - uid: 2786 + - uid: 5545 components: - type: Transform - pos: -16.5,13.5 + pos: -56.5,18.5 parent: 2 - - uid: 2798 + - uid: 5744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,43.5 + pos: -38.5,15.5 parent: 2 - - uid: 2810 + - uid: 7423 components: - type: Transform - pos: -41.5,43.5 + pos: -12.5,31.5 parent: 2 - - uid: 3023 + - uid: 7745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,14.5 + pos: -61.5,28.5 parent: 2 - - uid: 3024 + - uid: 7753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,12.5 + pos: -43.5,28.5 parent: 2 - - uid: 3049 + - uid: 13719 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,10.5 + pos: 15.5,-14.5 parent: 2 - - uid: 3081 + - uid: 14155 components: - type: Transform - pos: -17.5,12.5 + pos: -3.5,39.5 parent: 2 - - uid: 3115 + - uid: 14875 components: - type: Transform - pos: -11.5,10.5 + pos: -74.5,15.5 parent: 2 - - uid: 3140 + - uid: 15164 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,13.5 + pos: 0.5,9.5 parent: 2 - - uid: 3142 + - uid: 15970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,14.5 + pos: -19.5,31.5 parent: 2 - - uid: 3154 + - uid: 16039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,43.5 + pos: 33.5,8.5 parent: 2 - - uid: 3230 + - uid: 16042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,43.5 + pos: 12.5,9.5 parent: 2 - - uid: 3315 + - uid: 16431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,11.5 - parent: 2 - - uid: 3339 + pos: 27.5,23.5 + parent: 16200 + - uid: 16432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,14.5 - parent: 2 - - uid: 3353 + pos: 26.5,21.5 + parent: 16200 + - uid: 17548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,15.5 + pos: -27.5,30.5 parent: 2 - - uid: 3360 +- proto: RandomVendingSnacks + entities: + - uid: 660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,15.5 + pos: -17.5,1.5 parent: 2 - - uid: 3503 + - uid: 767 components: - type: Transform - pos: -40.5,43.5 + pos: 26.5,2.5 parent: 2 - - uid: 3543 + - uid: 3535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,43.5 + pos: -9.5,1.5 parent: 2 - - uid: 3545 + - uid: 5289 components: - type: Transform - pos: 19.5,39.5 + pos: -29.5,24.5 parent: 2 - - uid: 3679 + - uid: 5505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,43.5 + pos: -35.5,15.5 parent: 2 - - uid: 3681 + - uid: 5518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,43.5 + pos: -54.5,22.5 parent: 2 - - uid: 3693 + - uid: 5538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,43.5 + pos: -56.5,16.5 parent: 2 - - uid: 3694 + - uid: 6844 components: - type: Transform - pos: -40.5,43.5 + pos: -72.5,11.5 parent: 2 - - uid: 3696 + - uid: 6846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,43.5 + pos: -74.5,19.5 parent: 2 - - uid: 3697 + - uid: 7732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,43.5 + pos: -10.5,31.5 parent: 2 - - uid: 5393 + - uid: 7742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,37.5 + pos: -62.5,28.5 parent: 2 - - uid: 5801 + - uid: 7751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,36.5 + pos: -44.5,28.5 parent: 2 - - uid: 5984 + - uid: 7857 components: - type: Transform - pos: -38.5,36.5 + pos: -72.5,19.5 parent: 2 - - uid: 5994 + - uid: 10974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,36.5 + pos: 16.5,-14.5 parent: 2 - - uid: 5995 + - uid: 11888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,36.5 + pos: -3.5,-14.5 parent: 2 - - uid: 5996 + - uid: 11954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,37.5 + pos: -23.5,45.5 parent: 2 - - uid: 6705 + - uid: 14158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,43.5 + pos: -3.5,37.5 parent: 2 - - uid: 6707 + - uid: 15966 components: - type: Transform - pos: -40.5,43.5 + pos: 34.5,8.5 parent: 2 - - uid: 6708 + - uid: 16037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,43.5 + pos: -18.5,31.5 parent: 2 - - uid: 6709 + - uid: 16041 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,41.5 + pos: 16.5,9.5 parent: 2 - - uid: 6710 + - uid: 16046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,41.5 + pos: 1.5,9.5 parent: 2 - - uid: 6711 + - uid: 16433 components: - type: Transform - pos: -40.5,41.5 - parent: 2 - - uid: 6712 + pos: 26.5,23.5 + parent: 16200 + - uid: 16434 components: - type: Transform - pos: -40.5,41.5 - parent: 2 - - uid: 6713 + pos: 28.5,23.5 + parent: 16200 + - uid: 16435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,41.5 - parent: 2 - - uid: 6714 + pos: 25.5,21.5 + parent: 16200 + - uid: 17547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,41.5 + pos: -29.5,30.5 parent: 2 - - uid: 6715 + - uid: 19303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,41.5 - parent: 2 - - uid: 6716 + pos: 2.5,3.5 + parent: 17641 +- proto: RCDAmmo + entities: + - uid: 590 components: - type: Transform - pos: -40.5,41.5 + pos: -14.603725,-19.388529 parent: 2 - - uid: 6717 + - uid: 3366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,41.5 + pos: -14.436941,-20.340593 parent: 2 - - uid: 6734 + - uid: 4839 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,41.5 + pos: -14.593191,-20.356218 parent: 2 - - uid: 6735 + - uid: 15895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,41.5 - parent: 2 - - uid: 6736 + parent: 12408 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15896 components: - type: Transform - pos: -41.5,41.5 - parent: 2 - - uid: 6737 + parent: 12408 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,43.5 - parent: 2 - - uid: 6738 + parent: 12408 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Recycler + entities: + - uid: 5369 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,43.5 + pos: 29.5,34.5 parent: 2 - - uid: 6739 + - uid: 6726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,43.5 + pos: 25.5,0.5 parent: 2 - - uid: 6740 +- proto: ReinforcedGirder + entities: + - uid: 17430 components: - type: Transform - pos: -38.5,43.5 - parent: 2 - - uid: 6741 + pos: -4.5,-2.5 + parent: 17413 + - uid: 19304 components: - type: Transform - pos: -38.5,43.5 - parent: 2 - - uid: 6742 + pos: -6.5,9.5 + parent: 17641 + - uid: 19305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,41.5 - parent: 2 - - uid: 6743 + pos: 29.5,11.5 + parent: 17641 + - uid: 19306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,39.5 - parent: 2 - - uid: 6745 + pos: 38.5,8.5 + parent: 17641 + - uid: 19307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,40.5 - parent: 2 - - uid: 6746 + pos: 31.5,3.5 + parent: 17641 + - uid: 19308 components: - type: Transform - pos: -37.5,41.5 - parent: 2 - - uid: 6747 + pos: 13.5,-10.5 + parent: 17641 + - uid: 19309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,42.5 - parent: 2 - - uid: 6748 + pos: 5.5,-9.5 + parent: 17641 + - uid: 19310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,43.5 - parent: 2 - - uid: 6750 + pos: 26.5,-12.5 + parent: 17641 + - uid: 19311 components: - type: Transform - pos: -38.5,40.5 - parent: 2 - - uid: 6751 + pos: 30.5,-8.5 + parent: 17641 + - uid: 20155 components: - type: Transform - pos: -38.5,41.5 - parent: 2 - - uid: 6752 + pos: 0.5,0.5 + parent: 20154 + - uid: 20156 components: - type: Transform - pos: -37.5,41.5 - parent: 2 - - uid: 7510 + pos: 1.5,0.5 + parent: 20154 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,17.5 + rot: 3.141592653589793 rad + pos: -24.5,-15.5 parent: 2 - - uid: 7870 + - uid: 371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,39.5 + rot: 3.141592653589793 rad + pos: -26.5,-15.5 parent: 2 - - uid: 7871 + - uid: 373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,38.5 + rot: 3.141592653589793 rad + pos: -22.5,-15.5 parent: 2 - - uid: 7898 + - uid: 376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,41.5 + rot: 3.141592653589793 rad + pos: -20.5,-15.5 parent: 2 - - uid: 7900 + - uid: 449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,40.5 + pos: -5.5,-24.5 parent: 2 - - uid: 7917 + - uid: 450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,42.5 + pos: -6.5,-24.5 parent: 2 - - uid: 8045 + - uid: 456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,39.5 + pos: -9.5,-24.5 parent: 2 - - uid: 8154 + - uid: 465 components: - type: Transform - pos: -27.5,17.5 + pos: -8.5,-24.5 parent: 2 - - uid: 8177 + - uid: 645 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,16.5 + pos: -5.5,-20.5 parent: 2 - - uid: 8438 + - uid: 646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,22.5 + pos: -9.5,-20.5 parent: 2 - - uid: 8439 + - uid: 647 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,14.5 + pos: -4.5,-20.5 parent: 2 - - uid: 8440 + - uid: 648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,12.5 + pos: -10.5,-20.5 parent: 2 - - uid: 8441 + - uid: 2088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,13.5 + pos: -7.5,-24.5 parent: 2 - - uid: 8442 +- proto: ReinforcedWindow + entities: + - uid: 12 components: - type: Transform - pos: -29.5,13.5 + pos: 14.5,-8.5 parent: 2 - - uid: 8443 + - uid: 56 components: - type: Transform - pos: -32.5,15.5 + pos: 8.5,-26.5 parent: 2 - - uid: 8444 + - uid: 76 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,18.5 + pos: -71.5,18.5 parent: 2 - - uid: 10446 + - uid: 105 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,10.5 + pos: 3.5,1.5 parent: 2 - - uid: 10447 + - uid: 121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,25.5 + pos: 2.5,-13.5 parent: 2 - - uid: 10448 + - uid: 125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,25.5 + pos: 6.5,-13.5 parent: 2 - - uid: 10451 + - uid: 126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,25.5 + pos: 7.5,-13.5 parent: 2 - - uid: 10452 + - uid: 127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,24.5 + pos: 8.5,-13.5 parent: 2 - - uid: 11022 + - uid: 138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,35.5 + pos: 15.5,-13.5 parent: 2 - - uid: 11052 + - uid: 140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,25.5 + pos: 16.5,-13.5 parent: 2 - - uid: 11378 + - uid: 162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,36.5 + pos: 6.5,2.5 parent: 2 - - uid: 11379 + - uid: 163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,36.5 + pos: 4.5,1.5 parent: 2 - - uid: 11380 + - uid: 191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,32.5 + pos: 8.5,1.5 parent: 2 - - uid: 11381 + - uid: 192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,32.5 + pos: -6.5,-6.5 parent: 2 - - uid: 11382 + - uid: 193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,31.5 + pos: -6.5,-5.5 parent: 2 - - uid: 11389 + - uid: 194 components: - type: Transform - pos: 31.5,35.5 + pos: -6.5,-4.5 parent: 2 - - uid: 11610 + - uid: 195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,22.5 + pos: 7.5,2.5 parent: 2 - - uid: 11622 + - uid: 196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,25.5 + pos: -6.5,-2.5 parent: 2 - - uid: 11627 + - uid: 200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,42.5 + pos: -6.5,1.5 parent: 2 - - uid: 11628 + - uid: 201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,41.5 + pos: -6.5,2.5 parent: 2 - - uid: 11629 + - uid: 231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,39.5 + pos: -10.5,-17.5 parent: 2 - - uid: 11630 + - uid: 232 components: - type: Transform - pos: -37.5,38.5 + pos: -9.5,-17.5 parent: 2 - - uid: 11636 + - uid: 236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,42.5 + pos: -5.5,-17.5 parent: 2 - - uid: 11644 + - uid: 237 components: - type: Transform - pos: -38.5,42.5 + pos: -4.5,-17.5 parent: 2 - - uid: 11645 + - uid: 241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,43.5 + pos: 14.5,-7.5 parent: 2 - - uid: 11646 + - uid: 251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,37.5 + pos: -37.5,-23.5 parent: 2 - - uid: 11647 + - uid: 310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,36.5 + pos: 5.5,2.5 parent: 2 - - uid: 11648 + - uid: 315 components: - type: Transform - pos: -38.5,36.5 + pos: -71.5,20.5 parent: 2 - - uid: 11649 + - uid: 316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,37.5 + pos: -58.5,16.5 parent: 2 - - uid: 11650 + - uid: 323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,37.5 + pos: 26.5,25.5 parent: 2 - - uid: 11651 + - uid: 327 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,37.5 + rot: -1.5707963267948966 rad + pos: 11.5,-8.5 parent: 2 - - uid: 15507 + - uid: 328 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,25.5 + pos: 11.5,-6.5 parent: 2 - - uid: 15536 + - uid: 331 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,22.5 + pos: 2.5,-10.5 parent: 2 - - uid: 15537 + - uid: 332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,16.5 + pos: 9.5,-10.5 parent: 2 - - uid: 15541 + - uid: 334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,16.5 + pos: 7.5,-10.5 parent: 2 - - uid: 15542 + - uid: 335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,10.5 + pos: 1.5,-10.5 parent: 2 - - uid: 15578 + - uid: 337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,11.5 + pos: -0.5,-10.5 parent: 2 - - uid: 15579 + - uid: 342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,17.5 + pos: 0.5,-10.5 parent: 2 - - uid: 15580 + - uid: 352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,17.5 + rot: 3.141592653589793 rad + pos: -26.5,-11.5 parent: 2 - - uid: 15583 + - uid: 354 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,22.5 + pos: -27.5,-14.5 parent: 2 - - uid: 15584 + - uid: 355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,22.5 + rot: 3.141592653589793 rad + pos: -27.5,-13.5 parent: 2 - - uid: 15586 + - uid: 356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,26.5 + rot: 3.141592653589793 rad + pos: -27.5,-12.5 parent: 2 - - uid: 15587 + - uid: 377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,25.5 + pos: 26.5,26.5 parent: 2 - - uid: 15595 + - uid: 384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,14.5 + pos: -24.5,-4.5 parent: 2 - - uid: 15596 + - uid: 385 components: - type: Transform - pos: -13.5,22.5 + pos: -24.5,-3.5 parent: 2 - - uid: 15877 + - uid: 409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,18.5 + pos: -27.5,-38.5 parent: 2 - - uid: 15878 + - uid: 427 components: - type: Transform - pos: -13.5,19.5 + pos: 4.5,-33.5 parent: 2 - - uid: 17153 + - uid: 428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,37.5 + pos: 3.5,-33.5 parent: 2 - - uid: 17154 + - uid: 430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,37.5 + pos: 1.5,-33.5 parent: 2 - - uid: 17155 + - uid: 431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,36.5 + pos: 0.5,-33.5 parent: 2 - - uid: 17156 + - uid: 440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,36.5 + pos: -8.5,-33.5 parent: 2 - - uid: 17157 + - uid: 441 components: - type: Transform - pos: 16.5,36.5 + pos: -9.5,-33.5 parent: 2 - - uid: 17158 + - uid: 443 components: - type: Transform - pos: 18.5,38.5 + pos: -11.5,-33.5 parent: 2 - - uid: 17159 + - uid: 444 components: - type: Transform - pos: 19.5,40.5 + pos: -12.5,-33.5 parent: 2 - - uid: 17160 + - uid: 457 components: - type: Transform - pos: 19.5,41.5 + rot: 3.141592653589793 rad + pos: 30.5,37.5 parent: 2 - - uid: 17161 + - uid: 461 components: - type: Transform - pos: 16.5,38.5 + rot: -1.5707963267948966 rad + pos: -11.5,-30.5 parent: 2 - - uid: 17162 + - uid: 466 components: - type: Transform - pos: 15.5,36.5 + rot: -1.5707963267948966 rad + pos: -8.5,-30.5 parent: 2 - - uid: 17163 + - uid: 479 components: - type: Transform - pos: 19.5,36.5 + pos: 10.5,-0.5 parent: 2 - - uid: 17164 + - uid: 490 components: - type: Transform - pos: 18.5,35.5 + pos: -71.5,17.5 parent: 2 - - uid: 17165 + - uid: 549 components: - type: Transform - pos: 18.5,35.5 + pos: -11.5,-19.5 parent: 2 - - uid: 17166 + - uid: 555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,35.5 + pos: 6.5,-10.5 parent: 2 - - uid: 17167 + - uid: 604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,35.5 + rot: 3.141592653589793 rad + pos: -38.5,-16.5 parent: 2 - - uid: 17168 + - uid: 606 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,37.5 + pos: -38.5,-18.5 parent: 2 - - uid: 17169 + - uid: 607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,38.5 + rot: 3.141592653589793 rad + pos: -38.5,-17.5 parent: 2 - - uid: 17196 + - uid: 611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,11.5 + rot: 3.141592653589793 rad + pos: -32.5,-16.5 parent: 2 - - uid: 17197 + - uid: 612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 + pos: -33.5,-25.5 parent: 2 - - uid: 17198 + - uid: 613 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,12.5 + pos: -32.5,-18.5 parent: 2 - - uid: 17199 + - uid: 614 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,15.5 + pos: -32.5,-17.5 parent: 2 - - uid: 17200 + - uid: 616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,14.5 + pos: -38.5,-27.5 parent: 2 -- proto: RandomVending - entities: - - uid: 5291 + - uid: 630 components: - type: Transform - pos: -28.5,24.5 + rot: 3.141592653589793 rad + pos: -31.5,-23.5 parent: 2 - - uid: 14937 + - uid: 632 components: - type: Transform - pos: 22.5,-26.5 + rot: 3.141592653589793 rad + pos: -29.5,-23.5 parent: 2 - - uid: 16428 - components: - - type: Transform - pos: 28.5,21.5 - parent: 16200 - - uid: 16429 - components: - - type: Transform - pos: 25.5,23.5 - parent: 16200 - - uid: 16430 + - uid: 634 components: - type: Transform - pos: 27.5,21.5 - parent: 16200 - - uid: 18667 + rot: 3.141592653589793 rad + pos: -31.5,-21.5 + parent: 2 + - uid: 636 components: - type: Transform - pos: 36.5,5.5 - parent: 17590 - - uid: 18715 + rot: 3.141592653589793 rad + pos: -29.5,-21.5 + parent: 2 + - uid: 657 components: - type: Transform - pos: 31.5,13.5 - parent: 17590 - - uid: 19265 + pos: 11.5,-0.5 + parent: 2 + - uid: 671 components: - type: Transform - pos: 36.5,6.5 - parent: 17590 -- proto: RandomVendingDrinks - entities: - - uid: 640 + pos: -39.5,-27.5 + parent: 2 + - uid: 735 components: - type: Transform - pos: -72.5,18.5 + rot: 3.141592653589793 rad + pos: 31.5,34.5 parent: 2 - - uid: 766 + - uid: 738 components: - type: Transform - pos: 26.5,1.5 + pos: 15.5,-17.5 parent: 2 - - uid: 821 + - uid: 739 components: - type: Transform - pos: 22.5,-27.5 + pos: 16.5,-17.5 parent: 2 - - uid: 1141 + - uid: 741 components: - type: Transform - pos: -4.5,-14.5 + pos: 17.5,-17.5 parent: 2 - - uid: 3536 + - uid: 789 components: - type: Transform - pos: -9.5,2.5 + rot: 3.141592653589793 rad + pos: 31.5,36.5 parent: 2 - - uid: 5290 + - uid: 825 components: - type: Transform - pos: -27.5,24.5 + pos: -0.5,-13.5 parent: 2 - - uid: 5528 + - uid: 831 components: - type: Transform - pos: -54.5,21.5 + pos: -27.5,-35.5 parent: 2 - - uid: 5545 + - uid: 840 components: - type: Transform - pos: -56.5,18.5 + rot: 3.141592653589793 rad + pos: 31.5,37.5 parent: 2 - - uid: 5744 + - uid: 841 components: - type: Transform - pos: -38.5,15.5 + pos: 3.5,6.5 parent: 2 - - uid: 6756 + - uid: 842 components: - type: Transform - pos: -20.5,10.5 + pos: 4.5,6.5 parent: 2 - - uid: 7745 + - uid: 843 components: - type: Transform - pos: -61.5,28.5 + pos: 5.5,6.5 parent: 2 - - uid: 7753 + - uid: 844 components: - type: Transform - pos: -43.5,28.5 + pos: 6.5,6.5 parent: 2 - - uid: 13719 + - uid: 846 components: - type: Transform - pos: 15.5,-14.5 + pos: 8.5,6.5 parent: 2 - - uid: 14875 + - uid: 858 components: - type: Transform - pos: -74.5,15.5 + pos: 8.5,0.5 parent: 2 - - uid: 15164 + - uid: 860 components: - type: Transform - pos: 0.5,9.5 + pos: 18.5,1.5 parent: 2 - - uid: 15970 + - uid: 864 components: - type: Transform - pos: -19.5,31.5 + pos: 18.5,-2.5 parent: 2 - - uid: 16035 + - uid: 865 components: - type: Transform - pos: -2.5,41.5 + pos: 18.5,-3.5 parent: 2 - - uid: 16039 + - uid: 866 components: - type: Transform - pos: 33.5,8.5 + pos: 12.5,-0.5 parent: 2 - - uid: 16042 + - uid: 867 components: - type: Transform - pos: 12.5,9.5 + pos: 18.5,-5.5 parent: 2 - - uid: 16431 + - uid: 868 components: - type: Transform - pos: 27.5,23.5 - parent: 16200 - - uid: 16432 + pos: 18.5,-6.5 + parent: 2 + - uid: 899 components: - type: Transform - pos: 26.5,21.5 - parent: 16200 - - uid: 17548 + pos: -63.5,38.5 + parent: 2 + - uid: 909 components: - type: Transform - pos: -27.5,30.5 + rot: 1.5707963267948966 rad + pos: 37.5,-3.5 parent: 2 - - uid: 18446 + - uid: 914 components: - type: Transform - pos: 32.5,-6.5 - parent: 17590 - - uid: 18716 + rot: 1.5707963267948966 rad + pos: 37.5,3.5 + parent: 2 + - uid: 916 components: - type: Transform - pos: 30.5,5.5 - parent: 17590 - - uid: 18717 + pos: -33.5,-23.5 + parent: 2 + - uid: 939 components: - type: Transform - pos: 31.5,15.5 - parent: 17590 - - uid: 18718 + pos: 14.5,-6.5 + parent: 2 + - uid: 990 components: - type: Transform - pos: 18.5,-1.5 - parent: 17590 - - uid: 19313 + pos: 11.5,-7.5 + parent: 2 + - uid: 1002 components: - type: Transform - pos: 23.5,-3.5 - parent: 17590 - - uid: 19314 + rot: -1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 2 + - uid: 1014 components: - type: Transform - pos: 19.5,-10.5 - parent: 17590 -- proto: RandomVendingSnacks - entities: - - uid: 660 + pos: 21.5,-33.5 + parent: 2 + - uid: 1057 components: - type: Transform - pos: -17.5,1.5 + pos: 21.5,-27.5 parent: 2 - - uid: 767 + - uid: 1077 components: - type: Transform - pos: 26.5,2.5 + pos: 21.5,-26.5 parent: 2 - - uid: 3535 + - uid: 1080 components: - type: Transform - pos: -9.5,1.5 + pos: 21.5,-32.5 parent: 2 - - uid: 5289 + - uid: 1087 components: - type: Transform - pos: -29.5,24.5 + pos: 21.5,-31.5 parent: 2 - - uid: 5505 + - uid: 1110 components: - type: Transform - pos: -35.5,15.5 + pos: -19.5,-1.5 parent: 2 - - uid: 5518 + - uid: 1147 components: - type: Transform - pos: -54.5,22.5 + pos: -32.5,8.5 parent: 2 - - uid: 5538 + - uid: 1177 components: - type: Transform - pos: -56.5,16.5 + pos: 35.5,-7.5 parent: 2 - - uid: 6731 + - uid: 1178 components: - type: Transform - pos: -20.5,11.5 + pos: 34.5,-7.5 parent: 2 - - uid: 6844 + - uid: 1179 components: - type: Transform - pos: -72.5,11.5 + pos: 36.5,-7.5 parent: 2 - - uid: 6846 + - uid: 1180 components: - type: Transform - pos: -74.5,19.5 + pos: 37.5,-7.5 parent: 2 - - uid: 7742 + - uid: 1187 components: - type: Transform - pos: -62.5,28.5 + pos: 35.5,-3.5 parent: 2 - - uid: 7751 + - uid: 1188 components: - type: Transform - pos: -44.5,28.5 + pos: 34.5,-3.5 parent: 2 - - uid: 7857 + - uid: 1206 components: - type: Transform - pos: -72.5,19.5 + pos: 38.5,-7.5 parent: 2 - - uid: 10974 + - uid: 1207 components: - type: Transform - pos: 16.5,-14.5 + pos: 39.5,-7.5 parent: 2 - - uid: 11888 + - uid: 1247 components: - type: Transform - pos: -3.5,-14.5 + pos: -4.5,-3.5 parent: 2 - - uid: 11954 + - uid: 1248 components: - type: Transform - pos: -23.5,45.5 + pos: -4.5,-4.5 parent: 2 - - uid: 15966 + - uid: 1249 components: - type: Transform - pos: 34.5,8.5 + pos: -4.5,-5.5 parent: 2 - - uid: 16034 + - uid: 1260 components: - type: Transform - pos: -3.5,41.5 + pos: -54.5,35.5 parent: 2 - - uid: 16037 + - uid: 1322 components: - type: Transform - pos: -18.5,31.5 + pos: -19.5,-38.5 parent: 2 - - uid: 16041 + - uid: 1337 components: - type: Transform - pos: 16.5,9.5 + pos: -33.5,-19.5 parent: 2 - - uid: 16046 + - uid: 1338 components: - type: Transform - pos: 1.5,9.5 + pos: -19.5,-36.5 parent: 2 - - uid: 16433 + - uid: 1362 components: - type: Transform - pos: 26.5,23.5 - parent: 16200 - - uid: 16434 + pos: -27.5,-34.5 + parent: 2 + - uid: 1363 components: - type: Transform - pos: 28.5,23.5 - parent: 16200 - - uid: 16435 + pos: -27.5,-37.5 + parent: 2 + - uid: 1364 components: - type: Transform - pos: 25.5,21.5 - parent: 16200 - - uid: 17547 + pos: -27.5,-36.5 + parent: 2 + - uid: 1382 components: - type: Transform - pos: -29.5,30.5 + pos: -37.5,-25.5 parent: 2 - - uid: 18669 + - uid: 1397 components: - type: Transform - pos: 30.5,6.5 - parent: 17590 - - uid: 18720 + pos: -19.5,-34.5 + parent: 2 + - uid: 1405 components: - type: Transform - pos: 18.5,-2.5 - parent: 17590 - - uid: 18721 + pos: -19.5,-35.5 + parent: 2 + - uid: 1463 components: - type: Transform - pos: 31.5,14.5 - parent: 17590 - - uid: 19312 + pos: -37.5,-19.5 + parent: 2 + - uid: 1480 components: - type: Transform - pos: 19.5,-3.5 - parent: 17590 - - uid: 19315 + pos: -36.5,-19.5 + parent: 2 + - uid: 1502 components: - type: Transform - pos: 23.5,-10.5 - parent: 17590 - - uid: 19335 + pos: -64.5,38.5 + parent: 2 + - uid: 1510 components: - type: Transform - pos: 26.5,-7.5 - parent: 17590 -- proto: RCDAmmo - entities: - - uid: 590 + rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 1533 components: - type: Transform - pos: -14.603725,-19.388529 + rot: 1.5707963267948966 rad + pos: 0.5,-13.5 parent: 2 - - uid: 3366 + - uid: 1577 components: - type: Transform - pos: -14.436941,-20.340593 + pos: -34.5,-15.5 parent: 2 - - uid: 4839 + - uid: 1578 components: - type: Transform - pos: -14.593191,-20.356218 + pos: -33.5,-15.5 parent: 2 - - uid: 15895 + - uid: 1579 components: - type: Transform - parent: 12408 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15896 + pos: -37.5,-15.5 + parent: 2 + - uid: 1580 components: - type: Transform - parent: 12408 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15898 + pos: -36.5,-15.5 + parent: 2 + - uid: 1667 components: - type: Transform - parent: 12408 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Recycler - entities: - - uid: 6726 + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 2 + - uid: 1675 components: - type: Transform - pos: 25.5,0.5 + pos: -71.5,16.5 parent: 2 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 367 + - uid: 1709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-15.5 + pos: -38.5,-28.5 parent: 2 - - uid: 371 + - uid: 1710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-15.5 + pos: -39.5,-28.5 parent: 2 - - uid: 373 + - uid: 1778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-15.5 + pos: -19.5,-37.5 parent: 2 - - uid: 376 + - uid: 1934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-15.5 + pos: -31.5,-28.5 parent: 2 - - uid: 449 + - uid: 1990 components: - type: Transform - pos: -5.5,-24.5 + rot: 1.5707963267948966 rad + pos: 38.5,3.5 parent: 2 - - uid: 450 + - uid: 2156 components: - type: Transform - pos: -6.5,-24.5 + pos: 8.5,-29.5 parent: 2 - - uid: 456 + - uid: 2209 components: - type: Transform - pos: -9.5,-24.5 + pos: -14.5,-30.5 parent: 2 - - uid: 465 + - uid: 2210 components: - type: Transform - pos: -8.5,-24.5 + pos: -17.5,-30.5 parent: 2 - - uid: 645 + - uid: 2239 components: - type: Transform - pos: -5.5,-20.5 + pos: -32.5,-28.5 parent: 2 - - uid: 646 + - uid: 2270 components: - type: Transform - pos: -9.5,-20.5 + pos: 25.5,-3.5 parent: 2 - - uid: 647 + - uid: 2272 components: - type: Transform - pos: -4.5,-20.5 + pos: 28.5,-3.5 parent: 2 - - uid: 648 + - uid: 2273 components: - type: Transform - pos: -10.5,-20.5 + pos: 30.5,-3.5 parent: 2 - - uid: 2088 + - uid: 2274 components: - type: Transform - pos: -7.5,-24.5 + pos: 29.5,-3.5 parent: 2 - - uid: 18722 + - uid: 2277 components: - type: Transform - pos: 46.5,4.5 - parent: 17590 - - uid: 18723 + pos: 5.5,-33.5 + parent: 2 + - uid: 2282 components: - type: Transform - pos: 46.5,6.5 - parent: 17590 - - uid: 18724 + pos: -71.5,14.5 + parent: 2 + - uid: 2304 components: - type: Transform - pos: 46.5,1.5 - parent: 17590 - - uid: 18725 + pos: 43.5,6.5 + parent: 2 + - uid: 2319 components: - type: Transform - pos: 44.5,1.5 - parent: 17590 -- proto: ReinforcedUraniumWindow - entities: - - uid: 18726 + rot: 1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 + - uid: 2320 components: - type: Transform - pos: 41.5,3.5 - parent: 17590 - - uid: 18727 + rot: 1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + - uid: 2390 components: - type: Transform - pos: 39.5,3.5 - parent: 17590 - - uid: 18728 + pos: 33.5,14.5 + parent: 2 + - uid: 2391 components: - type: Transform - pos: 40.5,3.5 - parent: 17590 -- proto: ReinforcedWindow - entities: - - uid: 12 + pos: 34.5,14.5 + parent: 2 + - uid: 2411 components: - type: Transform - pos: 14.5,-8.5 + rot: 1.5707963267948966 rad + pos: 36.5,-3.5 parent: 2 - - uid: 56 + - uid: 2499 components: - type: Transform - pos: 8.5,-26.5 + rot: 1.5707963267948966 rad + pos: 7.5,-19.5 parent: 2 - - uid: 76 + - uid: 2543 components: - type: Transform - pos: -71.5,18.5 + pos: 40.5,0.5 parent: 2 - - uid: 105 + - uid: 2544 components: - type: Transform - pos: 3.5,1.5 + pos: 40.5,-0.5 parent: 2 - - uid: 121 + - uid: 2545 components: - type: Transform - pos: 2.5,-13.5 + pos: 40.5,-1.5 parent: 2 - - uid: 125 + - uid: 2639 components: - type: Transform - pos: 6.5,-13.5 + rot: 1.5707963267948966 rad + pos: 1.5,-13.5 parent: 2 - - uid: 126 + - uid: 2651 components: - type: Transform - pos: 7.5,-13.5 + pos: 8.5,-27.5 parent: 2 - - uid: 127 + - uid: 2715 components: - type: Transform - pos: 8.5,-13.5 + pos: 18.5,-25.5 parent: 2 - - uid: 138 + - uid: 2716 components: - type: Transform - pos: 15.5,-13.5 + pos: 16.5,-25.5 parent: 2 - - uid: 140 + - uid: 2717 components: - type: Transform - pos: 16.5,-13.5 + pos: 14.5,-25.5 parent: 2 - - uid: 162 + - uid: 2788 components: - type: Transform - pos: 6.5,2.5 + pos: 26.5,-8.5 parent: 2 - - uid: 163 + - uid: 2898 components: - type: Transform - pos: 4.5,1.5 + pos: 31.5,-3.5 parent: 2 - - uid: 191 + - uid: 2899 components: - type: Transform - pos: 8.5,1.5 + pos: 31.5,-6.5 parent: 2 - - uid: 192 + - uid: 2900 components: - type: Transform - pos: -6.5,-6.5 + pos: 30.5,-6.5 parent: 2 - - uid: 193 + - uid: 2901 components: - type: Transform - pos: -6.5,-5.5 + pos: 29.5,-6.5 parent: 2 - - uid: 194 + - uid: 2902 components: - type: Transform - pos: -6.5,-4.5 + pos: 28.5,-6.5 parent: 2 - - uid: 195 + - uid: 2903 components: - type: Transform - pos: 7.5,2.5 + pos: 24.5,-3.5 parent: 2 - - uid: 196 + - uid: 2912 components: - type: Transform - pos: -6.5,-2.5 + pos: 36.5,-9.5 parent: 2 - - uid: 200 + - uid: 2965 components: - type: Transform - pos: -6.5,1.5 + pos: 34.5,-17.5 parent: 2 - - uid: 201 + - uid: 2966 components: - type: Transform - pos: -6.5,2.5 + pos: 35.5,-17.5 parent: 2 - - uid: 231 + - uid: 2969 components: - type: Transform - pos: -10.5,-17.5 + pos: 38.5,-17.5 parent: 2 - - uid: 232 + - uid: 2970 components: - type: Transform - pos: -9.5,-17.5 + pos: 39.5,-17.5 parent: 2 - - uid: 236 + - uid: 2971 components: - type: Transform - pos: -5.5,-17.5 + pos: 40.5,-17.5 parent: 2 - - uid: 237 + - uid: 2973 components: - type: Transform - pos: -4.5,-17.5 + pos: 42.5,-17.5 parent: 2 - - uid: 241 + - uid: 2974 components: - type: Transform - pos: 14.5,-7.5 + pos: 43.5,-17.5 parent: 2 - - uid: 251 + - uid: 2976 components: - type: Transform - pos: -37.5,-23.5 + pos: 44.5,-9.5 parent: 2 - - uid: 296 + - uid: 2977 components: - type: Transform - pos: -29.5,6.5 + pos: 43.5,-9.5 parent: 2 - - uid: 310 + - uid: 2978 components: - type: Transform - pos: 5.5,2.5 + pos: 42.5,-9.5 parent: 2 - - uid: 315 + - uid: 2980 components: - type: Transform - pos: -71.5,20.5 + pos: 40.5,-9.5 parent: 2 - - uid: 316 + - uid: 2981 components: - type: Transform - pos: -58.5,16.5 + pos: 39.5,-9.5 parent: 2 - - uid: 320 + - uid: 2982 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-11.5 + pos: 38.5,-9.5 parent: 2 - - uid: 323 + - uid: 2984 components: - type: Transform - pos: 26.5,25.5 + pos: 36.5,-17.5 parent: 2 - - uid: 327 + - uid: 2985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 + pos: 35.5,-9.5 parent: 2 - - uid: 328 + - uid: 2986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 + pos: 34.5,-9.5 parent: 2 - - uid: 331 + - uid: 3064 components: - type: Transform - pos: 2.5,-10.5 + pos: 38.5,-20.5 parent: 2 - - uid: 332 + - uid: 3065 components: - type: Transform - pos: 9.5,-10.5 + pos: 39.5,-20.5 parent: 2 - - uid: 334 + - uid: 3066 components: - type: Transform - pos: 7.5,-10.5 + pos: 40.5,-20.5 parent: 2 - - uid: 335 + - uid: 3070 components: - type: Transform - pos: 1.5,-10.5 + pos: 26.5,-11.5 parent: 2 - - uid: 337 + - uid: 3071 components: - type: Transform - pos: -0.5,-10.5 + pos: 26.5,-12.5 parent: 2 - - uid: 342 + - uid: 3072 components: - type: Transform - pos: 0.5,-10.5 + pos: 26.5,-13.5 parent: 2 - - uid: 352 + - uid: 3107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-11.5 + pos: -41.5,65.5 parent: 2 - - uid: 354 + - uid: 3108 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-14.5 + pos: -40.5,65.5 parent: 2 - - uid: 355 + - uid: 3109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-13.5 + pos: -39.5,65.5 parent: 2 - - uid: 356 + - uid: 3112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-12.5 + pos: -38.5,65.5 parent: 2 - - uid: 377 + - uid: 3114 components: - type: Transform - pos: 26.5,26.5 + pos: -35.5,65.5 parent: 2 - - uid: 384 + - uid: 3122 components: - type: Transform - pos: -24.5,-4.5 + pos: -37.5,65.5 parent: 2 - - uid: 385 + - uid: 3123 components: - type: Transform - pos: -24.5,-3.5 + pos: -34.5,65.5 parent: 2 - - uid: 409 + - uid: 3294 components: - type: Transform - pos: -27.5,-38.5 + pos: 39.5,-22.5 parent: 2 - - uid: 427 + - uid: 3337 components: - type: Transform - pos: 4.5,-33.5 + pos: -36.5,65.5 parent: 2 - - uid: 428 + - uid: 3456 components: - type: Transform - pos: 3.5,-33.5 + pos: 38.5,-22.5 parent: 2 - - uid: 430 + - uid: 3527 components: - type: Transform - pos: 1.5,-33.5 + pos: 22.5,-4.5 parent: 2 - - uid: 431 + - uid: 3528 components: - type: Transform - pos: 0.5,-33.5 + pos: 22.5,-5.5 parent: 2 - - uid: 440 + - uid: 3577 components: - type: Transform - pos: -8.5,-33.5 + pos: 54.5,-10.5 parent: 2 - - uid: 441 + - uid: 3578 components: - type: Transform - pos: -9.5,-33.5 + pos: 54.5,-12.5 parent: 2 - - uid: 443 + - uid: 3579 components: - type: Transform - pos: -11.5,-33.5 + pos: 54.5,-14.5 parent: 2 - - uid: 444 + - uid: 3580 components: - type: Transform - pos: -12.5,-33.5 + pos: 54.5,-16.5 parent: 2 - - uid: 461 + - uid: 3652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-30.5 + pos: -19.5,-5.5 parent: 2 - - uid: 466 + - uid: 3777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-30.5 + rot: 1.5707963267948966 rad + pos: 24.5,-34.5 parent: 2 - - uid: 479 + - uid: 4138 components: - type: Transform - pos: 10.5,-0.5 + pos: -25.5,19.5 parent: 2 - - uid: 490 + - uid: 4321 components: - type: Transform - pos: -71.5,17.5 + pos: 51.5,-9.5 parent: 2 - - uid: 549 + - uid: 4327 components: - type: Transform - pos: -11.5,-19.5 + pos: 49.5,-4.5 parent: 2 - - uid: 555 + - uid: 4376 components: - type: Transform - pos: 6.5,-10.5 + pos: 48.5,-4.5 parent: 2 - - uid: 604 + - uid: 4391 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-16.5 + pos: 47.5,-4.5 parent: 2 - - uid: 606 + - uid: 4478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-18.5 + pos: 46.5,-4.5 parent: 2 - - uid: 607 + - uid: 4695 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-17.5 + pos: 31.5,30.5 parent: 2 - - uid: 611 + - uid: 4711 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-16.5 + pos: 31.5,31.5 parent: 2 - - uid: 612 + - uid: 4752 components: - type: Transform - pos: -33.5,-25.5 + rot: 3.141592653589793 rad + pos: 31.5,32.5 parent: 2 - - uid: 613 + - uid: 4754 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-18.5 + pos: 30.5,30.5 parent: 2 - - uid: 614 + - uid: 4756 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-17.5 + pos: 31.5,35.5 parent: 2 - - uid: 616 + - uid: 4825 components: - type: Transform - pos: -38.5,-27.5 + pos: -2.5,-17.5 parent: 2 - - uid: 630 + - uid: 4882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-23.5 + pos: -31.5,19.5 parent: 2 - - uid: 632 + - uid: 4883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-23.5 + pos: -30.5,19.5 parent: 2 - - uid: 634 + - uid: 4933 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-21.5 + pos: -11.5,-18.5 parent: 2 - - uid: 636 + - uid: 5138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-21.5 + pos: 8.5,-28.5 parent: 2 - - uid: 657 + - uid: 5212 components: - type: Transform - pos: 11.5,-0.5 + pos: -29.5,23.5 parent: 2 - - uid: 671 + - uid: 5213 components: - type: Transform - pos: -39.5,-27.5 + pos: -28.5,23.5 parent: 2 - - uid: 738 + - uid: 5214 components: - type: Transform - pos: 15.5,-17.5 + pos: -27.5,23.5 parent: 2 - - uid: 739 + - uid: 5215 components: - type: Transform - pos: 16.5,-17.5 + pos: -33.5,23.5 parent: 2 - - uid: 741 + - uid: 5216 components: - type: Transform - pos: 17.5,-17.5 + pos: -32.5,23.5 parent: 2 - - uid: 825 + - uid: 5217 components: - type: Transform - pos: -0.5,-13.5 + pos: -31.5,23.5 parent: 2 - - uid: 831 + - uid: 5218 components: - type: Transform - pos: -27.5,-35.5 + pos: -25.5,23.5 parent: 2 - - uid: 841 + - uid: 5219 components: - type: Transform - pos: 3.5,6.5 + pos: -24.5,23.5 parent: 2 - - uid: 842 + - uid: 5220 components: - type: Transform - pos: 4.5,6.5 + pos: -23.5,23.5 parent: 2 - - uid: 843 + - uid: 5242 components: - type: Transform - pos: 5.5,6.5 + pos: -33.5,69.5 parent: 2 - - uid: 844 + - uid: 5253 components: - type: Transform - pos: 6.5,6.5 + pos: -34.5,23.5 parent: 2 - - uid: 846 + - uid: 5425 components: - type: Transform - pos: 8.5,6.5 + pos: -35.5,9.5 parent: 2 - - uid: 858 + - uid: 5426 components: - type: Transform - pos: 8.5,0.5 + pos: -36.5,9.5 parent: 2 - - uid: 860 + - uid: 5427 components: - type: Transform - pos: 18.5,1.5 + pos: -37.5,9.5 parent: 2 - - uid: 864 + - uid: 5428 components: - type: Transform - pos: 18.5,-2.5 + pos: -38.5,9.5 parent: 2 - - uid: 865 + - uid: 5429 components: - type: Transform - pos: 18.5,-3.5 + pos: -40.5,12.5 parent: 2 - - uid: 866 + - uid: 5430 components: - type: Transform - pos: 12.5,-0.5 + pos: -40.5,14.5 parent: 2 - - uid: 867 + - uid: 5431 components: - type: Transform - pos: 18.5,-5.5 + pos: -40.5,19.5 parent: 2 - - uid: 868 + - uid: 5432 components: - type: Transform - pos: 18.5,-6.5 + pos: -40.5,21.5 parent: 2 - - uid: 899 + - uid: 5433 components: - type: Transform - pos: -63.5,38.5 + pos: -35.5,22.5 parent: 2 - - uid: 909 + - uid: 5434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-3.5 + pos: -35.5,21.5 parent: 2 - - uid: 914 + - uid: 5435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,3.5 + pos: -35.5,20.5 parent: 2 - - uid: 916 + - uid: 5460 components: - type: Transform - pos: -33.5,-23.5 + pos: -71.5,12.5 parent: 2 - - uid: 939 + - uid: 5474 components: - type: Transform - pos: 14.5,-6.5 + pos: -53.5,16.5 parent: 2 - - uid: 990 + - uid: 5475 components: - type: Transform - pos: 11.5,-7.5 + pos: -53.5,17.5 parent: 2 - - uid: 1002 + - uid: 5483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-17.5 + pos: -52.5,14.5 parent: 2 - - uid: 1014 + - uid: 5484 components: - type: Transform - pos: 21.5,-33.5 + pos: -52.5,12.5 parent: 2 - - uid: 1057 + - uid: 5485 components: - type: Transform - pos: 21.5,-27.5 + pos: -52.5,19.5 parent: 2 - - uid: 1077 + - uid: 5486 components: - type: Transform - pos: 21.5,-26.5 + pos: -52.5,21.5 parent: 2 - - uid: 1080 + - uid: 5487 components: - type: Transform - pos: 21.5,-32.5 + pos: -53.5,23.5 parent: 2 - - uid: 1087 + - uid: 5488 components: - type: Transform - pos: 21.5,-31.5 + pos: -53.5,24.5 parent: 2 - - uid: 1110 + - uid: 5521 components: - type: Transform - pos: -19.5,-1.5 + pos: -39.5,17.5 parent: 2 - - uid: 1147 + - uid: 5522 components: - type: Transform - pos: -32.5,8.5 + pos: -39.5,16.5 parent: 2 - - uid: 1177 + - uid: 5525 components: - type: Transform - pos: 35.5,-7.5 + pos: -39.5,24.5 parent: 2 - - uid: 1178 + - uid: 5526 components: - type: Transform - pos: 34.5,-7.5 + pos: -39.5,23.5 parent: 2 - - uid: 1179 + - uid: 5579 components: - type: Transform - pos: 36.5,-7.5 + pos: -58.5,11.5 parent: 2 - - uid: 1180 + - uid: 5585 components: - type: Transform - pos: 37.5,-7.5 + pos: -58.5,13.5 parent: 2 - - uid: 1187 + - uid: 5640 components: - type: Transform - pos: 35.5,-3.5 + pos: -33.5,44.5 parent: 2 - - uid: 1188 + - uid: 5641 components: - type: Transform - pos: 34.5,-3.5 + pos: -32.5,44.5 parent: 2 - - uid: 1206 + - uid: 5642 components: - type: Transform - pos: 38.5,-7.5 + pos: -31.5,44.5 parent: 2 - - uid: 1207 + - uid: 5684 components: - type: Transform - pos: 39.5,-7.5 + pos: -56.5,8.5 parent: 2 - - uid: 1210 + - uid: 5733 components: - type: Transform - pos: 40.5,-6.5 + pos: -53.5,39.5 parent: 2 - - uid: 1247 + - uid: 5807 components: - type: Transform - pos: -4.5,-3.5 + pos: -74.5,8.5 parent: 2 - - uid: 1248 + - uid: 5823 components: - type: Transform - pos: -4.5,-4.5 + pos: -30.5,51.5 parent: 2 - - uid: 1249 + - uid: 5826 components: - type: Transform - pos: -4.5,-5.5 + pos: -26.5,51.5 parent: 2 - - uid: 1260 + - uid: 5880 components: - type: Transform - pos: -54.5,35.5 + pos: -31.5,-32.5 parent: 2 - - uid: 1322 + - uid: 5957 components: - type: Transform - pos: -19.5,-38.5 + pos: -30.5,69.5 parent: 2 - - uid: 1337 + - uid: 6010 components: - type: Transform - pos: -33.5,-19.5 + pos: -13.5,65.5 parent: 2 - - uid: 1338 + - uid: 6011 components: - type: Transform - pos: -19.5,-36.5 + pos: -14.5,65.5 parent: 2 - - uid: 1362 + - uid: 6012 components: - type: Transform - pos: -27.5,-34.5 + pos: -15.5,65.5 parent: 2 - - uid: 1363 + - uid: 6013 components: - type: Transform - pos: -27.5,-37.5 + pos: -16.5,65.5 parent: 2 - - uid: 1364 + - uid: 6014 components: - type: Transform - pos: -27.5,-36.5 + pos: -17.5,65.5 parent: 2 - - uid: 1382 + - uid: 6015 components: - type: Transform - pos: -37.5,-25.5 + pos: -18.5,65.5 parent: 2 - - uid: 1397 + - uid: 6016 components: - type: Transform - pos: -19.5,-34.5 + pos: -19.5,65.5 parent: 2 - - uid: 1405 + - uid: 6031 components: - type: Transform - pos: -19.5,-35.5 + pos: -39.5,-31.5 parent: 2 - - uid: 1463 + - uid: 6042 components: - type: Transform - pos: -37.5,-19.5 + pos: -38.5,-31.5 parent: 2 - - uid: 1480 + - uid: 6050 components: - type: Transform - pos: -36.5,-19.5 + pos: -32.5,-32.5 parent: 2 - - uid: 1502 + - uid: 6051 components: - type: Transform - pos: -64.5,38.5 + pos: -31.5,-31.5 parent: 2 - - uid: 1577 + - uid: 6065 components: - type: Transform - pos: -34.5,-15.5 + pos: -71.5,13.5 parent: 2 - - uid: 1578 + - uid: 6073 components: - type: Transform - pos: -33.5,-15.5 + pos: -76.5,23.5 parent: 2 - - uid: 1579 + - uid: 6091 components: - type: Transform - pos: -37.5,-15.5 + pos: -29.5,68.5 parent: 2 - - uid: 1580 + - uid: 6092 components: - type: Transform - pos: -36.5,-15.5 + pos: -29.5,66.5 parent: 2 - - uid: 1675 + - uid: 6093 components: - type: Transform - pos: -71.5,16.5 + pos: -25.5,68.5 parent: 2 - - uid: 1709 + - uid: 6094 components: - type: Transform - pos: -38.5,-28.5 + pos: -25.5,66.5 parent: 2 - - uid: 1710 + - uid: 6105 components: - type: Transform - pos: -39.5,-28.5 + pos: -38.5,-32.5 parent: 2 - - uid: 1778 + - uid: 6235 components: - type: Transform - pos: -19.5,-37.5 + pos: -20.5,64.5 parent: 2 - - uid: 1934 + - uid: 6236 components: - type: Transform - pos: -31.5,-28.5 + pos: -20.5,63.5 parent: 2 - - uid: 1990 + - uid: 6237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,3.5 + pos: -20.5,62.5 parent: 2 - - uid: 2156 + - uid: 6246 components: - type: Transform - pos: 8.5,-29.5 + pos: -39.5,-32.5 parent: 2 - - uid: 2209 + - uid: 6275 components: - type: Transform - pos: -14.5,-30.5 + pos: -63.5,27.5 parent: 2 - - uid: 2210 + - uid: 6276 components: - type: Transform - pos: -17.5,-30.5 + pos: -64.5,27.5 parent: 2 - - uid: 2239 + - uid: 6277 components: - type: Transform - pos: -32.5,-28.5 + pos: -65.5,27.5 parent: 2 - - uid: 2270 + - uid: 6474 components: - type: Transform - pos: 25.5,-3.5 + pos: 19.5,34.5 parent: 2 - - uid: 2272 + - uid: 6534 components: - type: Transform - pos: 28.5,-3.5 + pos: -54.5,33.5 parent: 2 - - uid: 2273 + - uid: 6548 components: - type: Transform - pos: 30.5,-3.5 + pos: -53.5,36.5 parent: 2 - - uid: 2274 + - uid: 6550 components: - type: Transform - pos: 29.5,-3.5 + pos: -51.5,36.5 parent: 2 - - uid: 2277 + - uid: 6587 components: - type: Transform - pos: 5.5,-33.5 + pos: -51.5,39.5 parent: 2 - - uid: 2282 + - uid: 6588 components: - type: Transform - pos: -71.5,14.5 + pos: -57.5,35.5 parent: 2 - - uid: 2304 + - uid: 6589 components: - type: Transform - pos: 43.5,6.5 + pos: -57.5,33.5 parent: 2 - - uid: 2319 + - uid: 6591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,9.5 + pos: -57.5,34.5 parent: 2 - - uid: 2320 + - uid: 6593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,9.5 + pos: -52.5,39.5 parent: 2 - - uid: 2390 + - uid: 6598 components: - type: Transform - pos: 33.5,14.5 + rot: 1.5707963267948966 rad + pos: 2.5,6.5 parent: 2 - - uid: 2391 + - uid: 6599 components: - type: Transform - pos: 34.5,14.5 + rot: 1.5707963267948966 rad + pos: 18.5,3.5 parent: 2 - - uid: 2411 + - uid: 6603 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-3.5 + pos: -6.5,-3.5 parent: 2 - - uid: 2499 + - uid: 6609 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-19.5 + pos: 9.5,6.5 parent: 2 - - uid: 2543 + - uid: 6612 components: - type: Transform - pos: 40.5,0.5 + rot: 1.5707963267948966 rad + pos: 7.5,6.5 parent: 2 - - uid: 2544 + - uid: 6620 components: - type: Transform - pos: 40.5,-0.5 + rot: 1.5707963267948966 rad + pos: 18.5,2.5 parent: 2 - - uid: 2545 + - uid: 6622 components: - type: Transform - pos: 40.5,-1.5 + rot: 1.5707963267948966 rad + pos: 18.5,-4.5 parent: 2 - - uid: 2651 + - uid: 6809 components: - type: Transform - pos: 8.5,-27.5 + pos: -75.5,17.5 parent: 2 - - uid: 2715 + - uid: 6811 components: - type: Transform - pos: 18.5,-25.5 + pos: -72.5,8.5 parent: 2 - - uid: 2716 + - uid: 6812 components: - type: Transform - pos: 16.5,-25.5 + pos: -54.5,8.5 parent: 2 - - uid: 2717 + - uid: 6833 components: - type: Transform - pos: 14.5,-25.5 + pos: -57.5,15.5 parent: 2 - - uid: 2788 + - uid: 6834 components: - type: Transform - pos: 26.5,-8.5 + pos: -57.5,20.5 parent: 2 - - uid: 2898 + - uid: 6835 components: - type: Transform - pos: 31.5,-3.5 + pos: -58.5,21.5 parent: 2 - - uid: 2899 + - uid: 6840 components: - type: Transform - pos: 31.5,-6.5 + pos: -58.5,23.5 parent: 2 - - uid: 2900 + - uid: 6946 components: - type: Transform - pos: 30.5,-6.5 + pos: -31.5,-27.5 parent: 2 - - uid: 2901 + - uid: 7181 components: - type: Transform - pos: 29.5,-6.5 + rot: 1.5707963267948966 rad + pos: 1.5,-30.5 parent: 2 - - uid: 2902 + - uid: 7341 components: - type: Transform - pos: 28.5,-6.5 + pos: 53.5,-9.5 parent: 2 - - uid: 2903 + - uid: 7659 components: - type: Transform - pos: 24.5,-3.5 + pos: 7.5,1.5 parent: 2 - - uid: 2912 + - uid: 7664 components: - type: Transform - pos: 36.5,-9.5 + pos: 8.5,-10.5 parent: 2 - - uid: 2965 + - uid: 7671 components: - type: Transform - pos: 34.5,-17.5 + pos: -32.5,-31.5 parent: 2 - - uid: 2966 + - uid: 7677 components: - type: Transform - pos: 35.5,-17.5 + pos: 4.5,2.5 parent: 2 - - uid: 2969 + - uid: 7719 components: - type: Transform - pos: 38.5,-17.5 + pos: -32.5,-27.5 parent: 2 - - uid: 2970 + - uid: 7740 components: - type: Transform - pos: 39.5,-17.5 + pos: -58.5,18.5 parent: 2 - - uid: 2971 + - uid: 7754 components: - type: Transform - pos: 40.5,-17.5 + pos: -47.5,27.5 parent: 2 - - uid: 2973 + - uid: 7755 components: - type: Transform - pos: 42.5,-17.5 + pos: -45.5,27.5 parent: 2 - - uid: 2974 + - uid: 7756 components: - type: Transform - pos: 43.5,-17.5 + pos: -46.5,27.5 parent: 2 - - uid: 2976 + - uid: 7757 components: - type: Transform - pos: 44.5,-9.5 + pos: 3.5,0.5 parent: 2 - - uid: 2977 + - uid: 8034 components: - type: Transform - pos: 43.5,-9.5 + pos: 5.5,-19.5 parent: 2 - - uid: 2978 + - uid: 8043 components: - type: Transform - pos: 42.5,-9.5 + pos: 52.5,-9.5 parent: 2 - - uid: 2980 + - uid: 8256 components: - type: Transform - pos: 40.5,-9.5 + pos: -76.5,15.5 parent: 2 - - uid: 2981 + - uid: 8462 components: - type: Transform - pos: 39.5,-9.5 + pos: -76.5,19.5 parent: 2 - - uid: 2982 + - uid: 8464 components: - type: Transform - pos: 38.5,-9.5 + pos: -76.5,11.5 parent: 2 - - uid: 2984 + - uid: 8474 components: - type: Transform - pos: 36.5,-17.5 + pos: -75.5,18.5 parent: 2 - - uid: 2985 + - uid: 8475 components: - type: Transform - pos: 35.5,-9.5 + pos: -75.5,16.5 parent: 2 - - uid: 2986 + - uid: 9738 components: - type: Transform - pos: 34.5,-9.5 + pos: -46.5,47.5 parent: 2 - - uid: 3064 + - uid: 10200 components: - type: Transform - pos: 38.5,-20.5 + pos: -2.5,-30.5 parent: 2 - - uid: 3065 + - uid: 11168 components: - type: Transform - pos: 39.5,-20.5 + pos: -47.5,47.5 parent: 2 - - uid: 3066 + - uid: 11169 components: - type: Transform - pos: 40.5,-20.5 + pos: -44.5,47.5 parent: 2 - - uid: 3070 + - uid: 11627 components: - type: Transform - pos: 26.5,-11.5 + pos: -45.5,47.5 parent: 2 - - uid: 3071 + - uid: 12341 components: - type: Transform - pos: 26.5,-12.5 + pos: -26.5,19.5 parent: 2 - - uid: 3072 + - uid: 12370 components: - type: Transform - pos: 26.5,-13.5 + pos: -27.5,19.5 parent: 2 - - uid: 3107 + - uid: 12371 components: - type: Transform - pos: -41.5,65.5 + pos: -23.5,19.5 parent: 2 - - uid: 3108 + - uid: 12398 components: - type: Transform - pos: -40.5,65.5 + pos: -24.5,19.5 parent: 2 - - uid: 3109 + - uid: 13005 components: - type: Transform - pos: -39.5,65.5 + pos: -71.5,22.5 parent: 2 - - uid: 3112 + - uid: 13110 components: - type: Transform - pos: -38.5,65.5 + pos: -71.5,21.5 parent: 2 - - uid: 3114 + - uid: 13375 components: - type: Transform - pos: -35.5,65.5 + pos: -24.5,-2.5 parent: 2 - - uid: 3122 + - uid: 13388 components: - type: Transform - pos: -37.5,65.5 + pos: 22.5,46.5 parent: 2 - - uid: 3123 + - uid: 13389 components: - type: Transform - pos: -34.5,65.5 + pos: 22.5,47.5 parent: 2 - - uid: 3294 + - uid: 13399 components: - type: Transform - pos: 39.5,-22.5 + pos: 22.5,45.5 parent: 2 - - uid: 3337 + - uid: 13699 components: - type: Transform - pos: -36.5,65.5 + pos: -32.5,69.5 parent: 2 - - uid: 3456 + - uid: 14738 components: - type: Transform - pos: 38.5,-22.5 + pos: -34.5,-19.5 parent: 2 - - uid: 3527 + - uid: 15618 components: - type: Transform - pos: 22.5,-4.5 + pos: 3.5,-24.5 parent: 2 - - uid: 3528 + - uid: 15781 components: - type: Transform - pos: 22.5,-5.5 - parent: 2 - - uid: 3577 + rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 16200 + - uid: 15822 components: - type: Transform - pos: 54.5,-10.5 + pos: 3.5,-21.5 parent: 2 - - uid: 3578 + - uid: 15823 components: - type: Transform - pos: 54.5,-12.5 + pos: 4.5,-21.5 parent: 2 - - uid: 3579 + - uid: 15824 components: - type: Transform - pos: 54.5,-14.5 + pos: 4.5,-24.5 parent: 2 - - uid: 3580 + - uid: 15938 components: - type: Transform - pos: 54.5,-16.5 + pos: -22.5,20.5 parent: 2 - - uid: 3652 + - uid: 15968 components: - type: Transform - pos: -19.5,-5.5 + pos: -22.5,22.5 parent: 2 - - uid: 3777 + - uid: 16436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-34.5 - parent: 2 - - uid: 4321 + pos: 23.5,15.5 + parent: 16200 + - uid: 16437 components: - type: Transform - pos: 51.5,-9.5 - parent: 2 - - uid: 4327 + pos: 23.5,12.5 + parent: 16200 + - uid: 20192 components: - type: Transform - pos: 49.5,-4.5 + pos: -31.5,7.5 parent: 2 - - uid: 4376 + - uid: 20193 components: - type: Transform - pos: 48.5,-4.5 + pos: -31.5,5.5 parent: 2 - - uid: 4391 + - uid: 20194 components: - type: Transform - pos: 47.5,-4.5 + pos: -31.5,4.5 parent: 2 - - uid: 4478 + - uid: 20195 components: - type: Transform - pos: 46.5,-4.5 + pos: -31.5,6.5 parent: 2 - - uid: 4825 + - uid: 20218 components: - type: Transform - pos: -2.5,-17.5 + pos: -34.5,69.5 parent: 2 - - uid: 4882 + - uid: 20219 components: - type: Transform - pos: -31.5,19.5 + pos: -35.5,69.5 parent: 2 - - uid: 4883 + - uid: 20220 components: - type: Transform - pos: -30.5,19.5 + pos: -36.5,69.5 parent: 2 - - uid: 4926 + - uid: 20221 components: - type: Transform - pos: -31.5,8.5 + pos: -37.5,69.5 parent: 2 - - uid: 4933 + - uid: 20222 components: - type: Transform - pos: -11.5,-18.5 + pos: -38.5,69.5 parent: 2 - - uid: 5138 + - uid: 20223 components: - type: Transform - pos: 8.5,-28.5 + pos: -39.5,69.5 parent: 2 - - uid: 5212 + - uid: 20224 components: - type: Transform - pos: -29.5,23.5 + pos: -31.5,69.5 parent: 2 - - uid: 5213 + - uid: 20225 components: - type: Transform - pos: -28.5,23.5 + pos: -40.5,69.5 parent: 2 - - uid: 5214 + - uid: 20226 components: - type: Transform - pos: -27.5,23.5 + pos: -41.5,69.5 parent: 2 - - uid: 5215 + - uid: 20227 components: - type: Transform - pos: -33.5,23.5 + pos: -24.5,69.5 parent: 2 - - uid: 5216 + - uid: 20228 components: - type: Transform - pos: -32.5,23.5 + pos: -23.5,69.5 parent: 2 - - uid: 5217 + - uid: 20229 components: - type: Transform - pos: -31.5,23.5 + pos: -21.5,69.5 parent: 2 - - uid: 5218 + - uid: 20230 components: - type: Transform - pos: -25.5,23.5 + pos: -20.5,69.5 parent: 2 - - uid: 5219 + - uid: 20231 components: - type: Transform - pos: -24.5,23.5 + pos: -19.5,69.5 parent: 2 - - uid: 5220 + - uid: 20232 components: - type: Transform - pos: -23.5,23.5 + pos: -22.5,69.5 parent: 2 - - uid: 5253 + - uid: 20233 components: - type: Transform - pos: -34.5,23.5 + pos: -18.5,69.5 parent: 2 - - uid: 5361 + - uid: 20234 components: - type: Transform - pos: -30.5,8.5 + pos: -17.5,69.5 parent: 2 - - uid: 5425 + - uid: 20235 components: - type: Transform - pos: -35.5,9.5 + pos: -16.5,69.5 parent: 2 - - uid: 5426 + - uid: 20236 components: - type: Transform - pos: -36.5,9.5 + pos: -15.5,69.5 parent: 2 - - uid: 5427 + - uid: 20237 components: - type: Transform - pos: -37.5,9.5 + pos: -14.5,69.5 parent: 2 - - uid: 5428 + - uid: 20238 components: - type: Transform - pos: -38.5,9.5 + pos: -13.5,69.5 parent: 2 - - uid: 5429 +- proto: RemoteSignaller + entities: + - uid: 12393 components: - type: Transform - pos: -40.5,12.5 + rot: 3.141592653589793 rad + pos: -31.268147,16.532095 parent: 2 - - uid: 5430 + - type: DeviceLinkSource + linkedPorts: + 1705: + - Pressed: DoorBolt +- proto: RemoteSignallerAdvanced + entities: + - uid: 3526 components: + - type: MetaData + desc: Игрушечный детонатор, который, якобы, вызывает взрыв в кабинете главы СБ. + name: игрушечный детонатор - type: Transform - pos: -40.5,14.5 - parent: 2 - - uid: 5431 + parent: 3992 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ResearchAndDevelopmentServer + entities: + - uid: 601 components: - type: Transform - pos: -40.5,19.5 + pos: -12.5,3.5 parent: 2 - - uid: 5432 +- proto: RevolverCapGun + entities: + - uid: 3363 components: - type: Transform - pos: -40.5,21.5 - parent: 2 - - uid: 5433 + parent: 1387 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RightArmBorg + entities: + - uid: 1020 components: - type: Transform - pos: -35.5,22.5 + pos: -22.259003,-7.5307784 parent: 2 - - uid: 5434 +- proto: RightLegHuman + entities: + - uid: 17073 components: - type: Transform - pos: -35.5,21.5 + pos: 57.721565,-7.52573 parent: 2 - - uid: 5435 +- proto: RobocopCircuitBoard + entities: + - uid: 15771 components: - type: Transform - pos: -35.5,20.5 - parent: 2 - - uid: 5460 + parent: 15765 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RubberStampApproved + entities: + - uid: 2644 components: - type: Transform - pos: -71.5,12.5 + pos: 8.251135,-19.289347 parent: 2 - - uid: 5474 + - uid: 2757 components: - type: Transform - pos: -53.5,16.5 - parent: 2 - - uid: 5475 + parent: 2738 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RubberStampDenied + entities: + - uid: 1309 components: - type: Transform - pos: -53.5,17.5 + pos: 8.240718,-19.049763 parent: 2 - - uid: 5483 + - uid: 2756 components: - type: Transform - pos: -52.5,14.5 - parent: 2 - - uid: 5484 + parent: 2738 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SalvageMagnet + entities: + - uid: 15761 components: - type: Transform - pos: -52.5,12.5 + rot: 3.141592653589793 rad + pos: 37.5,17.5 parent: 2 - - uid: 5485 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 4147 components: - type: Transform - pos: -52.5,19.5 + pos: 26.5,13.5 parent: 2 - - uid: 5486 + - uid: 4166 components: - type: Transform - pos: -52.5,21.5 + pos: 26.5,10.5 parent: 2 - - uid: 5487 + - uid: 4252 components: - type: Transform - pos: -53.5,23.5 + pos: 26.5,12.5 parent: 2 - - uid: 5488 + - uid: 15943 components: - type: Transform - pos: -53.5,24.5 + pos: -24.5,47.5 parent: 2 - - uid: 5521 +- proto: SalvageSpawnerScrapCommon + entities: + - uid: 20038 components: - type: Transform - pos: -39.5,17.5 - parent: 2 - - uid: 5522 + rot: 1.5707963267948966 rad + pos: 12.5,7.5 + parent: 17641 + - uid: 20075 components: - type: Transform - pos: -39.5,16.5 - parent: 2 - - uid: 5525 + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 17641 + - uid: 20076 components: - type: Transform - pos: -39.5,24.5 - parent: 2 - - uid: 5526 + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 17641 + - uid: 20077 components: - type: Transform - pos: -39.5,23.5 - parent: 2 - - uid: 5579 + rot: 3.141592653589793 rad + pos: 37.5,-3.5 + parent: 17641 + - uid: 20078 components: - type: Transform - pos: -58.5,11.5 - parent: 2 - - uid: 5585 + rot: 3.141592653589793 rad + pos: 36.5,-3.5 + parent: 17641 + - uid: 20079 components: - type: Transform - pos: -58.5,13.5 - parent: 2 - - uid: 5640 + rot: 3.141592653589793 rad + pos: 39.5,-4.5 + parent: 17641 + - uid: 20080 components: - type: Transform - pos: -33.5,44.5 - parent: 2 - - uid: 5641 + rot: 1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 17641 + - uid: 20081 components: - type: Transform - pos: -32.5,44.5 - parent: 2 - - uid: 5642 + rot: 1.5707963267948966 rad + pos: 26.5,0.5 + parent: 17641 + - uid: 20082 components: - type: Transform - pos: -31.5,44.5 - parent: 2 - - uid: 5684 + rot: 1.5707963267948966 rad + pos: 21.5,2.5 + parent: 17641 + - uid: 20083 components: - type: Transform - pos: -56.5,8.5 - parent: 2 - - uid: 5733 + pos: 21.5,0.5 + parent: 17641 + - uid: 20084 components: - type: Transform - pos: -53.5,39.5 - parent: 2 - - uid: 5807 + pos: 19.5,-1.5 + parent: 17641 + - uid: 20085 components: - type: Transform - pos: -74.5,8.5 - parent: 2 - - uid: 5823 + rot: -1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 17641 + - uid: 20086 components: - type: Transform - pos: -30.5,51.5 - parent: 2 - - uid: 5826 + rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 17641 + - uid: 20087 components: - type: Transform - pos: -26.5,51.5 - parent: 2 - - uid: 5880 + rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 17641 + - uid: 20088 components: - type: Transform - pos: -31.5,-32.5 - parent: 2 - - uid: 6010 + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 17641 + - uid: 20089 components: - type: Transform - pos: -13.5,65.5 - parent: 2 - - uid: 6011 + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 17641 + - uid: 20090 components: - type: Transform - pos: -14.5,65.5 - parent: 2 - - uid: 6012 + pos: -1.5,-1.5 + parent: 17641 + - uid: 20091 components: - type: Transform - pos: -15.5,65.5 - parent: 2 - - uid: 6013 + pos: 2.5,-0.5 + parent: 17641 + - uid: 20092 components: - type: Transform - pos: -16.5,65.5 - parent: 2 - - uid: 6014 + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 17641 + - uid: 20093 components: - type: Transform - pos: -17.5,65.5 - parent: 2 - - uid: 6015 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 17641 + - uid: 20094 components: - type: Transform - pos: -18.5,65.5 - parent: 2 - - uid: 6016 + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 17641 + - uid: 20095 components: - type: Transform - pos: -19.5,65.5 - parent: 2 - - uid: 6031 + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 17641 + - uid: 20096 components: - type: Transform - pos: -39.5,-31.5 - parent: 2 - - uid: 6042 + rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 17641 + - uid: 20097 components: - type: Transform - pos: -38.5,-31.5 - parent: 2 - - uid: 6050 + pos: 15.5,6.5 + parent: 17641 + - uid: 20098 components: - type: Transform - pos: -32.5,-32.5 - parent: 2 - - uid: 6051 + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 17641 + - uid: 20099 components: - type: Transform - pos: -31.5,-31.5 - parent: 2 - - uid: 6065 + rot: -1.5707963267948966 rad + pos: 21.5,8.5 + parent: 17641 + - uid: 20100 components: - type: Transform - pos: -71.5,13.5 - parent: 2 - - uid: 6073 + rot: -1.5707963267948966 rad + pos: 23.5,12.5 + parent: 17641 + - uid: 20101 components: - type: Transform - pos: -76.5,23.5 - parent: 2 - - uid: 6091 + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 17641 + - uid: 20102 components: - type: Transform - pos: -29.5,68.5 - parent: 2 - - uid: 6092 + rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 17641 + - uid: 20103 components: - type: Transform - pos: -29.5,66.5 - parent: 2 - - uid: 6093 + rot: -1.5707963267948966 rad + pos: 20.5,12.5 + parent: 17641 + - uid: 20104 components: - type: Transform - pos: -25.5,68.5 - parent: 2 - - uid: 6094 + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 17641 + - uid: 20105 components: - type: Transform - pos: -25.5,66.5 - parent: 2 - - uid: 6105 + rot: 3.141592653589793 rad + pos: 14.5,15.5 + parent: 17641 + - uid: 20106 components: - type: Transform - pos: -38.5,-32.5 - parent: 2 - - uid: 6235 + rot: 3.141592653589793 rad + pos: 19.5,18.5 + parent: 17641 + - uid: 20107 components: - type: Transform - pos: -20.5,64.5 - parent: 2 - - uid: 6236 + rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 17641 + - uid: 20108 components: - type: Transform - pos: -20.5,63.5 - parent: 2 - - uid: 6237 + pos: 12.5,18.5 + parent: 17641 + - uid: 20109 components: - type: Transform - pos: -20.5,62.5 - parent: 2 - - uid: 6246 + pos: 11.5,19.5 + parent: 17641 + - uid: 20110 components: - type: Transform - pos: -39.5,-32.5 - parent: 2 - - uid: 6275 + rot: -1.5707963267948966 rad + pos: 14.5,21.5 + parent: 17641 + - uid: 20111 components: - type: Transform - pos: -63.5,27.5 - parent: 2 - - uid: 6276 + rot: 3.141592653589793 rad + pos: 14.5,22.5 + parent: 17641 + - uid: 20112 components: - type: Transform - pos: -64.5,27.5 - parent: 2 - - uid: 6277 + rot: 3.141592653589793 rad + pos: 15.5,23.5 + parent: 17641 + - uid: 20113 components: - type: Transform - pos: -65.5,27.5 - parent: 2 - - uid: 6474 + rot: 1.5707963267948966 rad + pos: 16.5,22.5 + parent: 17641 + - uid: 20114 components: - type: Transform - pos: 19.5,34.5 - parent: 2 - - uid: 6534 + rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 17641 + - uid: 20115 components: - type: Transform - pos: -54.5,33.5 - parent: 2 - - uid: 6548 + rot: 1.5707963267948966 rad + pos: 18.5,22.5 + parent: 17641 + - uid: 20116 components: - type: Transform - pos: -53.5,36.5 - parent: 2 - - uid: 6550 + pos: 20.5,23.5 + parent: 17641 + - uid: 20117 components: - type: Transform - pos: -51.5,36.5 - parent: 2 - - uid: 6587 + pos: 20.5,23.5 + parent: 17641 + - uid: 20118 components: - type: Transform - pos: -51.5,39.5 - parent: 2 - - uid: 6588 + rot: -1.5707963267948966 rad + pos: 22.5,22.5 + parent: 17641 + - uid: 20121 components: - type: Transform - pos: -57.5,35.5 - parent: 2 - - uid: 6589 + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 17641 + - uid: 20122 components: - type: Transform - pos: -57.5,33.5 - parent: 2 - - uid: 6591 + rot: 3.141592653589793 rad + pos: 12.5,23.5 + parent: 17641 + - uid: 20123 components: - type: Transform - pos: -57.5,34.5 - parent: 2 - - uid: 6593 + rot: 3.141592653589793 rad + pos: 12.5,23.5 + parent: 17641 + - uid: 20124 components: - type: Transform - pos: -52.5,39.5 - parent: 2 - - uid: 6809 + rot: 3.141592653589793 rad + pos: 13.5,27.5 + parent: 17641 + - uid: 20125 components: - type: Transform - pos: -75.5,17.5 - parent: 2 - - uid: 6811 + rot: 1.5707963267948966 rad + pos: 13.5,26.5 + parent: 17641 + - uid: 20126 components: - type: Transform - pos: -72.5,8.5 - parent: 2 - - uid: 6812 + rot: 1.5707963267948966 rad + pos: 15.5,27.5 + parent: 17641 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 19312 components: - type: Transform - pos: -54.5,8.5 - parent: 2 - - uid: 6833 + pos: 18.5,27.5 + parent: 17641 + - uid: 19313 components: - type: Transform - pos: -57.5,15.5 - parent: 2 - - uid: 6834 + pos: 19.5,27.5 + parent: 17641 + - uid: 19314 components: - type: Transform - pos: -57.5,20.5 - parent: 2 - - uid: 6835 + rot: -1.5707963267948966 rad + pos: 19.5,26.5 + parent: 17641 + - uid: 19315 components: - type: Transform - pos: -58.5,21.5 - parent: 2 - - uid: 6840 + rot: -1.5707963267948966 rad + pos: 21.5,27.5 + parent: 17641 + - uid: 19316 components: - type: Transform - pos: -58.5,23.5 - parent: 2 - - uid: 6946 + rot: 3.141592653589793 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19317 components: - type: Transform - pos: -31.5,-27.5 - parent: 2 - - uid: 7031 + rot: 3.141592653589793 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19318 components: - type: Transform - pos: -29.5,5.5 - parent: 2 - - uid: 7181 + rot: 3.141592653589793 rad + pos: 23.5,26.5 + parent: 17641 + - uid: 19319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-30.5 - parent: 2 - - uid: 7341 + rot: 3.141592653589793 rad + pos: 23.5,25.5 + parent: 17641 + - uid: 19320 components: - type: Transform - pos: 53.5,-9.5 - parent: 2 - - uid: 7671 + rot: 1.5707963267948966 rad + pos: 22.5,25.5 + parent: 17641 + - uid: 19321 components: - type: Transform - pos: -32.5,-31.5 - parent: 2 - - uid: 7719 + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 17641 + - uid: 19322 components: - type: Transform - pos: -32.5,-27.5 - parent: 2 - - uid: 7740 + rot: 1.5707963267948966 rad + pos: 20.5,26.5 + parent: 17641 + - uid: 19323 components: - type: Transform - pos: -58.5,18.5 - parent: 2 - - uid: 7754 + pos: 20.5,26.5 + parent: 17641 + - uid: 19324 components: - type: Transform - pos: -47.5,27.5 - parent: 2 - - uid: 7755 + pos: 21.5,27.5 + parent: 17641 + - uid: 19325 components: - type: Transform - pos: -45.5,27.5 - parent: 2 - - uid: 7756 + pos: 22.5,27.5 + parent: 17641 + - uid: 19326 components: - type: Transform - pos: -46.5,27.5 - parent: 2 - - uid: 7892 + pos: 22.5,27.5 + parent: 17641 + - uid: 19327 components: - type: Transform - pos: 9.5,-13.5 - parent: 2 - - uid: 8043 + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19328 components: - type: Transform - pos: 52.5,-9.5 - parent: 2 - - uid: 8256 + rot: -1.5707963267948966 rad + pos: 20.5,26.5 + parent: 17641 + - uid: 19329 components: - type: Transform - pos: -76.5,15.5 - parent: 2 - - uid: 8462 + rot: -1.5707963267948966 rad + pos: 20.5,28.5 + parent: 17641 + - uid: 19330 components: - type: Transform - pos: -76.5,19.5 - parent: 2 - - uid: 8464 + rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 17641 + - uid: 19331 components: - type: Transform - pos: -76.5,11.5 - parent: 2 - - uid: 8474 + rot: 3.141592653589793 rad + pos: 22.5,28.5 + parent: 17641 + - uid: 19332 components: - type: Transform - pos: -75.5,18.5 - parent: 2 - - uid: 8475 + rot: 3.141592653589793 rad + pos: 22.5,28.5 + parent: 17641 + - uid: 19333 components: - type: Transform - pos: -75.5,16.5 - parent: 2 - - uid: 10200 + rot: 1.5707963267948966 rad + pos: 22.5,27.5 + parent: 17641 + - uid: 19334 components: - type: Transform - pos: -2.5,-30.5 - parent: 2 - - uid: 13005 + rot: 1.5707963267948966 rad + pos: 21.5,26.5 + parent: 17641 + - uid: 19335 components: - type: Transform - pos: -71.5,22.5 - parent: 2 - - uid: 13110 + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 17641 + - uid: 19336 components: - type: Transform - pos: -71.5,21.5 - parent: 2 - - uid: 13375 + pos: 19.5,25.5 + parent: 17641 + - uid: 19337 components: - type: Transform - pos: -24.5,-2.5 - parent: 2 - - uid: 13388 + pos: 18.5,25.5 + parent: 17641 + - uid: 19338 components: - type: Transform - pos: 22.5,46.5 - parent: 2 - - uid: 13389 + rot: -1.5707963267948966 rad + pos: 18.5,26.5 + parent: 17641 + - uid: 19339 components: - type: Transform - pos: 22.5,47.5 - parent: 2 - - uid: 13399 + rot: -1.5707963267948966 rad + pos: 19.5,27.5 + parent: 17641 + - uid: 19340 components: - type: Transform - pos: 22.5,45.5 - parent: 2 - - uid: 14738 + rot: -1.5707963267948966 rad + pos: 20.5,26.5 + parent: 17641 + - uid: 19341 components: - type: Transform - pos: -34.5,-19.5 - parent: 2 - - uid: 15618 + rot: 3.141592653589793 rad + pos: 20.5,24.5 + parent: 17641 + - uid: 19342 components: - type: Transform - pos: 3.5,-24.5 - parent: 2 - - uid: 15781 + rot: 3.141592653589793 rad + pos: 20.5,24.5 + parent: 17641 + - uid: 19343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,18.5 - parent: 16200 - - uid: 15822 + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 17641 + - uid: 19344 components: - type: Transform - pos: 3.5,-21.5 - parent: 2 - - uid: 15823 + rot: 1.5707963267948966 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19345 components: - type: Transform - pos: 4.5,-21.5 - parent: 2 - - uid: 15824 + pos: 22.5,27.5 + parent: 17641 + - uid: 19346 components: - type: Transform - pos: 4.5,-24.5 - parent: 2 - - uid: 16436 + pos: 22.5,27.5 + parent: 17641 + - uid: 19347 components: - type: Transform - pos: 23.5,15.5 - parent: 16200 - - uid: 16437 + rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 17641 + - uid: 19348 components: - type: Transform - pos: 23.5,12.5 - parent: 16200 -- proto: RemoteSignaller - entities: - - uid: 12393 + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 17641 + - uid: 19349 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.268147,16.532095 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4841: - - Pressed: DoorBolt -- proto: RemoteSignallerAdvanced - entities: - - uid: 3526 + pos: 19.5,26.5 + parent: 17641 + - uid: 19350 components: - - type: MetaData - desc: Игрушечный детонатор, который, якобы, вызывает взрыв в кабинете главы СБ. - name: игрушечный детонатор - type: Transform - parent: 3992 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ResearchAndDevelopmentServer - entities: - - uid: 4962 + rot: 1.5707963267948966 rad + pos: 19.5,26.5 + parent: 17641 + - uid: 19351 components: - - type: MetaData - name: сервер НИО - type: Transform - anchored: False - pos: -12.085306,2.1942544 - parent: 2 - - type: Physics - bodyType: Dynamic - - type: Pullable - prevFixedRotation: True -- proto: RevolverCapGun - entities: - - uid: 3363 + pos: 19.5,27.5 + parent: 17641 + - uid: 19352 components: - type: Transform - parent: 1387 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RightArmBorg - entities: - - uid: 1020 + rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 17641 + - uid: 19353 components: - type: Transform - pos: -22.259003,-7.5307784 - parent: 2 -- proto: RobocopCircuitBoard - entities: - - uid: 15771 + rot: 1.5707963267948966 rad + pos: 21.5,27.5 + parent: 17641 + - uid: 19354 components: - type: Transform - parent: 15765 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RubberStampApproved - entities: - - uid: 2644 + rot: 1.5707963267948966 rad + pos: 21.5,26.5 + parent: 17641 + - uid: 19355 components: - type: Transform - pos: 8.251135,-19.289347 - parent: 2 - - uid: 2757 + pos: 22.5,26.5 + parent: 17641 + - uid: 19356 components: - type: Transform - parent: 2738 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18598 + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19357 components: - type: Transform - rot: 4.0768111109201755E-09 rad - pos: 1.3024292,-9.328613 - parent: 17590 -- proto: RubberStampDenied - entities: - - uid: 1309 + rot: 1.5707963267948966 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19358 components: - type: Transform - pos: 8.240718,-19.049763 - parent: 2 - - uid: 2756 + pos: 21.5,25.5 + parent: 17641 + - uid: 19359 components: - type: Transform - parent: 2738 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RubberStampSyndicate - entities: - - uid: 3567 + rot: -1.5707963267948966 rad + pos: 21.5,25.5 + parent: 17641 + - uid: 19360 components: - - type: MetaData - desc: Печать из резины, купленная в магазине приколов для отчётности. - name: печать синдикека - type: Transform - pos: -69.915115,37.520355 - parent: 2 - - type: Stamp - stampedName: синдекек :р - missingComponents: - - Contraband - - uid: 19885 + rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 17641 + - uid: 19361 components: - type: Transform - parent: 19884 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RubberStampTrader - entities: - - uid: 20065 + rot: 1.5707963267948966 rad + pos: 21.5,27.5 + parent: 17641 + - uid: 19362 components: - - type: MetaData - desc: Печать из резины, для проставления печатей на важных документах. Эта пропахла ложью - name: печать WehFactory - type: Transform - rot: 4.0768111109201755E-09 rad - pos: 1.697937,-8.886963 - parent: 17590 - - type: Stamp - stampedName: WehFactory -- proto: SalvageCanisterSpawner - entities: - - uid: 18670 + pos: 22.5,27.5 + parent: 17641 + - uid: 19363 components: - type: Transform - pos: 7.5,-12.5 - parent: 17590 -- proto: SalvageFleshSpawner - entities: - - uid: 6401 + rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 17641 + - uid: 19364 components: - type: Transform - pos: 27.5,13.5 - parent: 2 - - uid: 6402 + rot: 3.141592653589793 rad + pos: 22.5,27.5 + parent: 17641 + - uid: 19365 components: - type: Transform - pos: 27.5,12.5 - parent: 2 - - uid: 6406 + rot: 1.5707963267948966 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19366 components: - type: Transform - pos: 26.5,9.5 - parent: 2 - - uid: 19974 + rot: 1.5707963267948966 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19367 components: - type: Transform - pos: 24.5,17.5 - parent: 19951 - - uid: 19996 + pos: 21.5,26.5 + parent: 17641 + - uid: 19368 components: - type: Transform - pos: 23.5,16.5 - parent: 19951 - - uid: 19997 + rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 17641 + - uid: 19369 components: - type: Transform - pos: 24.5,16.5 - parent: 19951 - - uid: 19998 + rot: 1.5707963267948966 rad + pos: 19.5,25.5 + parent: 17641 + - uid: 19370 components: - type: Transform - pos: 25.5,16.5 - parent: 19951 - - uid: 19999 + pos: 19.5,25.5 + parent: 17641 + - uid: 19371 components: - type: Transform - pos: 22.5,17.5 - parent: 19951 -- proto: SalvageHumanCorpseSpawner - entities: - - uid: 4075 + rot: -1.5707963267948966 rad + pos: 19.5,25.5 + parent: 17641 + - uid: 19372 components: - type: Transform - pos: -23.5,5.5 - parent: 2 - - uid: 16071 + rot: 3.141592653589793 rad + pos: 20.5,25.5 + parent: 17641 + - uid: 19373 components: - type: Transform - pos: -1.5,-0.5 - parent: 2 -- proto: SalvageMagnet - entities: - - uid: 15761 + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 17641 + - uid: 19374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,17.5 - parent: 2 -- proto: SalvageSpawnerScrapCommon - entities: - - uid: 6681 + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19375 components: - type: Transform - pos: -67.5,36.5 - parent: 2 - - uid: 6683 + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19376 components: - type: Transform - pos: -67.5,35.5 - parent: 2 -- proto: SalvageSpawnerScrapCommon75 - entities: - - uid: 946 + rot: 1.5707963267948966 rad + pos: 22.5,27.5 + parent: 17641 + - uid: 19377 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,35.5 - parent: 2 - - uid: 1470 + pos: 23.5,27.5 + parent: 17641 + - uid: 19378 components: - type: Transform - pos: -63.5,37.5 - parent: 2 - - uid: 1519 + rot: 3.141592653589793 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,34.5 - parent: 2 - - uid: 1667 + rot: 3.141592653589793 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,33.5 - parent: 2 - - uid: 6684 + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 17641 + - uid: 19381 components: - type: Transform - pos: -67.5,37.5 - parent: 2 - - uid: 20123 + rot: 3.141592653589793 rad + pos: 22.5,27.5 + parent: 17641 + - uid: 19382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,11.5 - parent: 20000 - - uid: 20127 + rot: 3.141592653589793 rad + pos: 21.5,27.5 + parent: 17641 + - uid: 19383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,12.5 - parent: 20000 - - uid: 20128 + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 17641 + - uid: 19384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 20000 - - uid: 20129 + rot: 3.141592653589793 rad + pos: 20.5,27.5 + parent: 17641 + - uid: 19385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,12.5 - parent: 20000 - - uid: 20131 + rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 17641 + - uid: 19386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,11.5 - parent: 20000 - - uid: 20132 + rot: 3.141592653589793 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,12.5 - parent: 20000 - - uid: 20134 + rot: 3.141592653589793 rad + pos: 19.5,27.5 + parent: 17641 + - uid: 19388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,11.5 - parent: 20000 - - uid: 20135 + rot: 3.141592653589793 rad + pos: 20.5,27.5 + parent: 17641 + - uid: 19389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 20000 -- proto: SalvageSpawnerScrapValuable - entities: - - uid: 982 + rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 17641 + - uid: 19390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,35.5 - parent: 2 - - uid: 1017 + rot: 3.141592653589793 rad + pos: 19.5,26.5 + parent: 17641 + - uid: 19391 components: - type: Transform - pos: -61.5,37.5 - parent: 2 - - uid: 3721 + rot: 3.141592653589793 rad + pos: 21.5,27.5 + parent: 17641 + - uid: 19392 components: - type: Transform - pos: -47.5,34.5 - parent: 2 - - uid: 6657 + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 17641 + - uid: 19393 components: - type: Transform - pos: -66.5,35.5 - parent: 2 - - uid: 6671 + rot: 3.141592653589793 rad + pos: 22.5,27.5 + parent: 17641 + - uid: 19394 components: - type: Transform - pos: -66.5,36.5 - parent: 2 - - uid: 6679 + rot: 3.141592653589793 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19395 components: - type: Transform - pos: -67.5,36.5 - parent: 2 - - uid: 6682 + rot: 3.141592653589793 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19396 components: - type: Transform - pos: -70.5,35.5 - parent: 2 - - uid: 7759 + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 17641 + - uid: 19397 components: - type: Transform - pos: -48.5,37.5 - parent: 2 - - uid: 7761 + rot: 3.141592653589793 rad + pos: 21.5,25.5 + parent: 17641 + - uid: 19398 components: - type: Transform - pos: -57.5,40.5 - parent: 2 - - uid: 7764 + rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 17641 + - uid: 19399 components: - type: Transform - pos: -48.5,36.5 - parent: 2 - - uid: 7767 + rot: 3.141592653589793 rad + pos: 20.5,25.5 + parent: 17641 + - uid: 19400 components: - type: Transform - pos: -43.5,40.5 - parent: 2 -- proto: SawElectric - entities: - - uid: 8050 + rot: 3.141592653589793 rad + pos: 22.5,25.5 + parent: 17641 + - uid: 19401 components: - type: Transform - parent: 8048 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10202 + rot: 3.141592653589793 rad + pos: 18.5,26.5 + parent: 17641 + - uid: 19402 components: - type: Transform - pos: -20.48191,25.662813 - parent: 2 -- proto: Scalpel - entities: - - uid: 10199 + rot: 3.141592653589793 rad + pos: 19.5,26.5 + parent: 17641 + - uid: 19403 components: - type: Transform - pos: -20.48191,25.756563 - parent: 2 -- proto: SciFlash - entities: - - uid: 8147 + rot: 3.141592653589793 rad + pos: 19.5,25.5 + parent: 17641 + - uid: 19404 components: - type: Transform - parent: 8127 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ScrapBucket - entities: - - uid: 8734 + rot: 3.141592653589793 rad + pos: 18.5,25.5 + parent: 17641 + - uid: 19405 components: - type: Transform - pos: 10.485411,30.387302 - parent: 2 - - uid: 15911 + rot: 3.141592653589793 rad + pos: 19.5,27.5 + parent: 17641 + - uid: 19406 components: - type: Transform - pos: 2.028451,31.916132 - parent: 2 -- proto: ScrapCamera - entities: - - uid: 16977 + rot: 3.141592653589793 rad + pos: 20.5,27.5 + parent: 17641 + - uid: 19407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.383656,-21.461721 - parent: 2 -- proto: ScrapCanister1 - entities: - - uid: 7645 + rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 17641 + - uid: 19408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.357752,-12.529681 - parent: 2 -- proto: ScrapCanister2 - entities: - - uid: 7644 + rot: 3.141592653589793 rad + pos: 19.5,26.5 + parent: 17641 + - uid: 19409 components: - type: Transform - pos: -23.966648,-12.6317215 - parent: 2 -- proto: ScrapCloset - entities: - - uid: 387 + rot: 3.141592653589793 rad + pos: 21.5,27.5 + parent: 17641 + - uid: 19410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.567795,36.39743 - parent: 2 - - uid: 455 + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 17641 + - uid: 19411 components: - type: Transform - pos: -35.23967,39.444305 - parent: 2 - - uid: 471 + rot: 3.141592653589793 rad + pos: 22.5,26.5 + parent: 17641 + - uid: 19412 components: - type: Transform - pos: -33.536545,38.52243 - parent: 2 - - uid: 16068 + rot: 3.141592653589793 rad + pos: 23.5,27.5 + parent: 17641 + - uid: 19413 components: - type: Transform - pos: -0.42536736,9.562606 - parent: 2 - - uid: 20126 + rot: 3.141592653589793 rad + pos: 23.5,26.5 + parent: 17641 + - uid: 19414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.591309,11.351074 - parent: 20000 -- proto: ScrapFaxMachine - entities: - - uid: 6650 + rot: 3.141592653589793 rad + pos: 22.5,27.5 + parent: 17641 + - uid: 19415 components: - type: Transform - pos: -70.53995,37.5422 - parent: 2 -- proto: ScrapFireExtinguisher - entities: - - uid: 853 + rot: 3.141592653589793 rad + pos: 23.5,27.5 + parent: 17641 + - uid: 19416 components: - type: Transform - pos: -9.546807,9.5261965 - parent: 2 - - uid: 16047 + rot: 3.141592653589793 rad + pos: 22.5,27.5 + parent: 17641 + - uid: 19417 components: - type: Transform - pos: -1.3485074,18.450058 - parent: 2 - - uid: 16051 + rot: 3.141592653589793 rad + pos: 23.5,26.5 + parent: 17641 + - uid: 19418 components: - type: Transform - pos: -19.379461,11.574744 - parent: 2 -- proto: ScrapFirelock1 - entities: - - uid: 6658 + rot: 3.141592653589793 rad + pos: 23.5,25.5 + parent: 17641 + - uid: 19419 components: - type: Transform - pos: -68.52429,35.33177 - parent: 2 - - uid: 13094 + rot: 3.141592653589793 rad + pos: 23.5,27.5 + parent: 17641 + - uid: 19420 components: - type: Transform - pos: 6.3312254,7.4668236 - parent: 2 -- proto: ScrapFirelock2 + rot: 3.141592653589793 rad + pos: 23.5,26.5 + parent: 17641 +- proto: SawElectric entities: - - uid: 1715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.120288,7.6074486 - parent: 2 - - uid: 6646 + - uid: 8050 components: - type: Transform - pos: -68.46689,34.296165 - parent: 2 -- proto: ScrapFirelock3 + parent: 8048 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SciFlash entities: - - uid: 1849 + - uid: 8147 components: - type: Transform - pos: 4.9718504,7.630886 - parent: 2 - - uid: 6649 + parent: 8127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ScrapBucket + entities: + - uid: 8734 components: - type: Transform - pos: -69.39229,32.507233 + pos: 10.485411,30.387302 parent: 2 -- proto: ScrapGlass +- proto: ScrapCamera entities: - - uid: 1031 + - uid: 7044 components: - type: Transform - pos: 0.5282271,-20.538647 + rot: -1.5707963267948966 rad + pos: -34.616333,26.533764 parent: 2 - - uid: 6632 + - uid: 16977 components: - type: Transform - pos: 0.31821108,-23.478035 + rot: 1.5707963267948966 rad + pos: 49.383656,-21.461721 parent: 2 - proto: ScrapMedkit entities: - - uid: 6633 - components: - - type: Transform - pos: -9.562812,19.504099 - parent: 2 - uid: 16438 components: - type: Transform @@ -105450,13 +100393,6 @@ entities: - type: Transform pos: 28.30581,15.546242 parent: 16200 -- proto: ScrapMopBucket - entities: - - uid: 15912 - components: - - type: Transform - pos: 0.95032597,31.525507 - parent: 2 - proto: ScrapPAI entities: - uid: 1037 @@ -105464,42 +100400,6 @@ entities: - type: Transform pos: -35.515213,43.552917 parent: 2 -- proto: ScrapSteel - entities: - - uid: 16069 - components: - - type: Transform - pos: 2.1165495,7.5916176 - parent: 2 - - uid: 16070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.952975,8.138493 - parent: 2 -- proto: ScrapTube - entities: - - uid: 1035 - components: - - type: Transform - pos: -11.591253,19.951094 - parent: 2 - - uid: 6634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.419378,19.591719 - parent: 2 - - uid: 7048 - components: - - type: Transform - pos: -28.09146,4.7419934 - parent: 2 - - uid: 7049 - components: - - type: Transform - pos: -28.013334,4.6638684 - parent: 2 - proto: Screen entities: - uid: 5491 @@ -105581,6 +100481,18 @@ entities: rot: 2.6179938779914944 rad pos: -32.199886,63.47638 parent: 2 + - uid: 18728 + components: + - type: Transform + parent: 18726 + - type: Physics + canCollide: False + - uid: 18729 + components: + - type: Transform + parent: 18726 + - type: Physics + canCollide: False - proto: SecurityTechFab entities: - uid: 3204 @@ -105600,43 +100512,6 @@ entities: - type: Transform pos: 11.5,23.5 parent: 2 -- proto: SeismicCharge - entities: - - uid: 18302 - components: - - type: Transform - parent: 18300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18303 - components: - - type: Transform - parent: 18300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18304 - components: - - type: Transform - parent: 18300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18305 - components: - - type: Transform - parent: 18300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18306 - components: - - type: Transform - parent: 18300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ShardGlass entities: - uid: 3143 @@ -105659,91 +100534,23 @@ entities: - type: Transform pos: -23.742592,64.69186 parent: 2 - - uid: 5743 - components: - - type: Transform - pos: -38.09973,41.659355 - parent: 2 - - uid: 5980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.47473,43.128105 - parent: 2 - - uid: 6757 - components: - - type: Transform - pos: -40.83637,39.39518 - parent: 2 - - uid: 6758 - components: - - type: Transform - pos: -40.320744,41.860413 - parent: 2 - - uid: 6759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.36762,41.235413 - parent: 2 - - uid: 6760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.539494,41.047913 - parent: 2 - - uid: 6768 - components: - - type: Transform - pos: -40.995766,43.49936 - parent: 2 - - uid: 7798 - components: - - type: Transform - pos: -46.72238,44.70224 - parent: 2 - - uid: 7799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.144257,46.780365 - parent: 2 - uid: 16979 components: - type: Transform parent: 16978 - type: Physics canCollide: False -- proto: ShardGlassReinforced - entities: - - uid: 7034 - components: - - type: Transform - pos: -26.321035,6.137461 - parent: 2 - - uid: 7035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.86791,6.184336 - parent: 2 - - uid: 7046 + - uid: 19421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.290476,5.640594 - parent: 2 - - uid: 19954 + pos: -1.5030303,4.5500584 + parent: 17641 + - uid: 19422 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.475464,17.939209 - parent: 19951 - - uid: 19956 - components: - - type: Transform - pos: 21.912964,16.470703 - parent: 19951 + pos: -1.2374052,4.3781834 + parent: 17641 - proto: SheetGlass entities: - uid: 4113 @@ -105758,6 +100565,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 7257 + components: + - type: Transform + pos: 25.454716,-29.726675 + parent: 2 - uid: 15874 components: - type: Transform @@ -105779,13 +100591,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18313 - components: - - type: Transform - parent: 18312 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: SheetGlass10 entities: - uid: 3998 @@ -105798,29 +100603,17 @@ entities: - type: Transform pos: -43.47928,35.658546 parent: 2 - - uid: 7071 - components: - - type: Transform - parent: 7064 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SheetPlasma10 +- proto: SheetPlasma entities: - - uid: 3848 - components: - - type: Transform - pos: -14.5,-5.5 - parent: 2 - - uid: 3997 + - uid: 321 components: - type: Transform - pos: -14.5,-5.5 + pos: -15.3246765,-5.2886457 parent: 2 - - uid: 3999 + - uid: 3885 components: - type: Transform - pos: -14.5,-5.5 + pos: -15.3246765,-5.4448957 parent: 2 - proto: SheetPlasteel entities: @@ -105857,6 +100650,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 7259 + components: + - type: Transform + pos: 25.47034,-30.070425 + parent: 2 - uid: 16421 components: - type: Transform @@ -105871,13 +100669,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18314 - components: - - type: Transform - parent: 18312 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: SheetPlastic10 entities: - uid: 3210 @@ -105924,6 +100715,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 7258 + components: + - type: Transform + pos: 25.48833,-29.376589 + parent: 2 - uid: 12477 components: - type: Transform @@ -105966,15 +100762,22 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18315 +- proto: SheetSteel1 + entities: + - uid: 3569 components: - type: Transform - parent: 18312 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -69.521454,35.462074 + parent: 2 + - type: Stack + count: 6 - proto: SheetSteel10 entities: + - uid: 1957 + components: + - type: Transform + pos: 0.43105364,-18.317501 + parent: 2 - uid: 3732 components: - type: Transform @@ -105993,13 +100796,250 @@ entities: - uid: 5717 components: - type: Transform - pos: -43.401154,36.564346 - parent: 2 - - uid: 17363 + pos: -43.401154,36.564346 + parent: 2 + - uid: 11383 + components: + - type: Transform + pos: 0.4171648,-18.407778 + parent: 2 + - uid: 17363 + components: + - type: Transform + pos: -24.602211,64.518074 + parent: 2 +- proto: ShelfRGlass + entities: + - uid: 3997 + components: + - type: MetaData + desc: Кристально чистые дверцы из армированного стекла позволят выставить напоказ все ваши модные бутылки. + - type: Transform + pos: -20.5,23.5 + parent: 2 + - type: Lock + locked: False + - type: Storage + storedItems: + 3999: + position: 0,0 + _rotation: South + 4243: + position: 1,0 + _rotation: South + 4317: + position: 2,0 + _rotation: South + 4318: + position: 3,0 + _rotation: South + 4406: + position: 0,1 + _rotation: South + 4408: + position: 1,1 + _rotation: South + 4418: + position: 2,1 + _rotation: South + 4425: + position: 3,1 + _rotation: South + 4427: + position: 0,3 + _rotation: South + 4473: + position: 1,3 + _rotation: South + 4575: + position: 2,3 + _rotation: South + 4609: + position: 3,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 3999 + - 4243 + - 4317 + - 4318 + - 4406 + - 4408 + - 4418 + - 4425 + - 4427 + - 4473 + - 4575 + - 4609 +- proto: ShelfRWood + entities: + - uid: 18537 + components: + - type: Transform + pos: 20.5,5.5 + parent: 17641 + - type: Lock + locked: False + - type: Storage + storedItems: + 18539: + position: 0,0 + _rotation: South + 18541: + position: 1,0 + _rotation: South + 18538: + position: 2,0 + _rotation: South + 18540: + position: 3,0 + _rotation: South + 18542: + position: 0,3 + _rotation: East + 18543: + position: 2,3 + _rotation: East + 18544: + position: 0,4 + _rotation: East + 18545: + position: 2,4 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 18539 + - 18541 + - 18538 + - 18540 + - 18542 + - 18543 + - 18544 + - 18545 + - uid: 18726 + components: + - type: Transform + pos: 22.5,5.5 + parent: 17641 + - type: Construction + step: 1 + edge: 0 + - type: Lock + locked: False + - type: Storage + storedItems: + 18731: + position: 0,0 + _rotation: South + 18732: + position: 1,0 + _rotation: South + 18733: + position: 2,0 + _rotation: South + 18734: + position: 3,0 + _rotation: South + 18730: + position: 0,3 + _rotation: South + 18727: + position: 1,3 + _rotation: South + 18728: + position: 2,3 + _rotation: East + 18729: + position: 2,4 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 18731 + - 18732 + - 18733 + - 18734 + - 18730 + - 18727 + - 18728 + - 18729 +- proto: ShelfWood + entities: + - uid: 18951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 17641 + - type: Storage + storedItems: + 18953: + position: 3,0 + _rotation: South + 18954: + position: 1,1 + _rotation: South + 18952: + position: 2,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 18953 + - 18954 + - 18952 + - uid: 18969 components: - type: Transform - pos: -24.602211,64.518074 - parent: 2 + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 17641 + - type: Storage + storedItems: + 18970: + position: 0,0 + _rotation: South + 18971: + position: 2,1 + _rotation: South + 18972: + position: 3,1 + _rotation: South + 18973: + position: 2,3 + _rotation: South + 18974: + position: 0,4 + _rotation: South + 18975: + position: 3,4 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 18970 + - 18971 + - 18972 + - 18973 + - 18974 + - 18975 - proto: ShellShotgunImprovised entities: - uid: 3138 @@ -106008,30 +101048,16 @@ entities: rot: -1.5707963267948966 rad pos: -24.679731,63.50393 parent: 2 - - uid: 17181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.757856,63.44143 - parent: 2 -- proto: ShippingContainerBlank +- proto: ShippingContainerKosmologistika entities: - - uid: 1720 + - uid: 6280 components: - type: Transform pos: 36.5,2.5 parent: 2 - - uid: 3084 - components: - - type: Transform - pos: 32.5,2.5 - parent: 2 - - uid: 6054 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 2 - - uid: 15792 +- proto: ShippingContainerNakamura + entities: + - uid: 6336 components: - type: Transform pos: 36.5,-0.5 @@ -106089,6 +101115,31 @@ entities: - type: Transform pos: 26.5,-13.5 parent: 2 + - uid: 4790 + components: + - type: Transform + pos: -32.5,23.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: -48.5,46.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 + - uid: 11629 + components: + - type: Transform + pos: -34.5,23.5 + parent: 2 + - uid: 12362 + components: + - type: Transform + pos: -33.5,23.5 + parent: 2 - uid: 16441 components: - type: Transform @@ -106109,6 +101160,26 @@ entities: - type: Transform pos: 17.5,21.5 parent: 16200 + - uid: 20196 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 20197 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 20198 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 20199 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 - proto: ShuttersNormalOpen entities: - uid: 970 @@ -106186,6 +101257,11 @@ entities: - type: Transform pos: 16.5,15.5 parent: 2 + - uid: 7467 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 - uid: 8126 components: - type: Transform @@ -106216,33 +101292,16 @@ entities: - type: Transform pos: 19.5,20.5 parent: 16200 -- proto: ShuttersRadiation - entities: - - uid: 18733 - components: - - type: Transform - pos: 42.5,3.5 - parent: 17590 - - uid: 18734 - components: - - type: Transform - pos: 38.5,3.5 - parent: 17590 - - uid: 19769 - components: - - type: Transform - pos: 39.5,3.5 - parent: 17590 - - uid: 19770 + - uid: 17416 components: - type: Transform - pos: 41.5,3.5 - parent: 17590 - - uid: 19771 + pos: -18.5,8.5 + parent: 2 + - uid: 17417 components: - type: Transform - pos: 40.5,3.5 - parent: 17590 + pos: -18.5,7.5 + parent: 2 - proto: ShuttleGunDuster entities: - uid: 16857 @@ -106252,436 +101311,11 @@ entities: pos: 10.5,24.5 parent: 16675 - type: Gun - minAngle: 0.17453292519943295 rad angleIncrease: 0.5235987755982988 rad angleDecay: 0.5235987755982988 rad maxAngle: 0.5235987755982988 rad + minAngle: 0.17453292519943295 rad projectileSpeed: 20 -- proto: ShuttleWindow - entities: - - uid: 18268 - components: - - type: Transform - pos: 30.5,9.5 - parent: 17590 - - uid: 18735 - components: - - type: Transform - pos: 30.5,13.5 - parent: 17590 - - uid: 18736 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 17590 - - uid: 18738 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 17590 - - uid: 18739 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 17590 - - uid: 18740 - components: - - type: Transform - pos: 44.5,-7.5 - parent: 17590 - - uid: 18741 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 17590 - - uid: 18742 - components: - - type: Transform - pos: 32.5,-11.5 - parent: 17590 - - uid: 18743 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 17590 - - uid: 18744 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 17590 - - uid: 18745 - components: - - type: Transform - pos: 31.5,21.5 - parent: 17590 - - uid: 18746 - components: - - type: Transform - pos: 35.5,20.5 - parent: 17590 - - uid: 18747 - components: - - type: Transform - pos: 30.5,14.5 - parent: 17590 - - uid: 18748 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 17590 - - uid: 18749 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 17590 - - uid: 18750 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 17590 - - uid: 18751 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 17590 - - uid: 18752 - components: - - type: Transform - pos: 31.5,-20.5 - parent: 17590 - - uid: 18753 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 17590 - - uid: 18754 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 17590 - - uid: 18755 - components: - - type: Transform - pos: 19.5,1.5 - parent: 17590 - - uid: 18756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 17590 - - uid: 18757 - components: - - type: Transform - pos: 44.5,-5.5 - parent: 17590 - - uid: 18758 - components: - - type: Transform - pos: 44.5,-6.5 - parent: 17590 - - uid: 18759 - components: - - type: Transform - pos: 36.5,14.5 - parent: 17590 - - uid: 18760 - components: - - type: Transform - pos: 31.5,20.5 - parent: 17590 - - uid: 18762 - components: - - type: Transform - pos: 35.5,21.5 - parent: 17590 - - uid: 18763 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 17590 - - uid: 18764 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 17590 - - uid: 18766 - components: - - type: Transform - pos: 10.5,-9.5 - parent: 17590 - - uid: 18767 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 17590 - - uid: 18768 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 17590 - - uid: 18769 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 17590 - - uid: 18771 - components: - - type: Transform - pos: 19.5,0.5 - parent: 17590 - - uid: 18772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 17590 - - uid: 18773 - components: - - type: Transform - pos: 19.5,2.5 - parent: 17590 - - uid: 18775 - components: - - type: Transform - pos: 32.5,-20.5 - parent: 17590 - - uid: 18776 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 17590 - - uid: 18777 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 17590 - - uid: 18778 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 17590 - - uid: 18779 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 17590 - - uid: 18780 - components: - - type: Transform - pos: 44.5,-8.5 - parent: 17590 - - uid: 18781 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 17590 - - uid: 18782 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 17590 - - uid: 18783 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 17590 - - uid: 18784 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 17590 - - uid: 18785 - components: - - type: Transform - pos: -3.5,-8.5 - parent: 17590 - - uid: 18786 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 17590 - - uid: 18787 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 17590 - - uid: 18788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-20.5 - parent: 17590 - - uid: 18789 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 17590 - - uid: 18790 - components: - - type: Transform - pos: 30.5,15.5 - parent: 17590 - - uid: 18793 - components: - - type: Transform - pos: 36.5,13.5 - parent: 17590 - - uid: 18794 - components: - - type: Transform - pos: 36.5,15.5 - parent: 17590 - - uid: 18795 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 17590 - - uid: 18796 - components: - - type: Transform - pos: 29.5,-2.5 - parent: 17590 - - uid: 18797 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 17590 - - uid: 18798 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 17590 - - uid: 18799 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 17590 - - uid: 18800 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 17590 - - uid: 18801 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 17590 - - uid: 18802 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 17590 - - uid: 18803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-20.5 - parent: 17590 - - uid: 18804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 17590 - - uid: 19439 - components: - - type: Transform - pos: 30.5,8.5 - parent: 17590 - - uid: 19440 - components: - - type: Transform - pos: 36.5,9.5 - parent: 17590 - - uid: 19441 - components: - - type: Transform - pos: 36.5,8.5 - parent: 17590 - - uid: 19531 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 17590 - - uid: 19532 - components: - - type: Transform - pos: 25.5,-11.5 - parent: 17590 - - uid: 19533 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 17590 - - uid: 19857 - components: - - type: Transform - pos: 45.5,17.5 - parent: 19854 - - uid: 19858 - components: - - type: Transform - pos: 45.5,16.5 - parent: 19854 - - uid: 20004 - components: - - type: Transform - pos: 21.5,12.5 - parent: 20000 - - uid: 20005 - components: - - type: Transform - pos: 21.5,11.5 - parent: 20000 -- proto: ShuttleWindowDiagonal - entities: - - uid: 18805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-20.5 - parent: 17590 - - uid: 18806 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 17590 - - uid: 18807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 17590 - - uid: 19855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,18.5 - parent: 19854 - - uid: 19856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,15.5 - parent: 19854 - - uid: 19952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 19951 - - uid: 20002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,10.5 - parent: 20000 - - uid: 20003 - components: - - type: Transform - pos: 21.5,13.5 - parent: 20000 - proto: SignAi entities: - uid: 1166 @@ -106724,15 +101358,32 @@ entities: - Pressed: Toggle 154: - Pressed: Toggle - - uid: 5262 + - uid: 1953 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,24.5 + pos: -40.5,42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 75: + - Pressed: DoorBolt + - uid: 7662 + components: + - type: Transform + pos: -40.5,40.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 172: + - Pressed: DoorBolt + - uid: 7798 + components: + - type: Transform + pos: -40.5,44.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 5192: + 2557: - Pressed: DoorBolt - uid: 7937 components: @@ -106789,29 +101440,18 @@ entities: - Pressed: Trigger - proto: SignalButtonDirectional entities: - - uid: 5679 - components: - - type: Transform - pos: -40.5,40.5 - parent: 2 - - uid: 5680 - components: - - type: Transform - pos: -40.5,42.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5677: - - Pressed: DoorBolt - - uid: 5681 + - uid: 5791 components: + - type: MetaData + desc: Эта тревожная кнопка открывает турель, чтобы правоохранительные органы потеряли интерес к расследованию этого притона. ОДНОРАЗОВАЯ. - type: Transform - pos: -40.5,44.5 + rot: -1.5707963267948966 rad + pos: -42.5,45.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 5678: - - Pressed: DoorBolt + 7036: + - Pressed: Toggle - uid: 8733 components: - type: Transform @@ -106838,46 +101478,87 @@ entities: - Pressed: Toggle 11860: - Pressed: Toggle -- proto: SignalButtonExt1 - entities: - - uid: 2321 + 3185: + - Pressed: Toggle + 13540: + - Pressed: Toggle + 13337: + - Pressed: Toggle + - uid: 17419 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,6.5 + pos: -18.5,10.5 parent: 2 -- proto: SignalControlledValve + - type: DeviceLinkSource + linkedPorts: + 17416: + - Pressed: Toggle + 17417: + - Pressed: Toggle + - uid: 19423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,14.5 + parent: 17641 + - type: DeviceLinkSource + linkedPorts: + 17688: + - Pressed: Toggle + 17687: + - Pressed: Toggle + 17686: + - Pressed: Toggle +- proto: SignalButtonExt1 entities: - - uid: 978 + - uid: 2321 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-8.5 + pos: 40.5,6.5 parent: 2 - - type: GasValve - open: False - proto: SignalTimer entities: - - uid: 6212 + - uid: 7066 components: - - type: MetaData - desc: Часть улья ксеноморфов, которая нужна для... Стоп, как вы это увидели? - name: ??? - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,21.5 + pos: -28.5,46.5 parent: 2 + - type: StationAiWhitelist + enabled: False + - type: SignalTimer + canEditLabel: True + delay: 50000000000 - type: DeviceLinkSource linkedPorts: - 4079: - - Timer: Trigger - 6268: - - Timer: Trigger + 137: + - Timer: DoorBolt + 141: + - Timer: DoorBolt + - type: Stealth + maxVisibility: -10000 + minVisibility: -10000 + lastVisibility: -10000 - type: ActiveSignalTimer + - uid: 17085 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17083: + - Timer: Toggle + 760: + - Timer: DoorBolt + 15543: + - Timer: DoorBolt - type: Stealth - maxVisibility: -100 + maxVisibility: -99 minVisibility: -100 lastVisibility: -100 + - type: ActiveSignalTimer - proto: SignAnomaly entities: - uid: 4853 @@ -106899,11 +101580,6 @@ entities: - type: Transform pos: 30.5,-26.5 parent: 2 - - uid: 18808 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 17590 - proto: SignAtmos entities: - uid: 1959 @@ -106926,11 +101602,6 @@ entities: - type: Transform pos: -47.5,42.5 parent: 2 - - uid: 19534 - components: - - type: Transform - pos: 31.5,-11.5 - parent: 17590 - proto: SignBridge entities: - uid: 14522 @@ -106938,18 +101609,6 @@ entities: - type: Transform pos: 14.5,-13.5 parent: 2 - - uid: 19790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 17590 - - uid: 19791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 17590 - proto: SignCans entities: - uid: 2692 @@ -106979,20 +101638,6 @@ entities: - type: Transform pos: -10.5,18.5 parent: 2 -- proto: SignCloning - entities: - - uid: 4687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,19.5 - parent: 2 - - uid: 18809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-13.5 - parent: 17590 - proto: SignConference entities: - uid: 2553 @@ -107022,67 +101667,12 @@ entities: parent: 2 - proto: SignDangerMed entities: - - uid: 1826 - components: - - type: Transform - pos: -59.5,31.5 - parent: 2 - uid: 5066 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-18.5 parent: 2 - - uid: 7659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,29.5 - parent: 2 - - uid: 7661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,8.7 - parent: 2 - - uid: 7662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,16.5 - parent: 2 - - uid: 7663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,9.5 - parent: 2 - - uid: 7849 - components: - - type: Transform - pos: -69.5,31.5 - parent: 2 - - uid: 7947 - components: - - type: Transform - pos: -24.5,46.5 - parent: 2 - - uid: 7949 - components: - - type: Transform - pos: -15.5,30.5 - parent: 2 - - uid: 7969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-35.3 - parent: 2 - - uid: 12920 - components: - - type: Transform - pos: -15.5,34.5 - parent: 2 - proto: SignDirectionalBar entities: - uid: 13638 @@ -107102,17 +101692,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,10.3 parent: 2 - - uid: 18810 - components: - - type: Transform - pos: 35.5,-2.3 - parent: 17590 - - uid: 19697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-11.7 - parent: 17590 - proto: SignDirectionalBridge entities: - uid: 13730 @@ -107137,12 +101716,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-17.5 parent: 2 - - uid: 18811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-2.7 - parent: 17590 - proto: SignDirectionalBrig entities: - uid: 13971 @@ -107205,17 +101778,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,34.5 parent: 2 - - uid: 18812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-2.7 - parent: 17590 - - uid: 18813 - components: - - type: Transform - pos: 40.5,-11.3 - parent: 17590 - proto: SignDirectionalEng entities: - uid: 13621 @@ -107229,18 +101791,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-14.7 parent: 2 - - uid: 18814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 17590 - - uid: 19696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-11.5 - parent: 17590 - proto: SignDirectionalEvac entities: - uid: 13713 @@ -107261,12 +101811,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,34.7 parent: 2 - - uid: 18817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-2.3 - parent: 17590 - proto: SignDirectionalGravity entities: - uid: 1858 @@ -107350,11 +101894,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,7.5 parent: 2 - - uid: 18822 - components: - - type: Transform - pos: 35.5,-2.5 - parent: 17590 - proto: SignDirectionalSci entities: - uid: 13629 @@ -107405,11 +101944,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,8.3 parent: 2 - - uid: 13947 - components: - - type: Transform - pos: -21.5,7.5 - parent: 2 - uid: 13948 components: - type: Transform @@ -107450,7 +101984,7 @@ entities: - uid: 2235 components: - type: Transform - pos: -17.5,-24.5 + pos: -17.5,-24.3 parent: 2 - uid: 8047 components: @@ -107470,13 +102004,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-22.5 parent: 2 -- proto: SignEngineering - entities: - - uid: 18823 - components: - - type: Transform - pos: 42.5,-2.5 - parent: 17590 - proto: SignEVA entities: - uid: 5041 @@ -107489,11 +102016,6 @@ entities: - type: Transform pos: 21.5,25.5 parent: 16200 - - uid: 18824 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 17590 - proto: SignExamroom entities: - uid: 13765 @@ -107522,6 +102044,11 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 2 + - uid: 15347 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 - uid: 15718 components: - type: Transform @@ -107585,20 +102112,34 @@ entities: parent: 2 - proto: SignMorgue entities: - - uid: 4666 + - uid: 7019 components: - type: Transform - pos: -18.5,23.5 + rot: -1.5707963267948966 rad + pos: -16.5,23.5 parent: 2 - proto: SignNews entities: - - uid: 11531 + - uid: 49 components: - type: Transform - pos: -60.5,36.5 + rot: 3.141592653589793 rad + pos: -64.5,31.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,31.5 parent: 2 - proto: SignNosmoking entities: + - uid: 3630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,40.5 + parent: 2 - uid: 5682 components: - type: Transform @@ -107606,9 +102147,10 @@ entities: parent: 2 - proto: SignPsychology entities: - - uid: 4842 + - uid: 4768 components: - type: Transform + rot: -1.5707963267948966 rad pos: -28.5,14.5 parent: 2 - proto: SignRedFive @@ -107715,12 +102257,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,34.5 parent: 2 - - uid: 13958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,4.5 - parent: 2 - proto: SignSecurity entities: - uid: 13984 @@ -107736,18 +102272,6 @@ entities: - type: Transform pos: -16.5,1.5 parent: 2 -- proto: SignShipDock - entities: - - uid: 19270 - components: - - type: Transform - pos: 35.5,4.5 - parent: 17590 - - uid: 19546 - components: - - type: Transform - pos: 31.5,4.5 - parent: 17590 - proto: SignShock entities: - uid: 2236 @@ -107788,6 +102312,14 @@ entities: - type: Transform pos: 21.5,32.5 parent: 2 +- proto: SignSurgery + entities: + - uid: 664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,11.5 + parent: 2 - proto: SignTelecomms entities: - uid: 6285 @@ -107820,6 +102352,11 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,32.5 parent: 2 + - uid: 19424 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 17641 - proto: SignVault entities: - uid: 1827 @@ -107834,6 +102371,13 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-17.5 parent: 2 +- proto: SignXenobio + entities: + - uid: 4810 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 - proto: Sink entities: - uid: 5643 @@ -107873,8 +102417,19 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-7.5 parent: 2 + - uid: 16125 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 - proto: SinkWide entities: + - uid: 847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,31.5 + parent: 2 - uid: 958 components: - type: Transform @@ -107892,26 +102447,31 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,20.5 parent: 2 - - uid: 4320 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,31.5 - parent: 2 - uid: 9453 components: - type: Transform pos: 10.5,30.5 parent: 2 +- proto: SmallLight + entities: + - uid: 19425 + components: + - type: Transform + pos: 25.5,13.5 + parent: 17641 - proto: SmartFridge entities: - uid: 964 components: + - type: MetaData + name: глупи холодильник - type: Transform pos: -12.5,16.5 parent: 2 - - uid: 4672 + - uid: 4712 components: + - type: MetaData + name: глупи холодильник - type: Transform pos: -16.5,24.5 parent: 2 @@ -107947,6 +102507,31 @@ entities: - 4873 - 4871 - 4875 + - uid: 17689 + components: + - type: MetaData + name: глупи холодильник + - type: Transform + pos: 2.5,1.5 + parent: 17641 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17692 + - 17691 + - 17697 + - 17695 + - 17698 + - 17699 + - 17694 + - 17693 + - 17690 + - 17700 + - 17701 + - 17696 - proto: SMESBasic entities: - uid: 854 @@ -108029,30 +102614,65 @@ entities: - type: Transform pos: -19.5,-40.5 parent: 2 - - uid: 18825 + - uid: 19426 components: - type: Transform - pos: 38.5,-1.5 - parent: 17590 - - uid: 18826 + pos: 23.5,-9.5 + parent: 17641 +- proto: SMESBasicEmpty + entities: + - uid: 19429 components: - type: Transform - pos: 39.5,-1.5 - parent: 17590 - - uid: 18827 + pos: 5.5,-0.5 + parent: 17641 + - uid: 19430 components: - type: Transform - pos: 40.5,-1.5 - parent: 17590 -- proto: SmokingPipeFilledCannabisRainbow + pos: 10.5,-0.5 + parent: 17641 + - uid: 19431 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 17641 + - uid: 19432 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 17641 + - uid: 19433 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 17641 + - uid: 19434 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 17641 + - uid: 19435 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 17641 + - uid: 19458 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 17641 + - uid: 19459 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 17641 +- proto: SMESMachineCircuitboard entities: - - uid: 4830 + - uid: 11389 components: - type: Transform - parent: 4814 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -2.6054692,-23.054718 + parent: 2 - proto: SodaDispenser entities: - uid: 3880 @@ -108061,60 +102681,67 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,18.5 parent: 2 -- proto: SodaDispenserEmpty - entities: - - uid: 19789 + - uid: 4676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 17590 -- proto: SolarAssembly + pos: -45.5,46.5 + parent: 2 +- proto: SolarPanel entities: - - uid: 5956 + - uid: 2062 components: - type: Transform - pos: -15.5,68.5 + pos: -35.5,5.5 parent: 2 - - uid: 5957 + - uid: 2063 components: - type: Transform - pos: -13.5,68.5 + pos: -35.5,4.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: -30.5,68.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: -32.5,68.5 parent: 2 - uid: 5958 components: - type: Transform - pos: -14.5,68.5 + pos: -16.5,68.5 parent: 2 - uid: 5959 components: - type: Transform - pos: -16.5,68.5 + pos: -13.5,68.5 parent: 2 - uid: 5960 components: - type: Transform - pos: -17.5,68.5 + pos: -15.5,68.5 parent: 2 - uid: 5961 components: - type: Transform - pos: -18.5,68.5 + pos: -17.5,68.5 parent: 2 - uid: 5962 components: - type: Transform - pos: -19.5,68.5 + pos: -18.5,68.5 parent: 2 - uid: 5963 components: - type: Transform - pos: -20.5,68.5 + pos: -14.5,68.5 parent: 2 - uid: 5964 components: - type: Transform - pos: -23.5,68.5 + pos: -20.5,68.5 parent: 2 - uid: 5965 components: @@ -108124,172 +102751,108 @@ entities: - uid: 5966 components: - type: Transform - pos: -22.5,68.5 + pos: -23.5,68.5 parent: 2 - uid: 5967 components: - type: Transform - pos: -24.5,68.5 + pos: -22.5,68.5 parent: 2 - uid: 5968 components: - type: Transform - pos: -30.5,68.5 + pos: -19.5,68.5 parent: 2 - uid: 5969 components: - type: Transform - pos: -31.5,68.5 + pos: -24.5,68.5 parent: 2 - uid: 5970 components: - type: Transform - pos: -32.5,68.5 + pos: -34.5,66.5 parent: 2 - uid: 5971 components: - type: Transform - pos: -33.5,68.5 + pos: -30.5,66.5 parent: 2 - uid: 5972 components: - type: Transform - pos: -34.5,68.5 + pos: -31.5,66.5 parent: 2 - uid: 5973 components: - type: Transform - pos: -35.5,68.5 + pos: -33.5,66.5 parent: 2 - uid: 5974 components: - type: Transform - pos: -36.5,68.5 + pos: -32.5,66.5 parent: 2 - uid: 5975 components: - type: Transform - pos: -37.5,68.5 + pos: -36.5,66.5 parent: 2 - uid: 5998 components: - type: Transform - pos: -40.5,68.5 + pos: -40.5,66.5 parent: 2 - uid: 5999 components: - type: Transform - pos: -38.5,68.5 + pos: -35.5,66.5 parent: 2 - uid: 6000 components: - type: Transform - pos: -39.5,68.5 + pos: -37.5,66.5 parent: 2 - uid: 6001 components: - type: Transform - pos: -41.5,68.5 + pos: -38.5,66.5 parent: 2 - uid: 6002 components: - type: Transform - pos: -30.5,66.5 + pos: -33.5,68.5 parent: 2 - uid: 6003 components: - type: Transform - pos: -34.5,66.5 + pos: -36.5,68.5 parent: 2 - uid: 6004 components: - type: Transform - pos: -31.5,66.5 + pos: -34.5,68.5 parent: 2 - uid: 6005 components: - type: Transform - pos: -32.5,66.5 + pos: -31.5,68.5 parent: 2 - uid: 6006 components: - type: Transform - pos: -33.5,66.5 + pos: -35.5,68.5 parent: 2 - uid: 6007 components: - type: Transform - pos: -35.5,66.5 + pos: -37.5,68.5 parent: 2 - uid: 6008 - components: - - type: Transform - pos: -40.5,66.5 - parent: 2 - - uid: 6024 - components: - - type: Transform - pos: -36.5,66.5 - parent: 2 - - uid: 6025 components: - type: Transform pos: -41.5,66.5 parent: 2 - - uid: 6026 - components: - - type: Transform - pos: -39.5,66.5 - parent: 2 - - uid: 6027 - components: - - type: Transform - pos: -38.5,66.5 - parent: 2 - - uid: 6028 - components: - - type: Transform - pos: -37.5,66.5 - parent: 2 -- proto: SolarAssemblyFlatpack - entities: - - uid: 7065 - components: - - type: Transform - parent: 7064 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7066 - components: - - type: Transform - parent: 7064 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7067 - components: - - type: Transform - parent: 7064 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7068 - components: - - type: Transform - parent: 7064 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7069 - components: - - type: Transform - parent: 7064 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SolarPanel - entities: - uid: 6017 components: - type: Transform @@ -108325,6 +102888,31 @@ entities: - type: Transform pos: -19.5,66.5 parent: 2 + - uid: 6024 + components: + - type: Transform + pos: -38.5,68.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: -39.5,66.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + pos: -40.5,68.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + pos: -39.5,68.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: -41.5,68.5 + parent: 2 - uid: 6082 components: - type: Transform @@ -108440,11 +103028,6 @@ entities: - type: Transform pos: -41.5,4.5 parent: 2 - - uid: 7152 - components: - - type: Transform - pos: -41.5,3.5 - parent: 2 - uid: 7153 components: - type: Transform @@ -108720,132 +103303,255 @@ entities: - type: Transform pos: 5.5,-46.5 parent: 2 -- proto: SolarPanelBroken - entities: - - uid: 7117 + - uid: 15657 components: - type: Transform - pos: -43.5,-2.5 + pos: -35.5,6.5 parent: 2 - - uid: 7146 + - uid: 15659 components: - type: Transform - pos: -45.5,5.5 + pos: -37.5,6.5 parent: 2 - - uid: 7148 + - uid: 15660 components: - type: Transform - pos: -43.5,4.5 + pos: -37.5,4.5 parent: 2 - - uid: 7154 + - uid: 15661 + components: + - type: Transform + pos: -37.5,3.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 15665 components: - type: Transform pos: -39.5,3.5 parent: 2 - - uid: 7156 + - uid: 15666 components: - type: Transform - pos: -33.5,5.5 + pos: -39.5,5.5 parent: 2 - - uid: 7159 + - uid: 15667 components: - type: Transform - pos: -35.5,4.5 + pos: -43.5,6.5 parent: 2 - - uid: 7168 + - uid: 15668 components: - type: Transform - pos: -35.5,-2.5 + pos: -43.5,5.5 parent: 2 - - uid: 7171 + - uid: 15669 components: - type: Transform - pos: -37.5,-3.5 + pos: -43.5,4.5 parent: 2 - - uid: 7174 + - uid: 15670 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 15673 components: - type: Transform pos: -39.5,-1.5 parent: 2 - - uid: 7175 + - uid: 15674 components: - type: Transform - pos: -35.5,-0.5 + pos: -39.5,-3.5 parent: 2 - - uid: 7176 + - uid: 15678 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 15680 components: - type: Transform pos: -41.5,-0.5 parent: 2 - - uid: 7179 + - uid: 15690 components: - type: Transform pos: -41.5,-1.5 parent: 2 - - uid: 7421 + - uid: 15691 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 15693 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 15694 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 15777 components: - type: Transform pos: 5.5,-45.5 parent: 2 - - uid: 7423 + - uid: 15787 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 + - uid: 15792 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 15793 components: - type: Transform pos: 5.5,-39.5 parent: 2 - - uid: 7425 + - uid: 15794 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 15862 components: - type: Transform pos: 9.5,-38.5 parent: 2 - - uid: 7442 + - uid: 15863 components: - type: Transform - pos: 17.5,-38.5 + pos: 9.5,-46.5 parent: 2 - - uid: 7454 + - uid: 15864 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 2 + - uid: 15877 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - uid: 15878 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 + - uid: 15879 components: - type: Transform pos: 13.5,-46.5 parent: 2 - - uid: 7456 + - uid: 15883 components: - type: Transform - pos: 7.5,-46.5 + pos: 15.5,-47.5 parent: 2 - - uid: 7459 + - uid: 15884 components: - type: Transform - pos: 11.5,-47.5 + pos: 17.5,-47.5 parent: 2 - - uid: 7464 + - uid: 15886 components: - type: Transform - pos: 7.5,-39.5 + pos: 17.5,-46.5 parent: 2 - - uid: 7467 + - uid: 15887 components: - type: Transform pos: 19.5,-38.5 parent: 2 - - uid: 7469 + - uid: 15888 components: - type: Transform - pos: 5.5,-44.5 + pos: 19.5,-37.5 parent: 2 - - uid: 7470 + - uid: 15889 components: - type: Transform - pos: 9.5,-46.5 + pos: 17.5,-38.5 parent: 2 - - uid: 7471 + - uid: 15890 components: - type: Transform - pos: 13.5,-38.5 + pos: 15.5,-37.5 parent: 2 - - uid: 7472 + - uid: 15891 components: - type: Transform - pos: 17.5,-46.5 + pos: 13.5,-37.5 + parent: 2 + - uid: 15892 + components: + - type: Transform + pos: 13.5,-38.5 parent: 2 - proto: SolarTracker entities: @@ -108861,29 +103567,12 @@ entities: parent: 2 - proto: SolidSecretDoor entities: - - uid: 3042 - components: - - type: MetaData - desc: Удерживает воздух внутри, а ассистентов снаружи. Вы можете здесь найти рычаг. - name: самая обычная стена - - type: Transform - pos: 32.5,-17.5 - parent: 2 - uid: 4024 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,21.5 parent: 2 - - uid: 4606 - components: - - type: MetaData - desc: Удерживает воздух внутри, а ассистентов снаружи. Вы можете здесь найти рычаг. - name: самая обычная стена - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 2 - uid: 4617 components: - type: MetaData @@ -108915,15 +103604,6 @@ entities: - type: Transform pos: 14.5,47.5 parent: 2 - - uid: 10959 - components: - - type: MetaData - desc: Удерживает воздух внутри, а ассистентов снаружи. Вы можете здесь найти рычаг. - name: самая обычная стена - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 2 - proto: SpaceCash100 entities: - uid: 5027 @@ -108966,23 +103646,6 @@ entities: - type: Transform pos: 34.587517,-6.48048 parent: 2 -- proto: SpaceTickSpawner - entities: - - uid: 2346 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 2 - - uid: 7167 - components: - - type: Transform - pos: -46.5,4.5 - parent: 2 - - uid: 7511 - components: - - type: Transform - pos: 18.5,-45.5 - parent: 2 - proto: SpaceVillainArcadeFilled entities: - uid: 392 @@ -108997,6 +103660,20 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,45.5 parent: 2 +- proto: SpawnMobAdultSlimesBlueAngry + entities: + - uid: 20159 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 +- proto: SpawnMobAdultSlimesYellowAngry + entities: + - uid: 20152 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 - proto: SpawnMobAlexander entities: - uid: 205 @@ -109004,36 +103681,42 @@ entities: - type: Transform pos: 22.5,24.5 parent: 2 -- proto: SpawnMobCat +- proto: SpawnMobBear entities: - - uid: 13609 + - uid: 14484 components: - type: Transform - pos: 21.5,21.5 + rot: 3.141592653589793 rad + pos: 58.5,-5.5 parent: 2 -- proto: SpawnMobCatRuntime - entities: - - uid: 4902 + - uid: 16008 components: - type: Transform - pos: -22.5,10.5 + pos: 56.5,-13.5 parent: 2 -- proto: SpawnMobCockroach - entities: - - uid: 15901 + - uid: 16009 components: - type: Transform - pos: -11.5,17.5 + pos: 58.5,-14.5 parent: 2 - - uid: 15902 + - uid: 16080 components: - type: Transform - pos: -11.5,19.5 + pos: 58.5,-10.5 parent: 2 - - uid: 15903 +- proto: SpawnMobCat + entities: + - uid: 13609 components: - type: Transform - pos: -14.5,17.5 + pos: 21.5,21.5 + parent: 2 +- proto: SpawnMobCatRuntime + entities: + - uid: 13708 + components: + - type: Transform + pos: -23.5,8.5 parent: 2 - proto: SpawnMobCorgi entities: @@ -109061,160 +103744,19 @@ entities: - type: Transform pos: -5.5,-22.5 parent: 2 - - uid: 18258 - components: - - type: Transform - pos: 37.5,-12.5 - parent: 17590 - - uid: 18332 - components: - - type: Transform - pos: 45.5,-12.5 - parent: 17590 - - uid: 18729 - components: - - type: Transform - pos: 47.5,-17.5 - parent: 17590 - - uid: 18730 - components: - - type: Transform - pos: 39.5,-17.5 - parent: 17590 - - uid: 19353 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 17590 - - uid: 19707 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 17590 - - uid: 19710 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 17590 - - uid: 19799 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 17590 - - uid: 19801 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 17590 - - uid: 19802 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 17590 - - uid: 19803 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 17590 - - uid: 19804 - components: - - type: Transform - pos: 27.5,-17.5 - parent: 17590 - - uid: 19806 - components: - - type: Transform - pos: 43.5,-7.5 - parent: 17590 - - uid: 19809 - components: - - type: Transform - pos: 28.5,2.5 - parent: 17590 - - uid: 19810 - components: - - type: Transform - pos: 26.5,2.5 - parent: 17590 - - uid: 19811 - components: - - type: Transform - pos: 24.5,2.5 - parent: 17590 - - uid: 19812 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 17590 - - uid: 19814 - components: - - type: Transform - pos: 29.5,-0.5 - parent: 17590 - - uid: 19815 - components: - - type: Transform - pos: 29.5,-6.5 - parent: 17590 - - uid: 19816 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 17590 - - uid: 19817 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 17590 - - uid: 19818 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 17590 - - uid: 19819 - components: - - type: Transform - pos: 21.5,-10.5 - parent: 17590 - - uid: 19820 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 17590 - - uid: 19821 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 17590 - - uid: 19822 - components: - - type: Transform - pos: 16.5,-2.5 - parent: 17590 - - uid: 19823 - components: - - type: Transform - pos: 16.5,-1.5 - parent: 17590 - - uid: 20105 + - uid: 11752 components: - type: Transform - pos: 41.5,-6.5 - parent: 17590 + rot: 1.5707963267948966 rad + pos: -25.5,30.5 + parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 12892 + - uid: 20215 components: - type: Transform - pos: 32.5,-7.5 + pos: 31.5,-7.5 parent: 2 -- proto: SpawnMobMedibot - entities: - - uid: 18829 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 17590 - proto: SpawnMobMouse entities: - uid: 3871 @@ -109222,35 +103764,22 @@ entities: - type: Transform pos: 19.5,18.5 parent: 2 - - uid: 8720 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 2 - - uid: 9626 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 2 - uid: 9741 components: - type: Transform pos: 27.5,-42.5 parent: 2 - - uid: 17008 - components: - - type: Transform - pos: -43.5,43.5 - parent: 2 - - uid: 17009 +- proto: SpawnMobPenguin + entities: + - uid: 3229 components: - type: Transform - pos: -43.5,32.5 + pos: 57.5,-16.5 parent: 2 - - uid: 17010 + - uid: 7414 components: - type: Transform - pos: 1.5,11.5 + pos: 58.5,-17.5 parent: 2 - proto: SpawnMobShiva entities: @@ -109273,11 +103802,6 @@ entities: - type: Transform pos: -3.5,50.5 parent: 2 - - uid: 17240 - components: - - type: Transform - pos: -17.5,54.5 - parent: 2 - proto: SpawnMobSyndicateFootsoldierPilot entities: - uid: 16935 @@ -109285,11 +103809,6 @@ entities: - type: Transform pos: 12.5,20.5 parent: 16675 - - uid: 19905 - components: - - type: Transform - pos: 44.5,17.5 - parent: 19854 - proto: SpawnPointAtmos entities: - uid: 12418 @@ -109321,15 +103840,15 @@ entities: parent: 2 - proto: SpawnPointBorg entities: - - uid: 6723 + - uid: 4950 components: - type: Transform - pos: -35.5,42.5 + pos: -40.5,39.5 parent: 2 - - uid: 15699 + - uid: 6723 components: - type: Transform - pos: -40.5,39.5 + pos: -35.5,42.5 parent: 2 - uid: 17476 components: @@ -109442,10 +103961,10 @@ entities: parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 12384 + - uid: 17420 components: - type: Transform - pos: -23.5,8.5 + pos: -23.5,9.5 parent: 2 - proto: SpawnPointClown entities: @@ -109482,21 +104001,11 @@ entities: - type: Transform pos: 3.5,33.5 parent: 2 - - uid: 12394 - components: - - type: Transform - pos: 1.5,33.5 - parent: 2 - uid: 17042 components: - type: Transform pos: 3.5,34.5 parent: 2 - - uid: 17043 - components: - - type: Transform - pos: 3.5,31.5 - parent: 2 - proto: SpawnPointLawyer entities: - uid: 12350 @@ -109548,11 +104057,6 @@ entities: - type: Transform pos: -25.5,17.5 parent: 2 - - uid: 12375 - components: - - type: Transform - pos: -17.5,21.5 - parent: 2 - uid: 12376 components: - type: Transform @@ -109560,21 +104064,6 @@ entities: parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 12362 - components: - - type: Transform - pos: -11.5,11.5 - parent: 2 - - uid: 12370 - components: - - type: Transform - pos: -13.5,11.5 - parent: 2 - - uid: 12371 - components: - - type: Transform - pos: -16.5,11.5 - parent: 2 - uid: 12372 components: - type: Transform @@ -109608,18 +104097,13 @@ entities: parent: 2 - proto: SpawnPointParamedic entities: - - uid: 12385 + - uid: 20244 components: - type: Transform - pos: -27.5,10.5 + pos: -20.5,21.5 parent: 2 - proto: SpawnPointPassenger entities: - - uid: 7803 - components: - - type: Transform - pos: -33.5,25.5 - parent: 2 - uid: 7806 components: - type: Transform @@ -109635,6 +104119,11 @@ entities: - type: Transform pos: -35.5,16.5 parent: 2 + - uid: 9747 + components: + - type: Transform + pos: -40.5,41.5 + parent: 2 - uid: 12344 components: - type: Transform @@ -109665,6 +104154,11 @@ entities: - type: Transform pos: 4.5,-19.5 parent: 2 + - uid: 12375 + components: + - type: Transform + pos: -40.5,43.5 + parent: 2 - uid: 12458 components: - type: Transform @@ -109675,26 +104169,6 @@ entities: - type: Transform pos: 6.5,36.5 parent: 2 - - uid: 12465 - components: - - type: Transform - pos: -14.5,38.5 - parent: 2 - - uid: 12469 - components: - - type: Transform - pos: -9.5,38.5 - parent: 2 - - uid: 12471 - components: - - type: Transform - pos: -9.5,36.5 - parent: 2 - - uid: 12473 - components: - - type: Transform - pos: -12.5,36.5 - parent: 2 - uid: 12476 components: - type: Transform @@ -109715,11 +104189,6 @@ entities: - type: Transform pos: -31.5,39.5 parent: 2 - - uid: 12485 - components: - - type: Transform - pos: -40.5,43.5 - parent: 2 - proto: SpawnPointPsychologist entities: - uid: 12383 @@ -109736,10 +104205,15 @@ entities: parent: 2 - proto: SpawnPointReporter entities: - - uid: 7768 + - uid: 20245 components: - type: Transform - pos: -63.5,36.5 + pos: -63.5,37.5 + parent: 2 + - uid: 20246 + components: + - type: Transform + pos: -64.5,35.5 parent: 2 - proto: SpawnPointResearchAssistant entities: @@ -109883,6 +104357,11 @@ entities: parent: 2 - proto: SpawnPointSecurityOfficer entities: + - uid: 6689 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 - uid: 11822 components: - type: Transform @@ -110003,11 +104482,6 @@ entities: parent: 2 - proto: SpiderWeb entities: - - uid: 5697 - components: - - type: Transform - pos: -17.5,52.5 - parent: 2 - uid: 11611 components: - type: Transform @@ -110025,331 +104499,219 @@ entities: rot: 3.141592653589793 rad pos: -2.5,47.5 parent: 2 - - uid: 17208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,55.5 - parent: 2 - - uid: 17209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,55.5 - parent: 2 - - uid: 17210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,54.5 - parent: 2 - - uid: 17211 +- proto: SprayBottle + entities: + - uid: 20127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,53.5 - parent: 2 - - uid: 17212 + rot: -1.5707963267948966 rad + pos: 10.4609375,8.419678 + parent: 17641 + - uid: 20128 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,54.5 - parent: 2 - - uid: 17213 + pos: 1.6875,3.446289 + parent: 17641 + - uid: 20129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,54.5 - parent: 2 - - uid: 17214 + pos: 2.5317383,0.43078613 + parent: 17641 + - uid: 20130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,55.5 - parent: 2 - - uid: 17215 + rot: -1.5707963267948966 rad + pos: -2.347168,-1.2147217 + parent: 17641 + - uid: 20131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,53.5 - parent: 2 - - uid: 17216 + rot: -1.5707963267948966 rad + pos: -0.8666992,-4.841919 + parent: 17641 + - uid: 20132 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,52.5 - parent: 2 - - uid: 17217 + pos: 11.336914,-4.9038086 + parent: 17641 + - uid: 20133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,51.5 - parent: 2 - - uid: 17218 + rot: -1.5707963267948966 rad + pos: 17.42041,-3.6047363 + parent: 17641 + - uid: 20134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,51.5 - parent: 2 - - uid: 17219 + rot: -1.5707963267948966 rad + pos: 21.334717,-0.18225098 + parent: 17641 + - uid: 20135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,50.5 - parent: 2 - - uid: 17220 + pos: 2.7282715,0.6170654 + parent: 17641 + - uid: 20138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,50.5 - parent: 2 - - uid: 17221 + pos: 2.4624023,0.7109375 + parent: 17641 + - uid: 20153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,49.5 - parent: 2 - - uid: 17222 + pos: 2.2749023,0.5234375 + parent: 17641 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 4975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,51.5 + pos: 2.5061448,34.43871 parent: 2 - - uid: 17223 + - uid: 4976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,52.5 + pos: 2.3342698,34.56371 parent: 2 - - uid: 17224 + - uid: 17365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,52.5 - parent: 2 - - uid: 17225 + parent: 16949 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,50.5 - parent: 2 - - uid: 17226 + parent: 16949 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,50.5 - parent: 2 - - uid: 17227 + parent: 16949 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,50.5 - parent: 2 - - uid: 17228 + pos: 25.719154,13.538735 + parent: 17641 + - uid: 19437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,50.5 - parent: 2 - - uid: 17229 + pos: 25.540777,13.641589 + parent: 17641 + - uid: 19438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,48.5 - parent: 2 - - uid: 17230 + pos: 25.406654,13.58561 + parent: 17641 +- proto: SprayPainter + entities: + - uid: 8726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,48.5 + pos: -45.49882,38.189995 parent: 2 - - uid: 17231 +- proto: StairDark + entities: + - uid: 19439 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,49.5 - parent: 2 - - uid: 17232 + pos: 4.5,-4.5 + parent: 17641 + - uid: 19440 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,50.5 - parent: 2 - - uid: 17233 + pos: 6.5,-4.5 + parent: 17641 + - uid: 19441 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,51.5 - parent: 2 - - uid: 17234 + pos: 7.5,-4.5 + parent: 17641 + - uid: 19442 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,51.5 - parent: 2 - - uid: 17235 + pos: 8.5,-4.5 + parent: 17641 + - uid: 19443 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,48.5 - parent: 2 - - uid: 17236 + pos: 5.5,-4.5 + parent: 17641 + - uid: 19444 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,48.5 - parent: 2 - - uid: 17237 + pos: 9.5,-4.5 + parent: 17641 + - uid: 19445 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,47.5 - parent: 2 - - uid: 17255 - components: - - type: Transform - pos: -16.5,53.5 - parent: 2 - - uid: 17256 - components: - - type: Transform - pos: -18.5,53.5 - parent: 2 - - uid: 17257 - components: - - type: Transform - pos: -18.5,54.5 - parent: 2 - - uid: 17258 - components: - - type: Transform - pos: -18.5,55.5 - parent: 2 - - uid: 17259 - components: - - type: Transform - pos: -16.5,56.5 - parent: 2 - - uid: 17260 - components: - - type: Transform - pos: -16.5,56.5 - parent: 2 - - uid: 17261 - components: - - type: Transform - pos: -17.5,56.5 - parent: 2 - - uid: 17262 - components: - - type: Transform - pos: -15.5,55.5 - parent: 2 - - uid: 17263 - components: - - type: Transform - pos: -14.5,54.5 - parent: 2 - - uid: 17264 - components: - - type: Transform - pos: -14.5,53.5 - parent: 2 - - uid: 17265 + pos: 10.5,-4.5 + parent: 17641 + - uid: 19446 components: - type: Transform - pos: -14.5,53.5 - parent: 2 - - uid: 17266 + pos: 25.5,6.5 + parent: 17641 + - uid: 19447 components: - type: Transform - pos: -15.5,52.5 - parent: 2 - - uid: 17267 + pos: 25.5,4.5 + parent: 17641 + - uid: 19448 components: - type: Transform - pos: -12.5,51.5 - parent: 2 - - uid: 17268 + pos: 25.5,3.5 + parent: 17641 + - uid: 19449 components: - type: Transform - pos: -16.5,49.5 - parent: 2 - - uid: 17269 + pos: 25.5,2.5 + parent: 17641 + - uid: 19450 components: - type: Transform - pos: -16.5,49.5 - parent: 2 - - uid: 17270 + pos: 25.5,5.5 + parent: 17641 + - uid: 19451 components: - type: Transform - pos: -15.5,50.5 - parent: 2 - - uid: 17271 + pos: 25.5,1.5 + parent: 17641 + - uid: 19452 components: - type: Transform - pos: -15.5,51.5 - parent: 2 -- proto: Spoon + pos: 25.5,0.5 + parent: 17641 +- proto: StairWood entities: - - uid: 6766 + - uid: 19453 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.76139,43.49675 - parent: 2 - - uid: 18830 - components: - - type: Transform - pos: 23.405962,0.968483 - parent: 17590 - - uid: 18831 - components: - - type: Transform - pos: 21.550266,0.82209015 - parent: 17590 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 4975 - components: - - type: Transform - pos: 2.5061448,34.43871 - parent: 2 - - uid: 4976 - components: - - type: Transform - pos: 2.3342698,34.56371 - parent: 2 - - uid: 17365 - components: - - type: Transform - parent: 16949 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17366 - components: - - type: Transform - parent: 16949 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17369 - components: - - type: Transform - parent: 16949 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SprayPainter + pos: 0.5,1.5 + parent: 17641 +- proto: StasisBed entities: - - uid: 8726 + - uid: 3464 components: - type: Transform - pos: -45.49882,38.189995 + pos: -21.5,10.5 parent: 2 -- proto: StasisBed - entities: - uid: 4431 components: - type: Transform @@ -110360,11 +104722,6 @@ entities: - type: Transform pos: 28.5,12.5 parent: 16200 - - uid: 18832 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 17590 - proto: StationAiUploadComputer entities: - uid: 15778 @@ -110403,12 +104760,27 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,11.5 parent: 2 + - uid: 5261 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 - uid: 5751 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,4.5 parent: 2 + - uid: 6570 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + pos: -73.5,31.5 + parent: 2 - uid: 7860 components: - type: Transform @@ -110435,59 +104807,24 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,0.5 parent: 2 - - uid: 18833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-2.5 - parent: 17590 -- proto: StationMapBroken - entities: - - uid: 789 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 2 - - uid: 1688 - components: - - type: Transform - pos: -73.5,31.5 - parent: 2 - - uid: 16105 - components: - - type: Transform - pos: 10.5,10.5 - parent: 2 -- proto: StatueVenusBlue - entities: - - uid: 19422 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 17590 -- proto: StatueVenusRed - entities: - - uid: 19425 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 17590 - proto: StealthBox entities: - uid: 1540 components: - type: Transform - pos: 24.843256,25.376377 + pos: 25.5,25.5 parent: 2 - type: Stealth - lastVisibility: 1.5 + lastVisibility: -1 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 15777 + - 6600 + - 4120 + - 4118 - uid: 19929 components: - type: Transform @@ -110849,14 +105186,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-10.5 parent: 2 - - uid: 3609 - components: - - type: MetaData - name: табурет смотрителя - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 - parent: 2 - uid: 4046 components: - type: Transform @@ -110965,17 +105294,17 @@ entities: - type: Transform pos: -30.5,10.5 parent: 2 - - uid: 6126 + - uid: 6054 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,43.5 + rot: -1.5707963267948966 rad + pos: -45.5,43.5 parent: 2 - - uid: 7778 + - uid: 6126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,44.5 + rot: 3.141592653589793 rad + pos: -46.5,43.5 parent: 2 - uid: 7779 components: @@ -110983,77 +105312,8 @@ entities: rot: 3.141592653589793 rad pos: -44.5,43.5 parent: 2 - - uid: 18834 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 17590 - - uid: 18835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-15.5 - parent: 17590 - - uid: 18836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-18.5 - parent: 17590 - - uid: 18837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-19.5 - parent: 17590 - - uid: 18838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-17.5 - parent: 17590 - - uid: 18839 - components: - - type: Transform - rot: -3.141592653589793 rad - pos: 31.5,-17.5 - parent: 17590 - - uid: 18843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-17.5 - parent: 17590 - - uid: 18844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-19.5 - parent: 17590 - - uid: 18845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 17590 - - uid: 18846 - components: - - type: Transform - pos: 28.5,-14.5 - parent: 17590 - - uid: 19805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 17590 - proto: StorageCanister entities: - - uid: 1250 - components: - - type: Transform - pos: -57.5,41.5 - parent: 2 - uid: 1304 components: - type: Transform @@ -111084,11 +105344,6 @@ entities: - type: Transform pos: 28.5,-43.5 parent: 2 - - uid: 10975 - components: - - type: Transform - pos: -71.5,33.5 - parent: 2 - uid: 12334 components: - type: Transform @@ -111099,41 +105354,54 @@ entities: - type: Transform pos: 39.5,-41.5 parent: 2 - - uid: 17054 - components: - - type: Transform - pos: 9.5,46.5 - parent: 2 - uid: 17080 components: - type: Transform pos: 5.5,29.5 parent: 2 - - uid: 17084 + - uid: 17543 components: - type: Transform - pos: 23.5,18.5 + pos: 34.5,20.5 parent: 2 - - uid: 17113 + - uid: 18307 components: - type: Transform - pos: -60.5,32.5 + pos: 34.5,19.5 parent: 2 - - uid: 17121 +- proto: StrangePill + entities: + - uid: 15930 components: - type: Transform - pos: -16.5,28.5 + pos: -21.483925,20.77933 parent: 2 - - uid: 17543 + - uid: 15936 components: - type: Transform - pos: 34.5,20.5 + pos: -21.483925,20.669954 parent: 2 - - uid: 18307 + - uid: 15937 components: - type: Transform - pos: 34.5,19.5 + pos: -21.49955,20.52933 parent: 2 + - uid: 19454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.004459,3.590995 + parent: 17641 + - uid: 19455 + components: + - type: Transform + pos: 13.645084,3.35662 + parent: 17641 + - uid: 19456 + components: + - type: Transform + pos: 13.895084,3.590995 + parent: 17641 - proto: Stunbaton entities: - uid: 904 @@ -111146,13 +105414,6 @@ entities: - type: Transform pos: 30.460676,-7.4003963 parent: 2 - - uid: 1251 - components: - - type: Transform - parent: 5029 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 16854 components: - type: Transform @@ -111163,6 +105424,16 @@ entities: - type: Transform pos: 25.35913,17.51538 parent: 16200 + - uid: 17170 + components: + - type: Transform + pos: 28.552576,-22.987513 + parent: 2 + - uid: 17171 + components: + - type: Transform + pos: 28.552576,-23.112513 + parent: 2 - uid: 19925 components: - type: Transform @@ -111263,47 +105534,43 @@ entities: - type: Transform pos: 8.5,15.5 parent: 16675 - - uid: 18847 - components: - - type: Transform - pos: 42.5,-20.5 - parent: 17590 - - uid: 18848 + - uid: 19457 components: - type: Transform - pos: 14.5,-1.5 - parent: 17590 - - uid: 18849 + pos: 9.5,11.5 + parent: 17641 + - uid: 19460 components: - type: Transform - pos: 42.5,-1.5 - parent: 17590 -- proto: SubstationWallBasic + pos: 15.5,-9.5 + parent: 17641 +- proto: SubstationBasicEmpty entities: - - uid: 6226 + - uid: 19427 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,65.5 - parent: 2 - - uid: 19882 + pos: 21.5,-9.5 + parent: 17641 + - uid: 19428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,15.5 - parent: 19854 - - uid: 19977 + pos: 19.5,-9.5 + parent: 17641 +- proto: SubstationMachineCircuitboard + entities: + - uid: 11531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,15.5 - parent: 19951 - - uid: 20028 + pos: -2.6124134,-23.203396 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 6226 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,10.5 - parent: 20000 + pos: -28.5,65.5 + parent: 2 - proto: SuitStorageAtmos entities: - uid: 1771 @@ -111318,79 +105585,35 @@ entities: parent: 2 - proto: SuitStorageBase entities: - - uid: 3701 + - uid: 3137 components: + - type: MetaData + desc: Необычное высокотехнологичное хранилище, предназначенное для хранения космических скафандров. Если они у вас будут! ХА! - type: Transform - pos: 29.5,12.5 + pos: 39.5,-5.5 parent: 2 - - uid: 18284 +- proto: SuitStorageBasic + entities: + - uid: 5264 components: - type: Transform - pos: 8.5,-10.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18293 - - 18292 - - 18286 - - 18285 - - uid: 18692 + pos: -51.5,35.5 + parent: 2 + - uid: 7965 components: - type: Transform - pos: 10.5,-10.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18698 - - 18695 - - 18694 - - 18693 -- proto: SuitStorageBasic - entities: + pos: -50.5,35.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + pos: -52.5,35.5 + parent: 2 + - uid: 8140 + components: + - type: Transform + pos: -53.5,35.5 + parent: 2 - uid: 16452 components: - type: Transform @@ -111411,29 +105634,6 @@ entities: - type: Transform pos: 23.5,24.5 parent: 16200 - - uid: 18682 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: SuitStorageCaptain entities: - uid: 3707 @@ -111450,10 +105650,10 @@ entities: parent: 2 - proto: SuitStorageCMO entities: - - uid: 4406 + - uid: 13714 components: - type: Transform - pos: -22.5,11.5 + pos: -25.5,10.5 parent: 2 - proto: SuitStorageEngi entities: @@ -111472,39 +105672,31 @@ entities: - type: Transform pos: -23.5,-36.5 parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 3292 - components: - - type: Transform - pos: 37.5,-26.5 - parent: 2 -- proto: SuitStorageNTSRA +- proto: SuitStorageEVA entities: - - uid: 5259 - components: - - type: Transform - pos: -51.5,35.5 - parent: 2 - - uid: 5260 + - uid: 19461 components: - type: Transform - pos: -52.5,35.5 - parent: 2 - - uid: 5261 + pos: 7.5,11.5 + parent: 17641 + - uid: 19462 components: - type: Transform - pos: -53.5,35.5 - parent: 2 - - uid: 5264 + pos: 17.5,-9.5 + parent: 17641 +- proto: SuitStorageEVASyndicate + entities: + - uid: 3159 components: - type: Transform - pos: -50.5,35.5 + pos: -66.5,35.5 parent: 2 - - uid: 5265 +- proto: SuitStorageHOS + entities: + - uid: 3292 components: - type: Transform - pos: 29.5,13.5 + pos: 37.5,-26.5 parent: 2 - proto: SuitStorageRD entities: @@ -111520,6 +105712,16 @@ entities: - type: Transform pos: 29.5,14.5 parent: 2 + - uid: 3701 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 - proto: SuitStorageSec entities: - uid: 3381 @@ -111576,27 +105778,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Специальное - Ядро ИИ - - uid: 16111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Главы - Кабинет СИ - - uid: 16127 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Главы - Кабинет НР - uid: 16128 components: - type: Transform @@ -111649,16 +105830,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Главы - Кабинет АВД - - uid: 16168 - components: - - type: Transform - pos: -23.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Главы - Кабинет ГВ - uid: 16244 components: - type: Transform @@ -111712,28 +105883,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Мостик - Вход - - uid: 16971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Главы - Кабинет ГСБ - - uid: 16989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-6.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Главы - Кабинет КМ - proto: SurveillanceCameraConstructed entities: - uid: 8303 @@ -111988,16 +106137,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общие - Столовая, С/З - - uid: 16143 - components: - - type: Transform - pos: -6.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Общие - Коридор - uid: 16144 components: - type: Transform @@ -112117,17 +106256,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общие - Жилые помещения №1 - - uid: 16156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,26.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Общие - Жилые помещения №3 - uid: 16157 components: - type: Transform @@ -112238,59 +106366,44 @@ entities: id: Общие - Коридор - proto: SurveillanceCameraMedical entities: - - uid: 10931 + - uid: 1124 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,15.5 + pos: -32.5,13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Общие - Мед. осмотр - - uid: 16165 + - uid: 1210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,18.5 + pos: -32.5,15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Криокапсулы - - uid: 16166 + - uid: 6699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,14.5 + pos: -20.5,20.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Общие - Коридор - - uid: 16167 + id: Парамедик + - uid: 10931 components: - type: Transform - pos: -27.5,9.5 + rot: 3.141592653589793 rad + pos: -9.5,15.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Каморка парамедика - - uid: 16169 + id: Общие - Мед. осмотр + - uid: 13683 components: - type: Transform - pos: -14.5,10.5 + rot: -1.5707963267948966 rad + pos: -21.5,7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Общие - Палаты - uid: 16170 components: - type: Transform @@ -112313,28 +106426,6 @@ entities: - SurveillanceCameraMedical nameSet: True id: Химическая лаборатория - - uid: 16173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Общие - Коридор - - uid: 16174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Кабинет психолога - uid: 16175 components: - type: Transform @@ -112357,16 +106448,6 @@ entities: - SurveillanceCameraMedical nameSet: True id: МОРГ - - uid: 16990 - components: - - type: Transform - pos: -18.5,20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Отсек клонирования - proto: SurveillanceCameraMonitorCircuitboard entities: - uid: 2050 @@ -112483,16 +106564,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Лаборатория аномалий - - uid: 16125 - components: - - type: Transform - pos: -12.5,0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Серверная - uid: 16126 components: - type: Transform @@ -112824,16 +106895,6 @@ entities: - SurveillanceCameraService nameSet: True id: Церковь - Крематорий - - uid: 16991 - components: - - type: Transform - pos: -45.5,43.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Пищеблок - Бар (?) - proto: SurveillanceCameraSupply entities: - uid: 10791 @@ -112928,75 +106989,75 @@ entities: - type: Transform pos: -37.5,-24.5 parent: 2 + - uid: 19463 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 17641 - proto: SurveillanceWirelessCameraAnchoredConstructed entities: - - uid: 5268 + - uid: 3281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,35.5 + rot: 3.141592653589793 rad + pos: -64.5,32.5 parent: 2 + - uid: 19464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 17641 - type: DeviceNetwork - address: 2E89-4503 + address: 0795-DCFD receiveFrequency: 1939 - type: SurveillanceCamera networkSet: True nameSet: True - id: '[ДАННЫЙ КАНАЛ СВЯЗИ СОЗДАН И/ИЛИ РАСПРОСТРАНЁН АГЕНТОМ ВРАЖЕСКОЙ КОРПОРАЦИИ И/ИЛИ ВЫПОЛНЯЮЩИМ ЕГО ФУНКЦИИ]' -- proto: SurveillanceWirelessCameraMovableConstructed + id: NT-Развлечения +- proto: SurveillanceWirelessCameraAnchoredEntertainment entities: - - uid: 5271 + - uid: 357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,37.5 + rot: -1.5707963267948966 rad + pos: -22.5,30.5 parent: 2 - - type: DeviceNetwork - address: 4647-A800 - receiveFrequency: 1939 - type: SurveillanceCamera - networkSet: True + setupAvailableNetworks: + - SurveillanceCameraEntertainment nameSet: True - id: '[ДАННЫЙ КАНАЛ СВЯЗИ СОЗДАН И/ИЛИ РАСПРОСТРАНЁН АГЕНТОМ ВРАЖЕСКОЙ КОРПОРАЦИИ И/ИЛИ ВЫПОЛНЯЮЩИМ ЕГО ФУНКЦИИ]' -- proto: SyndicateComputerComms + id: ГОЛОСУЙТЕ ЗА WEH +- proto: SurveillanceWirelessCameraMovableConstructed entities: - - uid: 16861 + - uid: 455 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,23.5 - parent: 16675 -- proto: SyndicateMicrowave - entities: - - uid: 3589 - components: - - type: Transform - pos: 53.5,-12.5 + pos: -61.5,34.5 parent: 2 -- proto: Syringe - entities: - - uid: 6763 + - uid: 2045 components: - type: Transform - pos: -41.215805,43.503044 + rot: -1.5707963267948966 rad + pos: -61.5,32.5 parent: 2 - - uid: 6764 + - uid: 3296 components: - type: Transform - pos: -40.653305,39.493744 + rot: -1.5707963267948966 rad + pos: -61.5,33.5 parent: 2 - - uid: 8141 +- proto: SyndicateComputerComms + entities: + - uid: 16861 components: - type: Transform - pos: 46.4702,-6.3646364 - parent: 2 + rot: -1.5707963267948966 rad + pos: 8.5,23.5 + parent: 16675 - proto: Table entities: - - uid: 338 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 2 - uid: 383 components: - type: Transform @@ -113028,20 +107089,32 @@ entities: - type: Transform pos: -10.5,-7.5 parent: 2 - - uid: 1033 + - uid: 1325 components: - type: Transform - pos: -11.5,19.5 + rot: 1.5707963267948966 rad + pos: 12.5,20.5 parent: 2 - - uid: 1124 + - uid: 1329 components: - type: Transform - pos: 36.5,-4.5 + rot: 1.5707963267948966 rad + pos: 9.5,20.5 parent: 2 - - uid: 1280 + - uid: 1720 components: - type: Transform - pos: -14.5,20.5 + pos: -13.5,15.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: -45.5,46.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: -26.5,-13.5 parent: 2 - uid: 1999 components: @@ -113109,6 +107182,16 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-4.5 parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 - uid: 2485 components: - type: Transform @@ -113161,11 +107244,22 @@ entities: - type: Transform pos: 28.5,1.5 parent: 2 + - uid: 2538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-13.5 + parent: 2 - uid: 2551 components: - type: Transform pos: -25.5,-12.5 parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 - uid: 2563 components: - type: Transform @@ -113206,6 +107300,11 @@ entities: - type: Transform pos: 0.5,36.5 parent: 2 + - uid: 3101 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 - uid: 3131 components: - type: Transform @@ -113236,6 +107335,11 @@ entities: - type: Transform pos: 30.5,-7.5 parent: 2 + - uid: 3299 + components: + - type: Transform + pos: -70.5,36.5 + parent: 2 - uid: 3367 components: - type: Transform @@ -113281,6 +107385,11 @@ entities: - type: Transform pos: 30.5,-10.5 parent: 2 + - uid: 3689 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 - uid: 3702 components: - type: Transform @@ -113362,11 +107471,6 @@ entities: - type: Transform pos: 16.5,21.5 parent: 2 - - uid: 3898 - components: - - type: Transform - pos: 20.5,26.5 - parent: 2 - uid: 3899 components: - type: Transform @@ -113434,18 +107538,6 @@ entities: - type: Transform pos: 3.5,14.5 parent: 2 - - uid: 4135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 2 - - uid: 4142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 2 - uid: 4275 components: - type: Transform @@ -113456,46 +107548,6 @@ entities: - type: Transform pos: -13.5,46.5 parent: 2 - - uid: 4292 - components: - - type: Transform - pos: -13.5,41.5 - parent: 2 - - uid: 4293 - components: - - type: Transform - pos: -14.5,41.5 - parent: 2 - - uid: 4295 - components: - - type: Transform - pos: -8.5,41.5 - parent: 2 - - uid: 4297 - components: - - type: Transform - pos: -9.5,41.5 - parent: 2 - - uid: 4298 - components: - - type: Transform - pos: -14.5,35.5 - parent: 2 - - uid: 4299 - components: - - type: Transform - pos: -13.5,35.5 - parent: 2 - - uid: 4300 - components: - - type: Transform - pos: -8.5,35.5 - parent: 2 - - uid: 4301 - components: - - type: Transform - pos: -9.5,35.5 - parent: 2 - uid: 4329 components: - type: Transform @@ -113521,56 +107573,43 @@ entities: - type: Transform pos: -9.5,11.5 parent: 2 - - uid: 4428 - components: - - type: Transform - pos: -14.5,10.5 - parent: 2 - - uid: 4430 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - uid: 4452 components: - type: Transform pos: -17.5,15.5 parent: 2 - - uid: 4454 - components: - - type: Transform - pos: -12.5,10.5 - parent: 2 - - uid: 4455 + - uid: 4463 components: - type: Transform - pos: -16.5,10.5 + rot: 1.5707963267948966 rad + pos: -16.5,15.5 parent: 2 - - uid: 4462 + - uid: 4481 components: - type: Transform - pos: -13.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,20.5 parent: 2 - - uid: 4463 + - uid: 4490 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,15.5 + pos: 8.5,20.5 parent: 2 - uid: 4605 components: - type: Transform pos: -11.5,20.5 parent: 2 - - uid: 4607 + - uid: 4606 components: - type: Transform - pos: -15.5,20.5 + pos: -26.5,-12.5 parent: 2 - - uid: 4614 + - uid: 4607 components: - type: Transform - pos: -11.5,18.5 + pos: -15.5,20.5 parent: 2 - uid: 4629 components: @@ -113603,21 +107642,31 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,13.5 parent: 2 - - uid: 4670 + - uid: 4677 components: - type: Transform - pos: -16.5,26.5 + pos: -13.5,11.5 parent: 2 - - uid: 4671 + - uid: 4678 components: - type: Transform - pos: -16.5,25.5 + pos: 17.5,12.5 parent: 2 - - uid: 4690 + - uid: 4700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,21.5 + rot: -1.5707963267948966 rad + pos: -20.5,20.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: -16.5,10.5 parent: 2 - uid: 4746 components: @@ -113629,10 +107678,10 @@ entities: - type: Transform pos: -23.5,18.5 parent: 2 - - uid: 4786 + - uid: 4779 components: - type: Transform - pos: -26.5,9.5 + pos: -16.5,25.5 parent: 2 - uid: 4854 components: @@ -113652,12 +107701,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,16.5 parent: 2 - - uid: 4857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,16.5 - parent: 2 - uid: 4858 components: - type: Transform @@ -113689,35 +107732,6 @@ entities: - type: Transform pos: 3.5,43.5 parent: 2 - - uid: 4892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,8.5 - parent: 2 - - uid: 4895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,7.5 - parent: 2 - - uid: 4896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,9.5 - parent: 2 - - uid: 4898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 2 - - uid: 4959 - components: - - type: Transform - pos: -25.5,30.5 - parent: 2 - uid: 4965 components: - type: Transform @@ -113748,15 +107762,11 @@ entities: - type: Transform pos: 13.5,37.5 parent: 2 - - uid: 5238 - components: - - type: Transform - pos: -25.5,24.5 - parent: 2 - - uid: 5242 + - uid: 5237 components: - type: Transform - pos: -31.5,24.5 + rot: -1.5707963267948966 rad + pos: -21.5,20.5 parent: 2 - uid: 5243 components: @@ -113773,25 +107783,26 @@ entities: - type: Transform pos: -34.5,24.5 parent: 2 - - uid: 5281 + - uid: 5262 components: - type: Transform - pos: -31.5,25.5 + rot: 1.5707963267948966 rad + pos: -11.5,18.5 parent: 2 - uid: 5282 components: - type: Transform - pos: -25.5,25.5 + pos: -34.5,26.5 parent: 2 - - uid: 5284 + - uid: 5297 components: - type: Transform - pos: -25.5,29.5 + pos: -21.5,36.5 parent: 2 - - uid: 5297 + - uid: 5504 components: - type: Transform - pos: -21.5,36.5 + pos: -16.5,11.5 parent: 2 - uid: 5551 components: @@ -113808,11 +107819,6 @@ entities: - type: Transform pos: -24.5,63.5 parent: 2 - - uid: 5691 - components: - - type: Transform - pos: 11.5,11.5 - parent: 2 - uid: 5699 components: - type: Transform @@ -113858,6 +107864,26 @@ entities: - type: Transform pos: -31.5,64.5 parent: 2 + - uid: 6397 + components: + - type: Transform + pos: -27.5,6.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 - uid: 6651 components: - type: Transform @@ -113908,40 +107934,20 @@ entities: - type: Transform pos: -28.5,62.5 parent: 2 - - uid: 7037 - components: - - type: Transform - pos: -28.5,4.5 - parent: 2 - uid: 7039 components: - type: Transform pos: -27.5,4.5 parent: 2 - - uid: 7054 - components: - - type: Transform - pos: -28.5,5.5 - parent: 2 - - uid: 7591 - components: - - type: Transform - pos: 11.5,12.5 - parent: 2 - - uid: 7651 - components: - - type: Transform - pos: -62.5,35.5 - parent: 2 - - uid: 7654 + - uid: 7048 components: - type: Transform - pos: -62.5,36.5 + pos: 35.5,-4.5 parent: 2 - - uid: 7664 + - uid: 7702 components: - type: Transform - pos: -61.5,35.5 + pos: -13.5,10.5 parent: 2 - uid: 7781 components: @@ -113984,16 +107990,11 @@ entities: - type: Transform pos: 46.5,-6.5 parent: 2 - - uid: 10201 + - uid: 12381 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,25.5 - parent: 2 - - uid: 12959 - components: - - type: Transform - pos: 11.5,20.5 + pos: -30.5,16.5 parent: 2 - uid: 13386 components: @@ -114005,20 +108006,21 @@ entities: - type: Transform pos: 21.5,47.5 parent: 2 - - uid: 13539 + - uid: 13620 components: - type: Transform - pos: 9.5,21.5 + pos: 23.5,6.5 parent: 2 - - uid: 13540 + - uid: 15939 components: - type: Transform - pos: 9.5,20.5 + pos: -13.5,48.5 parent: 2 - - uid: 13543 + - uid: 15995 components: - type: Transform - pos: 11.5,21.5 + rot: 3.141592653589793 rad + pos: 46.5,-7.5 parent: 2 - uid: 16456 components: @@ -114101,6 +108103,16 @@ entities: - type: Transform pos: 25.5,17.5 parent: 16200 + - uid: 17198 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 17199 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 - uid: 17360 components: - type: Transform @@ -114111,6 +108123,33 @@ entities: - type: Transform pos: 8.5,17.5 parent: 16675 + - uid: 19465 + components: + - type: Transform + pos: 34.5,2.5 + parent: 17641 + - uid: 19466 + components: + - type: Transform + pos: 30.5,4.5 + parent: 17641 + - uid: 19467 + components: + - type: Transform + pos: 34.5,3.5 + parent: 17641 + - uid: 19468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 17641 + - uid: 19469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 17641 - proto: TableCarpet entities: - uid: 3358 @@ -114133,108 +108172,13 @@ entities: - type: Transform pos: 5.5,36.5 parent: 2 - - uid: 17927 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 17590 - - uid: 18323 - components: - - type: Transform - pos: 34.5,-14.5 - parent: 17590 - - uid: 18454 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 17590 - - uid: 18455 - components: - - type: Transform - pos: 31.5,-15.5 - parent: 17590 - - uid: 18456 - components: - - type: Transform - pos: 28.5,-15.5 - parent: 17590 - - uid: 18851 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 17590 - - uid: 18852 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 17590 - - uid: 18853 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 17590 - - uid: 18854 - components: - - type: Transform - pos: 28.5,-18.5 - parent: 17590 - - uid: 18855 - components: - - type: Transform - pos: 28.5,-17.5 - parent: 17590 - - uid: 18857 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 17590 - - uid: 18860 - components: - - type: Transform - pos: 31.5,-16.5 - parent: 17590 - - uid: 18862 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 17590 - - uid: 18863 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 17590 - - uid: 18864 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 17590 - - uid: 19298 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 17590 - - uid: 19299 - components: - - type: Transform - pos: 34.5,-16.5 - parent: 17590 - - uid: 19300 - components: - - type: Transform - pos: 34.5,-17.5 - parent: 17590 - - uid: 19301 - components: - - type: Transform - pos: 34.5,-18.5 - parent: 17590 - - uid: 19303 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 17590 - proto: TableCounterMetal entities: + - uid: 1836 + components: + - type: Transform + pos: -46.5,44.5 + parent: 2 - uid: 6096 components: - type: Transform @@ -114245,178 +108189,122 @@ entities: - type: Transform pos: -45.5,44.5 parent: 2 - - uid: 6199 - components: - - type: Transform - pos: -43.5,44.5 - parent: 2 -- proto: TableFancyGreen +- proto: TableFancyBlue entities: - - uid: 18866 - components: - - type: Transform - pos: 46.5,-15.5 - parent: 17590 - - uid: 18867 + - uid: 164 components: - type: Transform - pos: 44.5,-12.5 - parent: 17590 - - uid: 18870 + rot: 3.141592653589793 rad + pos: -64.5,34.5 + parent: 2 + - uid: 2023 components: - type: Transform - pos: 44.5,-13.5 - parent: 17590 - - uid: 20025 + rot: 3.141592653589793 rad + pos: -63.5,34.5 + parent: 2 + - uid: 3042 components: - type: Transform - pos: 47.5,-15.5 - parent: 17590 - - uid: 20026 + rot: -1.5707963267948966 rad + pos: -62.5,37.5 + parent: 2 + - uid: 3295 components: - type: Transform - pos: 47.5,-14.5 - parent: 17590 -- proto: TableFancyWhite + rot: 3.141592653589793 rad + pos: -63.5,35.5 + parent: 2 +- proto: TableFancyGreen entities: - - uid: 18871 + - uid: 422 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,1.5 - parent: 17590 - - uid: 18872 - components: - - type: Transform - pos: 27.5,1.5 - parent: 17590 - - uid: 18873 + pos: -24.5,30.5 + parent: 2 + - uid: 4739 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 17590 - - uid: 18874 - components: - - type: Transform - pos: 22.5,0.5 - parent: 17590 - - uid: 18875 - components: - - type: Transform - pos: 24.5,0.5 - parent: 17590 - - uid: 18876 - components: - - type: Transform - pos: 21.5,0.5 - parent: 17590 - - uid: 18877 - components: - - type: Transform - pos: 29.5,0.5 - parent: 17590 - - uid: 18878 - components: - - type: Transform - pos: 28.5,0.5 - parent: 17590 - - uid: 18879 - components: - - type: Transform - pos: 27.5,0.5 - parent: 17590 - - uid: 18880 - components: - - type: Transform - pos: 26.5,0.5 - parent: 17590 - - uid: 18881 - components: - - type: Transform - pos: 20.5,1.5 - parent: 17590 - - uid: 18882 - components: - - type: Transform - pos: 20.5,0.5 - parent: 17590 - - uid: 18883 - components: - - type: Transform - pos: 21.5,1.5 - parent: 17590 - - uid: 18884 + pos: -24.5,29.5 + parent: 2 +- proto: TableFancyRed + entities: + - uid: 2009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,1.5 - parent: 17590 - - uid: 18885 + pos: -24.5,26.5 + parent: 2 + - uid: 4298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,1.5 - parent: 17590 - - uid: 18886 + rot: 1.5707963267948966 rad + pos: -13.5,35.5 + parent: 2 + - uid: 4299 components: - type: Transform - pos: 23.5,0.5 - parent: 17590 - - uid: 18887 + rot: 1.5707963267948966 rad + pos: -9.5,35.5 + parent: 2 + - uid: 4773 components: - type: Transform - pos: 25.5,0.5 - parent: 17590 - - uid: 18888 + pos: -23.5,26.5 + parent: 2 + - uid: 7778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,1.5 - parent: 17590 - - uid: 18889 + pos: -24.5,24.5 + parent: 2 + - uid: 11096 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,1.5 - parent: 17590 - - uid: 18890 + rot: 1.5707963267948966 rad + pos: -13.5,41.5 + parent: 2 + - uid: 11097 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 17590 -- proto: TableFrame - entities: - - uid: 2010 + rot: 1.5707963267948966 rad + pos: -14.5,41.5 + parent: 2 + - uid: 11098 components: - type: Transform - pos: 1.5,-22.5 + rot: 1.5707963267948966 rad + pos: -9.5,41.5 parent: 2 - - uid: 2058 + - uid: 11871 components: - type: Transform - pos: -2.5,-23.5 + rot: 1.5707963267948966 rad + pos: -8.5,41.5 parent: 2 - - uid: 2564 + - uid: 11885 components: - type: Transform - pos: -26.5,-13.5 + rot: 1.5707963267948966 rad + pos: -14.5,35.5 parent: 2 - - uid: 2603 + - uid: 11887 components: - type: Transform - pos: -20.5,-12.5 + rot: 1.5707963267948966 rad + pos: -8.5,35.5 parent: 2 - - uid: 6652 +- proto: TableGlass + entities: + - uid: 8648 components: - type: Transform - pos: -70.5,36.5 + pos: -37.5,39.5 parent: 2 - - uid: 6654 + - uid: 9752 components: - type: Transform - pos: -70.5,35.5 + pos: -37.5,38.5 parent: 2 - proto: TableReinforced entities: @@ -114481,6 +108369,12 @@ entities: - type: Transform pos: -26.5,-35.5 parent: 2 + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 2 - uid: 980 components: - type: Transform @@ -114558,21 +108452,6 @@ entities: - type: Transform pos: 36.5,-24.5 parent: 2 - - uid: 1543 - components: - - type: Transform - pos: 19.5,11.5 - parent: 2 - - uid: 1544 - components: - - type: Transform - pos: 20.5,11.5 - parent: 2 - - uid: 1812 - components: - - type: Transform - pos: 20.5,12.5 - parent: 2 - uid: 1998 components: - type: Transform @@ -114631,30 +108510,6 @@ entities: - type: Transform pos: -23.5,-5.5 parent: 2 - - uid: 3176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-24.5 - parent: 2 - - uid: 3177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-24.5 - parent: 2 - - uid: 3178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-24.5 - parent: 2 - - uid: 3179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-24.5 - parent: 2 - uid: 3200 components: - type: Transform @@ -114755,6 +108610,16 @@ entities: - type: Transform pos: -20.5,-29.5 parent: 2 + - uid: 3848 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 - uid: 4845 components: - type: Transform @@ -114796,15 +108661,21 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-1.5 parent: 2 - - uid: 7684 + - uid: 7425 components: - type: Transform - pos: 6.5,-3.5 + rot: 1.5707963267948966 rad + pos: 30.5,-25.5 parent: 2 - - uid: 7762 + - uid: 7511 components: - type: Transform - pos: 5.5,-3.5 + pos: -15.5,0.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: 6.5,-3.5 parent: 2 - uid: 7944 components: @@ -114816,249 +108687,122 @@ entities: - type: Transform pos: -32.5,28.5 parent: 2 - - uid: 18891 + - uid: 11892 components: - type: Transform - pos: 13.5,-3.5 - parent: 17590 - - uid: 18892 + rot: 1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 2 + - uid: 13059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 17590 - - uid: 18893 + pos: 31.5,-27.5 + parent: 2 + - uid: 13720 components: - type: Transform - pos: 9.5,-12.5 - parent: 17590 - - uid: 18894 + pos: -27.5,10.5 + parent: 2 + - uid: 13724 components: - type: Transform - pos: 11.5,-12.5 - parent: 17590 - - uid: 18895 + pos: -27.5,9.5 + parent: 2 + - uid: 17163 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 17590 - - uid: 18896 + pos: 28.5,-23.5 + parent: 2 + - uid: 17168 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 17590 - - uid: 18897 + pos: 28.5,-22.5 + parent: 2 + - uid: 17172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 17590 - - uid: 18898 + pos: 31.5,-28.5 + parent: 2 + - uid: 19470 components: - type: Transform - pos: 9.5,-1.5 - parent: 17590 - - uid: 18899 + rot: 1.5707963267948966 rad + pos: 22.5,4.5 + parent: 17641 + - uid: 19471 components: - type: Transform - pos: 10.5,-12.5 - parent: 17590 - - uid: 18900 + rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 17641 + - uid: 19472 components: - type: Transform - pos: 8.5,-12.5 - parent: 17590 - - uid: 18901 + rot: 1.5707963267948966 rad + pos: 21.5,4.5 + parent: 17641 + - uid: 19473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 17590 - - uid: 18902 + rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 17641 + - uid: 19474 components: - type: Transform - pos: 8.5,-1.5 - parent: 17590 - - uid: 18903 + pos: 37.5,-2.5 + parent: 17641 + - uid: 19475 components: - type: Transform - pos: 11.5,-1.5 - parent: 17590 - - uid: 18904 + pos: 38.5,-2.5 + parent: 17641 + - uid: 19476 components: - type: Transform - pos: 10.5,-1.5 - parent: 17590 + pos: 39.5,-2.5 + parent: 17641 - proto: TableReinforcedGlass entities: - - uid: 18906 - components: - - type: Transform - pos: 44.5,-17.5 - parent: 17590 - - uid: 18908 - components: - - type: Transform - pos: 37.5,-17.5 - parent: 17590 - - uid: 18909 - components: - - type: Transform - pos: 36.5,-15.5 - parent: 17590 - - uid: 18910 - components: - - type: Transform - pos: 39.5,-20.5 - parent: 17590 - - uid: 18911 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 17590 - - uid: 18912 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 17590 - - uid: 18913 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 17590 - - uid: 18914 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 17590 - - uid: 18915 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 17590 - - uid: 18916 - components: - - type: Transform - pos: 36.5,-17.5 - parent: 17590 - - uid: 18917 - components: - - type: Transform - pos: 36.5,-18.5 - parent: 17590 - - uid: 18918 - components: - - type: Transform - pos: 45.5,-20.5 - parent: 17590 - - uid: 18919 - components: - - type: Transform - pos: 46.5,-20.5 - parent: 17590 - - uid: 18920 - components: - - type: Transform - pos: 37.5,-15.5 - parent: 17590 - - uid: 18921 - components: - - type: Transform - pos: 45.5,-17.5 - parent: 17590 -- proto: TableStone - entities: - - uid: 1276 + - uid: 1684 components: - type: Transform - pos: 11.5,16.5 + pos: -14.5,24.5 parent: 2 - - uid: 1278 + - uid: 3179 components: - type: Transform - pos: 12.5,16.5 + pos: -14.5,25.5 parent: 2 - - uid: 4872 + - uid: 7168 components: - type: Transform - pos: 31.5,-28.5 + pos: -14.5,22.5 parent: 2 - - uid: 4960 + - uid: 7171 components: - type: Transform - pos: 31.5,-27.5 + pos: -14.5,23.5 parent: 2 +- proto: TableStone + entities: - uid: 6242 components: - type: Transform pos: -4.5,50.5 parent: 2 - - uid: 6779 - components: - - type: Transform - pos: 11.5,15.5 - parent: 2 - - uid: 6780 - components: - - type: Transform - pos: 12.5,15.5 - parent: 2 - uid: 7590 components: - type: Transform pos: -2.5,50.5 parent: 2 - - uid: 19421 - components: - - type: Transform - pos: 14.5,-9.5 - parent: 17590 - - uid: 19423 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 17590 - - uid: 19424 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 17590 - - uid: 19426 - components: - - type: Transform - pos: 16.5,-9.5 - parent: 17590 - - uid: 19427 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 17590 - - uid: 19428 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 17590 - - uid: 19831 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 17590 -- proto: TableWeb - entities: - - uid: 17238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,53.5 - parent: 2 - - uid: 17239 + - uid: 19477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,55.5 - parent: 2 + pos: 25.5,13.5 + parent: 17641 - proto: TableWood entities: - uid: 244 @@ -115139,32 +108883,48 @@ entities: - type: Transform pos: 2.5,-7.5 parent: 2 - - uid: 17424 + - uid: 19478 components: - type: Transform - pos: -2.5,-0.5 - parent: 2 - - uid: 18922 + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 17641 + - uid: 19479 components: - type: Transform - pos: 25.5,-17.5 - parent: 17590 - - uid: 18923 + pos: 12.5,1.5 + parent: 17641 + - uid: 19480 components: - type: Transform - pos: 25.5,-16.5 - parent: 17590 - - uid: 18924 + pos: 13.5,1.5 + parent: 17641 + - uid: 19481 components: - type: Transform - pos: 25.5,-18.5 - parent: 17590 + pos: 13.5,4.5 + parent: 17641 + - uid: 19482 + components: + - type: Transform + pos: 12.5,3.5 + parent: 17641 + - uid: 19483 + components: + - type: Transform + pos: 12.5,4.5 + parent: 17641 + - uid: 20207 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 - proto: TargetDarts entities: - - uid: 4849 + - uid: 4761 components: - type: Transform - pos: -33.5,14.5 + pos: -46.5,46.5 parent: 2 - proto: TegCenter entities: @@ -115331,100 +109091,116 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,20.5 parent: 16675 - - uid: 18925 + - uid: 19484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-9.5 - parent: 17590 - - uid: 18926 + rot: 1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 17641 + - uid: 19485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-8.5 - parent: 17590 - - uid: 18927 + rot: 1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 17641 + - uid: 19486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-7.5 - parent: 17590 - - uid: 18928 + rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 17641 + - uid: 19487 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-6.5 - parent: 17590 - - uid: 18929 + pos: 7.5,-7.5 + parent: 17641 + - uid: 19488 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 17590 - - uid: 18930 + pos: 5.5,-8.5 + parent: 17641 + - uid: 19489 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 17590 - - uid: 18931 + pos: 5.5,-7.5 + parent: 17641 + - uid: 19490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-4.5 - parent: 17590 - - uid: 18932 + pos: 2.5,6.5 + parent: 17641 + - uid: 19491 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 17590 - - uid: 18933 + pos: 2.5,8.5 + parent: 17641 + - uid: 19492 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-8.5 - parent: 17590 - - uid: 18934 + pos: 2.5,7.5 + parent: 17641 + - uid: 19493 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-9.5 - parent: 17590 - - uid: 18935 + pos: 0.5,6.5 + parent: 17641 + - uid: 19494 components: - type: Transform - pos: 46.5,-10.5 - parent: 17590 - - uid: 18936 + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 17641 + - uid: 19495 components: - type: Transform - pos: 47.5,-10.5 - parent: 17590 - - uid: 18937 + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 17641 + - uid: 19496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-3.5 - parent: 17590 - - uid: 18938 + rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 17641 + - uid: 19497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-3.5 - parent: 17590 - - uid: 19863 + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 17641 + - uid: 19498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,18.5 - parent: 19854 - - uid: 20133 + rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 17641 + - uid: 19499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,13.5 - parent: 20000 + pos: -5.5,11.5 + parent: 17641 + - uid: 19500 + components: + - type: Transform + pos: 1.5,11.5 + parent: 17641 + - uid: 19501 + components: + - type: Transform + pos: 2.5,11.5 + parent: 17641 + - uid: 19502 + components: + - type: Transform + pos: -3.5,11.5 + parent: 17641 - proto: ThrusterFlatpack entities: - uid: 17356 @@ -115461,6 +109237,18 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-10.5 parent: 2 + - uid: 2039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,43.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,41.5 + parent: 2 - uid: 2990 components: - type: Transform @@ -115495,20 +109283,8 @@ entities: showEnts: False occludes: True ents: [] - - uid: 5770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,30.5 - parent: 2 - proto: ToiletEmpty entities: - - uid: 5670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,41.5 - parent: 2 - uid: 5906 components: - type: Transform @@ -115523,15 +109299,16 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-8.5 parent: 2 -- proto: TomatoSeeds +- proto: ToiletGoldenEmpty entities: - - uid: 942 + - uid: 4142 components: + - type: MetaData + desc: HT-451-З - золотая версия аппарата. На боку написано, что он сделан из дешманского золота, а сиденье из натурального кожзама. Не думаю, что он стоит дороже вашей зарплаты за то время, пока вы это читали. - type: Transform - parent: 3554 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: 1.5707963267948966 rad + pos: -25.5,30.5 + parent: 2 - proto: ToolboxElectricalFilled entities: - uid: 143 @@ -115576,6 +109353,11 @@ entities: - type: Transform pos: -31.45074,64.72638 parent: 2 + - uid: 19503 + components: + - type: Transform + pos: 21.241209,4.509123 + parent: 17641 - proto: ToolboxEmergencyFilled entities: - uid: 2490 @@ -115583,40 +109365,23 @@ entities: - type: Transform pos: 25.5,-2.3 parent: 2 -- proto: ToolboxGolden - entities: - - uid: 2059 + - uid: 19504 components: - type: Transform - pos: -9.513796,-21.410772 - parent: 2 - - type: Storage - storedItems: - 2060: - position: 0,0 - _rotation: South - 2061: - position: 2,0 - _rotation: South - 2062: - position: 4,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 2060 - - 2061 - - 2062 + pos: 22.272459,4.602873 + parent: 17641 + - uid: 19505 + components: + - type: Transform + pos: 22.538084,4.227873 + parent: 17641 - proto: ToolboxGoldFilled entities: - - uid: 19434 + - uid: 7256 components: - type: Transform - pos: 14.483093,-10.386719 - parent: 17590 + pos: -9.521576,-21.399467 + parent: 2 - proto: ToolboxMechanicalFilled entities: - uid: 944 @@ -115671,25 +109436,11 @@ entities: - type: Transform pos: -24.555336,64.236824 parent: 2 -- proto: ToxinChemistryBottle - entities: - - uid: 8139 - components: - - type: Transform - pos: 46.358093,-6.0052614 - parent: 2 - - uid: 8140 - components: - - type: Transform - pos: 46.43622,-6.1771364 - parent: 2 -- proto: ToyFigurineChiefMedicalOfficer - entities: - - uid: 18939 + - uid: 19506 components: - type: Transform - pos: 39.712826,-20.49917 - parent: 17590 + pos: 21.256834,4.759123 + parent: 17641 - proto: ToyFigurineMusician entities: - uid: 4091 @@ -115697,41 +109448,17 @@ entities: - type: Transform pos: 0.8091736,26.625412 parent: 2 -- proto: ToyFigurineRatKing - entities: - - uid: 4156 - components: - - type: Transform - pos: 18.776953,35.694435 - parent: 2 -- proto: ToySpawner +- proto: TrashBananaPeel entities: - - uid: 425 - components: - - type: Transform - pos: -25.5,25.5 - parent: 2 - - uid: 447 - components: - - type: Transform - pos: -23.5,24.5 - parent: 2 - - uid: 11897 - components: - - type: Transform - pos: -25.5,24.5 - parent: 2 - - uid: 14739 + - uid: 9739 components: - type: Transform - pos: -24.5,26.5 + pos: -68.55823,32.43554 parent: 2 -- proto: TrashBananaPeelExplosive - entities: - - uid: 2465 + - uid: 20239 components: - type: Transform - pos: -72.4106,33.092155 + pos: -24.548655,4.4189544 parent: 2 - proto: trayScanner entities: @@ -115740,6 +109467,24 @@ entities: - type: Transform pos: -22.36126,18.563568 parent: 2 + - uid: 17976 + components: + - type: MetaData + desc: Устройство, которое предназначено для сканирования паролей на мусоровозе. К несчастью, после аварии он не работает. + name: сканер паролей + - type: Transform + parent: 17973 + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - TrayScanner + - uid: 18730 + components: + - type: Transform + parent: 18726 + - type: Physics + canCollide: False - proto: TreasureCoinAdamantine entities: - uid: 7608 @@ -115813,6 +109558,35 @@ entities: - type: Transform pos: -4.1372304,50.458336 parent: 2 +- proto: TreasureFlopDiskDrive + entities: + - uid: 4118 + components: + - type: MetaData + desc: Компактный магнитофон для кассет, имплантированных Угрозой. + name: компактный магнитофон + - type: Transform + parent: 1540 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TreasureSampleTube + entities: + - uid: 7306 + components: + - type: Transform + pos: -27.560738,6.7643156 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: -27.435738,6.7643156 + parent: 2 + - uid: 8233 + components: + - type: Transform + pos: -27.654488,6.7174406 + parent: 2 - proto: TwoWayLever entities: - uid: 496 @@ -115943,6 +109717,77 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 4951 + components: + - type: Transform + pos: 28.5,35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6452: + - Left: Forward + - Right: Reverse + - Middle: Off + 5193: + - Left: Forward + - Right: Reverse + - Middle: Off + 5186: + - Left: Forward + - Right: Reverse + - Middle: Off + 6555: + - Left: Forward + - Right: Reverse + - Middle: Off + 5276: + - Left: Forward + - Right: Reverse + - Middle: Off + 5187: + - Left: Forward + - Right: Reverse + - Middle: Off + 4835: + - Left: Forward + - Right: Reverse + - Middle: Off + 4865: + - Left: Forward + - Right: Reverse + - Middle: Off + 5274: + - Left: Forward + - Right: Reverse + - Middle: Off + 5197: + - Left: Forward + - Right: Reverse + - Middle: Off + 5225: + - Left: Forward + - Right: Reverse + - Middle: Off + 3022: + - Left: Forward + - Right: Reverse + - Middle: Off + 4751: + - Left: Forward + - Right: Reverse + - Middle: Off + 4757: + - Left: Forward + - Right: Reverse + - Middle: Off + 4233: + - Left: Open + - Right: Open + - Middle: Close + 5369: + - Left: Forward + - Right: Reverse + - Middle: Off - uid: 5669 components: - type: Transform @@ -115966,28 +109811,90 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 8171 + - uid: 7649 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7655: + - Left: Forward + - Right: Reverse + - Middle: Off + 7764: + - Left: Forward + - Right: Reverse + - Middle: Off + 2880: + - Left: Forward + - Right: Reverse + - Middle: Off + 2955: + - Left: Forward + - Right: Reverse + - Middle: Off + 7761: + - Left: Forward + - Right: Reverse + - Middle: Off + 7752: + - Left: Forward + - Right: Reverse + - Middle: Off + 4737: + - Left: Forward + - Right: Reverse + - Middle: Off + 7767: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 15993 components: - - type: MetaData - desc: Сдвиньте вправо, ожидайте, сдвиньте влево. - name: рычаг свершения приговора - type: Transform pos: 49.5,-8.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 978: - - Right: Open - - Middle: Close - - Left: Close - 8160: - - Left: Trigger + 15989: + - Left: Forward + - Right: Reverse + - Middle: Off + 15992: + - Left: Forward + - Right: Reverse + - Middle: Off + 15990: + - Left: Forward + - Right: Reverse + - Middle: Off + 15991: + - Left: Forward + - Right: Reverse + - Middle: Off + 15979: + - Left: Forward + - Right: Reverse + - Middle: Off + 15982: + - Left: Forward + - Right: Reverse + - Middle: Off + 15980: + - Left: Forward + - Right: Reverse + - Middle: Off + 15981: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: UniformPrinter entities: - - uid: 2672 + - uid: 1447 components: - type: Transform - pos: 10.5,-20.5 + pos: 9.5,-18.5 parent: 2 - proto: Urn entities: @@ -116027,11 +109934,11 @@ entities: - type: Transform pos: 18.5,17.5 parent: 2 - - uid: 18940 + - uid: 4675 components: - type: Transform - pos: 25.5,-15.5 - parent: 17590 + pos: -43.5,46.5 + parent: 2 - proto: VendingMachineCargoDrobe entities: - uid: 1034 @@ -116069,10 +109976,10 @@ entities: parent: 2 - proto: VendingMachineChemDrobe entities: - - uid: 4624 + - uid: 1746 components: - type: Transform - pos: -13.5,17.5 + pos: -12.5,26.5 parent: 2 - proto: VendingMachineChemicals entities: @@ -116088,6 +109995,21 @@ entities: parent: 16200 - proto: VendingMachineCigs entities: + - uid: 4647 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 - uid: 7739 components: - type: Transform @@ -116098,21 +110020,26 @@ entities: - type: Transform pos: -48.5,28.5 parent: 2 - - uid: 18941 + - uid: 7760 components: - type: Transform - pos: 16.5,-4.5 - parent: 17590 - - uid: 19334 + pos: -3.5,38.5 + parent: 2 + - uid: 11875 components: - type: Transform - pos: 26.5,-6.5 - parent: 17590 - - uid: 19363 + pos: -37.5,41.5 + parent: 2 + - uid: 11882 components: - type: Transform - pos: 41.5,-5.5 - parent: 17590 + pos: -37.5,42.5 + parent: 2 + - uid: 11890 + components: + - type: Transform + pos: -37.5,43.5 + parent: 2 - proto: VendingMachineClothing entities: - uid: 973 @@ -116132,16 +110059,11 @@ entities: - type: Transform pos: 7.5,42.5 parent: 2 - - uid: 18445 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 17590 - - uid: 19365 + - uid: 19507 components: - type: Transform - pos: 41.5,-8.5 - parent: 17590 + pos: 2.5,4.5 + parent: 17641 - proto: VendingMachineCuraDrobe entities: - uid: 5095 @@ -116226,6 +110148,16 @@ entities: parent: 2 - proto: VendingMachineMedical entities: + - uid: 1830 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 - uid: 4380 components: - type: Transform @@ -116236,10 +110168,10 @@ entities: - type: Transform pos: -15.5,15.5 parent: 2 - - uid: 4644 + - uid: 7264 components: - type: Transform - pos: -14.5,25.5 + pos: -12.5,27.5 parent: 2 - proto: VendingMachineMediDrobe entities: @@ -116255,13 +110187,6 @@ entities: - type: Transform pos: 9.5,23.5 parent: 2 -- proto: VendingMachineRestockBooze - entities: - - uid: 18942 - components: - - type: Transform - pos: 25.525442,-18.093102 - parent: 17590 - proto: VendingMachineRoboDrobe entities: - uid: 4094 @@ -116311,6 +110236,13 @@ entities: - type: Transform pos: 10.5,23.5 parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 7167 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 - proto: VendingMachineSustenance entities: - uid: 932 @@ -116357,11 +110289,6 @@ entities: - type: Transform pos: -51.5,32.5 parent: 2 - - uid: 18943 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 17590 - proto: VendingMachineTheater entities: - uid: 4100 @@ -116383,257 +110310,54 @@ entities: parent: 2 - proto: VendingMachineWallMedical entities: - - uid: 16464 + - uid: 475 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,11.5 - parent: 16200 -- proto: VendingMachineWinter - entities: - - uid: 5633 - components: - - type: Transform - pos: -33.5,43.5 - parent: 2 -- proto: VendingMachineYouTool - entities: - - uid: 5698 - components: - - type: Transform - pos: -43.5,38.5 + pos: -12.5,9.5 parent: 2 - - uid: 7988 + - uid: 16464 components: - type: Transform - pos: -20.5,-38.5 - parent: 2 -- proto: WallChromiteCobblebrick - entities: - - uid: 5326 + rot: 3.141592653589793 rad + pos: 27.5,11.5 + parent: 16200 + - uid: 17161 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,24.5 - parent: 2 - - uid: 7824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,20.5 - parent: 2 - - uid: 7828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,23.5 - parent: 2 - - uid: 7829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,22.5 - parent: 2 - - uid: 7839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,19.5 - parent: 2 - - uid: 7840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,19.5 - parent: 2 - - uid: 7841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,20.5 - parent: 2 - - uid: 8046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,23.5 - parent: 2 - - uid: 8307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,22.5 - parent: 2 - - uid: 8308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,24.5 - parent: 2 - - uid: 8309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,21.5 - parent: 2 - - uid: 8310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,25.5 - parent: 2 - - uid: 8311 - components: - - type: Transform - pos: 26.5,19.5 - parent: 2 - - uid: 8722 - components: - - type: Transform - pos: 27.5,19.5 - parent: 2 - - uid: 9740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,20.5 - parent: 2 - - uid: 12381 - components: - - type: Transform - pos: 28.5,18.5 - parent: 2 - - uid: 12460 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - - uid: 15899 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - - uid: 16072 - components: - - type: Transform - pos: 27.5,24.5 - parent: 2 - - uid: 16074 - components: - - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 16075 - components: - - type: Transform - pos: 29.5,24.5 + pos: -7.5,18.5 parent: 2 - - uid: 16080 + - uid: 17162 components: - type: Transform - pos: 29.5,21.5 + rot: -1.5707963267948966 rad + pos: -18.5,16.5 parent: 2 -- proto: WallGold +- proto: VendingMachineWinter entities: - - uid: 3234 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 2 - - uid: 4117 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 2 - - uid: 4136 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 2 - - uid: 8179 + - uid: 5633 components: - type: Transform - pos: -4.5,-8.5 + pos: -33.5,43.5 parent: 2 -- proto: WallMeat +- proto: VendingMachineYouTool entities: - - uid: 5315 - components: - - type: Transform - pos: 27.5,16.5 - parent: 2 - - uid: 6213 - components: - - type: Transform - pos: 25.5,8.5 - parent: 2 - - uid: 6214 + - uid: 1679 components: - type: Transform - pos: 25.5,11.5 + pos: 3.5,46.5 parent: 2 - - uid: 6215 + - uid: 5698 components: - type: Transform - pos: 25.5,10.5 + pos: -43.5,38.5 parent: 2 - - uid: 6216 + - uid: 7988 components: - type: Transform - pos: 25.5,14.5 + pos: -20.5,-38.5 parent: 2 - - type: Construction - defaultTarget: start - - uid: 19963 - components: - - type: Transform - pos: 22.5,18.5 - parent: 19951 - - uid: 19965 - components: - - type: Transform - pos: 25.5,17.5 - parent: 19951 - - uid: 19966 - components: - - type: Transform - pos: 26.5,17.5 - parent: 19951 - - uid: 19967 - components: - - type: Transform - pos: 26.5,15.5 - parent: 19951 - - uid: 19968 - components: - - type: Transform - pos: 24.5,15.5 - parent: 19951 - - uid: 19969 - components: - - type: Transform - pos: 23.5,15.5 - parent: 19951 - - uid: 19970 - components: - - type: Transform - pos: 22.5,15.5 - parent: 19951 - - uid: 19971 - components: - - type: Transform - pos: 25.5,15.5 - parent: 19951 - - uid: 19975 - components: - - type: Transform - pos: 24.5,18.5 - parent: 19951 - - uid: 19994 - components: - - type: Transform - pos: 23.5,18.5 - parent: 19951 - proto: WallmountGeneratorAPUElectronics entities: - uid: 2035 @@ -116648,6 +110372,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: WallmountGeneratorElectronics + entities: + - uid: 11386 + components: + - type: Transform + pos: 1.0525479,-20.325802 + parent: 2 + - uid: 11387 + components: + - type: Transform + pos: 0.8858813,-20.304968 + parent: 2 - proto: WallmountTelescreen entities: - uid: 1197 @@ -116666,13 +110402,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,-5.5 parent: 2 -- proto: WallmountTelescreenFrame - entities: - - uid: 19838 - components: - - type: Transform - pos: 2.5,-8.5 - parent: 17590 - proto: WallmountTelevision entities: - uid: 3812 @@ -116687,6 +110416,12 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-8.5 parent: 2 + - uid: 12920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,36.5 + parent: 2 - proto: WallPlastitanium entities: - uid: 16873 @@ -117053,11 +110788,6 @@ entities: - type: Transform pos: 14.5,-3.5 parent: 2 - - uid: 22 - components: - - type: Transform - pos: 47.5,-14.5 - parent: 2 - uid: 27 components: - type: Transform @@ -117213,6 +110943,11 @@ entities: - type: Transform pos: -19.5,-33.5 parent: 2 + - uid: 183 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 - uid: 184 components: - type: Transform @@ -117345,11 +111080,6 @@ entities: - type: Transform pos: -23.5,-18.5 parent: 2 - - uid: 321 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 2 - uid: 324 components: - type: Transform @@ -117365,10 +111095,15 @@ entities: - type: Transform pos: -24.5,-6.5 parent: 2 - - uid: 357 + - uid: 344 components: - type: Transform - pos: -27.5,-15.5 + pos: -32.5,-25.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: -31.5,-25.5 parent: 2 - uid: 361 components: @@ -117430,11 +111165,6 @@ entities: - type: Transform pos: -19.5,-20.5 parent: 2 - - uid: 386 - components: - - type: Transform - pos: -33.5,-40.5 - parent: 2 - uid: 388 components: - type: Transform @@ -117530,11 +111260,6 @@ entities: - type: Transform pos: 2.5,-24.5 parent: 2 - - uid: 422 - components: - - type: Transform - pos: -37.5,-40.5 - parent: 2 - uid: 436 components: - type: Transform @@ -117677,11 +111402,6 @@ entities: - type: Transform pos: -12.5,-16.5 parent: 2 - - uid: 544 - components: - - type: Transform - pos: -30.5,-21.5 - parent: 2 - uid: 546 components: - type: Transform @@ -117752,48 +111472,18 @@ entities: - type: Transform pos: -36.5,-23.5 parent: 2 - - uid: 595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-11.5 - parent: 2 - - uid: 601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-11.5 - parent: 2 - uid: 610 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-33.5 parent: 2 - - uid: 615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-29.5 - parent: 2 - - uid: 621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-23.5 - parent: 2 - uid: 622 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-25.5 parent: 2 - - uid: 623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-21.5 - parent: 2 - uid: 624 components: - type: Transform @@ -117867,11 +111557,6 @@ entities: - type: Transform pos: -25.5,-28.5 parent: 2 - - uid: 669 - components: - - type: Transform - pos: -38.5,-25.5 - parent: 2 - uid: 673 components: - type: Transform @@ -118031,17 +111716,6 @@ entities: - type: Transform pos: 33.5,-8.5 parent: 2 - - uid: 862 - components: - - type: Transform - pos: -72.5,34.5 - parent: 2 - - uid: 869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,42.5 - parent: 2 - uid: 873 components: - type: Transform @@ -118161,15 +111835,10 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-6.5 parent: 2 - - uid: 911 - components: - - type: Transform - pos: 41.5,-5.5 - parent: 2 - - uid: 915 + - uid: 912 components: - type: Transform - pos: 22.5,-10.5 + pos: 26.5,24.5 parent: 2 - uid: 925 components: @@ -118217,11 +111886,6 @@ entities: - type: Transform pos: -59.5,23.5 parent: 2 - - uid: 996 - components: - - type: Transform - pos: -75.5,25.5 - parent: 2 - uid: 999 components: - type: Transform @@ -118258,6 +111922,11 @@ entities: - type: Transform pos: 21.5,-28.5 parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 - uid: 1066 components: - type: Transform @@ -118476,62 +112145,22 @@ entities: - uid: 1300 components: - type: Transform - pos: -30.5,-23.5 + pos: -31.5,-34.5 parent: 2 - uid: 1311 components: - type: Transform pos: -23.5,-28.5 parent: 2 - - uid: 1315 - components: - - type: Transform - pos: -21.5,-39.5 - parent: 2 - - uid: 1323 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 2 - - uid: 1325 - components: - - type: Transform - pos: -38.5,-13.5 - parent: 2 - - uid: 1326 - components: - - type: Transform - pos: -38.5,-14.5 - parent: 2 - - uid: 1327 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 2 - - uid: 1328 - components: - - type: Transform - pos: -38.5,-12.5 - parent: 2 - - uid: 1329 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 2 - - uid: 1330 - components: - - type: Transform - pos: -32.5,-14.5 - parent: 2 - - uid: 1332 + - uid: 1314 components: - type: Transform - pos: -38.5,-21.5 + pos: -31.5,-33.5 parent: 2 - - uid: 1333 + - uid: 1315 components: - type: Transform - pos: -38.5,-15.5 + pos: -21.5,-39.5 parent: 2 - uid: 1334 components: @@ -118545,36 +112174,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,15.5 parent: 2 - - uid: 1341 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 2 - - uid: 1342 - components: - - type: Transform - pos: -32.5,-23.5 - parent: 2 - - uid: 1356 - components: - - type: Transform - pos: -32.5,-12.5 - parent: 2 - - uid: 1357 - components: - - type: Transform - pos: -37.5,-11.5 - parent: 2 - - uid: 1358 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 2 - - uid: 1359 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 2 - uid: 1365 components: - type: Transform @@ -118596,15 +112195,15 @@ entities: - type: Transform pos: 7.5,-17.5 parent: 2 - - uid: 1403 + - uid: 1395 components: - type: Transform - pos: -39.5,-23.5 + pos: 28.5,18.5 parent: 2 - - uid: 1416 + - uid: 1403 components: - type: Transform - pos: -32.5,-33.5 + pos: -27.5,-32.5 parent: 2 - uid: 1418 components: @@ -118612,125 +112211,15 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-33.5 parent: 2 - - uid: 1439 - components: - - type: Transform - pos: -35.5,-41.5 - parent: 2 - - uid: 1447 - components: - - type: Transform - pos: -39.5,-15.5 - parent: 2 - - uid: 1448 - components: - - type: Transform - pos: -31.5,-15.5 - parent: 2 - - uid: 1471 - components: - - type: Transform - pos: -32.5,-20.5 - parent: 2 - - uid: 1476 - components: - - type: Transform - pos: -32.5,-19.5 - parent: 2 - - uid: 1501 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 2 - - uid: 1503 - components: - - type: Transform - pos: -40.5,-13.5 - parent: 2 - - uid: 1504 - components: - - type: Transform - pos: -40.5,-12.5 - parent: 2 - - uid: 1505 - components: - - type: Transform - pos: -40.5,-11.5 - parent: 2 - - uid: 1506 - components: - - type: Transform - pos: -40.5,-10.5 - parent: 2 - - uid: 1507 - components: - - type: Transform - pos: -40.5,-9.5 - parent: 2 - - uid: 1508 - components: - - type: Transform - pos: -39.5,-9.5 - parent: 2 - - uid: 1511 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 2 - - uid: 1512 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 2 - uid: 1513 components: - type: Transform - pos: -34.5,-9.5 + pos: -26.5,-18.5 parent: 2 - uid: 1514 components: - type: Transform - pos: -33.5,-9.5 - parent: 2 - - uid: 1515 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 2 - - uid: 1516 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 2 - - uid: 1517 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 2 - - uid: 1518 - components: - - type: Transform - pos: -30.5,-10.5 - parent: 2 - - uid: 1520 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 2 - - uid: 1521 - components: - - type: Transform - pos: -30.5,-13.5 - parent: 2 - - uid: 1522 - components: - - type: Transform - pos: -30.5,-14.5 - parent: 2 - - uid: 1523 - components: - - type: Transform - pos: -30.5,-15.5 + pos: -27.5,-20.5 parent: 2 - uid: 1644 components: @@ -118784,11 +112273,6 @@ entities: - type: Transform pos: 46.5,-22.5 parent: 2 - - uid: 1747 - components: - - type: Transform - pos: -40.5,-23.5 - parent: 2 - uid: 1754 components: - type: Transform @@ -118835,36 +112319,36 @@ entities: - type: Transform pos: -20.5,-6.5 parent: 2 - - uid: 1830 + - uid: 1814 components: - type: Transform - pos: -21.5,-46.5 + pos: 26.5,37.5 parent: 2 - - uid: 1841 + - uid: 1815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-32.5 + pos: 24.5,37.5 parent: 2 - - uid: 1842 + - uid: 1816 components: - type: Transform - pos: -32.5,-34.5 + pos: 29.5,37.5 parent: 2 - - uid: 1843 + - uid: 1840 components: - type: Transform - pos: -33.5,-34.5 + pos: -32.5,-30.5 parent: 2 - - uid: 1855 + - uid: 1841 components: - type: Transform - pos: -40.5,-21.5 + rot: -1.5707963267948966 rad + pos: -0.5,-32.5 parent: 2 - - uid: 1857 + - uid: 1843 components: - type: Transform - pos: -40.5,-19.5 + pos: -32.5,-24.5 parent: 2 - uid: 1903 components: @@ -118893,12 +112377,6 @@ entities: - type: Transform pos: -22.5,-31.5 parent: 2 - - uid: 1942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-30.5 - parent: 2 - uid: 1968 components: - type: Transform @@ -118915,11 +112393,6 @@ entities: - type: Transform pos: 24.5,-6.5 parent: 2 - - uid: 1978 - components: - - type: Transform - pos: 41.5,-4.5 - parent: 2 - uid: 1981 components: - type: Transform @@ -118935,20 +112408,15 @@ entities: - type: Transform pos: -1.5,-20.5 parent: 2 - - uid: 2033 - components: - - type: Transform - pos: -75.5,33.5 - parent: 2 - uid: 2132 components: - type: Transform pos: -20.5,-33.5 parent: 2 - - uid: 2141 + - uid: 2142 components: - type: Transform - pos: 3.5,48.5 + pos: -27.5,-18.5 parent: 2 - uid: 2151 components: @@ -119087,6 +112555,16 @@ entities: - type: Transform pos: 35.5,14.5 parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 - uid: 2537 components: - type: Transform @@ -119097,15 +112575,15 @@ entities: - type: Transform pos: 25.5,18.5 parent: 2 - - uid: 2642 + - uid: 2629 components: - type: Transform - pos: 5.5,-20.5 + pos: 29.5,30.5 parent: 2 - - uid: 2643 + - uid: 2642 components: - type: Transform - pos: 5.5,-19.5 + pos: 5.5,-20.5 parent: 2 - uid: 2650 components: @@ -119167,20 +112645,15 @@ entities: - type: Transform pos: -17.5,-43.5 parent: 2 - - uid: 2861 - components: - - type: Transform - pos: -39.5,-34.5 - parent: 2 - - uid: 2865 + - uid: 2872 components: - type: Transform - pos: -31.5,-39.5 + pos: 16.5,6.5 parent: 2 - - uid: 2872 + - uid: 2882 components: - type: Transform - pos: 16.5,6.5 + pos: -27.5,-31.5 parent: 2 - uid: 2897 components: @@ -119358,11 +112831,6 @@ entities: - type: Transform pos: 26.5,-18.5 parent: 2 - - uid: 3050 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 2 - uid: 3051 components: - type: Transform @@ -119403,18 +112871,6 @@ entities: - type: Transform pos: 32.5,-21.5 parent: 2 - - uid: 3099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-26.5 - parent: 2 - - uid: 3101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-30.5 - parent: 2 - uid: 3111 components: - type: Transform @@ -119432,11 +112888,6 @@ entities: - type: Transform pos: 30.5,-21.5 parent: 2 - - uid: 3163 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 2 - uid: 3164 components: - type: Transform @@ -119497,11 +112948,6 @@ entities: - type: Transform pos: 25.5,-25.5 parent: 2 - - uid: 3199 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 2 - uid: 3209 components: - type: Transform @@ -119553,6 +112999,11 @@ entities: - type: Transform pos: 30.5,-31.5 parent: 2 + - uid: 3240 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 - uid: 3248 components: - type: Transform @@ -119603,21 +113054,6 @@ entities: - type: Transform pos: 36.5,-31.5 parent: 2 - - uid: 3279 - components: - - type: Transform - pos: 45.5,-10.5 - parent: 2 - - uid: 3280 - components: - - type: Transform - pos: 45.5,-11.5 - parent: 2 - - uid: 3281 - components: - - type: Transform - pos: 45.5,-12.5 - parent: 2 - uid: 3283 components: - type: Transform @@ -119656,11 +113092,6 @@ entities: - type: Transform pos: 37.5,-27.5 parent: 2 - - uid: 3299 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 2 - uid: 3319 components: - type: Transform @@ -119716,6 +113147,36 @@ entities: - type: Transform pos: 36.5,-22.5 parent: 2 + - uid: 3336 + components: + - type: Transform + pos: -71.5,35.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 - uid: 3362 components: - type: Transform @@ -120014,39 +113475,51 @@ entities: - uid: 3469 components: - type: Transform - pos: 50.5,-10.5 + pos: 47.5,-14.5 parent: 2 - uid: 3470 components: - type: Transform - pos: 50.5,-11.5 + rot: 3.141592653589793 rad + pos: -72.5,34.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,42.5 parent: 2 - uid: 3472 components: - type: Transform - pos: 49.5,-12.5 + pos: 22.5,-10.5 parent: 2 - uid: 3473 components: - type: Transform - pos: 48.5,-12.5 + rot: 3.141592653589793 rad + pos: -75.5,25.5 parent: 2 - uid: 3474 components: - type: Transform - pos: 47.5,-12.5 + rot: 3.141592653589793 rad + pos: -75.5,33.5 parent: 2 - - uid: 3525 + - uid: 3482 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-19.5 + pos: 45.5,-10.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: 45.5,-11.5 parent: 2 - uid: 3537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,42.5 + pos: 45.5,-12.5 parent: 2 - uid: 3541 components: @@ -120060,6494 +113533,6421 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-18.5 parent: 2 - - uid: 3558 - components: - - type: Transform - pos: 48.5,-18.5 - parent: 2 - - uid: 3562 - components: - - type: Transform - pos: 52.5,-18.5 - parent: 2 - - uid: 3618 - components: - - type: Transform - pos: 48.5,-19.5 - parent: 2 - - uid: 3619 + - uid: 3543 components: - type: Transform - pos: 48.5,-21.5 + pos: 50.5,-14.5 parent: 2 - - uid: 3620 + - uid: 3546 components: - type: Transform - pos: 48.5,-22.5 + pos: 50.5,-10.5 parent: 2 - - uid: 3623 + - uid: 3555 components: - type: Transform - pos: -22.5,-41.5 + pos: 50.5,-11.5 parent: 2 - - uid: 3628 + - uid: 3558 components: - type: Transform - pos: 53.5,-19.5 + pos: 49.5,-12.5 parent: 2 - - uid: 3634 + - uid: 3560 components: - type: Transform - pos: 43.5,-27.5 + pos: 48.5,-12.5 parent: 2 - - uid: 3655 + - uid: 3561 components: - type: Transform - pos: -19.5,-2.5 + pos: 47.5,-12.5 parent: 2 - - uid: 3762 + - uid: 3562 components: - type: Transform - pos: -27.5,2.5 + pos: 52.5,-18.5 parent: 2 - - uid: 3766 + - uid: 3564 components: - type: Transform - pos: 26.5,-41.5 + rot: 3.141592653589793 rad + pos: -54.5,42.5 parent: 2 - - uid: 3771 + - uid: 3567 components: - type: Transform - pos: 29.5,-36.5 + pos: 47.5,-21.5 parent: 2 - - uid: 3946 + - uid: 3575 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-18.5 + pos: -75.5,32.5 parent: 2 - - uid: 3980 + - uid: 3576 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-16.5 - parent: 2 - - uid: 4059 - components: - - type: Transform - pos: -15.5,-20.5 + pos: -19.5,49.5 parent: 2 - - uid: 4103 + - uid: 3600 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-17.5 - parent: 2 - - uid: 4121 - components: - - type: Transform - pos: -25.5,-8.5 - parent: 2 - - uid: 4152 - components: - - type: Transform - pos: -28.5,19.5 - parent: 2 - - uid: 4154 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 2 - - uid: 4155 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 2 - - uid: 4158 - components: - - type: Transform - pos: 22.5,-40.5 - parent: 2 - - uid: 4159 - components: - - type: Transform - pos: 23.5,-40.5 - parent: 2 - - uid: 4160 - components: - - type: Transform - pos: 24.5,-40.5 - parent: 2 - - uid: 4161 - components: - - type: Transform - pos: 25.5,-40.5 - parent: 2 - - uid: 4162 - components: - - type: Transform - pos: 26.5,-40.5 - parent: 2 - - uid: 4164 - components: - - type: Transform - pos: 26.5,-43.5 - parent: 2 - - uid: 4165 - components: - - type: Transform - pos: 26.5,-44.5 - parent: 2 - - uid: 4168 - components: - - type: Transform - pos: 29.5,-44.5 - parent: 2 - - uid: 4169 - components: - - type: Transform - pos: 30.5,-44.5 - parent: 2 - - uid: 4171 - components: - - type: Transform - pos: 32.5,-44.5 + pos: -55.5,42.5 parent: 2 - - uid: 4172 + - uid: 3618 components: - type: Transform - pos: 33.5,-44.5 + pos: 48.5,-19.5 parent: 2 - - uid: 4176 + - uid: 3619 components: - type: Transform - pos: 37.5,-44.5 + pos: 48.5,-21.5 parent: 2 - - uid: 4178 + - uid: 3620 components: - type: Transform - pos: 39.5,-44.5 + pos: 48.5,-22.5 parent: 2 - - uid: 4181 + - uid: 3623 components: - type: Transform - pos: 40.5,-42.5 + pos: -22.5,-41.5 parent: 2 - - uid: 4185 + - uid: 3628 components: - type: Transform - pos: 40.5,-38.5 + pos: 53.5,-19.5 parent: 2 - - uid: 4186 + - uid: 3634 components: - type: Transform - pos: 40.5,-37.5 + pos: 43.5,-27.5 parent: 2 - - uid: 4188 + - uid: 3655 components: - type: Transform - pos: 40.5,-35.5 + pos: -19.5,-2.5 parent: 2 - - uid: 4193 + - uid: 3679 components: - type: Transform - pos: 41.5,-31.5 + rot: -1.5707963267948966 rad + pos: -37.5,44.5 parent: 2 - - uid: 4197 + - uid: 3681 components: - type: Transform - pos: 43.5,-29.5 + rot: -1.5707963267948966 rad + pos: -34.5,44.5 parent: 2 - - uid: 4198 + - uid: 3683 components: - type: Transform - pos: 43.5,-28.5 + pos: -27.5,-19.5 parent: 2 - - uid: 4202 + - uid: 3693 components: - type: Transform - pos: -22.5,23.5 + rot: -1.5707963267948966 rad + pos: -38.5,44.5 parent: 2 - - uid: 4208 + - uid: 3694 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-18.5 - parent: 2 - - uid: 4328 - components: - - type: Transform - pos: -5.5,45.5 - parent: 2 - - uid: 4345 - components: - - type: Transform - pos: -6.5,45.5 - parent: 2 - - uid: 4354 - components: - - type: Transform - pos: -8.5,45.5 - parent: 2 - - uid: 4364 - components: - - type: Transform - pos: 47.5,-20.5 - parent: 2 - - uid: 4370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,16.5 + pos: -22.5,49.5 parent: 2 - - uid: 4400 + - uid: 3695 components: - type: Transform - pos: 19.5,30.5 + rot: 3.141592653589793 rad + pos: -30.5,47.5 parent: 2 - - uid: 4401 + - uid: 3696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,16.5 + rot: 3.141592653589793 rad + pos: -30.5,50.5 parent: 2 - - uid: 4402 + - uid: 3697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,16.5 + rot: 3.141592653589793 rad + pos: -75.5,24.5 parent: 2 - - uid: 4403 + - uid: 3698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,16.5 + rot: 3.141592653589793 rad + pos: -75.5,29.5 parent: 2 - - uid: 4404 + - uid: 3714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,16.5 + rot: 3.141592653589793 rad + pos: -75.5,28.5 parent: 2 - - uid: 4408 + - uid: 3716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,9.5 + rot: 3.141592653589793 rad + pos: -75.5,23.5 parent: 2 - - uid: 4424 + - uid: 3721 components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,27.5 + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,43.5 parent: 2 - - uid: 4432 + - uid: 3762 components: - type: Transform - pos: 18.5,30.5 + pos: -27.5,2.5 parent: 2 - - uid: 4436 + - uid: 3766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 + pos: 26.5,-41.5 parent: 2 - - uid: 4437 + - uid: 3771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,19.5 + pos: 29.5,-36.5 parent: 2 - - uid: 4438 + - uid: 3869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,20.5 + pos: 45.5,-6.5 parent: 2 - - uid: 4439 + - uid: 3897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,21.5 + pos: 45.5,-7.5 parent: 2 - - uid: 4440 + - uid: 3928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,21.5 + pos: 45.5,-4.5 parent: 2 - - uid: 4441 + - uid: 3929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,21.5 + pos: 28.5,30.5 parent: 2 - - uid: 4442 + - uid: 3955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,21.5 + rot: 1.5707963267948966 rad + pos: 9.5,0.5 parent: 2 - - uid: 4444 + - uid: 3968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,21.5 + pos: -22.5,7.5 parent: 2 - - uid: 4445 + - uid: 4006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,21.5 + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 parent: 2 - - uid: 4446 + - uid: 4007 components: - type: Transform - pos: -16.5,20.5 + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 parent: 2 - - uid: 4447 + - uid: 4008 components: - type: Transform - pos: -16.5,18.5 + rot: 1.5707963267948966 rad + pos: 2.5,0.5 parent: 2 - - uid: 4448 + - uid: 4057 components: - type: Transform - pos: -16.5,19.5 + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 parent: 2 - - uid: 4449 + - uid: 4058 components: - type: Transform - pos: -16.5,17.5 + rot: 1.5707963267948966 rad + pos: 14.5,-0.5 parent: 2 - - uid: 4457 + - uid: 4059 components: - type: Transform - pos: 51.5,-22.5 + pos: -15.5,-20.5 parent: 2 - - uid: 4459 + - uid: 4060 components: - type: Transform - pos: -34.5,9.5 + rot: 3.141592653589793 rad + pos: -71.5,34.5 parent: 2 - - uid: 4469 + - uid: 4061 components: - type: Transform - pos: -29.5,8.5 + rot: 3.141592653589793 rad + pos: -71.5,38.5 parent: 2 - - uid: 4542 + - uid: 4062 components: - type: Transform - pos: 47.5,-21.5 + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 parent: 2 - - uid: 4552 + - uid: 4063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-16.5 + pos: -3.5,-23.5 parent: 2 - - uid: 4553 + - uid: 4064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-18.5 + pos: 9.5,-24.5 parent: 2 - - uid: 4554 + - uid: 4079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-17.5 + pos: 10.5,-24.5 parent: 2 - - uid: 4575 + - uid: 4115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,12.5 + pos: 6.5,-24.5 parent: 2 - - uid: 4609 + - uid: 4121 components: - type: Transform - pos: -22.5,6.5 + pos: -25.5,-8.5 parent: 2 - - uid: 4634 + - uid: 4134 components: - type: Transform - pos: -21.5,7.5 + pos: -31.5,-36.5 parent: 2 - - uid: 4639 + - uid: 4135 components: - type: Transform - pos: 44.5,-18.5 + pos: -32.5,-35.5 parent: 2 - - uid: 4655 + - uid: 4137 components: - type: Transform - pos: -15.5,21.5 + pos: 11.5,-17.5 parent: 2 - - uid: 4680 + - uid: 4139 components: - type: Transform - pos: -18.5,27.5 + pos: 11.5,-24.5 parent: 2 - - uid: 4704 + - uid: 4140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,12.5 + rot: 1.5707963267948966 rad + pos: 18.5,-12.5 parent: 2 - - uid: 4705 + - uid: 4145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,11.5 + pos: 33.5,-11.5 parent: 2 - - uid: 4706 + - uid: 4152 components: - type: Transform - pos: -20.5,27.5 + pos: -28.5,19.5 parent: 2 - - uid: 4710 + - uid: 4153 components: - type: Transform - pos: -21.5,27.5 + pos: 2.5,-17.5 parent: 2 - - uid: 4740 + - uid: 4154 components: - type: Transform - pos: -10.5,49.5 + pos: 21.5,-37.5 parent: 2 - - uid: 4755 + - uid: 4155 components: - type: Transform - pos: -21.5,6.5 + pos: 21.5,-38.5 parent: 2 - - uid: 4760 + - uid: 4157 components: - type: Transform - pos: -23.5,6.5 + pos: 42.5,-12.5 parent: 2 - - uid: 4761 + - uid: 4158 components: - type: Transform - pos: -24.5,6.5 + pos: 22.5,-40.5 parent: 2 - - uid: 4762 + - uid: 4159 components: - type: Transform - pos: -25.5,6.5 + pos: 23.5,-40.5 parent: 2 - - uid: 4763 + - uid: 4160 components: - type: Transform - pos: -25.5,7.5 + pos: 24.5,-40.5 parent: 2 - - uid: 4764 + - uid: 4161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,9.5 + pos: 25.5,-40.5 parent: 2 - - uid: 4765 + - uid: 4162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,10.5 + pos: 26.5,-40.5 parent: 2 - - uid: 4766 + - uid: 4163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,11.5 + pos: -31.5,-40.5 parent: 2 - - uid: 4767 + - uid: 4164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,12.5 + pos: 26.5,-43.5 parent: 2 - - uid: 4768 + - uid: 4165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,12.5 + pos: 26.5,-44.5 parent: 2 - - uid: 4769 + - uid: 4168 components: - type: Transform - pos: -25.5,8.5 + pos: 29.5,-44.5 parent: 2 - - uid: 4771 + - uid: 4169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,10.5 + pos: 30.5,-44.5 parent: 2 - - uid: 4793 + - uid: 4171 components: - type: Transform - pos: -29.5,19.5 + pos: 32.5,-44.5 parent: 2 - - uid: 4795 + - uid: 4172 components: - type: Transform - pos: -32.5,19.5 + pos: 33.5,-44.5 parent: 2 - - uid: 4796 + - uid: 4173 components: - type: Transform - pos: -33.5,19.5 + pos: 44.5,-12.5 parent: 2 - - uid: 4798 + - uid: 4174 components: - type: Transform - pos: -9.5,49.5 + pos: 2.5,-20.5 parent: 2 - - uid: 4799 + - uid: 4175 components: - type: Transform - pos: -8.5,49.5 + pos: 2.5,-21.5 parent: 2 - - uid: 4800 + - uid: 4176 components: - type: Transform - pos: -8.5,48.5 + pos: 37.5,-44.5 parent: 2 - - uid: 4801 + - uid: 4177 components: - type: Transform - pos: -8.5,47.5 + pos: 33.5,-16.5 parent: 2 - - uid: 4802 + - uid: 4178 components: - type: Transform - pos: -8.5,46.5 + pos: 39.5,-44.5 parent: 2 - - uid: 4803 + - uid: 4179 components: - type: Transform - pos: 4.5,-10.5 + pos: 1.5,-17.5 parent: 2 - - uid: 4808 + - uid: 4180 components: - type: Transform - pos: -34.5,8.5 + pos: -3.5,-17.5 parent: 2 - - uid: 4809 + - uid: 4181 components: - type: Transform - pos: -33.5,8.5 + pos: 40.5,-42.5 parent: 2 - - uid: 4810 + - uid: 4182 components: - type: Transform - pos: -22.5,20.5 + pos: 13.5,-24.5 parent: 2 - - uid: 4811 + - uid: 4183 components: - type: Transform - pos: -22.5,19.5 + pos: 10.5,-17.5 parent: 2 - - uid: 4812 + - uid: 4184 components: - type: Transform - pos: -23.5,19.5 + rot: 1.5707963267948966 rad + pos: 18.5,-13.5 parent: 2 - - uid: 4881 + - uid: 4185 components: - type: Transform - pos: -1.5,46.5 + pos: 40.5,-38.5 parent: 2 - - uid: 4885 + - uid: 4186 components: - type: Transform - pos: -27.5,19.5 + pos: 40.5,-37.5 parent: 2 - - uid: 4924 + - uid: 4187 components: - type: Transform - pos: 28.5,13.5 + pos: 28.5,16.5 parent: 2 - - uid: 4925 + - uid: 4188 components: - type: Transform - pos: 28.5,10.5 + pos: 40.5,-35.5 parent: 2 - - uid: 4930 + - uid: 4189 components: - type: Transform - pos: 28.5,12.5 + rot: 3.141592653589793 rad + pos: -75.5,34.5 parent: 2 - - uid: 4952 + - uid: 4190 components: - type: Transform - pos: -10.5,3.5 + pos: 21.5,-34.5 parent: 2 - - uid: 4958 + - uid: 4192 components: - type: Transform - pos: -18.5,30.5 + pos: 25.5,16.5 parent: 2 - - uid: 4982 + - uid: 4193 components: - type: Transform - pos: -5.5,49.5 + pos: 41.5,-31.5 parent: 2 - - uid: 4983 + - uid: 4194 components: - type: Transform - pos: -5.5,48.5 + pos: 25.5,30.5 parent: 2 - - uid: 4984 + - uid: 4196 components: - type: Transform - pos: -5.5,47.5 + pos: 21.5,-35.5 parent: 2 - - uid: 4985 + - uid: 4197 components: - type: Transform - pos: -5.5,46.5 + pos: 43.5,-29.5 parent: 2 - - uid: 4992 + - uid: 4198 components: - type: Transform - pos: -4.5,-2.5 + pos: 43.5,-28.5 parent: 2 - - uid: 4993 + - uid: 4199 components: - type: Transform - pos: -3.5,-2.5 + pos: -32.5,-40.5 parent: 2 - - uid: 5001 + - uid: 4200 components: - type: Transform - pos: 5.5,49.5 + pos: 40.5,-2.5 parent: 2 - - uid: 5036 + - uid: 4202 components: - type: Transform - pos: -75.5,32.5 + pos: -22.5,23.5 parent: 2 - - uid: 5037 + - uid: 4204 components: - type: Transform - pos: 20.5,34.5 + pos: 40.5,-3.5 parent: 2 - - uid: 5043 + - uid: 4205 components: - type: Transform - pos: 1.5,47.5 + pos: 2.5,-22.5 parent: 2 - - uid: 5044 + - uid: 4208 components: - type: Transform - pos: 2.5,47.5 + rot: 3.141592653589793 rad + pos: 51.5,-18.5 parent: 2 - - uid: 5045 + - uid: 4209 components: - type: Transform - pos: 3.5,47.5 + pos: -3.5,-24.5 parent: 2 - - uid: 5049 + - uid: 4213 components: - type: Transform - pos: 7.5,47.5 + pos: 1.5,-24.5 parent: 2 - - uid: 5050 + - uid: 4214 components: - type: Transform - pos: 8.5,47.5 + rot: 1.5707963267948966 rad + pos: -6.5,-13.5 parent: 2 - - uid: 5062 + - uid: 4215 components: - type: Transform - pos: -10.5,52.5 + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 parent: 2 - - uid: 5063 + - uid: 4216 components: - type: Transform - pos: -11.5,52.5 + rot: 1.5707963267948966 rad + pos: 14.5,-11.5 parent: 2 - - uid: 5064 + - uid: 4218 components: - type: Transform - pos: -12.5,52.5 + rot: 1.5707963267948966 rad + pos: -5.5,6.5 parent: 2 - - uid: 5071 + - uid: 4219 components: - type: Transform - pos: -18.5,51.5 + rot: 1.5707963267948966 rad + pos: 11.5,-11.5 parent: 2 - - uid: 5072 + - uid: 4229 components: - type: Transform - pos: -18.5,50.5 + pos: 28.5,15.5 parent: 2 - - uid: 5075 + - uid: 4232 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,49.5 + pos: -5.5,-13.5 parent: 2 - - uid: 5127 + - uid: 4234 components: - type: Transform - pos: -19.5,30.5 + rot: 1.5707963267948966 rad + pos: 18.5,-0.5 parent: 2 - - uid: 5139 + - uid: 4236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-33.5 + rot: 1.5707963267948966 rad + pos: 18.5,4.5 parent: 2 - - uid: 5167 + - uid: 4237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-18.5 + rot: 1.5707963267948966 rad + pos: 17.5,6.5 parent: 2 - - uid: 5207 + - uid: 4238 components: - type: Transform - pos: -30.5,23.5 + rot: 1.5707963267948966 rad + pos: -6.5,6.5 parent: 2 - - uid: 5229 + - uid: 4239 components: - type: Transform - pos: -18.5,28.5 + rot: 1.5707963267948966 rad + pos: -6.5,-1.5 parent: 2 - - uid: 5234 + - uid: 4240 components: - type: Transform - pos: -13.5,4.5 + pos: -1.5,-21.5 parent: 2 - - uid: 5235 + - uid: 4291 components: - type: Transform - pos: -12.5,4.5 + pos: 28.5,-21.5 parent: 2 - - uid: 5236 + - uid: 4293 components: - type: Transform - pos: -11.5,4.5 + pos: 28.5,-18.5 parent: 2 - - uid: 5283 + - uid: 4303 components: - type: Transform - pos: -10.5,4.5 + rot: 1.5707963267948966 rad + pos: 11.5,-12.5 parent: 2 - - uid: 5285 + - uid: 4311 components: - type: Transform - pos: -10.5,2.5 + rot: 1.5707963267948966 rad + pos: 18.5,0.5 parent: 2 - - uid: 5286 + - uid: 4316 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,42.5 + pos: -6.5,-11.5 parent: 2 - - uid: 5343 + - uid: 4322 components: - type: Transform - pos: -37.5,44.5 + pos: -1.5,-18.5 parent: 2 - - uid: 5360 + - uid: 4328 components: - type: Transform - pos: -17.5,3.5 + pos: -5.5,45.5 parent: 2 - - uid: 5370 + - uid: 4345 components: - type: Transform - pos: -39.5,11.5 + pos: -6.5,45.5 parent: 2 - - uid: 5371 + - uid: 4352 components: - type: Transform - pos: -39.5,12.5 + rot: 1.5707963267948966 rad + pos: -6.5,0.5 parent: 2 - - uid: 5372 + - uid: 4354 components: - type: Transform - pos: -41.5,14.5 + pos: -8.5,45.5 parent: 2 - - uid: 5376 + - uid: 4357 components: - type: Transform - pos: 3.5,49.5 + pos: 40.5,-5.5 parent: 2 - - uid: 5379 + - uid: 4364 components: - type: Transform - pos: -41.5,19.5 + pos: 47.5,-20.5 parent: 2 - - uid: 5380 + - uid: 4370 components: - type: Transform - pos: -41.5,21.5 + rot: -1.5707963267948966 rad + pos: -10.5,16.5 parent: 2 - - uid: 5386 + - uid: 4400 components: - type: Transform - pos: -39.5,26.5 + pos: 19.5,30.5 parent: 2 - - uid: 5390 + - uid: 4401 components: - type: Transform - pos: -42.5,27.5 + rot: -1.5707963267948966 rad + pos: -13.5,16.5 parent: 2 - - uid: 5391 + - uid: 4402 components: - type: Transform - pos: -43.5,27.5 + rot: -1.5707963267948966 rad + pos: -14.5,16.5 parent: 2 - - uid: 5392 + - uid: 4403 components: - type: Transform - pos: -44.5,27.5 + rot: -1.5707963267948966 rad + pos: -15.5,16.5 parent: 2 - - uid: 5396 + - uid: 4404 components: - type: Transform - pos: -48.5,27.5 + rot: -1.5707963267948966 rad + pos: -16.5,16.5 parent: 2 - - uid: 5399 + - uid: 4413 components: - type: Transform - pos: -51.5,27.5 + pos: 24.5,-10.5 parent: 2 - - uid: 5403 + - uid: 4424 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,19.5 + pos: 27.5,27.5 parent: 2 - - uid: 5404 + - uid: 4426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,12.5 + pos: 23.5,-10.5 parent: 2 - - uid: 5405 + - uid: 4432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,11.5 + pos: 18.5,30.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,18.5 parent: 2 - - uid: 5411 + - uid: 4437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,21.5 + rot: -1.5707963267948966 rad + pos: -10.5,19.5 parent: 2 - - uid: 5413 + - uid: 4438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,19.5 + rot: -1.5707963267948966 rad + pos: -10.5,20.5 parent: 2 - - uid: 5439 + - uid: 4439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,9.5 + rot: -1.5707963267948966 rad + pos: -11.5,21.5 parent: 2 - - uid: 5447 + - uid: 4440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,26.5 + rot: -1.5707963267948966 rad + pos: -10.5,21.5 parent: 2 - - uid: 5448 + - uid: 4441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,27.5 + rot: -1.5707963267948966 rad + pos: -13.5,21.5 parent: 2 - - uid: 5463 + - uid: 4442 components: - type: Transform - pos: -57.5,21.5 + rot: -1.5707963267948966 rad + pos: -12.5,21.5 parent: 2 - - uid: 5467 + - uid: 4444 components: - type: Transform - pos: -77.5,23.5 + rot: -1.5707963267948966 rad + pos: -14.5,21.5 parent: 2 - - uid: 5471 + - uid: 4445 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,13.5 + pos: -16.5,21.5 parent: 2 - - uid: 5515 + - uid: 4446 components: - type: Transform - pos: -26.5,52.5 + pos: -16.5,20.5 parent: 2 - - uid: 5519 + - uid: 4447 components: - type: Transform - pos: -30.5,52.5 + pos: -16.5,18.5 parent: 2 - - uid: 5524 + - uid: 4448 components: - type: Transform - pos: -0.5,-2.5 + pos: -16.5,19.5 parent: 2 - - uid: 5539 + - uid: 4449 components: - type: Transform - pos: -28.5,69.5 + pos: -16.5,17.5 parent: 2 - - uid: 5578 + - uid: 4457 components: - type: Transform - pos: -49.5,31.5 + pos: 51.5,-22.5 parent: 2 - - uid: 5580 + - uid: 4459 components: - type: Transform - pos: -51.5,31.5 + pos: -34.5,9.5 parent: 2 - - uid: 5582 + - uid: 4472 components: - type: Transform - pos: -53.5,31.5 + pos: 21.5,-25.5 parent: 2 - - uid: 5586 + - uid: 4483 components: - type: Transform - pos: -34.5,44.5 + pos: 20.5,-25.5 parent: 2 - - uid: 5590 + - uid: 4515 components: - type: Transform - pos: -56.5,9.5 + pos: 41.5,-9.5 parent: 2 - - uid: 5595 + - uid: 4516 components: - type: Transform - pos: -56.5,7.5 + pos: 45.5,-14.5 parent: 2 - - uid: 5608 + - uid: 4542 components: - type: Transform - pos: -57.5,10.5 + pos: 45.5,-16.5 parent: 2 - - uid: 5644 + - uid: 4627 components: - type: Transform - pos: -38.5,44.5 + pos: 45.5,-17.5 parent: 2 - - uid: 5647 + - uid: 4639 components: - type: Transform - pos: -41.5,44.5 + pos: 44.5,-18.5 parent: 2 - - uid: 5649 + - uid: 4645 components: - type: Transform - pos: -42.5,44.5 + pos: 45.5,-9.5 parent: 2 - - uid: 5688 + - uid: 4655 components: - type: Transform - pos: -29.5,52.5 + pos: -15.5,21.5 parent: 2 - - uid: 5689 + - uid: 4658 components: - type: Transform - pos: -27.5,52.5 + pos: 49.5,-14.5 parent: 2 - - uid: 5690 + - uid: 4680 components: - type: Transform - pos: 0.5,-2.5 + pos: -18.5,27.5 parent: 2 - - uid: 5723 + - uid: 4689 components: - type: Transform - pos: -49.5,32.5 + pos: -22.5,10.5 parent: 2 - - uid: 5725 + - uid: 4697 components: - type: Transform - pos: -49.5,33.5 + pos: 42.5,-7.5 parent: 2 - - uid: 5726 + - uid: 4701 components: - type: Transform - pos: -49.5,34.5 + pos: 42.5,-2.5 parent: 2 - - uid: 5727 + - uid: 4710 components: - type: Transform - pos: -49.5,35.5 + pos: -21.5,27.5 parent: 2 - - uid: 5728 + - uid: 4719 components: - type: Transform - pos: -49.5,36.5 + rot: 1.5707963267948966 rad + pos: -19.5,27.5 parent: 2 - - uid: 5729 + - uid: 4740 components: - type: Transform - pos: -49.5,37.5 + pos: -10.5,49.5 parent: 2 - - uid: 5730 + - uid: 4743 components: - type: Transform - pos: -49.5,38.5 + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 parent: 2 - - uid: 5731 + - uid: 4744 components: - type: Transform - pos: -49.5,39.5 + pos: 46.5,-9.5 parent: 2 - - uid: 5734 + - uid: 4753 components: - type: Transform - pos: -49.5,42.5 + pos: 49.5,-9.5 parent: 2 - - uid: 5735 + - uid: 4769 components: - type: Transform - pos: -27.5,69.5 + rot: -1.5707963267948966 rad + pos: -25.5,11.5 parent: 2 - - uid: 5737 + - uid: 4782 components: - type: Transform - pos: 4.5,-8.5 + rot: -1.5707963267948966 rad + pos: -10.5,5.5 parent: 2 - - uid: 5740 + - uid: 4784 components: - type: Transform - pos: -28.5,8.5 + rot: -1.5707963267948966 rad + pos: -26.5,7.5 parent: 2 - - uid: 5779 + - uid: 4787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,49.5 + rot: -1.5707963267948966 rad + pos: -25.5,7.5 parent: 2 - - uid: 5780 + - uid: 4791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,49.5 + pos: -31.5,8.5 parent: 2 - - uid: 5781 + - uid: 4793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,49.5 + pos: -29.5,19.5 parent: 2 - - uid: 5782 + - uid: 4795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,49.5 + pos: -32.5,19.5 parent: 2 - - uid: 5783 + - uid: 4796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,49.5 + pos: -33.5,19.5 parent: 2 - - uid: 5805 + - uid: 4798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,27.5 + pos: -9.5,49.5 parent: 2 - - uid: 5808 + - uid: 4799 components: - type: Transform - pos: -30.5,45.5 + pos: -8.5,49.5 parent: 2 - - uid: 5809 + - uid: 4800 components: - type: Transform - pos: -30.5,46.5 + pos: -8.5,48.5 parent: 2 - - uid: 5810 + - uid: 4801 components: - type: Transform - pos: -30.5,47.5 + pos: -8.5,47.5 parent: 2 - - uid: 5813 + - uid: 4802 components: - type: Transform - pos: -30.5,50.5 + pos: -8.5,46.5 parent: 2 - - uid: 5820 + - uid: 4803 components: - type: Transform - pos: -72.5,7.5 + pos: 4.5,-10.5 parent: 2 - - uid: 5830 + - uid: 4807 components: - type: Transform - pos: -29.5,56.5 + pos: 50.5,-9.5 parent: 2 - - uid: 5831 + - uid: 4808 components: - type: Transform - pos: -27.5,56.5 + pos: -34.5,8.5 parent: 2 - - uid: 5835 + - uid: 4809 components: - type: Transform - pos: -27.5,57.5 + pos: -33.5,8.5 parent: 2 - - uid: 5836 + - uid: 4811 components: - type: Transform - pos: -27.5,58.5 + pos: -22.5,19.5 parent: 2 - - uid: 5837 + - uid: 4812 components: - type: Transform - pos: -29.5,58.5 + pos: -24.5,-11.5 parent: 2 - - uid: 5838 + - uid: 4816 components: - type: Transform - pos: -29.5,57.5 + pos: -27.5,-15.5 parent: 2 - - uid: 5840 + - uid: 4818 components: - type: Transform - pos: -30.5,58.5 + pos: -33.5,-40.5 parent: 2 - - uid: 5841 + - uid: 4822 components: - type: Transform - pos: -31.5,58.5 + pos: -37.5,-40.5 parent: 2 - - uid: 5845 + - uid: 4823 components: - type: Transform - pos: -26.5,58.5 + pos: -30.5,-21.5 parent: 2 - - uid: 5846 + - uid: 4827 components: - type: Transform - pos: -25.5,58.5 + pos: -38.5,-11.5 parent: 2 - - uid: 5847 + - uid: 4828 components: - type: Transform - pos: -24.5,58.5 + pos: -32.5,-11.5 parent: 2 - - uid: 5848 + - uid: 4830 components: - type: Transform - pos: -23.5,58.5 + pos: -39.5,-29.5 parent: 2 - - uid: 5849 + - uid: 4831 components: - type: Transform - pos: -23.5,59.5 + pos: -38.5,-23.5 parent: 2 - - uid: 5850 + - uid: 4832 components: - type: Transform - pos: -23.5,60.5 + pos: -32.5,-21.5 parent: 2 - - uid: 5851 + - uid: 4833 components: - type: Transform - pos: -23.5,61.5 + pos: -38.5,-25.5 parent: 2 - - uid: 5852 + - uid: 4834 components: - type: Transform - pos: -22.5,61.5 + pos: 46.5,-14.5 parent: 2 - - uid: 5853 + - uid: 4842 components: - type: Transform - pos: -21.5,61.5 + pos: -30.5,-23.5 parent: 2 - - uid: 5854 + - uid: 4848 components: - type: Transform - pos: -20.5,61.5 + pos: -25.5,-11.5 parent: 2 - - uid: 5855 + - uid: 4849 components: - type: Transform - pos: -20.5,65.5 + pos: -36.5,-11.5 parent: 2 - - uid: 5856 + - uid: 4852 components: - type: Transform - pos: -21.5,65.5 + pos: -38.5,-13.5 parent: 2 - - uid: 5857 + - uid: 4857 components: - type: Transform - pos: -22.5,65.5 + pos: -38.5,-14.5 parent: 2 - - uid: 5858 + - uid: 4863 components: - type: Transform - pos: -23.5,65.5 + rot: 3.141592653589793 rad + pos: -34.5,19.5 parent: 2 - - uid: 5859 + - uid: 4864 components: - type: Transform - pos: -24.5,65.5 + pos: 48.5,-14.5 parent: 2 - - uid: 5860 + - uid: 4869 components: - type: Transform - pos: -25.5,65.5 + pos: 48.5,-18.5 parent: 2 - - uid: 5868 + - uid: 4881 components: - type: Transform - pos: -29.5,69.5 + pos: -1.5,46.5 parent: 2 - - uid: 5869 + - uid: 4885 components: - type: Transform - pos: -30.5,65.5 + pos: 53.5,-18.5 parent: 2 - - uid: 5870 + - uid: 4892 components: - type: Transform - pos: -29.5,65.5 + pos: -23.5,7.5 parent: 2 - - uid: 5871 + - uid: 4893 components: - type: Transform - pos: -25.5,69.5 + pos: -22.5,9.5 parent: 2 - - uid: 5872 + - uid: 4905 components: - type: Transform - pos: -31.5,65.5 + pos: -33.5,-11.5 parent: 2 - - uid: 5873 + - uid: 4907 components: - type: Transform - pos: -32.5,65.5 + pos: -38.5,-12.5 parent: 2 - - uid: 5874 + - uid: 4909 components: - type: Transform - pos: -33.5,65.5 + pos: -35.5,-11.5 parent: 2 - - uid: 5875 + - uid: 4914 components: - type: Transform - pos: -33.5,64.5 + pos: -32.5,-14.5 parent: 2 - - uid: 5876 + - uid: 4916 components: - type: Transform - pos: -33.5,63.5 + pos: -38.5,-21.5 parent: 2 - - uid: 5877 + - uid: 4917 components: - type: Transform - pos: -33.5,62.5 + pos: -38.5,-15.5 parent: 2 - - uid: 5878 + - uid: 4918 components: - type: Transform - pos: -33.5,61.5 + pos: -32.5,-15.5 parent: 2 - - uid: 5941 + - uid: 4919 components: - type: Transform - pos: -12.5,65.5 + pos: -32.5,-23.5 parent: 2 - - uid: 5942 + - uid: 4920 components: - type: Transform - pos: -12.5,66.5 + pos: -32.5,-12.5 parent: 2 - - uid: 5943 + - uid: 4921 components: - type: Transform - pos: -12.5,67.5 + pos: -37.5,-11.5 parent: 2 - - uid: 5944 + - uid: 4923 components: - type: Transform - pos: -12.5,68.5 + pos: -34.5,-11.5 parent: 2 - - uid: 5945 + - uid: 4924 components: - type: Transform - pos: -12.5,69.5 + pos: 28.5,13.5 parent: 2 - - uid: 5951 + - uid: 4925 components: - type: Transform - pos: -42.5,69.5 + pos: 54.5,-18.5 parent: 2 - - uid: 5952 + - uid: 4930 components: - type: Transform - pos: -42.5,68.5 + pos: 28.5,12.5 parent: 2 - - uid: 5953 + - uid: 4937 components: - type: Transform - pos: -42.5,67.5 + pos: 54.5,-17.5 parent: 2 - - uid: 5954 + - uid: 4938 components: - type: Transform - pos: -42.5,66.5 + pos: 54.5,-15.5 parent: 2 - - uid: 5955 + - uid: 4952 components: - type: Transform - pos: -42.5,65.5 + pos: -10.5,3.5 parent: 2 - - uid: 6041 + - uid: 4958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-26.5 + pos: -18.5,30.5 parent: 2 - - uid: 6043 + - uid: 4959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-33.5 + pos: -32.5,-13.5 parent: 2 - - uid: 6046 + - uid: 4962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-26.5 + pos: -39.5,-23.5 parent: 2 - - uid: 6048 + - uid: 4964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-33.5 + pos: 54.5,-13.5 parent: 2 - - uid: 6059 + - uid: 4967 components: - type: Transform - pos: -75.5,24.5 + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 parent: 2 - - uid: 6061 + - uid: 4970 components: - type: Transform - pos: -59.5,13.5 + rot: 3.141592653589793 rad + pos: -22.5,21.5 parent: 2 - - uid: 6064 + - uid: 4972 components: - type: Transform - pos: -57.5,11.5 + pos: -32.5,-33.5 parent: 2 - - uid: 6068 + - uid: 4974 components: - type: Transform - pos: -57.5,16.5 + pos: 54.5,-9.5 parent: 2 - - uid: 6075 + - uid: 4977 components: - type: Transform - pos: -71.5,9.5 + pos: -35.5,-41.5 parent: 2 - - uid: 6087 + - uid: 4980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-26.5 + pos: -39.5,-15.5 parent: 2 - - uid: 6103 + - uid: 4981 components: - type: Transform - pos: -75.5,10.5 + rot: 3.141592653589793 rad + pos: -35.5,23.5 parent: 2 - - uid: 6125 + - uid: 4982 components: - type: Transform - pos: -77.5,21.5 + pos: -5.5,49.5 parent: 2 - - uid: 6127 + - uid: 4983 components: - type: Transform - pos: -71.5,26.5 + pos: -5.5,48.5 parent: 2 - - uid: 6129 + - uid: 4984 components: - type: Transform - pos: -68.5,27.5 + pos: -5.5,47.5 parent: 2 - - uid: 6207 + - uid: 4985 components: - type: Transform - pos: -75.5,29.5 + pos: -5.5,46.5 parent: 2 - - uid: 6210 + - uid: 4988 components: - type: Transform - pos: -75.5,28.5 + rot: 3.141592653589793 rad + pos: -35.5,19.5 parent: 2 - - uid: 6221 + - uid: 4992 components: - type: Transform - pos: 1.5,-2.5 + pos: -4.5,-2.5 parent: 2 - - uid: 6224 + - uid: 4993 components: - type: Transform - pos: 1.5,-3.5 + pos: -3.5,-2.5 parent: 2 - - uid: 6225 + - uid: 5026 components: - type: Transform - pos: 1.5,-5.5 + pos: 54.5,-6.5 parent: 2 - - uid: 6271 + - uid: 5029 components: - type: Transform - pos: -57.5,31.5 + pos: 50.5,-22.5 parent: 2 - - uid: 6272 + - uid: 5031 components: - type: Transform - pos: -56.5,31.5 + pos: 53.5,-22.5 parent: 2 - - uid: 6274 + - uid: 5035 components: - type: Transform - pos: -54.5,31.5 + pos: 53.5,-21.5 parent: 2 - - uid: 6332 + - uid: 5036 components: - type: Transform - pos: 47.5,-18.5 + pos: 53.5,-20.5 parent: 2 - - uid: 6353 + - uid: 5037 components: - type: Transform - pos: -30.5,29.5 + pos: 20.5,34.5 parent: 2 - - uid: 6384 + - uid: 5038 components: - type: Transform - pos: 1.5,-6.5 + pos: 47.5,-22.5 parent: 2 - - uid: 6385 + - uid: 5042 components: - type: Transform - pos: 2.5,-6.5 + pos: 44.5,-27.5 parent: 2 - - uid: 6386 + - uid: 5043 components: - type: Transform - pos: 3.5,-6.5 + pos: 1.5,47.5 parent: 2 - - uid: 6387 + - uid: 5044 components: - type: Transform - pos: 4.5,-6.5 + pos: 2.5,47.5 parent: 2 - - uid: 6388 + - uid: 5045 components: - type: Transform - pos: 4.5,-7.5 + pos: 3.5,47.5 parent: 2 - - uid: 6389 + - uid: 5046 components: - type: Transform - pos: 4.5,-9.5 + pos: 21.5,-30.5 parent: 2 - - uid: 6394 + - uid: 5047 components: - type: Transform - pos: -1.5,-2.5 + pos: 26.5,27.5 parent: 2 - - uid: 6416 + - uid: 5048 components: - type: Transform - pos: 20.5,35.5 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 parent: 2 - - uid: 6428 + - uid: 5049 components: - type: Transform - pos: 20.5,36.5 + pos: 7.5,47.5 parent: 2 - - uid: 6431 + - uid: 5050 components: - type: Transform - pos: 18.5,34.5 + pos: 8.5,47.5 parent: 2 - - uid: 6438 + - uid: 5051 components: - type: Transform - pos: 11.5,47.5 + pos: 26.5,16.5 parent: 2 - - uid: 6439 + - uid: 5052 components: - type: Transform - pos: 13.5,47.5 + pos: 21.5,-40.5 parent: 2 - - uid: 6441 + - uid: 5055 components: - type: Transform - pos: 12.5,47.5 + pos: 27.5,-44.5 parent: 2 - - uid: 6442 + - uid: 5056 components: - type: Transform - pos: 15.5,47.5 + pos: 28.5,-44.5 parent: 2 - - uid: 6443 + - uid: 5057 components: - type: Transform - pos: 16.5,47.5 + pos: 31.5,-44.5 parent: 2 - - uid: 6444 + - uid: 5058 components: - type: Transform - pos: 17.5,47.5 + pos: 34.5,-44.5 parent: 2 - - uid: 6446 + - uid: 5061 components: - type: Transform - pos: 20.5,44.5 + pos: 35.5,-44.5 parent: 2 - - uid: 6447 + - uid: 5062 components: - type: Transform - pos: 19.5,44.5 + pos: -10.5,52.5 parent: 2 - - uid: 6450 + - uid: 5063 components: - type: Transform - pos: 20.5,40.5 + pos: -11.5,52.5 parent: 2 - - uid: 6451 + - uid: 5064 components: - type: Transform - pos: 20.5,39.5 + pos: -12.5,52.5 parent: 2 - - uid: 6455 + - uid: 5065 components: - type: Transform - pos: 18.5,33.5 + pos: -31.5,-15.5 parent: 2 - - uid: 6456 + - uid: 5068 components: - type: Transform - pos: 18.5,32.5 + pos: 36.5,-44.5 parent: 2 - - uid: 6468 + - uid: 5069 components: - type: Transform - pos: 21.5,34.5 + pos: 38.5,-44.5 parent: 2 - - uid: 6469 + - uid: 5070 components: - type: Transform - pos: 21.5,32.5 + pos: 40.5,-44.5 parent: 2 - - uid: 6470 + - uid: 5071 components: - type: Transform - pos: 21.5,33.5 + pos: -18.5,51.5 parent: 2 - - uid: 6533 + - uid: 5072 components: - type: Transform - pos: -54.5,36.5 + pos: -18.5,50.5 parent: 2 - - uid: 6537 + - uid: 5073 components: - type: Transform - pos: -54.5,32.5 + pos: 40.5,-43.5 parent: 2 - - uid: 6540 + - uid: 5074 components: - type: Transform - pos: -54.5,34.5 + pos: 40.5,-41.5 parent: 2 - - uid: 6551 + - uid: 5075 components: - type: Transform - pos: -54.5,39.5 + pos: 40.5,-40.5 parent: 2 - - uid: 6573 + - uid: 5076 components: - type: Transform - pos: -57.5,37.5 + pos: 40.5,-39.5 parent: 2 - - uid: 6576 + - uid: 5106 components: - type: Transform - pos: -57.5,38.5 + pos: 40.5,-36.5 parent: 2 - - uid: 6580 + - uid: 5119 components: - type: Transform - pos: -50.5,39.5 + pos: -32.5,-20.5 parent: 2 - - uid: 6582 + - uid: 5120 components: - type: Transform - pos: -55.5,39.5 + pos: -32.5,-19.5 parent: 2 - - uid: 6583 + - uid: 5121 components: - type: Transform - pos: -57.5,39.5 + pos: -40.5,-15.5 parent: 2 - - uid: 6584 + - uid: 5122 components: - type: Transform - pos: -56.5,39.5 + pos: -40.5,-13.5 parent: 2 - - uid: 6585 + - uid: 5127 components: - type: Transform - pos: -57.5,36.5 + pos: -19.5,30.5 parent: 2 - - uid: 6590 + - uid: 5139 components: - type: Transform - pos: -30.5,27.5 + rot: -1.5707963267948966 rad + pos: 6.5,-33.5 parent: 2 - - uid: 6592 + - uid: 5166 components: - type: Transform - pos: -55.5,31.5 + pos: 41.5,-35.5 parent: 2 - - uid: 6594 + - uid: 5167 components: - type: Transform - pos: -57.5,32.5 + rot: 3.141592653589793 rad + pos: 45.5,-18.5 parent: 2 - - uid: 6607 + - uid: 5198 components: - type: Transform - pos: -60.5,39.5 + pos: 41.5,-34.5 parent: 2 - - uid: 6608 + - uid: 5201 components: - type: Transform - pos: -60.5,40.5 + pos: 41.5,-33.5 parent: 2 - - uid: 6621 + - uid: 5207 components: - type: Transform - pos: -51.5,42.5 + pos: -30.5,23.5 parent: 2 - - uid: 6670 + - uid: 5229 components: - type: Transform - pos: -31.5,27.5 + pos: -18.5,28.5 parent: 2 - - uid: 6673 + - uid: 5232 components: - type: Transform - pos: -32.5,27.5 + pos: -40.5,-12.5 parent: 2 - - uid: 6674 + - uid: 5233 components: - type: Transform - pos: -33.5,27.5 + pos: -40.5,-11.5 parent: 2 - - uid: 6675 + - uid: 5234 components: - type: Transform - pos: -34.5,27.5 + pos: -13.5,4.5 parent: 2 - - uid: 6808 + - uid: 5235 components: - type: Transform - pos: -53.5,18.5 + pos: -12.5,4.5 parent: 2 - - uid: 6814 + - uid: 5236 components: - type: Transform - pos: -59.5,18.5 + pos: -11.5,4.5 parent: 2 - - uid: 6816 + - uid: 5263 components: - type: Transform - pos: -74.5,9.5 + pos: -40.5,-10.5 parent: 2 - - uid: 6820 + - uid: 5267 components: - type: Transform - pos: -57.5,19.5 + pos: -40.5,-9.5 parent: 2 - - uid: 6829 + - uid: 5268 components: - type: Transform - pos: -54.5,9.5 + pos: 41.5,-32.5 parent: 2 - - uid: 6832 + - uid: 5270 components: - type: Transform - pos: -54.5,7.5 + pos: -39.5,-9.5 parent: 2 - - uid: 6845 + - uid: 5271 components: - type: Transform - pos: -75.5,23.5 + pos: 41.5,-30.5 parent: 2 - - uid: 6860 + - uid: 5273 components: - type: Transform - pos: -59.5,11.5 + pos: 40.5,-6.5 parent: 2 - - uid: 6862 + - uid: 5277 components: - type: Transform - pos: -59.5,16.5 + pos: 41.5,-29.5 parent: 2 - - uid: 6950 + - uid: 5278 components: - type: Transform - pos: -34.5,61.5 + pos: 42.5,-29.5 parent: 2 - - uid: 6972 + - uid: 5279 components: - type: Transform - pos: -34.5,59.5 + rot: 3.141592653589793 rad + pos: -18.5,49.5 parent: 2 - - uid: 6973 + - uid: 5283 components: - type: Transform - pos: -34.5,60.5 + pos: -10.5,4.5 parent: 2 - - uid: 6974 + - uid: 5284 components: - type: Transform - pos: -33.5,59.5 + pos: -36.5,-9.5 parent: 2 - - uid: 6975 + - uid: 5285 components: - type: Transform - pos: -33.5,58.5 + pos: -10.5,2.5 parent: 2 - - uid: 6976 + - uid: 5286 components: - type: Transform - pos: -32.5,58.5 + rot: 3.141592653589793 rad + pos: -20.5,49.5 parent: 2 - - uid: 7005 + - uid: 5287 components: - type: Transform - pos: -42.5,46.5 + rot: 3.141592653589793 rad + pos: -41.5,12.5 parent: 2 - - uid: 7011 + - uid: 5311 components: - type: Transform - pos: -49.5,46.5 + pos: -35.5,-9.5 parent: 2 - - uid: 7013 + - uid: 5315 components: - type: Transform - pos: -49.5,43.5 + rot: 3.141592653589793 rad + pos: -39.5,9.5 parent: 2 - - uid: 7015 + - uid: 5316 components: - type: Transform - pos: -27.5,-5.5 + pos: -34.5,-9.5 parent: 2 - - uid: 7017 + - uid: 5326 components: - type: Transform - pos: -31.5,0.5 + rot: 3.141592653589793 rad + pos: -39.5,10.5 parent: 2 - - uid: 7018 + - uid: 5327 components: - type: Transform - pos: -28.5,3.5 + pos: -33.5,-9.5 parent: 2 - - uid: 7025 + - uid: 5328 components: - type: Transform - pos: -31.5,2.5 + pos: -32.5,-9.5 parent: 2 - - uid: 7026 + - uid: 5329 components: - type: Transform - pos: -27.5,3.5 + pos: -31.5,-9.5 parent: 2 - - uid: 7027 + - uid: 5334 components: - type: Transform - pos: -27.5,0.5 + rot: 3.141592653589793 rad + pos: -39.5,14.5 parent: 2 - - uid: 7045 + - uid: 5337 components: - type: Transform - pos: -27.5,-1.5 + rot: 3.141592653589793 rad + pos: -39.5,19.5 parent: 2 - - uid: 7060 + - uid: 5338 components: - type: Transform - pos: -29.5,-0.5 + rot: 3.141592653589793 rad + pos: -39.5,21.5 parent: 2 - - uid: 7061 + - uid: 5339 components: - type: Transform - pos: -27.5,-0.5 + rot: 3.141592653589793 rad + pos: -39.5,27.5 parent: 2 - - uid: 7062 + - uid: 5342 components: - type: Transform - pos: -1.5,-6.5 + rot: 3.141592653589793 rad + pos: -40.5,27.5 parent: 2 - - uid: 7180 + - uid: 5343 components: - type: Transform - pos: -35.5,27.5 + rot: 3.141592653589793 rad + pos: -41.5,27.5 parent: 2 - - uid: 7336 + - uid: 5344 components: - type: Transform - pos: 25.5,-44.5 + rot: 3.141592653589793 rad + pos: -49.5,27.5 parent: 2 - - uid: 7340 + - uid: 5346 components: - type: Transform - pos: 21.5,-44.5 + pos: -30.5,-9.5 parent: 2 - - uid: 7342 + - uid: 5347 components: - type: Transform - pos: 21.5,-41.5 + rot: 3.141592653589793 rad + pos: -50.5,27.5 parent: 2 - - uid: 7578 + - uid: 5348 components: - type: Transform - pos: -5.5,51.5 + rot: 3.141592653589793 rad + pos: -52.5,27.5 parent: 2 - - uid: 7579 + - uid: 5349 components: - type: Transform - pos: -4.5,51.5 + pos: -30.5,-10.5 parent: 2 - - uid: 7580 + - uid: 5355 components: - type: Transform - pos: -2.5,51.5 + rot: 3.141592653589793 rad + pos: -53.5,27.5 parent: 2 - - uid: 7581 + - uid: 5356 components: - type: Transform - pos: -1.5,51.5 + rot: 3.141592653589793 rad + pos: -53.5,14.5 parent: 2 - - uid: 7582 + - uid: 5358 components: - type: Transform - pos: -57.5,13.5 + rot: 3.141592653589793 rad + pos: -53.5,9.5 parent: 2 - - uid: 7583 + - uid: 5360 components: - type: Transform - pos: -3.5,51.5 + pos: -30.5,-12.5 parent: 2 - - uid: 7592 + - uid: 5362 components: - type: Transform - pos: -1.5,48.5 + rot: 3.141592653589793 rad + pos: -53.5,10.5 parent: 2 - - uid: 7593 + - uid: 5363 components: - type: Transform - pos: -1.5,47.5 + rot: 3.141592653589793 rad + pos: -51.5,12.5 parent: 2 - - uid: 7632 + - uid: 5364 components: - type: Transform - pos: -21.5,-45.5 + rot: 3.141592653589793 rad + pos: -51.5,14.5 parent: 2 - - uid: 7633 + - uid: 5365 components: - type: Transform - pos: -27.5,-46.5 + rot: 3.141592653589793 rad + pos: -51.5,21.5 parent: 2 - - uid: 7634 + - uid: 5366 components: - type: Transform - pos: -25.5,-46.5 + rot: 3.141592653589793 rad + pos: -53.5,26.5 parent: 2 - - uid: 7635 + - uid: 5368 components: - type: Transform - pos: -24.5,-46.5 + pos: -30.5,-13.5 parent: 2 - - uid: 7638 + - uid: 5370 components: - type: Transform - pos: -26.5,-46.5 + pos: -39.5,11.5 parent: 2 - - uid: 7639 + - uid: 5371 components: - type: Transform - pos: -27.5,-45.5 + pos: -39.5,12.5 parent: 2 - - uid: 7679 + - uid: 5372 components: - type: Transform - pos: 0.5,46.5 + pos: -41.5,14.5 parent: 2 - - uid: 7738 + - uid: 5379 components: - type: Transform - pos: -57.5,14.5 + pos: -41.5,19.5 parent: 2 - - uid: 7769 + - uid: 5380 components: - type: Transform - pos: -49.5,47.5 + pos: -41.5,21.5 parent: 2 - - uid: 7770 + - uid: 5386 components: - type: Transform - pos: -47.5,47.5 + pos: -39.5,26.5 parent: 2 - - uid: 7771 + - uid: 5388 components: - type: Transform - pos: -48.5,47.5 + rot: -1.5707963267948966 rad + pos: -36.5,44.5 parent: 2 - - uid: 7775 + - uid: 5389 components: - type: Transform - pos: -43.5,47.5 + rot: -1.5707963267948966 rad + pos: -35.5,44.5 parent: 2 - - uid: 7776 + - uid: 5390 components: - type: Transform - pos: -42.5,47.5 + pos: -42.5,27.5 parent: 2 - - uid: 7802 + - uid: 5391 components: - type: Transform - pos: -35.5,28.5 + pos: -43.5,27.5 parent: 2 - - uid: 7826 + - uid: 5392 components: - type: Transform - pos: -59.5,21.5 + pos: -44.5,27.5 parent: 2 - - uid: 7874 + - uid: 5394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,11.5 + rot: -1.5707963267948966 rad + pos: -30.5,44.5 parent: 2 - - uid: 7888 + - uid: 5395 components: - type: Transform - pos: -52.5,43.5 + rot: -1.5707963267948966 rad + pos: -39.5,44.5 parent: 2 - - uid: 7903 + - uid: 5396 components: - type: Transform - pos: -52.5,45.5 + pos: -48.5,27.5 parent: 2 - - uid: 7904 + - uid: 5397 components: - type: Transform - pos: -52.5,44.5 + rot: -1.5707963267948966 rad + pos: -40.5,44.5 parent: 2 - - uid: 7905 + - uid: 5398 components: - type: Transform - pos: -51.5,45.5 + rot: 3.141592653589793 rad + pos: -74.5,34.5 parent: 2 - - uid: 7906 + - uid: 5399 components: - type: Transform - pos: -50.5,45.5 + pos: -51.5,27.5 parent: 2 - - uid: 7941 + - uid: 5400 components: - type: Transform - pos: -35.5,30.5 + rot: 3.141592653589793 rad + pos: -58.5,27.5 parent: 2 - - uid: 7979 + - uid: 5401 components: - type: Transform - pos: -35.5,31.5 + rot: 3.141592653589793 rad + pos: -21.5,49.5 parent: 2 - - uid: 8000 + - uid: 5403 components: - type: Transform - pos: 4.5,49.5 + rot: 1.5707963267948966 rad + pos: -53.5,19.5 parent: 2 - - uid: 8002 + - uid: 5404 components: - type: Transform - pos: -30.5,31.5 + rot: 1.5707963267948966 rad + pos: -53.5,12.5 parent: 2 - - uid: 8011 + - uid: 5405 components: - type: Transform - pos: 5.5,48.5 + rot: 1.5707963267948966 rad + pos: -53.5,11.5 parent: 2 - - uid: 8019 + - uid: 5406 components: - type: Transform - pos: -30.5,30.5 + rot: 3.141592653589793 rad + pos: -59.5,27.5 parent: 2 - - uid: 8058 + - uid: 5407 components: - type: Transform - pos: 45.5,-5.5 + rot: 3.141592653589793 rad + pos: -30.5,48.5 parent: 2 - - uid: 8060 + - uid: 5408 components: - type: Transform - pos: 45.5,-6.5 + rot: 3.141592653589793 rad + pos: -30.5,49.5 parent: 2 - - uid: 8070 + - uid: 5409 components: - type: Transform - pos: 45.5,-8.5 + rot: 3.141592653589793 rad + pos: -26.5,50.5 parent: 2 - - uid: 8075 + - uid: 5410 components: - type: Transform - pos: 53.5,-6.5 + rot: 3.141592653589793 rad + pos: -70.5,27.5 parent: 2 - - uid: 8076 + - uid: 5411 components: - type: Transform - pos: 52.5,-6.5 + rot: 1.5707963267948966 rad + pos: -53.5,21.5 parent: 2 - - uid: 8079 + - uid: 5413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-22.5 + rot: 1.5707963267948966 rad + pos: -51.5,19.5 parent: 2 - - uid: 8083 + - uid: 5439 components: - type: Transform - pos: 49.5,-18.5 + rot: 1.5707963267948966 rad + pos: -57.5,9.5 parent: 2 - - uid: 8084 + - uid: 5440 components: - type: Transform - pos: 45.5,-7.5 + rot: 3.141592653589793 rad + pos: -71.5,27.5 parent: 2 - - uid: 8085 + - uid: 5441 components: - type: Transform - pos: 51.5,-6.5 + rot: 3.141592653589793 rad + pos: -69.5,27.5 parent: 2 - - uid: 8086 + - uid: 5444 components: - type: Transform - pos: 50.5,-6.5 + rot: 3.141592653589793 rad + pos: -75.5,26.5 parent: 2 - - uid: 8089 + - uid: 5446 components: - type: Transform - pos: 50.5,-5.5 + rot: 3.141592653589793 rad + pos: -75.5,27.5 parent: 2 - - uid: 8095 + - uid: 5447 components: - type: Transform - pos: 45.5,-4.5 + rot: 1.5707963267948966 rad + pos: -57.5,26.5 parent: 2 - - uid: 8099 + - uid: 5448 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,30.5 + pos: -57.5,27.5 parent: 2 - - uid: 8103 + - uid: 5449 components: - type: Transform - pos: -10.5,1.5 + rot: 3.141592653589793 rad + pos: -75.5,30.5 parent: 2 - - uid: 8104 + - uid: 5454 components: - type: Transform - pos: -10.5,0.5 + rot: 3.141592653589793 rad + pos: -75.5,31.5 parent: 2 - - uid: 8106 + - uid: 5457 components: - type: Transform - pos: -10.5,-0.5 + rot: 3.141592653589793 rad + pos: -71.5,37.5 parent: 2 - - uid: 8116 + - uid: 5458 components: - type: Transform - pos: 13.5,48.5 + pos: 20.5,43.5 parent: 2 - - uid: 8125 + - uid: 5461 components: - type: Transform - pos: -31.5,31.5 + pos: 20.5,41.5 parent: 2 - - uid: 8138 + - uid: 5462 components: - type: Transform - pos: 13.5,49.5 + pos: 20.5,38.5 parent: 2 - - uid: 8181 + - uid: 5463 components: - type: Transform - pos: 14.5,49.5 + pos: -57.5,21.5 parent: 2 - - uid: 8191 + - uid: 5467 components: - type: Transform - pos: 15.5,49.5 + pos: -77.5,23.5 parent: 2 - - uid: 8255 + - uid: 5471 components: - type: Transform rot: -1.5707963267948966 rad - pos: -75.5,13.5 + pos: -77.5,13.5 parent: 2 - - uid: 8327 + - uid: 5473 components: - type: Transform - pos: 51.5,-2.5 + pos: 20.5,42.5 parent: 2 - - uid: 8330 + - uid: 5489 components: - type: Transform - pos: 51.5,-3.5 + pos: 20.5,37.5 parent: 2 - - uid: 8412 + - uid: 5490 components: - type: Transform - pos: -17.5,-45.5 + rot: 3.141592653589793 rad + pos: -73.5,34.5 parent: 2 - - uid: 8415 + - uid: 5493 components: - type: Transform - pos: 15.5,48.5 + rot: 3.141592653589793 rad + pos: -60.5,38.5 parent: 2 - - uid: 8476 + - uid: 5494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,15.5 + rot: 3.141592653589793 rad + pos: -60.5,41.5 parent: 2 - - uid: 8477 + - uid: 5515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,11.5 + pos: -26.5,52.5 parent: 2 - - uid: 8478 + - uid: 5519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,19.5 + pos: -30.5,52.5 parent: 2 - - uid: 8479 + - uid: 5520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,15.5 + rot: 3.141592653589793 rad + pos: -60.5,42.5 parent: 2 - - uid: 8480 + - uid: 5523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,19.5 + rot: 3.141592653589793 rad + pos: -57.5,42.5 parent: 2 - - uid: 8494 + - uid: 5524 components: - type: Transform - pos: -71.5,11.5 + pos: -0.5,-2.5 parent: 2 - - uid: 8512 + - uid: 5527 components: - type: Transform - pos: -71.5,19.5 + rot: 3.141592653589793 rad + pos: -58.5,42.5 parent: 2 - - uid: 8635 + - uid: 5539 components: - type: Transform - pos: -26.5,-5.5 + pos: -28.5,69.5 parent: 2 - - uid: 8721 + - uid: 5547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,17.5 + rot: 3.141592653589793 rad + pos: -56.5,42.5 parent: 2 - - uid: 8724 + - uid: 5553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,28.5 + rot: 3.141592653589793 rad + pos: -53.5,42.5 parent: 2 - - uid: 8725 + - uid: 5554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,29.5 + rot: 3.141592653589793 rad + pos: -52.5,42.5 parent: 2 - - uid: 8729 + - uid: 5565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,28.5 + pos: 44.5,-14.5 parent: 2 - - uid: 9450 + - uid: 5567 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,-19.5 + pos: -62.5,38.5 parent: 2 - - uid: 9454 + - uid: 5568 components: - type: Transform - pos: 44.5,-20.5 + rot: 3.141592653589793 rad + pos: -49.5,44.5 parent: 2 - - uid: 9743 + - uid: 5571 components: - type: Transform - pos: -14.5,4.5 + rot: 3.141592653589793 rad + pos: -49.5,45.5 parent: 2 - - uid: 10241 + - uid: 5578 components: - type: Transform - pos: 9.5,-17.5 + pos: -49.5,31.5 parent: 2 - - uid: 10930 + - uid: 5580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,2.5 + pos: -51.5,31.5 parent: 2 - - uid: 10951 + - uid: 5581 components: - type: Transform - pos: -1.5,-13.5 + pos: 24.5,-44.5 parent: 2 - - uid: 11880 + - uid: 5582 components: - type: Transform - pos: -6.5,-10.5 + pos: -53.5,31.5 parent: 2 - - uid: 11902 + - uid: 5586 components: - type: Transform - pos: 1.5,6.5 + pos: 23.5,-44.5 parent: 2 - - uid: 11904 + - uid: 5590 components: - type: Transform - pos: 0.5,6.5 + pos: -56.5,9.5 parent: 2 - - uid: 11955 + - uid: 5592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 + pos: 22.5,-44.5 parent: 2 - - uid: 12033 + - uid: 5593 components: - type: Transform - pos: -3.5,6.5 + pos: 21.5,-43.5 parent: 2 - - uid: 12073 + - uid: 5594 components: - type: Transform - pos: -1.5,6.5 + rot: 3.141592653589793 rad + pos: -65.5,38.5 parent: 2 - - uid: 12391 + - uid: 5595 components: - type: Transform - pos: -0.5,6.5 + pos: -56.5,7.5 parent: 2 - - uid: 12407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,11.5 - parent: 16200 - - uid: 12457 + - uid: 5608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,9.5 - parent: 16200 - - uid: 12466 + pos: -57.5,10.5 + parent: 2 + - uid: 5644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,8.5 - parent: 16200 - - uid: 12467 + rot: 3.141592653589793 rad + pos: -71.5,36.5 + parent: 2 + - uid: 5645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,7.5 - parent: 16200 - - uid: 12470 + rot: 3.141592653589793 rad + pos: -70.5,38.5 + parent: 2 + - uid: 5646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,10.5 - parent: 16200 - - uid: 12626 + rot: 3.141592653589793 rad + pos: -68.5,38.5 + parent: 2 + - uid: 5647 components: - type: Transform - pos: 20.5,48.5 + pos: -41.5,44.5 parent: 2 - - uid: 12838 + - uid: 5648 components: - type: Transform - pos: 21.5,48.5 + rot: 3.141592653589793 rad + pos: -67.5,38.5 parent: 2 - - uid: 12840 + - uid: 5649 components: - type: Transform - pos: 21.5,44.5 + pos: -42.5,44.5 parent: 2 - - uid: 12853 + - uid: 5650 components: - type: Transform - pos: 22.5,44.5 + rot: 3.141592653589793 rad + pos: -66.5,38.5 parent: 2 - - uid: 12871 + - uid: 5657 components: - type: Transform - pos: 19.5,48.5 + rot: 3.141592653589793 rad + pos: -69.5,38.5 parent: 2 - - uid: 12967 + - uid: 5664 components: - type: Transform - pos: 44.5,-23.5 + pos: 49.5,-22.5 parent: 2 - - uid: 13009 + - uid: 5666 components: - type: Transform - pos: 44.5,-25.5 + pos: -30.5,-14.5 parent: 2 - - uid: 13367 + - uid: 5670 components: - type: Transform - pos: 18.5,48.5 + pos: 49.5,-18.5 parent: 2 - - uid: 13368 + - uid: 5671 components: - type: Transform - pos: 17.5,48.5 + pos: -30.5,-15.5 parent: 2 - - uid: 13369 + - uid: 5674 components: - type: Transform - pos: 22.5,48.5 + pos: -40.5,-23.5 parent: 2 - - uid: 13404 + - uid: 5676 components: - type: Transform - pos: 18.5,-8.5 + pos: -21.5,-46.5 parent: 2 - - uid: 13541 + - uid: 5677 components: - type: Transform - pos: 44.5,-26.5 + pos: 26.5,30.5 parent: 2 - - uid: 13547 + - uid: 5678 components: - type: Transform - pos: 44.5,-21.5 + pos: 27.5,30.5 parent: 2 - - uid: 13796 + - uid: 5679 components: - type: Transform - pos: -71.5,15.5 + pos: 50.5,-4.5 parent: 2 - - uid: 13990 + - uid: 5680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,1.5 + pos: 45.5,-5.5 parent: 2 - - uid: 14020 + - uid: 5681 components: - type: Transform - pos: 44.5,-22.5 + pos: 45.5,-8.5 parent: 2 - - uid: 14021 + - uid: 5688 components: - type: Transform - pos: 44.5,-24.5 + pos: -29.5,52.5 parent: 2 - - uid: 14040 + - uid: 5689 components: - type: Transform - pos: 18.5,-10.5 + pos: -27.5,52.5 parent: 2 - - uid: 14066 + - uid: 5690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,52.5 + pos: 0.5,-2.5 parent: 2 - - uid: 14554 + - uid: 5691 components: - type: Transform - pos: -6.5,-7.5 + pos: -32.5,-34.5 parent: 2 - - uid: 14736 + - uid: 5695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,52.5 + pos: -33.5,-34.5 parent: 2 - - uid: 14872 + - uid: 5723 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,52.5 + pos: -49.5,32.5 parent: 2 - - uid: 14873 + - uid: 5725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,52.5 + pos: -49.5,33.5 parent: 2 - - uid: 15440 + - uid: 5726 components: - type: Transform - pos: 54.5,-5.5 + pos: -49.5,34.5 parent: 2 - - uid: 15441 + - uid: 5727 components: - type: Transform - pos: 54.5,-4.5 + pos: -49.5,35.5 parent: 2 - - uid: 15442 + - uid: 5728 components: - type: Transform - pos: 53.5,-4.5 + pos: -49.5,36.5 parent: 2 - - uid: 15443 + - uid: 5729 components: - type: Transform - pos: 51.5,-4.5 + pos: -49.5,37.5 parent: 2 - - uid: 15464 + - uid: 5730 components: - type: Transform - pos: 51.5,-1.5 + pos: -49.5,38.5 parent: 2 - - uid: 15582 + - uid: 5731 components: - type: Transform - pos: -19.5,-46.5 + pos: -49.5,39.5 parent: 2 - - uid: 15598 + - uid: 5734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-31.5 + pos: -49.5,42.5 parent: 2 - - uid: 15599 + - uid: 5735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-32.5 + pos: -27.5,69.5 parent: 2 - - uid: 15603 + - uid: 5737 components: - type: Transform - pos: -34.5,-40.5 + pos: 4.5,-8.5 parent: 2 - - uid: 15622 + - uid: 5738 components: - type: Transform - pos: -39.5,-38.5 + rot: 3.141592653589793 rad + pos: -26.5,23.5 parent: 2 - - uid: 15636 + - uid: 5740 components: - type: Transform - pos: -38.5,-36.5 + pos: -28.5,8.5 parent: 2 - - uid: 15643 + - uid: 5743 components: - type: Transform - pos: -37.5,-36.5 + pos: 50.5,-12.5 parent: 2 - - uid: 15647 + - uid: 5755 components: - type: Transform - pos: -39.5,-36.5 + rot: 1.5707963267948966 rad + pos: 18.5,-9.5 parent: 2 - - uid: 15658 + - uid: 5759 components: - type: Transform - pos: -39.5,-37.5 + pos: 40.5,-12.5 parent: 2 - - uid: 15678 + - uid: 5760 components: - type: Transform - pos: -31.5,-37.5 + pos: 26.5,21.5 parent: 2 - - uid: 15691 + - uid: 5762 components: - type: Transform - pos: -31.5,-38.5 + pos: 26.5,19.5 parent: 2 - - uid: 15693 + - uid: 5763 components: - type: Transform - pos: -32.5,-36.5 + pos: 28.5,19.5 parent: 2 - - uid: 15694 + - uid: 5764 components: - type: Transform - pos: -33.5,-36.5 + pos: 26.5,22.5 parent: 2 - - uid: 15697 + - uid: 5770 components: - type: Transform - pos: -35.5,-36.5 + pos: -40.5,-21.5 parent: 2 - - uid: 15714 + - uid: 5778 components: - type: Transform - pos: 38.5,-14.5 + pos: 26.5,23.5 parent: 2 - - uid: 15735 + - uid: 5780 components: - type: Transform - pos: -17.5,-42.5 + rot: 1.5707963267948966 rad + pos: -23.5,49.5 parent: 2 - - uid: 15760 + - uid: 5781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-41.5 + rot: 1.5707963267948966 rad + pos: -24.5,49.5 parent: 2 - - uid: 15764 + - uid: 5782 components: - type: Transform - pos: 36.5,-14.5 + rot: 1.5707963267948966 rad + pos: -25.5,49.5 parent: 2 - - uid: 15774 + - uid: 5783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-41.5 + rot: 1.5707963267948966 rad + pos: -26.5,49.5 parent: 2 - - uid: 15787 + - uid: 5787 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-41.5 + pos: -40.5,-19.5 parent: 2 - - uid: 15840 + - uid: 5788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-29.5 + pos: -31.5,-30.5 parent: 2 - - uid: 16089 + - uid: 5790 components: - type: Transform - pos: 41.5,-21.5 + pos: -39.5,-34.5 parent: 2 - - uid: 16090 + - uid: 5792 components: - type: Transform - pos: 18.5,-11.5 + pos: -31.5,-39.5 parent: 2 - - uid: 16467 + - uid: 5805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,25.5 - parent: 16200 - - uid: 16481 + rot: -1.5707963267948966 rad + pos: -60.5,27.5 + parent: 2 + - uid: 5808 components: - type: Transform - pos: 30.5,15.5 - parent: 16200 - - uid: 16482 + pos: -30.5,45.5 + parent: 2 + - uid: 5809 components: - type: Transform - pos: 29.5,23.5 - parent: 16200 - - uid: 16483 + pos: -30.5,46.5 + parent: 2 + - uid: 5820 components: - type: Transform - pos: 29.5,22.5 - parent: 16200 - - uid: 16484 + pos: -72.5,7.5 + parent: 2 + - uid: 5830 components: - type: Transform - pos: 29.5,21.5 - parent: 16200 - - uid: 16485 + pos: -29.5,56.5 + parent: 2 + - uid: 5831 components: - type: Transform - pos: 22.5,25.5 - parent: 16200 - - uid: 16486 + pos: -27.5,56.5 + parent: 2 + - uid: 5835 components: - type: Transform - pos: 20.5,25.5 - parent: 16200 - - uid: 16487 + pos: -27.5,57.5 + parent: 2 + - uid: 5836 components: - type: Transform - pos: 19.5,25.5 - parent: 16200 - - uid: 16488 + pos: -27.5,58.5 + parent: 2 + - uid: 5837 components: - type: Transform - pos: 21.5,25.5 - parent: 16200 - - uid: 16489 + pos: -29.5,58.5 + parent: 2 + - uid: 5838 components: - type: Transform - pos: 18.5,24.5 - parent: 16200 - - uid: 16490 + pos: -29.5,57.5 + parent: 2 + - uid: 5840 components: - type: Transform - pos: 19.5,24.5 - parent: 16200 - - uid: 16491 + pos: -30.5,58.5 + parent: 2 + - uid: 5841 components: - type: Transform - pos: 17.5,24.5 - parent: 16200 - - uid: 16492 + pos: -31.5,58.5 + parent: 2 + - uid: 5845 components: - type: Transform - pos: 16.5,24.5 - parent: 16200 - - uid: 16493 + pos: -26.5,58.5 + parent: 2 + - uid: 5846 components: - type: Transform - pos: 16.5,22.5 - parent: 16200 - - uid: 16494 + pos: -25.5,58.5 + parent: 2 + - uid: 5847 components: - type: Transform - pos: 17.5,22.5 - parent: 16200 - - uid: 16495 + pos: -24.5,58.5 + parent: 2 + - uid: 5848 components: - type: Transform - pos: 18.5,22.5 - parent: 16200 - - uid: 16496 + pos: -23.5,58.5 + parent: 2 + - uid: 5849 components: - type: Transform - pos: 19.5,22.5 - parent: 16200 - - uid: 16498 + pos: -23.5,59.5 + parent: 2 + - uid: 5850 components: - type: Transform - pos: 17.5,19.5 - parent: 16200 - - uid: 16500 + pos: -23.5,60.5 + parent: 2 + - uid: 5851 components: - type: Transform - pos: 18.5,17.5 - parent: 16200 - - uid: 16501 + pos: -23.5,61.5 + parent: 2 + - uid: 5852 components: - type: Transform - pos: 17.5,17.5 - parent: 16200 - - uid: 16502 + pos: -22.5,61.5 + parent: 2 + - uid: 5853 components: - type: Transform - pos: 19.5,17.5 - parent: 16200 - - uid: 16503 + pos: -21.5,61.5 + parent: 2 + - uid: 5854 components: - type: Transform - pos: 19.5,14.5 - parent: 16200 - - uid: 16504 + pos: -20.5,61.5 + parent: 2 + - uid: 5855 components: - type: Transform - pos: 19.5,19.5 - parent: 16200 - - uid: 16505 + pos: -20.5,65.5 + parent: 2 + - uid: 5856 components: - type: Transform - pos: 18.5,14.5 - parent: 16200 - - uid: 16506 + pos: -21.5,65.5 + parent: 2 + - uid: 5857 components: - type: Transform - pos: 16.5,14.5 - parent: 16200 - - uid: 16507 + pos: -22.5,65.5 + parent: 2 + - uid: 5858 components: - type: Transform - pos: 17.5,14.5 - parent: 16200 - - uid: 16508 + pos: -23.5,65.5 + parent: 2 + - uid: 5859 components: - type: Transform - pos: 17.5,12.5 - parent: 16200 - - uid: 16509 + pos: -24.5,65.5 + parent: 2 + - uid: 5860 components: - type: Transform - pos: 16.5,12.5 - parent: 16200 - - uid: 16510 + pos: -25.5,65.5 + parent: 2 + - uid: 5868 components: - type: Transform - pos: 18.5,12.5 - parent: 16200 - - uid: 16511 + pos: -29.5,69.5 + parent: 2 + - uid: 5869 components: - type: Transform - pos: 19.5,12.5 - parent: 16200 - - uid: 16512 + pos: -30.5,65.5 + parent: 2 + - uid: 5870 components: - type: Transform - pos: 19.5,11.5 - parent: 16200 - - uid: 16513 + pos: -29.5,65.5 + parent: 2 + - uid: 5871 components: - type: Transform - pos: 19.5,9.5 - parent: 16200 - - uid: 16514 + pos: -25.5,69.5 + parent: 2 + - uid: 5872 components: - type: Transform - pos: 18.5,19.5 - parent: 16200 - - uid: 16515 + pos: -31.5,65.5 + parent: 2 + - uid: 5873 components: - type: Transform - pos: 19.5,10.5 - parent: 16200 - - uid: 16516 + pos: -32.5,65.5 + parent: 2 + - uid: 5874 components: - type: Transform - pos: 20.5,7.5 - parent: 16200 - - uid: 16517 + pos: -33.5,65.5 + parent: 2 + - uid: 5875 components: - type: Transform - pos: 22.5,7.5 - parent: 16200 - - uid: 16518 + pos: -33.5,64.5 + parent: 2 + - uid: 5876 components: - type: Transform - pos: 23.5,7.5 - parent: 16200 - - uid: 16519 + pos: -33.5,63.5 + parent: 2 + - uid: 5877 components: - type: Transform - pos: 26.5,7.5 - parent: 16200 - - uid: 16520 + pos: -33.5,62.5 + parent: 2 + - uid: 5878 components: - type: Transform - pos: 27.5,7.5 - parent: 16200 - - uid: 16521 + pos: -33.5,61.5 + parent: 2 + - uid: 5914 components: - type: Transform - pos: 28.5,7.5 - parent: 16200 - - uid: 16522 + pos: 21.5,-36.5 + parent: 2 + - uid: 5915 components: - type: Transform - pos: 29.5,7.5 - parent: 16200 - - uid: 16525 + pos: 21.5,-39.5 + parent: 2 + - uid: 5940 components: - type: Transform - pos: 29.5,11.5 - parent: 16200 - - uid: 16526 + pos: -38.5,-26.5 + parent: 2 + - uid: 5941 components: - type: Transform - pos: 29.5,12.5 - parent: 16200 - - uid: 16527 + pos: -12.5,65.5 + parent: 2 + - uid: 5942 components: - type: Transform - pos: 29.5,14.5 - parent: 16200 - - uid: 16528 + pos: -12.5,66.5 + parent: 2 + - uid: 5943 components: - type: Transform - pos: 29.5,13.5 - parent: 16200 - - uid: 16530 + pos: -12.5,67.5 + parent: 2 + - uid: 5944 components: - type: Transform - pos: 29.5,15.5 - parent: 16200 - - uid: 16531 + pos: -12.5,68.5 + parent: 2 + - uid: 5945 components: - type: Transform - pos: 32.5,17.5 - parent: 16200 - - uid: 16532 + pos: -12.5,69.5 + parent: 2 + - uid: 5949 components: - type: Transform - pos: 32.5,19.5 - parent: 16200 - - uid: 16533 + pos: -39.5,-30.5 + parent: 2 + - uid: 5950 components: - type: Transform - pos: 32.5,18.5 - parent: 16200 - - uid: 16534 + pos: -30.5,-19.5 + parent: 2 + - uid: 5951 components: - type: Transform - pos: 31.5,20.5 - parent: 16200 - - uid: 16535 + pos: -42.5,69.5 + parent: 2 + - uid: 5952 components: - type: Transform - pos: 30.5,21.5 - parent: 16200 - - uid: 16536 + pos: -42.5,68.5 + parent: 2 + - uid: 5953 components: - type: Transform - pos: 31.5,16.5 - parent: 16200 - - uid: 16565 + pos: -42.5,67.5 + parent: 2 + - uid: 5954 components: - type: Transform - pos: 44.5,-19.5 + pos: -42.5,66.5 parent: 2 - - uid: 16838 + - uid: 5955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 16200 - - uid: 16851 + pos: -42.5,65.5 + parent: 2 + - uid: 5990 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 16200 - - uid: 17449 + pos: -27.5,7.5 + parent: 2 + - uid: 6043 components: - type: Transform - pos: -0.5,48.5 + pos: -30.5,-18.5 parent: 2 - - uid: 17453 + - uid: 6046 components: - type: Transform - pos: 0.5,48.5 + pos: -30.5,-16.5 parent: 2 - - uid: 17505 + - uid: 6048 components: - type: Transform - pos: -17.5,-46.5 + pos: -30.5,-17.5 parent: 2 - - uid: 17507 + - uid: 6049 components: - type: Transform - pos: -18.5,-46.5 + pos: -40.5,-16.5 parent: 2 - - uid: 17509 + - uid: 6061 components: - type: Transform - pos: -20.5,-46.5 + pos: -59.5,13.5 parent: 2 - - uid: 17515 + - uid: 6064 components: - type: Transform - pos: -17.5,4.5 + pos: -57.5,11.5 parent: 2 - - uid: 17518 + - uid: 6068 components: - type: Transform - pos: 53.5,-3.5 + pos: -57.5,16.5 parent: 2 - - uid: 17519 + - uid: 6070 components: - type: Transform - pos: 53.5,-2.5 + rot: 3.141592653589793 rad + pos: -61.5,38.5 parent: 2 - - uid: 17523 + - uid: 6074 components: - type: Transform - pos: 53.5,-1.5 + pos: 21.5,37.5 parent: 2 - - uid: 17569 + - uid: 6075 components: - type: Transform - pos: -17.5,-41.5 + pos: -71.5,9.5 parent: 2 - - uid: 17570 + - uid: 6087 components: - type: Transform - pos: -17.5,-39.5 + pos: -40.5,-18.5 parent: 2 - - uid: 17571 + - uid: 6089 components: - type: Transform - pos: -18.5,-39.5 + pos: 28.5,37.5 parent: 2 - - uid: 17572 + - uid: 6097 components: - type: Transform - pos: -17.5,-40.5 + pos: -40.5,-17.5 parent: 2 - - uid: 17578 + - uid: 6103 components: - type: Transform - pos: -20.5,-39.5 + pos: -75.5,10.5 parent: 2 - - uid: 19926 + - uid: 6122 components: - type: Transform - pos: 31.5,19.5 - parent: 16200 -- proto: WallReinforcedRust - entities: - - uid: 94 + rot: -1.5707963267948966 rad + pos: -28.5,7.5 + parent: 2 + - uid: 6125 components: - type: Transform - pos: 9.5,0.5 + pos: -77.5,21.5 parent: 2 - - uid: 107 + - uid: 6127 components: - type: Transform - pos: 14.5,-2.5 + pos: -71.5,26.5 parent: 2 - - uid: 111 + - uid: 6129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-0.5 + pos: -68.5,27.5 parent: 2 - - uid: 311 + - uid: 6216 components: - type: Transform - pos: 2.5,0.5 + pos: 37.5,-10.5 parent: 2 - - uid: 319 + - uid: 6219 components: - type: Transform - pos: 14.5,-1.5 + pos: 37.5,-11.5 parent: 2 - - uid: 429 + - uid: 6221 components: - type: Transform - pos: -39.5,-40.5 + pos: 1.5,-2.5 parent: 2 - - uid: 474 + - uid: 6224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 + pos: 1.5,-3.5 parent: 2 - - uid: 603 + - uid: 6225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-29.5 + pos: 1.5,-5.5 parent: 2 - - uid: 608 + - uid: 6271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-30.5 + pos: -57.5,31.5 parent: 2 - - uid: 863 + - uid: 6272 components: - type: Transform - pos: -71.5,34.5 + pos: -56.5,31.5 parent: 2 - - uid: 1030 + - uid: 6274 components: - type: Transform - pos: -71.5,38.5 + pos: -54.5,31.5 parent: 2 - - uid: 1646 + - uid: 6278 components: - type: Transform - pos: 34.5,-14.5 + pos: 33.5,-15.5 parent: 2 - - uid: 1680 + - uid: 6332 components: - type: Transform - pos: -31.5,-40.5 + pos: 47.5,-18.5 parent: 2 - - uid: 1705 + - uid: 6345 components: - type: Transform - pos: -38.5,-40.5 + pos: -31.5,-26.5 parent: 2 - - uid: 1840 + - uid: 6353 components: - type: Transform - pos: -36.5,-40.5 + pos: -30.5,29.5 parent: 2 - - uid: 1906 + - uid: 6384 components: - type: Transform - pos: -29.5,3.5 + pos: 1.5,-6.5 parent: 2 - - uid: 1953 + - uid: 6385 components: - type: Transform - pos: -37.5,-34.5 + pos: 2.5,-6.5 parent: 2 - - uid: 1957 + - uid: 6386 components: - type: Transform - pos: -27.5,-4.5 + pos: 3.5,-6.5 parent: 2 - - uid: 2189 + - uid: 6387 components: - type: Transform - pos: -31.5,-34.5 + pos: 4.5,-6.5 parent: 2 - - uid: 2243 + - uid: 6388 components: - type: Transform - pos: -39.5,-25.5 + pos: 4.5,-7.5 parent: 2 - - uid: 2245 + - uid: 6389 components: - type: Transform - pos: 11.5,-10.5 + pos: 4.5,-9.5 parent: 2 - - uid: 2261 + - uid: 6394 components: - type: Transform - pos: -3.5,-23.5 + pos: -1.5,-2.5 parent: 2 - - uid: 2301 + - uid: 6409 components: - type: Transform - pos: 9.5,-24.5 + pos: 22.5,37.5 parent: 2 - - uid: 2352 + - uid: 6410 components: - type: Transform - pos: 10.5,-24.5 + pos: 23.5,37.5 parent: 2 - - uid: 2389 + - uid: 6411 components: - type: Transform - pos: 6.5,-24.5 + pos: 27.5,37.5 parent: 2 - - uid: 2412 + - uid: 6416 components: - type: Transform - pos: 11.5,-17.5 + pos: 20.5,35.5 parent: 2 - - uid: 2483 + - uid: 6428 components: - type: Transform - pos: 14.5,-13.5 + pos: 20.5,36.5 parent: 2 - - uid: 2535 + - uid: 6431 components: - type: Transform - pos: 11.5,-24.5 + pos: 18.5,34.5 parent: 2 - - uid: 2570 + - uid: 6438 components: - type: Transform - pos: 18.5,-12.5 + pos: 11.5,47.5 parent: 2 - - uid: 2572 + - uid: 6439 components: - type: Transform - pos: -24.5,-10.5 + pos: 13.5,47.5 parent: 2 - - uid: 2780 + - uid: 6441 components: - type: Transform - pos: -24.5,-9.5 + pos: 12.5,47.5 parent: 2 - - uid: 2794 + - uid: 6442 components: - type: Transform - pos: -27.5,-11.5 + pos: 15.5,47.5 parent: 2 - - uid: 2807 + - uid: 6443 components: - type: Transform - pos: -27.5,-19.5 + pos: 16.5,47.5 parent: 2 - - uid: 2835 + - uid: 6444 components: - type: Transform - pos: -27.5,-18.5 + pos: 17.5,47.5 parent: 2 - - uid: 2836 + - uid: 6446 components: - type: Transform - pos: -26.5,-18.5 + pos: 20.5,44.5 parent: 2 - - uid: 2841 + - uid: 6447 components: - type: Transform - pos: -27.5,-20.5 + pos: 19.5,44.5 parent: 2 - - uid: 2843 + - uid: 6450 components: - type: Transform - pos: -31.5,-0.5 + pos: 20.5,40.5 parent: 2 - - uid: 2844 + - uid: 6451 components: - type: Transform - pos: -0.5,-33.5 + pos: 20.5,39.5 parent: 2 - - uid: 2862 + - uid: 6455 components: - type: Transform - pos: -38.5,-34.5 + pos: 18.5,33.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: 18.5,32.5 parent: 2 - - uid: 2920 + - uid: 6468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-11.5 + pos: 21.5,34.5 parent: 2 - - uid: 2951 + - uid: 6469 components: - type: Transform - pos: -27.5,-30.5 + pos: 21.5,32.5 parent: 2 - - uid: 2960 + - uid: 6470 components: - type: Transform - pos: -27.5,-31.5 + pos: 21.5,33.5 parent: 2 - - uid: 2962 + - uid: 6490 components: - type: Transform - pos: -27.5,-32.5 + pos: -16.5,52.5 parent: 2 - - uid: 3067 + - uid: 6533 components: - type: Transform - pos: 2.5,-17.5 + pos: -54.5,36.5 parent: 2 - - uid: 3080 + - uid: 6537 components: - type: Transform - pos: 42.5,-12.5 + pos: -54.5,32.5 parent: 2 - - uid: 3086 + - uid: 6540 components: - type: Transform - pos: 44.5,-12.5 + pos: -54.5,34.5 parent: 2 - - uid: 3104 + - uid: 6551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-33.5 + pos: -54.5,39.5 parent: 2 - - uid: 3136 + - uid: 6573 components: - type: Transform - pos: 2.5,-18.5 + pos: -57.5,37.5 parent: 2 - - uid: 3186 + - uid: 6576 components: - type: Transform - pos: 2.5,-20.5 + pos: -57.5,38.5 parent: 2 - - uid: 3257 + - uid: 6580 components: - type: Transform - pos: 2.5,-21.5 + pos: -50.5,39.5 parent: 2 - - uid: 3278 + - uid: 6582 components: - type: Transform - pos: -32.5,-25.5 + pos: -55.5,39.5 parent: 2 - - uid: 3296 + - uid: 6583 components: - type: Transform - pos: 33.5,-16.5 + pos: -57.5,39.5 parent: 2 - - uid: 3335 + - uid: 6584 components: - type: Transform - pos: -11.5,-16.5 + pos: -56.5,39.5 parent: 2 - - uid: 3352 + - uid: 6585 components: - type: Transform - pos: 1.5,-17.5 + pos: -57.5,36.5 parent: 2 - - uid: 3458 + - uid: 6590 components: - type: Transform - pos: -3.5,-17.5 + pos: -30.5,27.5 parent: 2 - - uid: 3464 + - uid: 6592 components: - type: Transform - pos: -19.5,-39.5 + pos: -55.5,31.5 parent: 2 - - uid: 3468 + - uid: 6594 components: - type: Transform - pos: -26.5,-8.5 + pos: -57.5,32.5 parent: 2 - - uid: 3471 + - uid: 6607 components: - type: Transform - pos: 13.5,-24.5 + pos: -60.5,39.5 parent: 2 - - uid: 3482 + - uid: 6608 components: - type: Transform - pos: 10.5,-17.5 + pos: -60.5,40.5 parent: 2 - - uid: 3544 + - uid: 6621 components: - type: Transform - pos: -26.5,-7.5 + pos: -51.5,42.5 parent: 2 - - uid: 3546 + - uid: 6624 components: - type: Transform - pos: 18.5,-13.5 + rot: 1.5707963267948966 rad + pos: -20.5,27.5 parent: 2 - - uid: 3555 + - uid: 6632 components: - type: Transform - pos: 28.5,16.5 + pos: -39.5,-33.5 parent: 2 - - uid: 3556 + - uid: 6646 components: - type: Transform - pos: 40.5,15.5 + rot: 3.141592653589793 rad + pos: 21.5,30.5 parent: 2 - - uid: 3557 + - uid: 6647 components: - type: Transform - pos: -5.5,-33.5 + rot: 3.141592653589793 rad + pos: 20.5,30.5 parent: 2 - - uid: 3559 + - uid: 6648 components: - type: Transform - pos: -6.5,-33.5 + pos: -7.5,49.5 parent: 2 - - uid: 3560 + - uid: 6649 components: - type: Transform - pos: -75.5,34.5 + pos: -10.5,50.5 parent: 2 - - uid: 3561 + - uid: 6650 components: - type: Transform - pos: 21.5,-34.5 + pos: -6.5,49.5 parent: 2 - - uid: 3564 + - uid: 6652 components: - type: Transform - pos: 25.5,16.5 + pos: -10.5,51.5 parent: 2 - - uid: 3569 + - uid: 6654 components: - type: Transform - pos: 25.5,30.5 + pos: -32.5,-26.5 parent: 2 - - uid: 3571 + - uid: 6656 components: - type: Transform - pos: -8.5,-17.5 + pos: -38.5,-33.5 parent: 2 - - uid: 3573 + - uid: 6657 components: - type: Transform - pos: 21.5,-35.5 + pos: -13.5,52.5 parent: 2 - - uid: 3575 + - uid: 6658 components: - type: Transform - pos: 40.5,-2.5 + pos: -5.5,50.5 parent: 2 - - uid: 3576 + - uid: 6659 components: - type: Transform - pos: 40.5,-3.5 + pos: -1.5,49.5 parent: 2 - - uid: 3581 + - uid: 6661 components: - type: Transform - pos: 40.5,3.5 + pos: -1.5,50.5 parent: 2 - - uid: 3593 + - uid: 6662 components: - type: Transform - pos: 40.5,14.5 + pos: -16.5,3.5 parent: 2 - - uid: 3595 + - uid: 6664 components: - type: Transform - pos: 40.5,10.5 + pos: -15.5,4.5 parent: 2 - - uid: 3600 + - uid: 6666 components: - type: Transform - pos: 2.5,-22.5 + pos: -16.5,4.5 parent: 2 - - uid: 3601 + - uid: 6670 components: - type: Transform - pos: -8.5,-20.5 + pos: -31.5,27.5 parent: 2 - - uid: 3621 + - uid: 6673 components: - type: Transform - pos: -38.5,-24.5 + pos: -32.5,27.5 parent: 2 - - uid: 3622 + - uid: 6674 components: - type: Transform - pos: -32.5,-24.5 + pos: -33.5,27.5 parent: 2 - - uid: 3624 + - uid: 6675 components: - type: Transform - pos: -26.5,-41.5 + pos: -34.5,27.5 parent: 2 - - uid: 3625 + - uid: 6676 components: - type: Transform - pos: -38.5,-19.5 + pos: -39.5,-26.5 parent: 2 - - uid: 3626 + - uid: 6683 components: - type: Transform - pos: -40.5,-14.5 + pos: -22.5,8.5 parent: 2 - - uid: 3627 + - uid: 6691 components: - type: Transform - pos: -38.5,-9.5 + pos: -10.5,-0.5 parent: 2 - - uid: 3629 + - uid: 6702 components: - type: Transform - pos: -37.5,-9.5 + pos: -31.5,-19.5 parent: 2 - - uid: 3630 + - uid: 6776 components: - type: Transform - pos: -30.5,-11.5 + pos: -34.5,-40.5 parent: 2 - - uid: 3631 + - uid: 6777 components: - type: Transform - pos: -31.5,-25.5 + pos: -31.5,-37.5 parent: 2 - - uid: 3636 + - uid: 6778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-30.5 + pos: -31.5,-38.5 parent: 2 - - uid: 3648 + - uid: 6779 components: - type: Transform - pos: -39.5,-19.5 + pos: -32.5,-36.5 parent: 2 - - uid: 3661 + - uid: 6780 components: - type: Transform - pos: -21.5,-42.5 + pos: -33.5,-36.5 parent: 2 - - uid: 3688 + - uid: 6781 components: - type: Transform - pos: -21.5,-43.5 + pos: -33.5,-41.5 parent: 2 - - uid: 3689 + - uid: 6782 components: - type: Transform - pos: -27.5,-41.5 + pos: -36.5,-41.5 parent: 2 - - uid: 3690 + - uid: 6783 components: - type: Transform - pos: -27.5,-42.5 + pos: -37.5,-41.5 parent: 2 - - uid: 3691 + - uid: 6784 components: - type: Transform - pos: -27.5,-43.5 + pos: -32.5,-29.5 parent: 2 - - uid: 3716 + - uid: 6785 components: - type: Transform - pos: -3.5,-24.5 + pos: -39.5,-40.5 parent: 2 - - uid: 3858 + - uid: 6790 components: - type: Transform - pos: 1.5,-24.5 + pos: -38.5,-40.5 parent: 2 - - uid: 3869 + - uid: 6808 components: - type: Transform - pos: -6.5,-13.5 + pos: -53.5,18.5 parent: 2 - - uid: 3885 + - uid: 6814 components: - type: Transform - pos: 37.5,16.5 + pos: -59.5,18.5 parent: 2 - - uid: 3886 + - uid: 6816 components: - type: Transform - pos: 40.5,9.5 + pos: -74.5,9.5 parent: 2 - - uid: 3887 + - uid: 6820 components: - type: Transform - pos: 36.5,16.5 + pos: -57.5,19.5 parent: 2 - - uid: 3888 + - uid: 6829 components: - type: Transform - pos: 41.5,9.5 + pos: -54.5,9.5 parent: 2 - - uid: 3897 + - uid: 6832 components: - type: Transform - pos: 5.5,-13.5 + pos: -54.5,7.5 parent: 2 - - uid: 3928 + - uid: 6860 components: - type: Transform - pos: 14.5,-11.5 + pos: -59.5,11.5 parent: 2 - - uid: 3929 + - uid: 6862 components: - type: Transform - pos: -5.5,6.5 + pos: -59.5,16.5 parent: 2 - - uid: 3955 + - uid: 6950 components: - type: Transform - pos: 11.5,-11.5 + pos: -34.5,61.5 parent: 2 - - uid: 3968 + - uid: 6972 components: - type: Transform - pos: 43.5,3.5 + pos: -34.5,59.5 parent: 2 - - uid: 4006 + - uid: 6973 components: - type: Transform - pos: 28.5,15.5 + pos: -34.5,60.5 parent: 2 - - uid: 4007 + - uid: 6974 components: - type: Transform - pos: -5.5,-13.5 + pos: -33.5,59.5 parent: 2 - - uid: 4008 + - uid: 6975 components: - type: Transform - pos: 18.5,-0.5 + pos: -33.5,58.5 parent: 2 - - uid: 4032 + - uid: 6976 components: - type: Transform - pos: -15.5,-16.5 + pos: -32.5,58.5 parent: 2 - - uid: 4047 + - uid: 6993 components: - type: Transform - pos: -14.5,-16.5 + pos: -36.5,-40.5 parent: 2 - - uid: 4057 + - uid: 6994 components: - type: Transform - pos: 18.5,4.5 + pos: -29.5,3.5 parent: 2 - - uid: 4058 + - uid: 7011 components: - type: Transform - pos: 17.5,6.5 + pos: -49.5,46.5 parent: 2 - - uid: 4060 + - uid: 7015 components: - type: Transform - pos: -6.5,6.5 + pos: -27.5,-5.5 parent: 2 - - uid: 4061 + - uid: 7017 components: - type: Transform - pos: -6.5,-1.5 + pos: -31.5,0.5 parent: 2 - - uid: 4062 + - uid: 7018 components: - type: Transform - pos: -1.5,-21.5 + pos: -28.5,3.5 parent: 2 - - uid: 4063 + - uid: 7024 components: - type: Transform - pos: 11.5,-12.5 + pos: -17.5,52.5 parent: 2 - - uid: 4067 + - uid: 7025 components: - type: Transform - pos: 21.5,30.5 + pos: -31.5,2.5 parent: 2 - - uid: 4137 + - uid: 7026 components: - type: Transform - pos: 18.5,0.5 + pos: -27.5,3.5 parent: 2 - - uid: 4139 + - uid: 7027 components: - type: Transform - pos: -6.5,-11.5 + pos: -27.5,0.5 parent: 2 - - uid: 4140 + - uid: 7033 components: - type: Transform - pos: -1.5,-18.5 + pos: 43.5,-5.5 parent: 2 - - uid: 4144 + - uid: 7037 components: - type: Transform - pos: 32.5,15.5 + pos: 43.5,-4.5 parent: 2 - - uid: 4145 + - uid: 7041 components: - type: Transform - pos: -6.5,0.5 + pos: -37.5,-34.5 parent: 2 - - uid: 4151 + - uid: 7042 components: - type: Transform - pos: 20.5,30.5 + pos: -27.5,-4.5 parent: 2 - - uid: 4153 + - uid: 7045 components: - type: Transform - pos: 40.5,-5.5 + pos: -27.5,-1.5 parent: 2 - - uid: 4157 + - uid: 7046 components: - type: Transform - pos: 41.5,-3.5 + pos: 43.5,-3.5 parent: 2 - - uid: 4173 + - uid: 7060 components: - type: Transform - pos: 24.5,-10.5 + pos: -29.5,-0.5 parent: 2 - - uid: 4174 + - uid: 7061 components: - type: Transform - pos: 23.5,-10.5 + pos: -27.5,-0.5 parent: 2 - - uid: 4175 + - uid: 7062 components: - type: Transform - pos: 21.5,-25.5 + pos: -1.5,-6.5 parent: 2 - - uid: 4177 + - uid: 7180 components: - type: Transform - pos: 20.5,-25.5 + pos: -35.5,27.5 parent: 2 - - uid: 4179 + - uid: 7336 components: - type: Transform - pos: 41.5,-9.5 + pos: 25.5,-44.5 parent: 2 - - uid: 4180 + - uid: 7340 components: - type: Transform - pos: 45.5,-14.5 + pos: 21.5,-44.5 parent: 2 - - uid: 4182 + - uid: 7342 components: - type: Transform - pos: 45.5,-16.5 + pos: 21.5,-41.5 parent: 2 - - uid: 4183 + - uid: 7413 components: - type: Transform - pos: 45.5,-17.5 + rot: -1.5707963267948966 rad + pos: -24.5,11.5 parent: 2 - - uid: 4184 + - uid: 7578 components: - type: Transform - pos: 45.5,-9.5 + pos: -5.5,51.5 parent: 2 - - uid: 4187 + - uid: 7579 components: - type: Transform - pos: 49.5,-14.5 + pos: -4.5,51.5 parent: 2 - - uid: 4189 + - uid: 7580 components: - type: Transform - pos: 18.5,-14.5 + pos: -2.5,51.5 parent: 2 - - uid: 4190 + - uid: 7581 components: - type: Transform - pos: 46.5,-9.5 + pos: -1.5,51.5 parent: 2 - - uid: 4192 + - uid: 7582 components: - type: Transform - pos: 49.5,-9.5 + pos: -57.5,13.5 parent: 2 - - uid: 4194 + - uid: 7583 components: - type: Transform - pos: 50.5,-9.5 + pos: -3.5,51.5 parent: 2 - - uid: 4196 + - uid: 7591 components: - type: Transform - pos: 46.5,-14.5 + pos: -39.5,-25.5 parent: 2 - - uid: 4200 + - uid: 7592 components: - type: Transform - pos: -34.5,19.5 + pos: -1.5,48.5 parent: 2 - - uid: 4204 + - uid: 7593 components: - type: Transform - pos: 48.5,-14.5 + pos: -1.5,47.5 parent: 2 - - uid: 4205 + - uid: 7616 components: - type: Transform - pos: 49.5,-18.5 + pos: -24.5,-10.5 parent: 2 - - uid: 4209 + - uid: 7632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-18.5 + pos: -21.5,-45.5 parent: 2 - - uid: 4213 + - uid: 7633 components: - type: Transform - pos: 53.5,-18.5 + pos: -27.5,-46.5 parent: 2 - - uid: 4214 + - uid: 7634 components: - type: Transform - pos: 54.5,-18.5 + pos: -25.5,-46.5 parent: 2 - - uid: 4216 + - uid: 7635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,22.5 + pos: -24.5,-46.5 parent: 2 - - uid: 4218 + - uid: 7636 components: - type: Transform - pos: 54.5,-17.5 + pos: -24.5,-9.5 parent: 2 - - uid: 4219 + - uid: 7637 components: - type: Transform - pos: 54.5,-15.5 + pos: -27.5,-11.5 parent: 2 - - uid: 4229 + - uid: 7638 components: - type: Transform - pos: 54.5,-13.5 + pos: -26.5,-46.5 parent: 2 - - uid: 4230 + - uid: 7639 components: - type: Transform - pos: 54.5,-11.5 + pos: -27.5,-45.5 parent: 2 - - uid: 4232 + - uid: 7644 components: - type: Transform - pos: 14.5,-5.5 + pos: -31.5,-0.5 parent: 2 - - uid: 4234 + - uid: 7645 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,21.5 + pos: -0.5,-33.5 parent: 2 - - uid: 4236 + - uid: 7654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,19.5 + pos: -38.5,-34.5 parent: 2 - - uid: 4237 + - uid: 7661 components: - type: Transform - pos: 54.5,-9.5 + pos: 2.5,-18.5 parent: 2 - - uid: 4238 + - uid: 7679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,19.5 + pos: 0.5,46.5 parent: 2 - - uid: 4239 + - uid: 7738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,19.5 + pos: -57.5,14.5 parent: 2 - - uid: 4240 + - uid: 7759 components: - type: Transform - pos: -35.5,23.5 + pos: -19.5,-39.5 parent: 2 - - uid: 4303 + - uid: 7769 components: - type: Transform - pos: -35.5,19.5 + pos: -49.5,47.5 parent: 2 - - uid: 4322 + - uid: 7770 components: - type: Transform - pos: 54.5,-6.5 + pos: -26.5,-8.5 parent: 2 - - uid: 4352 + - uid: 7772 components: - type: Transform - pos: 50.5,-22.5 + pos: -26.5,-7.5 parent: 2 - - uid: 4357 + - uid: 7773 components: - type: Transform - pos: 53.5,-22.5 + pos: 40.5,15.5 parent: 2 - - uid: 4395 + - uid: 7774 components: - type: Transform - pos: 53.5,-21.5 + pos: -5.5,-33.5 parent: 2 - - uid: 4413 + - uid: 7775 components: - type: Transform - pos: 53.5,-20.5 + pos: -6.5,-33.5 parent: 2 - - uid: 4426 + - uid: 7776 components: - type: Transform - pos: 47.5,-22.5 + pos: -42.5,47.5 parent: 2 - - uid: 4683 + - uid: 7780 components: - type: Transform - pos: -19.5,27.5 + pos: 40.5,3.5 parent: 2 - - uid: 4807 + - uid: 7782 components: - type: Transform - pos: 44.5,-27.5 + pos: 40.5,14.5 parent: 2 - - uid: 4938 + - uid: 7788 components: - type: Transform - pos: 21.5,-30.5 + pos: 40.5,10.5 parent: 2 - - uid: 4981 + - uid: 7795 components: - type: Transform - pos: 26.5,27.5 + pos: -38.5,-24.5 parent: 2 - - uid: 4988 + - uid: 7799 components: - type: Transform - pos: 5.5,-10.5 + pos: -26.5,-41.5 parent: 2 - - uid: 5026 + - uid: 7802 components: - type: Transform - pos: 26.5,16.5 + pos: -35.5,28.5 parent: 2 - - uid: 5042 + - uid: 7808 components: - type: Transform - pos: 21.5,-40.5 + pos: -38.5,-19.5 parent: 2 - - uid: 5046 + - uid: 7811 components: - type: Transform - pos: 27.5,-44.5 + pos: -40.5,-14.5 parent: 2 - - uid: 5047 + - uid: 7819 components: - type: Transform - pos: 28.5,-44.5 + pos: -38.5,-9.5 parent: 2 - - uid: 5048 + - uid: 7821 components: - type: Transform - pos: 31.5,-44.5 + pos: -37.5,-9.5 parent: 2 - - uid: 5051 + - uid: 7824 components: - type: Transform - pos: 34.5,-44.5 + pos: -30.5,-11.5 parent: 2 - - uid: 5052 + - uid: 7826 components: - type: Transform - pos: 35.5,-44.5 + pos: -59.5,21.5 parent: 2 - - uid: 5055 + - uid: 7829 components: - type: Transform - pos: 36.5,-44.5 + pos: 2.5,-30.5 parent: 2 - - uid: 5056 + - uid: 7836 components: - type: Transform - pos: 38.5,-44.5 + pos: -39.5,-19.5 parent: 2 - - uid: 5057 + - uid: 7839 components: - type: Transform - pos: 40.5,-44.5 + pos: -21.5,-42.5 parent: 2 - - uid: 5058 + - uid: 7840 components: - type: Transform - pos: 40.5,-43.5 + pos: -21.5,-43.5 parent: 2 - - uid: 5061 + - uid: 7841 components: - type: Transform - pos: 40.5,-41.5 + pos: -27.5,-41.5 parent: 2 - - uid: 5068 + - uid: 7849 components: - type: Transform - pos: 40.5,-40.5 + pos: -27.5,-42.5 parent: 2 - - uid: 5069 + - uid: 7870 components: - type: Transform - pos: 40.5,-39.5 + pos: -27.5,-43.5 parent: 2 - - uid: 5070 + - uid: 7871 components: - type: Transform - pos: 40.5,-36.5 + pos: 37.5,16.5 parent: 2 - - uid: 5073 + - uid: 7874 components: - type: Transform - pos: 41.5,-35.5 + rot: 1.5707963267948966 rad + pos: -75.5,11.5 parent: 2 - - uid: 5074 + - uid: 7875 components: - type: Transform - pos: 41.5,-34.5 + pos: 40.5,9.5 parent: 2 - - uid: 5334 + - uid: 7888 components: - type: Transform - pos: 41.5,-33.5 + pos: -52.5,43.5 parent: 2 - - uid: 5337 + - uid: 7889 components: - type: Transform - pos: 41.5,-32.5 + pos: 36.5,16.5 parent: 2 - - uid: 5338 + - uid: 7892 components: - type: Transform - pos: 41.5,-30.5 + pos: 41.5,9.5 parent: 2 - - uid: 5339 + - uid: 7898 components: - type: Transform - pos: 41.5,-29.5 + pos: 43.5,3.5 parent: 2 - - uid: 5342 + - uid: 7899 components: - type: Transform - pos: 42.5,-29.5 + pos: 32.5,15.5 parent: 2 - - uid: 5346 + - uid: 7900 components: - type: Transform pos: -27.5,-7.5 parent: 2 - - uid: 5351 + - uid: 7903 components: - type: Transform - pos: -7.5,49.5 + pos: -52.5,45.5 parent: 2 - - uid: 5369 + - uid: 7904 components: - type: Transform - pos: -10.5,50.5 + pos: -52.5,44.5 parent: 2 - - uid: 5373 + - uid: 7905 components: - type: Transform - pos: -6.5,49.5 + pos: -51.5,45.5 parent: 2 - - uid: 5375 + - uid: 7906 components: - type: Transform - pos: 0.5,47.5 + pos: -50.5,45.5 parent: 2 - - uid: 5378 + - uid: 7917 components: - type: Transform - pos: 5.5,47.5 + pos: 43.5,-7.5 parent: 2 - - uid: 5381 + - uid: 7938 components: - type: Transform - pos: 6.5,47.5 + pos: -38.5,-30.5 parent: 2 - - uid: 5383 + - uid: 7940 components: - type: Transform - pos: 9.5,47.5 + pos: -38.5,-29.5 parent: 2 - - uid: 5384 + - uid: 7941 components: - type: Transform - pos: 10.5,47.5 + pos: -35.5,30.5 parent: 2 - - uid: 5387 + - uid: 7947 components: - type: Transform - pos: -10.5,51.5 + pos: -27.5,-2.5 parent: 2 - - uid: 5394 + - uid: 7949 components: - type: Transform - pos: -18.5,49.5 + pos: -30.5,3.5 parent: 2 - - uid: 5395 + - uid: 7963 components: - type: Transform - pos: -20.5,49.5 + pos: -30.5,-0.5 parent: 2 - - uid: 5397 + - uid: 7969 components: - type: Transform - pos: -41.5,12.5 + pos: -27.5,-3.5 parent: 2 - - uid: 5398 + - uid: 7979 components: - type: Transform - pos: -39.5,9.5 + pos: -35.5,31.5 parent: 2 - - uid: 5400 + - uid: 7982 components: - type: Transform - pos: -39.5,10.5 + pos: -43.5,47.5 parent: 2 - - uid: 5401 + - uid: 8000 components: - type: Transform - pos: -39.5,14.5 + pos: -23.5,-46.5 parent: 2 - - uid: 5406 + - uid: 8002 components: - type: Transform - pos: -39.5,19.5 + pos: -30.5,31.5 parent: 2 - - uid: 5407 + - uid: 8011 components: - type: Transform - pos: -39.5,21.5 + pos: -22.5,-46.5 parent: 2 - - uid: 5408 + - uid: 8015 components: - type: Transform - pos: -39.5,27.5 + pos: -21.5,30.5 parent: 2 - - uid: 5409 + - uid: 8017 components: - type: Transform - pos: -40.5,27.5 + pos: -21.5,29.5 parent: 2 - - uid: 5410 + - uid: 8019 components: - type: Transform - pos: -41.5,27.5 + pos: -30.5,30.5 parent: 2 - - uid: 5440 + - uid: 8037 components: - type: Transform - pos: -49.5,27.5 + rot: -1.5707963267948966 rad + pos: -24.5,7.5 parent: 2 - - uid: 5441 + - uid: 8044 components: - type: Transform - pos: -50.5,27.5 + pos: -21.5,28.5 parent: 2 - - uid: 5444 + - uid: 8045 components: - type: Transform - pos: -52.5,27.5 + pos: -20.5,30.5 parent: 2 - - uid: 5446 + - uid: 8057 components: - type: Transform - pos: -53.5,27.5 + pos: -35.5,-40.5 parent: 2 - - uid: 5449 + - uid: 8067 components: - type: Transform - pos: -53.5,14.5 + pos: -34.5,-41.5 parent: 2 - - uid: 5454 + - uid: 8075 components: - type: Transform - pos: -53.5,9.5 + pos: 53.5,-6.5 parent: 2 - - uid: 5457 + - uid: 8076 components: - type: Transform - pos: -53.5,10.5 + pos: 52.5,-6.5 parent: 2 - - uid: 5458 + - uid: 8079 components: - type: Transform - pos: -51.5,12.5 + rot: 3.141592653589793 rad + pos: 52.5,-22.5 parent: 2 - - uid: 5461 + - uid: 8085 components: - type: Transform - pos: -51.5,14.5 + pos: 51.5,-6.5 parent: 2 - - uid: 5462 + - uid: 8086 components: - type: Transform - pos: -51.5,21.5 + pos: 50.5,-6.5 parent: 2 - - uid: 5473 + - uid: 8087 components: - type: Transform - pos: -53.5,26.5 + pos: -14.5,3.5 parent: 2 - - uid: 5489 + - uid: 8089 components: - type: Transform - pos: -36.5,44.5 + pos: 50.5,-5.5 parent: 2 - - uid: 5490 + - uid: 8093 components: - type: Transform - pos: -35.5,44.5 + pos: -11.5,-0.5 parent: 2 - - uid: 5493 + - uid: 8095 components: - type: Transform - pos: -30.5,44.5 + pos: -12.5,-0.5 parent: 2 - - uid: 5494 + - uid: 8097 components: - type: Transform - pos: -39.5,44.5 + pos: -14.5,-0.5 parent: 2 - - uid: 5504 + - uid: 8100 components: - type: Transform - pos: -19.5,3.5 + pos: -13.5,-0.5 parent: 2 - - uid: 5514 + - uid: 8102 components: - type: Transform - pos: -18.5,3.5 + pos: -16.5,0.5 parent: 2 - - uid: 5520 + - uid: 8103 components: - type: Transform - pos: -40.5,44.5 + pos: -10.5,1.5 parent: 2 - - uid: 5523 + - uid: 8104 components: - type: Transform - pos: -74.5,34.5 + pos: -10.5,0.5 parent: 2 - - uid: 5527 + - uid: 8106 components: - type: Transform - pos: -58.5,27.5 + pos: -16.5,1.5 parent: 2 - - uid: 5547 + - uid: 8107 components: - type: Transform - pos: -21.5,49.5 + pos: -14.5,0.5 parent: 2 - - uid: 5548 + - uid: 8110 components: - type: Transform - pos: -13.5,52.5 + pos: -16.5,-0.5 parent: 2 - - uid: 5553 + - uid: 8114 components: - type: Transform - pos: -59.5,27.5 + pos: -15.5,-0.5 parent: 2 - - uid: 5554 + - uid: 8116 components: - type: Transform - pos: -30.5,48.5 + pos: -14.5,1.5 parent: 2 - - uid: 5565 + - uid: 8125 components: - type: Transform - pos: -30.5,49.5 + pos: -31.5,31.5 parent: 2 - - uid: 5567 + - uid: 8230 components: - type: Transform - pos: -26.5,50.5 + pos: -42.5,46.5 parent: 2 - - uid: 5581 + - uid: 8234 components: - type: Transform - pos: -70.5,27.5 + pos: -42.5,45.5 parent: 2 - - uid: 5603 + - uid: 8255 components: - type: Transform - pos: -75.5,9.5 + rot: -1.5707963267948966 rad + pos: -75.5,13.5 parent: 2 - - uid: 5609 + - uid: 8327 components: - type: Transform - pos: -75.5,21.5 + pos: 51.5,-2.5 parent: 2 - - uid: 5612 + - uid: 8330 components: - type: Transform - pos: -71.5,27.5 + pos: 51.5,-3.5 parent: 2 - - uid: 5645 + - uid: 8412 components: - type: Transform - pos: -69.5,27.5 + pos: -17.5,-45.5 parent: 2 - - uid: 5646 + - uid: 8442 components: - type: Transform - pos: -75.5,26.5 + rot: -1.5707963267948966 rad + pos: -22.5,11.5 parent: 2 - - uid: 5650 + - uid: 8444 components: - type: Transform - pos: -75.5,27.5 + rot: -1.5707963267948966 rad + pos: -9.5,5.5 parent: 2 - - uid: 5659 + - uid: 8476 components: - type: Transform - pos: -75.5,30.5 + rot: 1.5707963267948966 rad + pos: -77.5,15.5 parent: 2 - - uid: 5660 + - uid: 8477 components: - type: Transform - pos: -75.5,31.5 + rot: 1.5707963267948966 rad + pos: -77.5,11.5 parent: 2 - - uid: 5663 + - uid: 8478 components: - type: Transform - pos: -71.5,37.5 + rot: 1.5707963267948966 rad + pos: -77.5,19.5 parent: 2 - - uid: 5674 + - uid: 8479 components: - type: Transform - pos: -29.5,7.5 + rot: 1.5707963267948966 rad + pos: -75.5,15.5 parent: 2 - - uid: 5732 + - uid: 8480 components: - type: Transform - pos: 17.5,44.5 + rot: 1.5707963267948966 rad + pos: -75.5,19.5 parent: 2 - - uid: 5736 + - uid: 8494 components: - type: Transform - pos: 17.5,45.5 + pos: -71.5,11.5 parent: 2 - - uid: 5754 + - uid: 8497 components: - type: Transform - pos: 18.5,44.5 + rot: -1.5707963267948966 rad + pos: -23.5,11.5 parent: 2 - - uid: 5755 + - uid: 8512 components: - type: Transform - pos: 20.5,43.5 + pos: -71.5,19.5 parent: 2 - - uid: 5760 + - uid: 8635 components: - type: Transform - pos: 20.5,41.5 + pos: -26.5,-5.5 parent: 2 - - uid: 5761 + - uid: 8643 components: - type: Transform - pos: 20.5,38.5 + pos: 43.5,-2.5 parent: 2 - - uid: 5764 + - uid: 8721 components: - type: Transform - pos: 20.5,42.5 + rot: 1.5707963267948966 rad + pos: 28.5,17.5 parent: 2 - - uid: 5778 + - uid: 8724 components: - type: Transform - pos: 20.5,37.5 + rot: 1.5707963267948966 rad + pos: 28.5,28.5 parent: 2 - - uid: 5803 + - uid: 8725 components: - type: Transform - pos: -73.5,34.5 + rot: 1.5707963267948966 rad + pos: 28.5,29.5 parent: 2 - - uid: 5806 + - uid: 8729 components: - type: Transform - pos: -60.5,38.5 + rot: 1.5707963267948966 rad + pos: 26.5,28.5 parent: 2 - - uid: 5811 + - uid: 8889 components: - type: Transform - pos: -60.5,41.5 + rot: -1.5707963267948966 rad + pos: -27.5,11.5 parent: 2 - - uid: 5812 + - uid: 9454 components: - type: Transform - pos: -60.5,42.5 + pos: 44.5,-20.5 parent: 2 - - uid: 5909 + - uid: 9626 components: - type: Transform - pos: -57.5,42.5 + pos: -31.5,-29.5 parent: 2 - - uid: 5919 + - uid: 9743 components: - type: Transform - pos: -58.5,42.5 + pos: -14.5,4.5 parent: 2 - - uid: 5940 + - uid: 9748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-30.5 + pos: 41.5,-2.5 parent: 2 - - uid: 6049 + - uid: 10241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-29.5 + pos: 9.5,-17.5 parent: 2 - - uid: 6062 + - uid: 10930 components: - type: Transform - pos: -56.5,42.5 + rot: 1.5707963267948966 rad + pos: 40.5,2.5 parent: 2 - - uid: 6070 + - uid: 10951 components: - type: Transform - pos: -53.5,42.5 + pos: -1.5,-13.5 parent: 2 - - uid: 6074 + - uid: 11628 components: - type: Transform - pos: -52.5,42.5 + pos: -48.5,47.5 parent: 2 - - uid: 6089 + - uid: 11880 components: - type: Transform - pos: 44.5,-14.5 + pos: -6.5,-10.5 parent: 2 - - uid: 6098 + - uid: 11902 components: - type: Transform - pos: -62.5,38.5 + pos: 1.5,6.5 parent: 2 - - uid: 6122 + - uid: 11904 components: - type: Transform - pos: -42.5,45.5 + pos: 0.5,6.5 parent: 2 - - uid: 6203 + - uid: 11955 components: - type: Transform - pos: -49.5,44.5 + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 parent: 2 - - uid: 6204 + - uid: 12033 components: - type: Transform - pos: -49.5,45.5 + pos: -3.5,6.5 parent: 2 - - uid: 6205 + - uid: 12073 components: - type: Transform - pos: -29.5,4.5 + pos: -1.5,6.5 parent: 2 - - uid: 6206 + - uid: 12391 components: - type: Transform - pos: -27.5,-2.5 + pos: -0.5,6.5 parent: 2 - - uid: 6208 + - uid: 12407 components: - type: Transform - pos: -30.5,3.5 - parent: 2 - - uid: 6209 + rot: 1.5707963267948966 rad + pos: 30.5,11.5 + parent: 16200 + - uid: 12457 components: - type: Transform - pos: -30.5,-0.5 - parent: 2 - - uid: 6218 + rot: 1.5707963267948966 rad + pos: 30.5,9.5 + parent: 16200 + - uid: 12466 components: - type: Transform - pos: -27.5,-3.5 - parent: 2 - - uid: 6219 + rot: 1.5707963267948966 rad + pos: 30.5,8.5 + parent: 16200 + - uid: 12467 components: - type: Transform - pos: 24.5,-44.5 - parent: 2 - - uid: 6266 + rot: 1.5707963267948966 rad + pos: 30.5,7.5 + parent: 16200 + - uid: 12469 components: - type: Transform - pos: 23.5,-44.5 + pos: -4.5,-9.5 parent: 2 - - uid: 6278 + - uid: 12470 components: - type: Transform - pos: 22.5,-44.5 + rot: 1.5707963267948966 rad + pos: 30.5,10.5 + parent: 16200 + - uid: 12471 + components: + - type: Transform + pos: -3.5,-9.5 parent: 2 - - uid: 6279 + - uid: 12473 components: - type: Transform - pos: 21.5,-43.5 + pos: -4.5,-7.5 parent: 2 - - uid: 6280 + - uid: 12626 components: - type: Transform - pos: -5.5,50.5 + pos: 20.5,48.5 parent: 2 - - uid: 6289 + - uid: 12838 components: - type: Transform - pos: -1.5,49.5 + pos: 21.5,48.5 parent: 2 - - uid: 6301 + - uid: 12840 components: - type: Transform - pos: -1.5,50.5 + pos: 21.5,44.5 parent: 2 - - uid: 6334 + - uid: 12853 components: - type: Transform - pos: -65.5,38.5 + pos: 22.5,44.5 parent: 2 - - uid: 6595 + - uid: 12871 components: - type: Transform - pos: -71.5,35.5 + pos: 19.5,48.5 parent: 2 - - uid: 6612 + - uid: 12959 components: - type: Transform - pos: -71.5,36.5 + pos: -4.5,-8.5 parent: 2 - - uid: 6623 + - uid: 12967 components: - type: Transform - pos: -70.5,38.5 + pos: 44.5,-23.5 parent: 2 - - uid: 6624 + - uid: 12971 components: - type: Transform - pos: -68.5,38.5 + pos: 35.5,-21.5 parent: 2 - - uid: 6625 + - uid: 13001 components: - type: Transform - pos: -67.5,38.5 + pos: 34.5,-21.5 parent: 2 - - uid: 6626 + - uid: 13009 components: - type: Transform - pos: -66.5,38.5 + pos: 44.5,-25.5 parent: 2 - - uid: 6628 + - uid: 13367 components: - type: Transform - pos: -69.5,38.5 + pos: 18.5,48.5 parent: 2 - - uid: 7636 + - uid: 13368 components: - type: Transform - pos: -23.5,-46.5 + pos: 17.5,48.5 parent: 2 - - uid: 7637 + - uid: 13369 components: - type: Transform - pos: -22.5,-46.5 + pos: 22.5,48.5 parent: 2 - - uid: 7772 + - uid: 13404 components: - type: Transform - pos: -46.5,47.5 + pos: 18.5,-8.5 parent: 2 - - uid: 7773 + - uid: 13541 components: - type: Transform - pos: -44.5,47.5 + pos: 44.5,-26.5 parent: 2 - - uid: 7774 + - uid: 13547 components: - type: Transform - pos: -45.5,47.5 + pos: 44.5,-21.5 parent: 2 - - uid: 8044 + - uid: 13685 components: - type: Transform - pos: 49.5,-22.5 + rot: 3.141592653589793 rad + pos: -28.5,10.5 parent: 2 - - uid: 8057 + - uid: 13695 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-18.5 + pos: -28.5,11.5 parent: 2 - - uid: 8067 + - uid: 13696 components: - type: Transform - pos: -21.5,30.5 + rot: 3.141592653589793 rad + pos: -28.5,9.5 parent: 2 - - uid: 8077 + - uid: 13796 components: - type: Transform - pos: -21.5,29.5 + pos: -71.5,15.5 parent: 2 - - uid: 8081 + - uid: 13990 components: - type: Transform - pos: -21.5,28.5 + rot: 1.5707963267948966 rad + pos: 40.5,1.5 parent: 2 - - uid: 8100 + - uid: 14020 components: - type: Transform - pos: -20.5,30.5 + pos: 44.5,-22.5 parent: 2 - - uid: 8107 + - uid: 14021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,30.5 + pos: 44.5,-24.5 parent: 2 - - uid: 8110 + - uid: 14040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,30.5 + pos: 18.5,-10.5 parent: 2 - - uid: 8114 + - uid: 14066 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,-4.5 + pos: -14.5,52.5 parent: 2 - - uid: 8117 + - uid: 14554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-5.5 + pos: -6.5,-7.5 parent: 2 - - uid: 8119 + - uid: 14736 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-8.5 + pos: -15.5,52.5 parent: 2 - - uid: 8183 + - uid: 14873 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,23.5 + pos: -18.5,52.5 parent: 2 - - uid: 9742 + - uid: 15440 components: - type: Transform - pos: -2.5,0.5 + pos: 54.5,-5.5 parent: 2 - - uid: 9765 + - uid: 15441 components: - type: Transform - pos: -1.5,0.5 + pos: 54.5,-4.5 parent: 2 - - uid: 10693 + - uid: 15442 components: - type: Transform - pos: 50.5,-12.5 + pos: 53.5,-4.5 parent: 2 - - uid: 10955 + - uid: 15443 components: - type: Transform - pos: -0.5,0.5 + pos: 51.5,-4.5 parent: 2 - - uid: 10960 + - uid: 15464 components: - type: Transform - pos: 0.5,0.5 + pos: 51.5,-1.5 parent: 2 - - uid: 11959 + - uid: 15582 components: - type: Transform - pos: -3.5,-1.5 + pos: -19.5,-46.5 parent: 2 - - uid: 15035 + - uid: 15598 components: - type: Transform - pos: -3.5,0.5 + rot: -1.5707963267948966 rad + pos: 2.5,-31.5 parent: 2 - - uid: 15601 + - uid: 15599 components: - type: Transform - pos: -32.5,-35.5 + rot: -1.5707963267948966 rad + pos: 2.5,-32.5 parent: 2 - - uid: 15604 + - uid: 15622 components: - type: Transform - pos: -35.5,-40.5 + pos: -39.5,-38.5 parent: 2 - - uid: 15607 + - uid: 15636 components: - type: Transform - pos: -32.5,-40.5 + pos: -38.5,-36.5 parent: 2 - - uid: 15644 + - uid: 15643 components: - type: Transform - pos: 18.5,-9.5 + pos: -37.5,-36.5 parent: 2 - - uid: 15690 + - uid: 15647 components: - type: Transform - pos: -31.5,-36.5 + pos: -39.5,-36.5 parent: 2 - - uid: 15745 + - uid: 15658 components: - type: Transform - pos: 40.5,-12.5 + pos: -39.5,-37.5 parent: 2 - - uid: 15773 + - uid: 15697 components: - type: Transform - pos: -34.5,-41.5 + pos: -35.5,-36.5 parent: 2 - - uid: 16091 + - uid: 15714 components: - type: Transform - pos: -16.5,3.5 + pos: 38.5,-14.5 parent: 2 - - uid: 16097 + - uid: 15735 components: - type: Transform - pos: -15.5,4.5 + pos: -17.5,-42.5 parent: 2 - - uid: 16099 + - uid: 15764 components: - type: Transform - pos: -16.5,4.5 + pos: 36.5,-14.5 parent: 2 - - uid: 16537 + - uid: 16089 components: - type: Transform - pos: 19.5,8.5 - parent: 16200 - - uid: 16538 + pos: 41.5,-21.5 + parent: 2 + - uid: 16090 components: - type: Transform - pos: 19.5,7.5 - parent: 16200 - - uid: 16539 + pos: 18.5,-11.5 + parent: 2 + - uid: 16467 components: - type: Transform - pos: 21.5,7.5 + rot: 3.141592653589793 rad + pos: 23.5,25.5 parent: 16200 - - uid: 16540 + - uid: 16481 components: - type: Transform - pos: 24.5,7.5 + pos: 30.5,15.5 parent: 16200 - - uid: 16541 + - uid: 16482 components: - type: Transform - pos: 25.5,7.5 + pos: 29.5,23.5 parent: 16200 - - uid: 17413 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 2 -- proto: WallRockChromite - entities: - - uid: 3399 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 7808 - components: - - type: Transform - pos: 25.5,21.5 - parent: 2 - - uid: 7811 - components: - - type: Transform - pos: 25.5,20.5 - parent: 2 - - uid: 11693 + - uid: 16483 components: - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 12382 + pos: 29.5,22.5 + parent: 16200 + - uid: 16484 components: - type: Transform - pos: 29.5,18.5 - parent: 2 - - uid: 12397 + pos: 29.5,21.5 + parent: 16200 + - uid: 16485 components: - type: Transform - pos: 28.5,26.5 - parent: 2 - - uid: 12398 + pos: 22.5,25.5 + parent: 16200 + - uid: 16486 components: - type: Transform - pos: 27.5,25.5 - parent: 2 - - uid: 16085 + pos: 20.5,25.5 + parent: 16200 + - uid: 16487 components: - type: Transform - pos: 25.5,23.5 - parent: 2 - - uid: 17016 + pos: 19.5,25.5 + parent: 16200 + - uid: 16488 components: - type: Transform - pos: 25.5,22.5 - parent: 2 -- proto: WallShuttle - entities: - - uid: 16101 + pos: 21.5,25.5 + parent: 16200 + - uid: 16489 components: - type: Transform - pos: 33.5,22.5 - parent: 17590 - - uid: 17649 + pos: 18.5,24.5 + parent: 16200 + - uid: 16490 components: - type: Transform - pos: 47.5,-11.5 - parent: 17590 - - uid: 17915 + pos: 19.5,24.5 + parent: 16200 + - uid: 16491 components: - type: Transform - pos: 48.5,-16.5 - parent: 17590 - - uid: 18041 + pos: 17.5,24.5 + parent: 16200 + - uid: 16492 components: - type: Transform - pos: 43.5,-12.5 - parent: 17590 - - uid: 18234 + pos: 16.5,24.5 + parent: 16200 + - uid: 16493 components: - type: Transform - pos: 48.5,-12.5 - parent: 17590 - - uid: 18606 + pos: 16.5,22.5 + parent: 16200 + - uid: 16494 components: - type: Transform - pos: 47.5,-16.5 - parent: 17590 - - uid: 18949 + pos: 17.5,22.5 + parent: 16200 + - uid: 16495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-9.5 - parent: 17590 - - uid: 18951 + pos: 18.5,22.5 + parent: 16200 + - uid: 16496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,7.5 - parent: 17590 - - uid: 18952 + pos: 19.5,22.5 + parent: 16200 + - uid: 16498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,7.5 - parent: 17590 - - uid: 18953 + pos: 17.5,19.5 + parent: 16200 + - uid: 16500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,7.5 - parent: 17590 - - uid: 18954 + pos: 18.5,17.5 + parent: 16200 + - uid: 16501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,7.5 - parent: 17590 - - uid: 18956 + pos: 17.5,17.5 + parent: 16200 + - uid: 16502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,7.5 - parent: 17590 - - uid: 18958 + pos: 19.5,17.5 + parent: 16200 + - uid: 16503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,7.5 - parent: 17590 - - uid: 18960 + pos: 19.5,14.5 + parent: 16200 + - uid: 16504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,7.5 - parent: 17590 - - uid: 18962 + pos: 19.5,19.5 + parent: 16200 + - uid: 16505 components: - type: Transform - pos: 38.5,18.5 - parent: 17590 - - uid: 18963 + pos: 18.5,14.5 + parent: 16200 + - uid: 16506 components: - type: Transform - pos: 4.5,-12.5 - parent: 17590 - - uid: 18964 + pos: 16.5,14.5 + parent: 16200 + - uid: 16507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,7.5 - parent: 17590 - - uid: 18965 + pos: 17.5,14.5 + parent: 16200 + - uid: 16508 components: - type: Transform - pos: 49.5,1.5 - parent: 17590 - - uid: 18966 + pos: 17.5,12.5 + parent: 16200 + - uid: 16509 components: - type: Transform - pos: 2.5,-3.5 - parent: 17590 - - uid: 18967 + pos: 16.5,12.5 + parent: 16200 + - uid: 16510 components: - type: Transform - pos: 20.5,3.5 - parent: 17590 - - uid: 18968 + pos: 18.5,12.5 + parent: 16200 + - uid: 16511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,12.5 - parent: 17590 - - uid: 18969 + pos: 19.5,12.5 + parent: 16200 + - uid: 16512 components: - type: Transform - pos: 35.5,22.5 - parent: 17590 - - uid: 18970 + pos: 19.5,11.5 + parent: 16200 + - uid: 16513 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,10.5 - parent: 17590 - - uid: 18971 + pos: 19.5,9.5 + parent: 16200 + - uid: 16514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,10.5 - parent: 17590 - - uid: 18973 + pos: 18.5,19.5 + parent: 16200 + - uid: 16515 components: - type: Transform - pos: 13.5,-14.5 - parent: 17590 - - uid: 18974 + pos: 19.5,10.5 + parent: 16200 + - uid: 16516 components: - type: Transform - pos: 31.5,19.5 - parent: 17590 - - uid: 18975 + pos: 20.5,7.5 + parent: 16200 + - uid: 16517 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,10.5 - parent: 17590 - - uid: 18976 + pos: 22.5,7.5 + parent: 16200 + - uid: 16518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,10.5 - parent: 17590 - - uid: 18977 + pos: 23.5,7.5 + parent: 16200 + - uid: 16519 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 17590 - - uid: 18978 + pos: 26.5,7.5 + parent: 16200 + - uid: 16520 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,16.5 - parent: 17590 - - uid: 18979 + pos: 27.5,7.5 + parent: 16200 + - uid: 16521 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 17590 - - uid: 18980 + pos: 28.5,7.5 + parent: 16200 + - uid: 16522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,16.5 - parent: 17590 - - uid: 18981 + pos: 29.5,7.5 + parent: 16200 + - uid: 16525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,16.5 - parent: 17590 - - uid: 18982 + pos: 29.5,11.5 + parent: 16200 + - uid: 16526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,16.5 - parent: 17590 - - uid: 18983 + pos: 29.5,12.5 + parent: 16200 + - uid: 16527 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,18.5 - parent: 17590 - - uid: 18984 + pos: 29.5,14.5 + parent: 16200 + - uid: 16528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,18.5 - parent: 17590 - - uid: 18985 + pos: 29.5,13.5 + parent: 16200 + - uid: 16530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,18.5 - parent: 17590 - - uid: 18986 + pos: 29.5,15.5 + parent: 16200 + - uid: 16531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,12.5 - parent: 17590 - - uid: 18987 + pos: 32.5,17.5 + parent: 16200 + - uid: 16532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,12.5 - parent: 17590 - - uid: 18988 + pos: 32.5,19.5 + parent: 16200 + - uid: 16533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,18.5 - parent: 17590 - - uid: 18989 + pos: 32.5,18.5 + parent: 16200 + - uid: 16534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,18.5 - parent: 17590 - - uid: 18990 + pos: 31.5,20.5 + parent: 16200 + - uid: 16535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,18.5 - parent: 17590 - - uid: 18991 + pos: 30.5,21.5 + parent: 16200 + - uid: 16536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 17590 - - uid: 18992 + pos: 31.5,16.5 + parent: 16200 + - uid: 16565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 17590 - - uid: 18993 + pos: 44.5,-19.5 + parent: 2 + - uid: 16838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 17590 - - uid: 18994 + rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 16200 + - uid: 16851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,3.5 - parent: 17590 - - uid: 18995 + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 16200 + - uid: 17424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,4.5 - parent: 17590 - - uid: 18996 + pos: -4.5,-4.5 + parent: 17413 + - uid: 17425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,2.5 - parent: 17590 - - uid: 18997 + pos: -4.5,-3.5 + parent: 17413 + - uid: 17505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,5.5 - parent: 17590 - - uid: 18998 + pos: -17.5,-46.5 + parent: 2 + - uid: 17507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-4.5 - parent: 17590 - - uid: 19000 + pos: -18.5,-46.5 + parent: 2 + - uid: 17509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,6.5 - parent: 17590 - - uid: 19004 + pos: -20.5,-46.5 + parent: 2 + - uid: 17518 components: - type: Transform - pos: 19.5,-1.5 - parent: 17590 - - uid: 19005 + pos: 53.5,-3.5 + parent: 2 + - uid: 17519 components: - type: Transform - pos: 21.5,4.5 - parent: 17590 - - uid: 19006 + pos: 53.5,-2.5 + parent: 2 + - uid: 17523 components: - type: Transform - pos: 27.5,4.5 - parent: 17590 - - uid: 19007 + pos: 53.5,-1.5 + parent: 2 + - uid: 17569 components: - type: Transform - pos: 22.5,4.5 - parent: 17590 - - uid: 19008 + pos: -17.5,-41.5 + parent: 2 + - uid: 17570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-21.5 - parent: 17590 - - uid: 19009 + pos: -17.5,-39.5 + parent: 2 + - uid: 17571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-21.5 - parent: 17590 - - uid: 19010 + pos: -18.5,-39.5 + parent: 2 + - uid: 17572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-21.5 - parent: 17590 - - uid: 19011 + pos: -17.5,-40.5 + parent: 2 + - uid: 17578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-21.5 - parent: 17590 - - uid: 19012 + pos: -20.5,-39.5 + parent: 2 + - uid: 19508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-21.5 - parent: 17590 - - uid: 19013 + pos: -3.5,-2.5 + parent: 17641 + - uid: 19509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-21.5 - parent: 17590 - - uid: 19014 + pos: -4.5,-2.5 + parent: 17641 + - uid: 19510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-21.5 - parent: 17590 - - uid: 19015 + pos: -4.5,-1.5 + parent: 17641 + - uid: 19511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-21.5 - parent: 17590 - - uid: 19016 + pos: -4.5,0.5 + parent: 17641 + - uid: 19512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-21.5 - parent: 17590 - - uid: 19017 + pos: -4.5,1.5 + parent: 17641 + - uid: 19513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-21.5 - parent: 17590 - - uid: 19018 + pos: -4.5,-0.5 + parent: 17641 + - uid: 19514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-21.5 - parent: 17590 - - uid: 19019 + pos: 3.5,5.5 + parent: 17641 + - uid: 19515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-21.5 - parent: 17590 - - uid: 19020 + pos: 2.5,5.5 + parent: 17641 + - uid: 19516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-21.5 - parent: 17590 - - uid: 19021 + pos: 0.5,5.5 + parent: 17641 + - uid: 19517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-21.5 - parent: 17590 - - uid: 19022 + pos: -0.5,5.5 + parent: 17641 + - uid: 19518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,12.5 - parent: 17590 - - uid: 19023 + pos: 1.5,5.5 + parent: 17641 + - uid: 19519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,10.5 - parent: 17590 - - uid: 19024 + pos: -1.5,5.5 + parent: 17641 + - uid: 19520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-9.5 - parent: 17590 - - uid: 19025 + pos: -2.5,5.5 + parent: 17641 + - uid: 19521 components: - type: Transform - pos: 28.5,16.5 - parent: 17590 - - uid: 19026 + pos: -4.5,3.5 + parent: 17641 + - uid: 19522 components: - type: Transform - pos: 28.5,18.5 - parent: 17590 - - uid: 19027 + pos: -4.5,2.5 + parent: 17641 + - uid: 19523 components: - type: Transform - pos: 15.5,-4.5 - parent: 17590 - - uid: 19028 + pos: -4.5,4.5 + parent: 17641 + - uid: 19524 components: - type: Transform - pos: 15.5,-14.5 - parent: 17590 - - uid: 19029 + pos: -3.5,5.5 + parent: 17641 + - uid: 19525 components: - type: Transform - pos: 15.5,-16.5 - parent: 17590 - - uid: 19030 + pos: 4.5,10.5 + parent: 17641 + - uid: 19526 components: - type: Transform - pos: 17.5,-16.5 - parent: 17590 - - uid: 19031 + pos: 7.5,4.5 + parent: 17641 + - uid: 19527 components: - type: Transform - pos: 16.5,-16.5 - parent: 17590 - - uid: 19032 + pos: 8.5,4.5 + parent: 17641 + - uid: 19528 components: - type: Transform - pos: 10.5,-13.5 - parent: 17590 - - uid: 19033 + pos: 9.5,4.5 + parent: 17641 + - uid: 19529 components: - type: Transform - pos: 4.5,-11.5 - parent: 17590 - - uid: 19034 + pos: 7.5,5.5 + parent: 17641 + - uid: 19530 components: - type: Transform - pos: 4.5,-13.5 - parent: 17590 - - uid: 19035 + pos: 10.5,4.5 + parent: 17641 + - uid: 19531 components: - type: Transform - pos: 15.5,-3.5 - parent: 17590 - - uid: 19036 + pos: 11.5,4.5 + parent: 17641 + - uid: 19532 components: - type: Transform - pos: 43.5,4.5 - parent: 17590 - - uid: 19037 + pos: 26.5,11.5 + parent: 17641 + - uid: 19533 components: - type: Transform - pos: 43.5,6.5 - parent: 17590 - - uid: 19038 + pos: -3.5,-3.5 + parent: 17641 + - uid: 19534 components: - type: Transform - pos: 42.5,-2.5 - parent: 17590 - - uid: 19039 + pos: -3.5,-4.5 + parent: 17641 + - uid: 19535 components: - type: Transform - pos: 48.5,1.5 - parent: 17590 - - uid: 19040 + pos: -3.5,-5.5 + parent: 17641 + - uid: 19536 components: - type: Transform - pos: 37.5,-0.5 - parent: 17590 - - uid: 19041 + pos: -2.5,-6.5 + parent: 17641 + - uid: 19537 components: - type: Transform - pos: 14.5,-0.5 - parent: 17590 - - uid: 19042 + pos: -0.5,-6.5 + parent: 17641 + - uid: 19538 components: - type: Transform - pos: 37.5,1.5 - parent: 17590 - - uid: 19043 + pos: -1.5,-6.5 + parent: 17641 + - uid: 19539 components: - type: Transform - pos: 37.5,0.5 - parent: 17590 - - uid: 19044 + pos: 0.5,-6.5 + parent: 17641 + - uid: 19540 components: - type: Transform - pos: 37.5,-1.5 - parent: 17590 - - uid: 19045 + pos: 1.5,-6.5 + parent: 17641 + - uid: 19541 components: - type: Transform - pos: 37.5,5.5 - parent: 17590 - - uid: 19046 + pos: 2.5,-6.5 + parent: 17641 + - uid: 19542 components: - type: Transform - pos: 37.5,7.5 - parent: 17590 - - uid: 19047 + pos: 3.5,-6.5 + parent: 17641 + - uid: 19543 components: - type: Transform - pos: 0.5,-10.5 - parent: 17590 - - uid: 19048 + pos: -2.5,-5.5 + parent: 17641 + - uid: 19544 components: - type: Transform - pos: 2.5,-10.5 - parent: 17590 - - uid: 19049 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 17641 + - uid: 19545 components: - type: Transform - pos: 15.5,-0.5 - parent: 17590 - - uid: 19050 + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 17641 + - uid: 19546 components: - type: Transform - pos: 3.5,-3.5 - parent: 17590 - - uid: 19051 + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 17641 + - uid: 19547 components: - type: Transform - pos: 3.5,-10.5 - parent: 17590 - - uid: 19052 + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 17641 + - uid: 19548 components: - type: Transform - pos: 44.5,3.5 - parent: 17590 - - uid: 19053 + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 17641 + - uid: 19549 components: - type: Transform - pos: 37.5,2.5 - parent: 17590 - - uid: 19054 + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 17641 + - uid: 19550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 17590 - - uid: 19055 + pos: 34.5,-6.5 + parent: 17641 + - uid: 19551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 17590 - - uid: 19056 + pos: 11.5,5.5 + parent: 17641 + - uid: 19552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 17590 - - uid: 19057 + pos: 24.5,12.5 + parent: 17641 + - uid: 19553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,22.5 - parent: 17590 - - uid: 19058 + pos: 7.5,6.5 + parent: 17641 + - uid: 19554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,19.5 - parent: 17590 - - uid: 19059 + pos: 9.5,6.5 + parent: 17641 + - uid: 19555 components: - type: Transform - pos: 15.5,-2.5 - parent: 17590 - - uid: 19060 + pos: 10.5,6.5 + parent: 17641 + - uid: 19556 components: - type: Transform - pos: 4.5,-9.5 - parent: 17590 - - uid: 19061 + pos: 11.5,6.5 + parent: 17641 + - uid: 19557 components: - type: Transform - pos: 48.5,-3.5 - parent: 17590 - - uid: 19063 + pos: 8.5,6.5 + parent: 17641 + - uid: 19558 components: - type: Transform - pos: 15.5,-15.5 - parent: 17590 - - uid: 19064 + pos: 3.5,9.5 + parent: 17641 + - uid: 19559 components: - type: Transform - pos: 28.5,10.5 - parent: 17590 - - uid: 19065 + pos: 3.5,7.5 + parent: 17641 + - uid: 19560 components: - type: Transform - pos: 28.5,12.5 - parent: 17590 - - uid: 19066 + pos: 3.5,6.5 + parent: 17641 + - uid: 19561 components: - type: Transform - pos: 40.5,-11.5 - parent: 17590 - - uid: 19067 + pos: 3.5,8.5 + parent: 17641 + - uid: 19562 components: - type: Transform - pos: 24.5,-20.5 - parent: 17590 - - uid: 19068 + pos: 5.5,10.5 + parent: 17641 + - uid: 19563 components: - type: Transform - pos: 4.5,-4.5 - parent: 17590 - - uid: 19069 + pos: 6.5,10.5 + parent: 17641 + - uid: 19564 components: - type: Transform - pos: 15.5,-1.5 - parent: 17590 - - uid: 19070 + pos: 7.5,10.5 + parent: 17641 + - uid: 19565 components: - type: Transform - pos: 26.5,4.5 - parent: 17590 - - uid: 19071 + pos: 9.5,10.5 + parent: 17641 + - uid: 19566 components: - type: Transform - pos: 29.5,5.5 - parent: 17590 - - uid: 19072 + pos: 10.5,10.5 + parent: 17641 + - uid: 19567 components: - type: Transform - pos: 29.5,6.5 - parent: 17590 - - uid: 19073 + pos: 11.5,10.5 + parent: 17641 + - uid: 19568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,10.5 - parent: 17590 - - uid: 19074 + pos: 4.5,9.5 + parent: 17641 + - uid: 19569 components: - type: Transform - pos: 38.5,16.5 - parent: 17590 - - uid: 19075 + pos: 6.5,14.5 + parent: 17641 + - uid: 19570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 17590 - - uid: 19076 + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 17641 + - uid: 19571 components: - type: Transform - pos: -0.5,-10.5 - parent: 17590 - - uid: 19077 + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 17641 + - uid: 19572 components: - type: Transform - pos: -0.5,-3.5 - parent: 17590 - - uid: 19078 + pos: 9.5,14.5 + parent: 17641 + - uid: 19573 components: - type: Transform - pos: 45.5,3.5 - parent: 17590 - - uid: 19079 + pos: 25.5,11.5 + parent: 17641 + - uid: 19574 components: - type: Transform - pos: 46.5,3.5 - parent: 17590 - - uid: 19080 + pos: 12.5,10.5 + parent: 17641 + - uid: 19575 components: - type: Transform - pos: 48.5,3.5 - parent: 17590 - - uid: 19081 + pos: 14.5,10.5 + parent: 17641 + - uid: 19576 components: - type: Transform - pos: 37.5,3.5 - parent: 17590 - - uid: 19082 + pos: 13.5,10.5 + parent: 17641 + - uid: 19577 components: - type: Transform - pos: 44.5,-3.5 - parent: 17590 - - uid: 19083 + pos: 22.5,10.5 + parent: 17641 + - uid: 19578 components: - type: Transform - pos: 44.5,-4.5 - parent: 17590 - - uid: 19084 + pos: 21.5,10.5 + parent: 17641 + - uid: 19579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,10.5 - parent: 17590 - - uid: 19085 + pos: 20.5,10.5 + parent: 17641 + - uid: 19580 components: - type: Transform - pos: 24.5,4.5 - parent: 17590 - - uid: 19086 + pos: 15.5,10.5 + parent: 17641 + - uid: 19581 components: - type: Transform - pos: 44.5,5.5 - parent: 17590 - - uid: 19087 + pos: 19.5,10.5 + parent: 17641 + - uid: 19582 components: - type: Transform - pos: 25.5,4.5 - parent: 17590 - - uid: 19088 + pos: 19.5,12.5 + parent: 17641 + - uid: 19583 components: - type: Transform - pos: 45.5,5.5 - parent: 17590 - - uid: 19089 + pos: 19.5,11.5 + parent: 17641 + - uid: 19584 components: - type: Transform - pos: 46.5,5.5 - parent: 17590 - - uid: 19090 + pos: 15.5,12.5 + parent: 17641 + - uid: 19585 components: - type: Transform - pos: 12.5,-9.5 - parent: 17590 - - uid: 19091 + pos: 15.5,11.5 + parent: 17641 + - uid: 19586 components: - type: Transform - pos: 7.5,-0.5 - parent: 17590 - - uid: 19092 + pos: 15.5,13.5 + parent: 17641 + - uid: 19587 components: - type: Transform - pos: 8.5,-0.5 - parent: 17590 - - uid: 19093 + pos: 15.5,15.5 + parent: 17641 + - uid: 19588 components: - type: Transform - pos: 4.5,-0.5 - parent: 17590 - - uid: 19094 + pos: 15.5,14.5 + parent: 17641 + - uid: 19589 components: - type: Transform - pos: 6.5,-0.5 - parent: 17590 - - uid: 19095 + pos: 19.5,13.5 + parent: 17641 + - uid: 19590 components: - type: Transform - pos: 33.5,-20.5 - parent: 17590 - - uid: 19096 + pos: 19.5,14.5 + parent: 17641 + - uid: 19591 components: - type: Transform - pos: 29.5,4.5 - parent: 17590 - - uid: 19097 + pos: 23.5,10.5 + parent: 17641 + - uid: 19592 components: - type: Transform - pos: 28.5,4.5 - parent: 17590 - - uid: 19098 + rot: 1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 17641 + - uid: 19593 components: - type: Transform - pos: 18.5,-16.5 - parent: 17590 - - uid: 19099 + rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 17641 + - uid: 19594 components: - type: Transform - pos: 18.5,-17.5 - parent: 17590 - - uid: 19100 + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 17641 + - uid: 19595 components: - type: Transform - pos: 43.5,3.5 - parent: 17590 - - uid: 19101 + rot: 1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 17641 + - uid: 19596 components: - type: Transform - pos: 4.5,-1.5 - parent: 17590 - - uid: 19102 + rot: 1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 17641 + - uid: 19597 components: - type: Transform - pos: 13.5,-5.5 - parent: 17590 - - uid: 19103 + rot: 1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 17641 + - uid: 19598 components: - type: Transform - pos: 13.5,-4.5 - parent: 17590 - - uid: 19104 + rot: 1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 17641 + - uid: 19599 components: - type: Transform - pos: 13.5,-8.5 - parent: 17590 - - uid: 19105 + rot: 1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 17641 + - uid: 19600 components: - type: Transform - pos: 13.5,-9.5 - parent: 17590 - - uid: 19106 + rot: 1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 17641 + - uid: 19601 components: - type: Transform - pos: 10.5,-0.5 - parent: 17590 - - uid: 19107 + rot: 1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 17641 + - uid: 19602 components: - type: Transform - pos: 4.5,-2.5 - parent: 17590 - - uid: 19108 + rot: 1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 17641 + - uid: 19603 components: - type: Transform - pos: 5.5,-4.5 - parent: 17590 - - uid: 19109 + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 17641 + - uid: 19604 components: - type: Transform - pos: 7.5,-9.5 - parent: 17590 - - uid: 19110 + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 17641 + - uid: 19605 components: - type: Transform - pos: 12.5,-13.5 - parent: 17590 - - uid: 19111 + rot: 1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 17641 + - uid: 19606 components: - type: Transform - pos: 9.5,-13.5 - parent: 17590 - - uid: 19112 + rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 17641 + - uid: 19607 components: - type: Transform - pos: 11.5,-13.5 - parent: 17590 - - uid: 19113 + rot: 1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 17641 + - uid: 19608 components: - type: Transform - pos: 7.5,-13.5 - parent: 17590 - - uid: 19114 + rot: 1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 17641 + - uid: 19609 components: - type: Transform - pos: 6.5,-13.5 - parent: 17590 - - uid: 19115 + rot: 1.5707963267948966 rad + pos: 26.5,-6.5 + parent: 17641 + - uid: 19610 components: - type: Transform - pos: 5.5,-13.5 - parent: 17590 - - uid: 19116 + rot: 1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 17641 + - uid: 19611 components: - type: Transform - pos: 8.5,-13.5 - parent: 17590 - - uid: 19117 + rot: 1.5707963267948966 rad + pos: 24.5,10.5 + parent: 17641 + - uid: 19612 components: - type: Transform - pos: 48.5,-17.5 - parent: 17590 - - uid: 19118 + pos: 33.5,-6.5 + parent: 17641 + - uid: 19613 components: - type: Transform - pos: 48.5,-20.5 - parent: 17590 - - uid: 19119 + pos: 30.5,-6.5 + parent: 17641 + - uid: 19614 components: - type: Transform - pos: 48.5,-19.5 - parent: 17590 - - uid: 19120 + rot: 1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 17641 + - uid: 19615 components: - type: Transform - pos: 48.5,-18.5 - parent: 17590 - - uid: 19121 + pos: 22.5,2.5 + parent: 17641 + - uid: 19616 components: - type: Transform - pos: 34.5,-20.5 - parent: 17590 - - uid: 19122 + pos: 10.5,11.5 + parent: 17641 + - uid: 19617 components: - type: Transform - pos: 26.5,-20.5 - parent: 17590 - - uid: 19123 + pos: 10.5,13.5 + parent: 17641 + - uid: 19618 components: - type: Transform - pos: 25.5,-20.5 - parent: 17590 - - uid: 19124 + pos: 10.5,14.5 + parent: 17641 + - uid: 19619 components: - type: Transform - pos: 19.5,-0.5 - parent: 17590 - - uid: 19125 + pos: 10.5,12.5 + parent: 17641 + - uid: 19620 components: - type: Transform - pos: 37.5,6.5 - parent: 17590 - - uid: 19126 + pos: 10.5,15.5 + parent: 17641 + - uid: 19621 components: - type: Transform - pos: 37.5,4.5 - parent: 17590 - - uid: 19127 + pos: 10.5,17.5 + parent: 17641 + - uid: 19622 components: - type: Transform - pos: 5.5,-9.5 - parent: 17590 - - uid: 19128 + pos: 10.5,18.5 + parent: 17641 + - uid: 19623 components: - type: Transform - pos: 37.5,-2.5 - parent: 17590 - - uid: 19129 + pos: 10.5,20.5 + parent: 17641 + - uid: 19624 components: - type: Transform - pos: 38.5,-2.5 - parent: 17590 - - uid: 19130 + pos: 10.5,19.5 + parent: 17641 + - uid: 19625 components: - type: Transform - pos: 39.5,-2.5 - parent: 17590 - - uid: 19131 + pos: 10.5,23.5 + parent: 17641 + - uid: 19626 components: - type: Transform - pos: 40.5,-2.5 - parent: 17590 - - uid: 19132 + pos: 10.5,24.5 + parent: 17641 + - uid: 19627 components: - type: Transform - pos: 43.5,-2.5 - parent: 17590 - - uid: 19133 + pos: 10.5,22.5 + parent: 17641 + - uid: 19628 components: - type: Transform - pos: 44.5,-2.5 - parent: 17590 - - uid: 19134 + pos: 10.5,21.5 + parent: 17641 + - uid: 19629 components: - type: Transform - pos: 45.5,-2.5 - parent: 17590 - - uid: 19135 + pos: 10.5,25.5 + parent: 17641 + - uid: 19630 components: - type: Transform - pos: 46.5,-2.5 - parent: 17590 - - uid: 19136 + pos: 10.5,26.5 + parent: 17641 + - uid: 19631 components: - type: Transform - pos: 47.5,-2.5 - parent: 17590 - - uid: 19138 + pos: 10.5,27.5 + parent: 17641 + - uid: 19632 components: - type: Transform - pos: 19.5,-2.5 - parent: 17590 - - uid: 19139 + pos: 10.5,28.5 + parent: 17641 + - uid: 19633 components: - type: Transform - pos: 13.5,-0.5 - parent: 17590 - - uid: 19140 + pos: 10.5,29.5 + parent: 17641 + - uid: 19634 components: - type: Transform - pos: 12.5,-3.5 - parent: 17590 - - uid: 19141 + pos: 11.5,29.5 + parent: 17641 + - uid: 19635 components: - type: Transform - pos: 12.5,-1.5 - parent: 17590 - - uid: 19142 + pos: 13.5,29.5 + parent: 17641 + - uid: 19636 components: - type: Transform - pos: 13.5,-13.5 - parent: 17590 - - uid: 19143 + pos: 14.5,29.5 + parent: 17641 + - uid: 19637 components: - type: Transform - pos: 13.5,-12.5 - parent: 17590 - - uid: 19144 + pos: 15.5,29.5 + parent: 17641 + - uid: 19638 components: - type: Transform - pos: 13.5,-11.5 - parent: 17590 - - uid: 19145 + pos: 12.5,29.5 + parent: 17641 + - uid: 19639 components: - type: Transform - pos: 35.5,-11.5 - parent: 17590 - - uid: 19146 + pos: 16.5,29.5 + parent: 17641 + - uid: 19640 components: - type: Transform - pos: 36.5,-11.5 - parent: 17590 - - uid: 19147 + pos: 19.5,29.5 + parent: 17641 + - uid: 19641 components: - type: Transform - pos: 37.5,-11.5 - parent: 17590 - - uid: 19148 + pos: 17.5,29.5 + parent: 17641 + - uid: 19642 components: - type: Transform - pos: 38.5,-11.5 - parent: 17590 - - uid: 19149 + pos: 20.5,29.5 + parent: 17641 + - uid: 19643 components: - type: Transform - pos: 39.5,-11.5 - parent: 17590 - - uid: 19150 + pos: 21.5,29.5 + parent: 17641 + - uid: 19644 components: - type: Transform - pos: 43.5,-11.5 - parent: 17590 - - uid: 19151 + pos: 18.5,29.5 + parent: 17641 + - uid: 19645 components: - type: Transform - pos: 44.5,-11.5 - parent: 17590 - - uid: 19152 + pos: 22.5,29.5 + parent: 17641 + - uid: 19646 components: - type: Transform - pos: 45.5,-11.5 - parent: 17590 - - uid: 19153 + pos: 23.5,29.5 + parent: 17641 + - uid: 19647 components: - type: Transform - pos: 46.5,-11.5 - parent: 17590 - - uid: 19156 + pos: 24.5,29.5 + parent: 17641 + - uid: 19648 components: - type: Transform - pos: 35.5,-12.5 - parent: 17590 - - uid: 19157 + pos: 24.5,28.5 + parent: 17641 + - uid: 19649 components: - type: Transform - pos: 35.5,-13.5 - parent: 17590 - - uid: 19158 + pos: 24.5,26.5 + parent: 17641 + - uid: 19650 components: - type: Transform - pos: 35.5,-14.5 - parent: 17590 - - uid: 19159 + pos: 24.5,25.5 + parent: 17641 + - uid: 19651 components: - type: Transform - pos: 35.5,-15.5 - parent: 17590 - - uid: 19160 + pos: 24.5,24.5 + parent: 17641 + - uid: 19652 components: - type: Transform - pos: 35.5,-16.5 - parent: 17590 - - uid: 19161 + pos: 24.5,27.5 + parent: 17641 + - uid: 19653 components: - type: Transform - pos: 35.5,-17.5 - parent: 17590 - - uid: 19162 + pos: 24.5,21.5 + parent: 17641 + - uid: 19654 components: - type: Transform - pos: 35.5,-18.5 - parent: 17590 - - uid: 19163 + pos: 24.5,20.5 + parent: 17641 + - uid: 19655 components: - type: Transform - pos: 35.5,-19.5 - parent: 17590 - - uid: 19164 + pos: 24.5,19.5 + parent: 17641 + - uid: 19656 components: - type: Transform - pos: 35.5,-20.5 - parent: 17590 - - uid: 19165 + pos: 24.5,18.5 + parent: 17641 + - uid: 19657 components: - type: Transform - pos: 40.5,-12.5 - parent: 17590 - - uid: 19166 + pos: 24.5,17.5 + parent: 17641 + - uid: 19658 components: - type: Transform - pos: 40.5,-13.5 - parent: 17590 - - uid: 19167 + pos: 24.5,16.5 + parent: 17641 + - uid: 19659 components: - type: Transform - pos: 40.5,-15.5 - parent: 17590 - - uid: 19168 + pos: 24.5,15.5 + parent: 17641 + - uid: 19660 components: - type: Transform - pos: 40.5,-16.5 - parent: 17590 - - uid: 19169 + pos: 24.5,13.5 + parent: 17641 + - uid: 19661 components: - type: Transform - pos: 40.5,-17.5 - parent: 17590 - - uid: 19170 + pos: 24.5,14.5 + parent: 17641 + - uid: 19662 components: - type: Transform - pos: 13.5,-10.5 - parent: 17590 - - uid: 19171 + pos: 24.5,11.5 + parent: 17641 + - uid: 19663 components: - type: Transform - pos: 40.5,-19.5 - parent: 17590 - - uid: 19172 + rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 17641 + - uid: 19664 components: - type: Transform - pos: 40.5,-20.5 - parent: 17590 - - uid: 19173 + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 17641 + - uid: 19665 components: - type: Transform - pos: 39.5,-16.5 - parent: 17590 - - uid: 19174 + rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 17641 + - uid: 19666 components: - type: Transform - pos: 38.5,-16.5 - parent: 17590 - - uid: 19175 + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 17641 + - uid: 19667 components: - type: Transform - pos: 37.5,-16.5 - parent: 17590 - - uid: 19176 + rot: 1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 17641 + - uid: 19668 components: - type: Transform - pos: 36.5,-16.5 - parent: 17590 - - uid: 19178 + rot: 1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 17641 + - uid: 19669 components: - type: Transform - pos: 43.5,-13.5 - parent: 17590 - - uid: 19179 + rot: 1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 17641 + - uid: 19670 components: - type: Transform - pos: 43.5,-15.5 - parent: 17590 - - uid: 19180 + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 17641 + - uid: 19671 components: - type: Transform - pos: 43.5,-16.5 - parent: 17590 - - uid: 19181 + rot: 1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 17641 + - uid: 19672 components: - type: Transform - pos: 43.5,-17.5 - parent: 17590 - - uid: 19182 + rot: 1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 17641 + - uid: 19673 components: - type: Transform - pos: 12.5,-2.5 - parent: 17590 - - uid: 19183 + rot: 1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 17641 + - uid: 19674 components: - type: Transform - pos: 43.5,-19.5 - parent: 17590 - - uid: 19184 + rot: 1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 17641 + - uid: 19675 components: - type: Transform - pos: 43.5,-20.5 - parent: 17590 - - uid: 19185 + rot: 1.5707963267948966 rad + pos: 23.5,-12.5 + parent: 17641 + - uid: 19676 components: - type: Transform - pos: 44.5,-16.5 - parent: 17590 - - uid: 19186 + rot: 1.5707963267948966 rad + pos: 25.5,-12.5 + parent: 17641 + - uid: 19677 components: - type: Transform - pos: 45.5,-16.5 - parent: 17590 - - uid: 19187 + rot: 1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 17641 + - uid: 19678 components: - type: Transform - pos: 46.5,-16.5 - parent: 17590 - - uid: 19190 + rot: 1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 17641 + - uid: 19679 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 17590 - - uid: 19191 + pos: 28.5,-12.5 + parent: 17641 + - uid: 19680 components: - type: Transform - pos: 4.5,-10.5 - parent: 17590 - - uid: 19192 + rot: 1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 17641 + - uid: 19681 components: - type: Transform - pos: 11.5,-9.5 - parent: 17590 - - uid: 19193 + rot: 1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 17641 + - uid: 19682 components: - type: Transform - pos: 12.5,-4.5 - parent: 17590 - - uid: 19194 + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 17641 + - uid: 19683 components: - type: Transform - pos: 7.5,-4.5 - parent: 17590 - - uid: 19195 + rot: 1.5707963267948966 rad + pos: 30.5,-7.5 + parent: 17641 + - uid: 19684 components: - type: Transform - pos: 9.5,-0.5 - parent: 17590 - - uid: 19196 + rot: 1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 17641 + - uid: 19685 components: - type: Transform - pos: 5.5,-0.5 - parent: 17590 - - uid: 19197 + rot: 1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 17641 + - uid: 19686 components: - type: Transform - pos: 12.5,-0.5 - parent: 17590 - - uid: 19198 + rot: 1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 17641 + - uid: 19687 components: - type: Transform - pos: 11.5,-0.5 - parent: 17590 - - uid: 19199 + rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 17641 + - uid: 19688 components: - type: Transform - pos: 11.5,-4.5 - parent: 17590 - - uid: 19200 + rot: -1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 17641 + - uid: 19689 components: - type: Transform - pos: 42.5,-19.5 - parent: 17590 - - uid: 19201 + rot: -1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 17641 + - uid: 19690 components: - type: Transform - pos: 23.5,4.5 - parent: 17590 - - uid: 19202 + rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 17641 + - uid: 19691 components: - type: Transform - pos: 43.5,5.5 - parent: 17590 - - uid: 19203 + pos: 5.5,13.5 + parent: 17641 + - uid: 19692 components: - type: Transform - pos: 44.5,-10.5 - parent: 17590 - - uid: 19204 + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 17641 + - uid: 19693 components: - type: Transform - pos: 0.5,-3.5 - parent: 17590 - - uid: 19205 + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 17641 + - uid: 19694 components: - type: Transform - pos: 43.5,1.5 - parent: 17590 - - uid: 19206 + rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 17641 + - uid: 19695 components: - type: Transform - pos: 47.5,1.5 - parent: 17590 - - uid: 19207 + rot: 3.141592653589793 rad + pos: 14.5,-12.5 + parent: 17641 + - uid: 19696 components: - type: Transform - pos: 47.5,-0.5 - parent: 17590 - - uid: 19208 + rot: 3.141592653589793 rad + pos: 16.5,-12.5 + parent: 17641 + - uid: 19697 components: - type: Transform - pos: 47.5,-1.5 - parent: 17590 - - uid: 19209 + rot: 3.141592653589793 rad + pos: 17.5,-12.5 + parent: 17641 + - uid: 19698 components: - type: Transform - pos: 47.5,0.5 - parent: 17590 - - uid: 19210 + rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 17641 + - uid: 19699 components: - type: Transform - pos: 43.5,-0.5 - parent: 17590 - - uid: 19211 + rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 17641 + - uid: 19700 components: - type: Transform - pos: 43.5,-1.5 - parent: 17590 - - uid: 19212 + pos: 8.5,14.5 + parent: 17641 + - uid: 19701 components: - type: Transform - pos: 43.5,0.5 - parent: 17590 - - uid: 19213 + pos: 7.5,14.5 + parent: 17641 + - uid: 19702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 17590 - - uid: 19214 + pos: 6.5,13.5 + parent: 17641 + - uid: 19703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 17590 - - uid: 19215 + pos: 6.5,11.5 + parent: 17641 + - uid: 19704 components: - type: Transform - pos: 48.5,-10.5 - parent: 17590 - - uid: 19246 + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 17641 + - uid: 19705 components: - type: Transform - pos: 36.5,7.5 - parent: 17590 - - uid: 19250 + pos: 26.5,12.5 + parent: 17641 + - uid: 19706 components: - type: Transform - pos: 30.5,7.5 - parent: 17590 - - uid: 19772 + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 17641 + - uid: 19707 components: - type: Transform - pos: 39.5,7.5 - parent: 17590 - - uid: 19773 + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 17641 + - uid: 19708 components: - type: Transform - pos: 41.5,7.5 - parent: 17590 - - uid: 19776 + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 17641 + - uid: 19709 components: - type: Transform - pos: 42.5,7.5 - parent: 17590 - - uid: 19777 + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 17641 + - uid: 19710 components: - type: Transform - pos: 38.5,7.5 - parent: 17590 - - uid: 19828 + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 17641 + - uid: 19711 components: - type: Transform - pos: 48.5,-14.5 - parent: 17590 - - uid: 19847 + rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 17641 + - uid: 19712 components: - type: Transform - pos: 48.5,-13.5 - parent: 17590 - - uid: 19865 + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 17641 + - uid: 19713 components: - type: Transform - pos: 40.5,15.5 - parent: 19854 - - uid: 19866 + rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 17641 + - uid: 19714 components: - type: Transform - pos: 41.5,15.5 - parent: 19854 - - uid: 19867 + rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 17641 + - uid: 19715 components: - type: Transform - pos: 42.5,15.5 - parent: 19854 - - uid: 19868 + pos: 4.5,13.5 + parent: 17641 + - uid: 19716 components: - type: Transform - pos: 43.5,15.5 - parent: 19854 - - uid: 19869 + pos: 3.5,13.5 + parent: 17641 + - uid: 19717 components: - type: Transform - pos: 44.5,15.5 - parent: 19854 - - uid: 19870 + pos: 3.5,12.5 + parent: 17641 + - uid: 19718 components: - type: Transform - pos: 44.5,18.5 - parent: 19854 - - uid: 19871 + pos: 35.5,-6.5 + parent: 17641 + - uid: 19719 components: - type: Transform - pos: 43.5,18.5 - parent: 19854 - - uid: 19872 + pos: 36.5,-6.5 + parent: 17641 + - uid: 19720 components: - type: Transform - pos: 42.5,18.5 - parent: 19854 - - uid: 19873 + pos: 36.5,-7.5 + parent: 17641 + - uid: 19721 components: - type: Transform - pos: 41.5,17.5 - parent: 19854 - - uid: 19874 + pos: 37.5,-7.5 + parent: 17641 + - uid: 19722 components: - type: Transform - pos: 40.5,17.5 - parent: 19854 - - uid: 19978 + pos: 38.5,-7.5 + parent: 17641 + - uid: 19723 components: - type: Transform - pos: 48.5,-15.5 - parent: 17590 - - uid: 20009 + pos: 40.5,-7.5 + parent: 17641 + - uid: 19724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 20000 - - uid: 20010 + pos: 39.5,-7.5 + parent: 17641 + - uid: 19725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,13.5 - parent: 20000 - - uid: 20012 + pos: 40.5,-6.5 + parent: 17641 + - uid: 19726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,13.5 - parent: 20000 - - uid: 20013 + pos: 41.5,-6.5 + parent: 17641 + - uid: 19727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,12.5 - parent: 20000 - - uid: 20014 + pos: 42.5,-6.5 + parent: 17641 + - uid: 19728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 20000 - - uid: 20015 + pos: 42.5,-5.5 + parent: 17641 + - uid: 19729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,10.5 - parent: 20000 - - uid: 20016 + pos: 38.5,-1.5 + parent: 17641 + - uid: 19730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,10.5 - parent: 20000 - - uid: 20017 + pos: 35.5,-2.5 + parent: 17641 + - uid: 19731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,10.5 - parent: 20000 - - uid: 20018 + pos: 35.5,-3.5 + parent: 17641 + - uid: 19732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,10.5 - parent: 20000 - - uid: 20019 + pos: 35.5,-5.5 + parent: 17641 + - uid: 19733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 20000 - - uid: 20024 + pos: 24.5,23.5 + parent: 17641 + - uid: 19734 components: - type: Transform - pos: 48.5,-11.5 - parent: 17590 -- proto: WallShuttleDiagonal - entities: - - uid: 19216 + pos: 24.5,22.5 + parent: 17641 + - uid: 19735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 17590 - - uid: 19217 + rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 17641 + - uid: 19736 components: - type: Transform - pos: 20.5,4.5 - parent: 17590 - - uid: 19218 + pos: 26.5,13.5 + parent: 17641 + - uid: 19737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-17.5 - parent: 17590 - - uid: 19219 + pos: 11.5,5.5 + parent: 17641 + - uid: 19738 components: - type: Transform - pos: -2.5,-3.5 - parent: 17590 - - uid: 19220 + pos: 11.5,4.5 + parent: 17641 + - uid: 19739 components: - type: Transform - pos: 19.5,3.5 - parent: 17590 - - uid: 19221 + pos: 36.5,-2.5 + parent: 17641 + - uid: 19740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-21.5 - parent: 17590 - - uid: 19222 + pos: 25.5,14.5 + parent: 17641 + - uid: 19741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-5.5 - parent: 17590 - - uid: 19223 + pos: 26.5,14.5 + parent: 17641 + - uid: 19742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-8.5 - parent: 17590 - - uid: 19224 + pos: 28.5,14.5 + parent: 17641 + - uid: 19743 components: - type: Transform - pos: 3.5,-2.5 - parent: 17590 - - uid: 19225 + pos: 29.5,14.5 + parent: 17641 + - uid: 19744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 17590 - - uid: 19226 + pos: 27.5,14.5 + parent: 17641 + - uid: 19745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-14.5 - parent: 17590 - - uid: 19227 + pos: 29.5,13.5 + parent: 17641 + - uid: 19746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-16.5 - parent: 17590 - - uid: 19228 + pos: 29.5,12.5 + parent: 17641 + - uid: 19747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-15.5 - parent: 17590 - - uid: 19849 + pos: 31.5,10.5 + parent: 17641 + - uid: 19748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-10.5 - parent: 17590 - - uid: 19917 + pos: 32.5,10.5 + parent: 17641 + - uid: 19749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-3.5 - parent: 17590 - - uid: 20022 + pos: 37.5,10.5 + parent: 17641 + - uid: 19750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-2.5 - parent: 17590 -- proto: WallShuttleInterior - entities: - - uid: 18459 + pos: 38.5,10.5 + parent: 17641 + - uid: 19751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-13.5 - parent: 17590 - - uid: 19229 + pos: 36.5,-1.5 + parent: 17641 + - uid: 19752 components: - type: Transform - pos: 21.5,-2.5 - parent: 17590 - - uid: 19230 + pos: 37.5,-1.5 + parent: 17641 + - uid: 19753 components: - type: Transform - pos: 24.5,-16.5 - parent: 17590 - - uid: 19231 + pos: 10.5,16.5 + parent: 17641 + - uid: 19926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,7.5 - parent: 17590 - - uid: 19232 + pos: 31.5,19.5 + parent: 16200 +- proto: WallReinforcedRust + entities: + - uid: 1646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,7.5 - parent: 17590 - - uid: 19233 + pos: 34.5,-14.5 + parent: 2 + - uid: 2483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 17590 - - uid: 19234 + pos: 14.5,-13.5 + parent: 2 + - uid: 2807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 17590 - - uid: 19235 + pos: -27.5,-19.5 + parent: 2 + - uid: 2835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-2.5 - parent: 17590 - - uid: 19236 + pos: -27.5,-18.5 + parent: 2 + - uid: 2836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-11.5 - parent: 17590 - - uid: 19237 + pos: -26.5,-18.5 + parent: 2 + - uid: 2841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-11.5 - parent: 17590 - - uid: 19238 + pos: -27.5,-20.5 + parent: 2 + - uid: 2951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 17590 - - uid: 19240 + pos: -27.5,-30.5 + parent: 2 + - uid: 2960 components: - type: Transform - pos: 23.5,-11.5 - parent: 17590 - - uid: 19241 + pos: -27.5,-31.5 + parent: 2 + - uid: 2962 components: - type: Transform - pos: 24.5,-11.5 - parent: 17590 - - uid: 19242 + pos: -27.5,-32.5 + parent: 2 + - uid: 3335 components: - type: Transform - pos: 19.5,-2.5 - parent: 17590 - - uid: 19243 + pos: -11.5,-16.5 + parent: 2 + - uid: 3571 components: - type: Transform - pos: 31.5,-2.5 - parent: 17590 - - uid: 19244 + pos: -8.5,-17.5 + parent: 2 + - uid: 3601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-14.5 - parent: 17590 - - uid: 19245 + pos: -8.5,-20.5 + parent: 2 + - uid: 4032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 - parent: 17590 - - uid: 19248 + pos: -15.5,-16.5 + parent: 2 + - uid: 4047 components: - type: Transform - pos: 24.5,-17.5 - parent: 17590 - - uid: 19249 + pos: -14.5,-16.5 + parent: 2 + - uid: 4230 components: - type: Transform - pos: 35.5,4.5 - parent: 17590 - - uid: 19251 + pos: 54.5,-11.5 + parent: 2 + - uid: 5375 components: - type: Transform - pos: 35.5,-2.5 - parent: 17590 - - uid: 19252 + pos: 0.5,47.5 + parent: 2 + - uid: 5378 components: - type: Transform - pos: 36.5,4.5 - parent: 17590 - - uid: 19253 + pos: 5.5,47.5 + parent: 2 + - uid: 5381 components: - type: Transform - pos: 30.5,4.5 - parent: 17590 - - uid: 19254 + pos: 6.5,47.5 + parent: 2 + - uid: 5383 components: - type: Transform - pos: 23.5,-2.5 - parent: 17590 - - uid: 19255 + pos: 9.5,47.5 + parent: 2 + - uid: 5384 components: - type: Transform - pos: 22.5,-2.5 - parent: 17590 - - uid: 19256 + pos: 10.5,47.5 + parent: 2 + - uid: 5603 components: - type: Transform - pos: 17.5,-11.5 - parent: 17590 - - uid: 19257 + pos: -75.5,9.5 + parent: 2 + - uid: 5609 components: - type: Transform - pos: 18.5,-11.5 - parent: 17590 - - uid: 19258 + pos: -75.5,21.5 + parent: 2 + - uid: 5732 components: - type: Transform - pos: 19.5,-11.5 - parent: 17590 - - uid: 19259 + pos: 17.5,44.5 + parent: 2 + - uid: 5736 components: - type: Transform - pos: 31.5,-11.5 - parent: 17590 - - uid: 19261 + pos: 17.5,45.5 + parent: 2 + - uid: 5754 components: - type: Transform - pos: 24.5,-15.5 - parent: 17590 - - uid: 19262 + pos: 18.5,44.5 + parent: 2 + - uid: 16537 components: - type: Transform - pos: 31.5,4.5 - parent: 17590 - - uid: 19263 + pos: 19.5,8.5 + parent: 16200 + - uid: 16538 components: - type: Transform - pos: 19.5,-1.5 - parent: 17590 - - uid: 19264 + pos: 19.5,7.5 + parent: 16200 + - uid: 16539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-13.5 - parent: 17590 - - uid: 19530 + pos: 21.5,7.5 + parent: 16200 + - uid: 16540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-11.5 - parent: 17590 + pos: 24.5,7.5 + parent: 16200 + - uid: 16541 + components: + - type: Transform + pos: 25.5,7.5 + parent: 16200 - proto: WallSolid entities: - uid: 42 @@ -126610,11 +120010,6 @@ entities: - type: Transform pos: -73.5,31.5 parent: 2 - - uid: 164 - components: - - type: Transform - pos: 21.5,10.5 - parent: 2 - uid: 166 components: - type: Transform @@ -126665,22 +120060,29 @@ entities: - type: Transform pos: 40.5,-29.5 parent: 2 - - uid: 539 + - uid: 471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,31.5 + rot: 3.141592653589793 rad + pos: -60.5,32.5 parent: 2 - - uid: 586 + - uid: 536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,31.5 + rot: 3.141592653589793 rad + pos: -65.5,33.5 parent: 2 - - uid: 742 + - uid: 662 components: - type: Transform - pos: 14.5,-22.5 + rot: 1.5707963267948966 rad + pos: -31.5,14.5 + parent: 2 + - uid: 669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,14.5 parent: 2 - uid: 745 components: @@ -126692,20 +120094,23 @@ entities: - type: Transform pos: -19.5,-8.5 parent: 2 - - uid: 796 + - uid: 810 components: - type: Transform - pos: -65.5,31.5 + rot: 1.5707963267948966 rad + pos: -29.5,14.5 parent: 2 - - uid: 861 + - uid: 811 components: - type: Transform - pos: -64.5,31.5 + rot: 1.5707963267948966 rad + pos: -33.5,14.5 parent: 2 - - uid: 912 + - uid: 862 components: - type: Transform - pos: 20.5,10.5 + rot: 3.141592653589793 rad + pos: -60.5,33.5 parent: 2 - uid: 966 components: @@ -126720,17 +120125,26 @@ entities: - uid: 975 components: - type: Transform - pos: -19.5,6.5 + rot: 3.141592653589793 rad + pos: -13.5,8.5 parent: 2 - - uid: 976 + - uid: 982 components: - type: Transform - pos: -16.5,6.5 + rot: -1.5707963267948966 rad + pos: -46.5,36.5 parent: 2 - - uid: 981 + - uid: 996 components: - type: Transform - pos: -10.5,5.5 + rot: 3.141592653589793 rad + pos: -69.5,31.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,31.5 parent: 2 - uid: 1012 components: @@ -126742,11 +120156,28 @@ entities: - type: Transform pos: -0.5,25.5 parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,31.5 + parent: 2 - uid: 1039 components: - type: Transform pos: -15.5,-14.5 parent: 2 + - uid: 1042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,31.5 + parent: 2 - uid: 1043 components: - type: Transform @@ -126765,12 +120196,14 @@ entities: - uid: 1048 components: - type: Transform - pos: -11.5,6.5 + rot: 3.141592653589793 rad + pos: -13.5,6.5 parent: 2 - - uid: 1063 + - uid: 1059 components: - type: Transform - pos: -10.5,-6.5 + rot: -1.5707963267948966 rad + pos: -41.5,42.5 parent: 2 - uid: 1090 components: @@ -126804,6 +120237,12 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,14.5 parent: 2 + - uid: 1120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,7.5 + parent: 2 - uid: 1121 components: - type: Transform @@ -126819,11 +120258,6 @@ entities: - type: Transform pos: -10.5,27.5 parent: 2 - - uid: 1127 - components: - - type: Transform - pos: -14.5,27.5 - parent: 2 - uid: 1128 components: - type: Transform @@ -126869,6 +120303,12 @@ entities: - type: Transform pos: 18.5,27.5 parent: 2 + - uid: 1174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,37.5 + parent: 2 - uid: 1189 components: - type: Transform @@ -126877,7 +120317,8 @@ entities: - uid: 1190 components: - type: Transform - pos: 22.5,10.5 + rot: 3.141592653589793 rad + pos: -23.5,46.5 parent: 2 - uid: 1191 components: @@ -126889,6 +120330,12 @@ entities: - type: Transform pos: 16.5,10.5 parent: 2 + - uid: 1203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,45.5 + parent: 2 - uid: 1216 components: - type: Transform @@ -126964,18 +120411,51 @@ entities: - uid: 1267 components: - type: Transform - pos: 25.5,15.5 + rot: 3.141592653589793 rad + pos: -26.5,30.5 parent: 2 - uid: 1292 components: - type: Transform pos: 15.5,27.5 parent: 2 + - uid: 1310 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 - uid: 1348 components: - type: Transform pos: 13.5,27.5 parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -11.5,28.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,24.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: -24.5,27.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,37.5 + parent: 2 - uid: 1697 components: - type: Transform @@ -127016,22 +120496,45 @@ entities: - type: Transform pos: 4.5,27.5 parent: 2 + - uid: 1785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,31.5 + parent: 2 - uid: 1803 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,20.5 parent: 2 - - uid: 1837 + - uid: 1812 components: - type: Transform - pos: -9.5,5.5 + pos: -23.5,3.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,31.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: -22.5,3.5 parent: 2 - uid: 1839 components: - type: Transform pos: 17.5,9.5 parent: 2 + - uid: 1844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,46.5 + parent: 2 - uid: 1845 components: - type: Transform @@ -127042,6 +120545,18 @@ entities: - type: Transform pos: -1.5,30.5 parent: 2 + - uid: 1848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,35.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,42.5 + parent: 2 - uid: 1961 components: - type: Transform @@ -127058,6 +120573,36 @@ entities: rot: 3.141592653589793 rad pos: 35.5,3.5 parent: 2 + - uid: 2019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,46.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,40.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,32.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,40.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,38.5 + parent: 2 - uid: 2144 components: - type: Transform @@ -127085,6 +120630,11 @@ entities: - type: Transform pos: 3.5,30.5 parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 - uid: 2256 components: - type: Transform @@ -127185,6 +120735,11 @@ entities: - type: Transform pos: -15.5,-12.5 parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 - uid: 2686 components: - type: Transform @@ -127220,25 +120775,36 @@ entities: - type: Transform pos: 23.5,23.5 parent: 2 - - uid: 3247 + - uid: 3247 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,38.5 + parent: 2 + - uid: 3364 components: - type: Transform - pos: 13.5,30.5 + pos: 25.5,11.5 parent: 2 - - uid: 3650 + - uid: 3399 components: - type: Transform - pos: 41.5,-19.5 + pos: 25.5,10.5 parent: 2 - - uid: 3682 + - uid: 3458 components: - type: Transform - pos: -13.5,-12.5 + pos: 25.5,14.5 parent: 2 - - uid: 3683 + - uid: 3650 components: - type: Transform - pos: -12.5,-12.5 + pos: 41.5,-19.5 parent: 2 - uid: 3700 components: @@ -127448,6 +121014,12 @@ entities: - type: Transform pos: 23.5,20.5 parent: 2 + - uid: 3980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,33.5 + parent: 2 - uid: 3990 components: - type: Transform @@ -127585,6 +121157,11 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,17.5 parent: 2 + - uid: 4041 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 - uid: 4048 components: - type: Transform @@ -127647,15 +121224,15 @@ entities: - type: Transform pos: -24.5,3.5 parent: 2 - - uid: 4163 + - uid: 4151 components: - type: Transform - pos: -24.5,4.5 + pos: -4.5,22.5 parent: 2 - - uid: 4199 + - uid: 4156 components: - type: Transform - pos: -23.5,4.5 + pos: -4.5,40.5 parent: 2 - uid: 4203 components: @@ -127702,2743 +121279,3283 @@ entities: - type: Transform pos: -7.5,36.5 parent: 2 - - uid: 4223 + - uid: 4223 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: -7.5,39.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: -7.5,40.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: -7.5,42.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: -8.5,42.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: -12.5,42.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: -13.5,42.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: -15.5,36.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: -15.5,38.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: -15.5,39.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: -15.5,40.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: -15.5,41.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: -9.5,45.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + pos: -12.5,45.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: -13.5,45.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: -14.5,45.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: -4.5,39.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: -12.5,46.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: -12.5,48.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: -13.5,43.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: -7.5,17.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: -11.5,23.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: -11.5,24.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: -15.5,45.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: -15.5,46.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: -15.5,49.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: -25.5,15.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: -14.5,49.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: -13.5,49.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,26.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 4806 components: - type: Transform - pos: -7.5,37.5 + rot: 1.5707963267948966 rad + pos: 0.5,10.5 parent: 2 - - uid: 4224 + - uid: 4813 components: - type: Transform - pos: -7.5,38.5 + pos: 27.5,-40.5 parent: 2 - - uid: 4225 + - uid: 4840 components: - type: Transform - pos: -7.5,39.5 + rot: 1.5707963267948966 rad + pos: 1.5,10.5 parent: 2 - - uid: 4226 + - uid: 4843 components: - type: Transform - pos: -7.5,40.5 + rot: 1.5707963267948966 rad + pos: 2.5,10.5 parent: 2 - - uid: 4227 + - uid: 4935 components: - type: Transform - pos: -4.5,35.5 + pos: 4.5,35.5 parent: 2 - - uid: 4228 + - uid: 4939 components: - type: Transform - pos: -4.5,36.5 + pos: 10.5,42.5 parent: 2 - - uid: 4233 + - uid: 4940 components: - type: Transform - pos: -4.5,41.5 + pos: 10.5,43.5 parent: 2 - - uid: 4235 + - uid: 4941 components: - type: Transform - pos: -14.5,30.5 + pos: -18.5,39.5 parent: 2 - - uid: 4242 + - uid: 4942 components: - type: Transform - pos: -7.5,41.5 + pos: -18.5,38.5 parent: 2 - - uid: 4243 + - uid: 4943 components: - type: Transform - pos: -22.5,4.5 + pos: -18.5,37.5 parent: 2 - - uid: 4244 + - uid: 4948 components: - type: Transform - pos: -7.5,42.5 + pos: -17.5,35.5 parent: 2 - - uid: 4245 + - uid: 4954 components: - type: Transform - pos: -8.5,42.5 + pos: 0.5,43.5 parent: 2 - - uid: 4246 + - uid: 4956 components: - type: Transform - pos: -9.5,42.5 + pos: -4.5,23.5 parent: 2 - - uid: 4247 + - uid: 4995 components: - type: Transform - pos: -10.5,42.5 + pos: -9.5,44.5 parent: 2 - - uid: 4249 + - uid: 4997 components: - type: Transform - pos: -12.5,42.5 + pos: 7.5,35.5 parent: 2 - - uid: 4250 + - uid: 4998 components: - type: Transform - pos: -13.5,42.5 + pos: 8.5,35.5 parent: 2 - - uid: 4251 + - uid: 4999 components: - type: Transform - pos: -14.5,42.5 + pos: 9.5,35.5 parent: 2 - - uid: 4254 + - uid: 5000 components: - type: Transform - pos: -15.5,34.5 + pos: 10.5,35.5 parent: 2 - - uid: 4255 + - uid: 5004 components: - type: Transform - pos: -15.5,35.5 + pos: 14.5,35.5 parent: 2 - - uid: 4256 + - uid: 5005 components: - type: Transform - pos: -15.5,36.5 + pos: 14.5,36.5 parent: 2 - - uid: 4257 + - uid: 5006 components: - type: Transform - pos: -15.5,37.5 + pos: 14.5,37.5 parent: 2 - - uid: 4258 + - uid: 5007 components: - type: Transform - pos: -15.5,38.5 + pos: 14.5,38.5 parent: 2 - - uid: 4259 + - uid: 5008 components: - type: Transform - pos: -15.5,39.5 + pos: 14.5,39.5 parent: 2 - - uid: 4260 + - uid: 5009 components: - type: Transform - pos: -15.5,40.5 + pos: 14.5,40.5 parent: 2 - - uid: 4261 + - uid: 5010 components: - type: Transform - pos: -15.5,41.5 + pos: 14.5,41.5 parent: 2 - - uid: 4304 + - uid: 5011 components: - type: Transform - pos: -9.5,45.5 + pos: 14.5,42.5 parent: 2 - - uid: 4305 + - uid: 5012 components: - type: Transform - pos: -10.5,45.5 + pos: 14.5,43.5 parent: 2 - - uid: 4306 + - uid: 5013 components: - type: Transform - pos: -12.5,45.5 + pos: 14.5,44.5 parent: 2 - - uid: 4307 + - uid: 5014 components: - type: Transform - pos: -13.5,45.5 + pos: 13.5,44.5 parent: 2 - - uid: 4308 + - uid: 5016 components: - type: Transform - pos: -14.5,45.5 + rot: 1.5707963267948966 rad + pos: 11.5,44.5 parent: 2 - - uid: 4311 + - uid: 5017 components: - type: Transform - pos: -34.5,18.5 + pos: 10.5,44.5 parent: 2 - - uid: 4314 + - uid: 5018 components: - type: Transform - pos: -34.5,15.5 + pos: 9.5,44.5 parent: 2 - - uid: 4316 + - uid: 5019 components: - type: Transform - pos: -34.5,13.5 + pos: 8.5,44.5 parent: 2 - - uid: 4323 + - uid: 5022 components: - type: Transform - pos: -2.5,42.5 + pos: 5.5,44.5 parent: 2 - - uid: 4324 + - uid: 5023 components: - type: Transform - pos: -12.5,46.5 + pos: 4.5,44.5 parent: 2 - - uid: 4325 + - uid: 5030 components: - type: Transform - pos: -12.5,48.5 + pos: -0.5,42.5 parent: 2 - - uid: 4336 + - uid: 5032 components: - type: Transform - pos: -5.5,16.5 + pos: -0.5,36.5 parent: 2 - - uid: 4355 + - uid: 5033 components: - type: Transform - pos: -13.5,43.5 + pos: -0.5,37.5 parent: 2 - - uid: 4358 + - uid: 5053 components: - type: Transform - pos: 23.5,26.5 + pos: -42.5,43.5 parent: 2 - - uid: 4368 + - uid: 5054 components: - type: Transform - pos: -4.5,10.5 + pos: -42.5,42.5 parent: 2 - - uid: 4373 + - uid: 5059 components: - type: Transform - pos: -10.5,8.5 + pos: -47.5,42.5 parent: 2 - - uid: 4374 + - uid: 5098 components: - type: Transform - pos: -9.5,16.5 + pos: -46.5,42.5 parent: 2 - - uid: 4375 + - uid: 5102 components: - type: Transform - pos: -12.5,9.5 + pos: -28.5,18.5 parent: 2 - - uid: 4378 + - uid: 5105 components: - type: Transform - pos: -10.5,12.5 + pos: -28.5,17.5 parent: 2 - - uid: 4390 + - uid: 5107 components: - type: Transform - pos: -7.5,17.5 + pos: -28.5,15.5 parent: 2 - - uid: 4392 + - uid: 5110 components: - type: Transform - pos: -7.5,20.5 + pos: -45.5,42.5 parent: 2 - - uid: 4394 + - uid: 5118 components: - type: Transform - pos: -10.5,15.5 + pos: -21.5,31.5 parent: 2 - - uid: 4398 + - uid: 5123 components: - type: Transform - pos: -7.5,10.5 + pos: -28.5,14.5 parent: 2 - - uid: 4407 + - uid: 5176 components: - type: Transform - pos: -18.5,14.5 + pos: -44.5,42.5 parent: 2 - - uid: 4409 + - uid: 5191 components: - type: Transform - pos: -18.5,15.5 + pos: -26.5,24.5 parent: 2 - - uid: 4410 + - uid: 5199 components: - type: Transform - pos: -18.5,10.5 + pos: -35.5,26.5 parent: 2 - - uid: 4411 + - uid: 5230 components: - type: Transform - pos: -18.5,11.5 + pos: -26.5,31.5 parent: 2 - - uid: 4418 + - uid: 5300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,9.5 + pos: -21.5,35.5 parent: 2 - - uid: 4421 + - uid: 5301 components: - type: Transform - pos: -7.5,21.5 + pos: -22.5,35.5 parent: 2 - - uid: 4443 + - uid: 5302 components: - type: Transform - pos: -18.5,12.5 + pos: -23.5,35.5 parent: 2 - - uid: 4458 + - uid: 5303 components: - type: Transform - pos: -4.5,18.5 + pos: -23.5,36.5 parent: 2 - - uid: 4466 + - uid: 5304 components: - type: Transform - pos: -19.5,-16.5 + pos: -23.5,37.5 parent: 2 - - uid: 4467 + - uid: 5305 components: - type: Transform - pos: -19.5,-15.5 + pos: -23.5,38.5 parent: 2 - - uid: 4468 + - uid: 5306 components: - type: Transform - pos: -19.5,-14.5 + pos: -23.5,39.5 parent: 2 - - uid: 4474 + - uid: 5307 components: - type: Transform - pos: -4.5,21.5 + pos: -22.5,39.5 parent: 2 - - uid: 4480 + - uid: 5308 components: - type: Transform - pos: -7.5,22.5 + pos: -21.5,39.5 parent: 2 - - uid: 4482 + - uid: 5309 components: - type: Transform - pos: -7.5,24.5 + pos: -20.5,39.5 parent: 2 - - uid: 4484 + - uid: 5310 components: - type: Transform - pos: -7.5,26.5 + pos: -19.5,39.5 parent: 2 - - uid: 4485 + - uid: 5335 components: - type: Transform - pos: -15.5,26.5 + pos: -26.5,35.5 parent: 2 - - uid: 4487 + - uid: 5336 components: - type: Transform - pos: -15.5,24.5 + pos: -26.5,36.5 parent: 2 - - uid: 4488 + - uid: 5340 components: - type: Transform - pos: -15.5,23.5 + pos: -26.5,40.5 parent: 2 - - uid: 4489 + - uid: 5341 components: - type: Transform - pos: -15.5,22.5 + pos: -26.5,41.5 parent: 2 - - uid: 4491 + - uid: 5350 components: - type: Transform - pos: -11.5,26.5 + pos: -30.5,35.5 parent: 2 - - uid: 4492 + - uid: 5359 components: - type: Transform - pos: -11.5,23.5 + pos: -43.5,42.5 parent: 2 - - uid: 4493 + - uid: 5575 components: - type: Transform - pos: -11.5,24.5 + pos: -46.5,31.5 parent: 2 - - uid: 4604 + - uid: 5600 components: - type: Transform - pos: -16.5,9.5 + pos: -30.5,36.5 parent: 2 - - uid: 4628 + - uid: 5610 components: - type: Transform - pos: -14.5,3.5 + pos: -30.5,38.5 parent: 2 - - uid: 4647 + - uid: 5628 components: - type: Transform - pos: -21.5,25.5 + rot: 1.5707963267948966 rad + pos: -34.5,43.5 parent: 2 - - uid: 4650 + - uid: 5630 components: - type: Transform - pos: -20.5,23.5 + rot: 1.5707963267948966 rad + pos: -34.5,41.5 parent: 2 - - uid: 4652 + - uid: 5631 components: - type: Transform - pos: -18.5,23.5 + pos: -35.5,41.5 parent: 2 - - uid: 4653 + - uid: 5651 components: - type: Transform - pos: -15.5,45.5 + pos: -42.5,41.5 parent: 2 - - uid: 4654 + - uid: 5652 components: - type: Transform - pos: -16.5,23.5 + pos: -42.5,40.5 parent: 2 - - uid: 4656 + - uid: 5653 components: - type: Transform - pos: -15.5,46.5 + pos: -42.5,39.5 parent: 2 - - uid: 4659 + - uid: 5655 components: - type: Transform - pos: -15.5,49.5 + pos: -40.5,42.5 parent: 2 - - uid: 4661 + - uid: 5656 components: - type: Transform - pos: -20.5,19.5 + pos: -41.5,40.5 parent: 2 - - uid: 4663 + - uid: 5658 components: - type: Transform - pos: -18.5,19.5 + pos: -74.5,31.5 parent: 2 - - uid: 4709 + - uid: 5661 components: - type: Transform - pos: -21.5,16.5 + pos: -42.5,37.5 parent: 2 - - uid: 4713 + - uid: 5662 components: - type: Transform - pos: -24.5,15.5 + pos: -42.5,36.5 parent: 2 - - uid: 4714 + - uid: 5685 components: - type: Transform - pos: -25.5,15.5 + pos: -45.5,39.5 parent: 2 - - uid: 4715 + - uid: 5686 components: - type: Transform - pos: -14.5,49.5 + pos: -46.5,39.5 parent: 2 - - uid: 4716 + - uid: 5687 components: - type: Transform - pos: -13.5,49.5 + pos: -46.5,38.5 parent: 2 - - uid: 4717 + - uid: 5692 components: - type: Transform - pos: -12.5,49.5 + pos: -46.5,33.5 parent: 2 - - uid: 4722 + - uid: 5693 components: - type: Transform - pos: -26.5,15.5 + pos: -46.5,32.5 parent: 2 - - uid: 4739 + - uid: 5757 components: - type: Transform - pos: -19.5,-12.5 + pos: -26.5,46.5 parent: 2 - - uid: 4741 + - uid: 5779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,13.5 + pos: 21.5,10.5 parent: 2 - - uid: 4742 + - uid: 5785 components: - type: Transform - pos: 4.5,13.5 + pos: -26.5,47.5 parent: 2 - - uid: 4745 + - uid: 5803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,13.5 + rot: 3.141592653589793 rad + pos: -61.5,31.5 parent: 2 - - uid: 4748 + - uid: 5810 components: - type: Transform - pos: -21.5,-11.5 + rot: 3.141592653589793 rad + pos: -65.5,31.5 parent: 2 - - uid: 4772 + - uid: 5811 components: - type: Transform - pos: -21.5,14.5 + rot: 3.141592653589793 rad + pos: -64.5,31.5 parent: 2 - - uid: 4780 + - uid: 5812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,13.5 + pos: 20.5,10.5 parent: 2 - - uid: 4781 + - uid: 5813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,13.5 + pos: 22.5,10.5 parent: 2 - - uid: 4804 + - uid: 5818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,11.5 + pos: 25.5,15.5 parent: 2 - - uid: 4805 + - uid: 5827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 + pos: -25.5,31.5 parent: 2 - - uid: 4806 + - uid: 5828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,10.5 + pos: -28.5,46.5 parent: 2 - - uid: 4813 + - uid: 5901 components: - type: Transform - pos: 27.5,-40.5 + pos: -31.5,59.5 parent: 2 - - uid: 4840 + - uid: 5902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,10.5 + pos: -31.5,60.5 parent: 2 - - uid: 4843 + - uid: 5903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,10.5 + pos: -31.5,61.5 parent: 2 - - uid: 4905 + - uid: 5904 components: - type: Transform - pos: -11.5,-0.5 + pos: -24.5,61.5 parent: 2 - - uid: 4907 + - uid: 5905 components: - type: Transform - pos: -12.5,-0.5 + pos: -25.5,61.5 parent: 2 - - uid: 4909 + - uid: 5907 components: - type: Transform - pos: -14.5,-0.5 + pos: -28.5,65.5 parent: 2 - - uid: 4935 + - uid: 5908 components: - type: Transform - pos: 4.5,35.5 + pos: -26.5,65.5 parent: 2 - - uid: 4936 + - uid: 5909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,44.5 + rot: 3.141592653589793 rad + pos: -34.5,18.5 parent: 2 - - uid: 4937 + - uid: 5910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,43.5 + rot: 3.141592653589793 rad + pos: -34.5,13.5 parent: 2 - - uid: 4939 + - uid: 5911 components: - type: Transform - pos: 10.5,42.5 + rot: 3.141592653589793 rad + pos: -18.5,44.5 parent: 2 - - uid: 4940 + - uid: 5912 components: - type: Transform - pos: 10.5,43.5 + rot: 3.141592653589793 rad + pos: -18.5,43.5 parent: 2 - - uid: 4941 + - uid: 5916 components: - type: Transform - pos: -18.5,39.5 + rot: 3.141592653589793 rad + pos: -18.5,46.5 parent: 2 - - uid: 4942 + - uid: 5917 components: - type: Transform - pos: -18.5,38.5 + rot: 3.141592653589793 rad + pos: -35.5,24.5 parent: 2 - - uid: 4943 + - uid: 5918 components: - type: Transform - pos: -18.5,37.5 + rot: -1.5707963267948966 rad + pos: -36.5,39.5 parent: 2 - - uid: 4948 + - uid: 5919 components: - type: Transform - pos: -17.5,35.5 + rot: -1.5707963267948966 rad + pos: -36.5,37.5 parent: 2 - - uid: 4995 + - uid: 5920 components: - type: Transform - pos: -9.5,44.5 + rot: -1.5707963267948966 rad + pos: -36.5,36.5 parent: 2 - - uid: 4997 + - uid: 5946 components: - type: Transform - pos: 7.5,35.5 + rot: -1.5707963267948966 rad + pos: -36.5,35.5 parent: 2 - - uid: 4998 + - uid: 5948 components: - type: Transform - pos: 8.5,35.5 + rot: -1.5707963267948966 rad + pos: -37.5,35.5 parent: 2 - - uid: 4999 + - uid: 5976 components: - type: Transform - pos: 9.5,35.5 + rot: -1.5707963267948966 rad + pos: -39.5,35.5 parent: 2 - - uid: 5000 + - uid: 5977 components: - type: Transform - pos: 10.5,35.5 + rot: -1.5707963267948966 rad + pos: -39.5,31.5 parent: 2 - - uid: 5004 + - uid: 5980 components: - type: Transform - pos: 14.5,35.5 + rot: -1.5707963267948966 rad + pos: -40.5,31.5 parent: 2 - - uid: 5005 + - uid: 5981 components: - type: Transform - pos: 14.5,36.5 + rot: -1.5707963267948966 rad + pos: -36.5,43.5 parent: 2 - - uid: 5006 + - uid: 5984 components: - type: Transform - pos: 14.5,37.5 + rot: -1.5707963267948966 rad + pos: -42.5,31.5 parent: 2 - - uid: 5007 + - uid: 5994 components: - type: Transform - pos: 14.5,38.5 + rot: 3.141592653589793 rad + pos: -20.5,42.5 parent: 2 - - uid: 5008 + - uid: 5995 components: - type: Transform - pos: 14.5,39.5 + rot: 3.141592653589793 rad + pos: -21.5,42.5 parent: 2 - - uid: 5009 + - uid: 5996 components: - type: Transform - pos: 14.5,40.5 + rot: 3.141592653589793 rad + pos: -22.5,42.5 parent: 2 - - uid: 5010 + - uid: 6059 components: - type: Transform - pos: 14.5,41.5 + rot: -1.5707963267948966 rad + pos: -42.5,35.5 parent: 2 - - uid: 5011 + - uid: 6062 components: - type: Transform - pos: 14.5,42.5 + rot: 3.141592653589793 rad + pos: -24.5,46.5 parent: 2 - - uid: 5012 + - uid: 6066 components: - type: Transform - pos: 14.5,43.5 + rot: 3.141592653589793 rad + pos: -21.5,46.5 parent: 2 - - uid: 5013 + - uid: 6067 components: - type: Transform - pos: 14.5,44.5 + rot: 3.141592653589793 rad + pos: -20.5,46.5 parent: 2 - - uid: 5014 + - uid: 6095 components: - type: Transform - pos: 13.5,44.5 + rot: 3.141592653589793 rad + pos: -60.5,34.5 parent: 2 - - uid: 5016 + - uid: 6098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,44.5 + rot: 3.141592653589793 rad + pos: -59.5,31.5 parent: 2 - - uid: 5017 + - uid: 6203 components: - type: Transform - pos: 10.5,44.5 + rot: 3.141592653589793 rad + pos: -66.5,31.5 parent: 2 - - uid: 5018 + - uid: 6204 components: - type: Transform - pos: 9.5,44.5 + rot: 3.141592653589793 rad + pos: -60.5,31.5 parent: 2 - - uid: 5019 + - uid: 6207 components: - type: Transform - pos: 8.5,44.5 + rot: 3.141592653589793 rad + pos: -71.5,28.5 parent: 2 - - uid: 5022 + - uid: 6210 components: - type: Transform - pos: 5.5,44.5 + rot: 3.141592653589793 rad + pos: -39.5,28.5 parent: 2 - - uid: 5023 + - uid: 6211 components: - type: Transform - pos: 4.5,44.5 + pos: 15.5,31.5 parent: 2 - - uid: 5030 + - uid: 6212 components: - type: Transform - pos: -0.5,42.5 + rot: 3.141592653589793 rad + pos: -60.5,36.5 parent: 2 - - uid: 5031 + - uid: 6213 components: - type: Transform - pos: 21.5,-36.5 + pos: 37.5,-16.5 parent: 2 - - uid: 5032 + - uid: 6214 components: - type: Transform - pos: -0.5,36.5 + rot: 3.141592653589793 rad + pos: -34.5,11.5 parent: 2 - - uid: 5033 + - uid: 6215 components: - type: Transform - pos: -0.5,37.5 + rot: 3.141592653589793 rad + pos: -34.5,10.5 parent: 2 - - uid: 5035 + - uid: 6217 components: - type: Transform - pos: 21.5,-39.5 + pos: 14.5,34.5 parent: 2 - - uid: 5053 + - uid: 6218 components: - type: Transform - pos: -42.5,43.5 + pos: -17.5,3.5 parent: 2 - - uid: 5054 + - uid: 6266 components: - type: Transform - pos: -42.5,42.5 + pos: 41.5,-16.5 parent: 2 - - uid: 5059 + - uid: 6268 components: - type: Transform - pos: -47.5,42.5 + pos: 41.5,-11.5 parent: 2 - - uid: 5076 + - uid: 6279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,46.5 + pos: 18.5,10.5 parent: 2 - - uid: 5079 + - uid: 6286 components: - type: Transform - pos: 12.5,39.5 + pos: -0.5,43.5 parent: 2 - - uid: 5098 + - uid: 6334 components: - type: Transform - pos: -46.5,42.5 + pos: 17.5,10.5 parent: 2 - - uid: 5102 + - uid: 6347 components: - type: Transform - pos: -28.5,18.5 + pos: 8.5,10.5 parent: 2 - - uid: 5105 + - uid: 6349 components: - type: Transform - pos: -28.5,17.5 + pos: 19.5,10.5 parent: 2 - - uid: 5107 + - uid: 6355 components: - type: Transform - pos: -28.5,15.5 + pos: 22.5,12.5 parent: 2 - - uid: 5110 + - uid: 6377 components: - type: Transform - pos: -45.5,42.5 + rot: 3.141592653589793 rad + pos: -28.5,16.5 parent: 2 - - uid: 5118 + - uid: 6378 components: - type: Transform - pos: -21.5,31.5 + rot: 3.141592653589793 rad + pos: -21.5,15.5 parent: 2 - - uid: 5121 + - uid: 6379 components: - type: Transform - pos: -28.5,10.5 + rot: 3.141592653589793 rad + pos: -22.5,15.5 parent: 2 - - uid: 5123 + - uid: 6380 components: - type: Transform - pos: -28.5,14.5 + rot: 3.141592653589793 rad + pos: -23.5,15.5 parent: 2 - - uid: 5175 + - uid: 6381 components: - type: Transform - pos: -23.5,27.5 + rot: 3.141592653589793 rad + pos: -34.5,17.5 parent: 2 - - uid: 5176 + - uid: 6382 components: - type: Transform - pos: -44.5,42.5 + rot: 3.141592653589793 rad + pos: -34.5,16.5 parent: 2 - - uid: 5191 + - uid: 6383 components: - type: Transform - pos: -26.5,24.5 + rot: 3.141592653589793 rad + pos: -34.5,14.5 parent: 2 - - uid: 5199 + - uid: 6393 components: - type: Transform - pos: -35.5,26.5 + pos: -4.5,17.5 parent: 2 - - uid: 5201 + - uid: 6395 components: - type: Transform - pos: -35.5,24.5 + pos: 6.5,31.5 parent: 2 - - uid: 5221 + - uid: 6396 components: - type: Transform - pos: -14.5,5.5 + pos: 9.5,34.5 parent: 2 - - uid: 5230 + - uid: 6398 components: - type: Transform - pos: -26.5,31.5 + pos: 10.5,31.5 parent: 2 - - uid: 5300 + - uid: 6399 components: - type: Transform - pos: -21.5,35.5 + rot: -1.5707963267948966 rad + pos: -40.5,35.5 parent: 2 - - uid: 5301 + - uid: 6401 components: - type: Transform - pos: -22.5,35.5 + rot: -1.5707963267948966 rad + pos: -45.5,31.5 parent: 2 - - uid: 5302 + - uid: 6402 components: - type: Transform - pos: -23.5,35.5 + rot: -1.5707963267948966 rad + pos: -41.5,38.5 parent: 2 - - uid: 5303 + - uid: 6403 components: - type: Transform - pos: -23.5,36.5 + rot: -1.5707963267948966 rad + pos: -41.5,35.5 parent: 2 - - uid: 5304 + - uid: 6404 components: - type: Transform - pos: -23.5,37.5 + rot: -1.5707963267948966 rad + pos: -39.5,42.5 parent: 2 - - uid: 5305 + - uid: 6405 components: - type: Transform - pos: -23.5,38.5 + rot: 3.141592653589793 rad + pos: -26.5,29.5 parent: 2 - - uid: 5306 + - uid: 6408 components: - type: Transform - pos: -23.5,39.5 + rot: 3.141592653589793 rad + pos: -22.5,27.5 parent: 2 - - uid: 5307 + - uid: 6412 components: - type: Transform - pos: -22.5,39.5 + rot: 3.141592653589793 rad + pos: -25.5,27.5 parent: 2 - - uid: 5308 + - uid: 6413 components: - type: Transform - pos: -21.5,39.5 + rot: 3.141592653589793 rad + pos: -26.5,27.5 parent: 2 - - uid: 5309 + - uid: 6414 components: - type: Transform - pos: -20.5,39.5 + rot: 3.141592653589793 rad + pos: -65.5,34.5 parent: 2 - - uid: 5310 + - uid: 6415 components: - type: Transform - pos: -19.5,39.5 + rot: 3.141592653589793 rad + pos: -18.5,42.5 parent: 2 - - uid: 5335 + - uid: 6417 components: - type: Transform - pos: -26.5,35.5 + rot: 3.141592653589793 rad + pos: -26.5,42.5 parent: 2 - - uid: 5336 + - uid: 6418 components: - type: Transform - pos: -26.5,36.5 + rot: -1.5707963267948966 rad + pos: -36.5,41.5 parent: 2 - - uid: 5340 + - uid: 6419 components: - type: Transform - pos: -26.5,40.5 + rot: -1.5707963267948966 rad + pos: -32.5,35.5 parent: 2 - - uid: 5341 + - uid: 6420 components: - type: Transform - pos: -26.5,41.5 + rot: 3.141592653589793 rad + pos: -65.5,36.5 parent: 2 - - uid: 5344 + - uid: 6421 components: - type: Transform - pos: -36.5,39.5 + rot: 3.141592653589793 rad + pos: -65.5,37.5 parent: 2 - - uid: 5347 + - uid: 6422 components: - type: Transform - pos: -36.5,37.5 + rot: 3.141592653589793 rad + pos: -65.5,35.5 parent: 2 - - uid: 5348 + - uid: 6423 components: - type: Transform - pos: -36.5,36.5 + rot: -1.5707963267948966 rad + pos: -36.5,42.5 parent: 2 - - uid: 5350 + - uid: 6424 components: - type: Transform - pos: -30.5,35.5 + rot: 3.141592653589793 rad + pos: -19.5,42.5 parent: 2 - - uid: 5355 + - uid: 6425 components: - type: Transform - pos: -36.5,35.5 + pos: 17.5,34.5 parent: 2 - - uid: 5356 + - uid: 6426 components: - type: Transform - pos: -37.5,35.5 + pos: 17.5,35.5 parent: 2 - - uid: 5358 + - uid: 6427 components: - type: Transform - pos: -39.5,35.5 + pos: 17.5,36.5 parent: 2 - - uid: 5359 + - uid: 6429 components: - type: Transform - pos: -43.5,42.5 + pos: 17.5,38.5 parent: 2 - - uid: 5364 + - uid: 6430 components: - type: Transform - pos: -39.5,31.5 + pos: 17.5,39.5 parent: 2 - - uid: 5365 + - uid: 6433 components: - type: Transform - pos: -40.5,31.5 + pos: 16.5,41.5 parent: 2 - - uid: 5568 + - uid: 6434 components: - type: Transform - pos: -36.5,43.5 + rot: 3.141592653589793 rad + pos: 6.5,32.5 parent: 2 - - uid: 5571 + - uid: 6435 components: - type: Transform - pos: -42.5,31.5 + pos: 15.5,41.5 parent: 2 - - uid: 5575 + - uid: 6437 components: - type: Transform - pos: -46.5,31.5 + pos: 17.5,41.5 parent: 2 - - uid: 5592 + - uid: 6448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,42.5 + rot: 3.141592653589793 rad + pos: -23.5,42.5 parent: 2 - - uid: 5593 + - uid: 6449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,42.5 + rot: 3.141592653589793 rad + pos: -24.5,42.5 parent: 2 - - uid: 5594 + - uid: 6457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,42.5 + rot: -1.5707963267948966 rad + pos: -30.5,43.5 parent: 2 - - uid: 5600 + - uid: 6458 components: - type: Transform - pos: -30.5,36.5 + rot: -1.5707963267948966 rad + pos: -30.5,39.5 parent: 2 - - uid: 5610 + - uid: 6459 components: - type: Transform - pos: -30.5,38.5 + rot: -1.5707963267948966 rad + pos: -42.5,38.5 parent: 2 - - uid: 5628 + - uid: 6460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,43.5 + rot: -1.5707963267948966 rad + pos: -43.5,39.5 parent: 2 - - uid: 5630 + - uid: 6461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,41.5 + rot: -1.5707963267948966 rad + pos: -46.5,35.5 parent: 2 - - uid: 5631 + - uid: 6462 components: - type: Transform - pos: -35.5,41.5 + rot: -1.5707963267948966 rad + pos: -46.5,34.5 parent: 2 - - uid: 5651 + - uid: 6463 components: - type: Transform - pos: -42.5,41.5 + rot: 3.141592653589793 rad + pos: -67.5,31.5 parent: 2 - - uid: 5652 + - uid: 6464 components: - type: Transform - pos: -42.5,40.5 + rot: -1.5707963267948966 rad + pos: -31.5,35.5 parent: 2 - - uid: 5653 + - uid: 6466 components: - type: Transform - pos: -42.5,39.5 + rot: 3.141592653589793 rad + pos: -60.5,35.5 parent: 2 - - uid: 5655 + - uid: 6480 components: - type: Transform - pos: -40.5,42.5 + rot: 3.141592653589793 rad + pos: -68.5,31.5 parent: 2 - - uid: 5656 + - uid: 6495 components: - type: Transform - pos: -41.5,40.5 + rot: 3.141592653589793 rad + pos: -35.5,25.5 parent: 2 - - uid: 5657 + - uid: 6496 components: - type: Transform - pos: -40.5,40.5 + rot: -1.5707963267948966 rad + pos: -36.5,38.5 parent: 2 - - uid: 5658 + - uid: 6497 components: - type: Transform - pos: -74.5,31.5 + pos: 27.5,0.5 parent: 2 - - uid: 5661 + - uid: 6499 components: - type: Transform - pos: -42.5,37.5 + pos: 23.5,0.5 parent: 2 - - uid: 5662 + - uid: 6500 components: - type: Transform - pos: -42.5,36.5 + pos: 21.5,-17.5 parent: 2 - - uid: 5664 + - uid: 6501 components: - type: Transform - pos: -42.5,35.5 + pos: 24.5,0.5 parent: 2 - - uid: 5666 + - uid: 6502 components: - type: Transform - pos: -12.5,5.5 + pos: 27.5,-2.5 parent: 2 - - uid: 5671 + - uid: 6528 components: - type: Transform - pos: -13.5,-0.5 + pos: 22.5,-20.5 parent: 2 - - uid: 5676 + - uid: 6604 components: - type: Transform - pos: -16.5,0.5 + pos: -67.5,34.5 parent: 2 - - uid: 5685 + - uid: 6671 components: - type: Transform - pos: -45.5,39.5 + pos: -4.5,41.5 parent: 2 - - uid: 5686 + - uid: 6677 components: - type: Transform - pos: -46.5,39.5 + pos: -19.5,3.5 parent: 2 - - uid: 5687 + - uid: 6678 components: - type: Transform - pos: -46.5,38.5 + pos: -10.5,12.5 parent: 2 - - uid: 5692 + - uid: 6679 components: - type: Transform - pos: -46.5,33.5 + pos: 12.5,39.5 parent: 2 - - uid: 5693 + - uid: 6680 components: - type: Transform - pos: -46.5,32.5 + pos: 0.5,-6.5 parent: 2 - - uid: 5757 + - uid: 6681 components: - type: Transform - pos: -26.5,46.5 + pos: -17.5,31.5 parent: 2 - - uid: 5759 + - uid: 6682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,46.5 + rot: 3.141592653589793 rad + pos: 8.5,29.5 parent: 2 - - uid: 5762 + - uid: 6684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,46.5 + pos: -18.5,9.5 parent: 2 - - uid: 5763 + - uid: 6687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,46.5 + pos: -14.5,9.5 parent: 2 - - uid: 5785 + - uid: 6688 components: - type: Transform - pos: -26.5,47.5 + pos: -14.5,6.5 parent: 2 - - uid: 5790 + - uid: 6690 components: - type: Transform - pos: -16.5,1.5 + pos: -18.5,3.5 parent: 2 - - uid: 5791 + - uid: 6692 components: - type: Transform - pos: -13.5,6.5 + pos: -4.5,29.5 parent: 2 - - uid: 5792 + - uid: 6694 components: - type: Transform - pos: -14.5,0.5 + pos: -7.5,27.5 parent: 2 - - uid: 5827 + - uid: 6695 components: - type: Transform - pos: -25.5,31.5 + pos: -11.5,27.5 parent: 2 - - uid: 5828 + - uid: 6705 components: - type: Transform - pos: -28.5,46.5 + pos: -17.5,16.5 parent: 2 - - uid: 5901 + - uid: 6707 components: - type: Transform - pos: -31.5,59.5 + pos: -18.5,16.5 parent: 2 - - uid: 5902 + - uid: 6708 components: - type: Transform - pos: -31.5,60.5 + pos: -4.5,30.5 parent: 2 - - uid: 5903 + - uid: 6709 components: - type: Transform - pos: -31.5,61.5 + pos: -5.5,30.5 parent: 2 - - uid: 5904 + - uid: 6710 components: - type: Transform - pos: -24.5,61.5 + pos: -7.5,30.5 parent: 2 - - uid: 5905 + - uid: 6711 components: - type: Transform - pos: -25.5,61.5 + pos: -11.5,30.5 parent: 2 - - uid: 5907 + - uid: 6712 components: - type: Transform - pos: -28.5,65.5 + pos: 22.5,8.5 parent: 2 - - uid: 5908 + - uid: 6713 components: - type: Transform - pos: -26.5,65.5 + pos: 23.5,7.5 parent: 2 - - uid: 5990 + - uid: 6714 components: - type: Transform - pos: -12.5,6.5 + rot: 3.141592653589793 rad + pos: 5.5,30.5 parent: 2 - - uid: 6097 + - uid: 6715 components: - type: Transform - pos: -61.5,38.5 + rot: 3.141592653589793 rad + pos: 4.5,30.5 parent: 2 - - uid: 6211 + - uid: 6716 components: - type: Transform - pos: 15.5,31.5 + pos: -10.5,10.5 parent: 2 - - uid: 6217 + - uid: 6717 components: - type: Transform - pos: 14.5,34.5 + pos: -10.5,6.5 parent: 2 - - uid: 6286 + - uid: 6720 components: - type: Transform - pos: -0.5,43.5 + pos: 7.5,13.5 parent: 2 - - uid: 6347 + - uid: 6721 components: - type: Transform - pos: 8.5,10.5 + pos: 3.5,10.5 parent: 2 - - uid: 6395 + - uid: 6722 components: - type: Transform - pos: 6.5,31.5 + pos: 5.5,10.5 parent: 2 - - uid: 6396 + - uid: 6724 components: - type: Transform - pos: 9.5,34.5 + pos: 5.5,13.5 parent: 2 - - uid: 6398 + - uid: 6727 components: - type: Transform - pos: 10.5,31.5 + pos: 7.5,12.5 parent: 2 - - uid: 6425 + - uid: 6728 components: - type: Transform - pos: 17.5,34.5 + pos: -0.5,29.5 parent: 2 - - uid: 6426 + - uid: 6729 components: - type: Transform - pos: 17.5,35.5 + pos: -12.5,30.5 parent: 2 - - uid: 6427 + - uid: 6730 components: - type: Transform - pos: 17.5,36.5 + pos: -15.5,30.5 parent: 2 - - uid: 6429 + - uid: 6731 components: - type: Transform - pos: 17.5,38.5 + rot: -1.5707963267948966 rad + pos: -18.5,22.5 parent: 2 - - uid: 6430 + - uid: 6732 components: - type: Transform - pos: 17.5,39.5 + pos: -17.5,30.5 parent: 2 - - uid: 6433 + - uid: 6733 components: - type: Transform - pos: 16.5,41.5 + pos: 6.5,35.5 parent: 2 - - uid: 6435 + - uid: 6734 components: - type: Transform - pos: 15.5,41.5 + pos: 10.5,40.5 parent: 2 - - uid: 6437 + - uid: 6735 components: - type: Transform - pos: 17.5,41.5 + pos: -4.5,16.5 parent: 2 - - uid: 6458 + - uid: 6736 components: - type: Transform - pos: 21.5,37.5 + pos: -7.5,19.5 parent: 2 - - uid: 6464 + - uid: 6737 components: - type: Transform - pos: 28.5,37.5 + pos: -10.5,11.5 parent: 2 - - uid: 6603 + - uid: 6738 components: - type: Transform - pos: -60.5,34.5 + pos: -7.5,18.5 parent: 2 - - uid: 6604 + - uid: 6739 components: - type: Transform - pos: -67.5,34.5 + pos: -10.5,14.5 parent: 2 - - uid: 6648 + - uid: 6740 components: - type: Transform - pos: -69.5,33.5 + rot: 3.141592653589793 rad + pos: 17.5,30.5 parent: 2 - - uid: 6676 + - uid: 6741 components: - type: Transform - pos: -16.5,-0.5 + rot: 3.141592653589793 rad + pos: 15.5,30.5 parent: 2 - - uid: 6677 + - uid: 6742 components: - type: Transform - pos: -15.5,-0.5 + pos: -4.5,19.5 parent: 2 - - uid: 6678 + - uid: 6743 components: - type: Transform - pos: -59.5,31.5 + pos: -4.5,20.5 parent: 2 - - uid: 6680 + - uid: 6744 components: - type: Transform - pos: 0.5,-6.5 + pos: -4.5,24.5 parent: 2 - - uid: 6685 + - uid: 6745 components: - type: Transform - pos: -66.5,31.5 + pos: -4.5,25.5 parent: 2 - - uid: 7021 + - uid: 6746 components: - type: Transform - pos: -25.5,3.5 + pos: -4.5,26.5 parent: 2 - - uid: 8090 + - uid: 6747 components: - type: Transform - pos: 14.5,31.5 + pos: -7.5,23.5 parent: 2 - - uid: 8102 + - uid: 6748 components: - type: Transform - pos: -14.5,1.5 + pos: -21.5,19.5 parent: 2 - - uid: 9211 + - uid: 6750 components: - type: Transform - pos: -2.5,46.5 + pos: -19.5,19.5 parent: 2 - - uid: 11340 + - uid: 6751 components: - type: Transform - pos: 8.5,30.5 + pos: -21.5,18.5 parent: 2 - - uid: 11866 + - uid: 6752 components: - type: Transform - pos: 11.5,-21.5 + pos: -25.5,35.5 parent: 2 - - uid: 11874 + - uid: 6754 components: - type: Transform - pos: 11.5,-18.5 + rot: 3.141592653589793 rad + pos: 1.5,30.5 parent: 2 - - uid: 11876 + - uid: 6755 components: - type: Transform - pos: 13.5,-18.5 + pos: 6.5,33.5 parent: 2 - - uid: 11910 + - uid: 6757 components: - type: Transform - pos: 13.5,-19.5 + rot: 3.141592653589793 rad + pos: 0.5,30.5 parent: 2 - - uid: 11914 + - uid: 6758 components: - type: Transform - pos: 13.5,-21.5 + pos: -0.5,35.5 parent: 2 - - uid: 11915 + - uid: 6759 components: - type: Transform - pos: 13.5,-22.5 + pos: 0.5,35.5 parent: 2 - - uid: 11923 + - uid: 6760 components: - type: Transform - pos: 8.5,-21.5 + pos: -4.5,34.5 parent: 2 - - uid: 12324 + - uid: 6761 components: - type: Transform - pos: 10.5,-21.5 + pos: -5.5,34.5 parent: 2 - - uid: 12327 + - uid: 6762 components: - type: Transform - pos: 11.5,-19.5 + pos: -4.5,37.5 parent: 2 - - uid: 13071 + - uid: 6763 components: - type: Transform - pos: -15.5,48.5 + pos: -4.5,38.5 parent: 2 - - uid: 13075 + - uid: 6764 components: - type: Transform - pos: -15.5,42.5 + pos: -16.5,42.5 parent: 2 - - uid: 13076 + - uid: 6765 components: - type: Transform - pos: -15.5,47.5 + pos: -4.5,42.5 parent: 2 - - uid: 13887 + - uid: 6766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,6.5 + pos: -0.5,39.5 parent: 2 - - uid: 13899 + - uid: 6767 components: - type: Transform - pos: 11.5,10.5 + pos: -0.5,41.5 parent: 2 - - uid: 15045 + - uid: 6768 components: - type: Transform - pos: 6.5,22.5 + pos: -0.5,40.5 parent: 2 - - uid: 16542 + - uid: 6772 components: - type: Transform - pos: 23.5,17.5 - parent: 16200 - - uid: 16543 + pos: -3.5,42.5 + parent: 2 + - uid: 6773 components: - type: Transform - pos: 23.5,16.5 - parent: 16200 - - uid: 16544 + pos: -26.5,37.5 + parent: 2 + - uid: 6774 components: - type: Transform - pos: 24.5,16.5 - parent: 16200 - - uid: 16545 + pos: -26.5,38.5 + parent: 2 + - uid: 6800 components: - type: Transform - pos: 26.5,16.5 - parent: 16200 - - uid: 16546 + pos: -26.5,39.5 + parent: 2 + - uid: 6803 components: - type: Transform - pos: 27.5,16.5 - parent: 16200 - - uid: 16547 + rot: 3.141592653589793 rad + pos: 12.5,31.5 + parent: 2 + - uid: 6804 components: - type: Transform - pos: 28.5,16.5 - parent: 16200 - - uid: 16548 + pos: 5.5,35.5 + parent: 2 + - uid: 6806 components: - type: Transform - pos: 29.5,16.5 - parent: 16200 - - uid: 16549 + pos: 4.5,10.5 + parent: 2 + - uid: 6845 components: - type: Transform - pos: 30.5,16.5 - parent: 16200 - - uid: 16550 + rot: 3.141592653589793 rad + pos: 8.5,31.5 + parent: 2 + - uid: 6855 components: - type: Transform - pos: 25.5,16.5 - parent: 16200 - - uid: 16551 + rot: 3.141592653589793 rad + pos: 13.5,31.5 + parent: 2 + - uid: 6987 components: - type: Transform - pos: 30.5,17.5 - parent: 16200 - - uid: 16552 + pos: 9.5,10.5 + parent: 2 + - uid: 6998 components: - type: Transform - pos: 30.5,19.5 - parent: 16200 - - uid: 16553 + rot: 3.141592653589793 rad + pos: 9.5,31.5 + parent: 2 + - uid: 6999 components: - type: Transform - pos: 30.5,20.5 - parent: 16200 - - uid: 16554 + pos: 11.5,35.5 + parent: 2 + - uid: 7000 components: - type: Transform - pos: 29.5,20.5 - parent: 16200 - - uid: 16555 + pos: 12.5,35.5 + parent: 2 + - uid: 7001 components: - type: Transform - pos: 28.5,20.5 - parent: 16200 - - uid: 16556 + pos: 13.5,35.5 + parent: 2 + - uid: 7002 components: - type: Transform - pos: 26.5,20.5 - parent: 16200 - - uid: 16557 + pos: 10.5,39.5 + parent: 2 + - uid: 7004 components: - type: Transform - pos: 25.5,20.5 - parent: 16200 - - uid: 16558 + pos: 11.5,39.5 + parent: 2 + - uid: 7006 components: - type: Transform - pos: 24.5,20.5 - parent: 16200 - - uid: 16559 + pos: -18.5,36.5 + parent: 2 + - uid: 7007 components: - type: Transform - pos: 23.5,20.5 - parent: 16200 - - uid: 16560 + pos: -18.5,35.5 + parent: 2 + - uid: 7008 components: - type: Transform - pos: 27.5,20.5 - parent: 16200 - - uid: 16561 + pos: -17.5,34.5 + parent: 2 + - uid: 7009 components: - type: Transform - pos: 23.5,19.5 - parent: 16200 - - uid: 16562 + pos: 6.5,44.5 + parent: 2 + - uid: 7010 components: - type: Transform - pos: 22.5,11.5 - parent: 16200 - - uid: 16563 + pos: 3.5,44.5 + parent: 2 + - uid: 7012 components: - type: Transform - pos: 24.5,11.5 - parent: 16200 - - uid: 16564 + pos: 2.5,44.5 + parent: 2 + - uid: 7013 components: - type: Transform - pos: 23.5,11.5 - parent: 16200 - - uid: 16566 + pos: 2.5,43.5 + parent: 2 + - uid: 7014 components: - type: Transform - pos: 25.5,11.5 - parent: 16200 - - uid: 16567 + rot: 3.141592653589793 rad + pos: 8.5,27.5 + parent: 2 + - uid: 7016 components: - type: Transform - pos: 27.5,11.5 - parent: 16200 - - uid: 16568 + rot: 3.141592653589793 rad + pos: 13.5,28.5 + parent: 2 + - uid: 7021 components: - type: Transform - pos: 28.5,11.5 - parent: 16200 - - uid: 16569 + pos: -25.5,3.5 + parent: 2 + - uid: 7022 components: - type: Transform - pos: 26.5,11.5 - parent: 16200 - - uid: 16570 + rot: 3.141592653589793 rad + pos: 8.5,28.5 + parent: 2 + - uid: 7031 components: - type: Transform - pos: 31.5,17.5 - parent: 16200 - - uid: 16571 + rot: -1.5707963267948966 rad + pos: -18.5,20.5 + parent: 2 + - uid: 7470 components: - type: Transform - pos: 31.5,18.5 - parent: 16200 - - uid: 16928 + pos: -24.5,6.5 + parent: 2 + - uid: 7650 components: - type: Transform - pos: 9.5,22.5 - parent: 16675 - - uid: 16929 + rot: -1.5707963267948966 rad + pos: -47.5,31.5 + parent: 2 + - uid: 8070 components: - type: Transform - pos: 9.5,13.5 - parent: 16675 - - uid: 16930 + pos: -10.5,-6.5 + parent: 2 + - uid: 8077 components: - type: Transform - pos: 9.5,15.5 - parent: 16675 - - uid: 16931 + rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - uid: 8081 components: - type: Transform - pos: 9.5,14.5 - parent: 16675 - - uid: 17460 + pos: -12.5,-12.5 + parent: 2 + - uid: 8088 components: - type: Transform - pos: -55.5,38.5 + pos: -21.5,25.5 parent: 2 - - uid: 17461 + - uid: 8090 components: - type: Transform - pos: -55.5,37.5 + pos: 14.5,31.5 parent: 2 - - uid: 17462 + - uid: 8092 components: - type: Transform - pos: -56.5,37.5 + pos: -19.5,-12.5 parent: 2 - - uid: 18602 + - uid: 8098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,29.5 + pos: -24.5,5.5 parent: 2 -- proto: WallSolidRust - entities: - - uid: 172 + - uid: 8138 components: - type: Transform pos: -15.5,25.5 parent: 2 - - uid: 1060 + - uid: 8154 components: - type: Transform - pos: 31.5,30.5 + pos: -16.5,-6.5 parent: 2 - - uid: 1561 + - uid: 8172 components: - type: Transform - pos: -60.5,31.5 + pos: -16.5,-5.5 parent: 2 - - uid: 1724 + - uid: 8173 components: - type: Transform - pos: -71.5,28.5 + pos: -16.5,-1.5 parent: 2 - - uid: 1731 + - uid: 8177 components: - type: Transform - pos: -39.5,28.5 + pos: -19.5,-7.5 parent: 2 - - uid: 1775 + - uid: 8181 components: - type: Transform - pos: -70.5,34.5 + pos: -11.5,-12.5 parent: 2 - - uid: 1785 + - uid: 8183 components: - type: Transform - pos: -60.5,36.5 + pos: -10.5,-5.5 parent: 2 - - uid: 1847 + - uid: 8191 components: - type: Transform - pos: -17.5,31.5 + rot: -1.5707963267948966 rad + pos: -11.5,-14.5 parent: 2 - - uid: 2264 + - uid: 8195 components: - type: Transform - pos: 37.5,-16.5 + pos: -19.5,0.5 parent: 2 - - uid: 2278 + - uid: 8196 components: - type: Transform - pos: -34.5,11.5 + pos: -16.5,27.5 parent: 2 - - uid: 2296 + - uid: 8197 components: - type: Transform - pos: -34.5,10.5 + pos: -17.5,27.5 parent: 2 - - uid: 2767 + - uid: 8257 components: - type: Transform - pos: 37.5,-10.5 + rot: -1.5707963267948966 rad + pos: -14.5,-12.5 parent: 2 - - uid: 2955 + - uid: 8259 components: - type: Transform - pos: 8.5,29.5 + pos: -28.5,12.5 parent: 2 - - uid: 3239 + - uid: 8307 components: - type: Transform - pos: 37.5,-11.5 + pos: -22.5,5.5 parent: 2 - - uid: 3240 + - uid: 8308 components: - type: Transform - pos: 41.5,-16.5 + pos: -19.5,5.5 parent: 2 - - uid: 3241 + - uid: 8309 components: - type: Transform - pos: 41.5,-11.5 + pos: -11.5,22.5 parent: 2 - - uid: 3295 + - uid: 8310 components: - type: Transform - pos: 33.5,-15.5 + pos: -21.5,26.5 parent: 2 - - uid: 4481 + - uid: 8311 components: - type: Transform - pos: -16.5,-6.5 + pos: -21.5,24.5 parent: 2 - - uid: 4483 + - uid: 8415 components: - type: Transform - pos: 18.5,10.5 + pos: -21.5,23.5 parent: 2 - - uid: 4486 + - uid: 8438 components: - type: Transform - pos: -16.5,-5.5 + pos: -20.5,-11.5 parent: 2 - - uid: 4490 + - uid: 8439 components: - type: Transform - pos: -16.5,-1.5 + rot: 1.5707963267948966 rad + pos: -27.5,15.5 parent: 2 - - uid: 4515 + - uid: 8440 components: - type: Transform - pos: 17.5,10.5 + pos: -23.5,-11.5 parent: 2 - - uid: 4516 + - uid: 8441 components: - type: Transform - pos: 19.5,10.5 + pos: -22.5,-11.5 parent: 2 - - uid: 4518 + - uid: 8636 components: - type: Transform - pos: -18.5,6.5 + pos: -19.5,-11.5 parent: 2 - - uid: 4550 + - uid: 8653 components: - type: Transform - pos: -18.5,9.5 + pos: -26.5,26.5 parent: 2 - - uid: 4620 + - uid: 8654 components: - type: Transform - pos: -15.5,9.5 + pos: -20.5,11.5 parent: 2 - - uid: 4621 + - uid: 9211 components: - type: Transform - pos: -14.5,9.5 + pos: -2.5,46.5 parent: 2 - - uid: 4623 + - uid: 9749 components: - type: Transform - pos: -14.5,6.5 + rot: 3.141592653589793 rad + pos: -29.5,8.5 parent: 2 - - uid: 4646 + - uid: 9756 components: - type: Transform - pos: -15.5,6.5 + pos: -23.5,27.5 parent: 2 - - uid: 4649 + - uid: 11340 components: - type: Transform - pos: -19.5,-7.5 + pos: 8.5,30.5 parent: 2 - - uid: 4651 + - uid: 11646 components: - type: Transform - pos: -11.5,-12.5 + pos: -18.5,6.5 parent: 2 - - uid: 4660 + - uid: 11840 components: - type: Transform - pos: -10.5,-5.5 + pos: -21.5,11.5 parent: 2 - - uid: 4662 + - uid: 11866 components: - type: Transform - pos: -11.5,-14.5 + pos: 11.5,-21.5 parent: 2 - - uid: 4667 + - uid: 11874 components: - type: Transform - pos: -4.5,29.5 + pos: 11.5,-18.5 parent: 2 - - uid: 4668 + - uid: 11876 components: - type: Transform - pos: -19.5,0.5 + pos: 13.5,-18.5 parent: 2 - - uid: 4675 + - uid: 11910 components: - type: Transform - pos: -7.5,27.5 + pos: 13.5,-19.5 parent: 2 - - uid: 4676 + - uid: 11914 components: - type: Transform - pos: -11.5,27.5 + pos: 13.5,-21.5 parent: 2 - - uid: 4677 + - uid: 11915 components: - type: Transform - pos: -12.5,27.5 + pos: 13.5,-22.5 parent: 2 - - uid: 4678 + - uid: 11923 components: - type: Transform - pos: -16.5,27.5 + pos: 8.5,-21.5 parent: 2 - - uid: 4679 + - uid: 12324 components: - type: Transform - pos: -17.5,27.5 + pos: 10.5,-21.5 parent: 2 - - uid: 4711 + - uid: 12327 components: - type: Transform - pos: -17.5,16.5 + pos: 11.5,-19.5 parent: 2 - - uid: 4712 + - uid: 12892 components: - type: Transform - pos: -18.5,16.5 + pos: -22.5,6.5 parent: 2 - - uid: 4719 + - uid: 12975 components: - type: Transform - pos: -4.5,30.5 + pos: -15.5,28.5 parent: 2 - - uid: 4720 + - uid: 13071 components: - type: Transform - pos: -5.5,30.5 + pos: -15.5,48.5 parent: 2 - - uid: 4732 + - uid: 13075 components: - type: Transform - pos: -7.5,30.5 + pos: -15.5,42.5 parent: 2 - - uid: 4737 + - uid: 13076 components: - type: Transform - pos: -11.5,30.5 + pos: -15.5,47.5 parent: 2 - - uid: 4738 + - uid: 13324 components: - type: Transform - pos: 22.5,8.5 + pos: -30.5,8.5 parent: 2 - - uid: 4744 + - uid: 13613 components: - type: Transform - pos: 22.5,11.5 + pos: -21.5,5.5 parent: 2 - - uid: 4751 + - uid: 13656 components: - type: Transform - pos: 23.5,7.5 + pos: -17.5,6.5 parent: 2 - - uid: 4753 + - uid: 13664 components: - type: Transform - pos: 25.5,9.5 + pos: -16.5,6.5 parent: 2 - - uid: 4759 + - uid: 13666 components: - type: Transform - pos: 5.5,30.5 + pos: -18.5,5.5 parent: 2 - - uid: 4774 + - uid: 13698 components: - type: Transform - pos: 4.5,30.5 + rot: 1.5707963267948966 rad + pos: -19.5,23.5 parent: 2 - - uid: 4775 + - uid: 13887 components: - type: Transform - pos: -14.5,-12.5 + rot: -1.5707963267948966 rad + pos: 22.5,6.5 parent: 2 - - uid: 4777 + - uid: 13899 components: - type: Transform - pos: -10.5,10.5 + pos: 11.5,10.5 parent: 2 - - uid: 4778 + - uid: 15023 components: - type: Transform - pos: -10.5,6.5 + rot: -1.5707963267948966 rad + pos: -0.5,32.5 parent: 2 - - uid: 4797 + - uid: 15045 components: - type: Transform - pos: 7.5,13.5 + pos: 6.5,22.5 parent: 2 - - uid: 4865 + - uid: 16542 components: - type: Transform - pos: 3.5,10.5 - parent: 2 - - uid: 4903 + pos: 23.5,17.5 + parent: 16200 + - uid: 16543 components: - type: Transform - pos: 5.5,10.5 - parent: 2 - - uid: 4950 + pos: 23.5,16.5 + parent: 16200 + - uid: 16544 components: - type: Transform - pos: 5.5,13.5 - parent: 2 - - uid: 4951 + pos: 24.5,16.5 + parent: 16200 + - uid: 16545 components: - type: Transform - pos: 7.5,12.5 - parent: 2 - - uid: 4953 + pos: 26.5,16.5 + parent: 16200 + - uid: 16546 components: - type: Transform - pos: -0.5,29.5 - parent: 2 - - uid: 4954 + pos: 27.5,16.5 + parent: 16200 + - uid: 16547 components: - type: Transform - pos: -12.5,30.5 - parent: 2 - - uid: 4956 + pos: 28.5,16.5 + parent: 16200 + - uid: 16548 components: - type: Transform - pos: -15.5,30.5 - parent: 2 - - uid: 4957 + pos: 29.5,16.5 + parent: 16200 + - uid: 16549 components: - type: Transform - pos: -17.5,30.5 - parent: 2 - - uid: 5003 + pos: 30.5,16.5 + parent: 16200 + - uid: 16550 components: - type: Transform - pos: 6.5,35.5 - parent: 2 - - uid: 5077 + pos: 25.5,16.5 + parent: 16200 + - uid: 16551 components: - type: Transform - pos: 10.5,40.5 - parent: 2 - - uid: 5106 + pos: 30.5,17.5 + parent: 16200 + - uid: 16552 components: - type: Transform - pos: -28.5,16.5 - parent: 2 - - uid: 5119 + pos: 30.5,19.5 + parent: 16200 + - uid: 16553 components: - type: Transform - pos: -28.5,12.5 - parent: 2 - - uid: 5120 + pos: 30.5,20.5 + parent: 16200 + - uid: 16554 components: - type: Transform - pos: -28.5,11.5 - parent: 2 - - uid: 5122 + pos: 29.5,20.5 + parent: 16200 + - uid: 16555 components: - type: Transform - pos: -28.5,9.5 - parent: 2 - - uid: 5186 + pos: 28.5,20.5 + parent: 16200 + - uid: 16556 components: - type: Transform - pos: -4.5,16.5 - parent: 2 - - uid: 5187 + pos: 26.5,20.5 + parent: 16200 + - uid: 16557 components: - type: Transform - pos: -7.5,19.5 - parent: 2 - - uid: 5188 + pos: 25.5,20.5 + parent: 16200 + - uid: 16558 components: - type: Transform - pos: -10.5,11.5 - parent: 2 - - uid: 5193 + pos: 24.5,20.5 + parent: 16200 + - uid: 16559 components: - type: Transform - pos: -7.5,18.5 - parent: 2 - - uid: 5194 + pos: 23.5,20.5 + parent: 16200 + - uid: 16560 components: - type: Transform - pos: -10.5,14.5 - parent: 2 - - uid: 5195 + pos: 27.5,20.5 + parent: 16200 + - uid: 16561 components: - type: Transform - pos: 17.5,30.5 - parent: 2 - - uid: 5196 + pos: 23.5,19.5 + parent: 16200 + - uid: 16562 components: - type: Transform - pos: 15.5,30.5 - parent: 2 - - uid: 5197 + pos: 22.5,11.5 + parent: 16200 + - uid: 16563 components: - type: Transform - pos: -4.5,19.5 - parent: 2 - - uid: 5200 + pos: 24.5,11.5 + parent: 16200 + - uid: 16564 components: - type: Transform - pos: -19.5,-17.5 - parent: 2 - - uid: 5222 + pos: 23.5,11.5 + parent: 16200 + - uid: 16566 components: - type: Transform - pos: -4.5,20.5 - parent: 2 - - uid: 5225 + pos: 25.5,11.5 + parent: 16200 + - uid: 16567 components: - type: Transform - pos: -4.5,24.5 - parent: 2 - - uid: 5226 + pos: 27.5,11.5 + parent: 16200 + - uid: 16568 components: - type: Transform - pos: -4.5,25.5 - parent: 2 - - uid: 5227 + pos: 28.5,11.5 + parent: 16200 + - uid: 16569 components: - type: Transform - pos: -4.5,26.5 - parent: 2 - - uid: 5228 + pos: 26.5,11.5 + parent: 16200 + - uid: 16570 components: - type: Transform - pos: -7.5,23.5 - parent: 2 - - uid: 5232 + pos: 31.5,17.5 + parent: 16200 + - uid: 16571 components: - type: Transform - pos: -11.5,22.5 - parent: 2 - - uid: 5240 + pos: 31.5,18.5 + parent: 16200 + - uid: 16928 components: - type: Transform - pos: -17.5,-16.5 - parent: 2 - - uid: 5263 + pos: 9.5,22.5 + parent: 16675 + - uid: 16929 components: - type: Transform - pos: -21.5,26.5 - parent: 2 - - uid: 5267 + pos: 9.5,13.5 + parent: 16675 + - uid: 16930 components: - type: Transform - pos: -21.5,24.5 - parent: 2 - - uid: 5270 + pos: 9.5,15.5 + parent: 16675 + - uid: 16931 components: - type: Transform - pos: -21.5,23.5 - parent: 2 - - uid: 5273 + pos: 9.5,14.5 + parent: 16675 + - uid: 18602 components: - type: Transform - pos: -19.5,23.5 + rot: 1.5707963267948966 rad + pos: 3.5,29.5 parent: 2 - - uid: 5274 + - uid: 19754 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,19.5 - parent: 2 - - uid: 5275 + pos: 3.5,-0.5 + parent: 17641 + - uid: 19755 components: - type: Transform - pos: -19.5,19.5 - parent: 2 - - uid: 5276 + pos: 3.5,0.5 + parent: 17641 + - uid: 19756 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,18.5 - parent: 2 - - uid: 5277 + pos: 3.5,-2.5 + parent: 17641 + - uid: 19757 components: - type: Transform - pos: -21.5,15.5 - parent: 2 - - uid: 5278 + pos: 8.5,0.5 + parent: 17641 + - uid: 19758 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,15.5 - parent: 2 - - uid: 5279 + pos: 9.5,0.5 + parent: 17641 + - uid: 19759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,15.5 - parent: 2 - - uid: 5311 + pos: 5.5,0.5 + parent: 17641 + - uid: 19760 components: - type: Transform - pos: -20.5,-11.5 - parent: 2 - - uid: 5322 + pos: 10.5,0.5 + parent: 17641 + - uid: 19761 components: - type: Transform - pos: -25.5,35.5 - parent: 2 - - uid: 5327 + pos: 6.5,0.5 + parent: 17641 + - uid: 19762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,15.5 - parent: 2 - - uid: 5328 + pos: 4.5,0.5 + parent: 17641 + - uid: 19763 components: - type: Transform - pos: -23.5,-11.5 - parent: 2 - - uid: 5329 + pos: 7.5,0.5 + parent: 17641 + - uid: 19764 components: - type: Transform - pos: -22.5,-11.5 - parent: 2 - - uid: 5349 + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 17641 + - uid: 19765 components: - type: Transform - pos: -27.5,12.5 - parent: 2 - - uid: 5362 + pos: 6.5,-2.5 + parent: 17641 + - uid: 19766 components: - type: Transform - pos: -34.5,17.5 - parent: 2 - - uid: 5363 + pos: 7.5,-2.5 + parent: 17641 + - uid: 19767 components: - type: Transform - pos: -34.5,16.5 - parent: 2 - - uid: 5366 + pos: 8.5,-2.5 + parent: 17641 + - uid: 19768 components: - type: Transform - pos: -34.5,14.5 - parent: 2 - - uid: 5368 + pos: 5.5,-2.5 + parent: 17641 + - uid: 19769 components: - type: Transform - pos: -33.5,15.5 - parent: 2 - - uid: 5749 + pos: 9.5,-2.5 + parent: 17641 + - uid: 19770 components: - type: Transform - pos: -29.5,55.5 - parent: 2 - - uid: 5753 + pos: 11.5,-2.5 + parent: 17641 + - uid: 19771 components: - type: Transform - pos: -29.5,54.5 - parent: 2 - - uid: 5832 + pos: 10.5,-2.5 + parent: 17641 + - uid: 19772 components: - type: Transform - pos: -27.5,54.5 - parent: 2 - - uid: 5844 + pos: 12.5,-2.5 + parent: 17641 + - uid: 19773 components: - type: Transform - pos: -27.5,55.5 - parent: 2 - - uid: 5861 + pos: 15.5,-2.5 + parent: 17641 + - uid: 19774 components: - type: Transform - pos: -27.5,53.5 - parent: 2 - - uid: 5900 + pos: 13.5,-2.5 + parent: 17641 + - uid: 19775 components: - type: Transform - pos: -29.5,53.5 - parent: 2 - - uid: 5949 + pos: 16.5,-2.5 + parent: 17641 + - uid: 19776 components: - type: Transform - pos: -27.5,8.5 - parent: 2 - - uid: 5950 + pos: 14.5,-2.5 + parent: 17641 + - uid: 19777 components: - type: Transform - pos: -26.5,8.5 - parent: 2 - - uid: 6338 + pos: 17.5,-2.5 + parent: 17641 + - uid: 19778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,30.5 - parent: 2 - - uid: 6345 + pos: 23.5,6.5 + parent: 17641 + - uid: 19779 components: - type: Transform - pos: -19.5,-11.5 - parent: 2 - - uid: 6349 + pos: 17.5,-1.5 + parent: 17641 + - uid: 19780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,31.5 - parent: 2 - - uid: 6355 + pos: 26.5,6.5 + parent: 17641 + - uid: 19781 components: - type: Transform - pos: -30.5,25.5 - parent: 2 - - uid: 6377 + pos: 23.5,7.5 + parent: 17641 + - uid: 19782 components: - type: Transform - pos: -40.5,35.5 - parent: 2 - - uid: 6378 + pos: 23.5,9.5 + parent: 17641 + - uid: 19783 components: - type: Transform - pos: -45.5,31.5 - parent: 2 - - uid: 6379 + pos: 23.5,5.5 + parent: 17641 + - uid: 19784 components: - type: Transform - pos: -41.5,38.5 - parent: 2 - - uid: 6380 + pos: 21.5,5.5 + parent: 17641 + - uid: 19785 components: - type: Transform - pos: -41.5,35.5 - parent: 2 - - uid: 6381 + pos: 22.5,5.5 + parent: 17641 + - uid: 19786 components: - type: Transform - pos: -39.5,42.5 - parent: 2 - - uid: 6382 + pos: 19.5,5.5 + parent: 17641 + - uid: 19787 components: - type: Transform - pos: -26.5,29.5 - parent: 2 - - uid: 6383 + pos: 20.5,5.5 + parent: 17641 + - uid: 19788 components: - type: Transform - pos: -26.5,25.5 - parent: 2 - - uid: 6393 + pos: 18.5,5.5 + parent: 17641 + - uid: 19789 components: - type: Transform - pos: 6.5,33.5 - parent: 2 - - uid: 6397 + pos: 16.5,5.5 + parent: 17641 + - uid: 19790 components: - type: Transform - pos: -22.5,27.5 - parent: 2 - - uid: 6434 + pos: 15.5,5.5 + parent: 17641 + - uid: 19791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,30.5 - parent: 2 - - uid: 6436 + pos: 14.5,5.5 + parent: 17641 + - uid: 19792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,32.5 - parent: 2 - - uid: 6440 + pos: 13.5,5.5 + parent: 17641 + - uid: 19793 components: - type: Transform - pos: -0.5,35.5 - parent: 2 - - uid: 6445 + pos: 12.5,5.5 + parent: 17641 + - uid: 19794 components: - type: Transform - pos: 0.5,35.5 - parent: 2 - - uid: 6452 + pos: 11.5,5.5 + parent: 17641 + - uid: 19795 components: - type: Transform - pos: -4.5,34.5 - parent: 2 - - uid: 6453 + pos: 17.5,5.5 + parent: 17641 + - uid: 19796 components: - type: Transform - pos: -5.5,34.5 - parent: 2 - - uid: 6454 + pos: 11.5,4.5 + parent: 17641 + - uid: 19797 components: - type: Transform - pos: -4.5,37.5 - parent: 2 - - uid: 6457 + pos: 11.5,3.5 + parent: 17641 + - uid: 19798 components: - type: Transform - pos: 22.5,37.5 - parent: 2 - - uid: 6459 + pos: 16.5,4.5 + parent: 17641 + - uid: 19799 components: - type: Transform - pos: 23.5,37.5 - parent: 2 - - uid: 6462 + pos: 17.5,4.5 + parent: 17641 + - uid: 19800 components: - type: Transform - pos: 27.5,37.5 - parent: 2 - - uid: 6466 + pos: 18.5,2.5 + parent: 17641 + - uid: 19801 components: - type: Transform - pos: -25.5,27.5 - parent: 2 - - uid: 6467 + pos: 17.5,3.5 + parent: 17641 + - uid: 19802 components: - type: Transform - pos: -26.5,27.5 - parent: 2 - - uid: 6498 + pos: 17.5,2.5 + parent: 17641 + - uid: 19803 components: - type: Transform - pos: -4.5,38.5 - parent: 2 - - uid: 6596 + pos: 17.5,1.5 + parent: 17641 + - uid: 19804 components: - type: Transform - pos: -69.5,34.5 - parent: 2 - - uid: 6597 + pos: 17.5,0.5 + parent: 17641 + - uid: 19805 components: - type: Transform - pos: -66.5,34.5 - parent: 2 - - uid: 6598 + pos: 16.5,0.5 + parent: 17641 + - uid: 19806 components: - type: Transform - pos: -65.5,34.5 - parent: 2 - - uid: 6600 + pos: 11.5,1.5 + parent: 17641 + - uid: 19807 components: - type: Transform - pos: -16.5,42.5 - parent: 2 - - uid: 6601 + pos: 11.5,0.5 + parent: 17641 + - uid: 19808 components: - type: Transform - pos: -4.5,42.5 - parent: 2 - - uid: 6602 + pos: 11.5,-0.5 + parent: 17641 + - uid: 19809 components: - type: Transform - pos: -0.5,39.5 - parent: 2 - - uid: 6609 + pos: 12.5,-0.5 + parent: 17641 + - uid: 19810 components: - type: Transform - pos: -18.5,42.5 - parent: 2 - - uid: 6610 + pos: 13.5,-0.5 + parent: 17641 + - uid: 19811 components: - type: Transform - pos: -0.5,41.5 - parent: 2 - - uid: 6611 + pos: 14.5,-0.5 + parent: 17641 + - uid: 19812 components: - type: Transform - pos: -0.5,40.5 - parent: 2 - - uid: 6614 + pos: 15.5,-0.5 + parent: 17641 + - uid: 19813 components: - type: Transform - pos: -3.5,42.5 - parent: 2 - - uid: 6617 + pos: 16.5,-0.5 + parent: 17641 + - uid: 19814 components: - type: Transform - pos: -26.5,37.5 - parent: 2 - - uid: 6618 + pos: 17.5,-0.5 + parent: 17641 + - uid: 19815 components: - type: Transform - pos: -26.5,38.5 - parent: 2 - - uid: 6619 + pos: 11.5,7.5 + parent: 17641 + - uid: 19816 components: - type: Transform - pos: -26.5,39.5 - parent: 2 - - uid: 6620 + pos: 11.5,9.5 + parent: 17641 + - uid: 19817 components: - type: Transform - pos: -26.5,42.5 - parent: 2 - - uid: 6622 + pos: 6.5,4.5 + parent: 17641 + - uid: 19818 components: - type: Transform - pos: -36.5,41.5 - parent: 2 - - uid: 6627 + pos: 4.5,4.5 + parent: 17641 + - uid: 19819 components: - type: Transform - pos: -32.5,35.5 - parent: 2 - - uid: 6629 + pos: 3.5,4.5 + parent: 17641 + - uid: 19820 components: - type: Transform - pos: -65.5,36.5 - parent: 2 - - uid: 6630 + pos: 3.5,3.5 + parent: 17641 + - uid: 19821 components: - type: Transform - pos: -65.5,37.5 - parent: 2 - - uid: 6631 + pos: 3.5,1.5 + parent: 17641 + - uid: 19822 components: - type: Transform - pos: -65.5,35.5 - parent: 2 - - uid: 6666 + pos: 2.5,-2.5 + parent: 17641 + - uid: 19823 components: - type: Transform - pos: -36.5,42.5 - parent: 2 - - uid: 6772 + pos: 0.5,-2.5 + parent: 17641 + - uid: 19824 components: - type: Transform - pos: -19.5,42.5 - parent: 2 - - uid: 6800 + pos: -0.5,-2.5 + parent: 17641 + - uid: 19825 components: - type: Transform - pos: -23.5,42.5 - parent: 2 - - uid: 6803 + pos: 1.5,-2.5 + parent: 17641 + - uid: 19826 components: - type: Transform - pos: -24.5,42.5 - parent: 2 - - uid: 6804 + pos: -2.5,-2.5 + parent: 17641 + - uid: 19827 components: - type: Transform - pos: -30.5,43.5 - parent: 2 - - uid: 6987 + pos: -3.5,0.5 + parent: 17641 + - uid: 19828 components: - type: Transform - pos: -30.5,39.5 - parent: 2 - - uid: 6998 + pos: -3.5,4.5 + parent: 17641 + - uid: 19829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,38.5 - parent: 2 - - uid: 6999 + pos: 0.5,4.5 + parent: 17641 + - uid: 19830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,39.5 - parent: 2 - - uid: 7001 + pos: 12.5,-3.5 + parent: 17641 + - uid: 19831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,35.5 - parent: 2 - - uid: 7002 + pos: 12.5,-5.5 + parent: 17641 + - uid: 19832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,34.5 - parent: 2 - - uid: 7004 + pos: 18.5,-2.5 + parent: 17641 + - uid: 19833 components: - type: Transform - pos: -67.5,31.5 - parent: 2 - - uid: 7009 + pos: 19.5,-2.5 + parent: 17641 + - uid: 19834 components: - type: Transform - pos: -31.5,35.5 - parent: 2 - - uid: 7010 + pos: 21.5,-2.5 + parent: 17641 + - uid: 19835 components: - type: Transform - pos: -60.5,35.5 - parent: 2 - - uid: 7012 + pos: 23.5,-2.5 + parent: 17641 + - uid: 19836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,34.5 - parent: 2 - - uid: 7063 + pos: 22.5,-2.5 + parent: 17641 + - uid: 19837 components: - type: Transform - pos: -69.5,31.5 - parent: 2 - - uid: 7642 + pos: 23.5,-1.5 + parent: 17641 + - uid: 19838 components: - type: Transform - pos: -35.5,25.5 - parent: 2 - - uid: 7938 + pos: 23.5,0.5 + parent: 17641 + - uid: 19839 components: - type: Transform - pos: 12.5,31.5 - parent: 2 - - uid: 7940 + pos: 23.5,1.5 + parent: 17641 + - uid: 19840 components: - type: Transform - pos: 5.5,35.5 - parent: 2 - - uid: 7963 + pos: 23.5,-0.5 + parent: 17641 + - uid: 19841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 2 - - uid: 8088 + pos: 23.5,2.5 + parent: 17641 + - uid: 19842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,38.5 - parent: 2 - - uid: 8092 + pos: 23.5,3.5 + parent: 17641 + - uid: 19843 components: - type: Transform - pos: 8.5,31.5 - parent: 2 - - uid: 8093 + pos: 23.5,4.5 + parent: 17641 + - uid: 19844 components: - type: Transform - pos: 13.5,31.5 - parent: 2 - - uid: 8097 + pos: 22.5,2.5 + parent: 17641 + - uid: 19845 components: - type: Transform - pos: 9.5,10.5 - parent: 2 - - uid: 8098 + pos: 27.5,-2.5 + parent: 17641 + - uid: 19846 components: - type: Transform - pos: 9.5,31.5 - parent: 2 - - uid: 8712 + pos: 30.5,-2.5 + parent: 17641 + - uid: 19847 components: - type: Transform - pos: 11.5,35.5 - parent: 2 - - uid: 8713 + pos: 31.5,-2.5 + parent: 17641 + - uid: 19848 components: - type: Transform - pos: 12.5,35.5 - parent: 2 - - uid: 8778 + pos: 28.5,-2.5 + parent: 17641 + - uid: 19849 components: - type: Transform - pos: 13.5,35.5 - parent: 2 - - uid: 8851 + pos: 32.5,-2.5 + parent: 17641 + - uid: 19850 components: - type: Transform - pos: 10.5,39.5 - parent: 2 - - uid: 9546 + pos: 33.5,-2.5 + parent: 17641 + - uid: 19851 components: - type: Transform - pos: 11.5,39.5 - parent: 2 - - uid: 12971 + pos: 27.5,2.5 + parent: 17641 + - uid: 19852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,0.5 - parent: 2 - - uid: 12972 + pos: 27.5,6.5 + parent: 17641 + - uid: 19853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,0.5 - parent: 2 - - uid: 12973 + pos: 27.5,4.5 + parent: 17641 + - uid: 19854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 2 - - uid: 12982 + pos: 27.5,3.5 + parent: 17641 + - uid: 19855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,0.5 - parent: 2 - - uid: 12988 + pos: 27.5,5.5 + parent: 17641 + - uid: 19856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 2 - - uid: 12994 + pos: 28.5,6.5 + parent: 17641 + - uid: 19857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-20.5 - parent: 2 - - uid: 13001 + pos: 30.5,6.5 + parent: 17641 + - uid: 19858 components: - type: Transform - pos: -18.5,36.5 - parent: 2 - - uid: 13002 + pos: 31.5,4.5 + parent: 17641 + - uid: 19859 components: - type: Transform - pos: -18.5,35.5 - parent: 2 - - uid: 13003 + pos: 27.5,1.5 + parent: 17641 + - uid: 19860 components: - type: Transform - pos: -17.5,34.5 - parent: 2 - - uid: 13004 + pos: 27.5,-0.5 + parent: 17641 + - uid: 19861 components: - type: Transform - pos: 6.5,44.5 - parent: 2 - - uid: 13006 + pos: 27.5,0.5 + parent: 17641 + - uid: 19862 components: - type: Transform - pos: 3.5,44.5 - parent: 2 - - uid: 13007 + pos: 34.5,1.5 + parent: 17641 + - uid: 19863 components: - type: Transform - pos: 2.5,44.5 - parent: 2 - - uid: 13008 + pos: 33.5,1.5 + parent: 17641 + - uid: 19864 components: - type: Transform - pos: 2.5,43.5 - parent: 2 - - uid: 14213 + pos: 31.5,1.5 + parent: 17641 + - uid: 19865 components: - type: Transform - pos: 8.5,27.5 - parent: 2 - - uid: 14228 + pos: 30.5,1.5 + parent: 17641 + - uid: 19866 components: - type: Transform - pos: 13.5,28.5 - parent: 2 - - uid: 15100 + pos: 35.5,4.5 + parent: 17641 + - uid: 19867 components: - type: Transform - pos: 8.5,28.5 - parent: 2 - - uid: 16572 + pos: 35.5,3.5 + parent: 17641 + - uid: 19868 components: - type: Transform - pos: 24.5,10.5 - parent: 16200 - - uid: 16573 + pos: 34.5,6.5 + parent: 17641 + - uid: 19869 components: - type: Transform - pos: 24.5,8.5 - parent: 16200 -- proto: WallWeaponCapacitorRecharger + rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 17641 +- proto: WallSolidRust entities: - - uid: 19266 + - uid: 1775 components: - type: Transform - pos: 36.5,-11.5 - parent: 17590 -- proto: WallWeb - entities: - - uid: 3563 + pos: -70.5,34.5 + parent: 2 + - uid: 5200 components: - type: Transform - pos: -17.5,52.5 + pos: -19.5,-17.5 parent: 2 - - uid: 5388 + - uid: 5240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,56.5 + pos: -17.5,-16.5 parent: 2 - - uid: 5389 + - uid: 5749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,55.5 + pos: -29.5,55.5 parent: 2 - - uid: 8257 + - uid: 5753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,53.5 + pos: -29.5,54.5 parent: 2 - - uid: 15906 + - uid: 5832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,56.5 + pos: -27.5,54.5 parent: 2 - - uid: 17201 + - uid: 5844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,56.5 + pos: -27.5,55.5 parent: 2 - - uid: 17202 + - uid: 5861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,54.5 + pos: -27.5,53.5 parent: 2 - - uid: 17203 + - uid: 5900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,56.5 + pos: -29.5,53.5 parent: 2 - - uid: 17204 + - uid: 6596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,53.5 + pos: -69.5,34.5 parent: 2 - - uid: 17205 + - uid: 6597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,54.5 + pos: -66.5,34.5 parent: 2 - - uid: 17206 + - uid: 16572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,54.5 + pos: 24.5,10.5 + parent: 16200 + - uid: 16573 + components: + - type: Transform + pos: 24.5,8.5 + parent: 16200 +- proto: WardrobeBlackFilled + entities: + - uid: 2134 + components: + - type: Transform + pos: -33.5,39.5 parent: 2 - - uid: 17207 +- proto: WardrobeBlueFilled + entities: + - uid: 2261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,55.5 + pos: -33.5,37.5 parent: 2 - proto: WardrobeBotanistFilled entities: @@ -130488,17 +124605,33 @@ entities: showEnts: False occludes: True ent: null -- proto: WardrobeMedicalDoctorFilled +- proto: WardrobeGreenFilled entities: - - uid: 3989 + - uid: 586 components: - type: Transform - pos: -8.5,24.5 + pos: -35.5,37.5 parent: 2 - - uid: 4147 +- proto: WardrobeGreyFilled + entities: + - uid: 589 components: - type: Transform - pos: -8.5,23.5 + pos: -33.5,36.5 + parent: 2 +- proto: WardrobeMixedFilled + entities: + - uid: 2041 + components: + - type: Transform + pos: -33.5,38.5 + parent: 2 +- proto: WardrobePinkFilled + entities: + - uid: 539 + components: + - type: Transform + pos: -35.5,36.5 parent: 2 - proto: WardrobePrisonFilled entities: @@ -130565,6 +124698,24 @@ entities: - type: Transform pos: 40.5,-10.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -130604,10 +124755,10 @@ entities: - type: Transform pos: -25.5,18.5 parent: 2 - - uid: 4696 + - uid: 8084 components: - type: Transform - pos: -20.5,21.5 + pos: -21.5,7.5 parent: 2 - type: ContainerContainer containers: @@ -130615,48 +124766,27 @@ entities: showEnts: False occludes: True ents: - - 4697 - - 4698 - - 4699 + - 8099 + - 8117 + - 8118 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 18287 +- proto: WardrobeWhiteFilled + entities: + - uid: 742 components: - type: Transform - pos: 17.5,-15.5 - parent: 17590 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18288 - - 18289 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + pos: -35.5,39.5 + parent: 2 +- proto: WardrobeYellowFilled + entities: + - uid: 770 + components: + - type: Transform + pos: -35.5,38.5 + parent: 2 - proto: WarningAir entities: - uid: 1768 @@ -130664,12 +124794,6 @@ entities: - type: Transform pos: -13.5,-30.5 parent: 2 - - uid: 19267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,3.5 - parent: 17590 - proto: WarningN2 entities: - uid: 556 @@ -130677,12 +124801,6 @@ entities: - type: Transform pos: -7.5,-30.5 parent: 2 - - uid: 19268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,6.5 - parent: 17590 - proto: WarningO2 entities: - uid: 554 @@ -130690,12 +124808,6 @@ entities: - type: Transform pos: -10.5,-30.5 parent: 2 - - uid: 19269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,4.5 - parent: 17590 - proto: WarningPlasma entities: - uid: 12484 @@ -130719,13 +124831,6 @@ entities: parent: 16200 - type: WarpPoint location: Аванпост ОБР - - uid: 19797 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 17590 - - type: WarpPoint - location: Shadow Lizard Money Gang - proto: WarpPointBombing entities: - uid: 1076 @@ -130742,13 +124847,6 @@ entities: parent: 2 - type: WarpPoint location: Кабинет АВД - - uid: 4473 - components: - - type: Transform - pos: -23.5,9.5 - parent: 2 - - type: WarpPoint - location: Кабинет ГВ - uid: 7731 components: - type: Transform @@ -130836,16 +124934,6 @@ entities: location: Стыковочный док снабжения - proto: WaterCooler entities: - - uid: 778 - components: - - type: Transform - pos: -23.5,14.5 - parent: 2 - - uid: 2464 - components: - - type: Transform - pos: 29.5,0.5 - parent: 2 - uid: 2654 components: - type: Transform @@ -130856,25 +124944,40 @@ entities: - type: Transform pos: 26.5,-15.5 parent: 2 - - uid: 3168 + - uid: 3280 components: - type: Transform - pos: 34.5,-21.5 + pos: -61.5,35.5 parent: 2 - uid: 3726 components: - type: Transform pos: -17.5,-1.5 parent: 2 - - uid: 4852 + - uid: 5557 components: - type: Transform - pos: -29.5,14.5 + pos: -26.5,59.5 parent: 2 - - uid: 5557 + - uid: 6390 components: - type: Transform - pos: -26.5,59.5 + pos: -27.5,12.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: -33.5,15.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + pos: 34.5,-22.5 parent: 2 - uid: 12386 components: @@ -130898,11 +125001,6 @@ entities: parent: 16675 - proto: WaterTank entities: - - uid: 2009 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 2 - uid: 3009 components: - type: Transform @@ -130918,43 +125016,63 @@ entities: - type: Transform pos: 26.5,-39.5 parent: 2 - - uid: 17063 + - uid: 19870 components: - type: Transform - pos: -5.5,38.5 - parent: 2 - - uid: 17064 + pos: 11.5,27.5 + parent: 17641 + - uid: 19871 components: - type: Transform - pos: -5.5,39.5 - parent: 2 - - uid: 17070 + pos: 12.5,27.5 + parent: 17641 + - uid: 19872 components: - type: Transform - pos: 10.5,34.5 + pos: 14.5,27.5 + parent: 17641 + - uid: 19873 + components: + - type: Transform + pos: 15.5,26.5 + parent: 17641 + - uid: 19874 + components: + - type: Transform + pos: 16.5,26.5 + parent: 17641 +- proto: WaterTankFull + entities: + - uid: 1031 + components: + - type: Transform + pos: -25.5,-1.5 parent: 2 - - uid: 17085 + - uid: 1747 components: - type: Transform - pos: 23.5,8.5 + pos: 12.5,34.5 parent: 2 - - uid: 17103 + - uid: 3081 components: - type: Transform - pos: -19.5,47.5 + pos: -8.5,28.5 parent: 2 -- proto: WaterTankFull - entities: - - uid: 75 + - uid: 3360 components: - type: Transform - pos: -25.5,-2.5 + pos: -74.5,33.5 parent: 2 - uid: 3605 components: - type: Transform pos: 27.5,-20.5 parent: 2 + - uid: 4285 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 - uid: 4657 components: - type: Transform @@ -130965,74 +125083,94 @@ entities: - type: Transform pos: -45.5,35.5 parent: 2 - - uid: 7028 + - uid: 6536 components: - type: Transform - pos: -15.5,7.5 + pos: 23.5,8.5 parent: 2 - - uid: 7757 + - uid: 7063 + components: + - type: Transform + pos: -5.5,39.5 + parent: 2 + - uid: 7510 components: - type: Transform - pos: -44.5,41.5 + pos: -5.5,38.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: -46.5,41.5 parent: 2 - uid: 8074 components: - type: Transform pos: 52.5,-21.5 parent: 2 - - uid: 13066 + - uid: 8722 components: - type: Transform - pos: 2.5,33.5 + pos: 11.5,34.5 parent: 2 - - uid: 17056 + - uid: 9043 components: - type: Transform - pos: 0.5,44.5 + pos: 10.5,34.5 parent: 2 - - uid: 17071 + - uid: 9765 components: - type: Transform - pos: 11.5,34.5 + pos: 7.5,46.5 parent: 2 - - uid: 17076 + - uid: 10205 components: - type: Transform - pos: 1.5,29.5 + pos: 19.5,39.5 parent: 2 - - uid: 17112 + - uid: 10959 components: - type: Transform - pos: -47.5,33.5 + pos: 24.5,14.5 parent: 2 -- proto: WaterTankHighCapacity - entities: - - uid: 10198 + - uid: 13002 components: - type: Transform - pos: 12.5,23.5 + pos: -19.5,47.5 parent: 2 - - uid: 17073 + - uid: 17056 components: - type: Transform - pos: 13.5,34.5 + pos: 0.5,44.5 parent: 2 -- proto: WaterVaporCanister + - uid: 17076 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 +- proto: WaterTankHighCapacity entities: - - uid: 295 + - uid: 4670 components: - type: Transform - pos: -6.5,-31.5 + pos: -47.5,33.5 parent: 2 - - uid: 1836 + - uid: 8851 components: - type: Transform - pos: -5.5,27.5 + pos: 13.5,34.5 parent: 2 - - uid: 17122 + - uid: 10198 components: - type: Transform - pos: -6.5,23.5 + pos: 12.5,23.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 295 + components: + - type: Transform + pos: -6.5,-31.5 parent: 2 - uid: 17123 components: @@ -131057,30 +125195,30 @@ entities: - type: Transform pos: 26.5,17.5 parent: 16200 + - uid: 17169 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 - uid: 19948 components: - type: Transform pos: 8.5,24.5 parent: 16675 - - uid: 20029 - components: - - type: Transform - pos: 44.5,-12.5 - parent: 17590 - proto: WeaponDisabler entities: - - uid: 3599 + - uid: 13003 components: - type: Transform - pos: 33.1062,-24.33311 + pos: 31.127861,-25.492722 parent: 2 -- proto: WeaponDisablerPractice - entities: - - uid: 8115 + - uid: 17086 components: - type: Transform - pos: 33.1119,-24.48862 + pos: 31.159111,-25.273972 parent: 2 +- proto: WeaponDisablerPractice + entities: - uid: 8133 components: - type: Transform @@ -131100,81 +125238,40 @@ entities: - type: Transform pos: 24.5,17.5 parent: 16200 - - uid: 19273 - components: - - type: Transform - parent: 18688 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponLaserCarbine +- proto: WeaponLaserCannon entities: - - uid: 14928 + - uid: 13006 components: - type: Transform - pos: 35.5,-27.3 + pos: 35.5,-28 parent: 2 - - uid: 19274 - components: - - type: Transform - parent: 18700 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19275 - components: - - type: Transform - parent: 18700 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponLaserSvalinn - entities: - - uid: 10509 + - uid: 13008 components: - type: Transform pos: 35.5,-28.5 parent: 2 - - uid: 14652 + - uid: 17178 components: - type: Transform pos: 35.5,-28.3 parent: 2 - - uid: 15796 - components: - - type: Transform - pos: 35.5,-28.1 - parent: 2 -- proto: WeaponLightMachineGunL6 +- proto: WeaponLaserCarbine entities: - - uid: 15777 + - uid: 13007 components: - - type: MetaData - name: пулемёт ботаников - type: Transform - parent: 1540 - - type: Physics - canCollide: False - - type: InsideEntityStorage - missingComponents: - - ChamberMagazineAmmoProvider - - AmmoCounter -- proto: WeaponMakeshiftLaser - entities: - - uid: 15794 + pos: 35.5,-27.7 + parent: 2 + - uid: 13010 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 17187 + - uid: 14928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.547565,63.714752 + pos: 35.5,-27.3 parent: 2 - - type: Gun - minAngle: 0.5235987755982988 rad - fireRate: 0.5 - proto: WeaponMeleeNeedle entities: - uid: 979 @@ -131187,28 +125284,15 @@ entities: - type: Transform pos: -34.41743,28.673183 parent: 2 - - uid: 1214 - components: - - type: Transform - pos: 32.221184,-24.294592 - parent: 2 - - uid: 3184 - components: - - type: Transform - pos: 32.09855,-24.29686 - parent: 2 - - uid: 3185 + - uid: 11894 components: - type: Transform - pos: 32.332924,-24.35936 + pos: 31.752861,-25.273972 parent: 2 -- proto: WeaponPistolCHIMP - entities: - - uid: 536 + - uid: 17088 components: - type: Transform - rot: 2.0943951023931953 rad - pos: 26.923325,14.742552 + pos: 31.911627,-25.244116 parent: 2 - proto: WeaponPistolMk58 entities: @@ -131217,6 +125301,18 @@ entities: - type: Transform pos: 33.5,-31.5 parent: 2 + - uid: 6600 + components: + - type: MetaData + desc: Colt M1911 широко известен как один из самых элегантных и стреляющих пистолетов всех времен, и остается популярным после более чем столетнего срока службы. Почти все современные полуавтоматические пистолеты основаны на этой конструкции, что делает его самым известным из многих образцов огнестрельного оружия Джона Браунинга. 1911 год стал официальным оружием армии США, заменив револьверы 38-го калибра, такие как Model 10, и удерживал эту позицию до тех пор, пока в 1985 году его не заменила Beretta M9.1911-й - это оружие одинарного действия, поэтому перед выстрелом вы должны взветь курок, либо отведя его непосредственно назад, либо передернув затвор. Если курок возвращен на место и при нажатии кнопки вы видите латунь в патроннике, то он должен выстрелить хотя бы один раз, даже под разрушающим воздействием Угрозы. Начинающие стрелки часто сталкиваются со сбоями в работе "дымохода" при последующих выстрелах, когда стреляная гильза застревает в отверстии для выброса. Вы можете устранить эту неисправность, наклонив оружие и вручную передернув затвор, чтобы извлечь стреляную гильзу и вставить новую в патронник. + name: Colt M1911 + - type: Transform + parent: 1540 + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - Contraband - uid: 10208 components: - type: Transform @@ -131270,11 +125366,14 @@ entities: rot: -1.5707963267948966 rad pos: 11.918701,20.469727 parent: 16675 - - uid: 19904 +- proto: WeaponRevolverInspector + entities: + - uid: 20039 components: - type: Transform - pos: 43.754158,17.371994 - parent: 19854 + rot: 2.722713633111154 rad + pos: 21.010498,1.0280762 + parent: 17641 - proto: WeaponRifleAk entities: - uid: 3612 @@ -131282,20 +125381,22 @@ entities: - type: Transform pos: 40.483257,-24.615412 parent: 2 -- proto: WeaponRifleFoam +- proto: WeaponRifleLecter entities: - - uid: 2045 + - uid: 11907 components: - type: Transform - pos: -10.480586,-23.24086 + pos: 31.5,-27.5 parent: 2 -- proto: WeaponRifleLecter - entities: - - uid: 4545 + - uid: 11909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-27.9 + pos: 31.5,-28 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: 31.5,-28.5 parent: 2 - uid: 16862 components: @@ -131312,22 +125413,20 @@ entities: - type: Transform pos: 25.5,19.5 parent: 16200 -- proto: WeaponShotgunBlunderbuss +- proto: WeaponShotgunBulldog entities: - - uid: 4548 + - uid: 111 components: - type: Transform - pos: 33.5,-28.3 + pos: -10.503255,-23.197433 parent: 2 -- proto: WeaponShotgunDoubleBarreled +- proto: WeaponShotgunDoubleBarreledRubber entities: - - uid: 4836 + - uid: 16003 components: - type: Transform - pos: 33.5,-27.5 + pos: 49.43585,-6.1628437 parent: 2 -- proto: WeaponShotgunDoubleBarreledRubber - entities: - uid: 17040 components: - type: Transform @@ -131335,42 +125434,28 @@ entities: parent: 2 - proto: WeaponShotgunEnforcer entities: - - uid: 7620 + - uid: 13061 components: - type: Transform pos: 33.5,-27.3 parent: 2 -- proto: WeaponShotgunImprovised - entities: - - uid: 3137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.627222,63.598106 - parent: 2 - - uid: 4546 + - uid: 13066 components: - type: Transform - pos: 33.5,-28.5 + pos: 33.5,-27.5 parent: 2 - proto: WeaponShotgunKammerer entities: - - uid: 19276 + - uid: 13060 components: - type: Transform - parent: 18678 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponSniperHristov - entities: - - uid: 19277 + pos: 33.5,-28.5 + parent: 2 + - uid: 13069 components: - type: Transform - parent: 18691 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 33.5,-28.3 + parent: 2 - proto: WeaponSubMachineGunDrozd entities: - uid: 4547 @@ -131409,16 +125494,6 @@ entities: parent: 16200 - proto: WeaponTurretHostile entities: - - uid: 1360 - components: - - type: Transform - pos: -35.5,-37.5 - parent: 2 - - uid: 2785 - components: - - type: Transform - pos: -37.5,-35.5 - parent: 2 - uid: 16581 components: - type: Transform @@ -131469,13 +125544,28 @@ entities: - type: Transform pos: 18.5,21.5 parent: 16200 - - uid: 18707 +- proto: WeaponTurretNanoTrasen + entities: + - uid: 13074 components: - type: Transform - pos: 45.5,-15.5 - parent: 17590 - - type: Gun - fireRate: 3 + pos: -33.5,-35.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 - proto: WeaponTurretSyndicateBroken entities: - uid: 2825 @@ -131488,20 +125578,15 @@ entities: - type: Transform pos: -10.5,-19.5 parent: 2 - - uid: 5696 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 2 - - uid: 15709 + - uid: 5663 components: - type: Transform - pos: -33.5,-35.5 + pos: -48.5,46.5 parent: 2 - - uid: 15710 + - uid: 5696 components: - type: Transform - pos: -35.5,-42.5 + pos: 8.5,-0.5 parent: 2 - uid: 16591 components: @@ -131513,123 +125598,6 @@ entities: - type: Transform pos: 18.5,15.5 parent: 16200 -- proto: WeaponTurretSyndicateDisposable - entities: - - uid: 17381 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 17590 - - type: NpcFactionMember - factions: [] - - type: Gun - fireRate: 1 - - type: BallisticAmmoProvider - proto: PlushieLizard - - uid: 17382 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 17590 - - type: Gun - fireRate: 1 - - type: BallisticAmmoProvider - proto: PlushieLizard - - uid: 18243 - components: - - type: Transform - pos: 35.5,-7.5 - parent: 17590 - - uid: 18712 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 17590 - - uid: 18828 - components: - - type: Transform - pos: 23.5,-6.5 - parent: 17590 - - uid: 19280 - components: - - type: MetaData - name: баллистическая турель - - type: Transform - pos: 5.5,-7.5 - parent: 17590 - - uid: 19281 - components: - - type: MetaData - name: баллистическая турель - - type: Transform - pos: 5.5,-6.5 - parent: 17590 - - uid: 19545 - components: - - type: Transform - pos: 36.5,1.5 - parent: 17590 - - uid: 19906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,17.5 - parent: 19854 - - uid: 20053 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 17590 - - uid: 20054 - components: - - type: Transform - pos: 36.5,0.5 - parent: 17590 -- proto: WeaponTurretXeno - entities: - - uid: 4472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,20.5 - parent: 2 -- proto: WeaponWaterPistol - entities: - - uid: 2027 - components: - - type: Transform - parent: 2019 - - type: RandomSprite - selected: - enum.DamageStateVisualLayers.Base: - icon: '#18A2D5FF' - - type: SolutionContainerManager - solutions: null - containers: - - chamber - - type: SolutionAmmoProvider - maxShots: 10 - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - solution@chamber: !type:ContainerSlot - ent: 2028 - - type: InsideEntityStorage - - uid: 2039 - components: - - type: Transform - parent: 2036 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WebBed - entities: - - uid: 17272 - components: - - type: Transform - pos: -17.5,55.5 - parent: 2 - proto: Welder entities: - uid: 1394 @@ -131654,10 +125622,10 @@ entities: parent: 2 - proto: WeldingFuelTank entities: - - uid: 2142 + - uid: 78 components: - type: Transform - pos: -25.5,-1.5 + pos: 34.5,-20.5 parent: 2 - uid: 9466 components: @@ -131679,11 +125647,21 @@ entities: - type: Transform pos: 1.5,44.5 parent: 2 - - uid: 17086 + - uid: 19875 components: - type: Transform - pos: 24.5,8.5 - parent: 2 + pos: 11.5,26.5 + parent: 17641 + - uid: 19876 + components: + - type: Transform + pos: 14.5,26.5 + parent: 17641 + - uid: 19877 + components: + - type: Transform + pos: 15.5,27.5 + parent: 17641 - proto: WeldingFuelTankFull entities: - uid: 1733 @@ -131691,6 +125669,11 @@ entities: - type: Transform pos: 39.5,-37.5 parent: 2 + - uid: 3563 + components: + - type: Transform + pos: -45.5,41.5 + parent: 2 - uid: 3606 components: - type: Transform @@ -131701,131 +125684,119 @@ entities: - type: Transform pos: 14.5,30.5 parent: 2 - - uid: 5721 + - uid: 4455 components: - type: Transform - pos: -45.5,36.5 + pos: -74.5,32.5 parent: 2 - - uid: 7030 + - uid: 4644 components: - type: Transform - pos: -14.5,7.5 + pos: -21.5,47.5 parent: 2 - - uid: 17031 + - uid: 4836 components: - type: Transform - pos: 25.5,-39.5 + pos: -20.5,47.5 parent: 2 - - uid: 17062 + - uid: 5079 components: - type: Transform - pos: -5.5,37.5 + pos: -7.5,28.5 parent: 2 - - uid: 17074 + - uid: 5721 components: - type: Transform - pos: 7.5,33.5 + pos: -45.5,36.5 parent: 2 - - uid: 17075 + - uid: 6595 components: - type: Transform - pos: 0.5,29.5 + pos: 24.5,8.5 parent: 2 -- proto: WeldingFuelTankHighCapacity - entities: - - uid: 629 + - uid: 9213 components: - type: Transform - pos: -14.5,-25.5 + pos: -25.5,-0.5 parent: 2 -- proto: WheatSeeds - entities: - - uid: 933 + - uid: 9414 components: - type: Transform - parent: 3554 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 940 + pos: 8.5,34.5 + parent: 2 + - uid: 10199 components: - type: Transform - parent: 3554 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WhoopieCushion - entities: - - uid: 199 + pos: 9.5,46.5 + parent: 2 + - uid: 10206 components: - type: Transform - parent: 198 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1401 + pos: 19.5,40.5 + parent: 2 + - uid: 10960 components: - type: Transform - parent: 1387 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Windoor - entities: - - uid: 1964 + pos: 24.5,13.5 + parent: 2 + - uid: 17031 components: - type: Transform - pos: -3.5,48.5 + pos: 25.5,-39.5 parent: 2 -- proto: WindoorAssemblySecure - entities: - - uid: 6690 + - uid: 17062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-2.5 + pos: -5.5,37.5 parent: 2 - - uid: 11887 + - uid: 17075 components: - type: Transform - pos: -34.5,-38.5 + pos: 0.5,29.5 parent: 2 - - uid: 13991 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-37.5 + pos: -14.5,-25.5 parent: 2 -- proto: WindoorAssemblySecurePlasma - entities: - - uid: 7036 + - uid: 4456 components: - type: Transform - pos: -26.5,6.5 + pos: -47.5,34.5 parent: 2 - - uid: 7041 + - uid: 9735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,5.5 + pos: -13.5,17.5 parent: 2 - - uid: 11093 +- proto: WhoopieCushion + entities: + - uid: 1401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-42.5 + parent: 1387 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Windoor + entities: + - uid: 1964 + components: + - type: Transform + pos: -3.5,48.5 parent: 2 - - uid: 11095 + - uid: 2862 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-35.5 + pos: 18.5,14.5 parent: 2 - - uid: 11871 + - uid: 5351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-43.5 + pos: 27.5,34.5 parent: 2 - proto: WindoorCargoLocked entities: @@ -131855,6 +125826,18 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,26.5 parent: 2 + - uid: 12385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,28.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,29.5 + parent: 2 - proto: WindoorKitchenHydroponicsLocked entities: - uid: 3917 @@ -131865,30 +125848,22 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 19891 + - uid: 4233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,16.5 - parent: 19854 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 19892: - - DoorStatus: DoorBolt - - uid: 19892 + pos: 29.5,35.5 + parent: 2 + - uid: 6128 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,16.5 - parent: 19854 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 19891: - - DoorStatus: DoorBolt + pos: -28.5,5.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 2 - proto: WindoorSecureArmoryLocked entities: - uid: 3167 @@ -131932,11 +125907,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-28.5 parent: 2 - - uid: 8156 - components: - - type: Transform - pos: 26.5,-27.5 - parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: - uid: 266 @@ -131979,14 +125949,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-31.5 parent: 2 -- proto: WindoorSecureCargoLocked - entities: - - uid: 2538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-4.5 - parent: 2 - proto: WindoorSecureCentralCommandLocked entities: - uid: 16208 @@ -132033,17 +125995,6 @@ entities: - type: Transform pos: 23.5,24.5 parent: 16200 - - uid: 19376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-9.5 - parent: 17590 - - uid: 19379 - components: - - type: Transform - pos: 42.5,-4.5 - parent: 17590 - proto: WindoorSecureChemistryLocked entities: - uid: 4451 @@ -132064,54 +126015,28 @@ entities: - type: Transform pos: -35.5,-18.5 parent: 2 - - uid: 19982 + - uid: 13201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,16.5 - parent: 19951 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 19983: - - DoorStatus: DoorBolt - - uid: 19983 + rot: -1.5707963267948966 rad + pos: -37.5,-37.5 + parent: 2 + - uid: 15931 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,16.5 - parent: 19951 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 19982: - - DoorStatus: DoorBolt - - uid: 20031 + pos: -33.5,-37.5 + parent: 2 + - uid: 15934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,11.5 - parent: 20000 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 20032: - - DoorStatus: DoorBolt - - uid: 20032 + pos: -36.5,-38.5 + parent: 2 + - uid: 15935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,11.5 - parent: 20000 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 20031: - - DoorStatus: DoorBolt + pos: -34.5,-38.5 + parent: 2 - proto: WindoorSecureEngineeringLocked entities: - uid: 10207 @@ -132138,48 +126063,19 @@ entities: parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 4692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,22.5 - parent: 2 - - uid: 4701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,20.5 - parent: 2 - uid: 5258 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,15.5 parent: 2 - - uid: 19287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-13.5 - parent: 17590 - - uid: 19288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 17590 - - uid: 19289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-18.5 - parent: 17590 - - uid: 19290 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 17410 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-18.5 - parent: 17590 + pos: 31.5,10.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - uid: 2573 @@ -132194,6 +126090,12 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-2.5 parent: 2 + - uid: 9450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-2.5 + parent: 2 - proto: WindoorSecureSecurityLocked entities: - uid: 341 @@ -132240,37 +126142,34 @@ entities: - type: Transform pos: 43.5,-14.5 parent: 2 - - uid: 18295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 17590 - - uid: 18296 +- proto: WindoorSecureServiceLocked + entities: + - uid: 5145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-3.5 - parent: 17590 - - uid: 18686 + rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 2 +- proto: WindoorServiceLocked + entities: + - uid: 3067 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-3.5 - parent: 17590 - - uid: 20050 + pos: -62.5,35.5 + parent: 2 + - uid: 3174 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-3.5 - parent: 17590 -- proto: WindoorSecureServiceLocked + pos: -64.5,36.5 + parent: 2 +- proto: WindoorSyndicateLocked entities: - - uid: 5145 + - uid: 387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,36.5 + rot: 3.141592653589793 rad + pos: -68.5,33.5 parent: 2 - proto: WindoorTheatreLocked entities: @@ -132279,18 +126178,14 @@ entities: - type: Transform pos: 8.5,18.5 parent: 2 -- proto: Window - entities: - - uid: 93 + - uid: 20160 components: - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 202 - components: - - type: Transform - pos: 4.5,2.5 + rot: -1.5707963267948966 rad + pos: -24.5,4.5 parent: 2 +- proto: Window + entities: - uid: 216 components: - type: Transform @@ -132306,16 +126201,6 @@ entities: - type: Transform pos: -15.5,-6.5 parent: 2 - - uid: 344 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 2 - - uid: 345 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 2 - uid: 349 components: - type: Transform @@ -132331,11 +126216,6 @@ entities: - type: Transform pos: -14.5,-14.5 parent: 2 - - uid: 478 - components: - - type: Transform - pos: 7.5,1.5 - parent: 2 - uid: 484 components: - type: Transform @@ -132361,11 +126241,6 @@ entities: - type: Transform pos: -10.5,-4.5 parent: 2 - - uid: 840 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 2 - uid: 874 components: - type: Transform @@ -132381,11 +126256,6 @@ entities: - type: Transform pos: 27.5,1.5 parent: 2 - - uid: 962 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - uid: 1129 components: - type: Transform @@ -132401,23 +126271,6 @@ entities: - type: Transform pos: -10.5,-10.5 parent: 2 - - uid: 1174 - components: - - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 1310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,2.5 - parent: 2 - - uid: 2268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 2 - uid: 3085 components: - type: Transform @@ -132528,6 +126381,12 @@ entities: - type: Transform pos: -22.5,31.5 parent: 2 + - uid: 5361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 2 - uid: 6141 components: - type: Transform @@ -132553,40 +126412,79 @@ entities: - type: Transform pos: -34.5,35.5 parent: 2 + - uid: 8644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,8.5 + parent: 2 - uid: 9545 components: - type: Transform pos: 16.5,15.5 parent: 2 -- proto: WindowDirectional - entities: - - uid: 66 + - uid: 19878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,39.5 - parent: 2 - - uid: 658 + pos: -2.5,4.5 + parent: 17641 + - uid: 19879 + components: + - type: Transform + pos: -2.5,3.5 + parent: 17641 + - uid: 19880 + components: + - type: Transform + pos: -3.5,3.5 + parent: 17641 + - uid: 19881 + components: + - type: Transform + pos: -3.5,2.5 + parent: 17641 + - uid: 19882 + components: + - type: Transform + pos: -3.5,1.5 + parent: 17641 + - uid: 19883 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 2 - - uid: 847 + pos: 16.5,3.5 + parent: 17641 + - uid: 19884 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 2 - - uid: 871 + pos: 16.5,2.5 + parent: 17641 + - uid: 19885 components: - type: Transform - pos: 8.5,-10.5 + rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 17641 + - uid: 19886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 17641 +- proto: WindowDirectional + entities: + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,39.5 parent: 2 - - uid: 887 + - uid: 658 components: - type: Transform - pos: 24.5,5.5 + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 parent: 2 - uid: 950 components: @@ -132606,16 +126504,23 @@ entities: rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 + - uid: 2296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,35.5 + parent: 2 - uid: 2429 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,47.5 parent: 2 - - uid: 2594 + - uid: 2798 components: - type: Transform - pos: 23.5,5.5 + rot: 3.141592653589793 rad + pos: -61.5,35.5 parent: 2 - uid: 2864 components: @@ -132623,12 +126528,36 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,64.5 parent: 2 + - uid: 3104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 + - uid: 3136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 - uid: 3231 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,18.5 parent: 2 + - uid: 3278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,11.5 + parent: 2 - uid: 3986 components: - type: Transform @@ -132695,56 +126624,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,38.5 parent: 2 - - uid: 6687 - components: - - type: Transform - pos: -12.5,11.5 - parent: 2 - - uid: 6688 - components: - - type: Transform - pos: -14.5,11.5 - parent: 2 - - uid: 6689 - components: - - type: Transform - pos: -16.5,11.5 - parent: 2 - - uid: 6692 - components: - - type: Transform - pos: -17.5,12.5 - parent: 2 - - uid: 6694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 2 - - uid: 6695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,10.5 - parent: 2 - - uid: 6696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,10.5 - parent: 2 - - uid: 6699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,17.5 - parent: 2 - - uid: 6854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-39.5 - parent: 2 - uid: 7599 components: - type: Transform @@ -132762,12 +126641,6 @@ entities: - type: Transform pos: 6.5,40.5 parent: 2 - - uid: 7616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,0.5 - parent: 2 - uid: 7617 components: - type: Transform @@ -132821,95 +126694,17 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,39.5 parent: 2 - - uid: 7686 - components: - - type: Transform - pos: -37.5,-38.5 - parent: 2 - - uid: 7687 - components: - - type: Transform - pos: -32.5,-38.5 - parent: 2 - - uid: 7688 - components: - - type: Transform - pos: -38.5,-38.5 - parent: 2 - - uid: 7732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 2 - - uid: 7819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,0.5 - parent: 2 - - uid: 10057 + - uid: 9745 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-10.5 - parent: 2 - - uid: 10875 - components: - - type: Transform - pos: 7.5,1.5 - parent: 2 - - uid: 10876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 2 - - uid: 10877 - components: - - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 10878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,2.5 + pos: 12.5,29.5 parent: 2 - - uid: 10879 + - uid: 9746 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 2 - - uid: 10954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,3.5 - parent: 2 - - uid: 10962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,2.5 - parent: 2 - - uid: 10963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,3.5 - parent: 2 - - uid: 10968 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 2 - - uid: 10973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-3.5 + pos: 12.5,27.5 parent: 2 - uid: 11618 components: @@ -132933,23 +126728,11 @@ entities: - type: Transform pos: -2.5,50.5 parent: 2 - - uid: 11890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,6.5 - parent: 2 - - uid: 12072 + - uid: 12973 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,6.5 - parent: 2 - - uid: 17077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-39.5 + pos: 12.5,28.5 parent: 2 - uid: 17186 components: @@ -132971,11 +126754,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,25.5 parent: 2 - - uid: 664 - components: - - type: Transform - pos: -28.5,6.5 - parent: 2 - uid: 3857 components: - type: Transform @@ -133012,6 +126790,12 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 2 + - uid: 575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-25.5 + parent: 2 - uid: 628 components: - type: Transform @@ -133343,6 +127127,12 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-38.5 parent: 2 + - uid: 1942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 - uid: 2405 components: - type: Transform @@ -133385,21 +127175,38 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-27.5 parent: 2 - - uid: 3298 + - uid: 3298 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 2 + - uid: 4378 components: - type: Transform - pos: 29.5,-27.5 + pos: -5.5,22.5 parent: 2 - - uid: 3357 + - uid: 4415 components: - type: Transform - pos: 31.5,-29.5 + rot: 3.141592653589793 rad + pos: -5.5,24.5 parent: 2 - - uid: 3463 + - uid: 4623 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-22.5 + pos: 28.5,31.5 parent: 2 - uid: 4626 components: @@ -133407,27 +127214,29 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,16.5 parent: 2 - - uid: 4688 + - uid: 4953 components: - type: Transform - pos: -21.5,21.5 + rot: -1.5707963267948966 rad + pos: 30.5,35.5 parent: 2 - - uid: 4689 + - uid: 5003 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,21.5 + pos: 30.5,34.5 parent: 2 - - uid: 4693 + - uid: 5020 components: - type: Transform - pos: -20.5,21.5 + rot: 3.141592653589793 rad + pos: 30.5,35.5 parent: 2 - - uid: 4874 + - uid: 5077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-29.5 + rot: 1.5707963267948966 rad + pos: 28.5,33.5 parent: 2 - uid: 5146 components: @@ -133439,28 +127248,50 @@ entities: - type: Transform pos: 10.5,37.5 parent: 2 - - uid: 5287 + - uid: 5222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-13.5 + rot: 1.5707963267948966 rad + pos: 28.5,34.5 parent: 2 - - uid: 5818 + - uid: 5322 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-3.5 + pos: 28.5,32.5 parent: 2 - - uid: 6066 + - uid: 5373 components: - type: Transform - pos: 2.5,6.5 + pos: 26.5,34.5 parent: 2 - - uid: 6067 + - uid: 5445 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 + - uid: 6504 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,2.5 + pos: 26.5,32.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,31.5 parent: 2 - uid: 6693 components: @@ -133473,6 +127304,12 @@ entities: - type: Transform pos: -10.5,26.5 parent: 2 + - uid: 7334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,4.5 + parent: 2 - uid: 7665 components: - type: Transform @@ -133495,438 +127332,493 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-38.5 parent: 2 - - uid: 7948 + - uid: 7946 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-38.5 + pos: -28.5,6.5 parent: 2 - - uid: 10952 + - uid: 8166 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + pos: -37.5,-38.5 + parent: 2 + - uid: 13736 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,3.5 + pos: -34.5,-39.5 parent: 2 - - uid: 10956 + - uid: 13958 components: - type: Transform - pos: 9.5,6.5 + rot: -1.5707963267948966 rad + pos: -33.5,-39.5 parent: 2 - - uid: 10957 + - uid: 13991 components: - type: Transform - pos: 7.5,6.5 + pos: -32.5,-38.5 parent: 2 - - uid: 10958 + - uid: 13995 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - uid: 14063 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,3.5 + pos: -37.5,-39.5 parent: 2 - - uid: 10961 + - uid: 14119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-13.5 + rot: 1.5707963267948966 rad + pos: -36.5,-39.5 parent: 2 - - uid: 10967 + - uid: 14147 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 2 + - uid: 14206 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 2 + - uid: 14207 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-4.5 + pos: 59.5,-5.5 parent: 2 - - uid: 11088 + - uid: 14208 + components: + - type: Transform + pos: 59.5,-6.5 + parent: 2 + - uid: 14210 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-39.5 + pos: 58.5,-8.5 parent: 2 - - uid: 11885 + - uid: 14211 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-39.5 + pos: 59.5,-9.5 parent: 2 - - uid: 15776 + - uid: 14213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-38.5 + rot: -1.5707963267948966 rad + pos: 59.5,-6.5 parent: 2 - - uid: 16678 + - uid: 14216 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,19.5 - parent: 16200 - - uid: 19291 + pos: 59.5,-10.5 + parent: 2 + - uid: 14217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-12.5 - parent: 17590 - - uid: 19292 + rot: -1.5707963267948966 rad + pos: 59.5,-11.5 + parent: 2 + - uid: 14218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-14.5 - parent: 17590 - - uid: 19293 + rot: -1.5707963267948966 rad + pos: 59.5,-12.5 + parent: 2 + - uid: 14219 components: - type: Transform - pos: 23.5,-15.5 - parent: 17590 - - uid: 19294 + rot: -1.5707963267948966 rad + pos: 59.5,-14.5 + parent: 2 + - uid: 14221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-18.5 - parent: 17590 - - uid: 19295 + rot: -1.5707963267948966 rad + pos: 59.5,-15.5 + parent: 2 + - uid: 14223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-18.5 - parent: 17590 - - uid: 19296 + rot: -1.5707963267948966 rad + pos: 59.5,-16.5 + parent: 2 + - uid: 14228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-18.5 - parent: 17590 - - uid: 19354 + rot: -1.5707963267948966 rad + pos: 59.5,-17.5 + parent: 2 + - uid: 14232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 17590 - - uid: 19355 + rot: -1.5707963267948966 rad + pos: 59.5,-13.5 + parent: 2 + - uid: 14234 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 17590 - - uid: 19356 + pos: 58.5,-18.5 + parent: 2 + - uid: 14243 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-7.5 - parent: 17590 - - uid: 19357 + pos: 56.5,-18.5 + parent: 2 + - uid: 14244 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 17590 - - uid: 19358 + pos: 57.5,-18.5 + parent: 2 + - uid: 14245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 17590 - - uid: 19367 + rot: 1.5707963267948966 rad + pos: 55.5,-17.5 + parent: 2 + - uid: 14246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 17590 - - uid: 19368 + rot: 1.5707963267948966 rad + pos: 55.5,-15.5 + parent: 2 + - uid: 14257 components: - type: Transform - pos: 43.5,-4.5 - parent: 17590 - - uid: 19369 + rot: 1.5707963267948966 rad + pos: 55.5,-14.5 + parent: 2 + - uid: 14260 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-7.5 - parent: 17590 - - uid: 19370 + pos: 55.5,-13.5 + parent: 2 + - uid: 14261 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-5.5 - parent: 17590 - - uid: 19371 + pos: 55.5,-12.5 + parent: 2 + - uid: 14262 components: - type: Transform - pos: 41.5,-4.5 - parent: 17590 - - uid: 19372 + rot: 1.5707963267948966 rad + pos: 55.5,-16.5 + parent: 2 + - uid: 14264 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-8.5 - parent: 17590 - - uid: 19373 + pos: 55.5,-11.5 + parent: 2 + - uid: 14266 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 17590 - - uid: 19374 + pos: 55.5,-10.5 + parent: 2 + - uid: 14276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-6.5 - parent: 17590 - - uid: 19375 + rot: 1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 2 + - uid: 14278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 17590 - - uid: 19377 + rot: 1.5707963267948966 rad + pos: 55.5,-5.5 + parent: 2 + - uid: 14307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-9.5 - parent: 17590 - - uid: 19378 + rot: 1.5707963267948966 rad + pos: 55.5,-6.5 + parent: 2 + - uid: 14315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-9.5 - parent: 17590 - - uid: 19380 + pos: 55.5,-6.5 + parent: 2 + - uid: 14483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 17590 - - uid: 19381 + rot: 3.141592653589793 rad + pos: 55.5,-9.5 + parent: 2 + - uid: 15522 components: - type: Transform - pos: 38.5,-4.5 - parent: 17590 - - uid: 19382 + pos: 58.5,-6.5 + parent: 2 + - uid: 15927 components: - type: Transform - pos: 37.5,-4.5 - parent: 17590 - - uid: 19383 + rot: 3.141592653589793 rad + pos: 58.5,-8.5 + parent: 2 + - uid: 16678 components: - type: Transform - pos: 36.5,-4.5 - parent: 17590 - - uid: 19384 + rot: -1.5707963267948966 rad + pos: 26.5,19.5 + parent: 16200 + - uid: 17077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 17590 - - uid: 19385 + rot: -1.5707963267948966 rad + pos: 60.5,-8.5 + parent: 2 + - uid: 17081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-7.5 - parent: 17590 - - uid: 19386 + pos: 60.5,-6.5 + parent: 2 + - uid: 17082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-8.5 - parent: 17590 - - uid: 19387 + rot: 3.141592653589793 rad + pos: 60.5,-8.5 + parent: 2 + - uid: 17091 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-6.5 - parent: 17590 - - uid: 19388 + pos: 33.5,-25.5 + parent: 2 + - uid: 17173 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-9.5 - parent: 17590 - - uid: 19389 + pos: 31.5,-29.5 + parent: 2 +- proto: Wirecutter + entities: + - uid: 17192 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,-9.5 - parent: 17590 - - uid: 19390 + pos: -32.27801,63.992004 + parent: 2 + - uid: 18542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-9.5 - parent: 17590 - - uid: 19391 + parent: 18537 + - type: Physics + canCollide: False + - uid: 18543 components: - type: Transform - pos: 22.5,-4.5 - parent: 17590 - - uid: 19392 + parent: 18537 + - type: Physics + canCollide: False +- proto: WoodenBench + entities: + - uid: 933 components: - type: Transform - pos: 20.5,-4.5 - parent: 17590 - - uid: 19393 + rot: 3.141592653589793 rad + pos: -8.5,38.5 + parent: 2 + - uid: 940 components: - type: Transform - pos: 21.5,-4.5 - parent: 17590 - - uid: 19394 + rot: 3.141592653589793 rad + pos: -9.5,38.5 + parent: 2 + - uid: 3234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 - parent: 17590 - - uid: 19395 + rot: 3.141592653589793 rad + pos: -8.5,36.5 + parent: 2 + - uid: 3250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-7.5 - parent: 17590 - - uid: 19396 + rot: 3.141592653589793 rad + pos: -14.5,36.5 + parent: 2 + - uid: 3511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 17590 - - uid: 19397 + rot: 3.141592653589793 rad + pos: -9.5,36.5 + parent: 2 + - uid: 3554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 - parent: 17590 - - uid: 19398 + rot: 3.141592653589793 rad + pos: -12.5,36.5 + parent: 2 + - uid: 3589 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-9.5 - parent: 17590 - - uid: 19399 + pos: -8.5,37.5 + parent: 2 + - uid: 3593 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 17590 - - uid: 19400 + pos: -10.5,37.5 + parent: 2 + - uid: 3599 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-9.5 - parent: 17590 - - uid: 19401 + pos: -13.5,38.5 + parent: 2 + - uid: 3640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 17590 - - uid: 19402 + rot: 3.141592653589793 rad + pos: -9.5,37.5 + parent: 2 + - uid: 3989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 17590 - - uid: 19403 + rot: 3.141592653589793 rad + pos: -14.5,37.5 + parent: 2 + - uid: 4117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 17590 - - uid: 19404 + rot: 3.141592653589793 rad + pos: -13.5,37.5 + parent: 2 + - uid: 11088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 17590 - - uid: 19415 + rot: 3.141592653589793 rad + pos: -10.5,38.5 + parent: 2 + - uid: 11089 components: - type: Transform - pos: 17.5,-8.5 - parent: 17590 - - uid: 19416 + rot: 3.141592653589793 rad + pos: -12.5,37.5 + parent: 2 + - uid: 11090 components: - type: Transform - pos: 15.5,-8.5 - parent: 17590 - - uid: 19417 + rot: 3.141592653589793 rad + pos: -12.5,38.5 + parent: 2 + - uid: 11093 components: - type: Transform - pos: 16.5,-8.5 - parent: 17590 - - uid: 19418 + rot: 3.141592653589793 rad + pos: -14.5,38.5 + parent: 2 + - uid: 11896 components: - type: Transform - pos: 14.5,-8.5 - parent: 17590 - - uid: 19419 + rot: 3.141592653589793 rad + pos: -13.5,36.5 + parent: 2 + - uid: 13057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 17590 - - uid: 19420 + rot: 3.141592653589793 rad + pos: -10.5,36.5 + parent: 2 + - uid: 19887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 17590 - - uid: 20036 + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 17641 + - uid: 19888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 17590 - - uid: 20045 + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 17641 + - uid: 19889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 17641 + - uid: 19890 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 17590 - - uid: 20048 + pos: 0.5,3.5 + parent: 17641 + - uid: 19891 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 17590 - - uid: 20049 + pos: 0.5,2.5 + parent: 17641 +- proto: Wrench + entities: + - uid: 12441 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 17590 - - uid: 20057 + pos: -69.13867,35.88394 + parent: 2 + - uid: 18544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 17590 - - uid: 20058 + parent: 18537 + - type: Physics + canCollide: False + - uid: 18545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-11.5 - parent: 17590 -- proto: Wirecutter - entities: - - uid: 17192 + parent: 18537 + - type: Physics + canCollide: False + - uid: 18731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.27801,63.992004 - parent: 2 -- proto: WristwatchGold - entities: - - uid: 19435 + parent: 18726 + - type: Physics + canCollide: False + - uid: 18732 components: - type: Transform - pos: 15.107239,-9.43042 - parent: 17590 -- proto: XenoWardingTower - entities: - - uid: 2687 + parent: 18726 + - type: Physics + canCollide: False + - uid: 18733 components: - type: Transform - pos: 27.5,23.5 - parent: 2 - - uid: 6095 + parent: 18726 + - type: Physics + canCollide: False + - uid: 18734 components: - type: Transform - pos: 29.5,22.5 - parent: 2 + parent: 18726 + - type: Physics + canCollide: False - proto: Zipties entities: - uid: 11824 diff --git a/Resources/Maps/corvax_maus.yml b/Resources/Maps/corvax_maus.yml index 09132f79b19..0f2d5a0b45c 100644 --- a/Resources/Maps/corvax_maus.yml +++ b/Resources/Maps/corvax_maus.yml @@ -14,6 +14,8 @@ tilemap: 10: FloorAsteroidSandUnvariantized 11: FloorAsteroidTile 12: FloorAstroGrass + 128: FloorAstroIce + 115: FloorAstroSnow 102: FloorBasalt 76: FloorBlue 17: FloorBlueCircuit @@ -77,6 +79,7 @@ tilemap: 113: FloorShuttleRed 89: FloorShuttleWhite 123: FloorSilver + 127: FloorSnowDug 93: FloorSteel 94: FloorSteelBurnt 95: FloorSteelCheckerDark @@ -159,7 +162,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 @@ -171,7 +174,7 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: HwAAAAACJwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJwAAAAADHwAAAAADHwAAAAACHwAAAAACJgAAAAABJgAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAABcAAAAAADNgAAAAAAfgAAAAAABwAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJgAAAAACHwAAAAABKAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAADNgAAAAACfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAAAKAAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAJAAAAAADJAAAAAADJAAAAAABJAAAAAAAJgAAAAACJgAAAAABJgAAAAABJgAAAAACJgAAAAACJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAJgAAAAAAfgAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAABEgAAAAABKgAAAAADKgAAAAACfgAAAAAAbAAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAABwAAAAAABwAAAAAAHgAAAAACHgAAAAABKgAAAAABKgAAAAABfgAAAAAAbAAAAAAANgAAAAABNgAAAAACHwAAAAADfgAAAAAAKAAAAAACHwAAAAACKAAAAAACfgAAAAAABwAAAAAAAAAAAAAAEgAAAAADEgAAAAABEgAAAAABHgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABfgAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAACJwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJwAAAAADHwAAAAADHwAAAAACHwAAAAACJgAAAAABJgAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAABcAAAAAADNgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJgAAAAACHwAAAAABKAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAADNgAAAAACfgAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAAAKAAAAAADfgAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAJAAAAAADJAAAAAADJAAAAAABJAAAAAAAJgAAAAACJgAAAAABJgAAAAABJgAAAAACJgAAAAACJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAJgAAAAAAfgAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAABEgAAAAABKgAAAAADKgAAAAACfgAAAAAAbAAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAHgAAAAACHgAAAAABKgAAAAABKgAAAAABfgAAAAAAbAAAAAAANgAAAAABNgAAAAACHwAAAAADfgAAAAAAKAAAAAACHwAAAAACKAAAAAACfgAAAAAAcwAAAAAAAAAAAAAAEgAAAAADEgAAAAABEgAAAAABHgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABfgAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 @@ -179,11 +182,11 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWwAAAAAAWwAAAAACIwAAAAABfAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAABegAAAAADIwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAJCQAAAAAKfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWwAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJgAAAAACJgAAAAACJgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJgAAAAABJgAAAAADJgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAWwAAAAACegAAAAADJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAACQAAAAAACQAAAAAAAAAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAAAMwAAAAABMwAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABMwAAAAACMwAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAALAAAAAADAQAAAAAALAAAAAADfgAAAAAAXQAAAAABIAAAAAABJAAAAAABJAAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAAXQAAAAAAIgAAAAAAIgAAAAACIgAAAAACIgAAAAAAIgAAAAABJAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAABIAAAAAACJAAAAAADJAAAAAADJAAAAAABIgAAAAADJAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWwAAAAAAWwAAAAACIwAAAAABfAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAABegAAAAADIwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWwAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJgAAAAACJgAAAAACJgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJgAAAAABJgAAAAADJgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAWwAAAAACegAAAAADJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAAAMwAAAAABMwAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABMwAAAAACMwAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAALAAAAAADAQAAAAAALAAAAAADfgAAAAAAXQAAAAABIAAAAAABJAAAAAABJAAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAAXQAAAAAAIgAAAAAAIgAAAAACIgAAAAACIgAAAAAAIgAAAAABJAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAABIAAAAAACJAAAAAADJAAAAAADJAAAAAABIgAAAAADJAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAXQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: JAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAABHwAAAAAAJwAAAAABHwAAAAADHwAAAAADJwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAACJAAAAAAAfgAAAAAAJAAAAAADJAAAAAACJAAAAAADHwAAAAACHwAAAAADHwAAAAACJwAAAAAAHwAAAAACHwAAAAABJwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAABfgAAAAAAJgAAAAADJgAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAAAfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAJAAAAAAAfgAAAAAAHwAAAAABHwAAAAACBwAAAAAAfgAAAAAAHgAAAAAAEgAAAAACNgAAAAACEgAAAAADNgAAAAACfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAJAAAAAAAfgAAAAAAJgAAAAABJgAAAAADBwAAAAAAfgAAAAAAEgAAAAADNgAAAAABNgAAAAADEgAAAAABEgAAAAADfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAVgAAAAAAfgAAAAAAJgAAAAACJgAAAAAABwAAAAAAfgAAAAAANgAAAAABEgAAAAABEgAAAAACEgAAAAAAEgAAAAAAfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAVgAAAAAAfgAAAAAAJgAAAAADJgAAAAACBwAAAAAAfgAAAAAAHgAAAAABHgAAAAACNgAAAAAAEgAAAAABEgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACBwAAAAAIfgAAAAAAEgAAAAAAEgAAAAAAHgAAAAABNgAAAAACNgAAAAACfgAAAAAABwAAAAAMfgAAAAAAEgAAAAABEgAAAAABEgAAAAACEgAAAAABEgAAAAADHgAAAAACfQAAAAAAfgAAAAAAHgAAAAADNgAAAAADNgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAHgAAAAACEgAAAAADEgAAAAAAHgAAAAADHgAAAAABEgAAAAADfQAAAAAAfgAAAAAAEgAAAAABHgAAAAAAEgAAAAAAEgAAAAAAHgAAAAACfgAAAAAABwAAAAACfgAAAAAAEgAAAAACHgAAAAACEgAAAAACEgAAAAADEgAAAAABEgAAAAADfQAAAAAAfgAAAAAAHgAAAAACNgAAAAACHgAAAAADEgAAAAADHgAAAAACfgAAAAAABwAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAACfQAAAAAAfgAAAAAANgAAAAABEgAAAAADHgAAAAAAEgAAAAACEgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAbgAAAAADGAAAAAAAGAAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAABEgAAAAABHgAAAAADfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbgAAAAAAGAAAAAAAfgAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAKBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: JAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAABHwAAAAAAJwAAAAABHwAAAAADHwAAAAADJwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAACJAAAAAAAfgAAAAAAJAAAAAADJAAAAAACJAAAAAADHwAAAAACHwAAAAADHwAAAAACJwAAAAAAHwAAAAACHwAAAAABJwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAABfgAAAAAAJgAAAAADJgAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAAAfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAJAAAAAAAfgAAAAAAHwAAAAABHwAAAAACcwAAAAAAfgAAAAAAHgAAAAAAEgAAAAACNgAAAAACEgAAAAADNgAAAAACfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAJAAAAAAAfgAAAAAAJgAAAAABJgAAAAADcwAAAAAAfgAAAAAAEgAAAAADNgAAAAABNgAAAAADEgAAAAABEgAAAAADfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAVgAAAAAAfgAAAAAAJgAAAAACJgAAAAAAcwAAAAAAfgAAAAAANgAAAAABEgAAAAABEgAAAAACEgAAAAAAEgAAAAAAfgAAAAAAVgAAAAAASQAAAAAAHwAAAAAASQAAAAAAVgAAAAAAfgAAAAAAJgAAAAADJgAAAAACcwAAAAAAfgAAAAAAHgAAAAABHgAAAAACNgAAAAAAEgAAAAABEgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACcwAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAHgAAAAABNgAAAAACNgAAAAACfgAAAAAAcwAAAAAAfgAAAAAAEgAAAAABEgAAAAABEgAAAAACEgAAAAABEgAAAAADHgAAAAACfQAAAAAAfgAAAAAAHgAAAAADNgAAAAADNgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAcwAAAAAAfgAAAAAAHgAAAAACEgAAAAADEgAAAAAAHgAAAAADHgAAAAABEgAAAAADfQAAAAAAfgAAAAAAEgAAAAABHgAAAAAAEgAAAAAAEgAAAAAAHgAAAAACfgAAAAAAcwAAAAAAfgAAAAAAEgAAAAACHgAAAAACEgAAAAACEgAAAAADEgAAAAABEgAAAAADfQAAAAAAfgAAAAAAHgAAAAACNgAAAAACHgAAAAADEgAAAAADHgAAAAACfgAAAAAAcwAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAACfQAAAAAAfgAAAAAANgAAAAABEgAAAAADHgAAAAAAEgAAAAACEgAAAAAAfgAAAAAAcwAAAAAAfgAAAAAAbgAAAAADGAAAAAAAGAAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAABEgAAAAABHgAAAAADfgAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbgAAAAAAGAAAAAAAfgAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAA version: 6 -2,-1: ind: -2,-1 @@ -191,23 +194,23 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: IAAAAAABfgAAAAAANgAAAAACEgAAAAACNgAAAAACNgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABJAAAAAABJAAAAAAAJAAAAAADJAAAAAAAIAAAAAACfgAAAAAANgAAAAACTgAAAAADTgAAAAADNgAAAAACfgAAAAAACgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADJAAAAAAAJAAAAAACJAAAAAACJAAAAAAAIAAAAAADfgAAAAAAEgAAAAACTgAAAAAATgAAAAADNgAAAAAAfgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAACfgAAAAAAEgAAAAAATgAAAAACTgAAAAADNgAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAACfgAAAAAAEgAAAAAANgAAAAABEgAAAAABEgAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACgAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAALCgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFCgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA + tiles: IAAAAAABfgAAAAAANgAAAAACEgAAAAACNgAAAAACNgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABJAAAAAABJAAAAAAAJAAAAAADJAAAAAAAIAAAAAACfgAAAAAANgAAAAACTgAAAAADTgAAAAADNgAAAAACfgAAAAAACgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADJAAAAAAAJAAAAAACJAAAAAACJAAAAAAAIAAAAAADfgAAAAAAEgAAAAACTgAAAAAATgAAAAADNgAAAAAAfgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAACfgAAAAAAEgAAAAAATgAAAAACTgAAAAADNgAAAAADfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfwAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIAAAAAACfgAAAAAAEgAAAAAANgAAAAABEgAAAAABEgAAAAACfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABawAAAAABJAAAAAABfgAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAfgAAAAAAIAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACawAAAAAAJAAAAAADfgAAAAAABwAAAAAACgAAAAAABwAAAAAICgAAAAAAfgAAAAAAIAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAawAAAAADJAAAAAADfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAIAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAawAAAAAAJAAAAAADfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAIAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAIAAAAAACLwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAANgAAAAACHgAAAAACEgAAAAACfgAAAAAACgAAAAAACgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAHgAAAAACEgAAAAABHgAAAAABfgAAAAAACgAAAAAACgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAADNgAAAAAANgAAAAADNgAAAAAAfgAAAAAABQAAAAAIBQAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAEgAAAAAANgAAAAACEgAAAAABfgAAAAAABQAAAAALCQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAHgAAAAABEgAAAAABHgAAAAAAfgAAAAAABQAAAAAECQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAMBwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAABBwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAFBwAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAIfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAKCQAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABawAAAAABJAAAAAABfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAIAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACawAAAAAAJAAAAAADfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAIAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAawAAAAADJAAAAAADfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAIAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAawAAAAAAJAAAAAADfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAIAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAIAAAAAACLwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAANgAAAAACHgAAAAACEgAAAAACfgAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAHgAAAAACEgAAAAABHgAAAAABfgAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAADNgAAAAAANgAAAAADNgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAEgAAAAAANgAAAAACEgAAAAABfgAAAAAAfwAAAAAAcwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAAAHgAAAAABEgAAAAABHgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAMgAAAAABMgAAAAACMgAAAAABHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADHwAAAAADfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAJAAAAAACHwAAAAADXQAAAAAAHwAAAAAAHwAAAAABRAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAACJgAAAAADJgAAAAACJgAAAAACHwAAAAABXQAAAAADHwAAAAADfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAJAAAAAAAJAAAAAADJgAAAAAAJAAAAAADJAAAAAAAJAAAAAAAHwAAAAAAXQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABHwAAAAADfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAALwAAAAAAJAAAAAABTgAAAAADJAAAAAACLwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAADfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAALwAAAAAATgAAAAACJAAAAAADTgAAAAAALwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAADfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAALwAAAAAAJAAAAAADTgAAAAABJAAAAAADLwAAAAAAfgAAAAAAHwAAAAABXQAAAAACHwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAADIQAAAAABIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAGAAAAAAAfgAAAAAAIQAAAAABIQAAAAADIQAAAAAAIQAAAAADIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAATQAAAAAAIQAAAAAAGAAAAAAAfgAAAAAAIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAIQAAAAABGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATQAAAAAAIQAAAAADIQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAawAAAAAAawAAAAABJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADHwAAAAADfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAJAAAAAACHwAAAAADXQAAAAAAHwAAAAAAHwAAAAABRAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAACJgAAAAADJgAAAAACJgAAAAACHwAAAAABXQAAAAADHwAAAAADfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAJAAAAAAAJAAAAAADJgAAAAAAJAAAAAADJAAAAAAAJAAAAAAAHwAAAAAAXQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABHwAAAAADfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAALwAAAAAAJAAAAAABTgAAAAADJAAAAAACLwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAADfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAALwAAAAAATgAAAAACJAAAAAADTgAAAAAALwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAADfgAAAAAAGAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGAAAAAAAfgAAAAAALwAAAAAAJAAAAAADTgAAAAABJAAAAAADLwAAAAAAfgAAAAAAHwAAAAABXQAAAAACHwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAADIQAAAAABIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAGAAAAAAAfgAAAAAAIQAAAAABIQAAAAADIQAAAAAAIQAAAAADIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAATQAAAAAAIQAAAAAAGAAAAAAAfgAAAAAAIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAIQAAAAABGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATQAAAAAAIQAAAAADIQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAawAAAAAAawAAAAABJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAA version: 6 -5,0: ind: -5,0 - tiles: KwAAAAAABAAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAABAAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAKfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: KwAAAAAABAAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAABAAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: HwAAAAABHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADNAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAABHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACdQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADdQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 @@ -215,19 +218,19 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: awAAAAADawAAAAACawAAAAAAawAAAAADawAAAAAAawAAAAABawAAAAABawAAAAABawAAAAADawAAAAAAawAAAAACawAAAAABawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAAAIQAAAAACGAAAAAAAGAAAAAAAXQAAAAACXQAAAAABfAAAAAAAWwAAAAACfAAAAAACWwAAAAABfAAAAAACWwAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACEgAAAAADbAAAAAAAGAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAIBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAKBwAAAAAHfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: awAAAAADawAAAAACawAAAAAAawAAAAADawAAAAAAawAAAAABawAAAAABawAAAAABawAAAAADawAAAAAAawAAAAACawAAAAABawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAAAIQAAAAACGAAAAAAAGAAAAAAAXQAAAAACXQAAAAABfAAAAAAAWwAAAAACfAAAAAACWwAAAAABfAAAAAACWwAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACEgAAAAADbAAAAAAAGAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: CgAAAAAACgAAAAAACgAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAbAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAaAAAAAABaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABEgAAAAAAbAAAAAAAGAAAAAAAIQAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAABIQAAAAACIQAAAAADIQAAAAAAIQAAAAADIQAAAAADIQAAAAACIQAAAAABbAAAAAAAbAAAAAAA + tiles: cwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAbAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAaAAAAAABaAAAAAACaAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABEgAAAAAAbAAAAAAAGAAAAAAAIQAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAABIQAAAAACIQAAAAADIQAAAAAAIQAAAAADIQAAAAADIQAAAAACIQAAAAABbAAAAAAAbAAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: fgAAAAAAfgAAAAAAEgAAAAADEgAAAAAAEgAAAAABEgAAAAAARgAAAAAARAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAANgAAAAACEgAAAAABNgAAAAAANgAAAAAANgAAAAACRgAAAAAARgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAADEgAAAAABHgAAAAAARAAAAAAARAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAACHgAAAAADEgAAAAABRAAAAAAARgAAAAAANgAAAAADNgAAAAAAEgAAAAADfgAAAAAAGAAAAAAAfgAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAABHgAAAAACEgAAAAADRAAAAAAARgAAAAAAEgAAAAAAHgAAAAACNgAAAAAANgAAAAACGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARgAAAAAARAAAAAAANgAAAAABNgAAAAAAEgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAARAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAABHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAMwAAAAACMwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAVQAAAAADHwAAAAAAfgAAAAAAbAAAAAAAGAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAMwAAAAACVQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAMwAAAAACVQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAVQAAAAADXQAAAAADVQAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAVQAAAAAAXQAAAAADVQAAAAAAXQAAAAACXQAAAAAAXQAAAAACIQAAAAABIQAAAAAAHwAAAAACHwAAAAABHwAAAAACSgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAABVQAAAAACXQAAAAACXQAAAAABXQAAAAACIQAAAAABIQAAAAACHwAAAAAAHwAAAAADHwAAAAAASgAAAAABfgAAAAAAdAAAAAADdAAAAAABfgAAAAAAVQAAAAAAXQAAAAABVQAAAAACNQAAAAACcAAAAAADXQAAAAAAIQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAAASgAAAAADfgAAAAAAdAAAAAACdAAAAAAAfgAAAAAAVQAAAAAAMwAAAAAAVQAAAAADNQAAAAAAcAAAAAABXQAAAAAAIQAAAAAAfgAAAAAAawAAAAAAawAAAAADIQAAAAAA + tiles: fgAAAAAAfgAAAAAAEgAAAAADEgAAAAAAEgAAAAABEgAAAAAARgAAAAAARAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAAcwAAAAAAcwAAAAAAfgAAAAAANgAAAAACEgAAAAABNgAAAAAANgAAAAAANgAAAAACRgAAAAAARgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAADEgAAAAABHgAAAAAARAAAAAAARAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAACHgAAAAADEgAAAAABRAAAAAAARgAAAAAANgAAAAADNgAAAAAAEgAAAAADfgAAAAAAGAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAARAAAAAAAEgAAAAABHgAAAAACEgAAAAADRAAAAAAARgAAAAAAEgAAAAAAHgAAAAACNgAAAAAANgAAAAACGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARgAAAAAARAAAAAAANgAAAAABNgAAAAAAEgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAARAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAABHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAMwAAAAACMwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAVQAAAAADHwAAAAAAfgAAAAAAbAAAAAAAGAAAAAAAGAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAMwAAAAACVQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAMwAAAAACVQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAVQAAAAADXQAAAAADVQAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAVQAAAAAAXQAAAAADVQAAAAAAXQAAAAACXQAAAAAAXQAAAAACIQAAAAABIQAAAAAAHwAAAAACHwAAAAABHwAAAAACcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAABVQAAAAACXQAAAAACXQAAAAABXQAAAAACIQAAAAABIQAAAAACHwAAAAAAHwAAAAADHwAAAAAAcwAAAAAAfgAAAAAAdAAAAAADdAAAAAABfgAAAAAAVQAAAAAAXQAAAAABVQAAAAACdQAAAAAAcAAAAAADXQAAAAAAIQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAcwAAAAAAfgAAAAAAdAAAAAACdAAAAAAAfgAAAAAAVQAAAAAAMwAAAAAAVQAAAAADdQAAAAAAcAAAAAABXQAAAAAAIQAAAAAAfgAAAAAAawAAAAAAawAAAAADIQAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAICgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAARgAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAARgAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARgAAAAAAfgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARgAAAAAARAAAAAAAfgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARgAAAAAARgAAAAAARAAAAAAARAAAAAAAfgAAAAAARAAAAAAARgAAAAAARAAAAAAAfgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAARgAAAAAARAAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAAfgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARgAAAAAARAAAAAAAfgAAAAAARAAAAAAARgAAAAAARAAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAARgAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAARgAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARgAAAAAAfgAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARgAAAAAARAAAAAAAfgAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARgAAAAAARgAAAAAARAAAAAAARAAAAAAAfgAAAAAARAAAAAAARgAAAAAARAAAAAAAfgAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAARgAAAAAARAAAAAAAfgAAAAAARAAAAAAARAAAAAAARAAAAAAAfgAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARgAAAAAARAAAAAAAfgAAAAAARAAAAAAARgAAAAAARAAAAAAAfgAAAAAACgAAAAAAcwAAAAAAcwAAAAAA version: 6 -5,-1: ind: -5,-1 @@ -235,11 +238,11 @@ entities: version: 6 -3,-5: ind: -3,-5 - tiles: OgAAAAAAPQAAAAAAPQAAAAAAOwAAAAAAOgAAAAABOgAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAADJQAAAAAAJQAAAAAAHwAAAAACfgAAAAAAMgAAAAAAMgAAAAADOwAAAAADPQAAAAACPQAAAAADOgAAAAABOwAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAJAAAAAABJQAAAAAAJQAAAAAAJAAAAAABfgAAAAAAMgAAAAABMgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAJQAAAAAAJQAAAAAAJAAAAAABfgAAAAAAMgAAAAADMgAAAAADdQAAAAAAdQAAAAADHAAAAAABdQAAAAACdQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJQAAAAAAJQAAAAAAJAAAAAAAfgAAAAAAMgAAAAABMgAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADJQAAAAAAJQAAAAAAJAAAAAABfgAAAAAAMgAAAAADMgAAAAADdQAAAAAAdQAAAAACHAAAAAABdQAAAAABdQAAAAAAfgAAAAAAJAAAAAABJAAAAAAAfgAAAAAAJAAAAAACJQAAAAAAJQAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADJQAAAAAAJQAAAAAAKAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJgAAAAAAHwAAAAAAJwAAAAACJwAAAAAAJwAAAAACHwAAAAACJwAAAAAAJwAAAAABHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADJgAAAAABHwAAAAAAJwAAAAACJwAAAAAAJwAAAAACHwAAAAACJwAAAAABJwAAAAAAHwAAAAAAHwAAAAACJwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABJgAAAAAAHwAAAAABHwAAAAADeQAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABJgAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAABJAAAAAAAJgAAAAADfgAAAAAA + tiles: OgAAAAAAPQAAAAAAPQAAAAAAOwAAAAAAOgAAAAABOgAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAADJQAAAAAAJQAAAAAAHwAAAAACfgAAAAAAcwAAAAAAcwAAAAAAOwAAAAADPQAAAAACPQAAAAADOgAAAAABOwAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAJAAAAAABJQAAAAAAJQAAAAAAJAAAAAABfgAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAJQAAAAAAJQAAAAAAJAAAAAABfgAAAAAAcwAAAAAAcwAAAAAAdQAAAAAAdQAAAAADHAAAAAABdQAAAAACdQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJQAAAAAAJQAAAAAAJAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADJQAAAAAAJQAAAAAAJAAAAAABfgAAAAAAcwAAAAAAcwAAAAAAdQAAAAAAdQAAAAACHAAAAAABdQAAAAABdQAAAAAAfgAAAAAAJAAAAAABJAAAAAAAfgAAAAAAJAAAAAACJQAAAAAAJQAAAAAAJAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADJQAAAAAAJQAAAAAAKAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJgAAAAAAHwAAAAAAJwAAAAACJwAAAAAAJwAAAAACHwAAAAACJwAAAAAAJwAAAAABHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADJgAAAAABHwAAAAAAJwAAAAACJwAAAAAAJwAAAAACHwAAAAACJwAAAAABJwAAAAAAHwAAAAAAHwAAAAACJwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABJgAAAAAAHwAAAAABHwAAAAADeQAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABJgAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAABJAAAAAAAJgAAAAADfgAAAAAA version: 6 -3,-6: ind: -3,-6 - tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAHwAAAAACHwAAAAADBAAAAAAABAAAAAAABAAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAJAAAAAACJAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAACgAAAAAACgAAAAAAfgAAAAAAJAAAAAABJAAAAAACHwAAAAAAHwAAAAABHwAAAAADGQAAAAADHwAAAAAAGQAAAAADHwAAAAACGQAAAAACHwAAAAAAGQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAABHwAAAAACGQAAAAABHwAAAAABGQAAAAACHwAAAAACGQAAAAADCgAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADCgAAAAAAJgAAAAADJgAAAAAAJgAAAAABfgAAAAAAJgAAAAAAJgAAAAAAJgAAAAABfgAAAAAAHwAAAAACGQAAAAABGQAAAAACQgAAAAAAQgAAAAAAJwAAAAAAHwAAAAABCgAAAAAAJwAAAAACJwAAAAABJwAAAAABJwAAAAAAJwAAAAACJwAAAAACJwAAAAACJwAAAAACHwAAAAAAJwAAAAAAJwAAAAABQgAAAAAAQgAAAAAAJwAAAAAAHwAAAAABCgAAAAAAJgAAAAADJgAAAAADJgAAAAABfgAAAAAAJgAAAAADJgAAAAAAJgAAAAABfgAAAAAAHwAAAAABJwAAAAABJwAAAAADQgAAAAAAQgAAAAAAJwAAAAADHwAAAAAACgAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAJwAAAAABJwAAAAACQgAAAAAAQgAAAAAAJwAAAAADHwAAAAACCgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAJwAAAAABHwAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAJwAAAAAAHwAAAAACCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAJwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAPQAAAAABPQAAAAADOgAAAAACOwAAAAAAfgAAAAAAJAAAAAABJAAAAAABfgAAAAAAJAAAAAACJQAAAAAAJQAAAAAAJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAA + tiles: cwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAHwAAAAACHwAAAAADBAAAAAAABAAAAAAABAAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAABAAAAAAABAAAAAAABAAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAJAAAAAACJAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAJAAAAAABJAAAAAACHwAAAAAAHwAAAAABHwAAAAADGQAAAAADHwAAAAAAGQAAAAADHwAAAAACGQAAAAACHwAAAAAAGQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAABHwAAAAACGQAAAAABHwAAAAABGQAAAAACHwAAAAACGQAAAAADfgAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAJgAAAAADJgAAAAAAJgAAAAABfgAAAAAAJgAAAAAAJgAAAAAAJgAAAAABfgAAAAAAHwAAAAACGQAAAAABGQAAAAACQgAAAAAAQgAAAAAAJwAAAAAAHwAAAAABfgAAAAAAJwAAAAACJwAAAAABJwAAAAABJwAAAAAAJwAAAAACJwAAAAACJwAAAAACJwAAAAACHwAAAAAAJwAAAAAAJwAAAAABQgAAAAAAQgAAAAAAJwAAAAAAHwAAAAABfgAAAAAAJgAAAAADJgAAAAADJgAAAAABfgAAAAAAJgAAAAADJgAAAAAAJgAAAAABfgAAAAAAHwAAAAABJwAAAAABJwAAAAADQgAAAAAAQgAAAAAAJwAAAAADHwAAAAAAfgAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAJwAAAAABJwAAAAACQgAAAAAAQgAAAAAAJwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAJwAAAAABHwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAJwAAAAAAHwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAJwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAPQAAAAABPQAAAAADOgAAAAACOwAAAAAAfgAAAAAAJAAAAAABJAAAAAABfgAAAAAAJAAAAAACJQAAAAAAJQAAAAAAJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAA version: 6 -2,-6: ind: -2,-6 @@ -247,39 +250,39 @@ entities: version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfgAAAAAAOgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACgAAAAAAfgAAAAAAOwAAAAABAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAAfgAAAAAAdQAAAAACfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABJQAAAAAAUQAAAAAAUQAAAAACfgAAAAAAVAAAAAADVAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAfgAAAAAAOgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcwAAAAAAfgAAAAAAOwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAAfgAAAAAAdQAAAAACfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABJQAAAAAAUQAAAAAAUQAAAAACfgAAAAAAVAAAAAADVAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAA version: 6 -5,-5: ind: -5,-5 - tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAACEgAAAAAANgAAAAABNgAAAAABHgAAAAACNgAAAAADNgAAAAADNgAAAAAANgAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAEgAAAAAANgAAAAABHgAAAAACHgAAAAABNgAAAAABEgAAAAAANgAAAAAANgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAACNgAAAAADHgAAAAABEgAAAAABHgAAAAADEgAAAAADEgAAAAABNgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABNgAAAAACNgAAAAACNgAAAAAAEgAAAAAAEgAAAAAANgAAAAACEgAAAAABNgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAANgAAAAAAEgAAAAACHgAAAAABHgAAAAABNgAAAAABNgAAAAAAEgAAAAACNgAAAAACNgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADfgAAAAAASwAAAAAAfgAAAAAANgAAAAAAfgAAAAAANgAAAAACNgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAASwAAAAACSwAAAAADFQAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAGAAAAAAAegAAAAACFQAAAAADegAAAAABNgAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFQAAAAABFQAAAAAFFQAAAAABHgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAADHgAAAAADNgAAAAACNgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAACgAAAAAAfgAAAAAAFQAAAAACDQAAAAAANgAAAAACNgAAAAABNgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAMwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAJgAAAAADJgAAAAABJgAAAAACUgAAAAAAfgAAAAAAXAAAAAACXAAAAAADQAAAAAAAfgAAAAAAEgAAAAABNgAAAAAANgAAAAACfgAAAAAAbAAAAAAAfgAAAAAAJgAAAAADJgAAAAABJgAAAAABJgAAAAAC + tiles: cwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAACEgAAAAAANgAAAAABNgAAAAABHgAAAAACNgAAAAADNgAAAAADNgAAAAAANgAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAEgAAAAAANgAAAAABHgAAAAACHgAAAAABNgAAAAABEgAAAAAANgAAAAAANgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAACNgAAAAADHgAAAAABEgAAAAABHgAAAAADEgAAAAADEgAAAAABNgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABNgAAAAACNgAAAAACNgAAAAAAEgAAAAAAEgAAAAAANgAAAAACEgAAAAABNgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAANgAAAAAAEgAAAAACHgAAAAABHgAAAAABNgAAAAABNgAAAAAAEgAAAAACNgAAAAACNgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADfgAAAAAASwAAAAAAfgAAAAAANgAAAAAAfgAAAAAANgAAAAACNgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAASwAAAAACSwAAAAADFQAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAGAAAAAAAegAAAAACFQAAAAADegAAAAABNgAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFQAAAAABFQAAAAAFFQAAAAABHgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAADHgAAAAADNgAAAAACNgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcwAAAAAAfgAAAAAAFQAAAAACDQAAAAAANgAAAAACNgAAAAABNgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAMwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAJgAAAAADJgAAAAABJgAAAAACUgAAAAAAfgAAAAAAXAAAAAACXAAAAAADQAAAAAAAfgAAAAAAEgAAAAABNgAAAAAANgAAAAACfgAAAAAAbAAAAAAAfgAAAAAAJgAAAAADJgAAAAABJgAAAAABJgAAAAAC version: 6 -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAACQAAAAAACQAAAAABCgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAbAAAAAAAGAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAGAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAJAAAAAABHwAAAAADJAAAAAABfgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAJQAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABJQAAAAAAHwAAAAAAHwAAAAADfgAAAAAAUgAAAAADUgAAAAADUwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAbAAAAAAAGAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAGAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAJAAAAAABHwAAAAADJAAAAAABfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAJQAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABJQAAAAAAHwAAAAAAHwAAAAADfgAAAAAAUgAAAAADUgAAAAADUwAAAAAC version: 6 -6,-4: ind: -6,-4 - tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAABJQAAAAAAJAAAAAABJAAAAAABfgAAAAAAUgAAAAAAUgAAAAACUwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADJQAAAAAAHwAAAAADHwAAAAADfgAAAAAAUgAAAAABUgAAAAACUwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAJQAAAAAAHwAAAAACHwAAAAACfgAAAAAAUgAAAAABUgAAAAABUwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAACJAAAAAACJQAAAAAAJAAAAAAAJAAAAAABfgAAAAAAUgAAAAADUgAAAAABUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAACMwAAAAACMwAAAAABMwAAAAABJwAAAAACHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAAAHwAAAAAAXQAAAAADXQAAAAABHwAAAAACVQAAAAAAVQAAAAABVQAAAAADJgAAAAAAJgAAAAADJgAAAAAAJwAAAAACJgAAAAADJgAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACMwAAAAABMwAAAAADMwAAAAABJwAAAAAAHwAAAAABHwAAAAAAHwAAAAABXQAAAAAAXQAAAAABHwAAAAADXQAAAAAAXQAAAAADHwAAAAABVQAAAAACVQAAAAABVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAAICQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAbgAAAAABbgAAAAABbgAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAACJAAAAAABJQAAAAAAJAAAAAABJAAAAAABfgAAAAAAUgAAAAAAUgAAAAACUwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADJQAAAAAAHwAAAAADHwAAAAADfgAAAAAAUgAAAAABUgAAAAACUwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAJQAAAAAAHwAAAAACHwAAAAACfgAAAAAAUgAAAAABUgAAAAABUwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAACJAAAAAACJQAAAAAAJAAAAAAAJAAAAAABfgAAAAAAUgAAAAADUgAAAAABUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAACMwAAAAACMwAAAAABMwAAAAABJwAAAAACHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAAAHwAAAAAAXQAAAAADXQAAAAABHwAAAAACVQAAAAAAVQAAAAABVQAAAAADJgAAAAAAJgAAAAADJgAAAAAAJwAAAAACJgAAAAADJgAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACMwAAAAABMwAAAAADMwAAAAABJwAAAAAAHwAAAAABHwAAAAAAHwAAAAABXQAAAAAAXQAAAAABHwAAAAADXQAAAAAAXQAAAAADHwAAAAABVQAAAAACVQAAAAABVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAbgAAAAABbgAAAAABbgAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAA version: 6 -6,-3: ind: -6,-3 - tiles: fQAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAGAAAAAAAbgAAAAABGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAACgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAICQAAAAAAbAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbgAAAAADbgAAAAACGAAAAAAAfgAAAAAAfgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAAECQAAAAAACQAAAAAACQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAADbgAAAAACGAAAAAAAfgAAAAAACQAAAAACCQAAAAAACQAAAAAFCQAAAAAGCQAAAAAACQAAAAADCQAAAAACCQAAAAAAfgAAAAAAbgAAAAACbgAAAAABGAAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAABfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADbgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAABCgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAACQAAAAAGCQAAAAADCQAAAAAACgAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAACgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAACgAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAACgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAGAAAAAAAbgAAAAABGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAbAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbgAAAAADbgAAAAACGAAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAADbgAAAAACGAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAbgAAAAACbgAAAAABGAAAAAAAGAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAABfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAbgAAAAADbgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAcwAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: fgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAKAAAAAABfgAAAAAAHwAAAAAAcAAAAAADcAAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACTgAAAAACTgAAAAACcAAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAcAAAAAABcAAAAAACHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJAAAAAACNQAAAAADNQAAAAADNQAAAAACJAAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAACXQAAAAAAXQAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADMwAAAAADMwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAJgAAAAABJgAAAAADJgAAAAABJgAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAKBwAAAAAMBwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAA + tiles: fgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAKAAAAAABfgAAAAAAHwAAAAAAcAAAAAADcAAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACTgAAAAACTgAAAAACcAAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAcAAAAAABcAAAAAACHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJAAAAAACdQAAAAAAdQAAAAAAdQAAAAAAJAAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAACXQAAAAAAXQAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADMwAAAAADMwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAJgAAAAABJgAAAAADJgAAAAABJgAAAAACfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAA version: 6 -7,-2: ind: -7,-2 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAICQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAcAAAAAAAcAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAcAAAAAADcAAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAMCQAAAAAACQAAAAAEfgAAAAAAcAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADXQAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAXQAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAcAAAAAAAcAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAcAAAAAADcAAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADXQAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAXQAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACTgAAAAAATgAAAAACTgAAAAACTgAAAAACCAAAAAABCAAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAVgAAAAADVwAAAAAAVgAAAAADVgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAADfgAAAAAAVgAAAAADVwAAAAADVgAAAAADVgAAAAADfgAAAAAAEwAAAAADEwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAACfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAfgAAAAAAMgAAAAADMgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAABEwAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAABTQAAAAAAMgAAAAABMgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABMwAAAAAAMwAAAAADXQAAAAACXQAAAAABVQAAAAAAVQAAAAADVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAABVQAAAAACVQAAAAABXQAAAAADXQAAAAADXQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABMwAAAAAAMwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAKfgAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAABBwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAARAAAAAAATgAAAAAARAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAACRAAAAAAAfgAAAAAAHwAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAACRAAAAAAAfgAAAAAAHwAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAAARAAAAAAAfgAAAAAAHwAAAAADXQAAAAAC + tiles: fgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACTgAAAAAATgAAAAACTgAAAAACTgAAAAACCAAAAAABCAAAAAAACAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAVgAAAAADVwAAAAAAVgAAAAADVgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAADfgAAAAAAVgAAAAADVwAAAAADVgAAAAADVgAAAAADfgAAAAAAEwAAAAADEwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAACfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAABEwAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAABTQAAAAAAdQAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAdQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABMwAAAAAAMwAAAAADXQAAAAACXQAAAAABVQAAAAAAVQAAAAADVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAABVQAAAAACVQAAAAABXQAAAAADXQAAAAADXQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABMwAAAAAAMwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAABBwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAARAAAAAAATgAAAAAARAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAACRAAAAAAAfgAAAAAAHwAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAACRAAAAAAAfgAAAAAAHwAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARAAAAAAATgAAAAAARAAAAAAAfgAAAAAAHwAAAAADXQAAAAAC version: 6 -2,-3: ind: -2,-3 - tiles: SgAAAAADfgAAAAAAdAAAAAABdAAAAAADfgAAAAAAVQAAAAABMwAAAAADVQAAAAACXQAAAAAAXQAAAAAAXQAAAAABIQAAAAACIQAAAAAAawAAAAAARgAAAAAARgAAAAAASgAAAAADXQAAAAAAXQAAAAAAXQAAAAAAdgAAAAAAVQAAAAAAXQAAAAACVQAAAAABXQAAAAACXQAAAAACXQAAAAABIQAAAAABIQAAAAACawAAAAADIQAAAAADIQAAAAABSgAAAAADXQAAAAAAXQAAAAAAXQAAAAAAdgAAAAAAVQAAAAAAXQAAAAAAVQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAADXQAAAAADXQAAAAACKQAAAAAAfgAAAAAAdAAAAAAAdAAAAAABfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAfgAAAAAASwAAAAABSwAAAAADSwAAAAACSwAAAAAAawAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAfgAAAAAAdAAAAAADdAAAAAACfgAAAAAAVQAAAAADXQAAAAACVQAAAAABfgAAAAAASwAAAAAASwAAAAAASwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAfgAAAAAAdAAAAAABdAAAAAABfgAAAAAAVQAAAAADXQAAAAACVQAAAAADfgAAAAAASwAAAAADSwAAAAABSwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAABMwAAAAADVQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAMwAAAAABVQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQwAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAABXQAAAAAAVQAAAAABHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQwAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACfgAAAAAAVQAAAAADXQAAAAAAVQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAADfgAAAAAAVQAAAAAAXQAAAAACVQAAAAACHwAAAAACJwAAAAADHwAAAAACegAAAAAAegAAAAACegAAAAACegAAAAAAFgAAAAAAJgAAAAABJwAAAAAAJgAAAAACJwAAAAACfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAADHwAAAAABJwAAAAAAHwAAAAACDQAAAAABDQAAAAACDQAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACVQAAAAADVQAAAAAAXQAAAAACVQAAAAADHwAAAAADJwAAAAACHwAAAAACegAAAAAADQAAAAACegAAAAACfgAAAAAAbAAAAAAAJgAAAAADJwAAAAADJgAAAAADDQAAAAACfgAAAAAAVQAAAAACMwAAAAADVQAAAAAAHwAAAAADJwAAAAAAHwAAAAABegAAAAABegAAAAADegAAAAACfgAAAAAAbAAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAABVQAAAAAAVQAAAAACMwAAAAABVQAAAAADHwAAAAADJwAAAAAAHwAAAAAADQAAAAACDQAAAAAADQAAAAAAbAAAAAAAbAAAAAAADQAAAAADegAAAAABegAAAAADegAAAAADfgAAAAAAVQAAAAADXQAAAAAAVQAAAAAAHwAAAAACJwAAAAACHwAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAbAAAAAAA + tiles: cwAAAAAAfgAAAAAAdAAAAAABdAAAAAADfgAAAAAAVQAAAAABMwAAAAADVQAAAAACXQAAAAAAXQAAAAAAXQAAAAABIQAAAAACIQAAAAAAawAAAAAARgAAAAAARgAAAAAAcwAAAAAAcwAAAAAAXQAAAAAAXQAAAAAAdgAAAAAAVQAAAAAAXQAAAAACVQAAAAABXQAAAAACXQAAAAACXQAAAAABIQAAAAABIQAAAAACawAAAAADIQAAAAADIQAAAAABcwAAAAAAcwAAAAAAXQAAAAAAXQAAAAAAdgAAAAAAVQAAAAAAXQAAAAAAVQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAADXQAAAAADXQAAAAACcwAAAAAAfgAAAAAAdAAAAAAAdAAAAAABfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAfgAAAAAASwAAAAABSwAAAAADSwAAAAACSwAAAAAAawAAAAAAXQAAAAAAfgAAAAAAcwAAAAAAfgAAAAAAdAAAAAADdAAAAAACfgAAAAAAVQAAAAADXQAAAAACVQAAAAABfgAAAAAASwAAAAAASwAAAAAASwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAfgAAAAAAdAAAAAABdAAAAAABfgAAAAAAVQAAAAADXQAAAAACVQAAAAADfgAAAAAASwAAAAADSwAAAAABSwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAABMwAAAAADVQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAMwAAAAABVQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQwAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAABXQAAAAAAVQAAAAABHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQwAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACfgAAAAAAVQAAAAADXQAAAAAAVQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAADfgAAAAAAVQAAAAAAXQAAAAACVQAAAAACHwAAAAACJwAAAAADHwAAAAACegAAAAAAegAAAAACegAAAAACegAAAAAAFgAAAAAAJgAAAAABJwAAAAAAJgAAAAACJwAAAAACfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAADHwAAAAABJwAAAAAAHwAAAAACDQAAAAABDQAAAAACDQAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACVQAAAAADVQAAAAAAXQAAAAACVQAAAAADHwAAAAADJwAAAAACHwAAAAACegAAAAAADQAAAAACegAAAAACfgAAAAAAbAAAAAAAJgAAAAADJwAAAAADJgAAAAADDQAAAAACfgAAAAAAVQAAAAACMwAAAAADVQAAAAAAHwAAAAADJwAAAAAAHwAAAAABegAAAAABegAAAAADegAAAAACfgAAAAAAbAAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAABVQAAAAAAVQAAAAACMwAAAAABVQAAAAADHwAAAAADJwAAAAAAHwAAAAAADQAAAAACDQAAAAAADQAAAAAAbAAAAAAAbAAAAAAADQAAAAADegAAAAABegAAAAADegAAAAADfgAAAAAAVQAAAAADXQAAAAAAVQAAAAAAHwAAAAACJwAAAAACHwAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAbAAAAAAA version: 6 -2,-2: ind: -2,-2 @@ -287,19 +290,19 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: GQAAAAABHwAAAAADHwAAAAACHwAAAAABJgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAJgAAAAACJgAAAAAAfgAAAAAAJgAAAAADJgAAAAAAJgAAAAABJgAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABJgAAAAADHwAAAAAAJgAAAAAAHwAAAAABJgAAAAABJgAAAAADfgAAAAAAJgAAAAABJgAAAAACJgAAAAACJgAAAAABfgAAAAAAHgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABJgAAAAABHwAAAAADHwAAAAACfgAAAAAAJgAAAAADJgAAAAABfgAAAAAAJgAAAAABJgAAAAACJgAAAAACJgAAAAABfgAAAAAAHgAAAAABHgAAAAABfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAADHgAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAACHgAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACNAAAAAACNAAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAABXQAAAAACXQAAAAABXQAAAAADMwAAAAACMwAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAMwAAAAABMwAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACVQAAAAADVQAAAAACXQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAACfgAAAAAAVQAAAAACXQAAAAAAVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAACVQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVQAAAAADXQAAAAADVQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAABVQAAAAACfgAAAAAAfQAAAAAAfgAAAAAASgAAAAABSgAAAAADSgAAAAAASgAAAAADSgAAAAADSgAAAAACSgAAAAABSgAAAAACSgAAAAACfgAAAAAAVQAAAAADMwAAAAADVQAAAAADfgAAAAAAAAAAAAAAfgAAAAAASgAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAVQAAAAABMwAAAAACVQAAAAABfgAAAAAAAAAAAAAAfgAAAAAASgAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAA + tiles: GQAAAAABHwAAAAADHwAAAAACHwAAAAABJgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAJgAAAAACJgAAAAAAfgAAAAAAJgAAAAADJgAAAAAAJgAAAAABJgAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABJgAAAAADHwAAAAAAJgAAAAAAHwAAAAABJgAAAAABJgAAAAADfgAAAAAAJgAAAAABJgAAAAACJgAAAAACJgAAAAABfgAAAAAAHgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABJgAAAAABHwAAAAADHwAAAAACfgAAAAAAJgAAAAADJgAAAAABfgAAAAAAJgAAAAABJgAAAAACJgAAAAACJgAAAAABfgAAAAAAHgAAAAABHgAAAAABfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAADHgAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHgAAAAACHgAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACaAAAAAAAaAAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAABXQAAAAACXQAAAAABXQAAAAADMwAAAAACMwAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAMwAAAAABMwAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACVQAAAAADVQAAAAACXQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAACfgAAAAAAVQAAAAACXQAAAAAAVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAACVQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVQAAAAADXQAAAAADVQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAABVQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAVQAAAAADMwAAAAADVQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAcwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfgAAAAAAVQAAAAABMwAAAAACVQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAcwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: fgAAAAAAVQAAAAABXQAAAAABVQAAAAABfgAAAAAAfgAAAAAAfgAAAAAASgAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAEKQAAAAABfgAAAAAAVQAAAAABXQAAAAACVQAAAAADVQAAAAAASgAAAAABSgAAAAAASgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAACVQAAAAABSgAAAAAASgAAAAACSgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAfgAAAAAAVQAAAAADXQAAAAACVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAfgAAAAAAVQAAAAABXQAAAAAAVQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAADfgAAAAAAVQAAAAABMwAAAAADVQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAADAAAAAACKQAAAAAEKQAAAAACKQAAAAADDAAAAAABKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAfgAAAAAAVQAAAAABMwAAAAABVQAAAAABfgAAAAAAfQAAAAAAfgAAAAAADAAAAAADKQAAAAAAKQAAAAAAKQAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAAADAAAAAADfgAAAAAAVQAAAAABXQAAAAADVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAACXQAAAAACVQAAAAACfgAAAAAAdQAAAAADdQAAAAACdQAAAAACdQAAAAACdQAAAAACdgAAAAAAdgAAAAAAJgAAAAADJgAAAAAAJgAAAAAAJgAAAAACfgAAAAAAVQAAAAAAXQAAAAABVQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAADegAAAAABegAAAAADegAAAAACegAAAAAAfgAAAAAAVQAAAAADXQAAAAADVQAAAAABPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdQAAAAADDQAAAAAADQAAAAABDQAAAAAADQAAAAADIwAAAAABVQAAAAACXQAAAAABVQAAAAACPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdQAAAAABJgAAAAABJwAAAAACJgAAAAABJwAAAAAAfgAAAAAAVQAAAAADMwAAAAADVQAAAAADPgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAADegAAAAADegAAAAACegAAAAAAegAAAAABfgAAAAAAVQAAAAABMwAAAAACVQAAAAADfgAAAAAAPAAAAAAAfgAAAAAAPAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAAAJgAAAAABJwAAAAACfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAfgAAAAAAPAAAAAAANwAAAAADPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAADQAAAAADDQAAAAABDQAAAAACfgAAAAAAVQAAAAABXQAAAAAAVQAAAAABfgAAAAAAPAAAAAAANwAAAAABPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAVQAAAAABXQAAAAABVQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfgAAAAAAVQAAAAABXQAAAAACVQAAAAADVQAAAAAASgAAAAABcwAAAAAAcwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAACVQAAAAABSgAAAAAAcwAAAAAAcwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfgAAAAAAVQAAAAADXQAAAAACVQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfwAAAAAAfgAAAAAAVQAAAAABXQAAAAAAVQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfwAAAAAAcwAAAAAAfgAAAAAAVQAAAAABMwAAAAADVQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAcwAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfwAAAAAAfgAAAAAAVQAAAAABMwAAAAABVQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAVQAAAAABXQAAAAADVQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVQAAAAACXQAAAAACVQAAAAACfgAAAAAAdQAAAAADdQAAAAACdQAAAAACdQAAAAACdQAAAAACdgAAAAAAdgAAAAAAJgAAAAADJgAAAAAAJgAAAAAAJgAAAAACfgAAAAAAVQAAAAAAXQAAAAABVQAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAADegAAAAABegAAAAADegAAAAACegAAAAAAfgAAAAAAVQAAAAADXQAAAAADVQAAAAABPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdQAAAAADDQAAAAAADQAAAAABDQAAAAAADQAAAAADIwAAAAABVQAAAAACXQAAAAABVQAAAAACPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdQAAAAABJgAAAAABJwAAAAACJgAAAAABJwAAAAAAfgAAAAAAVQAAAAADMwAAAAADVQAAAAADPgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdQAAAAADegAAAAADegAAAAACegAAAAAAegAAAAABfgAAAAAAVQAAAAABMwAAAAACVQAAAAADfgAAAAAAPAAAAAAAfgAAAAAAPAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAAAJgAAAAABJwAAAAACfgAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAfgAAAAAAPAAAAAAANwAAAAADPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAADQAAAAADDQAAAAABDQAAAAACfgAAAAAAVQAAAAABXQAAAAAAVQAAAAABfgAAAAAAPAAAAAAANwAAAAABPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAAAfgAAAAAAfgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: fgAAAAAAVQAAAAACXQAAAAABVQAAAAABPAAAAAAAPAAAAAAANwAAAAADPAAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAAANwAAAAADfgAAAAAAfgAAAAAAVQAAAAABXQAAAAABVQAAAAABfgAAAAAAPAAAAAAANwAAAAADPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAADNwAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAACVQAAAAABfgAAAAAAPAAAAAAANwAAAAAAPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAABNwAAAAADfgAAAAAAfgAAAAAAVQAAAAACXQAAAAADfgAAAAAAfgAAAAAAPAAAAAAANwAAAAADPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADegAAAAABXQAAAAABXQAAAAABXQAAAAABPAAAAAAANwAAAAABNwAAAAADNwAAAAACfgAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADMwAAAAAAMwAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABMwAAAAABMwAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABfgAAAAAAJgAAAAACfgAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAAAIQAAAAADMgAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJgAAAAADJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAMgAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJgAAAAABJQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAAAMgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABJgAAAAADJgAAAAABegAAAAABegAAAAABegAAAAACegAAAAAA + tiles: fgAAAAAAVQAAAAACXQAAAAABVQAAAAABPAAAAAAAPAAAAAAANwAAAAADPAAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAAANwAAAAADfgAAAAAAfgAAAAAAVQAAAAABXQAAAAABVQAAAAABfgAAAAAAPAAAAAAANwAAAAADPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAADNwAAAAAAfgAAAAAAfgAAAAAAVQAAAAAAXQAAAAACVQAAAAABfgAAAAAAPAAAAAAANwAAAAAAPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAANwAAAAABNwAAAAADfgAAAAAAfgAAAAAAVQAAAAACXQAAAAADfgAAAAAAfgAAAAAAPAAAAAAANwAAAAADPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADegAAAAABXQAAAAABXQAAAAABXQAAAAABPAAAAAAANwAAAAABNwAAAAADNwAAAAACfgAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADMwAAAAAAMwAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABMwAAAAABMwAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABfgAAAAAAJgAAAAACfgAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAAAIQAAAAADcwAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcwAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJgAAAAADJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJgAAAAABJQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAAAcwAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABJgAAAAADJgAAAAABegAAAAABegAAAAABegAAAAACegAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: MgAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeAAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACDQAAAAABDQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAABegAAAAAAegAAAAADegAAAAABegAAAAADegAAAAAAJgAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADDQAAAAADegAAAAAAegAAAAAAegAAAAADegAAAAABDQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAAADQAAAAABDQAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADDQAAAAABegAAAAABDQAAAAABDQAAAAABDQAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAADegAAAAADegAAAAAAegAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAJgAAAAABJgAAAAAAJgAAAAACJgAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAACIQAAAAADIQAAAAACIQAAAAADIQAAAAAAIQAAAAAAfgAAAAAAJAAAAAABJAAAAAABIAAAAAAAJAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAIQAAAAACfgAAAAAAJAAAAAAAJAAAAAACIAAAAAACJAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAIQAAAAADfgAAAAAAJAAAAAABJAAAAAAAIAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAADIQAAAAADIQAAAAABfgAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAADfgAAAAAAfgAAAAAAfgAAAAAANgAAAAACNgAAAAACfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAAAJgAAAAABJgAAAAADJgAAAAAD + tiles: cwAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeAAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACDQAAAAABDQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAABegAAAAAAegAAAAADegAAAAABegAAAAADegAAAAAAJgAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADDQAAAAADegAAAAAAegAAAAAAegAAAAADegAAAAABDQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAAADQAAAAABDQAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADDQAAAAABegAAAAABDQAAAAABDQAAAAABDQAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAADegAAAAADegAAAAAAegAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAJgAAAAABJgAAAAAAJgAAAAACJgAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIQAAAAACIQAAAAADIQAAAAACIQAAAAADIQAAAAAAIQAAAAAAfgAAAAAAJAAAAAABJAAAAAABIAAAAAAAJAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAIQAAAAACfgAAAAAAJAAAAAAAJAAAAAACIAAAAAACJAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAIQAAAAADfgAAAAAAJAAAAAABJAAAAAAAIAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAADIQAAAAADIQAAAAABfgAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAADfgAAAAAAfgAAAAAAfgAAAAAANgAAAAACNgAAAAACfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAAAJgAAAAABJgAAAAADJgAAAAAD version: 6 -4,-4: ind: -4,-4 @@ -307,15 +310,15 @@ entities: version: 6 -4,-3: ind: -4,-3 - tiles: bgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAACEgAAAAADEgAAAAACNgAAAAABNgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAADQgAAAAAANgAAAAADQgAAAAAAQgAAAAAAfgAAAAAAdQAAAAADdQAAAAADdQAAAAAABAAAAAAABAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAcAAAAAACBAAAAAAABAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdAAAAAABdAAAAAACdQAAAAACcAAAAAABcAAAAAABcAAAAAAAdQAAAAABWAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACdAAAAAAAdAAAAAACCAAAAAABCAAAAAADCAAAAAABcAAAAAAAcAAAAAADBAAAAAAABAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAADdAAAAAABCAAAAAAACAAAAAADCAAAAAACdQAAAAABdQAAAAACBAAAAAAABAAAAAAAbAAAAAAAfgAAAAAAWAAAAAAAWAAAAAABWAAAAAADWAAAAAABfgAAAAAAdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAWAAAAAABWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAdAAAAAABfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAHwAAAAACKAAAAAADHwAAAAAAbAAAAAAAfgAAAAAAdAAAAAACdAAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAACcAAAAAACcAAAAAAAEQAAAAAAcAAAAAADfgAAAAAAHwAAAAAAIAAAAAAAHwAAAAAAbAAAAAAAfgAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAABdAAAAAABdAAAAAACcAAAAAACcAAAAAABcAAAAAACcAAAAAABfgAAAAAAHwAAAAADIAAAAAAAHwAAAAABbAAAAAAAfgAAAAAAWAAAAAACWAAAAAAAWAAAAAADWAAAAAADfgAAAAAAdAAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAHwAAAAACIAAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA + tiles: bgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAACEgAAAAADEgAAAAACNgAAAAABNgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAADQgAAAAAANgAAAAADQgAAAAAAQgAAAAAAfgAAAAAAdQAAAAADdQAAAAADdQAAAAAABAAAAAAABAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAcAAAAAAAcAAAAAACBAAAAAAABAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdAAAAAABdAAAAAACdQAAAAACcAAAAAABcAAAAAABcAAAAAAAdQAAAAABWAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACdAAAAAAAdAAAAAACCAAAAAABCAAAAAADCAAAAAABcAAAAAAAcAAAAAADBAAAAAAABAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAADdAAAAAABCAAAAAAACAAAAAADCAAAAAACdQAAAAABdQAAAAACBAAAAAAABAAAAAAAWQAAAAAAfgAAAAAAWAAAAAAAWAAAAAABWAAAAAADWAAAAAABfgAAAAAAdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAfgAAAAAAWAAAAAABWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAdAAAAAABfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAHwAAAAACKAAAAAADHwAAAAAAWQAAAAAAfgAAAAAAdAAAAAACdAAAAAAAdAAAAAACdAAAAAACdAAAAAACdAAAAAACcAAAAAACcAAAAAAAEQAAAAAAcAAAAAADfgAAAAAAHwAAAAAAIAAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAABdAAAAAABdAAAAAACcAAAAAACcAAAAAABcAAAAAACcAAAAAABfgAAAAAAHwAAAAADIAAAAAAAHwAAAAABPwAAAAAAfgAAAAAAWAAAAAACWAAAAAAAWAAAAAADWAAAAAADfgAAAAAAdAAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAHwAAAAACIAAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: CAAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACAAAAAACdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAdQAAAAACdQAAAAADdQAAAAAAfgAAAAAAdgAAAAAACAAAAAADdgAAAAAAcAAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAACfgAAAAAAEQAAAAAAfgAAAAAAcAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAAAMAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAEwAAAAABfgAAAAAAcAAAAAADCAAAAAACCAAAAAADCAAAAAABCAAAAAAACAAAAAADMAAAAAAAFAAAAAABFAAAAAACFAAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAdQAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAACMAAAAAAAFAAAAAAAFAAAAAACFAAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAMgAAAAADVQAAAAADVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABMwAAAAADMwAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAATQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACTQAAAAAATQAAAAAATQAAAAABIgAAAAADIgAAAAAAIgAAAAABfgAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAAAfgAAAAAAMgAAAAABMgAAAAADMgAAAAABHwAAAAADfgAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAADIwAAAAABIwAAAAABIwAAAAACfgAAAAAADQAAAAACDQAAAAADfgAAAAAAMgAAAAACMgAAAAADMgAAAAAAHwAAAAABHwAAAAABXwAAAAAAXwAAAAAATgAAAAAATgAAAAADTgAAAAACXwAAAAADXwAAAAACXQAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAMgAAAAAAMgAAAAACMgAAAAAAHwAAAAABfgAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADIwAAAAABfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAMgAAAAADMgAAAAADMgAAAAAA + tiles: CAAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAACAAAAAACdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAdQAAAAACdQAAAAADdQAAAAAAfgAAAAAAdgAAAAAACAAAAAADdgAAAAAAcAAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAACfgAAAAAAEQAAAAAAfgAAAAAAcAAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAAAMAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAEwAAAAABfgAAAAAAcAAAAAADCAAAAAACCAAAAAADCAAAAAABCAAAAAAACAAAAAADMAAAAAAAFAAAAAABFAAAAAACFAAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAdQAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAACMAAAAAAAFAAAAAAAFAAAAAACFAAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAMgAAAAADVQAAAAADVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABMwAAAAADMwAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAATQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACTQAAAAAATQAAAAAATQAAAAABIgAAAAADIgAAAAAAIgAAAAABfgAAAAAAfgAAAAAAfgAAAAAADQAAAAABDQAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAHwAAAAADfgAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAADIwAAAAABIwAAAAABIwAAAAACfgAAAAAADQAAAAACDQAAAAADfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAHwAAAAABHwAAAAABXwAAAAAAXwAAAAAATgAAAAAATgAAAAADTgAAAAACXwAAAAADXwAAAAACXQAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAHwAAAAABfgAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADIwAAAAABfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAXQAAAAACXQAAAAACYwAAAAABYwAAAAACYwAAAAADYwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAYwAAAAABYwAAAAACYwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAADDQAAAAACfgAAAAAAXQAAAAACXQAAAAABfgAAAAAASAAAAAACSAAAAAADSAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADXQAAAAADXQAAAAAASAAAAAABSAAAAAAASAAAAAABSAAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAACDQAAAAABDQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAASAAAAAADSAAAAAADSAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAABOAAAAAAANwAAAAAAfgAAAAAAWgAAAAADdQAAAAABdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANwAAAAAAOAAAAAAANwAAAAAAfgAAAAAAdQAAAAACWgAAAAAAdQAAAAABfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAACfgAAAAAAdgAAAAAAdgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAXQAAAAACXQAAAAACYwAAAAABYwAAAAACYwAAAAADYwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbgAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAYwAAAAABYwAAAAACYwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAAADQAAAAADDQAAAAACfgAAAAAAXQAAAAACXQAAAAABfgAAAAAASAAAAAACSAAAAAADSAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADXQAAAAADXQAAAAAASAAAAAABSAAAAAAASAAAAAABSAAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADQAAAAACDQAAAAABDQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAASAAAAAADSAAAAAADSAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAABOAAAAAAANwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANwAAAAAAOAAAAAAANwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAACfgAAAAAAdgAAAAAAdgAAAAAA version: 6 -5,-4: ind: -5,-4 @@ -323,19 +326,19 @@ entities: version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAACQAAAAAJCQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAFCQAAAAAGCQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAACQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAACQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAACQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAACCgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAALCQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfwAAAAAACQAAAAAFcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAABwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAABwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 @@ -351,19 +354,19 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-7: ind: -2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-7: ind: -3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAA version: 6 -4,-6: ind: -4,-6 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACgAAAAAACgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACgAAAAAACgAAAAAAfgAAAAAAOwAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAOwAAAAAA version: 6 -4,-7: ind: -4,-7 @@ -371,7 +374,7 @@ entities: version: 6 -5,-6: ind: -5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAACgAAAAAAAAAAAAAACQAAAAAACQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcwAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 -5,-7: ind: -5,-7 @@ -379,7 +382,7 @@ entities: version: 6 -7,-3: ind: -7,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAADCQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAADCgAAAAAACgAAAAAACgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAA version: 6 -7,-4: ind: -7,-4 @@ -411,7 +414,7 @@ entities: version: 6 -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAFQAAAAACFQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAHfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAFQAAAAACFQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA version: 6 -6,0: ind: -6,0 @@ -427,7 +430,7 @@ entities: version: 6 -6,-6: ind: -6,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAA version: 6 0,1: ind: 0,1 @@ -509,18 +512,6 @@ entities: decals: 208: -14,-26 209: -19,-26 - - node: - zIndex: 1 - color: '#DFACE6FF' - id: Basalt1 - decals: - 4807: -34.038605,-79.30283 - - node: - cleanable: True - color: '#E900008E' - id: Basalt1 - decals: - 3799: -67.96287,-39.02954 - node: cleanable: True zIndex: 10 @@ -533,7 +524,6 @@ entities: color: '#FFFFFF73' id: Basalt1 decals: - 3867: -69.07412,-37.69455 3868: -71.333145,-37.654907 - node: cleanable: True @@ -554,12 +544,6 @@ entities: id: Basalt1 decals: 4028: -74.127075,-63.8579 - - node: - zIndex: 1 - color: '#DFACE6FF' - id: Basalt2 - decals: - 4808: -32.314613,-78.72801 - node: cleanable: True color: '#FFFFFF73' @@ -649,13 +633,6 @@ entities: id: Basalt5 decals: 4081: -75.85125,-76.78205 - - node: - zIndex: 1 - color: '#DFACE6FF' - id: Basalt5 - decals: - 4809: -33.810722,-76.37915 - 4810: -32.53259,-77.52487 - node: cleanable: True color: '#FFFFFF57' @@ -779,12 +756,6 @@ entities: 3381: -80.33316,-34.93896 3382: -79.309425,-36.00953 3383: -77.72729,-34.752773 - - node: - cleanable: True - color: '#B4000057' - id: Basalt8 - decals: - 3798: -68.0748,-38.036724 - node: cleanable: True zIndex: 10 @@ -891,6 +862,7 @@ entities: 4663: -30,-60 4669: -8,9 4705: -12,4 + 5913: -65,-36 - node: zIndex: 1 color: '#FFFFFFFF' @@ -906,7 +878,6 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 3287: -65,-33 3288: -72,-21 3391: -49,-30 3557: -64,-12 @@ -1037,6 +1008,7 @@ entities: id: BrickCornerOverlayNE decals: 3103: -59,-36 + 5918: -64,-37 - node: zIndex: 2 color: '#639137FF' @@ -1079,6 +1051,7 @@ entities: id: BrickCornerOverlayNW decals: 3104: -62,-36 + 5919: -66,-37 - node: zIndex: 2 color: '#639137FF' @@ -1122,6 +1095,7 @@ entities: id: BrickCornerOverlaySE decals: 3105: -59,-37 + 5921: -64,-39 - node: zIndex: 2 color: '#52B4E996' @@ -1170,6 +1144,12 @@ entities: id: BrickCornerOverlaySW decals: 2776: -51,-8 + - node: + zIndex: 1 + color: '#52B4E996' + id: BrickCornerOverlaySW + decals: + 5920: -66,-39 - node: zIndex: 2 color: '#639137FF' @@ -1501,13 +1481,13 @@ entities: 3670: -70,-31 3671: -69,-31 3672: -68,-31 + 5898: -65,-33 + 5899: -66,-33 - node: zIndex: 2 color: '#52B4E996' id: BrickLineOverlayS decals: - 3231: -66,-33 - 3232: -65,-33 3233: -64,-33 3234: -63,-33 3235: -62,-33 @@ -2953,6 +2933,8 @@ entities: 3777: -76,-4 3778: -75,-4 3958: -64,-29 + 5896: -65,-33 + 5897: -66,-33 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2967,8 +2949,6 @@ entities: 3205: -57,-33 3206: -58,-33 3207: -53,-33 - 3223: -66,-33 - 3224: -65,-33 3225: -64,-33 3226: -63,-33 3227: -61,-33 @@ -3032,6 +3012,7 @@ entities: 5189: -110,-60 5200: -107,-57 5313: -113,-60 + 5917: -64,-37 - node: color: '#4B709CFF' id: BrickTileWhiteCornerNw @@ -3047,6 +3028,7 @@ entities: 5184: -115,-57 5188: -112,-60 5295: -109,-57 + 5916: -66,-37 - node: color: '#4B709CFF' id: BrickTileWhiteCornerSe @@ -3062,6 +3044,7 @@ entities: 5179: -113,-59 5191: -110,-62 5201: -107,-59 + 5915: -64,-39 - node: zIndex: 1 color: '#FFFFFFFF' @@ -3083,6 +3066,7 @@ entities: 5190: -112,-62 5197: -109,-59 5314: -109,-56 + 5914: -66,-39 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndE @@ -3159,13 +3143,13 @@ entities: 5177: -111,-54 5183: -114,-57 5294: -108,-57 + 5900: -65,-33 + 5901: -66,-33 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 3161: -66,-33 - 3162: -65,-33 3163: -64,-33 3164: -63,-33 3165: -62,-33 @@ -3294,12 +3278,6 @@ entities: id: BushDOne decals: 4173: -36.56111,-22.4113 - - node: - color: '#FFFFFFFF' - id: BushDOne - decals: - 2759: -71.03783,-26.584923 - 2760: -69.76929,-26.04974 - node: cleanable: True color: '#00000028' @@ -3349,12 +3327,6 @@ entities: 4116: -78.79438,-75.311035 4406: -96.16878,-30.085936 4407: -98.002205,-29.193964 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 1554: -48.90679,-16.454704 - 1555: -49.978928,-17.270908 - node: cleanable: True color: '#0000003B' @@ -3388,11 +3360,6 @@ entities: 4089: -73.96151,-65.69581 4090: -72.35059,-62.132664 5520: -76.70047,-18.194607 - - node: - color: '#FFFFFFFF' - id: Bushg1 - decals: - 1553: -49.925453,-18.368416 - node: cleanable: True zIndex: 40 @@ -3415,16 +3382,6 @@ entities: id: Bushh3 decals: 4094: -77.943535,-72.20677 - - node: - color: '#FFFFFFBD' - id: Bushh3 - decals: - 2757: -71.005615,-26.537848 - - node: - color: '#FFFFFFFF' - id: Bushh3 - decals: - 2758: -69.920425,-26.582445 - node: cleanable: True color: '#0000004D' @@ -3444,11 +3401,6 @@ entities: 4628: -63.40633,24.200346 4629: -62.425198,23.75436 4630: -63.049553,23.605698 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 1551: -49.504555,-16.096249 - node: cleanable: True zIndex: 40 @@ -3491,14 +3443,6 @@ entities: id: Bushi2 decals: 4753: -50.974167,-75.92301 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 1548: -50.93637,-16.216513 - 1549: -48.097137,-16.135056 - 1550: -48.71386,-17.659458 - 3893: 17.098783,-9.057839 - node: cleanable: True zIndex: 40 @@ -3519,17 +3463,6 @@ entities: decals: 3874: -71.58084,-38.6559 3875: -72.51219,-38.190094 - - node: - cleanable: True - color: '#E900096B' - id: Bushi3 - decals: - 3876: -69.054306,-37.981964 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 3894: 17.128508,-5.926026 - node: cleanable: True color: '#0000004D' @@ -3573,20 +3506,6 @@ entities: 4621: -62.811703,23.813826 4622: -62.801792,23.813826 4623: -63.02973,23.566055 - - node: - cleanable: True - color: '#FF000947' - id: Bushl4 - decals: - 3888: -68.971176,-37.97318 - 3889: -68.70116,-37.887283 - 3890: -69.08427,-37.748535 - 3891: -68.82005,-38.178 - - node: - color: '#FFFFFFFF' - id: Bushl4 - decals: - 1552: -50.11164,-15.948086 - node: cleanable: True zIndex: 10 @@ -3635,18 +3554,6 @@ entities: 5516: -75.387665,-20.13217 5517: -78.49382,-19.631674 5518: -77.027435,-18.036034 - - node: - cleanable: True - color: '#FF000947' - id: Bushn1 - decals: - 3892: -68.52503,-37.82782 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 1556: -49.37554,-19.243792 - 1557: -48.84028,-15.892438 - node: color: '#FFFFFFFF' id: Caution @@ -3766,28 +3673,6 @@ entities: id: Damaged decals: 3389: -79.007774,-34.039948 - - node: - cleanable: True - color: '#E900005D' - id: Damaged - decals: - 3807: -67.59707,-38.924812 - 3808: -68.80693,-38.079216 - 3809: -67.87627,-38.04043 - 3810: -67.10847,-38.15679 - - node: - cleanable: True - color: '#FF000947' - id: Damaged - decals: - 3886: -69.031075,-38.015915 - 3887: -68.5753,-37.787968 - - node: - cleanable: True - color: '#FF0009FF' - id: Damaged - decals: - 3885: -69.031075,-38.134846 - node: cleanable: True color: '#FFFFFFFF' @@ -4006,7 +3891,6 @@ entities: decals: 144: -41,-46 145: -41,-47 - 146: -32,-43 2218: -45,7 2219: -46,7 2220: -48,7 @@ -4165,14 +4049,6 @@ entities: 3372: -81,-37 3373: -81,-35 3374: -79,-35 - 3820: -68.08753,-38.15861 - 3821: -69.049225,-37.972427 - 3822: -67.30422,-38.686142 - 3823: -68.97942,-38.880085 - 3824: -66.978485,-38.073277 - 3825: -67.730774,-38.127583 - 3836: -68,-37 - 3837: -68,-37 3838: -73,-38 3840: -72,-39 3841: -72,-38 @@ -4218,7 +4094,6 @@ entities: 4613: -63,24 4818: -67,-44 4819: -67,-42 - 4820: -64,-39 4869: -70,-62 4880: -55,-72 4881: -56,-72 @@ -4370,12 +4245,6 @@ entities: 5801: -88,-40 5802: -88,-41 5803: -88,-41 - 5824: -70,-35 - 5825: -70,-35 - 5826: -70,-35 - 5827: -64,-36 - 5828: -64,-36 - 5829: -64,-36 5830: -61,-26 5831: -46,-48 - node: @@ -4536,10 +4405,6 @@ entities: 2216: -45,3 3375: -80,-36 3376: -79,-35 - 3826: -68,-38 - 3827: -68,-39 - 3828: -67,-39 - 3829: -67,-38 3844: -72,-38 3845: -72,-39 3847: -73,-38 @@ -4592,10 +4457,6 @@ entities: 4676: -64,-47 4677: -64,-48 4678: -64,-48 - 4821: -64,-37 - 4822: -67,-35 - 4823: -65,-35 - 4824: -64,-35 4870: -70,-64 4871: -70,-67 4872: -72,-69 @@ -4741,7 +4602,6 @@ entities: decals: 107: -53,-21 108: -54,-23 - 109: -48,-16 110: -32,-23 156: -85,-48 157: -86,-48 @@ -4827,8 +4687,6 @@ entities: 4815: -67,-45 4816: -66,-44 4817: -67,-43 - 4825: -69,-35 - 4826: -69,-35 4874: -73,-71 4875: -74,-70 4876: -66,-72 @@ -5181,12 +5039,6 @@ entities: 2048: -5,9 2211: -44,0 2212: -43,2 - 3830: -68,-38 - 3831: -69,-39 - 3832: -67,-38 - 3833: -68,-37 - 3834: -67,-38 - 3835: -68,-37 3850: -73,-38 3851: -71,-38 3852: -72,-39 @@ -5315,47 +5167,16 @@ entities: 378: -35,-27 379: -37,-27 - node: - zIndex: 1 - color: '#6F52E698' - id: FlowersBROne - decals: - 4800: -33.26881,-79.47843 - - node: - zIndex: 2 - color: '#FFFFFFE6' - id: FlowersBRThree - decals: - 3157: -36.991745,-42.2681 - - node: - color: '#FFFFFFFF' - id: FlowersBRThree - decals: - 1034: -91.81342,-26.116003 - 1035: -93.06213,-25.863277 - - node: - color: '#00000069' - id: FlowersBRTwo - decals: - 2051: -39.374794,-43.03986 - 2052: -39.2817,-43.388958 - 2053: -38.630074,-43.27259 - 2054: -39.165337,-43.51696 - 2055: -38.57189,-42.80713 - - node: - color: '#FFFFFFFF' + color: '#FFF5AE93' id: FlowersBRTwo decals: - 988: -41.961876,-58.021088 - 989: -42.928146,-58.06569 - 990: -42.437576,-58.06569 - 1562: -49.04973,-17.079376 - 2620: -49,-25 + 6111: -92.27115,-26.040962 + 6112: -91.33461,-26.026093 - node: - color: '#FFFFFFFF' + color: '#FFFFFF98' id: Flowersbr1 decals: - 1563: -50.79516,-17.556477 - 2078: -49.412117,-19.999725 + 5959: -39.303795,-42.12872 - node: cleanable: True zIndex: 40 @@ -5364,11 +5185,17 @@ entities: decals: 4129: -61.04892,-58.72558 - node: - zIndex: 1 - color: '#6F52E698' + color: '#60B28FF2' + id: Flowersbr2 + decals: + 6067: -48.868603,-18.22305 + 6068: -49.31457,-16.335041 + - node: + color: '#FFFFFFFF' id: Flowersbr2 decals: - 4799: -33.893017,-76.31689 + 6074: -23.995361,-50.097694 + 6075: -23.9359,-49.23545 - node: cleanable: True color: '#0000003E' @@ -5379,20 +5206,10 @@ entities: color: '#FFFFFFFF' id: Flowerspv1 decals: - 1036: -90.99581,-26.041672 - - node: - zIndex: 2 - color: '#FFFFFFE6' - id: Flowerspv2 - decals: - 3160: -40.96929,-42.102463 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 1029: -92.97294,-26.026806 - 1030: -92.081,-26.056538 - 1031: -91.20393,-26.08627 + 6040: 17.001114,-6.0108867 + 6041: 17.01598,-9.177389 + 6124: -70.76579,-26.683456 + 6125: -69.99298,-26.237473 - node: cleanable: True color: '#0000003E' @@ -5410,66 +5227,6 @@ entities: 390: -34,-21 391: -37,-21 392: -35,-21 - - node: - zIndex: 1 - color: '#6F52E698' - id: Flowerspv3 - decals: - 4801: -32.29783,-78.41798 - - node: - zIndex: 2 - color: '#FFFFFFE6' - id: Flowerspv3 - decals: - 3159: -33.60853,-42.059975 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 15: -51,-20 - 993: -42.80922,-58.050823 - 994: -42.259186,-58.035957 - 1037: -92.6459,-26.08627 - 1053: -24.045834,-49.24939 - 1057: -23.941772,-50.02243 - 1058: -23.971504,-49.041264 - 2077: -48.37152,-19.167217 - - node: - zIndex: 1 - color: '#6F52E698' - id: Flowersy1 - decals: - 4804: -32.314613,-77.30086 - 4806: -33.335136,-76.54763 - - node: - cleanable: True - color: '#E9000044' - id: Flowersy1 - decals: - 3813: -68.551,-38.816204 - - node: - color: '#FFFFFF9B' - id: Flowersy1 - decals: - 2749: -70.04678,-26.109203 - - node: - zIndex: 2 - color: '#FFFFFFE6' - id: Flowersy1 - decals: - 3156: -40.80504,-42.610023 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 991: -42.79435,-58.00622 - 992: -41.976746,-58.125153 - 1032: -93.00267,-26.026806 - 1033: -91.24853,-26.116003 - 1054: -23.926907,-49.383186 - 1558: -48.3981,-17.765938 - 1559: -49.224274,-17.870667 - 1560: -50.911522,-16.47427 - node: cleanable: True color: '#0000003E' @@ -5479,23 +5236,6 @@ entities: 386: -9,6 387: -55,-74 388: -57,-61 - - node: - zIndex: 1 - color: '#6F52E698' - id: Flowersy2 - decals: - 4802: -34.031727,-78.70539 - 4805: -34.018787,-77.30086 - - node: - color: '#FFFFFF9B' - id: Flowersy2 - decals: - 2748: -70.94863,-26.010096 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 1059: -24.001236,-49.353455 - node: cleanable: True zIndex: 40 @@ -5528,26 +5268,11 @@ entities: 4123: -63.971466,-72.571976 4124: -63.38675,-71.71965 - node: - zIndex: 1 - color: '#6F52E698' - id: Flowersy3 - decals: - 4803: -33.863293,-79.65655 - - node: - color: '#FFFFFF9B' + color: '#8FFFFFF2' id: Flowersy3 decals: - 2752: -70.661224,-26.91198 - 2753: -69.898125,-27.219213 - 2754: -71.008095,-27.28859 - 2755: -69.608246,-26.299988 - 2756: -70.381256,-27.251425 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 1055: -24.060698,-50.081898 - 1561: -50.946434,-19.115788 + 6022: -42.22567,-58.121754 + 6023: -42.80543,-58.106888 - node: cleanable: True color: '#0000003E' @@ -5555,42 +5280,17 @@ entities: decals: 380: -21,-35 381: -20,-38 - - node: - color: '#FFFFFF9B' - id: Flowersy4 - decals: - 2750: -70.95854,-26.594833 - 2751: -70.03687,-26.515547 - - node: - zIndex: 2 - color: '#FFFFFFE6' - id: Flowersy4 - decals: - 3158: -32.092606,-42.134308 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 1056: -23.926907,-49.115593 - 2621: -49,-25 - - node: - cleanable: True - color: '#E9000044' - id: Grassa1 - decals: - 3811: -67.387665,-39.017906 - 3812: -69.047356,-38.180065 + 6078: -49,-25 + 6126: -70.349655,-26.936184 - node: color: '#FFFFFFFF' id: Grassa4 decals: 4: -13,9 - - node: - cleanable: True - color: '#FF000049' - id: Grassa5 - decals: - 3794: -68.76375,-38.094906 - node: color: '#FFFFFFFF' id: Grassb1 @@ -5610,25 +5310,14 @@ entities: color: '#FFFFFFFF' id: Grassd1 decals: - 16: -49,-20 - 17: -48,-18 - 18: -51,-16 - 1060: -24.016102,-49.844036 - 1061: -23.98637,-49.353455 - 1062: -23.941772,-48.996666 - 2734: -70.96845,-27.020998 - 2735: -70.02696,-26.218224 + 5971: -33.603977,-77.51121 + 6038: 16.956518,-9.088192 - node: zIndex: 1 color: '#6F52E698' id: Grassd2 decals: - 4793: -33.99002,-78.23958 - 4794: -34.178272,-79.97397 - 4795: -32.107502,-78.85405 4796: -32.21649,-77.65485 - 4797: -33.11812,-76.02947 - 4798: -34.108917,-77.01064 - node: cleanable: True color: '#FF00003E' @@ -5636,126 +5325,40 @@ entities: decals: 1729: -75.06771,-6.471197 1730: -75.05995,-6.3936195 - - node: - cleanable: True - color: '#FF000069' - id: Grassd2 - decals: - 3819: -68.34936,-39.10324 - - node: - zIndex: 1 - color: '#FFFFFFCD' - id: Grassd2 - decals: - 3143: -33.65555,-42.187256 - 3144: -32.407143,-41.78587 - 3145: -31.827524,-42.246723 - 3146: -32.31797,-42.127792 - 3147: -31.634321,-41.78587 - 3148: -34.39865,-42.231857 - 3149: -35.988884,-41.8156 - 3150: -37.341324,-42.157524 - 3151: -36.83602,-43.094093 - 3152: -37.296738,-43.004898 - 3153: -41.350563,-43.19816 - 3154: -40.741226,-42.380516 - 3155: -41.112778,-42.8711 - - node: - color: '#FFFFFFFF' - id: Grassd2 - decals: - 19: -48,-20 - 20: -50,-18 - 21: -51,-19 - 22: -50,-18 - 23: -48,-17 - 24: -50,-19 - 25: -50,-20 - 26: -51,-19 - 2736: -71.03783,-26.109203 - 2737: -70.066605,-26.951622 - node: zIndex: 1 color: '#6F52E698' id: Grassd3 decals: - 4787: -32.91005,-79.07209 - 4788: -33.19738,-79.9938 - 4789: -34.05938,-78.81441 4790: -32.196674,-77.14939 - 4791: -33.326187,-76.20786 - 4792: -34.029655,-77.45663 - node: - color: '#FFFFFFFF' + color: '#FFFFFF47' id: Grassd3 decals: - 2738: -70.45311,-26.347063 - 2739: -71.027916,-26.624565 - 2740: -70.42338,-27.14984 - 2741: -69.749466,-26.43626 - 2742: -71.156746,-27.080463 - 2743: -70.49275,-25.80197 - 2744: -69.80893,-25.871346 + 5977: -38.862396,-44.62479 + 5978: -33.73375,-43.004375 + 5979: -34.68515,-42.335396 + 5980: -35.800076,-43.093575 - node: - color: '#6F52E698' - id: Grasse1 - decals: - 4784: -33.971798,-76.37004 - 4785: -32.51373,-78.15038 - - node: - zIndex: 1 - color: '#6F52E698' - id: Grasse1 - decals: - 4786: -33.613518,-79.547806 - - node: - zIndex: 1 - color: '#FFFFFFCD' - id: Grasse1 + color: '#FFFFFFFF' + id: Grassd3 decals: - 3136: -41.14222,-42.083195 - 3137: -40.830116,-42.930565 - 3138: -36.999496,-43.03463 - 3139: -37.08867,-41.964264 - 3140: -36.196953,-42.157524 - 3141: -34.368927,-41.8602 - 3142: -32.139626,-42.05346 + 5975: -33.207474,-79.67142 + 5976: -34.25469,-42.120697 + 6106: -92.79144,-25.966629 + 6107: -91.572464,-26.055828 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 2060: -49.60762,-19.987465 - 2061: -48.611626,-20.046932 - 2062: -50.45513,-16.598036 - 2063: -50.752457,-17.50484 - 2064: -50.97545,-16.419647 - 2065: -50.678123,-18.545435 - 2066: -51.19844,-17.831884 - 2067: -49.741554,-16.829456 - 2068: -49.81588,-18.473076 - 2069: -48.373863,-16.941917 - 2070: -50.61866,-15.945919 - 2071: -51.00518,-18.517673 - 2072: -51.020042,-17.254095 - 2073: -50.321167,-20.033876 - 2074: -48.54991,-18.472813 + 6039: 17.090307,-5.936556 + 6073: -23.965631,-49.532776 - node: - color: '#FFFFFFFF' + color: '#FFFFFF34' id: Grasse2 decals: - 2622: -49,-25 - 2745: -71.05765,-25.920898 - 2746: -69.79902,-27.090374 - 2747: -71.17657,-26.54528 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 1038: -93.01754,-25.997072 - 1039: -92.28912,-26.01194 - 1040: -91.32285,-25.952475 - 2075: -48.297195,-19.137486 - 2076: -48.758026,-18.6469 + 5983: -37.64114,-42.893204 + 5984: -35.961323,-44.959606 - node: color: '#FFFFFFFF' id: GrayConcreteTrimBox @@ -5864,6 +5467,11 @@ entities: decals: 4398: -8,3 4399: -6,3 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale + decals: + 5925: -65,-37 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -5876,6 +5484,11 @@ entities: decals: 4400: -7,1 4401: -5,1 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale180 + decals: + 5926: -65,-39 - node: color: '#639137FF' id: HalfTileOverlayGreyscale270 @@ -5890,6 +5503,11 @@ entities: 3356: -89,-31 3357: -89,-30 3359: -89,-33 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale270 + decals: + 5928: -66,-38 - node: color: '#639137FF' id: HalfTileOverlayGreyscale90 @@ -5904,6 +5522,11 @@ entities: 3347: -91,-31 3348: -91,-30 3358: -94,-30 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale90 + decals: + 5927: -64,-38 - node: color: '#DE3A3A47' id: HerringboneOverlay @@ -5935,22 +5558,23 @@ entities: decals: 2848: -37,-22 - node: - color: '#4700667F' + color: '#FFFFFFFF' id: MarkupSquare decals: - 4771: -34,-76 - 4772: -33,-76 - 4773: -33,-77 - 4774: -34,-77 - 4775: -34,-78 - 4776: -33,-78 - 4777: -32,-77 - 4778: -32,-78 - 4779: -32,-79 - 4780: -33,-79 - 4781: -34,-79 - 4782: -34,-80 - 4783: -33,-80 + 6016: -43,-58 + 6017: -42,-58 + 6032: 17,-9 + 6033: 17,-6 + 6069: -24,-50 + 6070: -24,-49 + 6076: -49,-25 + 6100: -93,-26 + 6101: -92,-26 + 6102: -91,-26 + 6113: -71,-26 + 6114: -70,-26 + 6115: -70,-27 + 6116: -71,-27 - node: color: '#DE3A3AAB' id: MiniTileCheckerAOverlay @@ -7517,22 +7141,6 @@ entities: id: QuarterTileOverlayGreyscale90 decals: 196: -16,-28 - - node: - color: '#0000002B' - id: Rock01 - decals: - 2042: -35.31179,-45.512543 - - node: - color: '#00000037' - id: Rock01 - decals: - 2041: -38.255753,-45.33799 - - node: - color: '#00000069' - id: Rock01 - decals: - 2049: -39.270065,-43.28423 - 2050: -38.80462,-43.14459 - node: cleanable: True zIndex: 40 @@ -7540,41 +7148,12 @@ entities: id: Rock01 decals: 4280: -76.209656,-75.70723 - - node: - cleanable: True - color: '#FF00004D' - id: Rock01 - decals: - 3785: -68.1433,-38.36643 - - node: - color: '#FFFFFFFF' - id: Rock02 - decals: - 27: -50.201115,-19.547714 - 28: -48.16457,-17.674559 - - node: - color: '#FFFFFFFF' - id: Rock03 - decals: - 29: -50.62908,-17.999043 - - node: - cleanable: True - color: '#FF00004D' - id: Rock04 - decals: - 3786: -68.647415,-38.87068 - node: cleanable: True color: '#FFFFFF73' id: Rock06 decals: 1764: -27.738,-3.295126 - - node: - cleanable: True - color: '#B4000025' - id: Rock07 - decals: - 3797: -68.213104,-38.226788 - node: color: '#000000FF' id: Rust @@ -7595,54 +7174,6 @@ entities: color: '#FFFFFFFF' id: Rust decals: - 38: -90,-49 - 39: -90,-49 - 40: -91,-49 - 41: -90,-48 - 42: -92,-44 - 43: -92,-46 - 44: -92,-45 - 45: -89,-44 - 46: -89,-45 - 47: -91,-45 - 48: -91,-44 - 49: -90,-44 - 50: -90,-45 - 51: -91,-46 - 52: -90,-46 - 53: -89,-46 - 54: -89,-47 - 55: -90,-47 - 56: -91,-47 - 57: -92,-48 - 58: -91,-48 - 59: -92,-49 - 60: -92,-47 - 61: -89,-48 - 62: -89,-49 - 63: -91,-49 - 64: -92,-49 - 65: -92,-48 - 66: -91,-48 - 67: -89,-48 - 68: -90,-48 - 69: -89,-49 - 70: -89,-47 - 71: -90,-47 - 72: -91,-47 - 73: -92,-47 - 74: -92,-46 - 75: -91,-46 - 76: -90,-46 - 77: -89,-46 - 78: -89,-45 - 79: -90,-45 - 80: -91,-45 - 81: -92,-45 - 82: -92,-44 - 83: -91,-44 - 84: -90,-44 - 85: -89,-44 162: -87,-46 163: -86,-46 - node: @@ -7651,6 +7182,11 @@ entities: id: Rust decals: 1282: -29,1 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 5912: -65,-36 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7879,11 +7415,6 @@ entities: 1092: -8,5 3480: -57,-12 5119: -110,-59 - - node: - color: '#0000003F' - id: WarnCornerSmallSE - decals: - 2011: -33,-45 - node: color: '#9C2020FF' id: WarnCornerSmallSE @@ -7894,11 +7425,6 @@ entities: id: WarnCornerSmallSE decals: 5117: -112,-57 - - node: - color: '#0000003F' - id: WarnCornerSmallSW - decals: - 2012: -40,-45 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -7920,54 +7446,6 @@ entities: decals: 4004: -78,-73 4005: -78,-72 - - node: - color: '#00000033' - id: WarnFull - decals: - 1999: -40,-47 - 2000: -39,-47 - 2001: -38,-47 - 2002: -37,-47 - 2003: -36,-47 - 2004: -35,-47 - 2005: -34,-47 - 2006: -33,-47 - - node: - color: '#00000066' - id: WarnFull - decals: - 1991: -40,-48 - 1992: -39,-48 - 1993: -38,-48 - 1994: -37,-48 - 1995: -36,-48 - 1996: -35,-48 - 1997: -34,-48 - 1998: -33,-48 - - node: - color: '#00000099' - id: WarnFull - decals: - 1983: -40,-49 - 1984: -39,-49 - 1985: -38,-49 - 1986: -37,-49 - 1987: -36,-49 - 1988: -34,-49 - 1989: -35,-49 - 1990: -33,-49 - - node: - color: '#000000CC' - id: WarnFull - decals: - 1975: -40,-50 - 1976: -39,-50 - 1977: -38,-50 - 1978: -37,-50 - 1979: -36,-50 - 1980: -35,-50 - 1981: -34,-50 - 1982: -33,-50 - node: color: '#52B4E993' id: WarnFullGreyscale @@ -8072,31 +7550,6 @@ entities: 1567: -13,-7 1568: -15,-7 1569: -14,-7 - - node: - color: '#0000003F' - id: WarnLineE - decals: - 2009: -33,-46 - - node: - color: '#00000059' - id: WarnLineE - decals: - 2013: -33,-47 - - node: - color: '#00000072' - id: WarnLineE - decals: - 2016: -33,-48 - - node: - color: '#0000008C' - id: WarnLineE - decals: - 2017: -33,-49 - - node: - color: '#000000A5' - id: WarnLineE - decals: - 2020: -33,-50 - node: color: '#9C2020FF' id: WarnLineE @@ -8235,24 +7688,6 @@ entities: 5362: -105,-59 5363: -105,-58 5364: -105,-57 - - node: - color: '#0000003F' - id: WarnLineN - decals: - 2007: -41,-45 - 2008: -32,-45 - - node: - color: '#000000A5' - id: WarnLineN - decals: - 2021: -40,-50 - 2022: -39,-50 - 2023: -38,-50 - 2024: -37,-50 - 2025: -36,-50 - 2026: -35,-50 - 2027: -34,-50 - 2028: -33,-50 - node: color: '#9C2020FF' id: WarnLineN @@ -8282,31 +7717,6 @@ entities: id: WarnLineN decals: 5098: -111,-59 - - node: - color: '#0000003F' - id: WarnLineS - decals: - 2010: -40,-46 - - node: - color: '#00000059' - id: WarnLineS - decals: - 2014: -40,-47 - - node: - color: '#00000072' - id: WarnLineS - decals: - 2015: -40,-48 - - node: - color: '#0000008C' - id: WarnLineS - decals: - 2018: -40,-49 - - node: - color: '#000000A5' - id: WarnLineS - decals: - 2019: -40,-50 - node: color: '#FFFFFFFF' id: WarnLineS @@ -9057,12 +8467,6 @@ entities: id: brush decals: 3903: -71.85179,-38.430523 - - node: - cleanable: True - color: '#E900008E' - id: brush - decals: - 3800: -68.11669,-39.064453 - node: cleanable: True zIndex: 10 @@ -9122,22 +8526,11 @@ entities: 5713: -62,1 5714: -51,7 - node: - cleanable: True - color: '#E900005D' - id: bushsnowa1 - decals: - 3801: -67.89178,-39.02566 - - node: - color: '#FF7CFFB4' + color: '#FFFFFFFF' id: bushsnowa1 decals: - 3895: 17.029427,-8.859623 - - node: - cleanable: True - color: '#E900005D' - id: bushsnowa2 - decals: - 3802: -67.87627,-38.79293 + 6109: -91.230545,-26.026093 + 6110: -90.85892,-25.922031 - node: cleanable: True zIndex: 10 @@ -9147,16 +8540,16 @@ entities: 5746: -69.81645,-8.071556 5747: -66.769745,-7.5066404 - node: - color: '#FF7CFFB4' - id: bushsnowa2 + color: '#FFFFFFFF' + id: bushsnowa3 decals: - 3896: 17.237495,-9.107393 - 3897: 17.138414,-6.0350447 + 5938: -31.919254,-42.040516 - node: - color: '#FF7CFFB4' - id: bushsnowa3 + color: '#FFFFFFFF' + id: bushsnowb2 decals: - 3898: 16.960072,-5.7872744 + 5939: -36.217266,-42.028095 + 6127: -70.99266,-26.897224 - node: cleanable: True zIndex: 10 @@ -9179,12 +8572,6 @@ entities: decals: 4165: -25.789024,-27.613222 4166: -25.263771,-28.544838 - - node: - cleanable: True - color: '#E900005D' - id: clawprint - decals: - 3806: -67.49624,-38.761898 - node: cleanable: True color: '#574F3473' @@ -9214,14 +8601,6 @@ entities: 3908: -71.85179,-38.304985 3909: -71.85179,-38.3182 3910: -71.85179,-38.304985 - - node: - cleanable: True - color: '#E900005D' - id: comma - decals: - 3803: -67.752174,-38.761898 - 3804: -67.98484,-38.668804 - 3805: -67.4342,-38.746384 - node: cleanable: True color: '#0000003B' @@ -9264,15 +8643,6 @@ entities: 4284: -74.56453,-75.88563 4285: -75.98172,-76.975815 4286: -76.22948,-75.10268 - - node: - cleanable: True - color: '#D0000077' - id: dot - decals: - 3790: -68.03473,-38.762074 - 3791: -68.45353,-38.940502 - 3792: -69.02744,-37.722534 - 3793: -68.80253,-37.80787 - node: cleanable: True color: '#EF753B4A' @@ -9322,36 +8692,81 @@ entities: 5878: -21.699535,-68.36539 5879: -22.0464,-67.92931 - node: - cleanable: True - color: '#C000005A' + color: '#FFFFFFFF' id: footprint decals: - 3788: -68.407,-37.986298 - 3789: -67.92615,-37.885445 + 6027: -38.72139,-45.881622 + 6028: -39.00357,-45.5397 + 6029: -38.825504,-44.72206 + 6030: -33.21853,-42.98271 + 6031: -39.13505,-42.16507 - node: - cleanable: True color: '#FFFFFFFF' id: grasssnow decals: - 758: -37,-34 + 5948: -38.30126,-43.65108 + 6036: 17.134905,-5.9216895 + 6037: 17.04571,-9.117924 + 6059: -49.83487,-18.431177 + 6060: -50.89033,-19.8732 + 6061: -48.184784,-18.029789 + 6077: -49,-25 - node: cleanable: True - color: '#C000005A' - id: grasssnow01 + color: '#FFFFFFFF' + id: grasssnow decals: - 3787: -67.58491,-38.312122 + 758: -37,-34 - node: cleanable: True color: '#FF00003E' id: grasssnow01 decals: 1728: -74.82529,-6.5545936 + - node: + angle: -0.6981317007977318 rad + color: '#FFFFFFFF' + id: grasssnow01 + decals: + 5990: -33.79627,3.3392296 + - node: + color: '#FFFFFFFF' + id: grasssnow01 + decals: + 5960: -31.557991,-46.26829 + 5972: -33.975616,-77.34768 + 5973: -33.27693,-76.60437 + 5974: -32.860695,-79.354614 + 6045: -48.426666,-19.98996 + 6046: -50.879498,-16.03555 + 6047: -48.51586,-17.968155 + - node: + color: '#FFFFFFFF' + id: grasssnow02 + decals: + 5949: -33.603718,-44.661983 + 6003: -34.688206,4.2758007 + 6004: -32.302273,6.148942 + 6005: -41.355442,6.260439 + 6007: -39.746716,4.42247 + 6008: -36.644753,3.401658 + 6009: -47.951782,8.45758 + 6010: -37.772995,3.3649693 + 6034: 17.402487,-5.7730274 + 6035: 17.298426,-9.281452 + 6071: -23.816975,-49.844967 + 6072: -23.668318,-49.23545 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow02 decals: 760: -37,-30 + - node: + color: '#60B2FF8E' + id: grasssnow03 + decals: + 6079: -49,-25 - node: cleanable: True zIndex: 10 @@ -9359,6 +8774,41 @@ entities: id: grasssnow03 decals: 5722: -66.621124,-7.5512395 + - node: + color: '#FFFFFFFF' + id: grasssnow03 + decals: + 6013: -32.77659,-45.4929 + 6018: -42.97222,-58.10033 + 6019: -42.169476,-58.040867 + 6117: -70.929276,-27.129444 + 6118: -70.24562,-26.371265 + 6119: -70.67662,-26.237473 + 6120: -70.31993,-27.040245 + - node: + angle: -0.6981317007977318 rad + color: '#FFFFFFFF' + id: grasssnow04 + decals: + 5992: -35.22337,3.606822 + 5993: -32.146183,6.684126 + 5994: -39.460075,5.8590517 + 5995: -42.202785,6.86252 + 5996: -33.372597,5.6806574 + - node: + color: '#FFFFFFFF' + id: grasssnow04 + decals: + 6062: -48.30371,-17.078354 + 6063: -49.59702,-19.917797 + 6064: -48.348305,-19.308285 + 6065: -50.57815,-16.543169 + 6066: -49.567287,-19.59074 + - node: + color: '#FFFFFFFF' + id: grasssnow05 + decals: + 5947: -34.8673,-42.030666 - node: cleanable: True color: '#FFFFFFFF' @@ -9373,12 +8823,22 @@ entities: decals: 5723: -69.60838,-8.116156 5724: -69.10309,-8.17562 + - node: + color: '#FFFFFFFF' + id: grasssnow07 + decals: + 5952: -36.217052,-42.248764 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow07 decals: 759: -39,-33 + - node: + color: '#FFFFFFFF' + id: grasssnow08 + decals: + 6055: -49.868633,-17.98302 - node: cleanable: True color: '#FFFFFFFF' @@ -9393,32 +8853,81 @@ entities: decals: 5725: -69.266556,-7.818831 - node: - cleanable: True + color: '#FFFFFFFF' + id: grasssnow10 + decals: + 5943: -40.93248,-42.194195 + 5944: -32.20635,-42.967236 + 5957: -40.324238,-43.117157 + 5964: -33.876575,-79.419716 + 5965: -33.772514,-76.35728 + 5966: -33.118427,-78.70613 + 5967: -33.62386,-78.423676 + 5970: -32.47063,-78.76178 + 6056: -50.476955,-16.131458 + 6103: -92.89551,-25.951763 + 6104: -92.04816,-25.936897 + 6105: -91.17108,-25.936897 + - node: color: '#FFFFFFFF' id: grasssnow11 decals: - 762: -38,-31 + 5963: -40.788925,-49.524803 + 6014: -32.83656,-45.552353 + 6015: -32.965393,-45.40369 + 6048: -50.50786,-18.473606 + 6049: -48.679382,-16.778858 + 6057: -50.863804,-18.672749 + 6058: -48.738018,-19.029537 - node: cleanable: True - color: '#E9000044' - id: grasssnow12 + color: '#FFFFFFFF' + id: grasssnow11 decals: - 3814: -67.58155,-37.99388 - 3815: -67.6436,-38.97136 - 3816: -68.589775,-38.97136 + 762: -38,-31 - node: - cleanable: True - color: '#FF000069' + color: '#FFFFFFFF' id: grasssnow12 decals: - 3817: -68.25629,-39.111 - 3818: -68.613045,-38.9636 + 5946: -40.78382,-44.32006 + 5950: -38.633324,-41.939587 + 6026: -33.119617,-45.36299 - node: cleanable: True color: '#FF85FF44' id: grasssnow13 decals: 5687: -38.799465,-83.97225 + - node: + color: '#FFFFFFFF' + id: grasssnow13 + decals: + 5945: -36.829563,-43.53215 + 5961: -41.1457,-46.850227 + 5962: -41.502476,-45.958256 + 6042: -50.67138,-19.885895 + 6043: -48.664516,-16.34774 + 6044: -50.240276,-16.630198 + - node: + color: '#FFFFFFFF' + id: grasssnowa1 + decals: + 5951: -40.78884,-42.254963 + - node: + color: '#FFFFFFFF' + id: grasssnowa3 + decals: + 6011: -36.026478,4.0917206 + 6012: -49.410126,12.043834 + 6050: -50.70111,-19.395313 + 6051: -50.715977,-16.124748 + 6052: -48.9321,-18.800663 + 6053: -49.734844,-16.511269 + 6054: -50.953827,-18.488472 + 6108: -92.31575,-25.99636 + 6121: -71.09276,-26.341534 + 6122: -70.18617,-26.980782 + 6123: -70.18617,-26.148273 - node: cleanable: True zIndex: 10 @@ -9427,6 +8936,25 @@ entities: decals: 5730: -69.57866,-8.0269575 5731: -66.88864,-7.6255703 + - node: + angle: -0.6981317007977318 rad + color: '#FFFFFFFF' + id: grasssnowc2 + decals: + 5998: -33.417194,3.5399237 + - node: + color: '#FFFFFFFF' + id: grasssnowc2 + decals: + 5953: -40.970135,-44.797615 + 6020: -42.883026,-58.055733 + 6021: -42.035686,-58.040867 + - node: + color: '#FFFFFFFF' + id: grasssnowc3 + decals: + 5968: -33.78738,-78.70613 + 5969: -33.772514,-76.41674 - node: cleanable: True color: '#CD498869' @@ -9440,19 +8968,30 @@ entities: decals: 5880: -22.78968,-68.56361 - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#B4000068' + angle: -0.6981317007977318 rad + color: '#FFFFFFFF' id: line decals: - 3795: -68.19759,-38.133694 + 5988: -35.455494,-45.672546 - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#B4000068' - id: minus + color: '#FFFFFFFF' + id: line decals: - 3796: -67.67216,-38.07745 + 6024: -32.93564,-45.686695 + 6025: -32.75725,-45.00285 + - node: + angle: 0.4014257279586958 rad + color: '#FFFFFFFF' + id: line + decals: + 5985: -37.405518,-45.66146 + 5986: -37.04874,-45.82499 + - node: + angle: 0.9424777960769379 rad + color: '#FFFFFFFF' + id: line + decals: + 5987: -33.31764,-45.70349 - node: cleanable: True zIndex: 40 @@ -9480,17 +9019,6 @@ entities: id: shortline decals: 764: -37.371902,-30.511944 - - node: - color: '#00000037' - id: slash - decals: - 2034: -38.5932,-45.372902 - - node: - cleanable: True - color: '#FF00009E' - id: slash - decals: - 3784: -68.25964,-38.164726 - node: cleanable: True zIndex: 10 @@ -9498,47 +9026,6 @@ entities: id: slash decals: 5729: -66.7103,-7.670169 - - node: - color: '#0000002B' - id: smallbrush - decals: - 1944: -40.2024,-45.508194 - 1945: -35.792282,-45.47328 - 1946: -33.662857,-45.31037 - 1947: -37.23517,-45.496555 - 1948: -34.628662,-45.228912 - 1949: -37.74716,-45.4151 - 1950: -38.096245,-45.03109 - 1951: -39.632225,-45.066 - 1952: -38.072975,-45.287098 - 1953: -33.523224,-45.531467 - 1954: -37.18862,-45.48492 - - node: - color: '#0000002E' - id: smallbrush - decals: - 1956: -37.432983,-45.403465 - 1957: -36.07155,-45.10091 - 1958: -36.46718,-45.438374 - - node: - color: '#00000037' - id: smallbrush - decals: - 2030: -38.69792,-45.314716 - 2031: -38.51175,-45.47763 - 2035: -39.500824,-45.372902 - 2036: -33.54309,-45.47763 - 2037: -36.87104,-45.40781 - 2038: -36.126328,-45.442722 - 2039: -33.194,-45.512543 - 2040: -37.476128,-45.023804 - - node: - color: '#0000003B' - id: smallbrush - decals: - 1959: -35.350105,-45.531467 - 1960: -36.560272,-45.368553 - 1961: -40.272217,-45.391827 - node: cleanable: True zIndex: 40 @@ -9575,27 +9062,6 @@ entities: id: smallbrush decals: 1735: -78.86506,-5.7227483 - - node: - color: '#0000001F' - id: splatter - decals: - 1955: -35.315193,-45.391827 - 1962: -39.853317,-45.287098 - 1963: -37.00244,-45.461647 - 1964: -36.176277,-45.403465 - 1965: -38.363884,-45.287098 - - node: - color: '#00000034' - id: splatter - decals: - 1966: -37.572617,-45.508194 - - node: - color: '#00000037' - id: splatter - decals: - 2029: -39.047012,-45.500904 - 2032: -34.27617,-45.61727 - 2033: -39.663727,-45.535812 - node: cleanable: True color: '#3EA5FF8F' @@ -9648,12 +9114,6 @@ entities: id: splatter decals: 4279: -76.46733,-75.59821 - - node: - cleanable: True - color: '#FF00009E' - id: splatter - decals: - 3783: -68.15882,-38.374184 - node: cleanable: True zIndex: 10 @@ -9661,6 +9121,11 @@ entities: id: splatter decals: 5728: -66.5914,-7.328246 + - node: + color: '#FFFFFFFF' + id: splatter + decals: + 5956: -40.112743,-43.362274 - type: GridAtmosphere version: 2 data: @@ -9799,8 +9264,7 @@ entities: -3,-1: 0: 36044 -2,0: - 0: 65456 - 3: 64 + 0: 65520 -2,1: 0: 24560 -2,2: @@ -9860,7 +9324,7 @@ entities: -3,-8: 0: 13083 -3,-7: - 0: 12723 + 0: 14771 -3,-6: 0: 61439 -3,-9: @@ -9868,13 +9332,13 @@ entities: -2,-8: 0: 33283 1: 3208 + -2,-7: + 0: 825 -2,-6: 0: 16383 -2,-9: 0: 29440 1: 34959 - -2,-7: - 0: 8 -1,-9: 1: 39327 -8,0: @@ -10105,13 +9569,13 @@ entities: 0: 2 -19,0: 0: 7 - 4: 1792 + 3: 1792 -19,1: - 5: 7 + 4: 7 2: 1792 -19,2: 2: 1031 - 6: 768 + 5: 768 -19,3: 2: 7 0: 4096 @@ -10175,14 +9639,12 @@ entities: 0: 304 0,-10: 1: 61936 - -4,-17: - 0: 45056 -4,-16: + 0: 56 2: 63232 - 0: 8 -5,-16: + 0: 4224 2: 32832 - 0: 4096 -4,-15: 0: 65520 -5,-15: @@ -10193,6 +9655,8 @@ entities: 0: 60943 -5,-13: 0: 59647 + -4,-17: + 0: 40960 -3,-15: 0: 4880 -3,-14: @@ -10217,12 +9681,14 @@ entities: 0: 255 1: 4096 -8,-13: - 0: 56592 + 6: 4368 1: 12 + 0: 52224 -9,-13: - 0: 65520 + 6: 65520 -8,-12: - 0: 57341 + 6: 4369 + 0: 52972 -7,-16: 0: 65535 -7,-15: @@ -10236,8 +9702,8 @@ entities: -7,-17: 0: 53233 -6,-16: - 0: 28768 - 2: 128 + 0: 28672 + 2: 224 -6,-15: 0: 53375 -6,-14: @@ -10370,7 +9836,6 @@ entities: -12,-24: 0: 13075 -12,-23: - 1: 1 0: 60928 -12,-22: 0: 3822 @@ -10712,7 +10177,7 @@ entities: -17,-6: 0: 36863 -17,-9: - 0: 53503 + 0: 55544 -16,-8: 0: 53503 -16,-7: @@ -10720,11 +10185,12 @@ entities: -16,-6: 0: 53247 -9,-12: - 0: 65535 + 6: 65535 -8,-11: - 0: 49629 + 6: 273 + 0: 49356 -9,-11: - 0: 4095 + 6: 4095 -8,-10: 0: 65521 -9,-10: @@ -10790,18 +10256,19 @@ entities: 1: 57344 -11,-13: 1: 34 - 0: 34944 + 6: 34944 -10,-15: 0: 62941 -10,-14: 0: 255 1: 32768 -10,-13: - 0: 65520 + 6: 65520 -11,-12: - 0: 36856 + 6: 34952 + 0: 1904 -10,-12: - 0: 65535 + 6: 65535 -13,-12: 0: 4080 -12,-11: @@ -10824,18 +10291,18 @@ entities: 0: 61103 -11,-11: 1: 514 - 0: 2184 + 6: 2184 -11,-8: 0: 61167 -10,-11: - 0: 4095 + 6: 4095 -10,-10: 0: 65535 -10,-9: 0: 47 - 7: 60928 + 6: 60928 -10,-8: - 7: 3276 + 6: 3276 0: 4368 -9,-8: 0: 1638 @@ -10911,14 +10378,14 @@ entities: 0: 29627 -16,-11: 0: 64187 - -16,-10: - 0: 56785 -17,-11: 0: 62327 + -16,-10: + 0: 56784 -17,-10: - 0: 39864 + 0: 60625 -16,-9: - 0: 61661 + 0: 61660 -15,-12: 0: 57584 -15,-11: @@ -10964,7 +10431,7 @@ entities: -18,-11: 0: 30576 -18,-10: - 0: 7088 + 0: 39856 -18,-13: 0: 30576 -20,-14: @@ -11007,12 +10474,9 @@ entities: 0: 36864 -14,5: 2: 4918 - 0: 32768 -14,6: 0: 4672 1: 34952 - -13,5: - 1: 61678 -13,6: 1: 61695 -14,7: @@ -11021,6 +10485,8 @@ entities: 1: 61694 -13,4: 1: 57344 + -13,5: + 1: 61678 -12,5: 1: 63743 -12,6: @@ -11035,13 +10501,13 @@ entities: -5,6: 0: 512 -4,4: - 0: 34832 + 0: 32784 -4,5: - 0: 140 - -3,4: - 0: 4912 + 0: 2188 -3,5: 0: 257 + -3,4: + 0: 544 -12,8: 1: 226 -11,5: @@ -11306,21 +10772,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -14139,6 +13590,11 @@ entities: - type: Transform pos: -13.57374,-37.607513 parent: 2 + - uid: 19304 + components: + - type: Transform + pos: -37.796368,-42.697105 + parent: 2 - proto: ActionToggleInternals entities: - uid: 3683 @@ -14153,6 +13609,13 @@ entities: parent: 4007 - type: InstantAction container: 4007 + - uid: 4781 + components: + - type: Transform + parent: 4776 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4776 - uid: 5472 components: - type: Transform @@ -14253,6 +13716,13 @@ entities: parent: 5934 - type: InstantAction container: 5934 + - uid: 9730 + components: + - type: Transform + parent: 9242 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 9242 - uid: 18252 components: - type: Transform @@ -14416,15 +13886,6 @@ entities: - type: Transform pos: -42.5,-44.5 parent: 2 - - type: DeviceList - devices: - - 342 - - 7076 - - 7077 - - 9144 - - 9209 - - 9105 - - 9101 - uid: 19 components: - type: Transform @@ -16545,11 +16006,6 @@ entities: - type: Transform pos: -30.5,-45.5 parent: 2 - - uid: 186 - components: - - type: Transform - pos: -30.5,-46.5 - parent: 2 - uid: 189 components: - type: Transform @@ -16625,6 +16081,11 @@ entities: - type: Transform pos: -72.5,-59.5 parent: 2 + - uid: 6149 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 - uid: 6727 components: - type: Transform @@ -17011,10 +16472,11 @@ entities: parent: 2 - proto: AirlockMaintMedLocked entities: - - uid: 10101 + - uid: 10510 components: - type: Transform - pos: -55.5,-45.5 + rot: 1.5707963267948966 rad + pos: -67.5,-34.5 parent: 2 - proto: AirlockMaintRnDLocked entities: @@ -17029,6 +16491,14 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-63.5 parent: 2 +- proto: AirlockMaintRnDMedLocked + entities: + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-45.5 + parent: 2 - proto: AirlockMaintSalvageLocked entities: - uid: 257 @@ -17058,14 +16528,6 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-67.5 parent: 2 -- proto: AirlockMedical - entities: - - uid: 11880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-36.5 - parent: 2 - proto: AirlockMedicalGlassLocked entities: - uid: 1171 @@ -17083,6 +16545,12 @@ entities: - type: Transform pos: -56.5,-38.5 parent: 2 + - uid: 10991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-35.5 + parent: 2 - uid: 15681 components: - type: Transform @@ -17122,6 +16590,12 @@ entities: - type: Transform pos: -56.5,-42.5 parent: 2 + - uid: 6860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-33.5 + parent: 2 - proto: AirlockMiningGlassLocked entities: - uid: 10077 @@ -17526,7 +17000,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18 - 20328 - uid: 343 components: @@ -18111,6 +17584,13 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-74.5 parent: 2 +- proto: AlwaysPoweredlightBlue + entities: + - uid: 10476 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 - proto: AnomalyScanner entities: - uid: 5798 @@ -18693,6 +18173,11 @@ entities: rot: 3.141592653589793 rad pos: -107.5,-60.5 parent: 2 + - uid: 19265 + components: + - type: Transform + pos: -65.5,-33.5 + parent: 2 - uid: 20715 components: - type: Transform @@ -18753,41 +18238,6 @@ entities: - type: Transform pos: -61.4909,-66.96272 parent: 2 - - uid: 446 - components: - - type: Transform - pos: -32.65653,-42.505234 - parent: 2 - - uid: 447 - components: - - type: Transform - pos: -32.354446,-42.26565 - parent: 2 - - uid: 448 - components: - - type: Transform - pos: -32.635696,-42.1094 - parent: 2 - - uid: 449 - components: - - type: Transform - pos: -32.40653,-41.9219 - parent: 2 - - uid: 450 - components: - - type: Transform - pos: -32.666946,-41.80732 - parent: 2 - - uid: 451 - components: - - type: Transform - pos: -32.385696,-41.61982 - parent: 2 - - uid: 452 - components: - - type: Transform - pos: -32.68778,-41.52607 - parent: 2 - uid: 17607 components: - type: Transform @@ -19096,6 +18546,30 @@ entities: - type: Transform pos: 1.5,0.5 parent: 17958 + - uid: 19295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-46.5 + parent: 2 + - uid: 19296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-45.5 + parent: 2 + - uid: 19297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-46.5 + parent: 2 + - uid: 19298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-45.5 + parent: 2 - proto: AtmosDeviceFanTiny entities: - uid: 15702 @@ -19882,6 +19356,21 @@ entities: - type: Transform pos: -73.5,10.5 parent: 2 + - uid: 19277 + components: + - type: Transform + pos: -22.5,-62.5 + parent: 2 + - uid: 19278 + components: + - type: Transform + pos: -21.5,-62.5 + parent: 2 + - uid: 19279 + components: + - type: Transform + pos: -20.5,-62.5 + parent: 2 - uid: 19900 components: - type: Transform @@ -20004,6 +19493,506 @@ entities: - type: Transform pos: -36.5,-29.5 parent: 2 + - uid: 672 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + pos: -40.5,-45.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: -40.5,-42.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: -39.5,-41.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: -33.5,-50.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: -35.5,-48.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: -34.5,-48.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: -34.5,-43.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: -37.5,-49.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: -36.5,-43.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: -34.5,-47.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + pos: -36.5,-45.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: -36.5,-47.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: -34.5,-41.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: -35.5,-47.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + pos: -37.5,-50.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + pos: -36.5,-50.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: -35.5,-50.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: -35.5,-41.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 8358 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 9827 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 9906 + components: + - type: Transform + pos: -40.5,-48.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 10101 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 10155 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 10168 + components: + - type: Transform + pos: -37.5,-41.5 + parent: 2 + - uid: 10243 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 10268 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 10281 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 10299 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 10533 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 10567 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 10755 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 11002 + components: + - type: Transform + pos: -40.5,-44.5 + parent: 2 + - uid: 11021 + components: + - type: Transform + pos: -39.5,-47.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - uid: 11157 + components: + - type: Transform + pos: -40.5,-46.5 + parent: 2 + - uid: 11527 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 19260 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 19271 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 19272 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 19273 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 2 + - uid: 19281 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 19282 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 19283 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 19284 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 19285 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 19286 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 19287 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 + - uid: 19288 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 19289 + components: + - type: Transform + pos: -31.5,-48.5 + parent: 2 + - uid: 19290 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 19291 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 19292 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 19293 + components: + - type: Transform + pos: -31.5,-50.5 + parent: 2 + - uid: 19294 + components: + - type: Transform + pos: -34.5,-50.5 + parent: 2 - proto: AtmosFixNitrogenMarker entities: - uid: 584 @@ -20270,12 +20259,6 @@ entities: rot: -1.5707963267948966 rad pos: -79.5,-7.5 parent: 2 - - uid: 11639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-36.5 - parent: 2 - uid: 15355 components: - type: Transform @@ -20300,12 +20283,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,-70.5 parent: 2 - - uid: 11635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-36.5 - parent: 2 - uid: 12099 components: - type: Transform @@ -20349,12 +20326,6 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,-7.5 parent: 2 - - uid: 11619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-37.5 - parent: 2 - uid: 11623 components: - type: Transform @@ -20407,13 +20378,6 @@ entities: - type: Transform pos: -12.462828,10.6352825 parent: 2 -- proto: BeachBall - entities: - - uid: 626 - components: - - type: Transform - pos: -32.447205,-43.56581 - parent: 2 - proto: Beaker entities: - uid: 2542 @@ -20895,11 +20859,6 @@ entities: parent: 2 - proto: BenchRedComfy entities: - - uid: 689 - components: - - type: Transform - pos: -38.5,-41.5 - parent: 2 - uid: 690 components: - type: Transform @@ -21290,11 +21249,6 @@ entities: parent: 2 - proto: Bonfire entities: - - uid: 737 - components: - - type: Transform - pos: -38.5,-42.5 - parent: 2 - uid: 739 components: - type: Transform @@ -21959,12 +21913,24 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-6.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 301: + - Start: Close + - Timer: AutoClose + - Timer: Open - uid: 789 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-10.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 302: + - Start: Close + - Timer: AutoClose + - Timer: Open - uid: 790 components: - type: Transform @@ -22064,11 +22030,6 @@ entities: - type: Transform pos: -14.593565,8.520496 parent: 2 - - uid: 795 - components: - - type: Transform - pos: -65.51068,-34.326878 - parent: 2 - uid: 796 components: - type: Transform @@ -22104,6 +22065,12 @@ entities: - type: InsideEntityStorage - proto: ButtonFrameCaution entities: + - uid: 6916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-37.5 + parent: 2 - uid: 18815 components: - type: Transform @@ -27354,11 +27321,6 @@ entities: - type: Transform pos: -75.5,-60.5 parent: 2 - - uid: 1960 - components: - - type: Transform - pos: -67.5,-36.5 - parent: 2 - uid: 1961 components: - type: Transform @@ -28834,46 +28796,6 @@ entities: - type: Transform pos: -68.5,-35.5 parent: 2 - - uid: 2304 - components: - - type: Transform - pos: -67.5,-35.5 - parent: 2 - - uid: 2305 - components: - - type: Transform - pos: -66.5,-35.5 - parent: 2 - - uid: 2306 - components: - - type: Transform - pos: -65.5,-35.5 - parent: 2 - - uid: 2307 - components: - - type: Transform - pos: -64.5,-35.5 - parent: 2 - - uid: 2308 - components: - - type: Transform - pos: -64.5,-36.5 - parent: 2 - - uid: 2309 - components: - - type: Transform - pos: -64.5,-37.5 - parent: 2 - - uid: 2310 - components: - - type: Transform - pos: -64.5,-38.5 - parent: 2 - - uid: 2311 - components: - - type: Transform - pos: -64.5,-39.5 - parent: 2 - uid: 2312 components: - type: Transform @@ -31209,6 +31131,21 @@ entities: - type: Transform pos: -26.5,-0.5 parent: 2 + - uid: 3286 + components: + - type: Transform + pos: -68.5,-37.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: -68.5,-36.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: -67.5,-38.5 + parent: 2 - uid: 3342 components: - type: Transform @@ -31224,6 +31161,16 @@ entities: - type: Transform pos: -72.5,-19.5 parent: 2 + - uid: 3633 + components: + - type: Transform + pos: -68.5,-38.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: -67.5,-39.5 + parent: 2 - uid: 3762 components: - type: Transform @@ -31429,6 +31376,11 @@ entities: - type: Transform pos: -78.5,-1.5 parent: 2 + - uid: 5899 + components: + - type: Transform + pos: -64.5,-36.5 + parent: 2 - uid: 6152 components: - type: Transform @@ -31789,6 +31741,16 @@ entities: - type: Transform pos: -68.5,2.5 parent: 2 + - uid: 9907 + components: + - type: Transform + pos: -66.5,-34.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: -66.5,-35.5 + parent: 2 - uid: 10372 components: - type: Transform @@ -31804,6 +31766,16 @@ entities: - type: Transform pos: -89.5,-23.5 parent: 2 + - uid: 10756 + components: + - type: Transform + pos: -66.5,-36.5 + parent: 2 + - uid: 10759 + components: + - type: Transform + pos: -65.5,-34.5 + parent: 2 - uid: 10937 components: - type: Transform @@ -31819,6 +31791,11 @@ entities: - type: Transform pos: -40.5,-91.5 parent: 2 + - uid: 10990 + components: + - type: Transform + pos: -65.5,-33.5 + parent: 2 - uid: 11008 components: - type: Transform @@ -31829,6 +31806,11 @@ entities: - type: Transform pos: -58.5,-60.5 parent: 2 + - uid: 11155 + components: + - type: Transform + pos: -65.5,-36.5 + parent: 2 - uid: 11208 components: - type: Transform @@ -31839,6 +31821,11 @@ entities: - type: Transform pos: -97.5,-22.5 parent: 2 + - uid: 11289 + components: + - type: Transform + pos: -64.5,-37.5 + parent: 2 - uid: 11557 components: - type: Transform @@ -34318,6 +34305,11 @@ entities: - type: Transform pos: -19.5,-57.5 parent: 2 + - uid: 795 + components: + - type: Transform + pos: -65.5,-40.5 + parent: 2 - uid: 1806 components: - type: Transform @@ -36338,26 +36330,6 @@ entities: - type: Transform pos: -68.5,-35.5 parent: 2 - - uid: 3285 - components: - - type: Transform - pos: -67.5,-35.5 - parent: 2 - - uid: 3286 - components: - - type: Transform - pos: -66.5,-35.5 - parent: 2 - - uid: 3287 - components: - - type: Transform - pos: -65.5,-35.5 - parent: 2 - - uid: 3288 - components: - - type: Transform - pos: -64.5,-36.5 - parent: 2 - uid: 3289 components: - type: Transform @@ -37988,11 +37960,6 @@ entities: - type: Transform pos: -72.5,-32.5 parent: 2 - - uid: 3633 - components: - - type: Transform - pos: -64.5,-35.5 - parent: 2 - uid: 3634 components: - type: Transform @@ -38143,20 +38110,10 @@ entities: - type: Transform pos: -64.5,-40.5 parent: 2 - - uid: 3664 - components: - - type: Transform - pos: -64.5,-39.5 - parent: 2 - uid: 3665 components: - type: Transform - pos: -64.5,-38.5 - parent: 2 - - uid: 3666 - components: - - type: Transform - pos: -64.5,-37.5 + pos: -51.5,23.5 parent: 2 - uid: 3667 components: @@ -39193,11 +39150,6 @@ entities: - type: Transform pos: -33.5,-66.5 parent: 2 - - uid: 3901 - components: - - type: Transform - pos: -51.5,23.5 - parent: 2 - uid: 3911 components: - type: Transform @@ -39213,6 +39165,11 @@ entities: - type: Transform pos: -69.5,-59.5 parent: 2 + - uid: 4864 + components: + - type: Transform + pos: -66.5,-40.5 + parent: 2 - uid: 4979 components: - type: Transform @@ -39258,11 +39215,26 @@ entities: - type: Transform pos: -55.5,-15.5 parent: 2 + - uid: 5675 + components: + - type: Transform + pos: -67.5,-40.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: -68.5,-36.5 + parent: 2 - uid: 6779 components: - type: Transform pos: -55.5,-14.5 parent: 2 + - uid: 6859 + components: + - type: Transform + pos: -67.5,-39.5 + parent: 2 - uid: 8997 components: - type: Transform @@ -39298,6 +39270,11 @@ entities: - type: Transform pos: -55.5,-14.5 parent: 2 + - uid: 10086 + components: + - type: Transform + pos: -67.5,-38.5 + parent: 2 - uid: 12019 components: - type: Transform @@ -40008,6 +39985,16 @@ entities: - type: Transform pos: 2.5,2.5 parent: 17958 + - uid: 19264 + components: + - type: Transform + pos: -68.5,-37.5 + parent: 2 + - uid: 19269 + components: + - type: Transform + pos: -68.5,-38.5 + parent: 2 - uid: 20229 components: - type: Transform @@ -40053,6 +40040,11 @@ entities: parent: 16090 - proto: CableMV entities: + - uid: 188 + components: + - type: Transform + pos: -63.5,-32.5 + parent: 2 - uid: 300 components: - type: Transform @@ -40063,6 +40055,21 @@ entities: - type: Transform pos: -45.5,-32.5 parent: 2 + - uid: 499 + components: + - type: Transform + pos: -64.5,-32.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: -64.5,-33.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: -65.5,-33.5 + parent: 2 - uid: 884 components: - type: Transform @@ -44753,6 +44760,11 @@ entities: - type: Transform pos: -107.5,-60.5 parent: 2 + - uid: 19266 + components: + - type: Transform + pos: -63.5,-31.5 + parent: 2 - uid: 20277 components: - type: Transform @@ -45092,18 +45104,6 @@ entities: parent: 2 - proto: Carpet entities: - - uid: 4781 - components: - - type: Transform - pos: -34.5,-41.5 - parent: 2 - - type: Strap - unbuckleSound: !type:SoundPathSpecifier - path: /Audio/Effects/unbuckle.ogg - buckleSound: !type:SoundPathSpecifier - path: /Audio/Effects/buckle.ogg - rotation: 0.3490658503988659 rad - buckledEntities: [] - uid: 4782 components: - type: Transform @@ -45134,18 +45134,6 @@ entities: - type: Transform pos: -81.5,-61.5 parent: 2 - - uid: 4788 - components: - - type: Transform - pos: -35.5,-41.5 - parent: 2 - - type: Strap - unbuckleSound: !type:SoundPathSpecifier - path: /Audio/Effects/unbuckle.ogg - buckleSound: !type:SoundPathSpecifier - path: /Audio/Effects/buckle.ogg - rotation: -0.3490658503988659 rad - buckledEntities: [] - uid: 4845 components: - type: Transform @@ -45560,16 +45548,6 @@ entities: - type: Transform pos: -77.5,-54.5 parent: 2 - - uid: 4864 - components: - - type: Transform - pos: -32.5,-41.5 - parent: 2 - - uid: 4865 - components: - - type: Transform - pos: -32.5,-42.5 - parent: 2 - uid: 4866 components: - type: Transform @@ -45899,18 +45877,6 @@ entities: - type: Transform pos: -38.5,-11.5 parent: 2 - - uid: 4913 - components: - - type: Transform - pos: -34.5,-43.5 - parent: 2 - - type: Strap - unbuckleSound: !type:SoundPathSpecifier - path: /Audio/Effects/unbuckle.ogg - buckleSound: !type:SoundPathSpecifier - path: /Audio/Effects/buckle.ogg - rotation: 0.3490658503988659 rad - buckledEntities: [] - uid: 4914 components: - type: Transform @@ -45947,18 +45913,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-10.5 parent: 2 - - uid: 4922 - components: - - type: Transform - pos: -35.5,-43.5 - parent: 2 - - type: Strap - unbuckleSound: !type:SoundPathSpecifier - path: /Audio/Effects/unbuckle.ogg - buckleSound: !type:SoundPathSpecifier - path: /Audio/Effects/buckle.ogg - rotation: -0.3490658503988659 rad - buckledEntities: [] - uid: 5400 components: - type: Transform @@ -48116,26 +48070,6 @@ entities: - type: Transform pos: -69.5,-35.5 parent: 2 - - uid: 5355 - components: - - type: Transform - pos: -67.5,-35.5 - parent: 2 - - uid: 5357 - components: - - type: Transform - pos: -65.5,-35.5 - parent: 2 - - uid: 5358 - components: - - type: Transform - pos: -64.5,-38.5 - parent: 2 - - uid: 5359 - components: - - type: Transform - pos: -64.5,-39.5 - parent: 2 - uid: 5360 components: - type: Transform @@ -48913,12 +48847,6 @@ entities: - type: Transform pos: 1.5,-49.5 parent: 2 - - uid: 6916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-50.5 - parent: 2 - uid: 7006 components: - type: Transform @@ -49080,6 +49008,11 @@ entities: - type: Transform pos: -90.5,-1.5 parent: 2 + - uid: 10866 + components: + - type: Transform + pos: -36.5,-50.5 + parent: 2 - uid: 11404 components: - type: Transform @@ -49628,6 +49561,16 @@ entities: parent: 2 - proto: ChairFolding entities: + - uid: 2304 + components: + - type: Transform + pos: -63.5,-34.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: -65.5,-34.5 + parent: 2 - uid: 5668 components: - type: Transform @@ -49646,16 +49589,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-18.5 parent: 2 - - uid: 5675 - components: - - type: Transform - pos: -67.512764,-34.449528 - parent: 2 - - uid: 5676 - components: - - type: Transform - pos: -66.49714,-34.449528 - parent: 2 - uid: 5677 components: - type: Transform @@ -49737,12 +49670,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-31.5 parent: 2 - - uid: 5709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-43.5 - parent: 2 - uid: 5710 components: - type: Transform @@ -49763,6 +49690,21 @@ entities: parent: 2 - proto: ChairFoldingSpawnFolded entities: + - uid: 2307 + components: + - type: Transform + pos: -66.30197,-34.174698 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: -66.25737,-34.353092 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: -66.40602,-34.144962 + parent: 2 - uid: 6078 components: - type: Transform @@ -50855,11 +50797,6 @@ entities: - type: Transform pos: -66.5,-46.5 parent: 2 - - uid: 5804 - components: - - type: Transform - pos: -63.5,-36.5 - parent: 2 - uid: 5805 components: - type: Transform @@ -51029,11 +50966,6 @@ entities: - type: Transform pos: -48.5,-45.5 parent: 2 - - uid: 5825 - components: - - type: Transform - pos: -63.5,-37.5 - parent: 2 - uid: 5826 components: - type: Transform @@ -51132,11 +51064,6 @@ entities: - type: Transform pos: -38.5,-61.5 parent: 2 - - uid: 9730 - components: - - type: Transform - pos: -63.5,-39.5 - parent: 2 - proto: ClosetL3VirologyFilled entities: - uid: 7010 @@ -51186,11 +51113,6 @@ entities: parent: 2 - type: Pullable prevFixedRotation: True - - uid: 5856 - components: - - type: Transform - pos: -63.5,-38.5 - parent: 2 - uid: 5858 components: - type: Transform @@ -51236,29 +51158,6 @@ entities: - type: Transform pos: -30.5,-69.5 parent: 2 - - uid: 7334 - components: - - type: Transform - pos: -66.5,-38.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 10301 components: - type: Transform @@ -51665,23 +51564,6 @@ entities: parent: 5736 - type: Physics canCollide: False -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 5898 - components: - - type: Transform - pos: -29.36841,-47.54158 - parent: 2 - - uid: 5899 - components: - - type: Transform - pos: -29.259388,-42.643185 - parent: 2 - - uid: 5900 - components: - - type: Transform - pos: -32.552364,-41.83857 - parent: 2 - proto: ClothingEyesHudMedical entities: - uid: 6179 @@ -51820,6 +51702,20 @@ entities: parent: 6763 - type: Physics canCollide: False +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 5247 + components: + - type: Transform + parent: 4922 + - type: Physics + canCollide: False + - uid: 5337 + components: + - type: Transform + parent: 4922 + - type: Physics + canCollide: False - proto: ClothingHandsGlovesPowerglove entities: - uid: 14484 @@ -51841,13 +51737,6 @@ entities: - type: Transform pos: -70.43038,15.707579 parent: 2 -- proto: ClothingHeadFishCap - entities: - - uid: 5915 - components: - - type: Transform - pos: -34.706898,-50.361935 - parent: 2 - proto: ClothingHeadHatAnimalMonkey entities: - uid: 5916 @@ -52063,6 +51952,27 @@ entities: - type: Transform pos: -9.561438,-39.33183 parent: 2 +- proto: ClothingHeadHatHardhatWhite + entities: + - uid: 9242 + components: + - type: Transform + pos: -76.257416,-3.5680735 + parent: 2 + - type: HandheldLight + toggleActionEntity: 9730 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 9730 + - type: ActionsContainer - proto: ClothingHeadHatHardhatYellowDark entities: - uid: 5934 @@ -52138,6 +52048,27 @@ entities: rot: 0.3490658503988659 rad pos: -78.71441,-19.270542 parent: 2 + - uid: 19276 + components: + - type: Transform + pos: -38.095467,-43.586166 + parent: 2 + - uid: 19300 + components: + - type: Transform + pos: -29.642548,-47.197964 + parent: 2 + - uid: 19301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.583086,-42.289276 + parent: 2 + - uid: 19302 + components: + - type: Transform + pos: -29.186668,-42.093384 + parent: 2 - proto: ClothingHeadHatWarden entities: - uid: 5939 @@ -52253,23 +52184,6 @@ entities: parent: 10417 - type: Physics canCollide: False -- proto: ClothingHeadSafari - entities: - - uid: 5942 - components: - - type: Transform - pos: -29.446888,-42.272644 - parent: 2 - - uid: 5943 - components: - - type: Transform - pos: -29.462513,-47.259438 - parent: 2 - - uid: 5944 - components: - - type: Transform - pos: -32.53153,-41.411484 - parent: 2 - proto: ClothingHeadsetMining entities: - uid: 5945 @@ -52325,6 +52239,20 @@ entities: - type: Transform pos: 7.6731186,3.3369293 parent: 15964 +- proto: ClothingMaskBreathMedical + entities: + - uid: 5355 + components: + - type: Transform + parent: 4922 + - type: Physics + canCollide: False + - uid: 5357 + components: + - type: Transform + parent: 4922 + - type: Physics + canCollide: False - proto: ClothingMaskBreathMedicalSecurity entities: - uid: 5751 @@ -52534,6 +52462,18 @@ entities: - type: InsideEntityStorage - proto: ClothingMaskSterile entities: + - uid: 5358 + components: + - type: Transform + parent: 4922 + - type: Physics + canCollide: False + - uid: 5359 + components: + - type: Transform + parent: 4922 + - type: Physics + canCollide: False - uid: 5967 components: - type: Transform @@ -52843,6 +52783,14 @@ entities: - type: Transform pos: -71.3014,-74.41928 parent: 2 +- proto: ClothingOuterCoatLab + entities: + - uid: 5381 + components: + - type: Transform + parent: 4922 + - type: Physics + canCollide: False - proto: ClothingOuterCoatPirate entities: - uid: 5980 @@ -53022,6 +52970,14 @@ entities: - type: Transform pos: -97.55911,-33.454254 parent: 2 +- proto: ClothingOuterHospitalGown + entities: + - uid: 5380 + components: + - type: Transform + parent: 4922 + - type: Physics + canCollide: False - proto: ClothingOuterPoncho entities: - uid: 5987 @@ -53044,12 +53000,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.991442,1.4881992 parent: 2 - - uid: 20823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.61897,-37.58249 - parent: 2 - proto: ClothingOuterSuitIan entities: - uid: 5990 @@ -53086,6 +53036,51 @@ entities: - type: Transform pos: -117.51071,-45.572735 parent: 2 +- proto: ClothingOuterWinterCoat + entities: + - uid: 5883 + components: + - type: Transform + pos: -29.614609,-42.298786 + parent: 2 + - uid: 11372 + components: + - type: Transform + pos: -29.191765,-42.417717 + parent: 2 +- proto: ClothingOuterWinterColorGreen + entities: + - uid: 5942 + components: + - type: Transform + pos: -29.350332,-47.36299 + parent: 2 +- proto: ClothingOuterWinterColorWhite + entities: + - uid: 5804 + components: + - type: Transform + pos: -29.277655,-44.42035 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: -29.647644,-44.466602 + parent: 2 +- proto: ClothingOuterWinterColorYellow + entities: + - uid: 11530 + components: + - type: Transform + pos: -29.614609,-47.40924 + parent: 2 +- proto: ClothingOuterWinterSyndieCap + entities: + - uid: 5778 + components: + - type: Transform + pos: -29.499346,-48.39887 + parent: 2 - proto: ClothingShoesBootsCombat entities: - uid: 10611 @@ -53226,6 +53221,18 @@ entities: - type: Transform pos: 0.5854435,3.5719728 parent: 2 +- proto: ClothingShoesBootsWinter + entities: + - uid: 9203 + components: + - type: Transform + pos: -28.652065,-42.579464 + parent: 2 + - uid: 9930 + components: + - type: Transform + pos: -28.348146,-42.506783 + parent: 2 - proto: ClothingShoesBootsWinterEngi entities: - uid: 20361 @@ -53246,6 +53253,11 @@ entities: parent: 2 - proto: ClothingShoesBootsWinterSyndicate entities: + - uid: 19299 + components: + - type: Transform + pos: -29.41399,-48.656998 + parent: 2 - uid: 20360 components: - type: MetaData @@ -53321,13 +53333,6 @@ entities: - type: Transform pos: -47.5139,4.1650925 parent: 2 -- proto: ClothingShoesFlippers - entities: - - uid: 5998 - components: - - type: Transform - pos: -34.599068,-41.43598 - parent: 2 - proto: ClothingShoesHighheelBoots entities: - uid: 5753 @@ -53356,23 +53361,24 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingShoesTourist +- proto: ClothingShoesSkates entities: - - uid: 6009 - components: - - type: Transform - pos: -28.446888,-42.674435 - parent: 2 - - uid: 6010 + - uid: 5915 components: + - type: MetaData + name: коньки - type: Transform - pos: -28.415638,-49.605198 + pos: -29.539804,-49.40422 parent: 2 - - uid: 6011 + - uid: 11447 components: + - type: MetaData + name: коньки - type: Transform - pos: -32.46903,-42.89065 + pos: -29.272223,-49.255558 parent: 2 +- proto: ClothingShoesTourist + entities: - uid: 11028 components: - type: Transform @@ -53802,20 +53808,6 @@ entities: containers: solution@food: !type:ContainerSlot ent: 11006 -- proto: ClothingUniformRandomArmless - entities: - - uid: 8183 - components: - - type: Transform - pos: -36.73172,-41.33303 - parent: 2 -- proto: ClothingUniformRandomBra - entities: - - uid: 5778 - components: - - type: Transform - pos: -36.23149,-41.34467 - parent: 2 - proto: ClownRecorder entities: - uid: 11667 @@ -53836,11 +53828,6 @@ entities: - type: InsideEntityStorage - proto: Coal1 entities: - - uid: 11682 - components: - - type: Transform - pos: -38.75348,-43.080963 - parent: 2 - uid: 18241 components: - type: Transform @@ -53859,18 +53846,6 @@ entities: rot: -1.5707963267948966 rad pos: -62.88651,24.710257 parent: 2 - - uid: 20103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.078575,-42.654285 - parent: 2 - - uid: 20107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.877594,-42.382767 - parent: 2 - proto: Cobweb1 entities: - uid: 17302 @@ -55230,41 +55205,11 @@ entities: - type: Transform pos: -49.5,-64.5 parent: 2 - - uid: 11578 + - uid: 19275 components: - type: Transform - pos: -66.5,-37.5 + pos: -63.5,-37.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5770 - - 5865 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: CrateNPCHamlet entities: - uid: 6172 @@ -55874,28 +55819,6 @@ entities: parent: 2 - proto: CurtainsBlueOpen entities: - - uid: 187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-45.5 - parent: 2 - - uid: 188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-46.5 - parent: 2 - - uid: 717 - components: - - type: Transform - pos: -30.5,-45.5 - parent: 2 - - uid: 9907 - components: - - type: Transform - pos: -30.5,-46.5 - parent: 2 - uid: 12950 components: - type: Transform @@ -56033,6 +55956,26 @@ entities: parent: 2 - proto: CurtainsWhiteOpen entities: + - uid: 186 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 - uid: 17688 components: - type: Transform @@ -56483,6 +56426,15 @@ entities: parent: 2 - type: NavMapBeacon text: Северная ветка солнечных панелей +- proto: DefaultStationBeaconSurgery + entities: + - uid: 19267 + components: + - type: Transform + pos: -64.5,-37.5 + parent: 2 + - type: NavMapBeacon + text: Операционная - proto: DefaultStationBeaconTelecoms entities: - uid: 591 @@ -56932,6 +56884,12 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-64.5 parent: 2 + - uid: 6856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-30.5 + parent: 2 - uid: 7919 components: - type: Transform @@ -56978,12 +56936,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-79.5 parent: 2 - - uid: 14141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-30.5 - parent: 2 - uid: 14355 components: - type: Transform @@ -57209,12 +57161,6 @@ entities: - type: Transform pos: -0.5,-7.5 parent: 2 - - uid: 12510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-30.5 - parent: 2 - uid: 20211 components: - type: Transform @@ -59299,12 +59245,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-77.5 parent: 2 - - uid: 12512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-30.5 - parent: 2 - uid: 12513 components: - type: Transform @@ -59346,48 +59286,6 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,-30.5 parent: 2 - - uid: 14135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-30.5 - parent: 2 - - uid: 14136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-30.5 - parent: 2 - - uid: 14137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-30.5 - parent: 2 - - uid: 14138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-30.5 - parent: 2 - - uid: 14139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-30.5 - parent: 2 - - uid: 14140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-30.5 - parent: 2 - - uid: 14158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-31.5 - parent: 2 - uid: 14163 components: - type: Transform @@ -60314,12 +60212,6 @@ entities: - type: Transform pos: -44.5,-78.5 parent: 2 - - uid: 14157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-32.5 - parent: 2 - uid: 14160 components: - type: Transform @@ -60485,11 +60377,6 @@ entities: - type: Transform pos: -58.5,-37.5 parent: 2 - - uid: 7509 - components: - - type: Transform - pos: -64.5,-32.5 - parent: 2 - uid: 10596 components: - type: Transform @@ -61287,6 +61174,13 @@ entities: - type: Transform pos: -29.484865,-40.38954 parent: 2 +- proto: DrinkMilkCarton + entities: + - uid: 7164 + components: + - type: Transform + pos: -77.53645,-40.486164 + parent: 2 - proto: DrinkMREFlask entities: - uid: 13335 @@ -61341,6 +61235,18 @@ entities: - type: Transform pos: -29.85236,-25.411516 parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 19305 + components: + - type: Transform + pos: -38.77304,-42.6121 + parent: 2 + - uid: 19306 + components: + - type: Transform + pos: -38.08592,-42.56585 + parent: 2 - proto: DrinkSodaWaterBottleFull entities: - uid: 6777 @@ -61353,6 +61259,13 @@ entities: - type: Transform pos: 17.624935,-7.2808056 parent: 2 +- proto: DrinkSpaceLube + entities: + - uid: 7163 + components: + - type: Transform + pos: -76.910355,-42.432316 + parent: 2 - proto: DrinkTeacup entities: - uid: 19989 @@ -61396,6 +61309,11 @@ entities: - type: Transform pos: -77.741714,-19.495907 parent: 2 + - uid: 19303 + components: + - type: Transform + pos: -38.43116,-42.44031 + parent: 2 - proto: DrinkVodkaGlass entities: - uid: 19944 @@ -63930,7 +63848,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18 - 20328 - uid: 7077 components: @@ -63939,7 +63856,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18 - 20328 - uid: 7079 components: @@ -65480,210 +65396,6 @@ entities: rot: 3.141592653589793 rad pos: -60.410057,10.424296 parent: 2 -- proto: FloorAzureWaterEntity - entities: - - uid: 3719 - components: - - type: Transform - pos: -34.5,-47.5 - parent: 2 - - uid: 3829 - components: - - type: Transform - pos: -35.5,-48.5 - parent: 2 - - uid: 4771 - components: - - type: Transform - pos: -34.5,-48.5 - parent: 2 - - uid: 4776 - components: - - type: Transform - pos: -39.5,-48.5 - parent: 2 - - uid: 4792 - components: - - type: Transform - pos: -39.5,-45.5 - parent: 2 - - uid: 6243 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 2 - - uid: 7163 - components: - - type: Transform - pos: -32.5,-45.5 - parent: 2 - - uid: 7164 - components: - - type: Transform - pos: -32.5,-48.5 - parent: 2 - - uid: 7165 - components: - - type: Transform - pos: -32.5,-47.5 - parent: 2 - - uid: 7166 - components: - - type: Transform - pos: -32.5,-49.5 - parent: 2 - - uid: 7167 - components: - - type: Transform - pos: -37.5,-48.5 - parent: 2 - - uid: 7168 - components: - - type: Transform - pos: -37.5,-49.5 - parent: 2 - - uid: 7169 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 2 - - uid: 7170 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 2 - - uid: 7171 - components: - - type: Transform - pos: -36.5,-46.5 - parent: 2 - - uid: 7172 - components: - - type: Transform - pos: -33.5,-47.5 - parent: 2 - - uid: 7173 - components: - - type: Transform - pos: -33.5,-45.5 - parent: 2 - - uid: 7174 - components: - - type: Transform - pos: -34.5,-45.5 - parent: 2 - - uid: 7175 - components: - - type: Transform - pos: -35.5,-45.5 - parent: 2 - - uid: 7176 - components: - - type: Transform - pos: -36.5,-48.5 - parent: 2 - - uid: 7177 - components: - - type: Transform - pos: -36.5,-45.5 - parent: 2 - - uid: 7178 - components: - - type: Transform - pos: -32.5,-46.5 - parent: 2 - - uid: 7179 - components: - - type: Transform - pos: -39.5,-46.5 - parent: 2 - - uid: 7180 - components: - - type: Transform - pos: -38.5,-48.5 - parent: 2 - - uid: 7181 - components: - - type: Transform - pos: -37.5,-45.5 - parent: 2 - - uid: 7182 - components: - - type: Transform - pos: -33.5,-48.5 - parent: 2 - - uid: 7183 - components: - - type: Transform - pos: -34.5,-49.5 - parent: 2 - - uid: 7184 - components: - - type: Transform - pos: -35.5,-49.5 - parent: 2 - - uid: 7185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-46.5 - parent: 2 - - uid: 7186 - components: - - type: Transform - pos: -36.5,-47.5 - parent: 2 - - uid: 7187 - components: - - type: Transform - pos: -39.5,-49.5 - parent: 2 - - uid: 7188 - components: - - type: Transform - pos: -38.5,-49.5 - parent: 2 - - uid: 7189 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 2 - - uid: 7190 - components: - - type: Transform - pos: -34.5,-46.5 - parent: 2 - - uid: 7191 - components: - - type: Transform - pos: -33.5,-49.5 - parent: 2 - - uid: 7192 - components: - - type: Transform - pos: -33.5,-46.5 - parent: 2 - - uid: 7193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-47.5 - parent: 2 - - uid: 7194 - components: - - type: Transform - pos: -36.5,-49.5 - parent: 2 - - uid: 7196 - components: - - type: Transform - pos: -38.5,-46.5 - parent: 2 - - uid: 7197 - components: - - type: Transform - pos: -37.5,-47.5 - parent: 2 - proto: FloorDrain entities: - uid: 6596 @@ -65694,13 +65406,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 7204 - components: - - type: Transform - pos: -29.5,-43.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 7205 components: - type: Transform @@ -65730,13 +65435,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 7210 - components: - - type: Transform - pos: -29.5,-48.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 9945 components: - type: Transform @@ -66153,13 +65851,50 @@ entities: rot: 1.5707963267948966 rad pos: -49.575886,14.399256 parent: 2 -- proto: FloraTreeLarge03 +- proto: FloraTreeChristmas01 entities: - - uid: 7220 + - uid: 19307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.405964,-18.764057 + pos: -49.19194,-17.961992 + parent: 2 +- proto: FloraTreeConifer02 + entities: + - uid: 450 + components: + - type: Transform + pos: -40.004272,-42.68744 + parent: 2 + - uid: 10867 + components: + - type: Transform + pos: -32.562675,-77.786354 + parent: 2 +- proto: FloraTreeSnow01 + entities: + - uid: 10267 + components: + - type: Transform + pos: -70.04553,-26.336075 + parent: 2 +- proto: FloraTreeSnow02 + entities: + - uid: 14214 + components: + - type: Transform + pos: -35.517467,4.708497 + parent: 2 +- proto: FloraTreeSnow03 + entities: + - uid: 449 + components: + - type: Transform + pos: -32.149952,-42.162617 + parent: 2 + - uid: 14213 + components: + - type: Transform + pos: -32.061207,3.883422 parent: 2 - proto: FoamBlade entities: @@ -66375,11 +66110,6 @@ entities: parent: 2 - proto: FoodKebabSkewer entities: - - uid: 7236 - components: - - type: Transform - pos: -38.581837,-42.231678 - parent: 2 - uid: 7237 components: - type: Transform @@ -66391,11 +66121,6 @@ entities: - type: Transform pos: -62.78428,24.504608 parent: 2 - - uid: 11668 - components: - - type: Transform - pos: -38.51407,-42.411858 - parent: 2 - proto: FoodMealCubancarp entities: - uid: 18962 @@ -66431,13 +66156,6 @@ entities: - type: Transform pos: -31.48126,-37.23111 parent: 2 -- proto: FoodMealPigblanket - entities: - - uid: 7235 - components: - - type: Transform - pos: -33.489662,-42.224876 - parent: 2 - proto: FoodMealPotatoYaki entities: - uid: 11103 @@ -66479,14 +66197,6 @@ entities: - type: Transform pos: 11.21048,-2.545971 parent: 17265 -- proto: FoodMeatHuman - entities: - - uid: 12188 - components: - - type: Transform - rot: -0.4014257279586958 rad - pos: -67.73993,-38.45675 - parent: 2 - proto: FoodMeatRotten entities: - uid: 17356 @@ -82932,8 +82642,6 @@ entities: pos: -40.5,-46.5 parent: 2 - type: DeviceNetwork - deviceLists: - - 18 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9102 @@ -82972,9 +82680,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 18 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9106 @@ -83707,9 +83412,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 18 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9147 @@ -84260,9 +83962,6 @@ entities: - type: Transform pos: -28.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 18 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9210 @@ -89857,11 +89556,6 @@ entities: - type: Transform pos: -69.5,-42.5 parent: 2 - - uid: 9930 - components: - - type: Transform - pos: -29.5,-43.5 - parent: 2 - uid: 9933 components: - type: Transform @@ -90200,11 +89894,6 @@ entities: parent: 17265 - proto: KitchenElectricGrill entities: - - uid: 9972 - components: - - type: Transform - pos: -33.5,-42.5 - parent: 2 - uid: 9973 components: - type: Transform @@ -90361,12 +90050,6 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,-28.5 parent: 2 - - uid: 12030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-38.5 - parent: 2 - proto: LampBanana entities: - uid: 4 @@ -90468,13 +90151,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: LeftArmHuman - entities: - - uid: 12033 - components: - - type: Transform - pos: -68.04411,-38.038406 - parent: 2 - proto: LGBTQHandyFlag entities: - uid: 17168 @@ -90617,6 +90293,27 @@ entities: rot: -0.8726646259971648 rad pos: -37.862,-17.65678 parent: 2 +- proto: LightTree03 + entities: + - uid: 446 + components: + - type: Transform + pos: -31.997433,-42.791363 + parent: 2 +- proto: LightTree04 + entities: + - uid: 14218 + components: + - type: Transform + pos: -7.647705,-25.998001 + parent: 2 +- proto: LightTree05 + entities: + - uid: 11560 + components: + - type: Transform + pos: -35.963203,-42.434574 + parent: 2 - proto: LightTubeCrystalBlue entities: - uid: 3511 @@ -93790,6 +93487,11 @@ entities: - type: InsideEntityStorage - proto: NitrousOxideCanister entities: + - uid: 4788 + components: + - type: Transform + pos: -63.5,-38.5 + parent: 2 - uid: 10146 components: - type: Transform @@ -93805,6 +93507,21 @@ entities: - type: Transform pos: -57.5,6.5 parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 4776 + components: + - type: Transform + pos: -66.45885,-36.406113 + parent: 2 + - type: GasTank + toggleActionEntity: 4781 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 4781 - proto: NodeScanner entities: - uid: 48 @@ -93869,16 +93586,6 @@ entities: - type: InsideEntityStorage - proto: Ointment1 entities: - - uid: 10155 - components: - - type: Transform - pos: -35.367302,-41.6094 - parent: 2 - - uid: 10156 - components: - - type: Transform - pos: -34.37772,-43.61982 - parent: 2 - uid: 18309 components: - type: Transform @@ -93899,15 +93606,15 @@ entities: parent: 2 - proto: OperatingTable entities: - - uid: 672 + - uid: 10157 components: - type: Transform - pos: -68.5,-37.5 + pos: -48.5,-64.5 parent: 2 - - uid: 10157 + - uid: 19270 components: - type: Transform - pos: -48.5,-64.5 + pos: -64.5,-37.5 parent: 2 - proto: OpporozidoneBeakerSmall entities: @@ -95190,7 +94897,7 @@ entities: - uid: 19146 components: - type: Transform - pos: -67.26947,-35.368767 + pos: -68.48227,-38.603554 parent: 2 - uid: 19148 components: @@ -95739,16 +95446,6 @@ entities: parent: 2 - proto: PlushieCarp entities: - - uid: 10267 - components: - - type: Transform - pos: -38.64621,-46.647854 - parent: 2 - - uid: 10268 - components: - - type: Transform - pos: -35.94661,-48.788998 - parent: 2 - uid: 19025 components: - type: Transform @@ -95801,13 +95498,6 @@ entities: - type: Transform pos: -86.52887,-36.612915 parent: 2 - - uid: 10281 - components: - - type: MetaData - name: плюшевый тканеед - - type: Transform - pos: -50.02825,-18.824352 - parent: 2 - uid: 10283 components: - type: MetaData @@ -95863,18 +95553,8 @@ entities: - type: Transform pos: -72.5099,-29.455275 parent: 2 - - uid: 10297 - components: - - type: Transform - pos: -38.25058,-47.974434 - parent: 2 - proto: PlushieSharkPink entities: - - uid: 10299 - components: - - type: Transform - pos: -34.195923,-48.069916 - parent: 2 - uid: 18884 components: - type: Transform @@ -96370,13 +96050,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-39.5 parent: 2 -- proto: PosterLegitNanomichiAd - entities: - - uid: 10325 - components: - - type: Transform - pos: -63.5,-33.5 - parent: 2 - proto: PosterLegitNanotrasenLogo entities: - uid: 10355 @@ -96475,7 +96148,7 @@ entities: - uid: 10362 components: - type: MetaData - desc: Вы смотрите на карту и понимаете что там зачеркнуто название Moose + desc: Вы смотрите на карту и понимаете, что там зачеркнуто название "Moose". name: Карта Maus - type: Transform rot: 3.141592653589793 rad @@ -97182,6 +96855,12 @@ entities: rot: 3.141592653589793 rad pos: -42.5,0.5 parent: 2 + - uid: 9999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-38.5 + parent: 2 - uid: 10121 components: - type: Transform @@ -97523,23 +97202,11 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-4.5 parent: 2 - - uid: 10474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-4.5 - parent: 2 - uid: 10475 components: - type: Transform pos: -21.5,-1.5 parent: 2 - - uid: 10476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-6.5 - parent: 2 - uid: 10477 components: - type: Transform @@ -98597,6 +98264,24 @@ entities: - type: Transform pos: -21.5,-64.5 parent: 2 + - uid: 19262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-34.5 + parent: 2 + - uid: 19263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-37.5 + parent: 2 + - uid: 19268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-37.5 + parent: 2 - uid: 20312 components: - type: Transform @@ -99251,6 +98936,12 @@ entities: isDamageActive: False - proto: PoweredlightRed entities: + - uid: 10474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-6.5 + parent: 2 - uid: 10719 components: - type: Transform @@ -99385,11 +99076,6 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,-64.5 parent: 2 - - uid: 6149 - components: - - type: Transform - pos: -64.5,-34.5 - parent: 2 - uid: 7052 components: - type: Transform @@ -99603,18 +99289,6 @@ entities: rot: -1.5707963267948966 rad pos: -70.5,-38.5 parent: 2 - - uid: 10755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-38.5 - parent: 2 - - uid: 10756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-39.5 - parent: 2 - uid: 10757 components: - type: Transform @@ -100449,11 +100123,6 @@ entities: - type: Transform pos: -80.5,-27.5 parent: 2 - - uid: 10866 - components: - - type: Transform - pos: -65.5,-34.5 - parent: 2 - uid: 10868 components: - type: Transform @@ -101533,11 +101202,6 @@ entities: parent: 17265 - proto: RandomDrinkBottle entities: - - uid: 10990 - components: - - type: Transform - pos: -36.5,-42.5 - parent: 2 - uid: 19021 components: - type: Transform @@ -101551,11 +101215,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,-78.5 parent: 2 - - uid: 10991 - components: - - type: Transform - pos: -35.5,-43.5 - parent: 2 - uid: 12505 components: - type: Transform @@ -102427,6 +102086,12 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,-2.5 parent: 2 + - uid: 737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-35.5 + parent: 2 - uid: 1100 components: - type: Transform @@ -102510,6 +102175,12 @@ entities: - type: Transform pos: -59.5,3.5 parent: 2 + - uid: 2311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-35.5 + parent: 2 - uid: 2506 components: - type: Transform @@ -102535,6 +102206,11 @@ entities: - type: Transform pos: -99.5,-55.5 parent: 2 + - uid: 3285 + components: + - type: Transform + pos: -63.5,-35.5 + parent: 2 - uid: 3993 components: - type: Transform @@ -104819,15 +104495,6 @@ entities: - type: Transform pos: -29.450113,11.493721 parent: 2 -- proto: SawAdvanced - entities: - - uid: 5865 - components: - - type: Transform - parent: 11578 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: SawElectric entities: - uid: 12224 @@ -104842,15 +104509,6 @@ entities: - type: Transform pos: -69.30553,-32.54311 parent: 2 -- proto: ScalpelLaser - entities: - - uid: 5770 - components: - - type: Transform - parent: 11578 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ScalpelShiv entities: - uid: 7403 @@ -104940,12 +104598,6 @@ entities: rot: -1.5707963267948966 rad pos: -71.36076,-38.632042 parent: 2 - - uid: 18487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.78964,-37.533417 - parent: 2 - proto: ScrapMopBucket entities: - uid: 18488 @@ -105001,11 +104653,6 @@ entities: rot: 1.5707963267948966 rad pos: -72.60918,-37.977932 parent: 2 - - uid: 18485 - components: - - type: Transform - pos: -67.154816,-38.557713 - parent: 2 - proto: Screen entities: - uid: 6117 @@ -105054,13 +104701,6 @@ entities: - type: Transform pos: -14.5,-12.5 parent: 2 -- proto: SecurityWhistle - entities: - - uid: 11447 - components: - - type: Transform - pos: -36.44825,-50.494072 - parent: 2 - proto: SeedExtractor entities: - uid: 11449 @@ -105073,19 +104713,6 @@ entities: - type: Transform pos: -12.5,11.5 parent: 2 -- proto: ShadowTree04 - entities: - - uid: 18463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.75,-78 - parent: 2 - - type: PointLight - energy: 10 - color: '#8B008BFF' - radius: 2.5 - offset: -0.625,0 - proto: ShardCrystalGreen entities: - uid: 19131 @@ -105097,11 +104724,6 @@ entities: - type: InsideEntityStorage - proto: ShardGlass entities: - - uid: 9242 - components: - - type: Transform - pos: -67.436584,-37.812122 - parent: 2 - uid: 10384 components: - type: Transform @@ -105643,6 +105265,54 @@ entities: - 18470 - 18472 - 18473 +- proto: ShelfRGlass + entities: + - uid: 4922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-36.5 + parent: 2 + - type: Storage + storedItems: + 5247: + position: 0,0 + _rotation: East + 5355: + position: 0,1 + _rotation: South + 5337: + position: 2,0 + _rotation: East + 5357: + position: 1,1 + _rotation: South + 5358: + position: 2,1 + _rotation: South + 5359: + position: 3,1 + _rotation: South + 5380: + position: 0,3 + _rotation: South + 5381: + position: 2,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 5247 + - 5337 + - 5355 + - 5357 + - 5358 + - 5359 + - 5380 + - 5381 - proto: Shiv entities: - uid: 19072 @@ -106519,6 +106189,18 @@ entities: - Pressed: Toggle - proto: SignalButtonDirectional entities: + - uid: 5770 + components: + - type: MetaData + desc: Эта кнопка болтирует шлюз, ведущий в операционную. + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10991: + - Pressed: DoorBolt - uid: 10792 components: - type: MetaData @@ -107564,10 +107246,11 @@ entities: parent: 16090 - proto: SignSurgery entities: - - uid: 11613 + - uid: 10297 components: - type: Transform - pos: -66.5,-36.5 + rot: 1.5707963267948966 rad + pos: -63.5,-33.5 parent: 2 - proto: SignTelecomms entities: @@ -107678,6 +107361,12 @@ entities: parent: 2 - proto: SinkWide entities: + - uid: 4913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-36.5 + parent: 2 - uid: 8444 components: - type: Transform @@ -107909,8 +107598,11 @@ entities: - uid: 11651 components: - type: Transform + anchored: False pos: -51.5,23.5 parent: 2 + - type: Physics + bodyType: Dynamic - uid: 11652 components: - type: Transform @@ -110768,28 +110460,56 @@ entities: parent: 17265 - proto: SteelBench entities: - - uid: 10274 + - uid: 447 components: - type: Transform - pos: -10.5,8.5 + pos: -37.5,-42.5 parent: 2 - - uid: 10976 + - uid: 448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-19.5 + pos: -38.5,-42.5 parent: 2 - - uid: 12116 + - uid: 451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-42.5 + pos: -33.5,-43.5 parent: 2 - - uid: 12117 + - uid: 452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-42.5 + pos: -37.5,-43.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: -34.5,-43.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 10274 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 10976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-19.5 parent: 2 - uid: 12121 components: @@ -112412,11 +112132,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 12192 - components: - - type: Transform - pos: -68.25839,-37.586117 - parent: 2 - proto: SyringeSaline entities: - uid: 15699 @@ -113298,11 +113013,6 @@ entities: - type: Transform pos: -27.5,-25.5 parent: 2 - - uid: 12374 - components: - - type: Transform - pos: -36.5,-42.5 - parent: 2 - uid: 12375 components: - type: Transform @@ -113325,11 +113035,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-6.5 parent: 2 - - uid: 12379 - components: - - type: Transform - pos: -33.5,-42.5 - parent: 2 - uid: 12382 components: - type: Transform @@ -113534,6 +113239,12 @@ entities: - type: Transform pos: -65.5,-25.5 parent: 2 + - uid: 2310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-36.5 + parent: 2 - uid: 5482 components: - type: Transform @@ -113759,12 +113470,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-41.5 parent: 2 - - uid: 7011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-38.5 - parent: 2 - uid: 7842 components: - type: Transform @@ -115438,16 +115143,6 @@ entities: - type: Transform pos: -17.882828,-57.198826 parent: 2 - - uid: 12570 - components: - - type: Transform - pos: -29.540638,-47.440193 - parent: 2 - - uid: 12571 - components: - - type: Transform - pos: -29.478138,-42.56952 - parent: 2 - uid: 20701 components: - type: Transform @@ -115468,21 +115163,6 @@ entities: parent: 2 - proto: UniformShortsRedWithTop entities: - - uid: 12572 - components: - - type: Transform - pos: -29.446888,-49.377693 - parent: 2 - - uid: 12573 - components: - - type: Transform - pos: -29.493763,-44.389965 - parent: 2 - - uid: 12574 - components: - - type: Transform - pos: -32.521114,-42.223984 - parent: 2 - uid: 20818 components: - type: Transform @@ -116153,6 +115833,11 @@ entities: parent: 15668 - proto: VendingMachineWinter entities: + - uid: 9037 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 - uid: 11196 components: - type: Transform @@ -124193,2554 +123878,2509 @@ entities: rot: 3.141592653589793 rad pos: -74.5,-72.5 parent: 2 -- proto: WallRockBasalt +- proto: WallRockAndesite entities: - - uid: 499 + - uid: 11578 components: - type: Transform pos: -84.5,-17.5 parent: 2 - - uid: 512 + - uid: 11613 components: - type: Transform pos: -84.5,-18.5 parent: 2 - - uid: 797 + - uid: 11619 components: - type: Transform pos: -69.5,14.5 parent: 2 - - uid: 4588 + - uid: 11635 components: - type: Transform pos: -21.5,17.5 parent: 2 - - uid: 5247 + - uid: 11639 components: - type: Transform pos: -81.5,-73.5 parent: 2 - - uid: 5337 + - uid: 11668 components: - type: Transform pos: -83.5,-12.5 parent: 2 - - uid: 5380 + - uid: 11682 components: - type: Transform pos: -84.5,-7.5 parent: 2 - - uid: 5381 + - uid: 11823 components: - type: Transform pos: -83.5,-10.5 parent: 2 - - uid: 5521 + - uid: 11880 components: - type: Transform pos: 0.5,8.5 parent: 2 - - uid: 5537 + - uid: 12030 components: - type: Transform pos: 1.5,8.5 parent: 2 - - uid: 5883 + - uid: 12033 components: - type: Transform pos: -9.5,16.5 parent: 2 - - uid: 5992 + - uid: 12058 components: - type: Transform pos: -0.5,2.5 parent: 2 - - uid: 6849 + - uid: 12077 components: - type: Transform pos: -87.5,-68.5 parent: 2 - - uid: 6854 + - uid: 12116 components: - type: Transform pos: -85.5,-69.5 parent: 2 - - uid: 6855 + - uid: 12117 components: - type: Transform pos: -87.5,-71.5 parent: 2 - - uid: 6856 + - uid: 12188 components: - type: Transform pos: -85.5,-68.5 parent: 2 - - uid: 6859 + - uid: 12192 components: - type: Transform pos: -86.5,-68.5 parent: 2 - - uid: 6860 + - uid: 12223 components: - type: Transform pos: -88.5,-68.5 parent: 2 - - uid: 7249 + - uid: 12261 components: - type: Transform pos: -84.5,-14.5 parent: 2 - - uid: 7268 + - uid: 12374 components: - type: Transform pos: -0.5,3.5 parent: 2 - - uid: 9037 + - uid: 12379 components: - type: Transform pos: -83.5,-11.5 parent: 2 - - uid: 9203 + - uid: 12510 components: - type: Transform pos: -84.5,-10.5 parent: 2 - - uid: 9827 + - uid: 12512 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 9878 + - uid: 12570 components: - type: Transform pos: 1.5,2.5 parent: 2 - - uid: 9906 + - uid: 12571 components: - type: Transform pos: -81.5,-71.5 parent: 2 - - uid: 9999 + - uid: 12572 components: - type: Transform pos: -82.5,-5.5 parent: 2 - - uid: 10086 + - uid: 12573 components: - type: Transform pos: -1.5,2.5 parent: 2 - - uid: 10168 + - uid: 12574 components: - type: Transform pos: 1.5,3.5 parent: 2 - - uid: 10243 + - uid: 12633 components: - type: Transform pos: -82.5,-18.5 parent: 2 - - uid: 10510 + - uid: 13751 components: - type: Transform pos: -81.5,-74.5 parent: 2 - - uid: 10533 + - uid: 13773 components: - type: Transform pos: -84.5,-69.5 parent: 2 - - uid: 10567 + - uid: 13775 components: - type: Transform pos: -53.5,5.5 parent: 2 - - uid: 10759 + - uid: 13776 components: - type: Transform pos: -81.5,-5.5 parent: 2 - - uid: 10867 + - uid: 13921 components: - type: Transform pos: -54.5,5.5 parent: 2 - - uid: 11002 + - uid: 13922 components: - type: Transform pos: -83.5,-5.5 parent: 2 - - uid: 11021 + - uid: 13930 components: - type: Transform pos: -83.5,-6.5 parent: 2 - - uid: 11155 + - uid: 13933 components: - type: Transform pos: -74.5,-21.5 parent: 2 - - uid: 11156 + - uid: 13934 components: - type: Transform pos: -75.5,-21.5 parent: 2 - - uid: 11157 + - uid: 13935 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 11289 + - uid: 13937 components: - type: Transform pos: -80.5,-5.5 parent: 2 - - uid: 11372 + - uid: 13938 components: - type: Transform pos: -77.5,-21.5 parent: 2 - - uid: 11527 + - uid: 13940 components: - type: Transform pos: -81.5,-72.5 parent: 2 - - uid: 11530 + - uid: 13941 components: - type: Transform pos: -81.5,-75.5 parent: 2 - - uid: 11560 + - uid: 13942 components: - type: Transform pos: -48.5,-82.5 parent: 2 - - uid: 11823 + - uid: 13943 components: - type: Transform pos: -50.5,-77.5 parent: 2 - - uid: 12058 + - uid: 13944 components: - type: Transform pos: -71.5,-80.5 parent: 2 - - uid: 12077 + - uid: 13945 components: - type: Transform pos: -50.5,-78.5 parent: 2 - - uid: 12211 - components: - - type: Transform - pos: -0.5,7.5 - parent: 15964 - - uid: 12215 - components: - - type: Transform - pos: -0.5,6.5 - parent: 15964 - - uid: 12216 - components: - - type: Transform - pos: -1.5,6.5 - parent: 15964 - - uid: 12217 - components: - - type: Transform - pos: -1.5,5.5 - parent: 15964 - - uid: 12218 - components: - - type: Transform - pos: -0.5,3.5 - parent: 15964 - - uid: 12223 + - uid: 13946 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 12261 + - uid: 13947 components: - type: Transform pos: 0.5,2.5 parent: 2 - - uid: 12633 + - uid: 13948 components: - type: Transform pos: -50.5,-79.5 parent: 2 - - uid: 13751 + - uid: 13949 components: - type: Transform pos: -82.5,-70.5 parent: 2 - - uid: 13773 + - uid: 13950 components: - type: Transform pos: -80.5,-67.5 parent: 2 - - uid: 13775 + - uid: 13951 components: - type: Transform pos: -83.5,-7.5 parent: 2 - - uid: 13776 + - uid: 13952 components: - type: Transform pos: -81.5,-70.5 parent: 2 - - uid: 13921 + - uid: 13953 components: - type: Transform pos: -43.5,-82.5 parent: 2 - - uid: 13922 + - uid: 13954 components: - type: Transform pos: -40.5,-83.5 parent: 2 - - uid: 13930 + - uid: 13955 components: - type: Transform pos: -52.5,13.5 parent: 2 - - uid: 13933 + - uid: 13956 components: - type: Transform pos: -53.5,10.5 parent: 2 - - uid: 13934 + - uid: 13957 components: - type: Transform pos: -65.5,24.5 parent: 2 - - uid: 13935 + - uid: 13958 components: - type: Transform pos: -58.5,24.5 parent: 2 - - uid: 13937 + - uid: 13959 components: - type: Transform pos: -52.5,14.5 parent: 2 - - uid: 13938 + - uid: 13960 components: - type: Transform pos: -41.5,-82.5 parent: 2 - - uid: 13940 + - uid: 13961 components: - type: Transform pos: -57.5,24.5 parent: 2 - - uid: 13941 + - uid: 13962 components: - type: Transform pos: -42.5,-83.5 parent: 2 - - uid: 13942 + - uid: 13963 components: - type: Transform pos: -52.5,15.5 parent: 2 - - uid: 13943 + - uid: 13964 components: - type: Transform pos: -52.5,16.5 parent: 2 - - uid: 13944 + - uid: 13965 components: - type: Transform pos: -52.5,17.5 parent: 2 - - uid: 13945 + - uid: 13966 components: - type: Transform pos: -52.5,18.5 parent: 2 - - uid: 13946 + - uid: 13967 components: - type: Transform pos: -51.5,15.5 parent: 2 - - uid: 13947 + - uid: 13968 components: - type: Transform pos: -52.5,20.5 parent: 2 - - uid: 13948 + - uid: 13969 components: - type: Transform pos: -53.5,21.5 parent: 2 - - uid: 13949 + - uid: 13970 components: - type: Transform pos: -51.5,21.5 parent: 2 - - uid: 13950 + - uid: 13971 components: - type: Transform pos: -51.5,16.5 parent: 2 - - uid: 13951 + - uid: 13972 components: - type: Transform pos: -50.5,17.5 parent: 2 - - uid: 13952 + - uid: 13973 components: - type: Transform pos: -51.5,18.5 parent: 2 - - uid: 13953 + - uid: 13974 components: - type: Transform pos: -50.5,18.5 parent: 2 - - uid: 13954 + - uid: 13975 components: - type: Transform pos: -50.5,16.5 parent: 2 - - uid: 13955 + - uid: 13976 components: - type: Transform pos: -51.5,20.5 parent: 2 - - uid: 13956 + - uid: 13977 components: - type: Transform pos: -51.5,19.5 parent: 2 - - uid: 13957 + - uid: 13978 components: - type: Transform pos: -52.5,21.5 parent: 2 - - uid: 13958 + - uid: 13979 components: - type: Transform pos: -51.5,17.5 parent: 2 - - uid: 13959 + - uid: 13980 components: - type: Transform pos: -50.5,15.5 parent: 2 - - uid: 13960 + - uid: 13981 components: - type: Transform pos: -51.5,13.5 parent: 2 - - uid: 13961 + - uid: 13982 components: - type: Transform pos: -51.5,11.5 parent: 2 - - uid: 13962 + - uid: 13983 components: - type: Transform pos: -51.5,12.5 parent: 2 - - uid: 13963 + - uid: 13984 components: - type: Transform pos: -51.5,14.5 parent: 2 - - uid: 13964 + - uid: 13985 components: - type: Transform pos: -65.5,27.5 parent: 2 - - uid: 13965 + - uid: 13986 components: - type: Transform pos: -57.5,27.5 parent: 2 - - uid: 13966 + - uid: 13987 components: - type: Transform pos: -63.5,27.5 parent: 2 - - uid: 13967 + - uid: 13988 components: - type: Transform pos: -53.5,22.5 parent: 2 - - uid: 13968 + - uid: 13989 components: - type: Transform pos: -52.5,19.5 parent: 2 - - uid: 13969 + - uid: 13990 components: - type: Transform pos: -53.5,24.5 parent: 2 - - uid: 13970 + - uid: 13991 components: - type: Transform pos: -53.5,23.5 parent: 2 - - uid: 13971 + - uid: 13992 components: - type: Transform pos: -69.5,23.5 parent: 2 - - uid: 13972 + - uid: 13993 components: - type: Transform pos: -68.5,23.5 parent: 2 - - uid: 13973 + - uid: 13994 components: - type: Transform pos: -67.5,24.5 parent: 2 - - uid: 13974 + - uid: 13995 components: - type: Transform pos: -56.5,24.5 parent: 2 - - uid: 13975 + - uid: 13996 components: - type: Transform pos: -58.5,27.5 parent: 2 - - uid: 13976 + - uid: 13997 components: - type: Transform pos: -60.5,27.5 parent: 2 - - uid: 13977 + - uid: 13998 components: - type: Transform pos: -64.5,27.5 parent: 2 - - uid: 13978 + - uid: 13999 components: - type: Transform pos: -66.5,27.5 parent: 2 - - uid: 13979 + - uid: 14000 components: - type: Transform pos: -55.5,25.5 parent: 2 - - uid: 13980 + - uid: 14001 components: - type: Transform pos: -64.5,25.5 parent: 2 - - uid: 13981 + - uid: 14002 components: - type: Transform pos: -65.5,26.5 parent: 2 - - uid: 13982 + - uid: 14003 components: - type: Transform pos: -63.5,25.5 parent: 2 - - uid: 13983 + - uid: 14004 components: - type: Transform pos: -56.5,25.5 parent: 2 - - uid: 13984 + - uid: 14005 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 13985 + - uid: 14006 components: - type: Transform pos: -58.5,25.5 parent: 2 - - uid: 13986 + - uid: 14007 components: - type: Transform pos: -54.5,23.5 parent: 2 - - uid: 13987 + - uid: 14008 components: - type: Transform pos: -52.5,22.5 parent: 2 - - uid: 13988 + - uid: 14009 components: - type: Transform pos: -54.5,25.5 parent: 2 - - uid: 13989 + - uid: 14010 components: - type: Transform pos: -67.5,26.5 parent: 2 - - uid: 13990 + - uid: 14011 components: - type: Transform pos: -68.5,25.5 parent: 2 - - uid: 13991 + - uid: 14012 components: - type: Transform pos: -63.5,26.5 parent: 2 - - uid: 13992 + - uid: 14013 components: - type: Transform pos: -57.5,25.5 parent: 2 - - uid: 13993 + - uid: 14016 components: - type: Transform pos: -57.5,26.5 parent: 2 - - uid: 13994 + - uid: 14017 components: - type: Transform pos: -58.5,26.5 parent: 2 - - uid: 13995 + - uid: 14018 components: - type: Transform pos: -59.5,26.5 parent: 2 - - uid: 13996 + - uid: 14019 components: - type: Transform pos: -54.5,24.5 parent: 2 - - uid: 13997 + - uid: 14020 components: - type: Transform pos: -55.5,26.5 parent: 2 - - uid: 13998 + - uid: 14021 components: - type: Transform pos: -65.5,25.5 parent: 2 - - uid: 13999 + - uid: 14022 components: - type: Transform pos: -66.5,26.5 parent: 2 - - uid: 14000 + - uid: 14023 components: - type: Transform pos: -55.5,24.5 parent: 2 - - uid: 14001 + - uid: 14024 components: - type: Transform pos: -64.5,26.5 parent: 2 - - uid: 14002 + - uid: 14025 components: - type: Transform pos: -59.5,25.5 parent: 2 - - uid: 14003 + - uid: 14026 components: - type: Transform pos: -60.5,25.5 parent: 2 - - uid: 14004 + - uid: 14027 components: - type: Transform pos: -60.5,26.5 parent: 2 - - uid: 14005 + - uid: 14028 components: - type: Transform pos: -61.5,25.5 parent: 2 - - uid: 14006 + - uid: 14029 components: - type: Transform pos: -61.5,26.5 parent: 2 - - uid: 14007 + - uid: 14030 components: - type: Transform pos: -62.5,26.5 parent: 2 - - uid: 14008 + - uid: 14031 components: - type: Transform pos: -62.5,25.5 parent: 2 - - uid: 14009 + - uid: 14032 components: - type: Transform pos: -66.5,25.5 parent: 2 - - uid: 14010 + - uid: 14033 components: - type: Transform pos: -67.5,25.5 parent: 2 - - uid: 14011 + - uid: 14034 components: - type: Transform pos: -68.5,24.5 parent: 2 - - uid: 14012 + - uid: 14036 components: - type: Transform pos: -40.5,2.5 parent: 2 - - uid: 14013 + - uid: 14037 components: - type: Transform pos: -64.5,24.5 parent: 2 - - uid: 14016 + - uid: 14038 components: - type: Transform pos: -40.5,1.5 parent: 2 - - uid: 14017 + - uid: 14039 components: - type: Transform pos: -21.5,20.5 parent: 2 - - uid: 14018 + - uid: 14040 components: - type: Transform pos: -19.5,25.5 parent: 2 - - uid: 14019 + - uid: 14041 components: - type: Transform pos: -21.5,19.5 parent: 2 - - uid: 14020 + - uid: 14042 components: - type: Transform pos: -17.5,18.5 parent: 2 - - uid: 14021 + - uid: 14043 components: - type: Transform pos: -18.5,25.5 parent: 2 - - uid: 14022 + - uid: 14044 components: - type: Transform pos: -18.5,23.5 parent: 2 - - uid: 14023 + - uid: 14046 components: - type: Transform pos: -17.5,16.5 parent: 2 - - uid: 14024 + - uid: 14047 components: - type: Transform pos: -17.5,22.5 parent: 2 - - uid: 14025 + - uid: 14048 components: - type: Transform pos: -17.5,17.5 parent: 2 - - uid: 14026 + - uid: 14049 components: - type: Transform pos: -17.5,23.5 parent: 2 - - uid: 14027 + - uid: 14050 components: - type: Transform pos: -22.5,16.5 parent: 2 - - uid: 14028 + - uid: 14051 components: - type: Transform pos: -17.5,20.5 parent: 2 - - uid: 14029 + - uid: 14052 components: - type: Transform pos: -21.5,15.5 parent: 2 - - uid: 14030 + - uid: 14053 components: - type: Transform pos: -20.5,15.5 parent: 2 - - uid: 14031 + - uid: 14054 components: - type: Transform pos: -18.5,21.5 parent: 2 - - uid: 14032 + - uid: 14055 components: - type: Transform pos: -20.5,17.5 parent: 2 - - uid: 14033 + - uid: 14056 components: - type: Transform pos: -19.5,19.5 parent: 2 - - uid: 14034 + - uid: 14057 components: - type: Transform pos: -20.5,16.5 parent: 2 - - uid: 14036 + - uid: 14058 components: - type: Transform pos: -19.5,17.5 parent: 2 - - uid: 14037 + - uid: 14059 components: - type: Transform pos: -20.5,18.5 parent: 2 - - uid: 14038 + - uid: 14060 components: - type: Transform pos: -18.5,20.5 parent: 2 - - uid: 14039 + - uid: 14061 components: - type: Transform pos: -18.5,19.5 parent: 2 - - uid: 14040 + - uid: 14062 components: - type: Transform pos: -19.5,16.5 parent: 2 - - uid: 14041 + - uid: 14063 components: - type: Transform pos: -23.5,16.5 parent: 2 - - uid: 14042 + - uid: 14064 components: - type: Transform pos: -24.5,15.5 parent: 2 - - uid: 14043 + - uid: 14066 components: - type: Transform pos: -19.5,15.5 parent: 2 - - uid: 14044 + - uid: 14067 components: - type: Transform pos: -23.5,15.5 parent: 2 - - uid: 14046 + - uid: 14068 components: - type: Transform pos: -19.5,24.5 parent: 2 - - uid: 14047 + - uid: 14069 components: - type: Transform pos: -20.5,23.5 parent: 2 - - uid: 14048 + - uid: 14070 components: - type: Transform pos: -18.5,24.5 parent: 2 - - uid: 14049 + - uid: 14071 components: - type: Transform pos: -17.5,21.5 parent: 2 - - uid: 14050 + - uid: 14072 components: - type: Transform pos: -17.5,19.5 parent: 2 - - uid: 14051 + - uid: 14073 components: - type: Transform pos: -17.5,15.5 parent: 2 - - uid: 14052 + - uid: 14074 components: - type: Transform pos: -21.5,16.5 parent: 2 - - uid: 14053 + - uid: 14075 components: - type: Transform pos: -21.5,18.5 parent: 2 - - uid: 14054 + - uid: 14076 components: - type: Transform pos: -18.5,15.5 parent: 2 - - uid: 14055 + - uid: 14077 components: - type: Transform pos: -20.5,19.5 parent: 2 - - uid: 14056 + - uid: 14078 components: - type: Transform pos: -18.5,17.5 parent: 2 - - uid: 14057 + - uid: 14080 components: - type: Transform pos: -20.5,22.5 parent: 2 - - uid: 14058 + - uid: 14081 components: - type: Transform pos: -20.5,21.5 parent: 2 - - uid: 14059 + - uid: 14082 components: - type: Transform pos: -19.5,21.5 parent: 2 - - uid: 14060 + - uid: 14085 components: - type: Transform pos: -19.5,22.5 parent: 2 - - uid: 14061 + - uid: 14086 components: - type: Transform pos: -19.5,20.5 parent: 2 - - uid: 14062 + - uid: 14087 components: - type: Transform pos: -18.5,22.5 parent: 2 - - uid: 14063 + - uid: 14088 components: - type: Transform pos: -15.5,14.5 parent: 2 - - uid: 14064 + - uid: 14089 components: - type: Transform pos: -16.5,14.5 parent: 2 - - uid: 14066 + - uid: 14090 components: - type: Transform pos: -14.5,16.5 parent: 2 - - uid: 14067 + - uid: 14091 components: - type: Transform pos: -15.5,16.5 parent: 2 - - uid: 14068 + - uid: 14092 components: - type: Transform pos: -14.5,14.5 parent: 2 - - uid: 14069 + - uid: 14093 components: - type: Transform pos: -15.5,15.5 parent: 2 - - uid: 14070 + - uid: 14094 components: - type: Transform pos: -13.5,16.5 parent: 2 - - uid: 14071 + - uid: 14095 components: - type: Transform pos: -13.5,14.5 parent: 2 - - uid: 14072 + - uid: 14099 components: - type: Transform pos: -12.5,15.5 parent: 2 - - uid: 14073 + - uid: 14101 components: - type: Transform pos: -12.5,16.5 parent: 2 - - uid: 14074 + - uid: 14103 components: - type: Transform pos: -12.5,14.5 parent: 2 - - uid: 14075 + - uid: 14106 components: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 14076 + - uid: 14107 components: - type: Transform pos: -10.5,13.5 parent: 2 - - uid: 14077 + - uid: 14108 components: - type: Transform pos: -10.5,15.5 parent: 2 - - uid: 14078 + - uid: 14109 components: - type: Transform pos: -10.5,14.5 parent: 2 - - uid: 14080 + - uid: 14110 components: - type: Transform pos: -10.5,16.5 parent: 2 - - uid: 14081 + - uid: 14121 components: - type: Transform pos: -11.5,16.5 parent: 2 - - uid: 14082 + - uid: 14122 components: - type: Transform pos: -11.5,15.5 parent: 2 - - uid: 14085 + - uid: 14123 components: - type: Transform pos: -24.5,17.5 parent: 2 - - uid: 14086 + - uid: 14124 components: - type: Transform pos: -24.5,16.5 parent: 2 - - uid: 14087 + - uid: 14125 components: - type: Transform pos: -23.5,18.5 parent: 2 - - uid: 14088 + - uid: 14126 components: - type: Transform pos: -23.5,19.5 parent: 2 - - uid: 14089 + - uid: 14127 components: - type: Transform pos: -22.5,18.5 parent: 2 - - uid: 14090 + - uid: 14128 components: - type: Transform pos: -23.5,17.5 parent: 2 - - uid: 14091 + - uid: 14129 components: - type: Transform pos: -22.5,19.5 parent: 2 - - uid: 14092 + - uid: 14131 components: - type: Transform pos: -22.5,17.5 parent: 2 - - uid: 14093 + - uid: 14135 components: - type: Transform pos: -21.5,23.5 parent: 2 - - uid: 14094 + - uid: 14136 components: - type: Transform pos: -21.5,22.5 parent: 2 - - uid: 14095 + - uid: 14137 components: - type: Transform pos: -11.5,21.5 parent: 2 - - uid: 14099 + - uid: 14138 components: - type: Transform pos: -14.5,17.5 parent: 2 - - uid: 14101 + - uid: 14139 components: - type: Transform pos: -13.5,18.5 parent: 2 - - uid: 14103 + - uid: 14140 components: - type: Transform pos: -13.5,17.5 parent: 2 - - uid: 14106 + - uid: 14141 components: - type: Transform pos: -12.5,17.5 parent: 2 - - uid: 14107 + - uid: 14145 components: - type: Transform pos: -14.5,18.5 parent: 2 - - uid: 14108 + - uid: 14146 components: - type: Transform pos: -13.5,19.5 parent: 2 - - uid: 14109 + - uid: 14147 components: - type: Transform pos: -21.5,21.5 parent: 2 - - uid: 14110 + - uid: 14148 components: - type: Transform - pos: -7.5,-26.5 + pos: -11.5,18.5 parent: 2 - - uid: 14121 + - uid: 14149 components: - type: Transform pos: -40.5,3.5 parent: 2 - - uid: 14122 + - uid: 14150 components: - type: Transform pos: -51.5,10.5 parent: 2 - - uid: 14123 + - uid: 14151 components: - type: Transform pos: -49.5,10.5 parent: 2 - - uid: 14124 + - uid: 14152 components: - type: Transform pos: -50.5,10.5 parent: 2 - - uid: 14125 + - uid: 14153 components: - type: Transform pos: -50.5,11.5 parent: 2 - - uid: 14126 + - uid: 14156 components: - type: Transform pos: -50.5,14.5 parent: 2 - - uid: 14127 + - uid: 14157 components: - type: Transform pos: -50.5,13.5 parent: 2 - - uid: 14128 + - uid: 14158 components: - type: Transform pos: -50.5,12.5 parent: 2 - - uid: 14129 + - uid: 14159 components: - type: Transform pos: -69.5,22.5 parent: 2 - - uid: 14131 + - uid: 14162 components: - type: Transform pos: -70.5,22.5 parent: 2 - - uid: 14145 + - uid: 14165 components: - type: Transform pos: -75.5,21.5 parent: 2 - - uid: 14146 + - uid: 14166 components: - type: Transform pos: -75.5,20.5 parent: 2 - - uid: 14147 + - uid: 14167 components: - type: Transform pos: -75.5,19.5 parent: 2 - - uid: 14148 + - uid: 14168 components: - type: Transform pos: -76.5,20.5 parent: 2 - - uid: 14149 + - uid: 14169 components: - type: Transform pos: -76.5,19.5 parent: 2 - - uid: 14150 + - uid: 14170 components: - type: Transform pos: -76.5,18.5 parent: 2 - - uid: 14151 + - uid: 14171 components: - type: Transform pos: -75.5,18.5 parent: 2 - - uid: 14152 + - uid: 14172 components: - type: Transform pos: -75.5,17.5 parent: 2 - - uid: 14153 + - uid: 14173 components: - type: Transform pos: -75.5,16.5 parent: 2 - - uid: 14156 + - uid: 14174 components: - type: Transform pos: -74.5,16.5 parent: 2 - - uid: 14159 + - uid: 14175 components: - type: Transform pos: -73.5,16.5 parent: 2 - - uid: 14162 + - uid: 14176 components: - type: Transform pos: -72.5,16.5 parent: 2 - - uid: 14165 + - uid: 14177 components: - type: Transform pos: -71.5,16.5 parent: 2 - - uid: 14166 + - uid: 14179 components: - type: Transform pos: -76.5,17.5 parent: 2 - - uid: 14167 + - uid: 14180 components: - type: Transform pos: -76.5,16.5 parent: 2 - - uid: 14168 + - uid: 14181 components: - type: Transform pos: -72.5,14.5 parent: 2 - - uid: 14169 + - uid: 14182 components: - type: Transform pos: -72.5,15.5 parent: 2 - - uid: 14170 + - uid: 14184 components: - type: Transform pos: -76.5,15.5 parent: 2 - - uid: 14171 + - uid: 14185 components: - type: Transform pos: -76.5,14.5 parent: 2 - - uid: 14172 + - uid: 14187 components: - type: Transform pos: -78.5,16.5 parent: 2 - - uid: 14173 + - uid: 14188 components: - type: Transform pos: -78.5,15.5 parent: 2 - - uid: 14174 + - uid: 14189 components: - type: Transform pos: -77.5,14.5 parent: 2 - - uid: 14175 + - uid: 14190 components: - type: Transform pos: -78.5,14.5 parent: 2 - - uid: 14176 + - uid: 14191 components: - type: Transform pos: -77.5,18.5 parent: 2 - - uid: 14177 + - uid: 14192 components: - type: Transform pos: -68.5,22.5 parent: 2 - - uid: 14179 + - uid: 14193 components: - type: Transform pos: -71.5,14.5 parent: 2 - - uid: 14180 + - uid: 14194 components: - type: Transform pos: -73.5,15.5 parent: 2 - - uid: 14181 + - uid: 14195 components: - type: Transform pos: -73.5,14.5 parent: 2 - - uid: 14182 + - uid: 14196 components: - type: Transform pos: -71.5,15.5 parent: 2 - - uid: 14184 + - uid: 14197 components: - type: Transform pos: -68.5,15.5 parent: 2 - - uid: 14185 + - uid: 14198 components: - type: Transform pos: -68.5,16.5 parent: 2 - - uid: 14187 + - uid: 14199 components: - type: Transform pos: -9.5,-35.5 parent: 2 - - uid: 14188 + - uid: 14200 components: - type: Transform pos: -8.5,-35.5 parent: 2 - - uid: 14189 + - uid: 14201 components: - type: Transform pos: -9.5,-37.5 parent: 2 - - uid: 14190 + - uid: 14202 components: - type: Transform pos: -8.5,-37.5 parent: 2 - - uid: 14191 + - uid: 14203 components: - type: Transform pos: -8.5,-36.5 parent: 2 - - uid: 14192 + - uid: 14204 components: - type: Transform pos: -9.5,-41.5 parent: 2 - - uid: 14193 + - uid: 14205 components: - type: Transform pos: -8.5,-41.5 parent: 2 - - uid: 14194 + - uid: 14206 components: - type: Transform pos: -8.5,-40.5 parent: 2 - - uid: 14195 + - uid: 14207 components: - type: Transform pos: -8.5,-39.5 parent: 2 - - uid: 14196 + - uid: 14208 components: - type: Transform pos: -8.5,-38.5 parent: 2 - - uid: 14197 + - uid: 14209 components: - type: Transform pos: -8.5,-42.5 parent: 2 - - uid: 14198 + - uid: 14210 components: - type: Transform pos: -7.5,-41.5 parent: 2 - - uid: 14199 + - uid: 14211 components: - type: Transform pos: -7.5,-42.5 parent: 2 - - uid: 14200 + - uid: 14212 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 14201 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 2 - - uid: 14202 - components: - - type: Transform - pos: -7.5,-25.5 - parent: 2 - - uid: 14203 + - uid: 14215 components: - type: Transform - pos: -6.5,-25.5 + pos: -11.5,17.5 parent: 2 - - uid: 14204 + - uid: 14216 components: - type: Transform pos: -5.5,-25.5 parent: 2 - - uid: 14205 + - uid: 14217 components: - type: Transform pos: -4.5,-25.5 parent: 2 - - uid: 14206 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 2 - - uid: 14207 + - uid: 14227 components: - type: Transform - pos: -6.5,-26.5 + pos: -11.5,19.5 parent: 2 - - uid: 14208 + - uid: 14228 components: - type: Transform pos: -6.5,-27.5 parent: 2 - - uid: 14209 + - uid: 14229 components: - type: Transform pos: -5.5,-26.5 parent: 2 - - uid: 14210 + - uid: 14230 components: - type: Transform pos: -5.5,-27.5 parent: 2 - - uid: 14211 + - uid: 14231 components: - type: Transform pos: -4.5,-26.5 parent: 2 - - uid: 14212 + - uid: 14232 components: - type: Transform pos: -8.5,-27.5 parent: 2 - - uid: 14213 + - uid: 14233 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 14214 + - uid: 14234 components: - type: Transform pos: -7.5,-28.5 parent: 2 - - uid: 14215 + - uid: 14235 components: - type: Transform pos: -8.5,-29.5 parent: 2 - - uid: 14216 + - uid: 14236 components: - type: Transform pos: -8.5,-28.5 parent: 2 - - uid: 14217 + - uid: 14237 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 14218 + - uid: 14238 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 14227 + - uid: 14239 components: - type: Transform pos: -9.5,-62.5 parent: 2 - - uid: 14228 + - uid: 14240 components: - type: Transform pos: -9.5,-61.5 parent: 2 - - uid: 14229 + - uid: 14243 components: - type: Transform pos: -9.5,-60.5 parent: 2 - - uid: 14230 + - uid: 14245 components: - type: Transform pos: -10.5,-63.5 parent: 2 - - uid: 14231 + - uid: 14247 components: - type: Transform pos: -10.5,-62.5 parent: 2 - - uid: 14232 + - uid: 14248 components: - type: Transform pos: -10.5,-61.5 parent: 2 - - uid: 14233 + - uid: 14249 components: - type: Transform pos: -11.5,-62.5 parent: 2 - - uid: 14234 + - uid: 14250 components: - type: Transform pos: -12.5,-62.5 parent: 2 - - uid: 14235 + - uid: 14251 components: - type: Transform pos: -11.5,-63.5 parent: 2 - - uid: 14236 + - uid: 14252 components: - type: Transform pos: -13.5,-64.5 parent: 2 - - uid: 14237 + - uid: 14253 components: - type: Transform - pos: -13.5,-63.5 + pos: -16.5,-63.5 parent: 2 - - uid: 14238 + - uid: 14254 components: - type: Transform pos: -13.5,-62.5 parent: 2 - - uid: 14239 + - uid: 14255 components: - type: Transform pos: -12.5,-61.5 parent: 2 - - uid: 14240 + - uid: 14266 components: - type: Transform pos: -11.5,-61.5 parent: 2 - - uid: 14243 + - uid: 14267 components: - type: Transform - pos: -15.5,-62.5 + pos: -15.5,-64.5 parent: 2 - - uid: 14245 + - uid: 14268 components: - type: Transform pos: -19.5,-62.5 parent: 2 - - uid: 14247 + - uid: 14270 components: - type: Transform pos: -18.5,-62.5 parent: 2 - - uid: 14248 + - uid: 14273 components: - type: Transform pos: -18.5,-63.5 parent: 2 - - uid: 14249 + - uid: 14275 components: - type: Transform pos: -17.5,-61.5 parent: 2 - - uid: 14250 - components: - - type: Transform - pos: -16.5,-62.5 - parent: 2 - - uid: 14251 + - uid: 14277 components: - type: Transform - pos: -16.5,-63.5 + pos: -12.5,18.5 parent: 2 - - uid: 14252 + - uid: 14282 components: - type: Transform pos: -17.5,-63.5 parent: 2 - - uid: 14253 + - uid: 14283 components: - type: Transform - pos: -15.5,-63.5 + pos: -14.5,-63.5 parent: 2 - - uid: 14254 + - uid: 14289 components: - type: Transform - pos: -14.5,-62.5 + pos: -13.5,-63.5 parent: 2 - - uid: 14255 + - uid: 14291 components: - type: Transform - pos: -14.5,-63.5 + pos: -15.5,-63.5 parent: 2 - - uid: 14266 + - uid: 14292 components: - type: Transform pos: -18.5,-64.5 parent: 2 - - uid: 14267 + - uid: 14293 components: - type: Transform pos: -17.5,-64.5 parent: 2 - - uid: 14268 + - uid: 14294 components: - type: Transform pos: -16.5,-64.5 parent: 2 - - uid: 14270 + - uid: 14295 components: - type: Transform pos: -16.5,-61.5 parent: 2 - - uid: 14273 + - uid: 14296 components: - type: Transform pos: -50.5,-81.5 parent: 2 - - uid: 14275 + - uid: 14297 components: - type: Transform pos: -50.5,-80.5 parent: 2 - - uid: 14277 + - uid: 14298 components: - type: Transform pos: -50.5,-82.5 parent: 2 - - uid: 14282 + - uid: 14299 components: - type: Transform pos: -49.5,-82.5 parent: 2 - - uid: 14283 + - uid: 14300 components: - type: Transform pos: -51.5,-82.5 parent: 2 - - uid: 14289 + - uid: 14301 components: - type: Transform pos: -51.5,-83.5 parent: 2 - - uid: 14291 + - uid: 14302 components: - type: Transform pos: -10.5,11.5 parent: 2 - - uid: 14292 + - uid: 14303 components: - type: Transform pos: -94.5,-35.5 parent: 2 - - uid: 14293 + - uid: 14304 components: - type: Transform pos: -94.5,-36.5 parent: 2 - - uid: 14294 + - uid: 14305 components: - type: Transform pos: -93.5,-35.5 parent: 2 - - uid: 14295 + - uid: 14306 components: - type: Transform pos: -93.5,-36.5 parent: 2 - - uid: 14296 + - uid: 14307 components: - type: Transform pos: -92.5,-35.5 parent: 2 - - uid: 14297 + - uid: 14308 components: - type: Transform pos: -92.5,-36.5 parent: 2 - - uid: 14298 + - uid: 14309 components: - type: Transform pos: -91.5,-35.5 parent: 2 - - uid: 14299 + - uid: 14310 components: - type: Transform pos: -90.5,-35.5 parent: 2 - - uid: 14300 + - uid: 14311 components: - type: Transform pos: -90.5,-36.5 parent: 2 - - uid: 14301 + - uid: 14312 components: - type: Transform pos: -90.5,-37.5 parent: 2 - - uid: 14302 + - uid: 14313 components: - type: Transform pos: -91.5,-37.5 parent: 2 - - uid: 14303 + - uid: 14314 components: - type: Transform pos: -92.5,-37.5 parent: 2 - - uid: 14304 + - uid: 14315 components: - type: Transform pos: -97.5,-34.5 parent: 2 - - uid: 14305 + - uid: 14316 components: - type: Transform pos: -97.5,-35.5 parent: 2 - - uid: 14306 + - uid: 14317 components: - type: Transform pos: -96.5,-34.5 parent: 2 - - uid: 14307 + - uid: 14318 components: - type: Transform pos: -96.5,-35.5 parent: 2 - - uid: 14308 + - uid: 14319 components: - type: Transform pos: -95.5,-34.5 parent: 2 - - uid: 14309 + - uid: 14321 components: - type: Transform pos: -95.5,-35.5 parent: 2 - - uid: 14310 + - uid: 14322 components: - type: Transform pos: -95.5,-36.5 parent: 2 - - uid: 14311 + - uid: 14323 components: - type: Transform pos: -96.5,-36.5 parent: 2 - - uid: 14312 + - uid: 14324 components: - type: Transform pos: -98.5,-34.5 parent: 2 - - uid: 14313 + - uid: 14325 components: - type: Transform pos: -96.5,-33.5 parent: 2 - - uid: 14314 + - uid: 14326 components: - type: Transform pos: -96.5,-32.5 parent: 2 - - uid: 14315 + - uid: 14327 components: - type: Transform pos: -97.5,-32.5 parent: 2 - - uid: 14316 + - uid: 14328 components: - type: Transform pos: -98.5,-32.5 parent: 2 - - uid: 14317 + - uid: 14329 components: - type: Transform pos: -98.5,-33.5 parent: 2 - - uid: 14318 + - uid: 14330 components: - type: Transform pos: -95.5,-32.5 parent: 2 - - uid: 14319 + - uid: 14331 components: - type: Transform pos: -95.5,-33.5 parent: 2 - - uid: 14321 + - uid: 14332 components: - type: Transform pos: -99.5,-28.5 parent: 2 - - uid: 14322 + - uid: 14336 components: - type: Transform pos: -99.5,-29.5 parent: 2 - - uid: 14323 + - uid: 14339 components: - type: Transform pos: -99.5,-30.5 parent: 2 - - uid: 14324 + - uid: 14343 components: - type: Transform pos: -99.5,-31.5 parent: 2 - - uid: 14325 + - uid: 14344 components: - type: Transform pos: -100.5,-30.5 parent: 2 - - uid: 14326 + - uid: 14345 components: - type: Transform pos: -100.5,-31.5 parent: 2 - - uid: 14327 + - uid: 14346 components: - type: Transform pos: -101.5,-30.5 parent: 2 - - uid: 14328 + - uid: 14347 components: - type: Transform pos: -99.5,-32.5 parent: 2 - - uid: 14329 + - uid: 14348 components: - type: Transform pos: -102.5,-28.5 parent: 2 - - uid: 14330 + - uid: 14349 components: - type: Transform pos: -102.5,-29.5 parent: 2 - - uid: 14331 + - uid: 14350 components: - type: Transform pos: -101.5,-29.5 parent: 2 - - uid: 14332 + - uid: 14351 components: - type: Transform pos: -103.5,-28.5 parent: 2 - - uid: 14336 + - uid: 14365 components: - type: Transform pos: -79.5,8.5 parent: 2 - - uid: 14339 + - uid: 14366 components: - type: Transform pos: -70.5,14.5 parent: 2 - - uid: 14343 + - uid: 14385 components: - type: Transform pos: -85.5,-19.5 parent: 2 - - uid: 14344 + - uid: 14386 components: - type: Transform pos: -84.5,-19.5 parent: 2 - - uid: 14345 + - uid: 14387 components: - type: Transform pos: -84.5,-20.5 parent: 2 - - uid: 14346 + - uid: 14388 components: - type: Transform pos: -83.5,-20.5 parent: 2 - - uid: 14347 + - uid: 14390 components: - type: Transform pos: -82.5,-21.5 parent: 2 - - uid: 14348 + - uid: 14391 components: - type: Transform pos: -82.5,-20.5 parent: 2 - - uid: 14349 + - uid: 14399 components: - type: Transform pos: -83.5,-19.5 parent: 2 - - uid: 14350 + - uid: 14400 components: - type: Transform pos: -82.5,-19.5 parent: 2 - - uid: 14351 + - uid: 14401 components: - type: Transform pos: -81.5,-19.5 parent: 2 - - uid: 14365 + - uid: 14402 components: - type: Transform pos: -83.5,-9.5 parent: 2 - - uid: 14366 + - uid: 14403 components: - type: Transform pos: -81.5,-20.5 parent: 2 - - uid: 14385 + - uid: 14404 components: - type: Transform pos: -78.5,13.5 parent: 2 - - uid: 14386 + - uid: 14405 components: - type: Transform pos: -78.5,12.5 parent: 2 - - uid: 14387 + - uid: 14406 components: - type: Transform pos: -78.5,11.5 parent: 2 - - uid: 14388 + - uid: 14407 components: - type: Transform pos: -78.5,9.5 parent: 2 - - uid: 14390 + - uid: 14419 components: - type: Transform pos: -78.5,6.5 parent: 2 - - uid: 14391 + - uid: 14421 components: - type: Transform pos: -78.5,5.5 parent: 2 - - uid: 14399 + - uid: 14422 components: - type: Transform pos: -77.5,13.5 parent: 2 - - uid: 14400 + - uid: 14423 components: - type: Transform pos: -77.5,12.5 parent: 2 - - uid: 14401 + - uid: 14424 components: - type: Transform pos: -77.5,11.5 parent: 2 - - uid: 14402 + - uid: 14425 components: - type: Transform pos: -77.5,10.5 parent: 2 - - uid: 14403 + - uid: 14426 components: - type: Transform pos: -77.5,9.5 parent: 2 - - uid: 14404 + - uid: 14427 components: - type: Transform pos: -77.5,8.5 parent: 2 - - uid: 14405 + - uid: 14428 components: - type: Transform pos: -77.5,7.5 parent: 2 - - uid: 14406 + - uid: 14429 components: - type: Transform pos: -77.5,6.5 parent: 2 - - uid: 14407 + - uid: 14431 components: - type: Transform pos: -77.5,5.5 parent: 2 - - uid: 14419 + - uid: 14461 components: - type: Transform pos: -77.5,4.5 parent: 2 - - uid: 14421 + - uid: 14463 components: - type: Transform pos: -78.5,4.5 parent: 2 - - uid: 14422 + - uid: 14464 components: - type: Transform pos: -79.5,5.5 parent: 2 - - uid: 14423 + - uid: 14466 components: - type: Transform pos: -79.5,9.5 parent: 2 - - uid: 14424 + - uid: 14468 components: - type: Transform pos: -79.5,10.5 parent: 2 - - uid: 14425 + - uid: 14469 components: - type: Transform pos: -79.5,11.5 parent: 2 - - uid: 14426 + - uid: 14500 components: - type: Transform pos: -79.5,12.5 parent: 2 - - uid: 14427 + - uid: 14501 components: - type: Transform pos: -79.5,7.5 parent: 2 - - uid: 14428 + - uid: 14502 components: - type: Transform pos: -79.5,13.5 parent: 2 - - uid: 14429 + - uid: 14503 components: - type: Transform pos: -53.5,11.5 parent: 2 - - uid: 14431 + - uid: 14504 components: - type: Transform pos: -53.5,12.5 parent: 2 - - uid: 14461 + - uid: 14505 components: - type: Transform pos: -81.5,-67.5 parent: 2 - - uid: 14463 + - uid: 14506 components: - type: Transform pos: -82.5,-67.5 parent: 2 - - uid: 14464 + - uid: 14507 components: - type: Transform pos: -82.5,-68.5 parent: 2 - - uid: 14466 + - uid: 14508 components: - type: Transform pos: -83.5,-68.5 parent: 2 - - uid: 14468 + - uid: 14509 components: - type: Transform pos: -82.5,-69.5 parent: 2 - - uid: 14469 + - uid: 14527 components: - type: Transform pos: -83.5,-69.5 parent: 2 - - uid: 14500 + - uid: 14529 components: - type: Transform pos: -51.5,-77.5 parent: 2 - - uid: 14501 + - uid: 14532 components: - type: Transform pos: -84.5,-50.5 parent: 2 - - uid: 14502 + - uid: 14533 components: - type: Transform pos: -84.5,-51.5 parent: 2 - - uid: 14503 + - uid: 14534 components: - type: Transform pos: -85.5,-50.5 parent: 2 - - uid: 14504 + - uid: 14535 components: - type: Transform pos: -85.5,-51.5 parent: 2 - - uid: 14505 + - uid: 14536 components: - type: Transform pos: -86.5,-50.5 parent: 2 - - uid: 14506 + - uid: 14537 components: - type: Transform pos: -86.5,-51.5 parent: 2 - - uid: 14507 + - uid: 14548 components: - type: Transform pos: -87.5,-50.5 parent: 2 - - uid: 14508 + - uid: 14550 components: - type: Transform pos: -87.5,-51.5 parent: 2 - - uid: 14509 + - uid: 14551 components: - type: Transform pos: -88.5,-51.5 parent: 2 - - uid: 14527 + - uid: 14552 components: - type: Transform pos: -90.5,-42.5 parent: 2 - - uid: 14529 + - uid: 14553 components: - type: Transform pos: -91.5,-42.5 parent: 2 - - uid: 14532 + - uid: 14554 components: - type: Transform pos: -60.5,-76.5 parent: 2 - - uid: 14533 + - uid: 14555 components: - type: Transform pos: -60.5,-77.5 parent: 2 - - uid: 14534 + - uid: 14556 components: - type: Transform pos: -59.5,-77.5 parent: 2 - - uid: 14535 + - uid: 14559 components: - type: Transform pos: -58.5,-77.5 parent: 2 - - uid: 14536 + - uid: 14560 components: - type: Transform pos: -57.5,-77.5 parent: 2 - - uid: 14537 + - uid: 14561 components: - type: Transform pos: -57.5,-76.5 parent: 2 - - uid: 14548 + - uid: 14562 components: - type: Transform pos: -28.5,-73.5 parent: 2 - - uid: 14550 + - uid: 14563 components: - type: Transform pos: -27.5,-73.5 parent: 2 - - uid: 14551 + - uid: 14566 components: - type: Transform pos: -27.5,-74.5 parent: 2 - - uid: 14552 + - uid: 14571 components: - type: Transform pos: -26.5,-74.5 parent: 2 - - uid: 14553 + - uid: 14572 components: - type: Transform pos: -26.5,-73.5 parent: 2 - - uid: 14554 + - uid: 14580 components: - type: Transform pos: -28.5,-72.5 parent: 2 - - uid: 14555 + - uid: 14586 components: - type: Transform pos: -17.5,-60.5 parent: 2 - - uid: 14556 + - uid: 14587 components: - type: Transform pos: -11.5,-60.5 parent: 2 - - uid: 14559 + - uid: 14588 components: - type: Transform pos: -77.5,17.5 parent: 2 - - uid: 14560 + - uid: 14589 components: - type: Transform pos: -52.5,10.5 parent: 2 - - uid: 14561 + - uid: 14590 components: - type: Transform pos: -52.5,11.5 parent: 2 - - uid: 14562 + - uid: 14591 components: - type: Transform pos: -52.5,12.5 parent: 2 - - uid: 14563 + - uid: 14593 components: - type: Transform pos: -16.5,16.5 parent: 2 - - uid: 14566 + - uid: 14594 components: - type: Transform pos: -78.5,10.5 parent: 2 - - uid: 14571 + - uid: 14595 components: - type: Transform pos: -75.5,14.5 parent: 2 - - uid: 14572 + - uid: 14596 components: - type: Transform pos: -83.5,-50.5 parent: 2 - - uid: 14580 + - uid: 14599 components: - type: Transform pos: -42.5,-94.5 parent: 2 - - uid: 14586 + - uid: 14600 components: - type: Transform pos: -35.5,-96.5 parent: 2 - - uid: 14587 + - uid: 14602 components: - type: Transform pos: -31.5,-96.5 parent: 2 - - uid: 14588 + - uid: 14603 components: - type: Transform pos: -39.5,-96.5 parent: 2 - - uid: 14589 + - uid: 14604 components: - type: Transform pos: -38.5,-97.5 parent: 2 - - uid: 14590 + - uid: 14613 components: - type: Transform pos: -39.5,-97.5 parent: 2 - - uid: 14591 + - uid: 14614 components: - type: Transform pos: -40.5,-96.5 parent: 2 - - uid: 14593 + - uid: 14615 components: - type: Transform pos: -35.5,-97.5 parent: 2 - - uid: 14594 + - uid: 14616 components: - type: Transform pos: -35.5,-98.5 parent: 2 - - uid: 14595 + - uid: 14617 components: - type: Transform pos: -31.5,-97.5 parent: 2 - - uid: 14596 + - uid: 14618 components: - type: Transform pos: -32.5,-97.5 parent: 2 - - uid: 14599 + - uid: 14619 components: - type: Transform pos: -77.5,16.5 parent: 2 - - uid: 14600 + - uid: 14620 components: - type: Transform pos: -77.5,15.5 parent: 2 - - uid: 14602 + - uid: 14621 components: - type: Transform pos: -74.5,15.5 parent: 2 - - uid: 14603 + - uid: 14622 components: - type: Transform pos: -74.5,14.5 parent: 2 - - uid: 14604 + - uid: 14623 components: - type: Transform pos: -79.5,6.5 parent: 2 - - uid: 14613 + - uid: 14624 components: - type: Transform pos: -20.5,24.5 parent: 2 - - uid: 14614 + - uid: 14625 components: - type: Transform pos: -83.5,-51.5 parent: 2 - - uid: 14615 + - uid: 14626 components: - type: Transform pos: -54.5,4.5 parent: 2 - - uid: 14616 + - uid: 14627 components: - type: Transform pos: -53.5,4.5 parent: 2 - - uid: 14617 + - uid: 14628 components: - type: Transform pos: -52.5,4.5 parent: 2 - - uid: 14618 + - uid: 14629 components: - type: Transform pos: -52.5,3.5 parent: 2 - - uid: 14619 + - uid: 14630 components: - type: Transform pos: -52.5,2.5 parent: 2 - - uid: 14620 + - uid: 14633 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 14621 + - uid: 14634 components: - type: Transform pos: -53.5,1.5 parent: 2 - - uid: 14622 + - uid: 14635 components: - type: Transform pos: -54.5,1.5 parent: 2 - - uid: 14623 + - uid: 14636 components: - type: Transform pos: -54.5,0.5 parent: 2 - - uid: 14624 + - uid: 14638 components: - type: Transform pos: -51.5,1.5 parent: 2 - - uid: 14625 + - uid: 14639 components: - type: Transform pos: -54.5,3.5 parent: 2 - - uid: 14626 + - uid: 14641 components: - type: Transform pos: -53.5,3.5 parent: 2 - - uid: 14627 + - uid: 14642 components: - type: Transform pos: -53.5,2.5 parent: 2 - - uid: 14628 + - uid: 14643 components: - type: Transform pos: -53.5,6.5 parent: 2 - - uid: 14629 + - uid: 14644 components: - type: Transform pos: -54.5,6.5 parent: 2 - - uid: 14630 + - uid: 14645 components: - type: Transform pos: -51.5,4.5 parent: 2 - - uid: 14633 + - uid: 14646 components: - type: Transform pos: -40.5,-82.5 parent: 2 - - uid: 14634 + - uid: 14647 components: - type: Transform pos: -41.5,-83.5 parent: 2 - - uid: 14635 + - uid: 14648 components: - type: Transform pos: -42.5,-82.5 parent: 2 - - uid: 14636 + - uid: 14649 components: - type: Transform pos: -43.5,-83.5 parent: 2 - - uid: 14638 + - uid: 14650 components: - type: Transform pos: -45.5,-83.5 parent: 2 - - uid: 14639 + - uid: 14651 components: - type: Transform pos: -44.5,-83.5 parent: 2 - - uid: 14641 + - uid: 14652 components: - type: Transform pos: -46.5,-83.5 parent: 2 - - uid: 14642 + - uid: 14653 components: - type: Transform pos: -48.5,-83.5 parent: 2 - - uid: 14643 + - uid: 14654 components: - type: Transform pos: -48.5,-84.5 parent: 2 - - uid: 14644 + - uid: 14655 components: - type: Transform pos: -48.5,-85.5 parent: 2 - - uid: 14645 + - uid: 14656 components: - type: Transform pos: -48.5,-86.5 parent: 2 - - uid: 14646 + - uid: 14657 components: - type: Transform pos: -48.5,-87.5 parent: 2 - - uid: 14647 + - uid: 14659 components: - type: Transform pos: -48.5,-88.5 parent: 2 - - uid: 14648 + - uid: 14989 components: - type: Transform pos: -49.5,-84.5 parent: 2 - - uid: 14649 + - uid: 14990 components: - type: Transform pos: -49.5,-85.5 parent: 2 - - uid: 14650 + - uid: 14991 components: - type: Transform pos: -49.5,-88.5 parent: 2 - - uid: 14651 + - uid: 14992 components: - type: Transform pos: -49.5,-87.5 parent: 2 - - uid: 14652 + - uid: 14993 components: - type: Transform pos: -47.5,-83.5 parent: 2 - - uid: 14653 + - uid: 14994 components: - type: Transform pos: -48.5,-89.5 parent: 2 - - uid: 14654 + - uid: 15378 components: - type: Transform pos: -48.5,-90.5 parent: 2 - - uid: 14655 + - uid: 15379 components: - type: Transform pos: -48.5,-91.5 parent: 2 - - uid: 14656 + - uid: 15380 components: - type: Transform pos: -46.5,-91.5 parent: 2 - - uid: 14657 + - uid: 15411 components: - type: Transform pos: -45.5,-91.5 parent: 2 - - uid: 14659 + - uid: 15418 components: - type: Transform pos: -45.5,-92.5 parent: 2 - - uid: 15411 + - uid: 15445 components: - type: Transform pos: -23.5,10.5 @@ -126755,31 +126395,378 @@ entities: - type: Transform pos: -86.5,-70.5 parent: 2 - - uid: 15619 + - uid: 15557 components: - type: Transform pos: -83.5,-15.5 parent: 2 - - uid: 15623 + - uid: 15619 components: - type: Transform pos: -84.5,-68.5 parent: 2 - - uid: 15638 + - uid: 15623 components: - type: Transform pos: -87.5,-70.5 parent: 2 - - uid: 15639 + - uid: 15638 components: - type: Transform pos: -86.5,-69.5 parent: 2 - - uid: 15640 + - uid: 15639 components: - type: Transform pos: -87.5,-69.5 parent: 2 + - uid: 15640 + components: + - type: Transform + pos: -47.5,-91.5 + parent: 2 + - uid: 17082 + components: + - type: Transform + pos: -83.5,-14.5 + parent: 2 + - uid: 17173 + components: + - type: Transform + pos: -83.5,-16.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + pos: -83.5,-17.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 18212 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 18213 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 18214 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 18215 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 18217 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 18218 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 18219 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 18223 + components: + - type: Transform + pos: -79.5,4.5 + parent: 2 + - uid: 18463 + components: + - type: Transform + pos: -45.5,-93.5 + parent: 2 + - uid: 18485 + components: + - type: Transform + pos: -45.5,-94.5 + parent: 2 + - uid: 18487 + components: + - type: Transform + pos: -45.5,-95.5 + parent: 2 + - uid: 18840 + components: + - type: Transform + pos: -44.5,-94.5 + parent: 2 + - uid: 18871 + components: + - type: Transform + pos: -43.5,-94.5 + parent: 2 + - uid: 18874 + components: + - type: Transform + pos: -44.5,-95.5 + parent: 2 + - uid: 18875 + components: + - type: Transform + pos: -43.5,-95.5 + parent: 2 + - uid: 18876 + components: + - type: Transform + pos: -46.5,-94.5 + parent: 2 + - uid: 18877 + components: + - type: Transform + pos: -86.5,-71.5 + parent: 2 + - uid: 18878 + components: + - type: Transform + pos: -85.5,-71.5 + parent: 2 + - uid: 18879 + components: + - type: Transform + pos: -84.5,-71.5 + parent: 2 + - uid: 18880 + components: + - type: Transform + pos: -83.5,-70.5 + parent: 2 + - uid: 18993 + components: + - type: Transform + pos: -83.5,-71.5 + parent: 2 + - uid: 18995 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 18996 + components: + - type: Transform + pos: -69.5,15.5 + parent: 2 + - uid: 18997 + components: + - type: Transform + pos: -80.5,-70.5 + parent: 2 + - uid: 18998 + components: + - type: Transform + pos: -81.5,-76.5 + parent: 2 + - uid: 19136 + components: + - type: Transform + pos: -81.5,-77.5 + parent: 2 + - uid: 19227 + components: + - type: Transform + pos: -81.5,-78.5 + parent: 2 + - uid: 19228 + components: + - type: Transform + pos: -80.5,-79.5 + parent: 2 + - uid: 19229 + components: + - type: Transform + pos: -81.5,-79.5 + parent: 2 + - uid: 19230 + components: + - type: Transform + pos: -79.5,-79.5 + parent: 2 + - uid: 19231 + components: + - type: Transform + pos: -78.5,-79.5 + parent: 2 + - uid: 19232 + components: + - type: Transform + pos: -77.5,-79.5 + parent: 2 + - uid: 19233 + components: + - type: Transform + pos: -76.5,-79.5 + parent: 2 + - uid: 19234 + components: + - type: Transform + pos: -75.5,-79.5 + parent: 2 + - uid: 19235 + components: + - type: Transform + pos: -74.5,-79.5 + parent: 2 + - uid: 19236 + components: + - type: Transform + pos: -73.5,-79.5 + parent: 2 + - uid: 19237 + components: + - type: Transform + pos: -72.5,-79.5 + parent: 2 + - uid: 19238 + components: + - type: Transform + pos: -71.5,-79.5 + parent: 2 + - uid: 19239 + components: + - type: Transform + pos: -70.5,-79.5 + parent: 2 + - uid: 19240 + components: + - type: Transform + pos: -82.5,-79.5 + parent: 2 + - uid: 19241 + components: + - type: Transform + pos: -82.5,-78.5 + parent: 2 + - uid: 19242 + components: + - type: Transform + pos: -83.5,-80.5 + parent: 2 + - uid: 19243 + components: + - type: Transform + pos: -82.5,-80.5 + parent: 2 + - uid: 19244 + components: + - type: Transform + pos: -84.5,-79.5 + parent: 2 + - uid: 19245 + components: + - type: Transform + pos: -83.5,-79.5 + parent: 2 + - uid: 19246 + components: + - type: Transform + pos: -83.5,-78.5 + parent: 2 + - uid: 19247 + components: + - type: Transform + pos: -82.5,-77.5 + parent: 2 + - uid: 19248 + components: + - type: Transform + pos: -82.5,-76.5 + parent: 2 + - uid: 19249 + components: + - type: Transform + pos: -83.5,-77.5 + parent: 2 + - uid: 19250 + components: + - type: Transform + pos: -73.5,-80.5 + parent: 2 + - uid: 19251 + components: + - type: Transform + pos: -72.5,-80.5 + parent: 2 + - uid: 19252 + components: + - type: Transform + pos: -75.5,-80.5 + parent: 2 + - uid: 19253 + components: + - type: Transform + pos: -76.5,-80.5 + parent: 2 + - uid: 19254 + components: + - type: Transform + pos: -76.5,-81.5 + parent: 2 + - uid: 19255 + components: + - type: Transform + pos: -75.5,-81.5 + parent: 2 + - uid: 19256 + components: + - type: Transform + pos: -78.5,-81.5 + parent: 2 + - uid: 19257 + components: + - type: Transform + pos: -77.5,-81.5 + parent: 2 + - uid: 19258 + components: + - type: Transform + pos: -78.5,-80.5 + parent: 2 + - uid: 19259 + components: + - type: Transform + pos: -79.5,-80.5 + parent: 2 +- proto: WallRockBasalt + entities: + - uid: 12211 + components: + - type: Transform + pos: -0.5,7.5 + parent: 15964 + - uid: 12215 + components: + - type: Transform + pos: -0.5,6.5 + parent: 15964 + - uid: 12216 + components: + - type: Transform + pos: -1.5,6.5 + parent: 15964 + - uid: 12217 + components: + - type: Transform + pos: -1.5,5.5 + parent: 15964 + - uid: 12218 + components: + - type: Transform + pos: -0.5,3.5 + parent: 15964 - uid: 16010 components: - type: Transform @@ -127075,326 +127062,6 @@ entities: - type: Transform pos: 7.5,8.5 parent: 15964 - - uid: 17082 - components: - - type: Transform - pos: -47.5,-91.5 - parent: 2 - - uid: 17173 - components: - - type: Transform - pos: -83.5,-14.5 - parent: 2 - - uid: 17192 - components: - - type: Transform - pos: -83.5,-16.5 - parent: 2 - - uid: 17193 - components: - - type: Transform - pos: -83.5,-17.5 - parent: 2 - - uid: 18212 - components: - - type: Transform - pos: -23.5,13.5 - parent: 2 - - uid: 18213 - components: - - type: Transform - pos: -23.5,14.5 - parent: 2 - - uid: 18214 - components: - - type: Transform - pos: -23.5,12.5 - parent: 2 - - uid: 18215 - components: - - type: Transform - pos: -23.5,11.5 - parent: 2 - - uid: 18217 - components: - - type: Transform - pos: -23.5,8.5 - parent: 2 - - uid: 18218 - components: - - type: Transform - pos: -23.5,9.5 - parent: 2 - - uid: 18219 - components: - - type: Transform - pos: -22.5,15.5 - parent: 2 - - uid: 18223 - components: - - type: Transform - pos: -9.5,14.5 - parent: 2 - - uid: 18840 - components: - - type: Transform - pos: -79.5,4.5 - parent: 2 - - uid: 18871 - components: - - type: Transform - pos: -45.5,-93.5 - parent: 2 - - uid: 18874 - components: - - type: Transform - pos: -45.5,-94.5 - parent: 2 - - uid: 18875 - components: - - type: Transform - pos: -45.5,-95.5 - parent: 2 - - uid: 18876 - components: - - type: Transform - pos: -44.5,-94.5 - parent: 2 - - uid: 18877 - components: - - type: Transform - pos: -43.5,-94.5 - parent: 2 - - uid: 18878 - components: - - type: Transform - pos: -44.5,-95.5 - parent: 2 - - uid: 18879 - components: - - type: Transform - pos: -43.5,-95.5 - parent: 2 - - uid: 18880 - components: - - type: Transform - pos: -46.5,-94.5 - parent: 2 - - uid: 18993 - components: - - type: Transform - pos: -86.5,-71.5 - parent: 2 - - uid: 18995 - components: - - type: Transform - pos: -85.5,-71.5 - parent: 2 - - uid: 18996 - components: - - type: Transform - pos: -84.5,-71.5 - parent: 2 - - uid: 18997 - components: - - type: Transform - pos: -83.5,-70.5 - parent: 2 - - uid: 18998 - components: - - type: Transform - pos: -83.5,-71.5 - parent: 2 - - uid: 19136 - components: - - type: Transform - pos: -9.5,15.5 - parent: 2 - - uid: 20304 - components: - - type: Transform - pos: -69.5,15.5 - parent: 2 - - uid: 20657 - components: - - type: Transform - pos: -80.5,-70.5 - parent: 2 - - uid: 20660 - components: - - type: Transform - pos: -81.5,-76.5 - parent: 2 - - uid: 20669 - components: - - type: Transform - pos: -81.5,-77.5 - parent: 2 - - uid: 20670 - components: - - type: Transform - pos: -81.5,-78.5 - parent: 2 - - uid: 20671 - components: - - type: Transform - pos: -80.5,-79.5 - parent: 2 - - uid: 20672 - components: - - type: Transform - pos: -81.5,-79.5 - parent: 2 - - uid: 20673 - components: - - type: Transform - pos: -79.5,-79.5 - parent: 2 - - uid: 20674 - components: - - type: Transform - pos: -78.5,-79.5 - parent: 2 - - uid: 20675 - components: - - type: Transform - pos: -77.5,-79.5 - parent: 2 - - uid: 20676 - components: - - type: Transform - pos: -76.5,-79.5 - parent: 2 - - uid: 20677 - components: - - type: Transform - pos: -75.5,-79.5 - parent: 2 - - uid: 20678 - components: - - type: Transform - pos: -74.5,-79.5 - parent: 2 - - uid: 20679 - components: - - type: Transform - pos: -73.5,-79.5 - parent: 2 - - uid: 20680 - components: - - type: Transform - pos: -72.5,-79.5 - parent: 2 - - uid: 20681 - components: - - type: Transform - pos: -71.5,-79.5 - parent: 2 - - uid: 20682 - components: - - type: Transform - pos: -70.5,-79.5 - parent: 2 - - uid: 20683 - components: - - type: Transform - pos: -82.5,-79.5 - parent: 2 - - uid: 20684 - components: - - type: Transform - pos: -82.5,-78.5 - parent: 2 - - uid: 20685 - components: - - type: Transform - pos: -83.5,-80.5 - parent: 2 - - uid: 20686 - components: - - type: Transform - pos: -82.5,-80.5 - parent: 2 - - uid: 20687 - components: - - type: Transform - pos: -84.5,-79.5 - parent: 2 - - uid: 20688 - components: - - type: Transform - pos: -83.5,-79.5 - parent: 2 - - uid: 20689 - components: - - type: Transform - pos: -83.5,-78.5 - parent: 2 - - uid: 20690 - components: - - type: Transform - pos: -82.5,-77.5 - parent: 2 - - uid: 20691 - components: - - type: Transform - pos: -82.5,-76.5 - parent: 2 - - uid: 20692 - components: - - type: Transform - pos: -83.5,-77.5 - parent: 2 - - uid: 20693 - components: - - type: Transform - pos: -73.5,-80.5 - parent: 2 - - uid: 20694 - components: - - type: Transform - pos: -72.5,-80.5 - parent: 2 - - uid: 20695 - components: - - type: Transform - pos: -75.5,-80.5 - parent: 2 - - uid: 20696 - components: - - type: Transform - pos: -76.5,-80.5 - parent: 2 - - uid: 20697 - components: - - type: Transform - pos: -76.5,-81.5 - parent: 2 - - uid: 20698 - components: - - type: Transform - pos: -75.5,-81.5 - parent: 2 - - uid: 20699 - components: - - type: Transform - pos: -78.5,-81.5 - parent: 2 - - uid: 20700 - components: - - type: Transform - pos: -77.5,-81.5 - parent: 2 - - uid: 20702 - components: - - type: Transform - pos: -78.5,-80.5 - parent: 2 - - uid: 20703 - components: - - type: Transform - pos: -79.5,-80.5 - parent: 2 - proto: WallRockChromite entities: - uid: 17382 @@ -129234,6 +128901,12 @@ entities: - type: Transform pos: -55.5,-42.5 parent: 2 + - uid: 797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-35.5 + parent: 2 - uid: 861 components: - type: Transform @@ -129304,6 +128977,12 @@ entities: - type: Transform pos: -65.5,-24.5 parent: 2 + - uid: 1960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-39.5 + parent: 2 - uid: 2127 components: - type: Transform @@ -129324,6 +129003,12 @@ entities: - type: Transform pos: -74.5,-65.5 parent: 2 + - uid: 2306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-39.5 + parent: 2 - uid: 3750 components: - type: Transform @@ -129359,6 +129044,12 @@ entities: - type: Transform pos: -62.5,-28.5 parent: 2 + - uid: 4792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-36.5 + parent: 2 - uid: 4898 components: - type: Transform @@ -129396,6 +129087,12 @@ entities: - type: Transform pos: -47.5,-0.5 parent: 2 + - uid: 5537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-38.5 + parent: 2 - uid: 5540 components: - type: Transform @@ -129411,11 +129108,23 @@ entities: - type: Transform pos: -53.5,-28.5 parent: 2 + - uid: 5676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-39.5 + parent: 2 - uid: 5694 components: - type: Transform pos: -63.5,-24.5 parent: 2 + - uid: 5709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-39.5 + parent: 2 - uid: 5711 components: - type: Transform @@ -129527,11 +129236,6 @@ entities: - type: Transform pos: -54.5,-38.5 parent: 2 - - uid: 7918 - components: - - type: Transform - pos: -64.5,-33.5 - parent: 2 - uid: 8177 components: - type: Transform @@ -129542,11 +129246,6 @@ entities: - type: Transform pos: -61.5,-24.5 parent: 2 - - uid: 8358 - components: - - type: Transform - pos: -65.5,-33.5 - parent: 2 - uid: 8360 components: - type: Transform @@ -129583,6 +129282,12 @@ entities: - type: Transform pos: -67.5,-26.5 parent: 2 + - uid: 10325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-39.5 + parent: 2 - uid: 10674 components: - type: Transform @@ -131346,36 +131051,6 @@ entities: - type: Transform pos: -62.5,-44.5 parent: 2 - - uid: 14989 - components: - - type: Transform - pos: -66.5,-39.5 - parent: 2 - - uid: 14990 - components: - - type: Transform - pos: -65.5,-39.5 - parent: 2 - - uid: 14991 - components: - - type: Transform - pos: -65.5,-36.5 - parent: 2 - - uid: 14992 - components: - - type: Transform - pos: -66.5,-36.5 - parent: 2 - - uid: 14993 - components: - - type: Transform - pos: -68.5,-36.5 - parent: 2 - - uid: 14994 - components: - - type: Transform - pos: -68.5,-39.5 - parent: 2 - uid: 14995 components: - type: Transform @@ -133463,6 +133138,24 @@ entities: - type: Transform pos: -49.5,-71.5 parent: 2 + - uid: 19261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-33.5 + parent: 2 + - uid: 19274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-37.5 + parent: 2 + - uid: 19280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-37.5 + parent: 2 - uid: 20285 components: - type: Transform @@ -133488,21 +133181,6 @@ entities: - type: Transform pos: -87.5,-35.5 parent: 2 - - uid: 15378 - components: - - type: Transform - pos: -65.5,-38.5 - parent: 2 - - uid: 15379 - components: - - type: Transform - pos: -65.5,-37.5 - parent: 2 - - uid: 15380 - components: - - type: Transform - pos: -67.5,-39.5 - parent: 2 - uid: 15381 components: - type: Transform @@ -134018,11 +133696,6 @@ entities: - type: Transform pos: -71.5,-9.5 parent: 2 - - uid: 15418 - components: - - type: Transform - pos: -64.5,-34.5 - parent: 2 - uid: 15419 components: - type: Transform @@ -134406,21 +134079,6 @@ entities: - type: Transform pos: -9.5,2.5 parent: 17265 -- proto: WeaponWaterBlaster - entities: - - uid: 20108 - components: - - type: Transform - pos: -34.91932,-41.457653 - parent: 2 -- proto: WeaponWaterPistol - entities: - - uid: 20109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.563087,-42.490074 - parent: 2 - proto: WelderIndustrial entities: - uid: 11212 @@ -134480,11 +134138,6 @@ entities: - type: Transform pos: -71.5,-8.5 parent: 2 - - uid: 15445 - components: - - type: Transform - pos: -63.5,-34.5 - parent: 2 - uid: 15446 components: - type: Transform @@ -135330,12 +134983,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-31.5 parent: 2 - - uid: 15557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-34.5 - parent: 2 - uid: 15558 components: - type: Transform diff --git a/Resources/Maps/corvax_paper.yml b/Resources/Maps/corvax_paper.yml index d9c8ee2ddd7..466a627ea14 100644 --- a/Resources/Maps/corvax_paper.yml +++ b/Resources/Maps/corvax_paper.yml @@ -12,6 +12,7 @@ tilemap: 32: FloorAstroIce 68: FloorAstroSnow 14: FloorBar + 83: FloorBasalt 16: FloorBlue 17: FloorBlueCircuit 81: FloorBoxing @@ -39,6 +40,7 @@ tilemap: 44: FloorGrayConcreteMono 57: FloorGrayConcreteOutside 58: FloorGrayConcreteOutsideMono + 85: FloorGrayConcreteSmooth 56: FloorGreenCircuit 30: FloorHullReinforced 60: FloorHydro @@ -69,6 +71,7 @@ tilemap: 91: FloorSnow 93: FloorSteel 18: FloorSteelCheckerDark + 84: FloorSteelDamaged 98: FloorSteelDiagonal 100: FloorSteelDirty 10: FloorSteelHerringbone @@ -132,7 +135,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAATgAAAAAAaAAAAAAAaAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAATgAAAAAAaAAAAAAAaAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAALwAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA version: 6 0,1: ind: 0,1 @@ -156,7 +159,7 @@ entities: version: 6 1,0: ind: 1,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAATgAAAAAATgAAAAAAXQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAAATgAAAAAATgAAAAAATgAAAAAAHwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAATgAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAATgAAAAAATgAAAAAAXQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAAATgAAAAAATgAAAAAATgAAAAAAHwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAATgAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAA version: 6 1,1: ind: 1,1 @@ -164,7 +167,7 @@ entities: version: 6 1,2: ind: 1,2 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAA + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAANgAAAAAALwAAAAAAEwAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALwAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAA version: 6 1,3: ind: 1,3 @@ -180,7 +183,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAALwAAAAAATgAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAALwAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAALwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,1: ind: 2,1 @@ -204,11 +207,11 @@ entities: version: 6 3,0: ind: 3,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAALwAAAAAALwAAAAAALwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 3,1: ind: 3,1 - tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAA version: 6 3,2: ind: 3,2 @@ -228,7 +231,7 @@ entities: version: 6 4,0: ind: 4,0 - tiles: fgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAAIQAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAKAAAAAAAEQAAAAAAEQAAAAAA + tiles: fgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAAIQAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAKAAAAAAAEQAAAAAAEQAAAAAA version: 6 4,1: ind: 4,1 @@ -284,7 +287,7 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAALwAAAAAAfgAAAAAALwAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAA + tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAAAHwAAAAAAfgAAAAAALwAAAAAAfgAAAAAALwAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAA version: 6 2,-2: ind: 2,-2 @@ -458,15 +461,15 @@ entities: color: '#DE3A3AFF' id: Box decals: - 5723: 49,23 - 5724: 50,23 - 5725: 51,23 5726: 52,23 5727: 53,23 - 5728: 53,22 - 5729: 53,21 - 5730: 50,20 - 5731: 49,20 + 10613: 54,23 + 10614: 55,23 + 10615: 56,23 + 10617: 57,22 + 10618: 57,21 + 10619: 51,21 + 10620: 51,22 - node: color: '#FFFFFFFF' id: Box @@ -892,7 +895,6 @@ entities: 1558: 39,42 1590: 35,39 1660: 35,34 - 1703: 26,39 1776: 11,34 1869: 11,27 2049: 11,16 @@ -1473,7 +1475,6 @@ entities: 4706: 13,8 5451: 39,22 5505: 49,16 - 5521: 49,20 5647: 52,26 5661: 54,30 7164: 75,6 @@ -2791,7 +2792,6 @@ entities: 5497: 46,22 5498: 47,22 5499: 48,22 - 5500: 50,20 5501: 51,20 5509: 50,16 5510: 51,16 @@ -2923,7 +2923,6 @@ entities: 1680: 30,37 1681: 31,37 1682: 32,37 - 1706: 26,39 1707: 27,39 1708: 28,39 1709: 25,36 @@ -3794,12 +3793,12 @@ entities: 5063: 60,1 5152: 50,-12 5181: 48,6 - 5557: 62,20 6440: 68,8 6547: 41,-5 6606: 50,-3 6803: 50,-7 7519: 37,-4 + 10599: 62,19 - node: color: '#8C347FFF' id: BrickTileWhiteCornerSe @@ -3878,7 +3877,6 @@ entities: 5151: 47,-12 5180: 46,6 5195: 46,6 - 5556: 60,20 6493: 35,-7 6505: 35,3 6557: 43,-5 @@ -3886,6 +3884,7 @@ entities: 6677: 44,-11 6804: 47,-7 7518: 35,-4 + 10598: 60,19 - node: color: '#9FED58FF' id: BrickTileWhiteCornerSw @@ -4047,7 +4046,7 @@ entities: 6596: 45,-5 6598: 45,-11 7525: 36,-6 - 8831: 62,21 + 10601: 62,23 - node: color: '#8C347FFF' id: BrickTileWhiteInnerNe @@ -4310,7 +4309,7 @@ entities: 6801: 33,11 7237: 37,-2 7527: 36,-4 - 8832: 62,21 + 10602: 62,23 - node: color: '#8C347FFF' id: BrickTileWhiteInnerSe @@ -4605,7 +4604,6 @@ entities: 5183: 48,8 5184: 48,8 5185: 48,9 - 5538: 62,23 5539: 62,22 6453: 68,9 6484: 60,2 @@ -4635,6 +4633,8 @@ entities: 7276: 33,7 7277: 33,8 7522: 36,-5 + 10595: 62,21 + 10596: 62,20 - node: color: '#8C347FFF' id: BrickTileWhiteLineE @@ -4875,7 +4875,7 @@ entities: 6808: 47,-5 6809: 48,-5 6810: 49,-5 - 8833: 63,21 + 10604: 63,23 - node: color: '#8C347FFF' id: BrickTileWhiteLineN @@ -5081,7 +5081,6 @@ entities: 5052: 53,5 5153: 48,-12 5154: 49,-12 - 5558: 61,20 6447: 65,8 6466: 66,8 6472: 63,12 @@ -5111,7 +5110,8 @@ entities: 6806: 48,-7 6807: 49,-7 7235: 38,-2 - 8834: 63,21 + 10600: 61,19 + 10603: 63,23 - node: color: '#8C347FFF' id: BrickTileWhiteLineS @@ -5338,6 +5338,7 @@ entities: 7231: 39,-4 7232: 39,-3 7523: 36,-5 + 10597: 60,20 - node: color: '#8C347FFF' id: BrickTileWhiteLineW @@ -7126,6 +7127,10 @@ entities: 10573: -7,21 10574: -8,20 10575: -7,20 + 10605: 60,19 + 10606: 62,20 + 10607: 62,19 + 10608: 62,19 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -7216,10 +7221,8 @@ entities: 7287: 26,-12 8362: 31,54 8366: 29,58 - 8904: 57,23 8905: 54,21 8906: 51,22 - 8907: 51,23 8908: 48,22 8909: 44,22 8910: 43,21 @@ -7263,13 +7266,11 @@ entities: 8948: 42,28 8949: 43,27 8950: 43,26 - 8951: 62,21 8952: 60,21 8953: 61,23 8954: 57,22 8955: 55,21 8956: 53,20 - 8957: 50,20 8958: 51,17 8959: 50,16 8960: 50,16 @@ -7704,6 +7705,9 @@ entities: 10429: 74,17 10430: 74,17 10431: 74,17 + 10610: 62,23 + 10611: 60,23 + 10612: 61,21 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile @@ -8311,6 +8315,7 @@ entities: 8973: 58,17 8974: 57,21 8975: 58,22 + 10609: 60,20 - node: color: '#FFFFFFFF' id: FlowersBROne @@ -9685,7 +9690,6 @@ entities: color: '#2E211AFF' id: WoodTrimThinLineNWhite decals: - 3014: 26,39 3015: 27,39 3016: 28,39 - node: @@ -10694,7 +10698,8 @@ entities: 12,20: 1: 61168 12,-1: - 1: 30576 + 1: 14192 + 9: 16384 12,4: 1: 3822 13,0: @@ -10720,7 +10725,8 @@ entities: 14,-1: 1: 55739 14,4: - 1: 6007 + 9: 7 + 1: 6000 15,0: 1: 56796 15,1: @@ -10756,7 +10762,8 @@ entities: 14,6: 1: 65319 14,7: - 1: 65295 + 1: 65039 + 2: 256 14,8: 1: 15 0: 3840 @@ -11261,7 +11268,8 @@ entities: 11,-4: 1: 16352 11,-3: - 1: 48122 + 1: 15354 + 9: 32768 11,-2: 1: 64435 11,-5: @@ -11269,7 +11277,8 @@ entities: 12,-4: 1: 4081 12,-3: - 1: 30583 + 1: 22391 + 9: 8192 12,-2: 1: 30576 8,-8: @@ -11804,22 +11813,23 @@ entities: - type: ContainedSolution containerName: drink container: 10372 - - uid: 16504 + - uid: 16527 components: - type: MetaData - name: Syndie Base "Sierra" + name: '"Sierra"' - type: Transform - pos: -2.7884026,2501.213 + rot: 0.6981317007977318 rad + pos: 25,2507 parent: 1 - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAABQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAJwAAAAAAegAAAAAAegAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAegAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: fgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAABQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAJwAAAAAAegAAAAAAegAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAegAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -1,0: ind: -1,0 - tiles: fgAAAAAAfgAAAAAABQAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAgQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAA + tiles: fgAAAAAAfgAAAAAABQAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAgQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAA version: 6 0,-1: ind: 0,-1 @@ -11827,19 +11837,19 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAA version: 6 0,1: ind: 0,1 - tiles: TwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAKgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAFAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAcAAAAAAABQAAAAAAHQAAAAAA + tiles: TwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAABQAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAKgAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAFAAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAcAAAAAAABQAAAAAAHQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: bAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAA + tiles: bAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAIgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAANAAAAAAABwAAAAAABwAAAAAANAAAAAAAfgAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAANAAAAAAABwAAAAAANAAAAAAANAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAANAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAAfgAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAANAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAA version: 6 1,-1: ind: 1,-1 @@ -11851,7 +11861,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAANAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAQAAAAAAbQAAAAAAbQAAAAAAAQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAALAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAALAAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAQAAAAAAbQAAAAAAbQAAAAAAAQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAA version: 6 1,1: ind: 1,1 @@ -11859,19 +11869,19 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAABQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAABQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAABQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAABQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABQAAAAAAfgAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAABQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAKgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAfgAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAA version: 6 0,2: ind: 0,2 - tiles: JQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAHQAAAAAAfgAAAAAAgQAAAAAAcAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAcAAAAAAAHQAAAAAAJQAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAgQAAAAAAKQAAAAAAJQAAAAAANQAAAAAAKQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAKQAAAAAAHQAAAAAAJQAAAAAAKQAAAAAAgQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: JQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAHQAAAAAAfgAAAAAAgQAAAAAAcAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAKQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAcAAAAAAAHQAAAAAAJQAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAgQAAAAAAKQAAAAAAJQAAAAAANQAAAAAAKQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAKQAAAAAAHQAAAAAAJQAAAAAAKQAAAAAAgQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAABQAAAAAAfgAAAAAAgQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAgQAAAAAAKgAAAAAAfgAAAAAAJQAAAAAAKgAAAAAABQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAATwAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAABQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAABQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + tiles: fgAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAABQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAfgAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAA version: 6 2,1: ind: 2,1 - tiles: KQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAJQAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAXQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAJQAAAAAAKgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABQAAAAAAgQAAAAAAfgAAAAAALAAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: KQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAJQAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAXQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAJQAAAAAAKgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABQAAAAAAgQAAAAAAfgAAAAAALAAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 @@ -11879,35 +11889,103 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAATwAAAAAAKQAAAAAAKQAAAAAAJQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAATwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAATwAAAAAAJQAAAAAATwAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAATwAAAAAAfgAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAATwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAAOAAAAAAAHwAAAAAAfgAAAAAAOAAAAAAAHwAAAAAAOAAAAAAAHwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAOAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAAJQAAAAAAKQAAAAAAKQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAATwAAAAAAKQAAAAAAKQAAAAAAJQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAA version: 6 1,2: ind: 1,2 - tiles: HQAAAAAAKQAAAAAAJQAAAAAAXQAAAAAAXQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAgQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAJQAAAAAALAAAAAAAJQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAgQAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAcAAAAAAAJQAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAHQAAAAAANQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAXQAAAAAALAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAKQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAAAKQAAAAAAJQAAAAAAXQAAAAAAXQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAgQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAJQAAAAAALAAAAAAAJQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAgQAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAcAAAAAAAJQAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAHQAAAAAANQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAXQAAAAAALAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHQAAAAAAKQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAALAAAAAAAFAAAAAAAJQAAAAAALAAAAAAAfgAAAAAABQAAAAAAHQAAAAAAKQAAAAAAHQAAAAAAKQAAAAAALAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAAKQAAAAAAgQAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAHQAAAAAALAAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAQgAAAAAAKgAAAAAAJQAAAAAAJQAAAAAALAAAAAAAHQAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAHQAAAAAAgQAAAAAALAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAALAAAAAAAFAAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAUwAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAA version: 6 2,2: ind: 2,2 - tiles: fgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAXQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAXQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: JQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAALAAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAJQAAAAAAKgAAAAAAJQAAAAAALAAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAKgAAAAAALAAAAAAAJQAAAAAAfgAAAAAALAAAAAAAfgAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAABQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAKgAAAAAALAAAAAAAJQAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAALAAAAAAAfgAAAAAAJQAAAAAALAAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAALAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAALAAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAfgAAAAAAKgAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKgAAAAAA version: 6 0,3: ind: 0,3 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: JQAAAAAALAAAAAAAJQAAAAAAfgAAAAAAKgAAAAAAJQAAAAAALAAAAAAAJQAAAAAAfgAAAAAAHQAAAAAAKQAAAAAAQgAAAAAAfgAAAAAAQgAAAAAAKQAAAAAAHQAAAAAAKgAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAJQAAAAAAKgAAAAAAQgAAAAAAKQAAAAAAHQAAAAAAfgAAAAAAVQAAAAAAfgAAAAAAHQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAHQAAAAAAKQAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAKQAAAAAAHQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAALAAAAAAAKgAAAAAAJQAAAAAALAAAAAAAQgAAAAAAKQAAAAAAHQAAAAAAfgAAAAAAVQAAAAAAfgAAAAAAHQAAAAAAKQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAKgAAAAAAJQAAAAAAfgAAAAAAHQAAAAAAKQAAAAAAQgAAAAAAfgAAAAAAQgAAAAAAKQAAAAAAHQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAALAAAAAAAJQAAAAAAfgAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAVAAAAAAAfgAAAAAABwAAAAAABwAAAAAATwAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAALAAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAKgAAAAAALAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKgAAAAAALAAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAfgAAAAAABwAAAAAABwAAAAAAKgAAAAAAfgAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAA version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: fgAAAAAAGAAAAAAAGAAAAAAAfgAAAAAATwAAAAAAJQAAAAAATwAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAfgAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAGAAAAAAAGAAAAAAAfgAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAfgAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAA + version: 6 + -3,3: + ind: -3,3 + tiles: OAAAAAAAEQAAAAAAEQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAOAAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAOAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAHwAAAAAAHwAAAAAAOAAAAAAAHwAAAAAAfgAAAAAAOAAAAAAAHwAAAAAAOAAAAAAAHwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAJQAAAAAAJQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAATwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAJQAAAAAAJQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAJQAAAAAAJQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: LAAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAKgAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAJQAAAAAALAAAAAAAJQAAAAAAfgAAAAAAJQAAAAAALAAAAAAAJQAAAAAALAAAAAAAJQAAAAAALAAAAAAAfgAAAAAALAAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAAKgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAfgAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: JQAAAAAAJQAAAAAAJQAAAAAAKgAAAAAALAAAAAAABQAAAAAALAAAAAAAJQAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAJQAAAAAALAAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAATwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: fgAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAfgAAAAAABQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAQgAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAfgAAAAAAgQAAAAAAHQAAAAAAKQAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAewAAAAAAfgAAAAAAHQAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAHQAAAAAAfgAAAAAABQAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAUwAAAAAAewAAAAAAewAAAAAAQgAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAfgAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAgQAAAAAAewAAAAAAewAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAJQAAAAAAewAAAAAAewAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAQgAAAAAALAAAAAAAQgAAAAAALAAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAALAAAAAAAQgAAAAAALAAAAAAAQgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAQgAAAAAAJQAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAQgAAAAAALAAAAAAAQgAAAAAALAAAAAAAfgAAAAAAJQAAAAAAKgAAAAAAfgAAAAAAKgAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAALAAAAAAAQgAAAAAALAAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -2,4: + ind: -2,4 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: fgAAAAAAJQAAAAAAJQAAAAAAKgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAJQAAAAAAJQAAAAAALAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAFAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAFAAAAAAAVQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAAKgAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAKgAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,5: + ind: -1,5 + tiles: TwAAAAAATwAAAAAATwAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,5: + ind: -2,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,5: + ind: 0,5 + tiles: fgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAA + version: 6 + -4,3: + ind: -4,3 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAfgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,3: + ind: -5,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,2: + ind: -5,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + version: 6 + 2,4: + ind: 2,4 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -11962,6 +12040,12 @@ entities: 454: 33,34 455: 27,34 456: 27,32 + 624: 1,80 + 625: 1,79 + 626: 4,79 + 627: 4,81 + 628: 4,82 + 629: 1,82 - node: color: '#9B0000FF' id: BrickTileSteelCornerNe @@ -12354,6 +12438,26 @@ entities: 377: 11,4 394: 13,-2 403: 8,12 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimCornerNe + decals: + 548: -4,72 + 594: 7,72 + 720: -18,56 + 721: -10,59 + 722: -4,52 + 723: -4,58 + 724: 2,58 + 725: 2,52 + 726: -4,66 + 727: -10,67 + 728: 7,66 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerNe + decals: + 1012: 33,56 - node: color: '#B32828FF' id: ConcreteTrimCornerNw @@ -12364,6 +12468,28 @@ entities: 369: 13,4 392: 11,-2 404: 4,12 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimCornerNw + decals: + 545: -8,72 + 595: -2,72 + 688: -16,67 + 689: -8,66 + 690: -2,66 + 691: -8,58 + 692: -2,58 + 693: -2,52 + 694: -8,52 + 695: -15,51 + 696: -22,50 + 697: -22,56 + 698: -16,59 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerNw + decals: + 1015: 30,56 - node: color: '#B32828FF' id: ConcreteTrimCornerSe @@ -12375,6 +12501,28 @@ entities: 376: 11,2 395: 13,-4 406: 8,8 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimCornerSe + decals: + 546: -4,68 + 587: 7,68 + 699: -18,52 + 700: -15,46 + 701: -10,53 + 702: -8,47 + 703: -4,48 + 704: 2,48 + 705: 2,54 + 706: -4,54 + 707: -4,60 + 708: -10,61 + 709: 7,54 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerSe + decals: + 1008: 33,55 - node: color: '#B32828FF' id: ConcreteTrimCornerSw @@ -12385,11 +12533,74 @@ entities: 372: 13,2 393: 11,-4 405: 4,8 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimCornerSw + decals: + 547: -8,68 + 586: -2,68 + 710: -2,60 + 711: 4,54 + 712: -8,60 + 713: -16,61 + 714: -16,53 + 715: -8,54 + 716: -2,54 + 717: -2,48 + 718: -22,46 + 719: -22,52 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerSw + decals: + 1009: 30,55 - node: color: '#B32828FF' id: ConcreteTrimEndE decals: 387: 10,3 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimEndN + decals: + 602: 5,74 + 603: 0,74 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimInnerNe + decals: + 599: 5,72 + 609: 0,73 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimInnerNw + decals: + 598: 0,72 + 608: 5,73 + 905: -8,51 + 906: -15,50 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimInnerNw + decals: + 938: 25,43 + 939: 26,44 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimInnerSe + decals: + 907: -15,47 + 908: -8,48 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimInnerSw + decals: + 909: 4,60 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimInnerSw + decals: + 940: 30,45 - node: color: '#B32828FF' id: ConcreteTrimLineE @@ -12402,6 +12613,65 @@ entities: 368: 15,3 378: 11,3 398: 13,-3 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimLineE + decals: + 558: -4,69 + 559: -4,70 + 560: -4,71 + 591: 7,69 + 592: 7,70 + 593: 7,71 + 601: 5,73 + 729: 2,55 + 730: 2,56 + 731: 2,57 + 732: 2,49 + 733: 2,50 + 734: 2,51 + 735: -4,49 + 736: -4,50 + 737: -4,51 + 738: -18,53 + 739: -18,54 + 740: -18,55 + 741: -10,54 + 742: -10,58 + 743: -10,57 + 744: -10,56 + 745: -10,55 + 746: -4,55 + 747: -4,56 + 748: -4,57 + 749: -10,62 + 750: -10,63 + 751: -10,64 + 752: -10,65 + 753: -10,66 + 754: -4,61 + 755: -4,62 + 756: -4,63 + 757: -4,64 + 758: -4,65 + 759: 7,55 + 760: 7,56 + 761: 7,57 + 762: 7,58 + 763: 7,59 + 764: 7,60 + 765: 7,61 + 766: 7,62 + 767: 7,63 + 768: 7,64 + 769: 7,65 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineE + decals: + 924: 24,45 + 925: 24,44 + 926: 24,43 - node: color: '#B32828FF' id: ConcreteTrimLineN @@ -12421,12 +12691,81 @@ entities: 400: 5,12 401: 6,12 402: 7,12 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimLineN + decals: + 555: -7,72 + 556: -6,72 + 557: -5,72 + 596: -1,72 + 597: 6,72 + 604: 1,73 + 605: 2,73 + 606: 3,73 + 607: 4,73 + 770: 6,66 + 771: 5,66 + 772: 4,66 + 773: 3,66 + 774: 2,66 + 775: 1,66 + 776: 0,66 + 777: -1,66 + 778: -5,66 + 779: -6,66 + 780: -7,66 + 781: -15,67 + 782: -14,67 + 783: -13,67 + 784: -12,67 + 785: -11,67 + 786: -15,59 + 787: -14,59 + 788: -13,59 + 789: -12,59 + 790: -11,59 + 791: -21,56 + 792: -20,56 + 793: -19,56 + 794: -7,58 + 795: -6,58 + 796: -5,58 + 797: -1,58 + 798: 0,58 + 799: 1,58 + 800: 1,52 + 801: 0,52 + 802: -1,52 + 803: -7,52 + 804: -6,52 + 805: -5,52 + 806: -9,51 + 807: -10,51 + 808: -11,51 + 809: -12,51 + 810: -13,51 + 811: -14,51 + 812: -21,50 + 813: -20,50 + 814: -19,50 + 815: -18,50 + 816: -17,50 + 817: -16,50 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineN + decals: + 936: 27,45 + 937: 29,45 + 1013: 32,56 + 1014: 31,56 - node: color: '#A91409FF' id: ConcreteTrimLineS decals: - 557: 1,37 - 559: -5,37 + 540: 1,37 + 542: -5,37 - node: color: '#B32828FF' id: ConcreteTrimLineS @@ -12444,15 +12783,83 @@ entities: 407: 5,8 408: 6,8 409: 7,8 - 545: -1,37 - 546: 0,37 - 547: 2,37 - 548: -2,37 - 549: -4,37 - 550: -3,37 - 551: 3,37 - 552: 4,37 - 553: 5,37 + 528: -1,37 + 529: 0,37 + 530: 2,37 + 531: -2,37 + 532: -4,37 + 533: -3,37 + 534: 3,37 + 535: 4,37 + 536: 5,37 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimLineS + decals: + 549: -7,68 + 550: -6,68 + 551: -5,68 + 578: 2,68 + 579: 1,68 + 580: 0,68 + 581: -1,68 + 582: 3,68 + 583: 4,68 + 584: 5,68 + 585: 6,68 + 818: -21,52 + 819: -20,52 + 820: -19,52 + 821: -21,46 + 822: -20,46 + 823: -19,46 + 824: -18,46 + 825: -17,46 + 826: -16,46 + 827: -14,47 + 828: -13,47 + 829: -12,47 + 830: -11,47 + 831: -10,47 + 832: -9,47 + 833: -5,48 + 834: -6,48 + 835: -7,48 + 836: -15,53 + 837: -14,53 + 838: -13,53 + 839: -12,53 + 840: -11,53 + 841: -7,54 + 842: -6,54 + 843: -5,54 + 844: -1,48 + 845: 0,48 + 846: 1,48 + 847: -1,54 + 848: 0,54 + 849: 1,54 + 850: -7,60 + 851: -6,60 + 852: -5,60 + 853: -15,61 + 854: -14,61 + 855: -13,61 + 856: -12,61 + 857: -11,61 + 858: -1,60 + 859: 0,60 + 860: 1,60 + 861: 2,60 + 862: 3,60 + 863: 5,54 + 864: 6,54 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineS + decals: + 1010: 31,55 + 1011: 32,55 - node: color: '#B32828FF' id: ConcreteTrimLineW @@ -12467,6 +12874,64 @@ entities: 410: 4,9 411: 4,10 412: 4,11 + - node: + color: '#DE3A3AFF' + id: ConcreteTrimLineW + decals: + 552: -8,69 + 553: -8,70 + 554: -8,71 + 588: -2,69 + 589: -2,70 + 590: -2,71 + 600: 0,73 + 865: -22,53 + 866: -22,54 + 867: -22,55 + 868: -22,47 + 869: -22,48 + 870: -22,49 + 871: -16,54 + 872: -16,55 + 873: -16,56 + 874: -16,57 + 875: -16,58 + 876: -8,55 + 877: -8,56 + 878: -8,57 + 879: -2,55 + 880: -2,56 + 881: -2,57 + 882: -2,49 + 883: -2,50 + 884: -2,51 + 885: -16,62 + 886: -16,64 + 887: -16,63 + 888: -16,65 + 889: -16,66 + 890: -8,61 + 891: -8,62 + 892: -8,63 + 893: -8,64 + 894: -8,65 + 895: -2,61 + 896: -2,62 + 897: -2,63 + 898: -2,64 + 899: -2,65 + 900: 4,55 + 901: 4,56 + 902: 4,57 + 903: 4,58 + 904: 4,59 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineW + decals: + 927: 31,45 + 928: 31,44 + 929: 31,43 - node: color: '#FFFFFFFF' id: Delivery @@ -12474,19 +12939,61 @@ entities: 448: 30,26 449: 33,29 450: 27,28 - 511: -2,42 - 512: 2,42 - 536: 3,38 - 537: 4,38 - 538: 5,38 - 539: -5,38 - 540: -4,38 - 541: -3,38 + 521: 3,38 + 522: 4,38 + 523: 5,38 + 524: -5,38 + 525: -4,38 + 526: -3,38 + 622: 1,81 + 623: 4,80 + 1002: 22,44 + 1003: 21,44 + 1004: 21,43 + 1005: 22,43 + 1006: 22,46 + 1007: 21,46 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 958: -37,30 + 960: -37,30 + 961: -37,30 + 962: -37,30 + 964: -36.653976,29.937317 + 965: -36.747757,29.5932 + 966: -37.075836,29.62445 + 967: -37.294586,29.937317 + 968: -37.24771,30.078064 + 969: -36.872726,30.203186 + 970: -36.872696,30.046814 + 971: -37.3571,30.015503 + 972: -37.45085,29.968567 + 973: -36.77896,30.093689 + 974: -36.763367,30.171936 + 975: -36.982086,30.15625 + 976: -37.06024,29.765259 + 977: -36.888336,29.671387 + 978: -36.747726,29.718323 + 979: -36.825836,29.999878 + - node: + color: '#FF0000FF' + id: Flowersbr1 + decals: + 959: -51.00531,47.97003 + 963: -52.239685,48.81378 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 98: 12,3 + - node: + color: '#FF0000FF' + id: Flowerspv2 + decals: + 980: -51.94281,46.90753 - node: color: '#FFFFFFFF' id: Flowersy3 @@ -12497,6 +13004,7 @@ entities: id: GrayConcreteTrimCornerNe decals: 309: 17,38 + 953: 23,51 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNw @@ -12513,11 +13021,33 @@ entities: id: GrayConcreteTrimCornerSw decals: 330: 11,30 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNe + decals: + 946: 25,45 + 947: 19,51 + 954: 22,51 + 955: 23,49 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: 311: 13,33 + 945: 27,45 + 949: 21,51 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerSe + decals: + 943: 28,43 + 951: 17,49 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerSw + decals: + 944: 30,43 + 952: 19,49 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE @@ -12529,6 +13059,10 @@ entities: 321: 17,33 322: 17,32 323: 17,31 + 930: 31,45 + 931: 31,44 + 932: 31,43 + 956: 23,50 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN @@ -12537,6 +13071,10 @@ entities: 307: 15,38 308: 16,38 312: 12,33 + 920: 12,51 + 923: 12,49 + 941: 26,45 + 948: 20,51 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS @@ -12546,6 +13084,10 @@ entities: 327: 14,30 328: 13,30 329: 12,30 + 921: 12,49 + 922: 12,51 + 942: 29,43 + 950: 18,49 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW @@ -12556,6 +13098,9 @@ entities: 316: 13,37 331: 11,31 332: 11,32 + 933: 24,45 + 934: 24,44 + 935: 24,43 - node: color: '#37789B8F' id: HalfTileOverlayGreyscale @@ -12634,7 +13179,7 @@ entities: id: LoadingArea decals: 420: 14,19 - 542: 0,38 + 527: 0,38 - node: color: '#FFFFFFFF' id: OldConcreteTrimCornerNe @@ -12716,23 +13261,25 @@ entities: 365: -5,18 366: 5,18 367: 5,14 - 523: 0,42 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: 360: 1,17 457: 34,27 - 531: 5,37 - 532: 2,38 + 516: 5,37 + 517: 2,38 + 649: -10,80 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 361: -1,17 458: 29,24 - 533: -2,38 - 558: -5,37 + 518: -2,38 + 541: -5,37 + 630: -16,77 + 655: -13,80 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -12740,22 +13287,25 @@ entities: 359: 1,15 422: 35,25 459: 26,31 + 641: -10,72 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 362: -1,15 421: 25,25 + 635: -16,72 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 535: 2,37 + 520: 2,37 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 534: -2,37 + 519: -2,37 + 652: -13,77 - node: color: '#FFFFFFFF' id: WarnLineE @@ -12779,9 +13329,36 @@ entities: 436: 35,34 437: 35,35 460: 26,32 - 516: 1,43 - 517: 1,42 - 518: 1,41 + 614: 3,79 + 615: 3,80 + 616: 3,81 + 617: 3,82 + 642: -10,73 + 643: -10,74 + 644: -10,75 + 645: -10,76 + 646: -10,77 + 647: -10,78 + 648: -10,79 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleE + decals: + 664: -14,72 + 665: -14,73 + 666: -14,74 + 667: -14,75 + 668: -14,76 + 669: -14,77 + 670: -13,77 + 671: -13,76 + 672: -13,75 + 673: -13,74 + 674: -13,73 + 675: -13,72 + 676: -13,78 + 677: -13,79 + 678: -13,80 - node: color: '#FED83DFF' id: WarnLineGreyscaleE @@ -12808,6 +13385,25 @@ entities: 493: 31,33 494: 31,34 495: 31,35 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleW + decals: + 658: -13,77 + 659: -13,76 + 660: -13,75 + 661: -13,74 + 662: -13,73 + 663: -13,72 + 679: -12,80 + 680: -12,79 + 681: -12,78 + 682: -12,77 + 683: -12,76 + 684: -12,75 + 685: -12,74 + 686: -12,73 + 687: -12,72 - node: color: '#FED83DFF' id: WarnLineGreyscaleW @@ -12856,8 +13452,11 @@ entities: 508: 31,25 509: 28,25 510: 29,25 - 519: -2,43 - 520: 2,43 + 636: -15,72 + 637: -14,72 + 638: -13,72 + 639: -12,72 + 640: -11,72 - node: color: '#FFFFFFFF' id: WarnLineS @@ -12881,9 +13480,16 @@ entities: 445: 25,28 446: 25,27 447: 25,26 - 513: -1,43 - 514: -1,42 - 515: -1,41 + 618: 2,79 + 619: 2,80 + 620: 2,81 + 621: 2,82 + 631: -16,76 + 632: -16,75 + 633: -16,74 + 634: -16,73 + 653: -13,78 + 654: -13,79 - node: color: '#B32828FF' id: WarnLineW @@ -12903,15 +13509,32 @@ entities: 356: 0,17 461: 30,24 462: 33,27 - 521: -2,41 - 522: 2,41 - 524: -1,38 - 525: 0,38 - 526: 1,38 - 527: -4,37 - 528: -3,37 - 529: 3,37 - 530: 4,37 + 511: 0,38 + 512: -4,37 + 513: -3,37 + 514: 3,37 + 515: 4,37 + 543: -1,38 + 544: 1,38 + 650: -15,77 + 651: -14,77 + 656: -12,80 + 657: -11,80 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 910: 30,49 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 914: 30,51 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 915: 30,51 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -12923,677 +13546,1636 @@ entities: 417: 16,16 418: 15,16 419: 17,16 + 911: 31,49 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 912: 30,50 + 913: 30,52 + 916: 32,52 + 917: 32,51 + 918: 32,50 + 919: 32,49 + - node: + color: '#FFFFFFFF' + id: corgi + decals: + 957: -58.052185,48.766907 - node: color: '#B32828FF' id: danger decals: 303: 8,17 304: 8,15 - 543: -1,38 - 544: 1,38 + - node: + color: '#DE3A3A50' + id: dot + decals: + 1021: -40.086456,48.937317 + 1022: -40.244034,48.806885 + 1023: -40.27527,49.07245 + - node: + color: '#FF0000FF' + id: grasssnow + decals: + 981: -58.052185,46.891907 + - node: + angle: 0.6981317007977318 rad + color: '#DE3A3A50' + id: line + decals: + 1019: -39.702225,49.01532 + - node: + angle: 0.6108652381980153 rad + color: '#FF0000FF' + id: line + decals: + 982: -51.59909,47.079407 + 983: -51.44278,46.53253 + - node: + color: '#DE3A3A50' + id: smallbrush + decals: + 1020: -40.264725,48.98407 - node: color: '#B02E26AB' id: splatter decals: - 554: 6.8588443,1.1016366 - 555: 6.9525943,0.75788665 - 556: 6.5619693,0.77351165 + 537: 6.8588443,1.1016366 + 538: 6.9525943,0.75788665 + 539: 6.5619693,0.77351165 + - node: + color: '#DE3A3A50' + id: splatter + decals: + 1017: -40.920975,49.562195 + 1018: -40.60849,49.76532 + - node: + color: '#DE3A3A53' + id: splatter + decals: + 561: -7.172806,71.50177 + - node: + color: '#DE3A3A76' + id: splatter + decals: + 562: -6.813385,71.673645 + - node: + color: '#DE3A3A92' + id: splatter + decals: + 1016: -40.858475,49.95282 + - node: + angle: 0.6108652381980153 rad + color: '#FF0000FF' + id: splatter + decals: + 984: -52.16156,47.68878 + 985: -51.75531,47.75128 + 986: -52.22406,48.360657 + 987: -51.63031,48.43878 + 988: -51.47406,46.735657 + - node: + cleanable: True + color: '#FFFF005B' + id: splatter + decals: + 995: -24.720215,38.06305 + 996: -24.37648,38.15692 + 997: -24.142105,38.078735 + 998: -24.04837,38.172546 + 999: -23.985886,38.313354 + 1000: -24.22026,38.65747 + 1001: -23.93901,38.845154 + - node: + cleanable: True + color: '#FFFF00FF' + id: splatter + decals: + 989: -24.53276,37.953552 + 990: -24.50151,38.06305 + 991: -24.126541,38.15692 + 992: -24.0484,38.344604 + 993: -24.06401,38.59491 + 994: -23.892136,38.29773 + - node: + color: '#DE3A3AFF' + id: syndlogo1 + decals: + 613: 1,73 + - node: + color: '#DE3A3AFF' + id: syndlogo10 + decals: + 567: 2,71 + - node: + color: '#DE3A3AFF' + id: syndlogo11 + decals: + 569: 3,71 + - node: + color: '#DE3A3AFF' + id: syndlogo12 + decals: + 570: 4,71 + - node: + color: '#DE3A3AFF' + id: syndlogo13 + decals: + 577: 1,70 + - node: + color: '#DE3A3AFF' + id: syndlogo14 + decals: + 572: 3,70 + - node: + color: '#DE3A3AFF' + id: syndlogo15 + decals: + 571: 4,70 + - node: + color: '#DE3A3AFF' + id: syndlogo16 + decals: + 576: 1,69 + - node: + color: '#DE3A3AFF' + id: syndlogo17 + decals: + 575: 2,69 + - node: + color: '#DE3A3AFF' + id: syndlogo18 + decals: + 574: 3,69 + - node: + color: '#DE3A3AFF' + id: syndlogo19 + decals: + 573: 4,69 + - node: + color: '#DE3A3AFF' + id: syndlogo2 + decals: + 612: 2,73 + - node: + color: '#DE3A3AFF' + id: syndlogo3 + decals: + 610: 3,73 + - node: + color: '#DE3A3AFF' + id: syndlogo4 + decals: + 611: 4,73 + - node: + color: '#DE3A3AFF' + id: syndlogo5 + decals: + 566: 1,72 + - node: + color: '#DE3A3AFF' + id: syndlogo6 + decals: + 563: 2,72 + - node: + color: '#DE3A3AFF' + id: syndlogo7 + decals: + 565: 3,72 + - node: + color: '#DE3A3AFF' + id: syndlogo8 + decals: + 564: 4,72 + - node: + color: '#DE3A3AFF' + id: syndlogo9 + decals: + 568: 1,71 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 30583 + 0: 65535 -1,0: - 0: 52428 + 0: 65535 + 0,-1: + 0: 65535 + -1,-1: + 0: 65535 0,1: - 0: 1911 - -1,1: - 0: 3276 + 0: 65535 0,2: - 0: 32631 - -1,2: - 0: 57309 - 0,3: - 0: 65287 - -1,3: - 0: 65293 - 0,4: - 0: 4094 + 0: 65535 1,0: 0: 65535 1,1: - 0: 4095 - 1,2: 0: 65535 - 1,3: - 0: 47375 - 1,4: - 0: 2491 - 2,2: - 0: 57341 - 2,3: - 0: 48001 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + 0,-4: + 0: 65280 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 12544 + 1,-3: + 0: 65527 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + -2,-3: + 0: 65260 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -2,-4: + 0: 32768 + -1,-4: + 0: 65280 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 2,0: - 0: 61026 + 0: 65535 2,1: - 0: 33390 - 2,4: - 0: 3003 + 0: 65535 2,-1: - 0: 36317 + 0: 65535 + 2,-2: + 0: 65535 + 1,2: + 0: 65535 + 2,2: + 0: 65535 + 0,3: + 0: 65535 + 1,3: + 0: 65535 + 2,3: + 0: 65535 3,0: - 0: 65519 + 0: 65535 3,1: - 0: 65519 + 0: 65535 3,2: - 0: 35127 + 0: 65535 3,3: - 0: 65526 - 3,-1: - 0: 63283 - 3,4: - 0: 20479 - 4,0: - 0: 30464 - 4,1: - 0: 7 - 4,2: - 0: 4032 - 4,3: - 0: 45998 + 0: 65535 -4,0: - 0: 65518 - -5,0: - 0: 52224 + 0: 65535 -4,1: - 0: 61167 - -5,1: - 0: 65292 + 0: 65535 -4,2: - 0: 29596 - -5,2: 0: 65535 -4,3: 0: 65535 - -5,3: - 0: 65535 - -4,4: - 0: 65295 - -4,-1: - 0: 60552 -3,0: - 0: 30465 + 0: 65535 -3,1: - 0: 12551 + 0: 65535 -3,2: - 0: 59255 + 0: 65535 -3,3: - 0: 65120 - -3,-1: - 0: 16383 - -3,4: - 0: 36590 + 0: 65535 -2,2: 0: 65535 -2,3: - 0: 45839 - -2,0: - 0: 160 - 1: 32768 - -2,1: - 0: 32 - -2,4: - 0: 955 - -1,4: - 0: 4095 - 0,-4: - 1: 65280 - -1,-4: - 1: 65280 - 0,-3: - 1: 4095 - 0: 4096 - -1,-3: - 1: 3822 - 0: 273 - 0,-2: - 0: 6135 - -1,-2: - 0: 3581 - 0,-1: - 0: 4095 - -1,-1: - 0: 4095 - 1,-4: - 1: 12544 - 1,-3: - 1: 4087 - 1,-2: - 0: 1911 - 1,-1: - 0: 3549 + 0: 65535 + -1,3: + 0: 65535 2,-3: - 0: 32768 - 2,-2: - 0: 34944 + 0: 65260 3,-3: - 0: 61440 + 0: 65535 3,-2: - 0: 13105 - 4,-3: - 0: 61440 + 0: 30591 + 3,-1: + 0: 65527 + -4,-1: + 0: 65535 -4,-3: - 0: 32768 + 0: 65535 -4,-2: - 0: 34944 + 0: 65535 -3,-3: - 0: 12288 + 0: 65527 -3,-2: - 0: 13105 - -2,-1: - 0: 1397 - -2,-3: - 0: 3276 - -2,-2: - 0: 3276 + 0: 65535 + -3,-1: + 0: 65535 + 0,4: + 0: 65535 + 1,4: + 0: 65535 + 2,4: + 0: 65535 + -2,4: + 0: 65535 + -1,4: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + 4,-1: + 0: 56780 + 4,0: + 0: 65529 + 4,1: + 0: 37375 + 4,2: + 0: 65535 0,5: - 0: 64375 - -1,5: - 0: 64477 + 0: 65535 0,6: - 0: 63483 - -1,6: - 0: 65019 + 0: 65535 0,7: - 0: 4091 - -1,7: - 0: 4091 - 0,8: 0: 65535 1,5: - 0: 13107 + 0: 65535 1,6: - 0: 13107 + 0: 65535 1,7: - 0: 819 - 1,8: - 0: 30711 + 0: 65535 2,5: - 0: 39193 + 0: 65535 2,6: - 0: 39193 + 0: 65535 2,7: - 0: 39193 - 2,8: - 0: 53401 - 3,5: - 0: 21839 - 3,6: - 0: 21839 - 3,7: - 0: 65359 - 3,8: - 0: 61183 - 4,4: - 0: 33727 - 4,5: - 0: 48011 - 4,6: - 0: 48011 - 4,7: - 0: 45963 - -5,4: - 0: 60943 + 0: 65535 + 3,4: + 0: 65535 + -4,4: + 0: 65535 -4,5: 0: 65535 - -5,5: - 0: 61166 -4,6: - 0: 61695 - -5,6: - 0: 57582 - -4,7: 0: 65535 - -5,7: - 0: 61166 - -4,8: + -3,4: 0: 65535 -3,5: 0: 65535 -3,6: - 0: 59647 + 0: 65535 -3,7: - 0: 7406 - -3,8: 0: 65535 -2,5: - 0: 48059 + 0: 65535 -2,6: - 0: 47291 + 0: 65535 -2,7: - 0: 3003 - -2,8: - 0: 49083 - -1,8: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 65535 + -7,2: 0: 65535 -7,3: - 0: 34944 - -6,3: - 0: 48059 + 0: 65535 -6,2: - 0: 43144 - -6,4: - 0: 3 + 0: 65535 + -6,3: + 0: 65535 -6,1: - 0: 34816 + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + 4,3: + 0: 65535 + -7,4: + 0: 65535 + -6,4: + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 65535 + 4,4: + 0: 65535 + -3,8: + 0: 64511 + 1: 1024 + -2,8: + 0: 61437 + 2: 2 + 1: 4096 + -1,8: + 0: 65535 + 0,8: + 0: 65535 + 1,8: + 0: 65535 + 2,8: + 0: 65535 + 2,9: + 0: 65535 + 3,5: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + -4,7: + 3: 1 + 0: 65534 + 4,-3: + 0: 65535 4,-2: - 0: 34956 - 4,-1: - 0: 2184 + 0: 52463 5,-3: - 0: 4096 + 0: 65535 5,-2: - 0: 4369 + 0: 65535 5,-1: - 0: 30513 - 5,0: - 0: 30583 - 5,1: - 0: 26215 + 0: 65535 5,2: - 0: 1911 - 5,3: - 0: 63543 - 5,4: - 0: 14847 - 6,3: - 0: 65534 - 6,4: 0: 65535 - 7,3: + 5,0: 0: 65535 - 7,4: + 5,1: + 0: 65535 + -8,5: 0: 65535 - 8,3: - 0: 63281 -8,6: - 1: 32768 - -7,7: - 0: 61439 + 0: 65535 -8,7: - 1: 32768 - -8,8: - 1: 8 + 0: 65535 -7,5: - 1: 7953 + 0: 65535 -7,6: - 1: 1 - 0: 61164 - -7,8: - 1: 3105 - 0: 28684 + 0: 65535 + -7,7: + 0: 65535 -6,5: - 1: 12066 + 0: 65535 -6,6: - 0: 4368 - 1: 16578 + 0: 65535 -6,7: - 0: 4979 - 1: 18440 + 0: 65535 + -5,6: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 + -8,8: + 0: 65535 + -7,8: + 0: 65535 -6,8: - 1: 22 - 0: 4096 - -5,8: - 0: 61166 - 4,8: - 0: 48059 - 5,5: - 0: 46003 - 5,6: - 0: 49083 - 5,7: - 0: 47547 - 5,8: - 0: 30523 - 6,5: - 0: 61454 - 6,6: 0: 65535 - 6,7: + -8,1: + 0: 65532 + -8,2: 0: 65535 - 6,8: - 0: 61439 - 7,5: - 0: 61455 - 7,6: + -8,3: 0: 65535 - 7,7: + -7,0: + 0: 65534 + -7,1: 0: 65535 - 7,8: + -6,0: 0: 65535 - 8,4: - 0: 14335 - 8,5: - 0: 61441 - 8,6: + 5,3: 0: 65535 - 8,7: + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 7,2: 0: 65535 + 7,3: + 0: 65535 + -8,4: + 0: 65535 + -5,7: + 0: 65471 + 2: 64 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + -4,8: + 0: 64503 + 3: 1024 + 2: 8 -4,9: - 0: 4095 - -5,9: - 0: 3822 + 0: 57335 + 1: 8192 + 3: 8 -4,10: - 0: 2815 - -5,10: - 0: 8 + 0: 65407 + 2: 128 + -4,11: + 0: 65535 -3,9: - 0: 4095 + 0: 65215 + 2: 256 + 3: 64 -3,10: - 0: 19 + 0: 65535 + -3,11: + 0: 65535 -2,9: - 0: 2449 + 0: 65519 + 2: 16 -2,10: - 0: 571 + 0: 65535 -1,9: - 0: 4084 + 0: 65535 -1,10: - 0: 52416 + 0: 65535 0,9: - 0: 4084 + 0: 65535 0,10: - 0: 30576 + 0: 65535 1,9: - 0: 816 - 2,9: - 0: 3293 + 0: 65535 + 3,8: + 0: 65535 3,9: - 0: 4078 - 4,9: - 0: 827 - 8,8: 0: 65535 - 9,5: - 0: 12288 - 9,6: - 0: 13107 - 9,7: - 0: 13107 - 9,8: - 0: 819 + -8,9: + 0: 65535 + -7,9: + 0: 65535 + -6,9: + 0: 65535 + -6,10: + 0: 65535 + -5,8: + 0: 32765 + 1: 2 + 2: 32768 + -5,9: + 0: 65535 + -5,10: + 0: 65535 + -5,11: + 0: 65535 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 9,4: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 9,3: + 0: 65535 -9,8: - 1: 3276 + 0: 65535 + -9,9: + 0: 65535 -9,7: - 1: 52428 + 0: 65535 -9,5: - 1: 52428 + 0: 65535 -9,6: - 1: 52428 + 0: 65535 + -7,-1: + 0: 61128 + -6,-2: + 0: 65518 + -6,-1: + 0: 65535 + -6,-3: + 0: 52360 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + 4,8: + 0: 65535 + 4,9: + 0: 65535 + -8,0: + 0: 32768 + 6,-3: + 0: 13107 + 6,-2: + 0: 63351 + 6,-1: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 7,1: + 0: 62224 + 5,6: + 0: 65535 + 5,7: + 0: 65535 + 6,6: + 0: 65535 + 6,7: + 0: 65535 + 7,6: + 0: 65535 + 7,7: + 0: 65535 + -2,11: + 0: 65535 + -1,11: + 0: 65535 + 0,11: + 0: 65535 + 1,10: + 0: 65535 + 1,11: + 0: 65535 + 2,10: + 0: 62901 + 3: 10 + 2: 2624 + 2,11: + 0: 65535 + 3,10: + 0: 65535 + -8,10: + 0: 65535 + -7,10: + 0: 65535 + 8,6: + 0: 65535 + 8,7: + 0: 65535 + 9,5: + 0: 65535 + 9,6: + 0: 65535 + 9,7: + 0: 65535 + 10,4: + 0: 29457 + 10,5: + 0: 30583 + 10,6: + 0: 30583 + 10,7: + 0: 30583 + 8,1: + 0: 61440 + 9,1: + 0: 4096 + 9,2: + 0: 30513 + 10,3: + 0: 4369 + -9,4: + 0: 65535 + 4,10: + 0: 65535 + 5,8: + 0: 65535 5,9: - 0: 7 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - type: NavMap -- proto: AccordionInstrument - entities: - - uid: 3 - components: - - type: Transform - pos: 70.439964,5.605958 - parent: 2 - - uid: 21498 - components: - - type: Transform - pos: 23.384403,40.548702 - parent: 2 -- proto: AcousticGuitarInstrument - entities: - - uid: 4 - components: - - type: Transform - pos: 40.62576,68.60806 - parent: 2 - - uid: 21487 - components: - - type: Transform - pos: 20.636595,40.587765 - parent: 2 -- proto: ActionToggleInternals - entities: - - uid: 7 - components: - - type: Transform - parent: 6 - - type: InstantAction - container: 6 - - uid: 11 - components: - - type: Transform - parent: 10 - - type: InstantAction - container: 10 - - uid: 15 - components: - - type: Transform - parent: 14 - - type: InstantAction - container: 14 - - uid: 19 - components: - - type: Transform - parent: 18 - - type: InstantAction - container: 18 - - uid: 23 - components: - - type: Transform - parent: 22 - - type: InstantAction - container: 22 - - uid: 27 - components: - - type: Transform - parent: 26 - - type: InstantAction - container: 26 - - uid: 31 - components: - - type: Transform - parent: 30 - - type: InstantAction - container: 30 -- proto: ActionToggleLight - entities: - - uid: 34 - components: - - type: Transform - parent: 33 - - type: InstantAction - container: 33 - - uid: 36 - components: - - type: Transform - parent: 35 - - type: InstantAction - container: 35 - - uid: 38 - components: - - type: Transform - parent: 37 - - type: InstantAction - container: 37 - - uid: 40 - components: - - type: Transform - parent: 39 - - type: InstantAction - container: 39 - - uid: 43 - components: - - type: Transform - parent: 42 - - type: InstantAction - container: 42 - - uid: 3622 - components: - - type: Transform - parent: 3621 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 3621 - - uid: 21212 - components: - - type: Transform - parent: 11172 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 11172 - - uid: 21381 - components: - - type: Transform - parent: 21380 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 21380 -- proto: AirAlarm - entities: - - uid: 51 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,8.5 - parent: 2 - - type: DeviceList - devices: - - 10100 - - 9977 - - 412 - - 10103 - - 7735 - - 7736 - - 7737 - - 7732 - - uid: 52 - components: - - type: Transform - pos: 5.5,15.5 - parent: 2 - - type: DeviceList - devices: - - 7733 - - 7734 - - 9979 - - 10101 - - 414 - - 7738 - - uid: 53 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,2.5 - parent: 2 - - type: DeviceList - devices: - - 7736 - - 10102 - - 9978 - - 413 - - uid: 54 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,16.5 - parent: 2 - - type: DeviceList - devices: - - 416 - - 10107 - - 9983 - - 7741 - - uid: 55 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,23.5 - parent: 2 - - type: DeviceList - devices: - - 422 - - 10108 - - 421 - - 420 - - 419 - - 7825 - - 7731 - - 7739 - - 7826 - - uid: 56 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,21.5 - parent: 2 - - type: DeviceList - devices: - - 418 - - 10106 - - 9982 - - 417 - - 7823 - - 7824 - - 7731 - - uid: 57 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,0.5 - parent: 2 - - type: DeviceList - devices: - - 7829 - - 7758 - - 7754 - - 7831 - - 7830 - - 429 - - 430 - - uid: 58 - components: - - type: Transform - pos: 82.5,12.5 + 0: 65535 + 5,10: + 0: 65535 + 6,8: + 0: 65535 + 6,9: + 0: 65535 + 6,10: + 0: 65535 + 7,8: + 0: 65535 + 7,9: + 0: 65535 + 7,10: + 0: 65535 + 8,8: + 0: 65535 + 8,9: + 0: 65535 + 8,10: + 0: 65535 + 9,8: + 0: 65535 + 9,9: + 0: 65535 + 9,10: + 0: 65535 + 10,8: + 0: 30583 + 10,9: + 0: 30583 + -1,12: + 0: 65535 + 0,12: + 0: 65535 + 1,12: + 0: 65535 + -9,3: + 0: 64716 + -6,11: + 0: 65535 + -4,12: + 0: 65535 + -3,12: + 0: 65535 + -2,12: + 0: 65535 + -8,11: + 0: 65535 + -7,11: + 0: 65535 + -10,8: + 0: 65535 + -9,10: + 0: 65535 + -9,11: + 0: 65535 + -10,5: + 0: 65534 + -10,6: + 0: 65535 + -10,7: + 0: 65535 + 2,12: + 0: 65535 + -8,12: + 0: 65535 + -7,12: + 0: 65535 + -6,12: + 0: 65535 + -5,12: + 0: 65535 + -9,12: + 0: 65535 + 3,11: + 0: 65535 + 4,11: + 0: 65535 + 5,11: + 0: 65535 + 6,11: + 0: 65535 + 7,11: + 0: 65535 + -4,13: + 0: 65535 + -4,14: + 0: 65535 + -4,15: + 0: 65535 + -3,13: + 0: 65535 + -3,14: + 0: 65535 + -3,15: + 0: 65535 + -2,13: + 0: 65535 + -2,14: + 0: 65535 + -2,15: + 0: 65535 + -1,13: + 0: 65535 + -1,14: + 0: 65535 + -1,15: + 0: 65535 + 0,13: + 0: 65535 + 0,14: + 0: 65535 + 0,15: + 0: 65503 + 3: 32 + 1,13: + 0: 65535 + 1,14: + 0: 65533 + 3: 2 + 1,15: + 0: 65535 + 2,13: + 0: 57343 + 3: 8192 + 2,14: + 0: 32767 + 3: 32768 + 2,15: + 0: 64895 + 3: 640 + 3,12: + 0: 65535 + 3,13: + 0: 65535 + 3,14: + 3: 1 + 0: 65534 + 3,15: + 0: 65535 + -6,13: + 0: 65535 + -6,14: + 0: 65535 + -5,13: + 0: 65535 + -5,14: + 0: 65535 + -5,15: + 0: 65535 + -4,16: + 0: 65535 + -4,17: + 0: 65535 + -3,16: + 0: 65535 + -3,17: + 0: 65535 + -3,18: + 0: 65535 + -2,16: + 0: 65535 + -2,17: + 0: 65535 + -2,18: + 0: 65535 + -1,16: + 0: 65535 + -1,17: + 0: 65535 + -1,18: + 0: 65535 + -1,19: + 0: 65535 + 0,16: + 0: 65535 + 0,17: + 0: 65535 + 0,18: + 0: 65535 + 0,19: + 0: 65535 + 1,16: + 0: 65471 + 3: 64 + 1,17: + 0: 65535 + 1,18: + 0: 65535 + 1,19: + 0: 65535 + 2,16: + 0: 65021 + 3: 514 + 3,16: + 0: 65535 + 4,12: + 0: 65535 + 4,13: + 0: 65535 + 5,12: + 0: 65535 + 5,13: + 0: 65535 + 5,14: + 0: 65535 + 6,12: + 0: 65535 + 6,13: + 0: 65535 + 6,14: + 0: 65535 + 7,12: + 0: 65535 + 7,13: + 0: 65535 + 7,14: + 0: 65535 + -5,16: + 0: 65535 + -5,17: + 0: 65535 + 8,11: + 0: 65535 + -4,18: + 0: 65535 + -4,19: + 0: 65535 + -3,19: + 0: 65535 + -5,18: + 0: 65535 + -5,19: + 0: 65535 + 8,12: + 0: 65535 + 8,13: + 0: 65535 + 8,14: + 0: 65535 + -4,20: + 0: 65535 + -3,20: + 0: 65535 + -5,20: + 0: 65535 + -10,10: + 0: 65535 + -10,11: + 0: 65535 + -8,13: + 0: 65535 + -8,14: + 0: 65535 + -7,13: + 0: 65535 + -7,14: + 0: 65535 + -10,12: + 0: 65535 + -10,13: + 0: 65535 + -10,14: + 0: 65535 + -9,13: + 0: 65535 + -9,14: + 0: 65535 + -2,19: + 0: 65535 + -12,8: + 0: 12544 + -12,9: + 0: 65535 + -12,10: + 0: 65535 + -12,11: + 0: 65535 + -11,8: + 0: 65228 + -11,9: + 0: 65535 + -11,10: + 0: 65535 + -11,11: + 0: 65535 + -10,9: + 0: 65535 + -11,6: + 0: 60616 + -11,7: + 0: 52974 + -11,5: + 0: 34944 + -10,4: + 0: 61064 + 9,11: + 0: 65535 + 10,10: + 0: 30583 + 10,11: + 0: 30583 + -9,2: + 0: 34816 + -8,15: + 0: 65535 + -7,15: + 0: 65535 + -6,15: + 0: 65535 + -12,12: + 0: 65535 + -12,13: + 0: 65535 + -12,14: + 0: 65535 + -11,12: + 0: 65535 + -11,13: + 0: 65535 + -11,14: + 0: 65535 + -11,15: + 0: 36079 + -10,15: + 0: 65535 + -9,15: + 0: 65535 + 2,17: + 0: 65535 + 2,18: + 0: 65535 + 2,19: + 0: 65535 + 3,17: + 0: 65535 + 3,18: + 0: 65535 + 3,19: + 0: 29695 + 4,14: + 0: 65535 + 4,15: + 0: 65535 + 5,15: + 0: 65535 + 6,15: + 0: 65535 + 7,15: + 0: 65535 + -8,16: + 0: 2255 + -7,16: + 0: 65535 + -7,17: + 0: 140 + -6,16: + 0: 65535 + -6,17: + 0: 61439 + -6,18: + 0: 61166 + -6,19: + 0: 61166 + 8,15: + 0: 65535 + 9,12: + 0: 65535 + 9,13: + 0: 65535 + 9,14: + 0: 65535 + 9,15: + 0: 65535 + 10,12: + 0: 30583 + 10,13: + 0: 63351 + 10,14: + 0: 65535 + 10,15: + 0: 65535 + 11,14: + 0: 4368 + -4,21: + 0: 65535 + -4,22: + 0: 3 + -3,21: + 0: 65535 + -3,22: + 0: 2254 + -2,20: + 0: 65535 + -2,21: + 0: 65535 + -2,22: + 0: 65535 + -2,23: + 0: 207 + -1,20: + 0: 65535 + -1,21: + 0: 65535 + -1,22: + 0: 65535 + -1,23: + 0: 3 + -6,20: + 0: 65262 + -6,21: + 0: 61183 + -6,22: + 0: 12 + -5,21: + 0: 65535 + -5,22: + 0: 3 + 0,20: + 0: 65535 + 0,21: + 0: 65535 + 0,22: + 0: 65535 + 1,20: + 0: 65535 + 1,21: + 0: 65535 + 1,22: + 0: 65535 + 1,23: + 0: 8 + 2,20: + 0: 65535 + 2,21: + 0: 65535 + 2,22: + 0: 65535 + 2,23: + 0: 127 + 3,20: + 0: 4407 + 3,21: + 0: 30513 + 3,22: + 0: 4983 + 4,16: + 0: 65535 + 4,17: + 0: 65535 + 4,18: + 0: 32767 + 5,16: + 0: 65535 + 5,17: + 0: 65535 + 6,16: + 0: 65535 + 6,17: + 0: 32767 + 7,16: + 0: 65535 + -16,10: + 0: 65516 + -16,11: + 0: 65535 + -16,9: + 0: 34816 + -15,9: + 0: 65535 + -15,10: + 0: 65535 + -15,11: + 0: 65535 + -15,8: + 0: 49152 + -14,8: + 0: 12288 + -14,9: + 0: 65535 + -14,10: + 0: 65535 + -14,11: + 0: 65535 + -13,9: + 0: 65535 + -13,10: + 0: 65535 + -13,11: + 0: 65535 + -13,8: + 0: 60416 + -16,12: + 0: 65535 + -16,13: + 0: 65535 + -16,14: + 0: 36046 + -15,12: + 0: 65535 + -15,13: + 0: 65535 + -15,14: + 0: 65535 + -14,12: + 0: 65535 + -14,13: + 0: 65535 + -14,14: + 0: 65535 + -13,12: + 0: 65535 + -13,13: + 0: 65535 + -13,14: + 0: 65535 + -10,16: + 0: 14 + -9,16: + 0: 15 + -17,12: + 0: 34952 + -17,11: + 0: 34952 + 8,16: + 0: 5119 + 9,16: + 0: 127 + 10,16: + 0: 14 + 5,18: + 0: 383 + 7,17: + 0: 383 + 4,19: + 0: 1 + 6,18: + 0: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 5000 + moles: + - 6666.982 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap + - type: IFF + color: '#9B2D30FF' + - uid: 16531 + components: + - type: MetaData + - type: Transform + parent: 16530 + - type: Solution + solution: + maxVol: 100 + name: beaker + reagents: + - data: [] + ReagentId: FluorosulfuricAcid + Quantity: 50 + - data: [] + ReagentId: FoamingAgent + Quantity: 50 + - type: ContainedSolution + containerName: beaker + container: 16530 + - uid: 16533 + components: + - type: MetaData + - type: Transform + parent: 16532 + - type: Solution + solution: + temperature: 1026.025 + maxVol: 100 + name: beaker + reagents: + - data: [] + ReagentId: Iron + Quantity: 100 + - type: ContainedSolution + containerName: beaker + container: 16532 + - uid: 16537 + components: + - type: MetaData + - type: Transform + parent: 16536 + - type: Solution + solution: + maxVol: 100 + name: beaker + reagents: + - data: [] + ReagentId: Phlogiston + Quantity: 60 + - data: [] + ReagentId: Chlorine + Quantity: 30 + - type: ContainedSolution + containerName: beaker + container: 16536 + - uid: 16539 + components: + - type: MetaData + - type: Transform + parent: 16538 + - type: Solution + solution: + maxVol: 100 + name: beaker + reagents: + - data: [] + ReagentId: Fluorine + Quantity: 90 + - type: ContainedSolution + containerName: beaker + container: 16538 +- proto: AccessConfigurator + entities: + - uid: 16540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.568008,40.325134 + parent: 16527 +- proto: AccordionInstrument + entities: + - uid: 3 + components: + - type: Transform + pos: 70.439964,5.605958 + parent: 2 + - uid: 21498 + components: + - type: Transform + pos: 23.384403,40.548702 + parent: 2 +- proto: AcousticGuitarInstrument + entities: + - uid: 4 + components: + - type: Transform + pos: 40.62576,68.60806 + parent: 2 + - uid: 21487 + components: + - type: Transform + pos: 20.636595,40.587765 + parent: 2 +- proto: ActionToggleInternals + entities: + - uid: 7 + components: + - type: Transform + parent: 6 + - type: InstantAction + container: 6 + - uid: 11 + components: + - type: Transform + parent: 10 + - type: InstantAction + container: 10 + - uid: 15 + components: + - type: Transform + parent: 14 + - type: InstantAction + container: 14 + - uid: 19 + components: + - type: Transform + parent: 18 + - type: InstantAction + container: 18 + - uid: 23 + components: + - type: Transform + parent: 22 + - type: InstantAction + container: 22 + - uid: 27 + components: + - type: Transform + parent: 26 + - type: InstantAction + container: 26 + - uid: 31 + components: + - type: Transform + parent: 30 + - type: InstantAction + container: 30 +- proto: ActionToggleLight + entities: + - uid: 34 + components: + - type: Transform + parent: 33 + - type: InstantAction + container: 33 + - uid: 36 + components: + - type: Transform + parent: 35 + - type: InstantAction + container: 35 + - uid: 38 + components: + - type: Transform + parent: 37 + - type: InstantAction + container: 37 + - uid: 40 + components: + - type: Transform + parent: 39 + - type: InstantAction + container: 39 + - uid: 43 + components: + - type: Transform + parent: 42 + - type: InstantAction + container: 42 + - uid: 3622 + components: + - type: Transform + parent: 3621 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 3621 + - uid: 21212 + components: + - type: Transform + parent: 11172 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 11172 + - uid: 21381 + components: + - type: Transform + parent: 21380 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 21380 +- proto: AirAlarm + entities: + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 10100 + - 9977 + - 412 + - 10103 + - 7735 + - 7736 + - 7737 + - 7732 + - uid: 52 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 7733 + - 7734 + - 9979 + - 10101 + - 414 + - 7738 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 7736 + - 10102 + - 9978 + - 413 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 416 + - 10107 + - 9983 + - 7741 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 422 + - 10108 + - 421 + - 420 + - 419 + - 7825 + - 7731 + - 7739 + - 7826 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 418 + - 10106 + - 9982 + - 417 + - 7823 + - 7824 + - 7731 + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 7829 + - 7758 + - 7754 + - 7831 + - 7830 + - 429 + - 430 + - uid: 58 + components: + - type: Transform + pos: 82.5,12.5 parent: 2 - type: DeviceList devices: @@ -14016,8 +15598,6 @@ entities: - 491 - 9981 - 10105 - - 7918 - - 7919 - uid: 97 components: - type: Transform @@ -14230,11 +15810,19 @@ entities: parent: 2 - type: DeviceList devices: - - 7918 - - 7919 - 7879 + - 7741 + - 16525 + - 12004 + - 10223 + - 7819 - 7880 - 7822 + - 7821 + - 7820 + - 9702 + - 10022 + - 10158 - uid: 107 components: - type: Transform @@ -14992,11 +16580,11 @@ entities: - type: Transform pos: 31.5,-37.5 parent: 2 - - uid: 16505 + - uid: 16541 components: - type: Transform pos: -26.5,25.5 - parent: 16504 + parent: 16527 - proto: Airlock entities: - uid: 156 @@ -15020,11 +16608,11 @@ entities: - type: Transform pos: 17.5,11.5 parent: 2 - - uid: 16506 + - uid: 16542 components: - type: Transform pos: 15.5,20.5 - parent: 16504 + parent: 16527 - proto: AirlockArmoryGlassLocked entities: - uid: 160 @@ -15053,11 +16641,18 @@ entities: parent: 2 - proto: AirlockAssembly entities: - - uid: 16507 + - uid: 16543 components: - type: Transform pos: 13.5,20.5 - parent: 16504 + parent: 16527 +- proto: AirlockAssemblyScienceGlass + entities: + - uid: 16544 + components: + - type: Transform + pos: -12.5,52.5 + parent: 16527 - proto: AirlockAssemblySecurity entities: - uid: 164 @@ -15065,6 +16660,40 @@ entities: - type: Transform pos: 76.5,9.5 parent: 2 +- proto: AirlockAssemblySyndicate + entities: + - uid: 16545 + components: + - type: Transform + pos: -2.5,50.5 + parent: 16527 + - uid: 16546 + components: + - type: Transform + pos: 1.5,53.5 + parent: 16527 + - uid: 16547 + components: + - type: Transform + pos: 8.5,59.5 + parent: 16527 + - uid: 16548 + components: + - type: Transform + pos: 8.5,64.5 + parent: 16527 + - uid: 16549 + components: + - type: Transform + pos: -8.5,64.5 + parent: 16527 +- proto: AirlockAssemblySyndicateGlass + entities: + - uid: 16550 + components: + - type: Transform + pos: 3.5,67.5 + parent: 16527 - proto: AirlockAtmosphericsLocked entities: - uid: 165 @@ -15636,22 +17265,22 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleSyndicateLocked entities: - - uid: 16508 + - uid: 16551 components: - type: Transform pos: -0.5,-13.5 - parent: 16504 - - uid: 16509 + parent: 16527 + - uid: 16552 components: - type: Transform pos: 1.5,-13.5 - parent: 16504 - - uid: 16510 + parent: 16527 + - uid: 16553 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,29.5 - parent: 16504 + parent: 16527 - proto: AirlockExternalLocked entities: - uid: 254 @@ -15712,53 +17341,45 @@ entities: parent: 2 - proto: AirlockExternalSyndicateLocked entities: - - uid: 16511 + - uid: 16554 components: - type: Transform pos: 0.5,-8.5 - parent: 16504 + parent: 16527 - type: DeviceLinkSource linkedPorts: - 16513: + 16556: - DoorStatus: DoorBolt - 16512: + 16555: - DoorStatus: DoorBolt - 16514: + 16557: - DoorStatus: DoorBolt - missingComponents: - - Damageable - - Destructible - - Construction - - uid: 16512 + - uid: 16555 components: - type: Transform pos: 0.5,-4.5 - parent: 16504 + parent: 16527 - type: DeviceLinkSource linkedPorts: - 16511: + 16554: - DoorStatus: DoorBolt - missingComponents: - - Damageable - - Destructible - - Construction - - uid: 16513 + - uid: 16556 components: - type: Transform pos: -2.5,-6.5 - parent: 16504 + parent: 16527 - type: DeviceLinkSource linkedPorts: - 16511: + 16554: - DoorStatus: DoorBolt - - uid: 16514 + - uid: 16557 components: - type: Transform pos: 3.5,-6.5 - parent: 16504 + parent: 16527 - type: DeviceLinkSource linkedPorts: - 16511: + 16554: - DoorStatus: DoorBolt - proto: AirlockFreezerKitchenHydroLocked entities: @@ -15865,16 +17486,16 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,39.5 parent: 2 - - uid: 16515 + - uid: 16558 components: - type: Transform pos: 12.5,2.5 - parent: 16504 - - uid: 16516 + parent: 16527 + - uid: 16559 components: - type: Transform pos: 12.5,4.5 - parent: 16504 + parent: 16527 - uid: 22211 components: - type: Transform @@ -15903,6 +17524,28 @@ entities: rot: 3.141592653589793 rad pos: 95.5,17.5 parent: 2 +- proto: AirlockHatchSyndicate + entities: + - uid: 16560 + components: + - type: Transform + pos: -20.5,5.5 + parent: 16527 + - uid: 16561 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 16527 + - uid: 16562 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 16527 + - uid: 16563 + components: + - type: Transform + pos: -13.5,80.5 + parent: 16527 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 284 @@ -15945,11 +17588,11 @@ entities: - type: Transform pos: 69.5,48.5 parent: 2 - - uid: 16517 + - uid: 16564 components: - type: Transform pos: 17.5,13.5 - parent: 16504 + parent: 16527 - proto: AirlockMaint entities: - uid: 289 @@ -15981,6 +17624,13 @@ entities: - type: Transform pos: 32.5,68.5 parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 350 + components: + - type: Transform + pos: 15.5,56.5 + parent: 2 - proto: AirlockMaintCargoLocked entities: - uid: 294 @@ -15995,11 +17645,11 @@ entities: - type: Transform pos: 81.5,25.5 parent: 2 - - uid: 16518 + - uid: 16565 components: - type: Transform pos: -11.5,15.5 - parent: 16504 + parent: 16527 - proto: AirlockMaintCommonLocked entities: - uid: 296 @@ -16130,6 +17780,11 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,75.5 parent: 2 + - uid: 328 + components: + - type: Transform + pos: 13.5,45.5 + parent: 2 - proto: AirlockMaintEngiLocked entities: - uid: 324 @@ -16142,13 +17797,6 @@ entities: - type: Transform pos: 39.5,58.5 parent: 2 -- proto: AirlockMaintHydroLocked - entities: - - uid: 21197 - components: - - type: Transform - pos: 13.5,45.5 - parent: 2 - proto: AirlockMaintJanitorLocked entities: - uid: 327 @@ -16156,13 +17804,6 @@ entities: - type: Transform pos: 64.5,46.5 parent: 2 -- proto: AirlockMaintKitchenLocked - entities: - - uid: 328 - components: - - type: Transform - pos: 15.5,56.5 - parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 329 @@ -16246,11 +17887,11 @@ entities: rot: 3.141592653589793 rad pos: 59.5,17.5 parent: 2 - - uid: 15688 + - uid: 13525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,21.5 + rot: 3.141592653589793 rad + pos: 63.5,23.5 parent: 2 - proto: AirlockMaintServiceLocked entities: @@ -16299,20 +17940,20 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-1.5 parent: 2 -- proto: AirlockMedicalLocked - entities: - - uid: 350 + - uid: 964 components: - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad pos: 46.5,-4.5 parent: 2 - - uid: 351 + - uid: 965 components: - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad pos: 46.5,-10.5 parent: 2 +- proto: AirlockMedicalLocked + entities: - uid: 352 components: - type: Transform @@ -16353,6 +17994,13 @@ entities: - type: Transform pos: 3.5,2.5 parent: 2 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 16566 + components: + - type: Transform + pos: -19.5,51.5 + parent: 16527 - proto: AirlockResearchDirectorLocked entities: - uid: 359 @@ -16462,6 +18110,64 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-13.5 parent: 2 + - uid: 16567 + components: + - type: Transform + pos: -30.5,36.5 + parent: 16527 + - uid: 16568 + components: + - type: Transform + pos: -29.5,36.5 + parent: 16527 + - uid: 16569 + components: + - type: Transform + pos: -31.5,35.5 + parent: 16527 + - uid: 16570 + components: + - type: Transform + pos: -31.5,34.5 + parent: 16527 + - uid: 16571 + components: + - type: Transform + pos: -22.5,47.5 + parent: 16527 + - uid: 16572 + components: + - type: Transform + pos: -22.5,49.5 + parent: 16527 + - uid: 16573 + components: + - type: Transform + pos: -25.5,45.5 + parent: 16527 + - uid: 16574 + components: + - type: Transform + pos: -25.5,51.5 + parent: 16527 + - uid: 16575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,40.5 + parent: 16527 + - uid: 16576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,41.5 + parent: 16527 + - uid: 16577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,40.5 + parent: 16527 - proto: AirlockSecurity entities: - uid: 379 @@ -16635,118 +18341,270 @@ entities: parent: 2 - proto: AirlockSyndicate entities: - - uid: 16519 + - uid: 16578 components: - type: Transform pos: 22.5,26.5 - parent: 16504 + parent: 16527 - type: DeviceLinkSource linkedPorts: - 19953: + 24378: - DoorStatus: Trigger - proto: AirlockSyndicateGlass entities: - - uid: 16520 + - uid: 16579 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,24.5 - parent: 16504 - - uid: 16521 + parent: 16527 + - uid: 16580 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,28.5 - parent: 16504 - - uid: 16522 + parent: 16527 + - uid: 16581 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,28.5 - parent: 16504 - - uid: 16523 + parent: 16527 + - uid: 16582 components: - type: Transform pos: 14.5,29.5 - parent: 16504 - - uid: 16524 + parent: 16527 + - uid: 16583 components: - type: Transform pos: 12.5,38.5 - parent: 16504 + parent: 16527 - type: DeviceLinkSource linkedPorts: - 19954: + 24379: - DoorStatus: Trigger - - uid: 16525 + - uid: 16584 components: - type: Transform pos: -8.5,26.5 - parent: 16504 + parent: 16527 - type: DeviceLinkSource linkedPorts: - 19942: + 24367: - DoorStatus: Trigger - - uid: 16526 + - uid: 16585 components: - type: Transform pos: 15.5,24.5 - parent: 16504 + parent: 16527 - proto: AirlockSyndicateGlassLocked entities: - - uid: 16527 + - uid: 16586 + components: + - type: Transform + pos: 2.5,36.5 + parent: 16527 + - uid: 16587 components: - type: Transform pos: -1.5,36.5 - parent: 16504 - - uid: 16528 + parent: 16527 + - uid: 16588 components: - type: Transform - pos: 2.5,36.5 - parent: 16504 + pos: 1.5,67.5 + parent: 16527 + - uid: 16589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,51.5 + parent: 16527 + - uid: 16590 + components: + - type: Transform + pos: 11.5,52.5 + parent: 16527 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 16592: + - DoorStatus: DoorBolt + - uid: 16591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,49.5 + parent: 16527 + - uid: 16592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,52.5 + parent: 16527 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 16590: + - DoorStatus: DoorBolt + - uid: 16593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,48.5 + parent: 16527 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 16594: + - DoorStatus: DoorBolt + - uid: 16594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,48.5 + parent: 16527 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 16593: + - DoorStatus: DoorBolt + - uid: 16595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,51.5 + parent: 16527 + - uid: 16596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,49.5 + parent: 16527 - proto: AirlockSyndicateLocked entities: - - uid: 16529 + - uid: 16597 components: - type: Transform pos: -2.5,10.5 - parent: 16504 - - uid: 16530 + parent: 16527 + - uid: 16598 components: - type: Transform pos: 3.5,10.5 - parent: 16504 - - uid: 16531 + parent: 16527 + - uid: 16599 components: - type: Transform pos: -8.5,19.5 - parent: 16504 - - uid: 16533 + parent: 16527 + - uid: 16600 + components: + - type: Transform + pos: 0.5,19.5 + parent: 16527 + - uid: 16601 components: - type: Transform pos: 18.5,16.5 - parent: 16504 - - uid: 16534 + parent: 16527 + - uid: 16602 components: - type: Transform pos: 7.5,33.5 - parent: 16504 - - uid: 16535 + parent: 16527 + - uid: 16603 components: - type: Transform pos: -5.5,34.5 - parent: 16504 - - uid: 16536 + parent: 16527 + - uid: 16604 components: - type: Transform pos: 20.5,18.5 - parent: 16504 - - uid: 16537 + parent: 16527 + - uid: 16605 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,30.5 - parent: 16504 + parent: 16527 + - uid: 16606 + components: + - type: Transform + pos: -0.5,53.5 + parent: 16527 + - uid: 16607 + components: + - type: Transform + pos: 3.5,50.5 + parent: 16527 + - uid: 16608 + components: + - type: Transform + pos: -6.5,59.5 + parent: 16527 + - uid: 16609 + components: + - type: Transform + pos: 8.5,66.5 + parent: 16527 + - uid: 16610 + components: + - type: Transform + pos: 8.5,62.5 + parent: 16527 + - uid: 16611 + components: + - type: Transform + pos: 8.5,56.5 + parent: 16527 + - uid: 16612 + components: + - type: Transform + pos: -5.5,67.5 + parent: 16527 + - uid: 16613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,53.5 + parent: 16527 + - uid: 16614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,55.5 + parent: 16527 + - uid: 16615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,53.5 + parent: 16527 + - uid: 16616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,53.5 + parent: 16527 + - uid: 16617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,47.5 + parent: 16527 + - uid: 16618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,45.5 + parent: 16527 - proto: AirlockVirologyGlassLocked entities: - uid: 409 @@ -17338,7 +19196,6 @@ entities: deviceLists: - 7691 - 105 - - 7692 - 7658 - uid: 502 components: @@ -17403,6 +19260,15 @@ entities: - type: DeviceNetwork deviceLists: - 7367 + - uid: 9702 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7692 + - 106 - uid: 12319 components: - type: Transform @@ -17515,19 +19381,19 @@ entities: - type: Transform pos: 50.5,78.5 parent: 2 - - uid: 16538 + - uid: 16619 components: - type: Transform pos: -13.5,31.5 - parent: 16504 + parent: 16527 - proto: AmeJar entities: - - uid: 16539 + - uid: 16620 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.432934,27.569538 - parent: 16504 + parent: 16527 - proto: AmePartFlatpack entities: - uid: 516 @@ -17553,36 +19419,43 @@ entities: - type: InsideEntityStorage - proto: AmeShielding entities: - - uid: 16540 + - uid: 16621 components: - type: Transform pos: -14.5,30.5 - parent: 16504 - - uid: 16541 + parent: 16527 + - uid: 16622 components: - type: Transform pos: -15.5,31.5 - parent: 16504 - - uid: 16542 + parent: 16527 + - uid: 16623 components: - type: Transform pos: -16.5,30.5 - parent: 16504 - - uid: 16543 + parent: 16527 + - uid: 16624 components: - type: Transform pos: -16.5,31.5 - parent: 16504 - - uid: 16544 + parent: 16527 + - uid: 16625 components: - type: Transform pos: -15.5,32.5 - parent: 16504 - - uid: 16545 + parent: 16527 + - uid: 16626 components: - type: Transform pos: -16.5,32.5 - parent: 16504 + parent: 16527 +- proto: AmmoTechFabCircuitboard + entities: + - uid: 16627 + components: + - type: Transform + pos: -52.424377,48.3703 + parent: 16527 - proto: AnalysisComputerCircuitboard entities: - uid: 519 @@ -17599,11 +19472,18 @@ entities: parent: 2 - proto: AnomalyLocatorUnpowered entities: - - uid: 16546 + - uid: 16628 components: - type: Transform pos: -26.53305,31.558647 - parent: 16504 + parent: 16527 +- proto: AnomalyLocatorWide + entities: + - uid: 16629 + components: + - type: Transform + pos: -15.501236,57.75116 + parent: 16527 - proto: APCBasic entities: - uid: 521 @@ -17993,131 +19873,142 @@ entities: - type: Transform pos: 25.5,-36.5 parent: 2 - - uid: 16547 + - uid: 16630 components: - type: Transform pos: -4.5,2.5 - parent: 16504 + parent: 16527 - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True - - uid: 16548 + - uid: 16631 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-9.5 - parent: 16504 + parent: 16527 - type: Battery startingCharge: 0 - - uid: 16549 + - uid: 16632 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,3.5 - parent: 16504 + parent: 16527 - type: Battery startingCharge: 0 - - uid: 16550 + - uid: 16633 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-9.5 - parent: 16504 + parent: 16527 - type: Battery startingCharge: 0 - - uid: 16551 + - uid: 16634 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,3.5 - parent: 16504 + parent: 16527 - type: Battery startingCharge: 0 - - uid: 16552 + - uid: 16635 components: - type: Transform pos: -6.5,13.5 - parent: 16504 + parent: 16527 - type: Battery startingCharge: 0 - - uid: 16553 + - uid: 16636 components: - type: Transform pos: 7.5,13.5 - parent: 16504 + parent: 16527 - type: Battery startingCharge: 0 - - uid: 16554 + - uid: 16637 components: - type: Transform pos: -14.5,17.5 - parent: 16504 - - uid: 16555 + parent: 16527 + - uid: 16638 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,31.5 - parent: 16504 - - uid: 16556 + parent: 16527 + - uid: 16639 components: - type: Transform pos: -17.5,26.5 - parent: 16504 - - uid: 16557 + parent: 16527 + - uid: 16640 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,28.5 - parent: 16504 - - uid: 16558 + parent: 16527 + - uid: 16641 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,34.5 - parent: 16504 - - uid: 16559 + parent: 16527 + - uid: 16642 components: - type: Transform pos: 16.5,19.5 - parent: 16504 - - uid: 16560 + parent: 16527 + - uid: 16643 components: - type: Transform pos: -1.5,19.5 - parent: 16504 - - uid: 16561 + parent: 16527 + - uid: 16644 components: - type: Transform pos: 0.5,36.5 - parent: 16504 - - uid: 16562 - components: - - type: Transform - pos: 0.5,44.5 - parent: 16504 - - uid: 16563 + parent: 16527 + - uid: 16645 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,22.5 - parent: 16504 - - uid: 16564 + parent: 16527 + - uid: 16646 components: - type: Transform pos: 20.5,37.5 - parent: 16504 - - uid: 16565 + parent: 16527 + - uid: 16647 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,25.5 - parent: 16504 - - uid: 16566 + parent: 16527 + - uid: 16648 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,14.5 - parent: 16504 + parent: 16527 + - uid: 16649 + components: + - type: Transform + pos: -5.5,74.5 + parent: 16527 + - type: BatterySelfRecharger + autoRechargeRate: 50000 + autoRecharge: True + - uid: 16650 + components: + - type: Transform + pos: -41.5,43.5 + parent: 16527 + - type: BatterySelfRecharger + autoRechargeRate: 50000 + autoRecharge: True - uid: 21509 components: - type: Transform @@ -18243,11 +20134,11 @@ entities: parent: 2 - proto: AppraisalTool entities: - - uid: 16567 + - uid: 16651 components: - type: Transform pos: -8.923028,30.605377 - parent: 16504 + parent: 16527 - proto: ArrivalsShuttleTimer entities: - uid: 576 @@ -18255,6 +20146,13 @@ entities: - type: Transform pos: 80.5,42.5 parent: 2 +- proto: ArtifactCrusherMachineCircuitboard + entities: + - uid: 16652 + components: + - type: Transform + pos: -15.563156,58.69507 + parent: 16527 - proto: ArtistCircuitBoard entities: - uid: 578 @@ -18308,6 +20206,11 @@ entities: - type: Transform pos: 39.30413,42.72785 parent: 2 + - uid: 16653 + components: + - type: Transform + pos: 3.4465637,74.52338 + parent: 16527 - uid: 21269 components: - type: Transform @@ -19179,116825 +21082,138881 @@ entities: - type: Transform pos: 73.5,-0.5 parent: 2 - - uid: 16568 + - uid: 16654 components: - type: Transform pos: -22.5,9.5 - parent: 16504 - - uid: 16569 + parent: 16527 + - uid: 16655 components: - type: Transform pos: -22.5,10.5 - parent: 16504 - - uid: 16570 + parent: 16527 + - uid: 16656 components: - type: Transform pos: -23.5,9.5 - parent: 16504 - - uid: 16571 + parent: 16527 + - uid: 16657 components: - type: Transform pos: -23.5,10.5 - parent: 16504 - - uid: 16573 - components: - - type: Transform - pos: -24.5,9.5 - parent: 16504 - - uid: 16574 - components: - - type: Transform - pos: -24.5,10.5 - parent: 16504 - - uid: 16576 - components: - - type: Transform - pos: -25.5,9.5 - parent: 16504 - - uid: 16577 - components: - - type: Transform - pos: -25.5,10.5 - parent: 16504 - - uid: 16589 - components: - - type: Transform - pos: -26.5,17.5 - parent: 16504 - - uid: 16590 - components: - - type: Transform - pos: -25.5,17.5 - parent: 16504 - - uid: 16591 - components: - - type: Transform - pos: -24.5,17.5 - parent: 16504 - - uid: 16592 - components: - - type: Transform - pos: -25.5,18.5 - parent: 16504 - - uid: 16593 - components: - - type: Transform - pos: -24.5,18.5 - parent: 16504 -- proto: AsteroidRockGold - entities: - - uid: 760 - components: - - type: Transform - pos: 70.5,1.5 - parent: 2 - - uid: 761 - components: - - type: Transform - pos: 86.5,8.5 - parent: 2 - - uid: 762 - components: - - type: Transform - pos: 60.5,72.5 - parent: 2 -- proto: AsteroidRockMining - entities: - - uid: 5824 - components: - - type: Transform - pos: -33.5,14.5 - parent: 16504 - - uid: 16572 - components: - - type: Transform - pos: -34.5,9.5 - parent: 16504 - - uid: 16575 - components: - - type: Transform - pos: -34.5,12.5 - parent: 16504 - - uid: 16578 - components: - - type: Transform - pos: -32.5,8.5 - parent: 16504 - - uid: 16579 - components: - - type: Transform - pos: -32.5,9.5 - parent: 16504 - - uid: 16580 - components: - - type: Transform - pos: -32.5,10.5 - parent: 16504 - - uid: 16581 - components: - - type: Transform - pos: -32.5,11.5 - parent: 16504 - - uid: 16582 - components: - - type: Transform - pos: -32.5,12.5 - parent: 16504 - - uid: 16583 - components: - - type: Transform - pos: -32.5,7.5 - parent: 16504 - - uid: 16584 - components: - - type: Transform - pos: -33.5,7.5 - parent: 16504 - - uid: 16585 - components: - - type: Transform - pos: -32.5,13.5 - parent: 16504 - - uid: 16586 - components: - - type: Transform - pos: -34.5,7.5 - parent: 16504 - - uid: 16588 - components: - - type: Transform - pos: -33.5,11.5 - parent: 16504 - - uid: 16594 - components: - - type: Transform - pos: -26.5,10.5 - parent: 16504 - - uid: 16595 - components: - - type: Transform - pos: -33.5,10.5 - parent: 16504 - - uid: 16596 - components: - - type: Transform - pos: -33.5,9.5 - parent: 16504 - - uid: 16597 - components: - - type: Transform - pos: -34.5,10.5 - parent: 16504 - - uid: 16598 - components: - - type: Transform - pos: -34.5,11.5 - parent: 16504 - - uid: 16599 - components: - - type: Transform - pos: -34.5,13.5 - parent: 16504 - - uid: 16600 - components: - - type: Transform - pos: -33.5,8.5 - parent: 16504 - - uid: 16601 - components: - - type: Transform - pos: -24.5,19.5 - parent: 16504 - - uid: 16602 - components: - - type: Transform - pos: -23.5,19.5 - parent: 16504 - - uid: 16603 - components: - - type: Transform - pos: -22.5,19.5 - parent: 16504 - - uid: 16604 - components: - - type: Transform - pos: -21.5,19.5 - parent: 16504 - - uid: 16605 - components: - - type: Transform - pos: -23.5,18.5 - parent: 16504 - - uid: 16606 - components: - - type: Transform - pos: -22.5,18.5 - parent: 16504 - - uid: 16607 - components: - - type: Transform - pos: -21.5,18.5 - parent: 16504 - - uid: 16608 - components: - - type: Transform - pos: -23.5,17.5 - parent: 16504 - - uid: 16609 - components: - - type: Transform - pos: -34.5,8.5 - parent: 16504 - - uid: 16610 - components: - - type: Transform - pos: -33.5,13.5 - parent: 16504 - - uid: 16611 - components: - - type: Transform - pos: -33.5,12.5 - parent: 16504 - - uid: 16612 - components: - - type: Transform - pos: -21.5,17.5 - parent: 16504 - - uid: 16613 - components: - - type: Transform - pos: -22.5,17.5 - parent: 16504 - - uid: 16614 - components: - - type: Transform - pos: -25.5,19.5 - parent: 16504 - - uid: 16615 - components: - - type: Transform - pos: -26.5,19.5 - parent: 16504 - - uid: 16616 - components: - - type: Transform - pos: -27.5,19.5 - parent: 16504 - - uid: 16617 - components: - - type: Transform - pos: -28.5,19.5 - parent: 16504 - - uid: 16618 - components: - - type: Transform - pos: -29.5,19.5 - parent: 16504 - - uid: 16619 - components: - - type: Transform - pos: -30.5,19.5 - parent: 16504 - - uid: 16620 - components: - - type: Transform - pos: -29.5,35.5 - parent: 16504 - - uid: 16621 - components: - - type: Transform - pos: -28.5,35.5 - parent: 16504 - - uid: 16622 - components: - - type: Transform - pos: -28.5,36.5 - parent: 16504 - - uid: 16623 - components: - - type: Transform - pos: -27.5,36.5 - parent: 16504 - - uid: 16624 - components: - - type: Transform - pos: -29.5,36.5 - parent: 16504 - - uid: 16625 - components: - - type: Transform - pos: -30.5,36.5 - parent: 16504 - - uid: 16626 - components: - - type: Transform - pos: -31.5,36.5 - parent: 16504 - - uid: 16627 - components: - - type: Transform - pos: -31.5,35.5 - parent: 16504 - - uid: 16628 - components: - - type: Transform - pos: -30.5,35.5 - parent: 16504 - - uid: 16629 - components: - - type: Transform - pos: -26.5,36.5 - parent: 16504 - - uid: 16630 - components: - - type: Transform - pos: -25.5,36.5 - parent: 16504 - - uid: 16631 - components: - - type: Transform - pos: -24.5,35.5 - parent: 16504 - - uid: 16632 - components: - - type: Transform - pos: -23.5,36.5 - parent: 16504 - - uid: 16633 - components: - - type: Transform - pos: -24.5,36.5 - parent: 16504 - - uid: 16634 + parent: 16527 + - uid: 16658 components: - type: Transform - pos: -22.5,35.5 - parent: 16504 - - uid: 16635 + pos: -26.5,13.5 + parent: 16527 + - uid: 16659 components: - type: Transform - pos: -22.5,36.5 - parent: 16504 - - uid: 16636 + pos: -24.5,9.5 + parent: 16527 + - uid: 16660 components: - type: Transform - pos: -21.5,36.5 - parent: 16504 - - uid: 16637 + pos: -24.5,10.5 + parent: 16527 + - uid: 16661 components: - type: Transform - pos: -20.5,36.5 - parent: 16504 - - uid: 16638 + pos: -25.5,15.5 + parent: 16527 + - uid: 16662 components: - type: Transform - pos: -20.5,35.5 - parent: 16504 - - uid: 16639 + pos: -25.5,9.5 + parent: 16527 + - uid: 16663 components: - type: Transform - pos: -21.5,35.5 - parent: 16504 - - uid: 16640 + pos: -25.5,10.5 + parent: 16527 + - uid: 16664 components: - type: Transform - pos: -22.5,38.5 - parent: 16504 - - uid: 16641 + pos: -25.5,11.5 + parent: 16527 + - uid: 16665 components: - type: Transform - pos: -21.5,37.5 - parent: 16504 - - uid: 16642 + pos: -27.5,11.5 + parent: 16527 + - uid: 16666 components: - type: Transform - pos: -22.5,37.5 - parent: 16504 - - uid: 16643 + pos: -27.5,12.5 + parent: 16527 + - uid: 16667 components: - type: Transform - pos: -15.5,43.5 - parent: 16504 - - uid: 16644 + pos: -27.5,13.5 + parent: 16527 + - uid: 16668 components: - type: Transform - pos: -21.5,38.5 - parent: 16504 - - uid: 16645 + pos: -27.5,14.5 + parent: 16527 + - uid: 16669 components: - type: Transform - pos: -20.5,37.5 - parent: 16504 - - uid: 16646 + pos: -27.5,15.5 + parent: 16527 + - uid: 16670 components: - type: Transform - pos: -20.5,38.5 - parent: 16504 - - uid: 16647 + pos: -27.5,16.5 + parent: 16527 + - uid: 16671 components: - type: Transform - pos: -21.5,39.5 - parent: 16504 - - uid: 16648 + pos: -25.5,14.5 + parent: 16527 + - uid: 16672 components: - type: Transform - pos: -21.5,40.5 - parent: 16504 - - uid: 16649 + pos: -26.5,16.5 + parent: 16527 + - uid: 16673 components: - type: Transform - pos: -20.5,39.5 - parent: 16504 - - uid: 16650 + pos: -25.5,13.5 + parent: 16527 + - uid: 16674 components: - type: Transform - pos: -20.5,40.5 - parent: 16504 - - uid: 16651 + pos: -25.5,12.5 + parent: 16527 + - uid: 16675 components: - type: Transform - pos: -19.5,40.5 - parent: 16504 - - uid: 16652 + pos: -26.5,17.5 + parent: 16527 + - uid: 16676 components: - type: Transform - pos: -19.5,41.5 - parent: 16504 - - uid: 16653 + pos: -25.5,17.5 + parent: 16527 + - uid: 16677 components: - type: Transform - pos: -18.5,40.5 - parent: 16504 - - uid: 16654 + pos: -24.5,17.5 + parent: 16527 + - uid: 16678 components: - type: Transform - pos: -18.5,41.5 - parent: 16504 - - uid: 16655 + pos: -25.5,18.5 + parent: 16527 + - uid: 16679 components: - type: Transform - pos: -17.5,40.5 - parent: 16504 - - uid: 16656 + pos: -24.5,18.5 + parent: 16527 + - uid: 16738 components: - type: Transform - pos: -17.5,41.5 - parent: 16504 - - uid: 16657 + pos: -24.5,15.5 + parent: 16527 + - uid: 16739 components: - type: Transform - pos: -16.5,42.5 - parent: 16504 - - uid: 16658 + pos: -24.5,13.5 + parent: 16527 + - uid: 16740 components: - type: Transform - pos: -16.5,41.5 - parent: 16504 - - uid: 16659 + pos: -24.5,14.5 + parent: 16527 + - uid: 16741 components: - type: Transform - pos: -15.5,42.5 - parent: 16504 - - uid: 16660 + pos: -24.5,12.5 + parent: 16527 + - uid: 16750 components: - type: Transform - pos: -14.5,43.5 - parent: 16504 - - uid: 16661 + pos: -26.5,15.5 + parent: 16527 + - uid: 16751 components: - type: Transform - pos: -13.5,42.5 - parent: 16504 - - uid: 16662 + pos: -26.5,14.5 + parent: 16527 + - uid: 16752 components: - type: Transform - pos: -15.5,44.5 - parent: 16504 - - uid: 16663 + pos: -24.5,11.5 + parent: 16527 + - uid: 19284 components: - type: Transform - pos: -11.5,42.5 - parent: 16504 - - uid: 16664 + pos: -22.5,13.5 + parent: 16527 + - uid: 21868 components: - type: Transform - pos: -9.5,41.5 - parent: 16504 - - uid: 16665 + pos: -23.5,16.5 + parent: 16527 + - uid: 22549 components: - type: Transform - pos: -10.5,42.5 - parent: 16504 - - uid: 16666 + pos: -22.5,16.5 + parent: 16527 + - uid: 23069 components: - type: Transform - pos: -9.5,42.5 - parent: 16504 - - uid: 16667 + pos: -25.5,16.5 + parent: 16527 + - uid: 23071 components: - type: Transform - pos: -10.5,41.5 - parent: 16504 - - uid: 16668 + pos: -22.5,14.5 + parent: 16527 + - uid: 23456 components: - type: Transform - pos: -9.5,40.5 - parent: 16504 - - uid: 16669 + pos: -22.5,11.5 + parent: 16527 + - uid: 23979 components: - type: Transform - pos: -14.5,44.5 - parent: 16504 - - uid: 16670 + pos: -23.5,14.5 + parent: 16527 + - uid: 23980 components: - type: Transform - pos: -13.5,43.5 - parent: 16504 - - uid: 16671 + pos: -23.5,13.5 + parent: 16527 + - uid: 23981 components: - type: Transform - pos: -13.5,44.5 - parent: 16504 - - uid: 16672 + pos: -23.5,15.5 + parent: 16527 + - uid: 23982 components: - type: Transform - pos: -12.5,43.5 - parent: 16504 - - uid: 16673 + pos: -23.5,12.5 + parent: 16527 + - uid: 23983 components: - type: Transform - pos: -12.5,44.5 - parent: 16504 - - uid: 16674 + pos: -22.5,12.5 + parent: 16527 + - uid: 24165 components: - type: Transform - pos: -11.5,43.5 - parent: 16504 - - uid: 16675 + pos: -23.5,11.5 + parent: 16527 + - uid: 24166 components: - type: Transform - pos: -11.5,44.5 - parent: 16504 - - uid: 16676 + pos: -22.5,15.5 + parent: 16527 + - uid: 24167 components: - type: Transform - pos: -8.5,41.5 - parent: 16504 - - uid: 16677 + pos: -24.5,16.5 + parent: 16527 +- proto: AsteroidRockGold + entities: + - uid: 760 components: - type: Transform - pos: -8.5,40.5 - parent: 16504 - - uid: 16678 + pos: 70.5,1.5 + parent: 2 + - uid: 761 components: - type: Transform - pos: -18.5,42.5 - parent: 16504 - - uid: 16679 + pos: 86.5,8.5 + parent: 2 + - uid: 762 components: - type: Transform - pos: -17.5,42.5 - parent: 16504 + pos: 60.5,72.5 + parent: 2 +- proto: AsteroidRockMining + entities: - uid: 16680 components: - type: Transform - pos: -17.5,43.5 - parent: 16504 + pos: 14.5,76.5 + parent: 16527 - uid: 16681 components: - type: Transform - pos: -16.5,43.5 - parent: 16504 + pos: 14.5,75.5 + parent: 16527 - uid: 16682 components: - type: Transform - pos: -16.5,44.5 - parent: 16504 + pos: 14.5,74.5 + parent: 16527 - uid: 16683 components: - type: Transform - pos: -10.5,43.5 - parent: 16504 + pos: 15.5,75.5 + parent: 16527 - uid: 16684 components: - type: Transform - pos: -9.5,43.5 - parent: 16504 + pos: 15.5,74.5 + parent: 16527 - uid: 16685 components: - type: Transform - pos: -10.5,45.5 - parent: 16504 + pos: 16.5,74.5 + parent: 16527 - uid: 16686 components: - type: Transform - pos: 39.5,38.5 - parent: 16504 + pos: 17.5,74.5 + parent: 16527 - uid: 16687 components: - type: Transform - pos: 39.5,37.5 - parent: 16504 + pos: 17.5,73.5 + parent: 16527 - uid: 16688 components: - type: Transform - pos: -9.5,45.5 - parent: 16504 + pos: 18.5,73.5 + parent: 16527 - uid: 16689 components: - type: Transform - pos: -28.5,15.5 - parent: 16504 + pos: 14.5,80.5 + parent: 16527 - uid: 16690 components: - type: Transform - pos: 11.5,43.5 - parent: 16504 + pos: 14.5,79.5 + parent: 16527 - uid: 16691 components: - type: Transform - pos: -8.5,42.5 - parent: 16504 + pos: 13.5,78.5 + parent: 16527 - uid: 16692 components: - type: Transform - pos: -8.5,43.5 - parent: 16504 + pos: 14.5,77.5 + parent: 16527 - uid: 16693 components: - type: Transform - pos: -8.5,44.5 - parent: 16504 + pos: 15.5,77.5 + parent: 16527 - uid: 16694 components: - type: Transform - pos: -7.5,42.5 - parent: 16504 + pos: 15.5,76.5 + parent: 16527 - uid: 16695 components: - type: Transform - pos: -7.5,43.5 - parent: 16504 + pos: 16.5,76.5 + parent: 16527 - uid: 16696 components: - type: Transform - pos: -7.5,44.5 - parent: 16504 + pos: 16.5,75.5 + parent: 16527 - uid: 16697 components: - type: Transform - pos: -6.5,43.5 - parent: 16504 + pos: 17.5,75.5 + parent: 16527 - uid: 16698 components: - type: Transform - pos: -5.5,43.5 - parent: 16504 + pos: 18.5,75.5 + parent: 16527 - uid: 16699 components: - type: Transform - pos: -4.5,43.5 - parent: 16504 + pos: 18.5,74.5 + parent: 16527 - uid: 16700 components: - type: Transform - pos: -5.5,42.5 - parent: 16504 + pos: 19.5,74.5 + parent: 16527 - uid: 16701 components: - type: Transform - pos: -4.5,42.5 - parent: 16504 + pos: 19.5,73.5 + parent: 16527 - uid: 16702 components: - type: Transform - pos: -9.5,44.5 - parent: 16504 + pos: 20.5,74.5 + parent: 16527 - uid: 16703 components: - type: Transform - pos: -7.5,47.5 - parent: 16504 + pos: 20.5,73.5 + parent: 16527 - uid: 16704 components: - type: Transform - pos: -10.5,44.5 - parent: 16504 + pos: 21.5,73.5 + parent: 16527 - uid: 16705 components: - type: Transform - pos: -8.5,45.5 - parent: 16504 + pos: 21.5,72.5 + parent: 16527 - uid: 16706 components: - type: Transform - pos: -7.5,45.5 - parent: 16504 + pos: 22.5,73.5 + parent: 16527 - uid: 16707 components: - type: Transform - pos: -6.5,45.5 - parent: 16504 + pos: 22.5,72.5 + parent: 16527 - uid: 16708 components: - type: Transform - pos: -6.5,44.5 - parent: 16504 + pos: 23.5,72.5 + parent: 16527 - uid: 16709 components: - type: Transform - pos: -5.5,44.5 - parent: 16504 + pos: 23.5,71.5 + parent: 16527 - uid: 16710 components: - type: Transform - pos: -4.5,44.5 - parent: 16504 + pos: 24.5,72.5 + parent: 16527 - uid: 16711 components: - type: Transform - pos: -4.5,45.5 - parent: 16504 + pos: 24.5,71.5 + parent: 16527 - uid: 16712 components: - type: Transform - pos: -5.5,45.5 - parent: 16504 + pos: 25.5,71.5 + parent: 16527 - uid: 16713 components: - type: Transform - pos: -6.5,46.5 - parent: 16504 + pos: 25.5,70.5 + parent: 16527 - uid: 16714 components: - type: Transform - pos: -6.5,47.5 - parent: 16504 + pos: 26.5,71.5 + parent: 16527 - uid: 16715 components: - type: Transform - pos: -5.5,46.5 - parent: 16504 + pos: 26.5,70.5 + parent: 16527 - uid: 16716 components: - type: Transform - pos: -5.5,47.5 - parent: 16504 + pos: 27.5,70.5 + parent: 16527 - uid: 16717 components: - type: Transform - pos: -4.5,46.5 - parent: 16504 + pos: 27.5,69.5 + parent: 16527 - uid: 16718 components: - type: Transform - pos: -4.5,47.5 - parent: 16504 + pos: 28.5,70.5 + parent: 16527 - uid: 16719 components: - type: Transform - pos: -3.5,46.5 - parent: 16504 + pos: 28.5,69.5 + parent: 16527 - uid: 16720 components: - type: Transform - pos: -3.5,47.5 - parent: 16504 + pos: 29.5,69.5 + parent: 16527 - uid: 16721 components: - type: Transform - pos: -2.5,46.5 - parent: 16504 + pos: 29.5,68.5 + parent: 16527 - uid: 16722 components: - type: Transform - pos: -2.5,47.5 - parent: 16504 + pos: 30.5,69.5 + parent: 16527 - uid: 16723 components: - type: Transform - pos: -1.5,46.5 - parent: 16504 + pos: 30.5,68.5 + parent: 16527 - uid: 16724 components: - type: Transform - pos: -1.5,47.5 - parent: 16504 + pos: 30.5,67.5 + parent: 16527 - uid: 16725 components: - type: Transform - pos: -0.5,46.5 - parent: 16504 + pos: 31.5,68.5 + parent: 16527 - uid: 16726 components: - type: Transform - pos: -0.5,47.5 - parent: 16504 + pos: 31.5,67.5 + parent: 16527 - uid: 16727 components: - type: Transform - pos: 0.5,46.5 - parent: 16504 + pos: 31.5,66.5 + parent: 16527 - uid: 16728 components: - type: Transform - pos: 0.5,47.5 - parent: 16504 + pos: 32.5,67.5 + parent: 16527 - uid: 16729 components: - type: Transform - pos: 1.5,46.5 - parent: 16504 + pos: 32.5,66.5 + parent: 16527 - uid: 16730 components: - type: Transform - pos: 1.5,47.5 - parent: 16504 + pos: 32.5,65.5 + parent: 16527 - uid: 16731 components: - type: Transform - pos: 2.5,46.5 - parent: 16504 + pos: 33.5,66.5 + parent: 16527 - uid: 16732 components: - type: Transform - pos: 2.5,47.5 - parent: 16504 + pos: 33.5,65.5 + parent: 16527 - uid: 16733 components: - type: Transform - pos: 3.5,46.5 - parent: 16504 + pos: 34.5,65.5 + parent: 16527 - uid: 16734 components: - type: Transform - pos: 3.5,47.5 - parent: 16504 + pos: -30.5,27.5 + parent: 16527 - uid: 16735 components: - type: Transform - pos: 4.5,46.5 - parent: 16504 + pos: -26.5,10.5 + parent: 16527 - uid: 16736 components: - type: Transform - pos: 4.5,47.5 - parent: 16504 + pos: -26.5,11.5 + parent: 16527 - uid: 16737 components: - type: Transform - pos: -7.5,46.5 - parent: 16504 - - uid: 16738 - components: - - type: Transform - pos: -8.5,46.5 - parent: 16504 - - uid: 16739 - components: - - type: Transform - pos: -9.5,46.5 - parent: 16504 - - uid: 16740 - components: - - type: Transform - pos: -10.5,46.5 - parent: 16504 - - uid: 16741 - components: - - type: Transform - pos: -11.5,46.5 - parent: 16504 + pos: -26.5,12.5 + parent: 16527 - uid: 16742 components: - type: Transform - pos: -12.5,46.5 - parent: 16504 + pos: -24.5,19.5 + parent: 16527 - uid: 16743 components: - type: Transform - pos: -13.5,46.5 - parent: 16504 + pos: -23.5,19.5 + parent: 16527 - uid: 16744 components: - type: Transform - pos: -14.5,46.5 - parent: 16504 + pos: -22.5,19.5 + parent: 16527 - uid: 16745 components: - type: Transform - pos: -11.5,45.5 - parent: 16504 + pos: -21.5,19.5 + parent: 16527 - uid: 16746 components: - type: Transform - pos: -12.5,45.5 - parent: 16504 + pos: -23.5,18.5 + parent: 16527 - uid: 16747 components: - type: Transform - pos: -13.5,45.5 - parent: 16504 + pos: -22.5,18.5 + parent: 16527 - uid: 16748 components: - type: Transform - pos: -14.5,45.5 - parent: 16504 + pos: -21.5,18.5 + parent: 16527 - uid: 16749 components: - type: Transform - pos: -15.5,45.5 - parent: 16504 - - uid: 16750 - components: - - type: Transform - pos: -16.5,45.5 - parent: 16504 - - uid: 16751 - components: - - type: Transform - pos: -17.5,44.5 - parent: 16504 - - uid: 16752 - components: - - type: Transform - pos: -18.5,44.5 - parent: 16504 + pos: -23.5,17.5 + parent: 16527 - uid: 16753 components: - type: Transform - pos: -18.5,43.5 - parent: 16504 + pos: -21.5,17.5 + parent: 16527 - uid: 16754 components: - type: Transform - pos: -3.5,48.5 - parent: 16504 + pos: -22.5,17.5 + parent: 16527 - uid: 16755 components: - type: Transform - pos: -2.5,48.5 - parent: 16504 + pos: -25.5,19.5 + parent: 16527 - uid: 16756 components: - type: Transform - pos: -1.5,48.5 - parent: 16504 + pos: -26.5,19.5 + parent: 16527 - uid: 16757 components: - type: Transform - pos: -0.5,48.5 - parent: 16504 + pos: -27.5,19.5 + parent: 16527 - uid: 16758 components: - type: Transform - pos: 0.5,48.5 - parent: 16504 + pos: -28.5,19.5 + parent: 16527 - uid: 16759 components: - type: Transform - pos: 1.5,48.5 - parent: 16504 + pos: -29.5,19.5 + parent: 16527 - uid: 16760 components: - type: Transform - pos: 2.5,48.5 - parent: 16504 + pos: -30.5,19.5 + parent: 16527 - uid: 16761 components: - type: Transform - pos: 3.5,48.5 - parent: 16504 + pos: -30.5,20.5 + parent: 16527 - uid: 16762 components: - type: Transform - pos: 4.5,48.5 - parent: 16504 + pos: -30.5,21.5 + parent: 16527 - uid: 16763 components: - type: Transform - pos: 5.5,47.5 - parent: 16504 + pos: -30.5,22.5 + parent: 16527 - uid: 16764 components: - type: Transform - pos: 5.5,46.5 - parent: 16504 + pos: -30.5,23.5 + parent: 16527 - uid: 16765 components: - type: Transform - pos: 5.5,45.5 - parent: 16504 + pos: -30.5,24.5 + parent: 16527 - uid: 16766 components: - type: Transform - pos: 5.5,44.5 - parent: 16504 + pos: -30.5,25.5 + parent: 16527 - uid: 16767 components: - type: Transform - pos: 5.5,43.5 - parent: 16504 + pos: -30.5,28.5 + parent: 16527 - uid: 16768 components: - type: Transform - pos: 5.5,42.5 - parent: 16504 + pos: -30.5,29.5 + parent: 16527 - uid: 16769 components: - type: Transform - pos: 5.5,41.5 - parent: 16504 + pos: -30.5,30.5 + parent: 16527 - uid: 16770 components: - type: Transform - pos: 5.5,40.5 - parent: 16504 + pos: -30.5,31.5 + parent: 16527 - uid: 16771 components: - type: Transform - pos: 6.5,47.5 - parent: 16504 + pos: -30.5,32.5 + parent: 16527 - uid: 16772 components: - type: Transform - pos: 6.5,46.5 - parent: 16504 + pos: -27.5,36.5 + parent: 16527 - uid: 16773 components: - type: Transform - pos: 6.5,45.5 - parent: 16504 + pos: -26.5,36.5 + parent: 16527 - uid: 16774 components: - type: Transform - pos: 6.5,44.5 - parent: 16504 + pos: -25.5,36.5 + parent: 16527 - uid: 16775 components: - type: Transform - pos: 6.5,43.5 - parent: 16504 + pos: -24.5,35.5 + parent: 16527 - uid: 16776 components: - type: Transform - pos: 6.5,42.5 - parent: 16504 + pos: -15.5,43.5 + parent: 16527 - uid: 16777 components: - type: Transform - pos: 6.5,41.5 - parent: 16504 + pos: -19.5,40.5 + parent: 16527 - uid: 16778 components: - type: Transform - pos: 6.5,40.5 - parent: 16504 + pos: -19.5,41.5 + parent: 16527 - uid: 16779 components: - type: Transform - pos: 7.5,46.5 - parent: 16504 + pos: -18.5,40.5 + parent: 16527 - uid: 16780 components: - type: Transform - pos: 7.5,45.5 - parent: 16504 + pos: -18.5,41.5 + parent: 16527 - uid: 16781 components: - type: Transform - pos: 7.5,44.5 - parent: 16504 + pos: -17.5,40.5 + parent: 16527 - uid: 16782 components: - type: Transform - pos: 7.5,43.5 - parent: 16504 + pos: -17.5,41.5 + parent: 16527 - uid: 16783 components: - type: Transform - pos: 7.5,42.5 - parent: 16504 + pos: -16.5,42.5 + parent: 16527 - uid: 16784 components: - type: Transform - pos: 7.5,41.5 - parent: 16504 + pos: -15.5,42.5 + parent: 16527 - uid: 16785 components: - type: Transform - pos: 7.5,40.5 - parent: 16504 + pos: -16.5,41.5 + parent: 16527 - uid: 16786 components: - type: Transform - pos: 8.5,45.5 - parent: 16504 + pos: -14.5,43.5 + parent: 16527 - uid: 16787 components: - type: Transform - pos: 8.5,44.5 - parent: 16504 + pos: -15.5,44.5 + parent: 16527 - uid: 16788 components: - type: Transform - pos: 8.5,43.5 - parent: 16504 + pos: -13.5,42.5 + parent: 16527 - uid: 16789 components: - type: Transform - pos: 8.5,42.5 - parent: 16504 + pos: -9.5,41.5 + parent: 16527 - uid: 16790 components: - type: Transform - pos: 8.5,41.5 - parent: 16504 + pos: -11.5,42.5 + parent: 16527 - uid: 16791 components: - type: Transform - pos: 8.5,40.5 - parent: 16504 + pos: -10.5,42.5 + parent: 16527 - uid: 16792 components: - type: Transform - pos: 9.5,45.5 - parent: 16504 + pos: -9.5,42.5 + parent: 16527 - uid: 16793 components: - type: Transform - pos: 9.5,44.5 - parent: 16504 + pos: -10.5,41.5 + parent: 16527 - uid: 16794 components: - type: Transform - pos: 9.5,43.5 - parent: 16504 + pos: -9.5,40.5 + parent: 16527 - uid: 16795 components: - type: Transform - pos: 9.5,42.5 - parent: 16504 + pos: -14.5,44.5 + parent: 16527 - uid: 16796 components: - type: Transform - pos: 9.5,41.5 - parent: 16504 + pos: -13.5,43.5 + parent: 16527 - uid: 16797 components: - type: Transform - pos: 9.5,40.5 - parent: 16504 + pos: -13.5,44.5 + parent: 16527 - uid: 16798 components: - type: Transform - pos: 10.5,44.5 - parent: 16504 + pos: -12.5,43.5 + parent: 16527 - uid: 16799 components: - type: Transform - pos: 10.5,43.5 - parent: 16504 + pos: -12.5,44.5 + parent: 16527 - uid: 16800 components: - type: Transform - pos: 10.5,42.5 - parent: 16504 + pos: -11.5,43.5 + parent: 16527 - uid: 16801 components: - type: Transform - pos: 10.5,41.5 - parent: 16504 + pos: -11.5,44.5 + parent: 16527 - uid: 16802 components: - type: Transform - pos: 10.5,40.5 - parent: 16504 + pos: -8.5,41.5 + parent: 16527 - uid: 16803 components: - type: Transform - pos: 11.5,42.5 - parent: 16504 + pos: -8.5,40.5 + parent: 16527 - uid: 16804 components: - type: Transform - pos: 11.5,41.5 - parent: 16504 + pos: -18.5,42.5 + parent: 16527 - uid: 16805 components: - type: Transform - pos: 11.5,40.5 - parent: 16504 + pos: -17.5,42.5 + parent: 16527 - uid: 16806 components: - type: Transform - pos: 12.5,43.5 - parent: 16504 + pos: -16.5,43.5 + parent: 16527 - uid: 16807 components: - type: Transform - pos: 12.5,42.5 - parent: 16504 + pos: -16.5,44.5 + parent: 16527 - uid: 16808 components: - type: Transform - pos: 12.5,41.5 - parent: 16504 + pos: -10.5,43.5 + parent: 16527 - uid: 16809 components: - type: Transform - pos: 12.5,40.5 - parent: 16504 + pos: -9.5,43.5 + parent: 16527 - uid: 16810 components: - type: Transform - pos: 13.5,43.5 - parent: 16504 + pos: -21.5,36.5 + parent: 16527 - uid: 16811 components: - type: Transform - pos: 13.5,42.5 - parent: 16504 + pos: -10.5,45.5 + parent: 16527 - uid: 16812 components: - type: Transform - pos: 13.5,41.5 - parent: 16504 + pos: 39.5,38.5 + parent: 16527 - uid: 16813 components: - type: Transform - pos: 13.5,40.5 - parent: 16504 + pos: 39.5,37.5 + parent: 16527 - uid: 16814 components: - type: Transform - pos: 14.5,43.5 - parent: 16504 + pos: -9.5,45.5 + parent: 16527 - uid: 16815 components: - type: Transform - pos: 14.5,42.5 - parent: 16504 + pos: -28.5,15.5 + parent: 16527 - uid: 16816 components: - type: Transform - pos: 14.5,41.5 - parent: 16504 + pos: 19.5,43.5 + parent: 16527 - uid: 16817 components: - type: Transform - pos: 14.5,40.5 - parent: 16504 + pos: -8.5,42.5 + parent: 16527 - uid: 16818 components: - type: Transform - pos: 15.5,43.5 - parent: 16504 + pos: -8.5,43.5 + parent: 16527 - uid: 16819 components: - type: Transform - pos: 15.5,42.5 - parent: 16504 + pos: -8.5,44.5 + parent: 16527 - uid: 16820 components: - type: Transform - pos: 15.5,41.5 - parent: 16504 + pos: -7.5,42.5 + parent: 16527 - uid: 16821 components: - type: Transform - pos: 15.5,40.5 - parent: 16504 + pos: -7.5,43.5 + parent: 16527 - uid: 16822 components: - type: Transform - pos: 16.5,43.5 - parent: 16504 + pos: -7.5,44.5 + parent: 16527 - uid: 16823 components: - type: Transform - pos: 16.5,42.5 - parent: 16504 + pos: -6.5,43.5 + parent: 16527 - uid: 16824 components: - type: Transform - pos: 16.5,41.5 - parent: 16504 + pos: -5.5,43.5 + parent: 16527 - uid: 16825 components: - type: Transform - pos: 16.5,40.5 - parent: 16504 + pos: -4.5,43.5 + parent: 16527 - uid: 16826 components: - type: Transform - pos: 17.5,43.5 - parent: 16504 + pos: -5.5,42.5 + parent: 16527 - uid: 16827 components: - type: Transform - pos: 17.5,42.5 - parent: 16504 + pos: -4.5,42.5 + parent: 16527 - uid: 16828 components: - type: Transform - pos: 17.5,41.5 - parent: 16504 + pos: -9.5,44.5 + parent: 16527 - uid: 16829 components: - type: Transform - pos: 17.5,40.5 - parent: 16504 + pos: -10.5,44.5 + parent: 16527 - uid: 16830 components: - type: Transform - pos: 18.5,43.5 - parent: 16504 + pos: -8.5,45.5 + parent: 16527 - uid: 16831 components: - type: Transform - pos: 18.5,42.5 - parent: 16504 + pos: -7.5,45.5 + parent: 16527 - uid: 16832 components: - type: Transform - pos: 18.5,41.5 - parent: 16504 + pos: -6.5,45.5 + parent: 16527 - uid: 16833 components: - type: Transform - pos: 18.5,40.5 - parent: 16504 + pos: -6.5,44.5 + parent: 16527 - uid: 16834 components: - type: Transform - pos: 19.5,42.5 - parent: 16504 + pos: -5.5,44.5 + parent: 16527 - uid: 16835 components: - type: Transform - pos: 19.5,41.5 - parent: 16504 + pos: -4.5,44.5 + parent: 16527 - uid: 16836 components: - type: Transform - pos: 19.5,40.5 - parent: 16504 + pos: -4.5,45.5 + parent: 16527 - uid: 16837 components: - type: Transform - pos: 19.5,39.5 - parent: 16504 + pos: -5.5,45.5 + parent: 16527 - uid: 16838 components: - type: Transform - pos: 19.5,38.5 - parent: 16504 + pos: -23.5,36.5 + parent: 16527 - uid: 16839 components: - type: Transform - pos: 20.5,41.5 - parent: 16504 + pos: -24.5,36.5 + parent: 16527 - uid: 16840 components: - type: Transform - pos: 20.5,40.5 - parent: 16504 + pos: -22.5,35.5 + parent: 16527 - uid: 16841 components: - type: Transform - pos: 20.5,39.5 - parent: 16504 + pos: -22.5,36.5 + parent: 16527 - uid: 16842 components: - type: Transform - pos: 20.5,38.5 - parent: 16504 + pos: -11.5,45.5 + parent: 16527 - uid: 16843 components: - type: Transform - pos: 21.5,41.5 - parent: 16504 + pos: -12.5,45.5 + parent: 16527 - uid: 16844 components: - type: Transform - pos: 21.5,40.5 - parent: 16504 + pos: -20.5,36.5 + parent: 16527 - uid: 16845 components: - type: Transform - pos: 21.5,39.5 - parent: 16504 + pos: -20.5,35.5 + parent: 16527 - uid: 16846 components: - type: Transform - pos: 21.5,38.5 - parent: 16504 + pos: -21.5,35.5 + parent: 16527 - uid: 16847 components: - type: Transform - pos: 22.5,41.5 - parent: 16504 + pos: -21.5,37.5 + parent: 16527 - uid: 16848 components: - type: Transform - pos: 22.5,40.5 - parent: 16504 + pos: -21.5,38.5 + parent: 16527 - uid: 16849 components: - type: Transform - pos: 22.5,39.5 - parent: 16504 + pos: -20.5,37.5 + parent: 16527 - uid: 16850 components: - type: Transform - pos: 22.5,38.5 - parent: 16504 + pos: -20.5,38.5 + parent: 16527 - uid: 16851 components: - type: Transform - pos: 23.5,41.5 - parent: 16504 + pos: -21.5,39.5 + parent: 16527 - uid: 16852 components: - type: Transform - pos: 23.5,40.5 - parent: 16504 + pos: -21.5,40.5 + parent: 16527 - uid: 16853 components: - type: Transform - pos: 23.5,39.5 - parent: 16504 + pos: -20.5,39.5 + parent: 16527 - uid: 16854 components: - type: Transform - pos: 23.5,38.5 - parent: 16504 + pos: -20.5,40.5 + parent: 16527 - uid: 16855 components: - type: Transform - pos: 24.5,41.5 - parent: 16504 + pos: -18.5,44.5 + parent: 16527 - uid: 16856 components: - type: Transform - pos: 24.5,40.5 - parent: 16504 + pos: -36.5,21.5 + parent: 16527 - uid: 16857 components: - type: Transform - pos: 24.5,39.5 - parent: 16504 + pos: -36.5,22.5 + parent: 16527 - uid: 16858 components: - type: Transform - pos: 24.5,38.5 - parent: 16504 + pos: -35.5,20.5 + parent: 16527 - uid: 16859 components: - type: Transform - pos: 24.5,37.5 - parent: 16504 + pos: -35.5,19.5 + parent: 16527 - uid: 16860 components: - type: Transform - pos: 25.5,40.5 - parent: 16504 + pos: -34.5,17.5 + parent: 16527 - uid: 16861 components: - type: Transform - pos: 25.5,39.5 - parent: 16504 + pos: -17.5,43.5 + parent: 16527 - uid: 16862 components: - type: Transform - pos: 25.5,38.5 - parent: 16504 + pos: -18.5,43.5 + parent: 16527 - uid: 16863 components: - type: Transform - pos: 25.5,37.5 - parent: 16504 + pos: -34.5,18.5 + parent: 16527 - uid: 16864 components: - type: Transform - pos: 26.5,40.5 - parent: 16504 + pos: -34.5,19.5 + parent: 16527 - uid: 16865 components: - type: Transform - pos: 26.5,39.5 - parent: 16504 + pos: 36.5,40.5 + parent: 16527 - uid: 16866 components: - type: Transform - pos: 26.5,38.5 - parent: 16504 + pos: 36.5,39.5 + parent: 16527 - uid: 16867 components: - type: Transform - pos: 26.5,37.5 - parent: 16504 + pos: 37.5,39.5 + parent: 16527 - uid: 16868 components: - type: Transform - pos: 27.5,40.5 - parent: 16504 + pos: 38.5,39.5 + parent: 16527 - uid: 16869 components: - type: Transform - pos: 27.5,39.5 - parent: 16504 + pos: -35.5,22.5 + parent: 16527 - uid: 16870 components: - type: Transform - pos: 27.5,38.5 - parent: 16504 + pos: 9.5,45.5 + parent: 16527 - uid: 16871 components: - type: Transform - pos: 27.5,37.5 - parent: 16504 + pos: 9.5,44.5 + parent: 16527 - uid: 16872 components: - type: Transform - pos: 28.5,40.5 - parent: 16504 + pos: 10.5,44.5 + parent: 16527 - uid: 16873 components: - type: Transform - pos: 28.5,39.5 - parent: 16504 + pos: -19.5,42.5 + parent: 16527 - uid: 16874 components: - type: Transform - pos: 28.5,38.5 - parent: 16504 + pos: -31.5,25.5 + parent: 16527 - uid: 16875 components: - type: Transform - pos: 28.5,37.5 - parent: 16504 + pos: 13.5,43.5 + parent: 16527 - uid: 16876 components: - type: Transform - pos: 29.5,40.5 - parent: 16504 + pos: 13.5,42.5 + parent: 16527 - uid: 16877 components: - type: Transform - pos: 29.5,39.5 - parent: 16504 + pos: 13.5,41.5 + parent: 16527 - uid: 16878 components: - type: Transform - pos: 29.5,38.5 - parent: 16504 + pos: 13.5,40.5 + parent: 16527 - uid: 16879 components: - type: Transform - pos: 29.5,37.5 - parent: 16504 + pos: 14.5,43.5 + parent: 16527 - uid: 16880 components: - type: Transform - pos: 30.5,40.5 - parent: 16504 + pos: 14.5,42.5 + parent: 16527 - uid: 16881 components: - type: Transform - pos: 30.5,39.5 - parent: 16504 + pos: 14.5,41.5 + parent: 16527 - uid: 16882 components: - type: Transform - pos: 30.5,38.5 - parent: 16504 + pos: 14.5,40.5 + parent: 16527 - uid: 16883 components: - type: Transform - pos: 30.5,37.5 - parent: 16504 + pos: 15.5,43.5 + parent: 16527 - uid: 16884 components: - type: Transform - pos: 31.5,40.5 - parent: 16504 + pos: 15.5,42.5 + parent: 16527 - uid: 16885 components: - type: Transform - pos: 31.5,39.5 - parent: 16504 + pos: 15.5,41.5 + parent: 16527 - uid: 16886 components: - type: Transform - pos: 31.5,38.5 - parent: 16504 + pos: 15.5,40.5 + parent: 16527 - uid: 16887 components: - type: Transform - pos: 31.5,37.5 - parent: 16504 + pos: 16.5,43.5 + parent: 16527 - uid: 16888 components: - type: Transform - pos: 32.5,40.5 - parent: 16504 + pos: 16.5,42.5 + parent: 16527 - uid: 16889 components: - type: Transform - pos: 32.5,39.5 - parent: 16504 + pos: 16.5,41.5 + parent: 16527 - uid: 16890 components: - type: Transform - pos: 32.5,38.5 - parent: 16504 + pos: 16.5,40.5 + parent: 16527 - uid: 16891 components: - type: Transform - pos: 32.5,37.5 - parent: 16504 + pos: 17.5,43.5 + parent: 16527 - uid: 16892 components: - type: Transform - pos: 33.5,40.5 - parent: 16504 + pos: 17.5,42.5 + parent: 16527 - uid: 16893 components: - type: Transform - pos: 33.5,39.5 - parent: 16504 + pos: 17.5,41.5 + parent: 16527 - uid: 16894 components: - type: Transform - pos: 33.5,38.5 - parent: 16504 + pos: 17.5,40.5 + parent: 16527 - uid: 16895 components: - type: Transform - pos: 33.5,37.5 - parent: 16504 + pos: 18.5,43.5 + parent: 16527 - uid: 16896 components: - type: Transform - pos: 34.5,40.5 - parent: 16504 + pos: 18.5,42.5 + parent: 16527 - uid: 16897 components: - type: Transform - pos: 34.5,39.5 - parent: 16504 + pos: 18.5,41.5 + parent: 16527 - uid: 16898 components: - type: Transform - pos: 34.5,38.5 - parent: 16504 + pos: 18.5,40.5 + parent: 16527 - uid: 16899 components: - type: Transform - pos: 34.5,37.5 - parent: 16504 + pos: 19.5,42.5 + parent: 16527 - uid: 16900 components: - type: Transform - pos: 35.5,40.5 - parent: 16504 + pos: 19.5,41.5 + parent: 16527 - uid: 16901 components: - type: Transform - pos: 35.5,39.5 - parent: 16504 + pos: 19.5,40.5 + parent: 16527 - uid: 16902 components: - type: Transform - pos: 35.5,38.5 - parent: 16504 + pos: 19.5,39.5 + parent: 16527 - uid: 16903 components: - type: Transform - pos: 35.5,37.5 - parent: 16504 + pos: 19.5,38.5 + parent: 16527 - uid: 16904 components: - type: Transform - pos: 36.5,40.5 - parent: 16504 + pos: 20.5,41.5 + parent: 16527 - uid: 16905 components: - type: Transform - pos: 36.5,39.5 - parent: 16504 + pos: 20.5,40.5 + parent: 16527 - uid: 16906 components: - type: Transform - pos: 36.5,38.5 - parent: 16504 + pos: 20.5,39.5 + parent: 16527 - uid: 16907 components: - type: Transform - pos: 36.5,37.5 - parent: 16504 + pos: 20.5,38.5 + parent: 16527 - uid: 16908 components: - type: Transform - pos: 37.5,39.5 - parent: 16504 + pos: 21.5,41.5 + parent: 16527 - uid: 16909 components: - type: Transform - pos: 37.5,38.5 - parent: 16504 + pos: 21.5,40.5 + parent: 16527 - uid: 16910 components: - type: Transform - pos: 37.5,37.5 - parent: 16504 + pos: 21.5,39.5 + parent: 16527 - uid: 16911 components: - type: Transform - pos: 37.5,36.5 - parent: 16504 + pos: 21.5,38.5 + parent: 16527 - uid: 16912 components: - type: Transform - pos: 38.5,39.5 - parent: 16504 + pos: 22.5,41.5 + parent: 16527 - uid: 16913 components: - type: Transform - pos: 38.5,38.5 - parent: 16504 + pos: 22.5,40.5 + parent: 16527 - uid: 16914 components: - type: Transform - pos: 38.5,37.5 - parent: 16504 + pos: 22.5,39.5 + parent: 16527 - uid: 16915 components: - type: Transform - pos: 38.5,36.5 - parent: 16504 + pos: 22.5,38.5 + parent: 16527 - uid: 16916 components: - type: Transform - pos: 39.5,36.5 - parent: 16504 + pos: 23.5,41.5 + parent: 16527 - uid: 16917 components: - type: Transform - pos: 39.5,35.5 - parent: 16504 + pos: 23.5,40.5 + parent: 16527 - uid: 16918 components: - type: Transform - pos: 39.5,34.5 - parent: 16504 + pos: 23.5,39.5 + parent: 16527 - uid: 16919 components: - type: Transform - pos: 39.5,33.5 - parent: 16504 + pos: 23.5,38.5 + parent: 16527 - uid: 16920 components: - type: Transform - pos: 39.5,32.5 - parent: 16504 + pos: 24.5,40.5 + parent: 16527 - uid: 16921 components: - type: Transform - pos: 39.5,31.5 - parent: 16504 + pos: 24.5,39.5 + parent: 16527 - uid: 16922 components: - type: Transform - pos: 39.5,30.5 - parent: 16504 + pos: 24.5,38.5 + parent: 16527 - uid: 16923 components: - type: Transform - pos: 39.5,29.5 - parent: 16504 + pos: 24.5,37.5 + parent: 16527 - uid: 16924 components: - type: Transform - pos: 39.5,28.5 - parent: 16504 + pos: 25.5,40.5 + parent: 16527 - uid: 16925 components: - type: Transform - pos: 39.5,27.5 - parent: 16504 + pos: 25.5,39.5 + parent: 16527 - uid: 16926 components: - type: Transform - pos: 39.5,26.5 - parent: 16504 + pos: 25.5,38.5 + parent: 16527 - uid: 16927 components: - type: Transform - pos: 39.5,25.5 - parent: 16504 + pos: 25.5,37.5 + parent: 16527 - uid: 16928 components: - type: Transform - pos: 39.5,24.5 - parent: 16504 + pos: 26.5,40.5 + parent: 16527 - uid: 16929 components: - type: Transform - pos: 39.5,23.5 - parent: 16504 + pos: 26.5,39.5 + parent: 16527 - uid: 16930 components: - type: Transform - pos: 39.5,22.5 - parent: 16504 + pos: 26.5,38.5 + parent: 16527 - uid: 16931 components: - type: Transform - pos: 39.5,21.5 - parent: 16504 + pos: 26.5,37.5 + parent: 16527 - uid: 16932 components: - type: Transform - pos: 39.5,20.5 - parent: 16504 + pos: 27.5,40.5 + parent: 16527 - uid: 16933 components: - type: Transform - pos: 39.5,19.5 - parent: 16504 + pos: 27.5,39.5 + parent: 16527 - uid: 16934 components: - type: Transform - pos: 40.5,38.5 - parent: 16504 + pos: 27.5,38.5 + parent: 16527 - uid: 16935 components: - type: Transform - pos: 40.5,37.5 - parent: 16504 + pos: 27.5,37.5 + parent: 16527 - uid: 16936 components: - type: Transform - pos: 40.5,36.5 - parent: 16504 + pos: 28.5,40.5 + parent: 16527 - uid: 16937 components: - type: Transform - pos: 40.5,35.5 - parent: 16504 + pos: 28.5,39.5 + parent: 16527 - uid: 16938 components: - type: Transform - pos: 40.5,34.5 - parent: 16504 + pos: 28.5,38.5 + parent: 16527 - uid: 16939 components: - type: Transform - pos: 40.5,33.5 - parent: 16504 + pos: 28.5,37.5 + parent: 16527 - uid: 16940 components: - type: Transform - pos: 40.5,32.5 - parent: 16504 + pos: 29.5,40.5 + parent: 16527 - uid: 16941 components: - type: Transform - pos: 40.5,31.5 - parent: 16504 + pos: 29.5,39.5 + parent: 16527 - uid: 16942 components: - type: Transform - pos: 40.5,30.5 - parent: 16504 + pos: 29.5,38.5 + parent: 16527 - uid: 16943 components: - type: Transform - pos: 40.5,29.5 - parent: 16504 + pos: 29.5,37.5 + parent: 16527 - uid: 16944 components: - type: Transform - pos: 40.5,28.5 - parent: 16504 + pos: 30.5,40.5 + parent: 16527 - uid: 16945 components: - type: Transform - pos: 40.5,27.5 - parent: 16504 + pos: 30.5,39.5 + parent: 16527 - uid: 16946 components: - type: Transform - pos: 40.5,26.5 - parent: 16504 + pos: 30.5,38.5 + parent: 16527 - uid: 16947 components: - type: Transform - pos: 40.5,25.5 - parent: 16504 + pos: 30.5,37.5 + parent: 16527 - uid: 16948 components: - type: Transform - pos: 40.5,24.5 - parent: 16504 + pos: 31.5,40.5 + parent: 16527 - uid: 16949 components: - type: Transform - pos: 40.5,23.5 - parent: 16504 + pos: 31.5,39.5 + parent: 16527 - uid: 16950 components: - type: Transform - pos: 40.5,22.5 - parent: 16504 + pos: 31.5,38.5 + parent: 16527 - uid: 16951 components: - type: Transform - pos: 40.5,21.5 - parent: 16504 + pos: 31.5,37.5 + parent: 16527 - uid: 16952 components: - type: Transform - pos: 40.5,20.5 - parent: 16504 + pos: 32.5,40.5 + parent: 16527 - uid: 16953 components: - type: Transform - pos: 40.5,19.5 - parent: 16504 + pos: 32.5,39.5 + parent: 16527 - uid: 16954 components: - type: Transform - pos: 41.5,38.5 - parent: 16504 + pos: 32.5,38.5 + parent: 16527 - uid: 16955 components: - type: Transform - pos: 41.5,37.5 - parent: 16504 + pos: 32.5,37.5 + parent: 16527 - uid: 16956 components: - type: Transform - pos: 41.5,36.5 - parent: 16504 + pos: 33.5,40.5 + parent: 16527 - uid: 16957 components: - type: Transform - pos: 41.5,35.5 - parent: 16504 + pos: 33.5,39.5 + parent: 16527 - uid: 16958 components: - type: Transform - pos: 41.5,34.5 - parent: 16504 + pos: 33.5,38.5 + parent: 16527 - uid: 16959 components: - type: Transform - pos: 41.5,33.5 - parent: 16504 + pos: 33.5,37.5 + parent: 16527 - uid: 16960 components: - type: Transform - pos: 41.5,32.5 - parent: 16504 + pos: 34.5,40.5 + parent: 16527 - uid: 16961 components: - type: Transform - pos: 41.5,31.5 - parent: 16504 + pos: 34.5,39.5 + parent: 16527 - uid: 16962 components: - type: Transform - pos: 41.5,30.5 - parent: 16504 + pos: 34.5,38.5 + parent: 16527 - uid: 16963 components: - type: Transform - pos: 41.5,29.5 - parent: 16504 + pos: 34.5,37.5 + parent: 16527 - uid: 16964 components: - type: Transform - pos: 41.5,28.5 - parent: 16504 + pos: 35.5,40.5 + parent: 16527 - uid: 16965 components: - type: Transform - pos: 41.5,27.5 - parent: 16504 + pos: 35.5,39.5 + parent: 16527 - uid: 16966 components: - type: Transform - pos: 41.5,26.5 - parent: 16504 + pos: 35.5,38.5 + parent: 16527 - uid: 16967 components: - type: Transform - pos: 41.5,25.5 - parent: 16504 + pos: 35.5,37.5 + parent: 16527 - uid: 16968 components: - type: Transform - pos: 41.5,24.5 - parent: 16504 + pos: -20.5,42.5 + parent: 16527 - uid: 16969 components: - type: Transform - pos: 41.5,23.5 - parent: 16504 + pos: 36.5,38.5 + parent: 16527 - uid: 16970 components: - type: Transform - pos: 41.5,22.5 - parent: 16504 + pos: 36.5,37.5 + parent: 16527 - uid: 16971 components: - type: Transform - pos: 41.5,21.5 - parent: 16504 + pos: 37.5,38.5 + parent: 16527 - uid: 16972 components: - type: Transform - pos: 41.5,20.5 - parent: 16504 + pos: 37.5,37.5 + parent: 16527 - uid: 16973 components: - type: Transform - pos: 41.5,19.5 - parent: 16504 + pos: 37.5,36.5 + parent: 16527 - uid: 16974 components: - type: Transform - pos: 42.5,38.5 - parent: 16504 + pos: -21.5,42.5 + parent: 16527 - uid: 16975 components: - type: Transform - pos: 42.5,37.5 - parent: 16504 + pos: 38.5,38.5 + parent: 16527 - uid: 16976 components: - type: Transform - pos: 42.5,36.5 - parent: 16504 + pos: 38.5,37.5 + parent: 16527 - uid: 16977 components: - type: Transform - pos: 42.5,35.5 - parent: 16504 + pos: 38.5,36.5 + parent: 16527 - uid: 16978 components: - type: Transform - pos: 42.5,34.5 - parent: 16504 + pos: 39.5,36.5 + parent: 16527 - uid: 16979 components: - type: Transform - pos: 42.5,33.5 - parent: 16504 + pos: 39.5,35.5 + parent: 16527 - uid: 16980 components: - type: Transform - pos: 42.5,32.5 - parent: 16504 + pos: 39.5,34.5 + parent: 16527 - uid: 16981 components: - type: Transform - pos: 42.5,31.5 - parent: 16504 + pos: 39.5,33.5 + parent: 16527 - uid: 16982 components: - type: Transform - pos: 42.5,30.5 - parent: 16504 + pos: 39.5,32.5 + parent: 16527 - uid: 16983 components: - type: Transform - pos: 42.5,29.5 - parent: 16504 + pos: 39.5,31.5 + parent: 16527 - uid: 16984 components: - type: Transform - pos: 42.5,28.5 - parent: 16504 + pos: 39.5,30.5 + parent: 16527 - uid: 16985 components: - type: Transform - pos: 42.5,27.5 - parent: 16504 + pos: 39.5,29.5 + parent: 16527 - uid: 16986 components: - type: Transform - pos: 42.5,26.5 - parent: 16504 + pos: 39.5,28.5 + parent: 16527 - uid: 16987 components: - type: Transform - pos: 42.5,25.5 - parent: 16504 + pos: 39.5,27.5 + parent: 16527 - uid: 16988 components: - type: Transform - pos: 42.5,24.5 - parent: 16504 + pos: 39.5,26.5 + parent: 16527 - uid: 16989 components: - type: Transform - pos: 42.5,23.5 - parent: 16504 + pos: 39.5,25.5 + parent: 16527 - uid: 16990 components: - type: Transform - pos: 42.5,22.5 - parent: 16504 + pos: 39.5,24.5 + parent: 16527 - uid: 16991 components: - type: Transform - pos: 42.5,21.5 - parent: 16504 + pos: 39.5,23.5 + parent: 16527 - uid: 16992 components: - type: Transform - pos: 42.5,20.5 - parent: 16504 + pos: 39.5,22.5 + parent: 16527 - uid: 16993 components: - type: Transform - pos: 42.5,19.5 - parent: 16504 + pos: 39.5,21.5 + parent: 16527 - uid: 16994 components: - type: Transform - pos: 34.5,21.5 - parent: 16504 + pos: 39.5,20.5 + parent: 16527 - uid: 16995 components: - type: Transform - pos: 35.5,21.5 - parent: 16504 + pos: 39.5,19.5 + parent: 16527 - uid: 16996 components: - type: Transform - pos: 36.5,21.5 - parent: 16504 + pos: 40.5,38.5 + parent: 16527 - uid: 16997 components: - type: Transform - pos: 37.5,21.5 - parent: 16504 + pos: 40.5,37.5 + parent: 16527 - uid: 16998 components: - type: Transform - pos: 38.5,21.5 - parent: 16504 + pos: 40.5,36.5 + parent: 16527 - uid: 16999 components: - type: Transform - pos: 35.5,20.5 - parent: 16504 + pos: 40.5,35.5 + parent: 16527 - uid: 17000 components: - type: Transform - pos: 36.5,20.5 - parent: 16504 + pos: 40.5,34.5 + parent: 16527 - uid: 17001 components: - type: Transform - pos: 37.5,20.5 - parent: 16504 + pos: 40.5,33.5 + parent: 16527 - uid: 17002 components: - type: Transform - pos: 38.5,20.5 - parent: 16504 + pos: 40.5,32.5 + parent: 16527 - uid: 17003 components: - type: Transform - pos: 36.5,19.5 - parent: 16504 + pos: 40.5,31.5 + parent: 16527 - uid: 17004 components: - type: Transform - pos: 37.5,19.5 - parent: 16504 + pos: 40.5,30.5 + parent: 16527 - uid: 17005 components: - type: Transform - pos: 38.5,19.5 - parent: 16504 + pos: 40.5,29.5 + parent: 16527 - uid: 17006 components: - type: Transform - pos: 41.5,18.5 - parent: 16504 + pos: 40.5,28.5 + parent: 16527 - uid: 17007 components: - type: Transform - pos: 40.5,18.5 - parent: 16504 + pos: 40.5,27.5 + parent: 16527 - uid: 17008 components: - type: Transform - pos: 39.5,18.5 - parent: 16504 + pos: 40.5,26.5 + parent: 16527 - uid: 17009 components: - type: Transform - pos: 38.5,18.5 - parent: 16504 + pos: 40.5,25.5 + parent: 16527 - uid: 17010 components: - type: Transform - pos: 37.5,18.5 - parent: 16504 + pos: 40.5,24.5 + parent: 16527 - uid: 17011 components: - type: Transform - pos: 37.5,17.5 - parent: 16504 + pos: 40.5,23.5 + parent: 16527 - uid: 17012 components: - type: Transform - pos: 37.5,16.5 - parent: 16504 + pos: 40.5,22.5 + parent: 16527 - uid: 17013 components: - type: Transform - pos: 37.5,15.5 - parent: 16504 + pos: 40.5,21.5 + parent: 16527 - uid: 17014 components: - type: Transform - pos: 37.5,14.5 - parent: 16504 + pos: 40.5,20.5 + parent: 16527 - uid: 17015 components: - type: Transform - pos: 37.5,13.5 - parent: 16504 + pos: 40.5,19.5 + parent: 16527 - uid: 17016 components: - type: Transform - pos: 37.5,12.5 - parent: 16504 + pos: 41.5,38.5 + parent: 16527 - uid: 17017 components: - type: Transform - pos: 38.5,17.5 - parent: 16504 + pos: 41.5,37.5 + parent: 16527 - uid: 17018 components: - type: Transform - pos: 38.5,16.5 - parent: 16504 + pos: 41.5,36.5 + parent: 16527 - uid: 17019 components: - type: Transform - pos: 38.5,15.5 - parent: 16504 + pos: 41.5,35.5 + parent: 16527 - uid: 17020 components: - type: Transform - pos: 38.5,14.5 - parent: 16504 + pos: 41.5,34.5 + parent: 16527 - uid: 17021 components: - type: Transform - pos: 38.5,13.5 - parent: 16504 + pos: 41.5,33.5 + parent: 16527 - uid: 17022 components: - type: Transform - pos: 38.5,12.5 - parent: 16504 + pos: 41.5,32.5 + parent: 16527 - uid: 17023 components: - type: Transform - pos: 39.5,17.5 - parent: 16504 + pos: 41.5,31.5 + parent: 16527 - uid: 17024 components: - type: Transform - pos: 39.5,16.5 - parent: 16504 + pos: 41.5,30.5 + parent: 16527 - uid: 17025 components: - type: Transform - pos: 39.5,15.5 - parent: 16504 + pos: 41.5,29.5 + parent: 16527 - uid: 17026 components: - type: Transform - pos: 39.5,14.5 - parent: 16504 + pos: 41.5,28.5 + parent: 16527 - uid: 17027 components: - type: Transform - pos: 39.5,13.5 - parent: 16504 + pos: 41.5,27.5 + parent: 16527 - uid: 17028 components: - type: Transform - pos: 39.5,12.5 - parent: 16504 + pos: 41.5,26.5 + parent: 16527 - uid: 17029 components: - type: Transform - pos: 40.5,17.5 - parent: 16504 + pos: 41.5,25.5 + parent: 16527 - uid: 17030 components: - type: Transform - pos: 40.5,16.5 - parent: 16504 + pos: 41.5,24.5 + parent: 16527 - uid: 17031 components: - type: Transform - pos: 40.5,15.5 - parent: 16504 + pos: 41.5,23.5 + parent: 16527 - uid: 17032 components: - type: Transform - pos: 40.5,14.5 - parent: 16504 + pos: 41.5,22.5 + parent: 16527 - uid: 17033 components: - type: Transform - pos: 40.5,13.5 - parent: 16504 + pos: 41.5,21.5 + parent: 16527 - uid: 17034 components: - type: Transform - pos: 40.5,12.5 - parent: 16504 + pos: 41.5,20.5 + parent: 16527 - uid: 17035 components: - type: Transform - pos: 36.5,13.5 - parent: 16504 + pos: 41.5,19.5 + parent: 16527 - uid: 17036 components: - type: Transform - pos: 36.5,12.5 - parent: 16504 + pos: 42.5,38.5 + parent: 16527 - uid: 17037 components: - type: Transform - pos: 36.5,11.5 - parent: 16504 + pos: 42.5,37.5 + parent: 16527 - uid: 17038 components: - type: Transform - pos: 36.5,10.5 - parent: 16504 + pos: 42.5,36.5 + parent: 16527 - uid: 17039 components: - type: Transform - pos: 37.5,11.5 - parent: 16504 + pos: 42.5,35.5 + parent: 16527 - uid: 17040 components: - type: Transform - pos: 37.5,10.5 - parent: 16504 + pos: 42.5,34.5 + parent: 16527 - uid: 17041 components: - type: Transform - pos: 37.5,9.5 - parent: 16504 + pos: 42.5,33.5 + parent: 16527 - uid: 17042 components: - type: Transform - pos: 38.5,11.5 - parent: 16504 + pos: 42.5,32.5 + parent: 16527 - uid: 17043 components: - type: Transform - pos: 38.5,10.5 - parent: 16504 + pos: 42.5,31.5 + parent: 16527 - uid: 17044 components: - type: Transform - pos: 35.5,12.5 - parent: 16504 + pos: 42.5,30.5 + parent: 16527 - uid: 17045 components: - type: Transform - pos: 35.5,11.5 - parent: 16504 + pos: 42.5,29.5 + parent: 16527 - uid: 17046 components: - type: Transform - pos: 34.5,11.5 - parent: 16504 + pos: 42.5,28.5 + parent: 16527 - uid: 17047 components: - type: Transform - pos: 34.5,10.5 - parent: 16504 + pos: 42.5,27.5 + parent: 16527 - uid: 17048 components: - type: Transform - pos: 34.5,9.5 - parent: 16504 + pos: 42.5,26.5 + parent: 16527 - uid: 17049 components: - type: Transform - pos: 35.5,10.5 - parent: 16504 + pos: 42.5,25.5 + parent: 16527 - uid: 17050 components: - type: Transform - pos: 35.5,9.5 - parent: 16504 + pos: 42.5,24.5 + parent: 16527 - uid: 17051 components: - type: Transform - pos: 36.5,9.5 - parent: 16504 + pos: 42.5,23.5 + parent: 16527 - uid: 17052 components: - type: Transform - pos: 36.5,8.5 - parent: 16504 + pos: 42.5,22.5 + parent: 16527 - uid: 17053 components: - type: Transform - pos: 36.5,7.5 - parent: 16504 + pos: 42.5,21.5 + parent: 16527 - uid: 17054 components: - type: Transform - pos: 35.5,8.5 - parent: 16504 + pos: 42.5,20.5 + parent: 16527 - uid: 17055 components: - type: Transform - pos: 35.5,7.5 - parent: 16504 + pos: 42.5,19.5 + parent: 16527 - uid: 17056 components: - type: Transform - pos: 34.5,8.5 - parent: 16504 + pos: 34.5,21.5 + parent: 16527 - uid: 17057 components: - type: Transform - pos: 34.5,7.5 - parent: 16504 + pos: 35.5,21.5 + parent: 16527 - uid: 17058 components: - type: Transform - pos: 33.5,7.5 - parent: 16504 + pos: 36.5,21.5 + parent: 16527 - uid: 17059 components: - type: Transform - pos: 33.5,8.5 - parent: 16504 + pos: 37.5,21.5 + parent: 16527 - uid: 17060 components: - type: Transform - pos: 33.5,9.5 - parent: 16504 + pos: 38.5,21.5 + parent: 16527 - uid: 17061 components: - type: Transform - pos: 33.5,10.5 - parent: 16504 + pos: 36.5,20.5 + parent: 16527 - uid: 17062 components: - type: Transform - pos: 32.5,7.5 - parent: 16504 + pos: 37.5,20.5 + parent: 16527 - uid: 17063 components: - type: Transform - pos: 32.5,8.5 - parent: 16504 + pos: 38.5,20.5 + parent: 16527 - uid: 17064 components: - type: Transform - pos: 32.5,9.5 - parent: 16504 + pos: 36.5,19.5 + parent: 16527 - uid: 17065 components: - type: Transform - pos: 32.5,10.5 - parent: 16504 + pos: 37.5,19.5 + parent: 16527 - uid: 17066 components: - type: Transform - pos: 31.5,7.5 - parent: 16504 + pos: 38.5,19.5 + parent: 16527 - uid: 17067 components: - type: Transform - pos: 31.5,8.5 - parent: 16504 + pos: 41.5,18.5 + parent: 16527 - uid: 17068 components: - type: Transform - pos: 31.5,9.5 - parent: 16504 + pos: 40.5,18.5 + parent: 16527 - uid: 17069 components: - type: Transform - pos: 31.5,10.5 - parent: 16504 + pos: 39.5,18.5 + parent: 16527 - uid: 17070 components: - type: Transform - pos: 30.5,7.5 - parent: 16504 + pos: 38.5,18.5 + parent: 16527 - uid: 17071 components: - type: Transform - pos: 30.5,8.5 - parent: 16504 + pos: 37.5,18.5 + parent: 16527 - uid: 17072 components: - type: Transform - pos: 30.5,9.5 - parent: 16504 + pos: 37.5,17.5 + parent: 16527 - uid: 17073 components: - type: Transform - pos: 30.5,10.5 - parent: 16504 + pos: 37.5,16.5 + parent: 16527 - uid: 17074 components: - type: Transform - pos: 29.5,7.5 - parent: 16504 + pos: 37.5,15.5 + parent: 16527 - uid: 17075 components: - type: Transform - pos: 29.5,8.5 - parent: 16504 + pos: 37.5,14.5 + parent: 16527 - uid: 17076 components: - type: Transform - pos: 29.5,9.5 - parent: 16504 + pos: 37.5,13.5 + parent: 16527 - uid: 17077 components: - type: Transform - pos: 29.5,10.5 - parent: 16504 + pos: 37.5,12.5 + parent: 16527 - uid: 17078 components: - type: Transform - pos: 28.5,7.5 - parent: 16504 + pos: 38.5,17.5 + parent: 16527 - uid: 17079 components: - type: Transform - pos: 28.5,8.5 - parent: 16504 + pos: 38.5,16.5 + parent: 16527 - uid: 17080 components: - type: Transform - pos: 28.5,9.5 - parent: 16504 + pos: 38.5,15.5 + parent: 16527 - uid: 17081 components: - type: Transform - pos: 28.5,10.5 - parent: 16504 + pos: 38.5,14.5 + parent: 16527 - uid: 17082 components: - type: Transform - pos: 27.5,7.5 - parent: 16504 + pos: 38.5,13.5 + parent: 16527 - uid: 17083 components: - type: Transform - pos: 27.5,8.5 - parent: 16504 + pos: 38.5,12.5 + parent: 16527 - uid: 17084 components: - type: Transform - pos: 27.5,9.5 - parent: 16504 + pos: 39.5,17.5 + parent: 16527 - uid: 17085 components: - type: Transform - pos: 27.5,10.5 - parent: 16504 + pos: 39.5,16.5 + parent: 16527 - uid: 17086 components: - type: Transform - pos: 26.5,7.5 - parent: 16504 + pos: 39.5,15.5 + parent: 16527 - uid: 17087 components: - type: Transform - pos: 26.5,8.5 - parent: 16504 + pos: 39.5,14.5 + parent: 16527 - uid: 17088 components: - type: Transform - pos: 26.5,9.5 - parent: 16504 + pos: 39.5,13.5 + parent: 16527 - uid: 17089 components: - type: Transform - pos: 26.5,10.5 - parent: 16504 + pos: 39.5,12.5 + parent: 16527 - uid: 17090 components: - type: Transform - pos: 25.5,7.5 - parent: 16504 + pos: 40.5,17.5 + parent: 16527 - uid: 17091 components: - type: Transform - pos: 25.5,8.5 - parent: 16504 + pos: 40.5,16.5 + parent: 16527 - uid: 17092 components: - type: Transform - pos: 25.5,9.5 - parent: 16504 + pos: 40.5,15.5 + parent: 16527 - uid: 17093 components: - type: Transform - pos: 25.5,10.5 - parent: 16504 + pos: 40.5,14.5 + parent: 16527 - uid: 17094 components: - type: Transform - pos: 24.5,7.5 - parent: 16504 + pos: 40.5,13.5 + parent: 16527 - uid: 17095 components: - type: Transform - pos: 24.5,8.5 - parent: 16504 + pos: 40.5,12.5 + parent: 16527 - uid: 17096 components: - type: Transform - pos: 24.5,9.5 - parent: 16504 + pos: 36.5,13.5 + parent: 16527 - uid: 17097 components: - type: Transform - pos: 24.5,10.5 - parent: 16504 + pos: 36.5,12.5 + parent: 16527 - uid: 17098 components: - type: Transform - pos: 29.5,6.5 - parent: 16504 + pos: 36.5,11.5 + parent: 16527 - uid: 17099 components: - type: Transform - pos: 28.5,6.5 - parent: 16504 + pos: 36.5,10.5 + parent: 16527 - uid: 17100 components: - type: Transform - pos: 28.5,5.5 - parent: 16504 + pos: 37.5,11.5 + parent: 16527 - uid: 17101 components: - type: Transform - pos: 24.5,6.5 - parent: 16504 + pos: 37.5,10.5 + parent: 16527 - uid: 17102 components: - type: Transform - pos: 24.5,5.5 - parent: 16504 + pos: 37.5,9.5 + parent: 16527 - uid: 17103 components: - type: Transform - pos: 24.5,4.5 - parent: 16504 + pos: 38.5,11.5 + parent: 16527 - uid: 17104 components: - type: Transform - pos: 24.5,3.5 - parent: 16504 + pos: 38.5,10.5 + parent: 16527 - uid: 17105 components: - type: Transform - pos: 24.5,2.5 - parent: 16504 + pos: 35.5,12.5 + parent: 16527 - uid: 17106 components: - type: Transform - pos: 24.5,1.5 - parent: 16504 + pos: 35.5,11.5 + parent: 16527 - uid: 17107 components: - type: Transform - pos: 24.5,0.5 - parent: 16504 + pos: 34.5,11.5 + parent: 16527 - uid: 17108 components: - type: Transform - pos: 24.5,-0.5 - parent: 16504 + pos: 34.5,10.5 + parent: 16527 - uid: 17109 components: - type: Transform - pos: 24.5,-1.5 - parent: 16504 + pos: 34.5,9.5 + parent: 16527 - uid: 17110 components: - type: Transform - pos: 24.5,-2.5 - parent: 16504 + pos: 35.5,10.5 + parent: 16527 - uid: 17111 components: - type: Transform - pos: 24.5,-3.5 - parent: 16504 + pos: 35.5,9.5 + parent: 16527 - uid: 17112 components: - type: Transform - pos: 24.5,-4.5 - parent: 16504 + pos: 36.5,9.5 + parent: 16527 - uid: 17113 components: - type: Transform - pos: 25.5,6.5 - parent: 16504 + pos: 36.5,8.5 + parent: 16527 - uid: 17114 components: - type: Transform - pos: 25.5,5.5 - parent: 16504 + pos: 36.5,7.5 + parent: 16527 - uid: 17115 components: - type: Transform - pos: 25.5,4.5 - parent: 16504 + pos: 35.5,8.5 + parent: 16527 - uid: 17116 components: - type: Transform - pos: 25.5,3.5 - parent: 16504 + pos: 35.5,7.5 + parent: 16527 - uid: 17117 components: - type: Transform - pos: 25.5,2.5 - parent: 16504 + pos: 34.5,8.5 + parent: 16527 - uid: 17118 components: - type: Transform - pos: 25.5,1.5 - parent: 16504 + pos: 34.5,7.5 + parent: 16527 - uid: 17119 components: - type: Transform - pos: 25.5,0.5 - parent: 16504 + pos: 33.5,7.5 + parent: 16527 - uid: 17120 components: - type: Transform - pos: 25.5,-0.5 - parent: 16504 + pos: 33.5,8.5 + parent: 16527 - uid: 17121 components: - type: Transform - pos: 25.5,-1.5 - parent: 16504 + pos: 33.5,9.5 + parent: 16527 - uid: 17122 components: - type: Transform - pos: 25.5,-2.5 - parent: 16504 + pos: 33.5,10.5 + parent: 16527 - uid: 17123 components: - type: Transform - pos: 25.5,-3.5 - parent: 16504 + pos: 32.5,7.5 + parent: 16527 - uid: 17124 components: - type: Transform - pos: 25.5,-4.5 - parent: 16504 + pos: 32.5,8.5 + parent: 16527 - uid: 17125 components: - type: Transform - pos: 26.5,6.5 - parent: 16504 + pos: 32.5,9.5 + parent: 16527 - uid: 17126 components: - type: Transform - pos: 26.5,5.5 - parent: 16504 + pos: 32.5,10.5 + parent: 16527 - uid: 17127 components: - type: Transform - pos: 26.5,4.5 - parent: 16504 + pos: 31.5,7.5 + parent: 16527 - uid: 17128 components: - type: Transform - pos: 26.5,3.5 - parent: 16504 + pos: 31.5,8.5 + parent: 16527 - uid: 17129 components: - type: Transform - pos: 26.5,2.5 - parent: 16504 + pos: 31.5,9.5 + parent: 16527 - uid: 17130 components: - type: Transform - pos: 26.5,1.5 - parent: 16504 + pos: 31.5,10.5 + parent: 16527 - uid: 17131 components: - type: Transform - pos: 26.5,0.5 - parent: 16504 + pos: 30.5,7.5 + parent: 16527 - uid: 17132 components: - type: Transform - pos: 26.5,-0.5 - parent: 16504 + pos: 30.5,8.5 + parent: 16527 - uid: 17133 components: - type: Transform - pos: 26.5,-1.5 - parent: 16504 + pos: 30.5,9.5 + parent: 16527 - uid: 17134 components: - type: Transform - pos: 26.5,-2.5 - parent: 16504 + pos: 30.5,10.5 + parent: 16527 - uid: 17135 components: - type: Transform - pos: 26.5,-3.5 - parent: 16504 + pos: 29.5,7.5 + parent: 16527 - uid: 17136 components: - type: Transform - pos: 26.5,-4.5 - parent: 16504 + pos: 29.5,8.5 + parent: 16527 - uid: 17137 components: - type: Transform - pos: 27.5,6.5 - parent: 16504 + pos: 29.5,9.5 + parent: 16527 - uid: 17138 components: - type: Transform - pos: 27.5,5.5 - parent: 16504 + pos: 29.5,10.5 + parent: 16527 - uid: 17139 components: - type: Transform - pos: 27.5,4.5 - parent: 16504 + pos: 28.5,7.5 + parent: 16527 - uid: 17140 components: - type: Transform - pos: 27.5,3.5 - parent: 16504 + pos: 28.5,8.5 + parent: 16527 - uid: 17141 components: - type: Transform - pos: 27.5,2.5 - parent: 16504 + pos: 28.5,9.5 + parent: 16527 - uid: 17142 components: - type: Transform - pos: 27.5,1.5 - parent: 16504 + pos: 28.5,10.5 + parent: 16527 - uid: 17143 components: - type: Transform - pos: 27.5,0.5 - parent: 16504 + pos: 27.5,7.5 + parent: 16527 - uid: 17144 components: - type: Transform - pos: 27.5,-0.5 - parent: 16504 + pos: 27.5,8.5 + parent: 16527 - uid: 17145 components: - type: Transform - pos: 27.5,-1.5 - parent: 16504 + pos: 27.5,9.5 + parent: 16527 - uid: 17146 components: - type: Transform - pos: 27.5,-2.5 - parent: 16504 + pos: 27.5,10.5 + parent: 16527 - uid: 17147 components: - type: Transform - pos: 27.5,-3.5 - parent: 16504 + pos: 26.5,7.5 + parent: 16527 - uid: 17148 components: - type: Transform - pos: 27.5,-4.5 - parent: 16504 + pos: 26.5,8.5 + parent: 16527 - uid: 17149 components: - type: Transform - pos: 23.5,-4.5 - parent: 16504 + pos: 26.5,9.5 + parent: 16527 - uid: 17150 components: - type: Transform - pos: 23.5,-3.5 - parent: 16504 + pos: 26.5,10.5 + parent: 16527 - uid: 17151 components: - type: Transform - pos: 22.5,-4.5 - parent: 16504 + pos: 25.5,7.5 + parent: 16527 - uid: 17152 components: - type: Transform - pos: 22.5,-5.5 - parent: 16504 + pos: 25.5,8.5 + parent: 16527 - uid: 17153 components: - type: Transform - pos: 23.5,-5.5 - parent: 16504 + pos: 25.5,9.5 + parent: 16527 - uid: 17154 components: - type: Transform - pos: 24.5,-5.5 - parent: 16504 + pos: 25.5,10.5 + parent: 16527 - uid: 17155 components: - type: Transform - pos: 25.5,-5.5 - parent: 16504 + pos: 24.5,7.5 + parent: 16527 - uid: 17156 components: - type: Transform - pos: 26.5,-5.5 - parent: 16504 + pos: 24.5,8.5 + parent: 16527 - uid: 17157 components: - type: Transform - pos: 26.5,-6.5 - parent: 16504 + pos: 24.5,9.5 + parent: 16527 - uid: 17158 components: - type: Transform - pos: 26.5,-7.5 - parent: 16504 + pos: 24.5,10.5 + parent: 16527 - uid: 17159 components: - type: Transform - pos: 25.5,-6.5 - parent: 16504 + pos: 29.5,6.5 + parent: 16527 - uid: 17160 components: - type: Transform - pos: 25.5,-7.5 - parent: 16504 + pos: 28.5,6.5 + parent: 16527 - uid: 17161 components: - type: Transform - pos: 24.5,-6.5 - parent: 16504 + pos: 28.5,5.5 + parent: 16527 - uid: 17162 components: - type: Transform - pos: 24.5,-7.5 - parent: 16504 + pos: 24.5,6.5 + parent: 16527 - uid: 17163 components: - type: Transform - pos: 23.5,-6.5 - parent: 16504 + pos: 24.5,5.5 + parent: 16527 - uid: 17164 components: - type: Transform - pos: 23.5,-7.5 - parent: 16504 + pos: 24.5,4.5 + parent: 16527 - uid: 17165 components: - type: Transform - pos: 22.5,-6.5 - parent: 16504 + pos: 24.5,3.5 + parent: 16527 - uid: 17166 components: - type: Transform - pos: 22.5,-7.5 - parent: 16504 + pos: 24.5,2.5 + parent: 16527 - uid: 17167 components: - type: Transform - pos: 22.5,-8.5 - parent: 16504 + pos: 24.5,1.5 + parent: 16527 - uid: 17168 components: - type: Transform - pos: 22.5,-9.5 - parent: 16504 + pos: 24.5,0.5 + parent: 16527 - uid: 17169 components: - type: Transform - pos: 22.5,-10.5 - parent: 16504 + pos: 24.5,-0.5 + parent: 16527 - uid: 17170 components: - type: Transform - pos: 22.5,-11.5 - parent: 16504 + pos: 24.5,-1.5 + parent: 16527 - uid: 17171 components: - type: Transform - pos: 23.5,-8.5 - parent: 16504 + pos: 24.5,-2.5 + parent: 16527 - uid: 17172 components: - type: Transform - pos: 23.5,-9.5 - parent: 16504 + pos: 24.5,-3.5 + parent: 16527 - uid: 17173 components: - type: Transform - pos: 23.5,-10.5 - parent: 16504 + pos: 24.5,-4.5 + parent: 16527 - uid: 17174 components: - type: Transform - pos: 23.5,-11.5 - parent: 16504 + pos: 25.5,6.5 + parent: 16527 - uid: 17175 components: - type: Transform - pos: 24.5,-8.5 - parent: 16504 + pos: 25.5,5.5 + parent: 16527 - uid: 17176 components: - type: Transform - pos: 24.5,-9.5 - parent: 16504 + pos: 25.5,4.5 + parent: 16527 - uid: 17177 components: - type: Transform - pos: 24.5,-10.5 - parent: 16504 + pos: 25.5,3.5 + parent: 16527 - uid: 17178 components: - type: Transform - pos: 24.5,-11.5 - parent: 16504 + pos: 25.5,2.5 + parent: 16527 - uid: 17179 components: - type: Transform - pos: 25.5,-8.5 - parent: 16504 + pos: 25.5,1.5 + parent: 16527 - uid: 17180 components: - type: Transform - pos: 25.5,-9.5 - parent: 16504 + pos: 25.5,0.5 + parent: 16527 - uid: 17181 components: - type: Transform - pos: 25.5,-10.5 - parent: 16504 + pos: 25.5,-0.5 + parent: 16527 - uid: 17182 components: - type: Transform - pos: 25.5,-11.5 - parent: 16504 + pos: 25.5,-1.5 + parent: 16527 - uid: 17183 components: - type: Transform - pos: 21.5,-10.5 - parent: 16504 + pos: 25.5,-2.5 + parent: 16527 - uid: 17184 components: - type: Transform - pos: 21.5,-11.5 - parent: 16504 + pos: 25.5,-3.5 + parent: 16527 - uid: 17185 components: - type: Transform - pos: 20.5,-10.5 - parent: 16504 + pos: 25.5,-4.5 + parent: 16527 - uid: 17186 components: - type: Transform - pos: 20.5,-11.5 - parent: 16504 + pos: 26.5,6.5 + parent: 16527 - uid: 17187 components: - type: Transform - pos: 19.5,-10.5 - parent: 16504 + pos: 26.5,5.5 + parent: 16527 - uid: 17188 components: - type: Transform - pos: 19.5,-11.5 - parent: 16504 + pos: 26.5,4.5 + parent: 16527 - uid: 17189 components: - type: Transform - pos: 18.5,-10.5 - parent: 16504 + pos: 26.5,3.5 + parent: 16527 - uid: 17190 components: - type: Transform - pos: 18.5,-11.5 - parent: 16504 + pos: 26.5,2.5 + parent: 16527 - uid: 17191 components: - type: Transform - pos: 17.5,-10.5 - parent: 16504 + pos: 26.5,1.5 + parent: 16527 - uid: 17192 components: - type: Transform - pos: 17.5,-11.5 - parent: 16504 + pos: 26.5,0.5 + parent: 16527 - uid: 17193 components: - type: Transform - pos: 16.5,-10.5 - parent: 16504 + pos: 26.5,-0.5 + parent: 16527 - uid: 17194 components: - type: Transform - pos: 16.5,-11.5 - parent: 16504 + pos: 26.5,-1.5 + parent: 16527 - uid: 17195 components: - type: Transform - pos: 15.5,-10.5 - parent: 16504 + pos: 26.5,-2.5 + parent: 16527 - uid: 17196 components: - type: Transform - pos: 15.5,-11.5 - parent: 16504 + pos: 26.5,-3.5 + parent: 16527 - uid: 17197 components: - type: Transform - pos: 14.5,-10.5 - parent: 16504 + pos: 26.5,-4.5 + parent: 16527 - uid: 17198 components: - type: Transform - pos: 14.5,-11.5 - parent: 16504 + pos: 27.5,6.5 + parent: 16527 - uid: 17199 components: - type: Transform - pos: 13.5,-10.5 - parent: 16504 + pos: 27.5,5.5 + parent: 16527 - uid: 17200 components: - type: Transform - pos: 13.5,-11.5 - parent: 16504 + pos: 27.5,4.5 + parent: 16527 - uid: 17201 components: - type: Transform - pos: 12.5,-10.5 - parent: 16504 + pos: 27.5,3.5 + parent: 16527 - uid: 17202 components: - type: Transform - pos: 12.5,-11.5 - parent: 16504 + pos: 27.5,2.5 + parent: 16527 - uid: 17203 components: - type: Transform - pos: 11.5,-10.5 - parent: 16504 + pos: 27.5,1.5 + parent: 16527 - uid: 17204 components: - type: Transform - pos: 11.5,-11.5 - parent: 16504 + pos: 27.5,0.5 + parent: 16527 - uid: 17205 components: - type: Transform - pos: 10.5,-10.5 - parent: 16504 + pos: 27.5,-0.5 + parent: 16527 - uid: 17206 components: - type: Transform - pos: 10.5,-11.5 - parent: 16504 + pos: 27.5,-1.5 + parent: 16527 - uid: 17207 components: - type: Transform - pos: 9.5,-10.5 - parent: 16504 + pos: 27.5,-2.5 + parent: 16527 - uid: 17208 components: - type: Transform - pos: 9.5,-9.5 - parent: 16504 + pos: 27.5,-3.5 + parent: 16527 - uid: 17209 components: - type: Transform - pos: 9.5,-8.5 - parent: 16504 + pos: 27.5,-4.5 + parent: 16527 - uid: 17210 components: - type: Transform - pos: 9.5,-7.5 - parent: 16504 + pos: 23.5,-4.5 + parent: 16527 - uid: 17211 components: - type: Transform - pos: 9.5,-6.5 - parent: 16504 + pos: 23.5,-3.5 + parent: 16527 - uid: 17212 components: - type: Transform - pos: 9.5,-5.5 - parent: 16504 + pos: 22.5,-4.5 + parent: 16527 - uid: 17213 components: - type: Transform - pos: 8.5,-8.5 - parent: 16504 + pos: 22.5,-5.5 + parent: 16527 - uid: 17214 components: - type: Transform - pos: 8.5,-7.5 - parent: 16504 + pos: 23.5,-5.5 + parent: 16527 - uid: 17215 components: - type: Transform - pos: 8.5,-6.5 - parent: 16504 + pos: 24.5,-5.5 + parent: 16527 - uid: 17216 components: - type: Transform - pos: 8.5,-5.5 - parent: 16504 + pos: 25.5,-5.5 + parent: 16527 - uid: 17217 components: - type: Transform - pos: -8.5,-5.5 - parent: 16504 + pos: 26.5,-5.5 + parent: 16527 - uid: 17218 components: - type: Transform - pos: -8.5,-6.5 - parent: 16504 + pos: 26.5,-6.5 + parent: 16527 - uid: 17219 components: - type: Transform - pos: -8.5,-7.5 - parent: 16504 + pos: 26.5,-7.5 + parent: 16527 - uid: 17220 components: - type: Transform - pos: -8.5,-8.5 - parent: 16504 + pos: 25.5,-6.5 + parent: 16527 - uid: 17221 components: - type: Transform - pos: -7.5,-5.5 - parent: 16504 + pos: 25.5,-7.5 + parent: 16527 - uid: 17222 components: - type: Transform - pos: -7.5,-6.5 - parent: 16504 + pos: 24.5,-6.5 + parent: 16527 - uid: 17223 components: - type: Transform - pos: -7.5,-7.5 - parent: 16504 + pos: 24.5,-7.5 + parent: 16527 - uid: 17224 components: - type: Transform - pos: -7.5,-8.5 - parent: 16504 + pos: 23.5,-6.5 + parent: 16527 - uid: 17225 components: - type: Transform - pos: -8.5,-9.5 - parent: 16504 + pos: 23.5,-7.5 + parent: 16527 - uid: 17226 components: - type: Transform - pos: -8.5,-10.5 - parent: 16504 + pos: 22.5,-6.5 + parent: 16527 - uid: 17227 components: - type: Transform - pos: -9.5,-10.5 - parent: 16504 + pos: 22.5,-7.5 + parent: 16527 - uid: 17228 components: - type: Transform - pos: -9.5,-11.5 - parent: 16504 + pos: 22.5,-8.5 + parent: 16527 - uid: 17229 components: - type: Transform - pos: -10.5,-10.5 - parent: 16504 + pos: 22.5,-9.5 + parent: 16527 - uid: 17230 components: - type: Transform - pos: -10.5,-11.5 - parent: 16504 + pos: 22.5,-10.5 + parent: 16527 - uid: 17231 components: - type: Transform - pos: -11.5,-10.5 - parent: 16504 + pos: 22.5,-11.5 + parent: 16527 - uid: 17232 components: - type: Transform - pos: -11.5,-11.5 - parent: 16504 + pos: 23.5,-8.5 + parent: 16527 - uid: 17233 components: - type: Transform - pos: -12.5,-10.5 - parent: 16504 + pos: 23.5,-9.5 + parent: 16527 - uid: 17234 components: - type: Transform - pos: -12.5,-11.5 - parent: 16504 + pos: 23.5,-10.5 + parent: 16527 - uid: 17235 components: - type: Transform - pos: -13.5,-10.5 - parent: 16504 + pos: 23.5,-11.5 + parent: 16527 - uid: 17236 components: - type: Transform - pos: -13.5,-11.5 - parent: 16504 + pos: 24.5,-8.5 + parent: 16527 - uid: 17237 components: - type: Transform - pos: -14.5,-10.5 - parent: 16504 + pos: 24.5,-9.5 + parent: 16527 - uid: 17238 components: - type: Transform - pos: -14.5,-11.5 - parent: 16504 + pos: 24.5,-10.5 + parent: 16527 - uid: 17239 components: - type: Transform - pos: -15.5,-10.5 - parent: 16504 + pos: 24.5,-11.5 + parent: 16527 - uid: 17240 components: - type: Transform - pos: -15.5,-11.5 - parent: 16504 + pos: 25.5,-8.5 + parent: 16527 - uid: 17241 components: - type: Transform - pos: -16.5,-10.5 - parent: 16504 + pos: 25.5,-9.5 + parent: 16527 - uid: 17242 components: - type: Transform - pos: -16.5,-11.5 - parent: 16504 + pos: 25.5,-10.5 + parent: 16527 - uid: 17243 components: - type: Transform - pos: -17.5,-10.5 - parent: 16504 + pos: 25.5,-11.5 + parent: 16527 - uid: 17244 components: - type: Transform - pos: -17.5,-11.5 - parent: 16504 + pos: 21.5,-10.5 + parent: 16527 - uid: 17245 components: - type: Transform - pos: -18.5,-10.5 - parent: 16504 + pos: 21.5,-11.5 + parent: 16527 - uid: 17246 components: - type: Transform - pos: -18.5,-11.5 - parent: 16504 + pos: 20.5,-10.5 + parent: 16527 - uid: 17247 components: - type: Transform - pos: -19.5,-10.5 - parent: 16504 + pos: 20.5,-11.5 + parent: 16527 - uid: 17248 components: - type: Transform - pos: -19.5,-11.5 - parent: 16504 + pos: 19.5,-10.5 + parent: 16527 - uid: 17249 components: - type: Transform - pos: -20.5,-10.5 - parent: 16504 + pos: 19.5,-11.5 + parent: 16527 - uid: 17250 components: - type: Transform - pos: -20.5,-11.5 - parent: 16504 + pos: 18.5,-10.5 + parent: 16527 - uid: 17251 components: - type: Transform - pos: -21.5,-9.5 - parent: 16504 + pos: 18.5,-11.5 + parent: 16527 - uid: 17252 components: - type: Transform - pos: -21.5,-8.5 - parent: 16504 + pos: 17.5,-10.5 + parent: 16527 - uid: 17253 components: - type: Transform - pos: -20.5,-9.5 - parent: 16504 + pos: 17.5,-11.5 + parent: 16527 - uid: 17254 components: - type: Transform - pos: -20.5,-8.5 - parent: 16504 + pos: 16.5,-10.5 + parent: 16527 - uid: 17255 components: - type: Transform - pos: -22.5,-7.5 - parent: 16504 + pos: 16.5,-11.5 + parent: 16527 - uid: 17256 components: - type: Transform - pos: -22.5,-6.5 - parent: 16504 + pos: 15.5,-10.5 + parent: 16527 - uid: 17257 components: - type: Transform - pos: -21.5,-7.5 - parent: 16504 + pos: 15.5,-11.5 + parent: 16527 - uid: 17258 components: - type: Transform - pos: -21.5,-6.5 - parent: 16504 + pos: 14.5,-10.5 + parent: 16527 - uid: 17259 components: - type: Transform - pos: -23.5,-5.5 - parent: 16504 + pos: 14.5,-11.5 + parent: 16527 - uid: 17260 components: - type: Transform - pos: -23.5,-4.5 - parent: 16504 + pos: 13.5,-10.5 + parent: 16527 - uid: 17261 components: - type: Transform - pos: -22.5,-5.5 - parent: 16504 + pos: 13.5,-11.5 + parent: 16527 - uid: 17262 components: - type: Transform - pos: -22.5,-4.5 - parent: 16504 + pos: 12.5,-10.5 + parent: 16527 - uid: 17263 components: - type: Transform - pos: -24.5,-3.5 - parent: 16504 + pos: 12.5,-11.5 + parent: 16527 - uid: 17264 components: - type: Transform - pos: -24.5,-2.5 - parent: 16504 + pos: 11.5,-10.5 + parent: 16527 - uid: 17265 components: - type: Transform - pos: -23.5,-3.5 - parent: 16504 + pos: 11.5,-11.5 + parent: 16527 - uid: 17266 components: - type: Transform - pos: -23.5,-2.5 - parent: 16504 + pos: 10.5,-10.5 + parent: 16527 - uid: 17267 components: - type: Transform - pos: -25.5,-2.5 - parent: 16504 + pos: 10.5,-11.5 + parent: 16527 - uid: 17268 components: - type: Transform - pos: -25.5,-1.5 - parent: 16504 + pos: 9.5,-10.5 + parent: 16527 - uid: 17269 components: - type: Transform - pos: -25.5,-0.5 - parent: 16504 + pos: 9.5,-9.5 + parent: 16527 - uid: 17270 components: - type: Transform - pos: -26.5,-1.5 - parent: 16504 + pos: 9.5,-8.5 + parent: 16527 - uid: 17271 components: - type: Transform - pos: -26.5,-0.5 - parent: 16504 + pos: 9.5,-7.5 + parent: 16527 - uid: 17272 components: - type: Transform - pos: -26.5,0.5 - parent: 16504 + pos: 9.5,-6.5 + parent: 16527 - uid: 17273 components: - type: Transform - pos: -26.5,1.5 - parent: 16504 + pos: 9.5,-5.5 + parent: 16527 - uid: 17274 components: - type: Transform - pos: -25.5,0.5 - parent: 16504 + pos: 8.5,-8.5 + parent: 16527 - uid: 17275 components: - type: Transform - pos: -25.5,1.5 - parent: 16504 + pos: 8.5,-7.5 + parent: 16527 - uid: 17276 components: - type: Transform - pos: -27.5,1.5 - parent: 16504 + pos: 8.5,-6.5 + parent: 16527 - uid: 17277 components: - type: Transform - pos: -27.5,2.5 - parent: 16504 + pos: 8.5,-5.5 + parent: 16527 - uid: 17278 components: - type: Transform - pos: -27.5,3.5 - parent: 16504 + pos: -8.5,-5.5 + parent: 16527 - uid: 17279 components: - type: Transform - pos: -26.5,2.5 - parent: 16504 + pos: -8.5,-6.5 + parent: 16527 - uid: 17280 components: - type: Transform - pos: -26.5,3.5 - parent: 16504 + pos: -8.5,-7.5 + parent: 16527 - uid: 17281 components: - type: Transform - pos: -28.5,3.5 - parent: 16504 + pos: -8.5,-8.5 + parent: 16527 - uid: 17282 components: - type: Transform - pos: -29.5,4.5 - parent: 16504 + pos: -7.5,-5.5 + parent: 16527 - uid: 17283 components: - type: Transform - pos: -30.5,5.5 - parent: 16504 + pos: -7.5,-6.5 + parent: 16527 - uid: 17284 components: - type: Transform - pos: -31.5,7.5 - parent: 16504 + pos: -7.5,-7.5 + parent: 16527 - uid: 17285 components: - type: Transform - pos: -30.5,6.5 - parent: 16504 + pos: -7.5,-8.5 + parent: 16527 - uid: 17286 components: - type: Transform - pos: -30.5,7.5 - parent: 16504 + pos: -8.5,-9.5 + parent: 16527 - uid: 17287 components: - type: Transform - pos: -29.5,7.5 - parent: 16504 + pos: -8.5,-10.5 + parent: 16527 - uid: 17288 components: - type: Transform - pos: -29.5,6.5 - parent: 16504 + pos: -9.5,-10.5 + parent: 16527 - uid: 17289 components: - type: Transform - pos: -29.5,5.5 - parent: 16504 + pos: -9.5,-11.5 + parent: 16527 - uid: 17290 components: - type: Transform - pos: -28.5,7.5 - parent: 16504 + pos: -10.5,-10.5 + parent: 16527 - uid: 17291 components: - type: Transform - pos: -28.5,6.5 - parent: 16504 + pos: -10.5,-11.5 + parent: 16527 - uid: 17292 components: - type: Transform - pos: -28.5,5.5 - parent: 16504 + pos: -11.5,-10.5 + parent: 16527 - uid: 17293 components: - type: Transform - pos: -28.5,4.5 - parent: 16504 + pos: -11.5,-11.5 + parent: 16527 - uid: 17294 components: - type: Transform - pos: -27.5,4.5 - parent: 16504 + pos: -12.5,-10.5 + parent: 16527 - uid: 17295 components: - type: Transform - pos: -26.5,4.5 - parent: 16504 + pos: -12.5,-11.5 + parent: 16527 - uid: 17296 components: - type: Transform - pos: -31.5,8.5 - parent: 16504 + pos: -13.5,-10.5 + parent: 16527 - uid: 17297 components: - type: Transform - pos: -31.5,9.5 - parent: 16504 + pos: -13.5,-11.5 + parent: 16527 - uid: 17298 components: - type: Transform - pos: -31.5,10.5 - parent: 16504 + pos: -14.5,-10.5 + parent: 16527 - uid: 17299 components: - type: Transform - pos: -31.5,11.5 - parent: 16504 + pos: -14.5,-11.5 + parent: 16527 - uid: 17300 components: - type: Transform - pos: -31.5,12.5 - parent: 16504 + pos: -15.5,-10.5 + parent: 16527 - uid: 17301 components: - type: Transform - pos: -31.5,13.5 - parent: 16504 + pos: -15.5,-11.5 + parent: 16527 - uid: 17302 components: - type: Transform - pos: -31.5,14.5 - parent: 16504 + pos: -16.5,-10.5 + parent: 16527 - uid: 17303 components: - type: Transform - pos: -30.5,8.5 - parent: 16504 + pos: -16.5,-11.5 + parent: 16527 - uid: 17304 components: - type: Transform - pos: -30.5,9.5 - parent: 16504 + pos: -17.5,-10.5 + parent: 16527 - uid: 17305 components: - type: Transform - pos: -30.5,10.5 - parent: 16504 + pos: -17.5,-11.5 + parent: 16527 - uid: 17306 components: - type: Transform - pos: -30.5,11.5 - parent: 16504 + pos: -18.5,-10.5 + parent: 16527 - uid: 17307 components: - type: Transform - pos: -30.5,12.5 - parent: 16504 + pos: -18.5,-11.5 + parent: 16527 - uid: 17308 components: - type: Transform - pos: -30.5,13.5 - parent: 16504 + pos: -19.5,-10.5 + parent: 16527 - uid: 17309 components: - type: Transform - pos: -30.5,14.5 - parent: 16504 + pos: -19.5,-11.5 + parent: 16527 - uid: 17310 components: - type: Transform - pos: -32.5,14.5 - parent: 16504 + pos: -20.5,-10.5 + parent: 16527 - uid: 17311 components: - type: Transform - pos: -32.5,15.5 - parent: 16504 + pos: -20.5,-11.5 + parent: 16527 - uid: 17312 components: - type: Transform - pos: -31.5,15.5 - parent: 16504 + pos: -21.5,-9.5 + parent: 16527 - uid: 17313 components: - type: Transform - pos: -30.5,15.5 - parent: 16504 + pos: -21.5,-8.5 + parent: 16527 - uid: 17314 components: - type: Transform - pos: -29.5,15.5 - parent: 16504 + pos: -20.5,-9.5 + parent: 16527 - uid: 17315 components: - type: Transform - pos: -19.5,43.5 - parent: 16504 + pos: -20.5,-8.5 + parent: 16527 - uid: 17316 components: - type: Transform - pos: -19.5,42.5 - parent: 16504 + pos: -22.5,-7.5 + parent: 16527 - uid: 17317 components: - type: Transform - pos: -20.5,43.5 - parent: 16504 + pos: -22.5,-6.5 + parent: 16527 - uid: 17318 components: - type: Transform - pos: -20.5,42.5 - parent: 16504 + pos: -21.5,-7.5 + parent: 16527 - uid: 17319 components: - type: Transform - pos: -21.5,43.5 - parent: 16504 + pos: -21.5,-6.5 + parent: 16527 - uid: 17320 components: - type: Transform - pos: -21.5,42.5 - parent: 16504 + pos: -23.5,-5.5 + parent: 16527 - uid: 17321 components: - type: Transform - pos: -22.5,43.5 - parent: 16504 + pos: -23.5,-4.5 + parent: 16527 - uid: 17322 components: - type: Transform - pos: -22.5,42.5 - parent: 16504 + pos: -22.5,-5.5 + parent: 16527 - uid: 17323 components: - type: Transform - pos: -20.5,41.5 - parent: 16504 + pos: -22.5,-4.5 + parent: 16527 - uid: 17324 components: - type: Transform - pos: -21.5,41.5 - parent: 16504 + pos: -24.5,-3.5 + parent: 16527 - uid: 17325 components: - type: Transform - pos: -22.5,41.5 - parent: 16504 + pos: -24.5,-2.5 + parent: 16527 - uid: 17326 components: - type: Transform - pos: -24.5,42.5 - parent: 16504 + pos: -23.5,-3.5 + parent: 16527 - uid: 17327 components: - type: Transform - pos: -24.5,41.5 - parent: 16504 + pos: -23.5,-2.5 + parent: 16527 - uid: 17328 components: - type: Transform - pos: -24.5,40.5 - parent: 16504 + pos: -25.5,-2.5 + parent: 16527 - uid: 17329 components: - type: Transform - pos: -24.5,39.5 - parent: 16504 + pos: -25.5,-1.5 + parent: 16527 - uid: 17330 components: - type: Transform - pos: -24.5,38.5 - parent: 16504 + pos: -25.5,-0.5 + parent: 16527 - uid: 17331 components: - type: Transform - pos: -24.5,37.5 - parent: 16504 + pos: -26.5,-1.5 + parent: 16527 - uid: 17332 components: - type: Transform - pos: -23.5,42.5 - parent: 16504 + pos: -26.5,-0.5 + parent: 16527 - uid: 17333 components: - type: Transform - pos: -23.5,41.5 - parent: 16504 + pos: -26.5,0.5 + parent: 16527 - uid: 17334 components: - type: Transform - pos: -23.5,40.5 - parent: 16504 + pos: -26.5,1.5 + parent: 16527 - uid: 17335 components: - type: Transform - pos: -23.5,39.5 - parent: 16504 + pos: -25.5,0.5 + parent: 16527 - uid: 17336 components: - type: Transform - pos: -23.5,38.5 - parent: 16504 + pos: -25.5,1.5 + parent: 16527 - uid: 17337 components: - type: Transform - pos: -23.5,37.5 - parent: 16504 + pos: -27.5,1.5 + parent: 16527 - uid: 17338 components: - type: Transform - pos: -22.5,40.5 - parent: 16504 + pos: -27.5,2.5 + parent: 16527 - uid: 17339 components: - type: Transform - pos: -22.5,39.5 - parent: 16504 + pos: -27.5,3.5 + parent: 16527 - uid: 17340 components: - type: Transform - pos: -25.5,41.5 - parent: 16504 + pos: -26.5,2.5 + parent: 16527 - uid: 17341 components: - type: Transform - pos: -25.5,40.5 - parent: 16504 + pos: -26.5,3.5 + parent: 16527 - uid: 17342 components: - type: Transform - pos: -25.5,39.5 - parent: 16504 + pos: -28.5,3.5 + parent: 16527 - uid: 17343 components: - type: Transform - pos: -25.5,38.5 - parent: 16504 + pos: -29.5,4.5 + parent: 16527 - uid: 17344 components: - type: Transform - pos: -25.5,37.5 - parent: 16504 + pos: -30.5,5.5 + parent: 16527 - uid: 17345 components: - type: Transform - pos: -26.5,41.5 - parent: 16504 + pos: -31.5,7.5 + parent: 16527 - uid: 17346 components: - type: Transform - pos: -26.5,40.5 - parent: 16504 + pos: -30.5,6.5 + parent: 16527 - uid: 17347 components: - type: Transform - pos: -26.5,39.5 - parent: 16504 + pos: -30.5,7.5 + parent: 16527 - uid: 17348 components: - type: Transform - pos: -26.5,38.5 - parent: 16504 + pos: -29.5,7.5 + parent: 16527 - uid: 17349 components: - type: Transform - pos: -26.5,37.5 - parent: 16504 + pos: -29.5,6.5 + parent: 16527 - uid: 17350 components: - type: Transform - pos: -27.5,41.5 - parent: 16504 + pos: -29.5,5.5 + parent: 16527 - uid: 17351 components: - type: Transform - pos: -27.5,40.5 - parent: 16504 + pos: -28.5,7.5 + parent: 16527 - uid: 17352 components: - type: Transform - pos: -27.5,39.5 - parent: 16504 + pos: -28.5,6.5 + parent: 16527 - uid: 17353 components: - type: Transform - pos: -27.5,38.5 - parent: 16504 + pos: -28.5,5.5 + parent: 16527 - uid: 17354 components: - type: Transform - pos: -27.5,37.5 - parent: 16504 + pos: -28.5,4.5 + parent: 16527 - uid: 17355 components: - type: Transform - pos: -28.5,40.5 - parent: 16504 + pos: -27.5,4.5 + parent: 16527 - uid: 17356 components: - type: Transform - pos: -28.5,39.5 - parent: 16504 + pos: -26.5,4.5 + parent: 16527 - uid: 17357 components: - type: Transform - pos: -28.5,38.5 - parent: 16504 + pos: -31.5,8.5 + parent: 16527 - uid: 17358 components: - type: Transform - pos: -28.5,37.5 - parent: 16504 + pos: -31.5,9.5 + parent: 16527 - uid: 17359 components: - type: Transform - pos: -29.5,40.5 - parent: 16504 + pos: -31.5,10.5 + parent: 16527 - uid: 17360 components: - type: Transform - pos: -29.5,39.5 - parent: 16504 + pos: -31.5,11.5 + parent: 16527 - uid: 17361 components: - type: Transform - pos: -29.5,38.5 - parent: 16504 + pos: -31.5,12.5 + parent: 16527 - uid: 17362 components: - type: Transform - pos: -29.5,37.5 - parent: 16504 + pos: -31.5,13.5 + parent: 16527 - uid: 17363 components: - type: Transform - pos: -30.5,40.5 - parent: 16504 + pos: -31.5,14.5 + parent: 16527 - uid: 17364 components: - type: Transform - pos: -30.5,39.5 - parent: 16504 + pos: -30.5,8.5 + parent: 16527 - uid: 17365 components: - type: Transform - pos: -30.5,38.5 - parent: 16504 + pos: -30.5,9.5 + parent: 16527 - uid: 17366 components: - type: Transform - pos: -30.5,37.5 - parent: 16504 + pos: -30.5,10.5 + parent: 16527 - uid: 17367 components: - type: Transform - pos: -31.5,39.5 - parent: 16504 + pos: -30.5,11.5 + parent: 16527 - uid: 17368 components: - type: Transform - pos: -31.5,38.5 - parent: 16504 + pos: -30.5,12.5 + parent: 16527 - uid: 17369 components: - type: Transform - pos: -31.5,37.5 - parent: 16504 + pos: -30.5,13.5 + parent: 16527 - uid: 17370 components: - type: Transform - pos: -32.5,39.5 - parent: 16504 + pos: -30.5,14.5 + parent: 16527 - uid: 17371 components: - type: Transform - pos: -32.5,38.5 - parent: 16504 + pos: -32.5,14.5 + parent: 16527 - uid: 17372 components: - type: Transform - pos: -32.5,37.5 - parent: 16504 + pos: -32.5,15.5 + parent: 16527 - uid: 17373 components: - type: Transform - pos: -33.5,38.5 - parent: 16504 + pos: -31.5,15.5 + parent: 16527 - uid: 17374 components: - type: Transform - pos: -33.5,37.5 - parent: 16504 + pos: -30.5,15.5 + parent: 16527 - uid: 17375 components: - type: Transform - pos: -34.5,36.5 - parent: 16504 + pos: -29.5,15.5 + parent: 16527 - uid: 17376 components: - type: Transform - pos: -34.5,35.5 - parent: 16504 + pos: -20.5,41.5 + parent: 16527 - uid: 17377 components: - type: Transform - pos: -33.5,36.5 - parent: 16504 + pos: -35.5,23.5 + parent: 16527 - uid: 17378 components: - type: Transform - pos: -33.5,35.5 - parent: 16504 + pos: -21.5,41.5 + parent: 16527 - uid: 17379 components: - type: Transform - pos: -32.5,36.5 - parent: 16504 + pos: 43.5,60.5 + parent: 16527 - uid: 17380 components: - type: Transform - pos: -32.5,35.5 - parent: 16504 + pos: 43.5,58.5 + parent: 16527 - uid: 17381 components: - type: Transform - pos: -32.5,19.5 - parent: 16504 + pos: -32.5,25.5 + parent: 16527 - uid: 17382 components: - type: Transform - pos: -32.5,18.5 - parent: 16504 + pos: -30.5,26.5 + parent: 16527 - uid: 17383 components: - type: Transform - pos: -32.5,17.5 - parent: 16504 + pos: -34.5,20.5 + parent: 16527 - uid: 17384 components: - type: Transform - pos: -32.5,16.5 - parent: 16504 + pos: -20.5,43.5 + parent: 16527 - uid: 17385 components: - type: Transform - pos: -31.5,19.5 - parent: 16504 + pos: -33.5,23.5 + parent: 16527 - uid: 17386 components: - type: Transform - pos: -31.5,18.5 - parent: 16504 + pos: -33.5,22.5 + parent: 16527 - uid: 17387 components: - type: Transform - pos: -31.5,17.5 - parent: 16504 + pos: -33.5,21.5 + parent: 16527 - uid: 17388 components: - type: Transform - pos: -31.5,16.5 - parent: 16504 + pos: 31.5,60.5 + parent: 16527 - uid: 17389 components: - type: Transform - pos: -30.5,18.5 - parent: 16504 + pos: -32.5,23.5 + parent: 16527 - uid: 17390 components: - type: Transform - pos: -29.5,18.5 - parent: 16504 + pos: -32.5,22.5 + parent: 16527 - uid: 17391 components: - type: Transform - pos: -28.5,18.5 - parent: 16504 + pos: -32.5,21.5 + parent: 16527 - uid: 17392 components: - type: Transform - pos: -27.5,18.5 - parent: 16504 + pos: -37.5,23.5 + parent: 16527 - uid: 17393 components: - type: Transform - pos: -26.5,18.5 - parent: 16504 + pos: -31.5,24.5 + parent: 16527 - uid: 17394 components: - type: Transform - pos: -27.5,17.5 - parent: 16504 + pos: -31.5,23.5 + parent: 16527 - uid: 17395 components: - type: Transform - pos: -28.5,17.5 - parent: 16504 + pos: -31.5,22.5 + parent: 16527 - uid: 17396 components: - type: Transform - pos: -29.5,17.5 - parent: 16504 + pos: -31.5,21.5 + parent: 16527 - uid: 17397 components: - type: Transform - pos: -30.5,17.5 - parent: 16504 + pos: -32.5,20.5 + parent: 16527 - uid: 17398 components: - type: Transform - pos: -30.5,16.5 - parent: 16504 + pos: -32.5,19.5 + parent: 16527 - uid: 17399 components: - type: Transform - pos: -29.5,16.5 - parent: 16504 + pos: -32.5,18.5 + parent: 16527 - uid: 17400 components: - type: Transform - pos: -28.5,16.5 - parent: 16504 + pos: -32.5,17.5 + parent: 16527 - uid: 17401 components: - type: Transform - pos: -29.5,14.5 - parent: 16504 + pos: -32.5,16.5 + parent: 16527 - uid: 17402 components: - type: Transform - pos: -29.5,13.5 - parent: 16504 + pos: -31.5,20.5 + parent: 16527 - uid: 17403 components: - type: Transform - pos: -29.5,12.5 - parent: 16504 + pos: -31.5,19.5 + parent: 16527 - uid: 17404 components: - type: Transform - pos: -29.5,11.5 - parent: 16504 + pos: -31.5,18.5 + parent: 16527 - uid: 17405 components: - type: Transform - pos: -29.5,10.5 - parent: 16504 + pos: -31.5,17.5 + parent: 16527 - uid: 17406 components: - type: Transform - pos: -29.5,9.5 - parent: 16504 + pos: -31.5,16.5 + parent: 16527 - uid: 17407 components: - type: Transform - pos: -29.5,8.5 - parent: 16504 + pos: -30.5,18.5 + parent: 16527 - uid: 17408 components: - type: Transform - pos: -28.5,14.5 - parent: 16504 + pos: -29.5,18.5 + parent: 16527 - uid: 17409 components: - type: Transform - pos: -28.5,13.5 - parent: 16504 + pos: -28.5,18.5 + parent: 16527 - uid: 17410 components: - type: Transform - pos: -28.5,12.5 - parent: 16504 + pos: -27.5,18.5 + parent: 16527 - uid: 17411 components: - type: Transform - pos: -28.5,11.5 - parent: 16504 + pos: -26.5,18.5 + parent: 16527 - uid: 17412 components: - type: Transform - pos: -28.5,10.5 - parent: 16504 + pos: -27.5,17.5 + parent: 16527 - uid: 17413 components: - type: Transform - pos: -28.5,9.5 - parent: 16504 + pos: -28.5,17.5 + parent: 16527 - uid: 17414 components: - type: Transform - pos: -28.5,8.5 - parent: 16504 + pos: -29.5,17.5 + parent: 16527 - uid: 17415 components: - type: Transform - pos: -27.5,10.5 - parent: 16504 + pos: -30.5,17.5 + parent: 16527 - uid: 17416 components: - type: Transform - pos: -27.5,9.5 - parent: 16504 + pos: -30.5,16.5 + parent: 16527 - uid: 17417 components: - type: Transform - pos: -27.5,8.5 - parent: 16504 + pos: -29.5,16.5 + parent: 16527 - uid: 17418 components: - type: Transform - pos: -27.5,7.5 - parent: 16504 + pos: -28.5,16.5 + parent: 16527 - uid: 17419 components: - type: Transform - pos: -27.5,6.5 - parent: 16504 + pos: -29.5,14.5 + parent: 16527 - uid: 17420 components: - type: Transform - pos: -27.5,5.5 - parent: 16504 + pos: -29.5,13.5 + parent: 16527 - uid: 17421 components: - type: Transform - pos: -26.5,9.5 - parent: 16504 + pos: -29.5,12.5 + parent: 16527 - uid: 17422 components: - type: Transform - pos: -26.5,8.5 - parent: 16504 + pos: -29.5,11.5 + parent: 16527 - uid: 17423 components: - type: Transform - pos: -26.5,7.5 - parent: 16504 + pos: -29.5,10.5 + parent: 16527 - uid: 17424 components: - type: Transform - pos: -26.5,6.5 - parent: 16504 + pos: -29.5,9.5 + parent: 16527 - uid: 17425 components: - type: Transform - pos: -26.5,5.5 - parent: 16504 + pos: -29.5,8.5 + parent: 16527 - uid: 17426 components: - type: Transform - pos: -25.5,8.5 - parent: 16504 + pos: -28.5,14.5 + parent: 16527 - uid: 17427 components: - type: Transform - pos: -25.5,7.5 - parent: 16504 + pos: -28.5,13.5 + parent: 16527 - uid: 17428 components: - type: Transform - pos: -25.5,6.5 - parent: 16504 + pos: -28.5,12.5 + parent: 16527 - uid: 17429 components: - type: Transform - pos: -25.5,5.5 - parent: 16504 + pos: -28.5,11.5 + parent: 16527 - uid: 17430 components: - type: Transform - pos: -25.5,4.5 - parent: 16504 + pos: -28.5,10.5 + parent: 16527 - uid: 17431 components: - type: Transform - pos: -25.5,3.5 - parent: 16504 + pos: -28.5,9.5 + parent: 16527 - uid: 17432 components: - type: Transform - pos: -25.5,2.5 - parent: 16504 + pos: -28.5,8.5 + parent: 16527 - uid: 17433 components: - type: Transform - pos: -24.5,8.5 - parent: 16504 + pos: -27.5,10.5 + parent: 16527 - uid: 17434 components: - type: Transform - pos: -24.5,7.5 - parent: 16504 + pos: -27.5,9.5 + parent: 16527 - uid: 17435 components: - type: Transform - pos: -24.5,6.5 - parent: 16504 + pos: -27.5,8.5 + parent: 16527 - uid: 17436 components: - type: Transform - pos: -24.5,5.5 - parent: 16504 + pos: -27.5,7.5 + parent: 16527 - uid: 17437 components: - type: Transform - pos: -24.5,4.5 - parent: 16504 + pos: -27.5,6.5 + parent: 16527 - uid: 17438 components: - type: Transform - pos: -24.5,3.5 - parent: 16504 + pos: -27.5,5.5 + parent: 16527 - uid: 17439 components: - type: Transform - pos: -24.5,2.5 - parent: 16504 + pos: -26.5,9.5 + parent: 16527 - uid: 17440 components: - type: Transform - pos: -23.5,8.5 - parent: 16504 + pos: -26.5,8.5 + parent: 16527 - uid: 17441 components: - type: Transform - pos: -23.5,7.5 - parent: 16504 + pos: -26.5,7.5 + parent: 16527 - uid: 17442 components: - type: Transform - pos: -23.5,6.5 - parent: 16504 + pos: -26.5,6.5 + parent: 16527 - uid: 17443 components: - type: Transform - pos: -23.5,5.5 - parent: 16504 + pos: -26.5,5.5 + parent: 16527 - uid: 17444 components: - type: Transform - pos: -23.5,4.5 - parent: 16504 + pos: -25.5,8.5 + parent: 16527 - uid: 17445 components: - type: Transform - pos: -23.5,3.5 - parent: 16504 + pos: -25.5,7.5 + parent: 16527 - uid: 17446 components: - type: Transform - pos: -23.5,2.5 - parent: 16504 + pos: -25.5,6.5 + parent: 16527 - uid: 17447 components: - type: Transform - pos: -22.5,8.5 - parent: 16504 + pos: -25.5,5.5 + parent: 16527 - uid: 17448 components: - type: Transform - pos: -22.5,7.5 - parent: 16504 + pos: -25.5,4.5 + parent: 16527 - uid: 17449 components: - type: Transform - pos: -22.5,6.5 - parent: 16504 + pos: -25.5,3.5 + parent: 16527 - uid: 17450 components: - type: Transform - pos: -22.5,5.5 - parent: 16504 + pos: -25.5,2.5 + parent: 16527 - uid: 17451 components: - type: Transform - pos: -22.5,4.5 - parent: 16504 + pos: -24.5,8.5 + parent: 16527 - uid: 17452 components: - type: Transform - pos: -22.5,3.5 - parent: 16504 + pos: -24.5,7.5 + parent: 16527 - uid: 17453 components: - type: Transform - pos: -22.5,2.5 - parent: 16504 + pos: -24.5,6.5 + parent: 16527 - uid: 17454 components: - type: Transform - pos: -21.5,4.5 - parent: 16504 + pos: -24.5,5.5 + parent: 16527 - uid: 17455 components: - type: Transform - pos: -21.5,3.5 - parent: 16504 + pos: -24.5,4.5 + parent: 16527 - uid: 17456 components: - type: Transform - pos: -21.5,2.5 - parent: 16504 + pos: -24.5,3.5 + parent: 16527 - uid: 17457 components: - type: Transform - pos: -20.5,4.5 - parent: 16504 + pos: -24.5,2.5 + parent: 16527 - uid: 17458 components: - type: Transform - pos: -20.5,3.5 - parent: 16504 + pos: -23.5,8.5 + parent: 16527 - uid: 17459 components: - type: Transform - pos: -20.5,2.5 - parent: 16504 + pos: -23.5,7.5 + parent: 16527 - uid: 17460 components: - type: Transform - pos: -19.5,4.5 - parent: 16504 + pos: -23.5,6.5 + parent: 16527 - uid: 17461 components: - type: Transform - pos: -19.5,3.5 - parent: 16504 + pos: -23.5,5.5 + parent: 16527 - uid: 17462 components: - type: Transform - pos: -19.5,2.5 - parent: 16504 + pos: -23.5,4.5 + parent: 16527 - uid: 17463 components: - type: Transform - pos: -24.5,1.5 - parent: 16504 + pos: -23.5,3.5 + parent: 16527 - uid: 17464 components: - type: Transform - pos: -24.5,0.5 - parent: 16504 + pos: -23.5,2.5 + parent: 16527 - uid: 17465 components: - type: Transform - pos: -24.5,-0.5 - parent: 16504 + pos: -22.5,8.5 + parent: 16527 - uid: 17466 components: - type: Transform - pos: -24.5,-1.5 - parent: 16504 + pos: -22.5,7.5 + parent: 16527 - uid: 17467 components: - type: Transform - pos: -23.5,1.5 - parent: 16504 + pos: -22.5,6.5 + parent: 16527 - uid: 17468 components: - type: Transform - pos: -23.5,0.5 - parent: 16504 + pos: -22.5,5.5 + parent: 16527 - uid: 17469 components: - type: Transform - pos: -23.5,-0.5 - parent: 16504 + pos: -37.5,22.5 + parent: 16527 - uid: 17470 components: - type: Transform - pos: -23.5,-1.5 - parent: 16504 + pos: -37.5,24.5 + parent: 16527 - uid: 17471 components: - type: Transform - pos: -22.5,1.5 - parent: 16504 + pos: -24.5,1.5 + parent: 16527 - uid: 17472 components: - type: Transform - pos: -22.5,0.5 - parent: 16504 + pos: -24.5,0.5 + parent: 16527 - uid: 17473 components: - type: Transform - pos: -22.5,-0.5 - parent: 16504 + pos: -24.5,-0.5 + parent: 16527 - uid: 17474 components: - type: Transform - pos: -22.5,-1.5 - parent: 16504 + pos: -24.5,-1.5 + parent: 16527 - uid: 17475 components: - type: Transform - pos: -21.5,1.5 - parent: 16504 + pos: -23.5,1.5 + parent: 16527 - uid: 17476 components: - type: Transform - pos: -21.5,0.5 - parent: 16504 + pos: -23.5,0.5 + parent: 16527 - uid: 17477 components: - type: Transform - pos: -21.5,-0.5 - parent: 16504 + pos: -23.5,-0.5 + parent: 16527 - uid: 17478 components: - type: Transform - pos: -21.5,-1.5 - parent: 16504 + pos: -23.5,-1.5 + parent: 16527 - uid: 17479 components: - type: Transform - pos: -20.5,1.5 - parent: 16504 + pos: -21.5,43.5 + parent: 16527 - uid: 17480 components: - type: Transform - pos: -20.5,0.5 - parent: 16504 + pos: -19.5,43.5 + parent: 16527 - uid: 17481 components: - type: Transform - pos: -20.5,-0.5 - parent: 16504 + pos: -17.5,0.5 + parent: 16527 - uid: 17482 components: - type: Transform - pos: -20.5,-1.5 - parent: 16504 + pos: -17.5,-0.5 + parent: 16527 - uid: 17483 components: - type: Transform - pos: -19.5,1.5 - parent: 16504 + pos: -16.5,0.5 + parent: 16527 - uid: 17484 components: - type: Transform - pos: -19.5,0.5 - parent: 16504 + pos: -16.5,-0.5 + parent: 16527 - uid: 17485 components: - type: Transform - pos: -19.5,-0.5 - parent: 16504 + pos: -16.5,-1.5 + parent: 16527 - uid: 17486 components: - type: Transform - pos: -19.5,-1.5 - parent: 16504 + pos: -15.5,-2.5 + parent: 16527 - uid: 17487 components: - type: Transform - pos: -18.5,0.5 - parent: 16504 + pos: -22.5,-3.5 + parent: 16527 - uid: 17488 components: - type: Transform - pos: -18.5,-0.5 - parent: 16504 + pos: -21.5,-4.5 + parent: 16527 - uid: 17489 components: - type: Transform - pos: -18.5,-1.5 - parent: 16504 + pos: -21.5,-5.5 + parent: 16527 - uid: 17490 components: - type: Transform - pos: -17.5,0.5 - parent: 16504 + pos: 13.5,45.5 + parent: 16527 - uid: 17491 components: - type: Transform - pos: -17.5,-0.5 - parent: 16504 + pos: -14.5,-3.5 + parent: 16527 - uid: 17492 components: - type: Transform - pos: -17.5,-1.5 - parent: 16504 + pos: -14.5,-4.5 + parent: 16527 - uid: 17493 components: - type: Transform - pos: -16.5,0.5 - parent: 16504 + pos: -20.5,-6.5 + parent: 16527 - uid: 17494 components: - type: Transform - pos: -16.5,-0.5 - parent: 16504 + pos: -20.5,-7.5 + parent: 16527 - uid: 17495 components: - type: Transform - pos: -16.5,-1.5 - parent: 16504 + pos: -19.5,-7.5 + parent: 16527 - uid: 17496 components: - type: Transform - pos: -15.5,-2.5 - parent: 16504 + pos: -19.5,-8.5 + parent: 16527 - uid: 17497 components: - type: Transform - pos: -16.5,-2.5 - parent: 16504 + pos: -19.5,-9.5 + parent: 16527 - uid: 17498 components: - type: Transform - pos: -17.5,-2.5 - parent: 16504 + pos: -18.5,-9.5 + parent: 16527 - uid: 17499 components: - type: Transform - pos: -18.5,-2.5 - parent: 16504 + pos: -34.5,23.5 + parent: 16527 - uid: 17500 components: - type: Transform - pos: -19.5,-2.5 - parent: 16504 + pos: -34.5,22.5 + parent: 16527 - uid: 17501 components: - type: Transform - pos: -20.5,-2.5 - parent: 16504 + pos: -34.5,21.5 + parent: 16527 - uid: 17502 components: - type: Transform - pos: -21.5,-2.5 - parent: 16504 + pos: -33.5,20.5 + parent: 16527 - uid: 17503 components: - type: Transform - pos: -22.5,-2.5 - parent: 16504 + pos: -33.5,19.5 + parent: 16527 - uid: 17504 components: - type: Transform - pos: -22.5,-3.5 - parent: 16504 + pos: -33.5,18.5 + parent: 16527 - uid: 17505 components: - type: Transform - pos: -21.5,-3.5 - parent: 16504 + pos: -33.5,17.5 + parent: 16527 - uid: 17506 components: - type: Transform - pos: -21.5,-4.5 - parent: 16504 + pos: -33.5,16.5 + parent: 16527 - uid: 17507 components: - type: Transform - pos: -21.5,-5.5 - parent: 16504 + pos: -17.5,44.5 + parent: 16527 - uid: 17508 components: - type: Transform - pos: -20.5,-3.5 - parent: 16504 + pos: -36.5,23.5 + parent: 16527 - uid: 17509 components: - type: Transform - pos: -20.5,-4.5 - parent: 16504 + pos: -21.5,44.5 + parent: 16527 - uid: 17510 components: - type: Transform - pos: -20.5,-5.5 - parent: 16504 + pos: -20.5,44.5 + parent: 16527 - uid: 17511 components: - type: Transform - pos: -19.5,-3.5 - parent: 16504 + pos: -19.5,44.5 + parent: 16527 - uid: 17512 components: - type: Transform - pos: -19.5,-4.5 - parent: 16504 + pos: -35.5,21.5 + parent: 16527 - uid: 17513 components: - type: Transform - pos: -19.5,-5.5 - parent: 16504 + pos: 10.5,45.5 + parent: 16527 - uid: 17514 components: - type: Transform - pos: -18.5,-3.5 - parent: 16504 + pos: 11.5,45.5 + parent: 16527 - uid: 17515 components: - type: Transform - pos: -18.5,-4.5 - parent: 16504 + pos: 11.5,44.5 + parent: 16527 - uid: 17516 components: - type: Transform - pos: -18.5,-5.5 - parent: 16504 + pos: 12.5,45.5 + parent: 16527 - uid: 17517 components: - type: Transform - pos: -17.5,-3.5 - parent: 16504 + pos: 12.5,44.5 + parent: 16527 - uid: 17518 components: - type: Transform - pos: -17.5,-4.5 - parent: 16504 + pos: 13.5,44.5 + parent: 16527 - uid: 17519 components: - type: Transform - pos: -17.5,-5.5 - parent: 16504 + pos: 14.5,45.5 + parent: 16527 - uid: 17520 components: - type: Transform - pos: -16.5,-3.5 - parent: 16504 + pos: 14.5,44.5 + parent: 16527 - uid: 17521 components: - type: Transform - pos: -16.5,-4.5 - parent: 16504 + pos: 15.5,45.5 + parent: 16527 - uid: 17522 components: - type: Transform - pos: -16.5,-5.5 - parent: 16504 + pos: 15.5,44.5 + parent: 16527 - uid: 17523 components: - type: Transform - pos: -15.5,-3.5 - parent: 16504 + pos: -25.5,68.5 + parent: 16527 - uid: 17524 components: - type: Transform - pos: -15.5,-4.5 - parent: 16504 + pos: 43.5,59.5 + parent: 16527 - uid: 17525 components: - type: Transform - pos: -15.5,-5.5 - parent: 16504 + pos: 15.5,71.5 + parent: 16527 - uid: 17526 components: - type: Transform - pos: -14.5,-3.5 - parent: 16504 + pos: -33.5,25.5 + parent: 16527 - uid: 17527 components: - type: Transform - pos: -14.5,-4.5 - parent: 16504 + pos: -34.5,25.5 + parent: 16527 - uid: 17528 components: - type: Transform - pos: -14.5,-5.5 - parent: 16504 + pos: -35.5,25.5 + parent: 16527 - uid: 17529 components: - type: Transform - pos: -20.5,-6.5 - parent: 16504 + pos: -36.5,25.5 + parent: 16527 - uid: 17530 components: - type: Transform - pos: -20.5,-7.5 - parent: 16504 + pos: -37.5,25.5 + parent: 16527 - uid: 17531 components: - type: Transform - pos: -19.5,-6.5 - parent: 16504 + pos: -36.5,24.5 + parent: 16527 - uid: 17532 components: - type: Transform - pos: -19.5,-7.5 - parent: 16504 + pos: -35.5,24.5 + parent: 16527 - uid: 17533 components: - type: Transform - pos: -18.5,-6.5 - parent: 16504 + pos: -34.5,24.5 + parent: 16527 - uid: 17534 components: - type: Transform - pos: -18.5,-7.5 - parent: 16504 + pos: -33.5,24.5 + parent: 16527 - uid: 17535 components: - type: Transform - pos: -17.5,-6.5 - parent: 16504 + pos: -32.5,24.5 + parent: 16527 - uid: 17536 components: - type: Transform - pos: -17.5,-7.5 - parent: 16504 + pos: 25.5,62.5 + parent: 16527 - uid: 17537 components: - type: Transform - pos: -16.5,-6.5 - parent: 16504 + pos: -32.5,10.5 + parent: 16527 - uid: 17538 components: - type: Transform - pos: -16.5,-7.5 - parent: 16504 + pos: -32.5,11.5 + parent: 16527 - uid: 17539 components: - type: Transform - pos: -15.5,-6.5 - parent: 16504 + pos: -32.5,12.5 + parent: 16527 - uid: 17540 components: - type: Transform - pos: -15.5,-7.5 - parent: 16504 + pos: -32.5,13.5 + parent: 16527 - uid: 17541 components: - type: Transform - pos: -14.5,-6.5 - parent: 16504 + pos: -33.5,12.5 + parent: 16527 - uid: 17542 components: - type: Transform - pos: -14.5,-7.5 - parent: 16504 + pos: -33.5,13.5 + parent: 16527 - uid: 17543 components: - type: Transform - pos: -19.5,-8.5 - parent: 16504 + pos: -33.5,14.5 + parent: 16527 - uid: 17544 components: - type: Transform - pos: -19.5,-9.5 - parent: 16504 + pos: -33.5,15.5 + parent: 16527 - uid: 17545 components: - type: Transform - pos: -18.5,-8.5 - parent: 16504 + pos: -34.5,15.5 + parent: 16527 - uid: 17546 components: - type: Transform - pos: -18.5,-9.5 - parent: 16504 + pos: -34.5,16.5 + parent: 16527 - uid: 17547 components: - type: Transform - pos: -17.5,-8.5 - parent: 16504 + pos: -35.5,15.5 + parent: 16527 - uid: 17548 components: - type: Transform - pos: -17.5,-9.5 - parent: 16504 + pos: -35.5,16.5 + parent: 16527 - uid: 17549 components: - type: Transform - pos: -16.5,-8.5 - parent: 16504 + pos: -35.5,17.5 + parent: 16527 - uid: 17550 components: - type: Transform - pos: -16.5,-9.5 - parent: 16504 + pos: -35.5,18.5 + parent: 16527 - uid: 17551 components: - type: Transform - pos: -15.5,-8.5 - parent: 16504 + pos: -36.5,16.5 + parent: 16527 - uid: 17552 components: - type: Transform - pos: -15.5,-9.5 - parent: 16504 + pos: -36.5,17.5 + parent: 16527 - uid: 17553 components: - type: Transform - pos: -14.5,-8.5 - parent: 16504 + pos: -36.5,18.5 + parent: 16527 - uid: 17554 components: - type: Transform - pos: -14.5,-9.5 - parent: 16504 + pos: -36.5,19.5 + parent: 16527 - uid: 17555 components: - type: Transform - pos: -33.5,19.5 - parent: 16504 + pos: -36.5,20.5 + parent: 16527 - uid: 17556 components: - type: Transform - pos: -33.5,18.5 - parent: 16504 + pos: -41.5,27.5 + parent: 16527 - uid: 17557 components: - type: Transform - pos: -33.5,17.5 - parent: 16504 + pos: -37.5,18.5 + parent: 16527 - uid: 17558 components: - type: Transform - pos: -33.5,16.5 - parent: 16504 + pos: -37.5,19.5 + parent: 16527 - uid: 17559 components: - type: Transform - pos: -21.5,44.5 - parent: 16504 + pos: -37.5,20.5 + parent: 16527 - uid: 17560 components: - type: Transform - pos: -20.5,44.5 - parent: 16504 + pos: -37.5,21.5 + parent: 16527 - uid: 17561 components: - type: Transform - pos: -19.5,44.5 - parent: 16504 + pos: -38.5,18.5 + parent: 16527 - uid: 17562 components: - type: Transform - pos: -20.5,45.5 - parent: 16504 + pos: -38.5,19.5 + parent: 16527 - uid: 17563 components: - type: Transform - pos: -19.5,45.5 - parent: 16504 + pos: -38.5,20.5 + parent: 16527 - uid: 17564 components: - type: Transform - pos: -18.5,45.5 - parent: 16504 + pos: -38.5,21.5 + parent: 16527 - uid: 17565 components: - type: Transform - pos: -17.5,45.5 - parent: 16504 + pos: -38.5,22.5 + parent: 16527 - uid: 17566 components: - type: Transform - pos: -18.5,46.5 - parent: 16504 + pos: -38.5,23.5 + parent: 16527 - uid: 17567 components: - type: Transform - pos: -17.5,46.5 - parent: 16504 + pos: -38.5,24.5 + parent: 16527 - uid: 17568 components: - type: Transform - pos: -16.5,46.5 - parent: 16504 + pos: -38.5,25.5 + parent: 16527 - uid: 17569 components: - type: Transform - pos: -15.5,46.5 - parent: 16504 + pos: -40.5,21.5 + parent: 16527 - uid: 17570 components: - type: Transform - pos: -16.5,47.5 - parent: 16504 + pos: -40.5,22.5 + parent: 16527 - uid: 17571 components: - type: Transform - pos: -15.5,47.5 - parent: 16504 + pos: -40.5,23.5 + parent: 16527 - uid: 17572 components: - type: Transform - pos: -14.5,47.5 - parent: 16504 + pos: -40.5,24.5 + parent: 16527 - uid: 17573 components: - type: Transform - pos: -13.5,47.5 - parent: 16504 + pos: -40.5,25.5 + parent: 16527 - uid: 17574 components: - type: Transform - pos: -12.5,47.5 - parent: 16504 + pos: -40.5,26.5 + parent: 16527 - uid: 17575 components: - type: Transform - pos: -11.5,47.5 - parent: 16504 + pos: -40.5,27.5 + parent: 16527 - uid: 17576 components: - type: Transform - pos: -10.5,47.5 - parent: 16504 + pos: -40.5,28.5 + parent: 16527 - uid: 17577 components: - type: Transform - pos: -9.5,47.5 - parent: 16504 + pos: -40.5,29.5 + parent: 16527 - uid: 17578 components: - type: Transform - pos: -8.5,47.5 - parent: 16504 - - uid: 22490 + pos: -40.5,30.5 + parent: 16527 + - uid: 17579 components: - type: Transform - pos: -34.5,14.5 - parent: 16504 - - uid: 22491 + pos: -40.5,31.5 + parent: 16527 + - uid: 17580 components: - type: Transform - pos: -34.5,15.5 - parent: 16504 - - uid: 22492 + pos: -40.5,32.5 + parent: 16527 + - uid: 17581 components: - type: Transform - pos: -33.5,15.5 - parent: 16504 - - uid: 22493 + pos: -40.5,33.5 + parent: 16527 + - uid: 17582 components: - type: Transform - pos: -34.5,16.5 - parent: 16504 -- proto: AsteroidRockPlasma - entities: - - uid: 763 + pos: -40.5,34.5 + parent: 16527 + - uid: 17583 components: - type: Transform - pos: 61.5,71.5 - parent: 2 -- proto: AsteroidRockQuartz - entities: - - uid: 764 + pos: -40.5,35.5 + parent: 16527 + - uid: 17584 components: - type: Transform - pos: 96.5,13.5 - parent: 2 - - uid: 765 + pos: -40.5,36.5 + parent: 16527 + - uid: 17585 components: - type: Transform - pos: 59.5,74.5 - parent: 2 -- proto: AsteroidRockTin - entities: - - uid: 767 + pos: -39.5,21.5 + parent: 16527 + - uid: 17586 components: - type: Transform - pos: 71.5,1.5 - parent: 2 - - uid: 768 + pos: -39.5,22.5 + parent: 16527 + - uid: 17587 components: - type: Transform - pos: 60.5,73.5 - parent: 2 - - uid: 769 + pos: -39.5,23.5 + parent: 16527 + - uid: 17588 components: - type: Transform - pos: 61.5,73.5 - parent: 2 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 770 + pos: -39.5,24.5 + parent: 16527 + - uid: 17589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,83.5 - parent: 2 - - uid: 771 + pos: -39.5,25.5 + parent: 16527 + - uid: 17590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 97.5,17.5 - parent: 2 - - uid: 772 + pos: -39.5,26.5 + parent: 16527 + - uid: 17591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 97.5,16.5 - parent: 2 - - uid: 773 + pos: -39.5,27.5 + parent: 16527 + - uid: 17592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,78.5 - parent: 2 - - uid: 774 + pos: -39.5,28.5 + parent: 16527 + - uid: 17593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,70.5 - parent: 2 - - uid: 775 + pos: -39.5,29.5 + parent: 16527 + - uid: 17594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,72.5 - parent: 2 - - uid: 776 + pos: -39.5,30.5 + parent: 16527 + - uid: 17595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,78.5 - parent: 2 - - uid: 777 + pos: -39.5,31.5 + parent: 16527 + - uid: 17596 components: - type: Transform - pos: 57.5,75.5 - parent: 2 - - uid: 778 + pos: -39.5,32.5 + parent: 16527 + - uid: 17597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,77.5 - parent: 2 - - uid: 779 + pos: -39.5,33.5 + parent: 16527 + - uid: 17598 components: - type: Transform - pos: 46.5,97.5 - parent: 2 - - uid: 780 + pos: -39.5,34.5 + parent: 16527 + - uid: 17599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,69.5 - parent: 2 - - uid: 782 + pos: -39.5,35.5 + parent: 16527 + - uid: 17600 components: - type: Transform - pos: 22.5,-24.5 - parent: 2 - - uid: 783 + pos: -39.5,36.5 + parent: 16527 + - uid: 17601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,69.5 - parent: 2 - - uid: 784 + pos: -38.5,26.5 + parent: 16527 + - uid: 17602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,63.5 - parent: 2 - - uid: 785 + pos: -38.5,27.5 + parent: 16527 + - uid: 17603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,17.5 - parent: 2 - - uid: 786 + pos: -38.5,28.5 + parent: 16527 + - uid: 17604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,57.5 - parent: 2 - - uid: 787 + pos: -38.5,29.5 + parent: 16527 + - uid: 17605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,80.5 - parent: 2 - - uid: 788 + pos: -38.5,30.5 + parent: 16527 + - uid: 17606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 2 - - uid: 789 + pos: -38.5,31.5 + parent: 16527 + - uid: 17607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,6.5 - parent: 2 - - uid: 790 + pos: -38.5,32.5 + parent: 16527 + - uid: 17608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,8.5 - parent: 2 - - uid: 791 + pos: -38.5,33.5 + parent: 16527 + - uid: 17609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 2 - - uid: 792 + pos: -38.5,34.5 + parent: 16527 + - uid: 17610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 2 - - uid: 793 + pos: -38.5,35.5 + parent: 16527 + - uid: 17611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,16.5 - parent: 2 - - uid: 3139 + pos: -38.5,36.5 + parent: 16527 + - uid: 17612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-38.5 - parent: 2 - - uid: 3632 + pos: -41.5,28.5 + parent: 16527 + - uid: 17613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-27.5 - parent: 2 - - uid: 5096 + pos: -41.5,29.5 + parent: 16527 + - uid: 17614 components: - type: Transform - pos: 22.5,-32.5 - parent: 2 - - uid: 9717 + pos: -41.5,30.5 + parent: 16527 + - uid: 17615 components: - type: Transform - pos: 1.5,31.5 - parent: 16504 - - uid: 10549 + pos: -42.5,27.5 + parent: 16527 + - uid: 17616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,11.5 - parent: 16504 - - uid: 10551 + pos: -42.5,28.5 + parent: 16527 + - uid: 17617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,10.5 - parent: 16504 - - uid: 11511 + pos: -42.5,29.5 + parent: 16527 + - uid: 17618 components: - type: Transform - pos: 0.5,31.5 - parent: 16504 - - uid: 11749 + pos: -42.5,30.5 + parent: 16527 + - uid: 17619 components: - type: Transform - pos: -0.5,31.5 - parent: 16504 - - uid: 12098 + pos: -41.5,25.5 + parent: 16527 + - uid: 17620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 16504 - - uid: 12582 + pos: -41.5,26.5 + parent: 16527 + - uid: 17621 components: - type: Transform - pos: 0.5,-8.5 - parent: 16504 - - uid: 12913 + pos: -41.5,31.5 + parent: 16527 + - uid: 17622 components: - type: Transform - pos: 0.5,-4.5 - parent: 16504 - - uid: 13576 + pos: -41.5,32.5 + parent: 16527 + - uid: 17623 components: - type: Transform - pos: 10.5,51.5 - parent: 2 - - uid: 21336 + pos: -41.5,33.5 + parent: 16527 + - uid: 17624 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,39.5 - parent: 2 - - uid: 21552 + pos: -41.5,34.5 + parent: 16527 + - uid: 17625 components: - type: Transform - pos: 33.5,56.5 - parent: 2 - - uid: 21553 + pos: -41.5,35.5 + parent: 16527 + - uid: 17626 components: - type: Transform - pos: 31.5,59.5 - parent: 2 - - uid: 22111 + pos: -41.5,36.5 + parent: 16527 + - uid: 17627 components: - type: Transform - pos: 6.5,7.5 - parent: 16504 -- proto: AtmosDeviceFanTiny - entities: - - uid: 795 + pos: -41.5,37.5 + parent: 16527 + - uid: 17628 components: - type: Transform - pos: 86.5,41.5 - parent: 2 - - uid: 798 + pos: -41.5,38.5 + parent: 16527 + - uid: 17629 components: - type: Transform - pos: 39.5,-14.5 - parent: 2 - - uid: 799 + pos: -41.5,39.5 + parent: 16527 + - uid: 17630 components: - type: Transform - pos: 86.5,48.5 - parent: 2 - - uid: 800 + pos: -41.5,40.5 + parent: 16527 + - uid: 17631 components: - type: Transform - pos: 68.5,0.5 - parent: 2 - - uid: 17583 + pos: -41.5,41.5 + parent: 16527 + - uid: 17632 components: - type: Transform - pos: -21.5,29.5 - parent: 16504 -- proto: AtmosFixBlockerMarker - entities: - - uid: 801 + pos: -43.5,35.5 + parent: 16527 + - uid: 17633 components: - type: Transform - pos: 28.5,83.5 - parent: 2 - - uid: 802 + pos: -43.5,36.5 + parent: 16527 + - uid: 17634 components: - type: Transform - pos: 27.5,83.5 - parent: 2 - - uid: 803 + pos: -43.5,37.5 + parent: 16527 + - uid: 17635 components: - type: Transform - pos: 26.5,83.5 - parent: 2 - - uid: 804 + pos: -43.5,38.5 + parent: 16527 + - uid: 17636 components: - type: Transform - pos: 28.5,79.5 - parent: 2 - - uid: 805 + pos: -43.5,39.5 + parent: 16527 + - uid: 17637 components: - type: Transform - pos: 27.5,79.5 - parent: 2 - - uid: 806 + pos: -43.5,40.5 + parent: 16527 + - uid: 17638 components: - type: Transform - pos: 26.5,79.5 - parent: 2 - - uid: 807 + pos: -51.5,40.5 + parent: 16527 + - uid: 17639 components: - type: Transform - pos: 28.5,77.5 - parent: 2 - - uid: 808 + pos: -42.5,40.5 + parent: 16527 + - uid: 17640 components: - type: Transform - pos: 27.5,77.5 - parent: 2 - - uid: 809 + pos: -42.5,39.5 + parent: 16527 + - uid: 17641 components: - type: Transform - pos: 26.5,77.5 - parent: 2 - - uid: 810 + pos: -42.5,38.5 + parent: 16527 + - uid: 17642 components: - type: Transform - pos: 25.5,77.5 - parent: 2 - - uid: 811 + pos: -42.5,37.5 + parent: 16527 + - uid: 17643 components: - type: Transform - pos: 24.5,77.5 - parent: 2 - - uid: 812 + pos: -42.5,36.5 + parent: 16527 + - uid: 17644 components: - type: Transform - pos: 23.5,77.5 - parent: 2 - - uid: 813 + pos: -42.5,35.5 + parent: 16527 + - uid: 17645 components: - type: Transform - pos: 24.5,79.5 - parent: 2 - - uid: 814 + pos: -42.5,34.5 + parent: 16527 + - uid: 17646 components: - type: Transform - pos: 23.5,79.5 - parent: 2 - - uid: 815 + pos: -49.5,34.5 + parent: 16527 + - uid: 17647 components: - type: Transform - pos: 25.5,79.5 - parent: 2 - - uid: 816 + pos: -49.5,35.5 + parent: 16527 + - uid: 17648 components: - type: Transform - pos: 25.5,83.5 - parent: 2 - - uid: 817 + pos: -49.5,36.5 + parent: 16527 + - uid: 17649 components: - type: Transform - pos: 24.5,83.5 - parent: 2 - - uid: 818 + pos: -49.5,37.5 + parent: 16527 + - uid: 17650 components: - type: Transform - pos: 23.5,83.5 - parent: 2 -- proto: AtmosFixFreezerMarker - entities: - - uid: 819 + pos: -49.5,38.5 + parent: 16527 + - uid: 17651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,19.5 - parent: 2 - - uid: 820 + pos: -49.5,39.5 + parent: 16527 + - uid: 17652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,18.5 - parent: 2 - - uid: 821 + pos: -49.5,40.5 + parent: 16527 + - uid: 17653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,17.5 - parent: 2 - - uid: 822 + pos: -48.5,34.5 + parent: 16527 + - uid: 17654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,16.5 - parent: 2 - - uid: 823 + pos: -48.5,35.5 + parent: 16527 + - uid: 17655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,15.5 - parent: 2 - - uid: 824 + pos: -48.5,36.5 + parent: 16527 + - uid: 17656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,19.5 - parent: 2 - - uid: 825 + pos: -48.5,37.5 + parent: 16527 + - uid: 17657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,18.5 - parent: 2 - - uid: 826 + pos: -48.5,38.5 + parent: 16527 + - uid: 17658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,17.5 - parent: 2 - - uid: 827 + pos: -48.5,39.5 + parent: 16527 + - uid: 17659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,16.5 - parent: 2 - - uid: 828 + pos: -48.5,40.5 + parent: 16527 + - uid: 17660 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,15.5 - parent: 2 - - uid: 829 + pos: -47.5,34.5 + parent: 16527 + - uid: 17661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,19.5 - parent: 2 - - uid: 830 + pos: -47.5,35.5 + parent: 16527 + - uid: 17662 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,18.5 - parent: 2 - - uid: 831 + pos: -47.5,36.5 + parent: 16527 + - uid: 17663 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,17.5 - parent: 2 - - uid: 832 + pos: -47.5,37.5 + parent: 16527 + - uid: 17664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,16.5 - parent: 2 - - uid: 833 + pos: -47.5,38.5 + parent: 16527 + - uid: 17665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,15.5 - parent: 2 - - uid: 834 + pos: -47.5,39.5 + parent: 16527 + - uid: 17666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,19.5 - parent: 2 - - uid: 835 + pos: -47.5,40.5 + parent: 16527 + - uid: 17667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,18.5 - parent: 2 - - uid: 836 + pos: -46.5,40.5 + parent: 16527 + - uid: 17668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,16.5 - parent: 2 - - uid: 837 + pos: -46.5,39.5 + parent: 16527 + - uid: 17669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,15.5 - parent: 2 - - uid: 838 + pos: -46.5,38.5 + parent: 16527 + - uid: 17670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,17.5 - parent: 2 - - uid: 839 + pos: -46.5,37.5 + parent: 16527 + - uid: 17671 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,18.5 - parent: 2 - - uid: 840 + pos: -46.5,36.5 + parent: 16527 + - uid: 17672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,17.5 - parent: 2 - - uid: 841 + pos: -46.5,35.5 + parent: 16527 + - uid: 17673 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,16.5 - parent: 2 - - uid: 842 + pos: -63.5,42.5 + parent: 16527 + - uid: 17674 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,18.5 - parent: 2 - - uid: 843 + pos: -61.5,40.5 + parent: 16527 + - uid: 17675 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,17.5 - parent: 2 - - uid: 844 + pos: -45.5,36.5 + parent: 16527 + - uid: 17676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,16.5 - parent: 2 - - uid: 845 + pos: -45.5,37.5 + parent: 16527 + - uid: 17677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,18.5 - parent: 2 - - uid: 846 + pos: -45.5,38.5 + parent: 16527 + - uid: 17678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,17.5 - parent: 2 - - uid: 847 + pos: -45.5,39.5 + parent: 16527 + - uid: 17679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,16.5 - parent: 2 - - uid: 848 + pos: -45.5,40.5 + parent: 16527 + - uid: 17680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,18.5 - parent: 2 - - uid: 849 + pos: -44.5,36.5 + parent: 16527 + - uid: 17681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,17.5 - parent: 2 - - uid: 850 + pos: -44.5,37.5 + parent: 16527 + - uid: 17682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,16.5 - parent: 2 - - uid: 851 + pos: -44.5,38.5 + parent: 16527 + - uid: 17683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,18.5 - parent: 2 - - uid: 852 + pos: -44.5,39.5 + parent: 16527 + - uid: 17684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,17.5 - parent: 2 - - uid: 853 + pos: -44.5,40.5 + parent: 16527 + - uid: 17685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,16.5 - parent: 2 - - uid: 854 + pos: -50.5,35.5 + parent: 16527 + - uid: 17686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,15.5 - parent: 2 - - uid: 855 + pos: -50.5,36.5 + parent: 16527 + - uid: 17687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,15.5 - parent: 2 - - uid: 856 + pos: -50.5,37.5 + parent: 16527 + - uid: 17688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,15.5 - parent: 2 - - uid: 857 + pos: -50.5,38.5 + parent: 16527 + - uid: 17689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,19.5 - parent: 2 - - uid: 858 + pos: -50.5,39.5 + parent: 16527 + - uid: 17690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,19.5 - parent: 2 - - uid: 859 + pos: -50.5,40.5 + parent: 16527 + - uid: 17691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,19.5 - parent: 2 - - uid: 2300 + pos: -51.5,39.5 + parent: 16527 + - uid: 17692 components: - type: Transform - pos: 29.5,57.5 - parent: 2 - - uid: 2301 + pos: -51.5,38.5 + parent: 16527 + - uid: 17693 components: - type: Transform - pos: 29.5,58.5 - parent: 2 - - uid: 2312 + pos: -51.5,37.5 + parent: 16527 + - uid: 17694 components: - type: Transform - pos: 30.5,58.5 - parent: 2 - - uid: 4976 + pos: -51.5,36.5 + parent: 16527 + - uid: 17695 components: - type: Transform - pos: 31.5,58.5 - parent: 2 - - uid: 6629 + pos: -52.5,40.5 + parent: 16527 + - uid: 17696 components: - type: Transform - pos: 32.5,58.5 - parent: 2 - - uid: 6724 + pos: -52.5,39.5 + parent: 16527 + - uid: 17697 components: - type: Transform - pos: 31.5,57.5 - parent: 2 - - uid: 9333 + pos: -52.5,38.5 + parent: 16527 + - uid: 17698 components: - type: Transform - pos: 33.5,58.5 - parent: 2 - - uid: 9334 + pos: -52.5,37.5 + parent: 16527 + - uid: 17699 components: - type: Transform - pos: 30.5,57.5 - parent: 2 - - uid: 9341 + pos: -52.5,36.5 + parent: 16527 + - uid: 17700 components: - type: Transform - pos: 28.5,58.5 - parent: 2 - - uid: 9360 + pos: -53.5,40.5 + parent: 16527 + - uid: 17701 components: - type: Transform - pos: 32.5,57.5 - parent: 2 - - uid: 9361 + pos: -53.5,39.5 + parent: 16527 + - uid: 17702 components: - type: Transform - pos: 33.5,57.5 - parent: 2 - - uid: 9696 + pos: -53.5,38.5 + parent: 16527 + - uid: 17703 components: - type: Transform - pos: 28.5,57.5 - parent: 2 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 860 + pos: -53.5,37.5 + parent: 16527 + - uid: 17704 components: - type: Transform - pos: 28.5,73.5 - parent: 2 - - uid: 861 + pos: -53.5,36.5 + parent: 16527 + - uid: 17705 components: - type: Transform - pos: 27.5,73.5 - parent: 2 - - uid: 862 + pos: -54.5,40.5 + parent: 16527 + - uid: 17706 components: - type: Transform - pos: 26.5,73.5 - parent: 2 - - uid: 863 + pos: -54.5,39.5 + parent: 16527 + - uid: 17707 components: - type: Transform - pos: 25.5,73.5 - parent: 2 - - uid: 864 + pos: -54.5,38.5 + parent: 16527 + - uid: 17708 components: - type: Transform - pos: 24.5,73.5 - parent: 2 - - uid: 865 + pos: -54.5,37.5 + parent: 16527 + - uid: 17709 components: - type: Transform - pos: 23.5,73.5 - parent: 2 -- proto: AtmosFixOxygenMarker - entities: - - uid: 866 + pos: -54.5,36.5 + parent: 16527 + - uid: 17710 components: - type: Transform - pos: 28.5,75.5 - parent: 2 - - uid: 867 + pos: -55.5,40.5 + parent: 16527 + - uid: 17711 components: - type: Transform - pos: 27.5,75.5 - parent: 2 - - uid: 868 + pos: -55.5,39.5 + parent: 16527 + - uid: 17712 components: - type: Transform - pos: 26.5,75.5 - parent: 2 - - uid: 869 + pos: -55.5,38.5 + parent: 16527 + - uid: 17713 components: - type: Transform - pos: 25.5,75.5 - parent: 2 - - uid: 870 + pos: -55.5,37.5 + parent: 16527 + - uid: 17714 components: - type: Transform - pos: 24.5,75.5 - parent: 2 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 871 + pos: -55.5,36.5 + parent: 16527 + - uid: 17715 components: - type: Transform - pos: 28.5,81.5 - parent: 2 - - uid: 872 + pos: -56.5,40.5 + parent: 16527 + - uid: 17716 components: - type: Transform - pos: 27.5,81.5 - parent: 2 - - uid: 873 + pos: -56.5,39.5 + parent: 16527 + - uid: 17717 components: - type: Transform - pos: 26.5,81.5 - parent: 2 - - uid: 874 + pos: -56.5,38.5 + parent: 16527 + - uid: 17718 components: - type: Transform - pos: 25.5,81.5 - parent: 2 - - uid: 875 + pos: -56.5,37.5 + parent: 16527 + - uid: 17719 components: - type: Transform - pos: 24.5,81.5 - parent: 2 - - uid: 876 + pos: -56.5,36.5 + parent: 16527 + - uid: 17720 components: - type: Transform - pos: 23.5,81.5 - parent: 2 -- proto: AtmosFixVoxMarker - entities: - - uid: 2355 + pos: -57.5,40.5 + parent: 16527 + - uid: 17721 components: - type: Transform - pos: 16.5,40.5 - parent: 2 - - uid: 3626 + pos: -57.5,39.5 + parent: 16527 + - uid: 17722 components: - type: Transform - pos: 14.5,41.5 - parent: 2 - - uid: 3627 + pos: -57.5,38.5 + parent: 16527 + - uid: 17723 components: - type: Transform - pos: 14.5,40.5 - parent: 2 - - uid: 12936 + pos: -57.5,37.5 + parent: 16527 + - uid: 17724 components: - type: Transform - pos: 15.5,41.5 - parent: 2 - - uid: 13859 + pos: -57.5,36.5 + parent: 16527 + - uid: 17725 components: - type: Transform - pos: 16.5,41.5 - parent: 2 - - uid: 15727 + pos: -58.5,40.5 + parent: 16527 + - uid: 17726 components: - type: Transform - pos: 15.5,40.5 - parent: 2 - - uid: 21371 + pos: -58.5,39.5 + parent: 16527 + - uid: 17727 components: - type: Transform - pos: 17.5,41.5 - parent: 2 - - uid: 21372 + pos: -58.5,38.5 + parent: 16527 + - uid: 17728 components: - type: Transform - pos: 17.5,40.5 - parent: 2 -- proto: AtmosPDA - entities: - - uid: 44 + pos: -58.5,37.5 + parent: 16527 + - uid: 17729 components: - type: Transform - parent: 41 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Autolathe - entities: - - uid: 883 + pos: -58.5,36.5 + parent: 16527 + - uid: 17730 components: - type: Transform - pos: 6.5,10.5 - parent: 2 - - uid: 884 + pos: -59.5,40.5 + parent: 16527 + - uid: 17731 components: - type: Transform - pos: 23.5,7.5 - parent: 2 - - uid: 5112 + pos: -59.5,39.5 + parent: 16527 + - uid: 17732 components: - type: Transform - pos: 45.5,64.5 - parent: 2 -- proto: AutolatheMachineCircuitboard - entities: - - uid: 886 + pos: -59.5,38.5 + parent: 16527 + - uid: 17733 components: - type: Transform - pos: 62.420105,47.617664 - parent: 2 -- proto: BackgammonBoard - entities: - - uid: 887 + pos: -59.5,37.5 + parent: 16527 + - uid: 17734 components: - type: Transform - pos: 12.405052,-1.1720754 - parent: 2 -- proto: BalloonCorgi - entities: - - uid: 888 + pos: -59.5,36.5 + parent: 16527 + - uid: 17735 components: - type: Transform - pos: 67.5,33.5 - parent: 2 -- proto: BalloonSyn - entities: - - uid: 17596 + pos: -57.5,35.5 + parent: 16527 + - uid: 17736 components: - type: Transform - pos: 5.031894,9.086445 - parent: 16504 -- proto: BananaSeeds - entities: - - uid: 889 + pos: -56.5,35.5 + parent: 16527 + - uid: 17737 components: - type: Transform - pos: 9.402182,-11.561712 - parent: 2 - - uid: 890 + pos: -55.5,35.5 + parent: 16527 + - uid: 17738 components: - type: Transform - pos: 9.433432,-12.561712 - parent: 2 -- proto: BannerCargo - entities: - - uid: 891 + pos: -54.5,35.5 + parent: 16527 + - uid: 17739 components: - type: Transform - pos: 8.5,8.5 - parent: 2 -- proto: BannerMedical - entities: - - uid: 892 + pos: -60.5,38.5 + parent: 16527 + - uid: 17740 components: - type: Transform - pos: 35.5,5.5 - parent: 2 -- proto: BannerNanotrasen - entities: - - uid: 893 + pos: -60.5,39.5 + parent: 16527 + - uid: 17741 components: - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 894 + pos: -60.5,40.5 + parent: 16527 + - uid: 17742 components: - type: Transform - pos: 33.5,26.5 - parent: 2 -- proto: BannerSecurity - entities: - - uid: 895 + pos: -60.5,41.5 + parent: 16527 + - uid: 17743 components: - type: Transform - pos: 39.5,27.5 - parent: 2 - - uid: 896 + pos: -60.5,42.5 + parent: 16527 + - uid: 17744 components: - type: Transform - pos: 75.5,8.5 - parent: 2 - - uid: 897 + pos: -60.5,43.5 + parent: 16527 + - uid: 17745 components: - type: Transform - pos: 91.5,15.5 - parent: 2 - - uid: 9352 + pos: -60.5,44.5 + parent: 16527 + - uid: 17746 components: - type: Transform - pos: 43.5,27.5 - parent: 2 -- proto: BannerSyndicate - entities: - - uid: 17597 + pos: -60.5,45.5 + parent: 16527 + - uid: 17747 components: - type: Transform - pos: -3.5,-1.5 - parent: 16504 - - uid: 17598 + pos: -59.5,41.5 + parent: 16527 + - uid: 17748 components: - type: Transform - pos: 4.5,-1.5 - parent: 16504 - - uid: 17599 + pos: -59.5,42.5 + parent: 16527 + - uid: 17749 components: - type: Transform - pos: -1.5,12.5 - parent: 16504 - - uid: 17600 + pos: -59.5,43.5 + parent: 16527 + - uid: 17750 components: - type: Transform - pos: 2.5,12.5 - parent: 16504 - - uid: 17601 + pos: -59.5,44.5 + parent: 16527 + - uid: 17751 components: - type: Transform - pos: 32.5,20.5 - parent: 16504 - - uid: 17602 + pos: -59.5,45.5 + parent: 16527 + - uid: 17752 components: - type: Transform - pos: 32.5,12.5 - parent: 16504 - - uid: 17603 + pos: -58.5,41.5 + parent: 16527 + - uid: 17753 components: - type: Transform - pos: 25.5,20.5 - parent: 16504 - - uid: 17604 + pos: -58.5,42.5 + parent: 16527 + - uid: 17754 components: - type: Transform - pos: 25.5,12.5 - parent: 16504 - - uid: 17605 + pos: -58.5,43.5 + parent: 16527 + - uid: 17755 components: - type: Transform - pos: -6.5,14.5 - parent: 16504 -- proto: BarberScissors - entities: - - uid: 17606 + pos: -58.5,44.5 + parent: 16527 + - uid: 17756 components: - type: Transform - pos: 11.204256,24.344208 - parent: 16504 -- proto: Barricade - entities: - - uid: 899 + pos: -58.5,45.5 + parent: 16527 + - uid: 17757 components: - type: Transform - pos: 12.5,-14.5 - parent: 2 - - uid: 900 + pos: -57.5,41.5 + parent: 16527 + - uid: 17758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,66.5 - parent: 2 - - uid: 901 + pos: -57.5,42.5 + parent: 16527 + - uid: 17759 components: - type: Transform - pos: 63.5,41.5 - parent: 2 - - uid: 902 + pos: -57.5,43.5 + parent: 16527 + - uid: 17760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,38.5 - parent: 2 - - uid: 903 + pos: -57.5,44.5 + parent: 16527 + - uid: 17761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,3.5 - parent: 2 - - uid: 904 + pos: -57.5,45.5 + parent: 16527 + - uid: 17762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-0.5 - parent: 2 - - uid: 905 + pos: -61.5,41.5 + parent: 16527 + - uid: 17763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-1.5 - parent: 2 - - uid: 906 + pos: -61.5,42.5 + parent: 16527 + - uid: 17764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,10.5 - parent: 2 - - uid: 907 + pos: -61.5,43.5 + parent: 16527 + - uid: 17765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,70.5 - parent: 2 - - uid: 908 + pos: -61.5,44.5 + parent: 16527 + - uid: 17766 components: - type: Transform - pos: 59.5,0.5 - parent: 2 - - uid: 17607 + pos: -61.5,45.5 + parent: 16527 + - uid: 17767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,10.5 - parent: 16504 - - uid: 17608 + pos: -62.5,41.5 + parent: 16527 + - uid: 17768 components: - type: Transform - pos: 19.5,-6.5 - parent: 16504 - - uid: 17609 + pos: -62.5,42.5 + parent: 16527 + - uid: 17769 components: - type: Transform - pos: 20.5,-6.5 - parent: 16504 -- proto: BarricadeBlock - entities: - - uid: 909 + pos: -62.5,43.5 + parent: 16527 + - uid: 17770 components: - type: Transform - pos: 35.5,63.5 - parent: 2 - - uid: 910 + pos: -62.5,44.5 + parent: 16527 + - uid: 17771 components: - type: Transform - pos: 65.5,28.5 - parent: 2 - - uid: 911 + pos: -62.5,45.5 + parent: 16527 + - uid: 17772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,65.5 - parent: 2 - - uid: 912 + pos: -63.5,43.5 + parent: 16527 + - uid: 17773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,72.5 - parent: 2 - - uid: 913 + pos: -63.5,44.5 + parent: 16527 + - uid: 17774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,65.5 - parent: 2 - - uid: 914 + pos: -63.5,45.5 + parent: 16527 + - uid: 17775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,60.5 - parent: 2 - - uid: 915 + pos: -64.5,44.5 + parent: 16527 + - uid: 17776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,32.5 - parent: 2 - - uid: 916 + pos: -64.5,45.5 + parent: 16527 + - uid: 17777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,9.5 - parent: 2 - - uid: 917 + pos: -57.5,51.5 + parent: 16527 + - uid: 17778 components: - type: Transform - pos: 39.5,58.5 - parent: 2 - - uid: 6933 + pos: -64.5,46.5 + parent: 16527 + - uid: 17779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,21.5 - parent: 2 - - uid: 11496 + pos: -64.5,47.5 + parent: 16527 + - uid: 17780 components: - type: Transform - pos: 46.5,37.5 - parent: 2 - - uid: 17610 + pos: -64.5,48.5 + parent: 16527 + - uid: 17781 components: - type: Transform - pos: 0.5,-8.5 - parent: 16504 - - uid: 17611 + pos: -64.5,49.5 + parent: 16527 + - uid: 17782 components: - type: Transform - pos: 6.5,7.5 - parent: 16504 - - uid: 17612 + pos: -64.5,50.5 + parent: 16527 + - uid: 17783 components: - type: Transform - pos: -0.5,-13.5 - parent: 16504 - - uid: 17613 + pos: -64.5,51.5 + parent: 16527 + - uid: 17784 components: - type: Transform - pos: 1.5,-13.5 - parent: 16504 - - uid: 17614 + pos: -63.5,46.5 + parent: 16527 + - uid: 17785 components: - type: Transform - pos: -2.5,10.5 - parent: 16504 - - uid: 17616 + pos: -63.5,47.5 + parent: 16527 + - uid: 17786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,10.5 - parent: 16504 - - uid: 17617 + pos: -63.5,48.5 + parent: 16527 + - uid: 17787 components: - type: Transform - pos: 17.5,13.5 - parent: 16504 - - uid: 17618 + pos: -63.5,49.5 + parent: 16527 + - uid: 17788 components: - type: Transform - pos: -8.5,26.5 - parent: 16504 - - uid: 17619 + pos: -63.5,50.5 + parent: 16527 + - uid: 17789 components: - type: Transform - pos: -5.5,34.5 - parent: 16504 - - uid: 21267 + pos: -63.5,51.5 + parent: 16527 + - uid: 17790 components: - type: Transform - pos: 24.5,58.5 - parent: 2 - - uid: 21424 + pos: -62.5,46.5 + parent: 16527 + - uid: 17791 components: - type: Transform - pos: 31.5,59.5 - parent: 2 -- proto: BarricadeDirectional - entities: - - uid: 17620 + pos: -62.5,47.5 + parent: 16527 + - uid: 17792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-9.5 - parent: 16504 - - uid: 17621 + pos: -62.5,48.5 + parent: 16527 + - uid: 17793 components: - type: Transform - pos: 6.5,8.5 - parent: 16504 - - uid: 17622 + pos: -62.5,49.5 + parent: 16527 + - uid: 17794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 16504 - - uid: 17623 + pos: -62.5,50.5 + parent: 16527 + - uid: 17795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 16504 - - uid: 17624 + pos: -62.5,51.5 + parent: 16527 + - uid: 17796 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 16504 - - uid: 17625 + pos: -61.5,46.5 + parent: 16527 + - uid: 17797 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,12.5 - parent: 16504 - - uid: 17628 + pos: -61.5,47.5 + parent: 16527 + - uid: 17798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,10.5 - parent: 16504 - - uid: 17629 + pos: -61.5,48.5 + parent: 16527 + - uid: 17799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,10.5 - parent: 16504 - - uid: 17630 + pos: -61.5,49.5 + parent: 16527 + - uid: 17800 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 16504 - - uid: 17631 + pos: -61.5,50.5 + parent: 16527 + - uid: 17801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-7.5 - parent: 16504 -- proto: BarSign - entities: - - uid: 919 + pos: -61.5,51.5 + parent: 16527 + - uid: 17802 components: - type: Transform - pos: 23.5,56.5 - parent: 2 - - uid: 21425 + pos: -60.5,46.5 + parent: 16527 + - uid: 17803 components: - type: Transform - pos: 24.5,39.5 - parent: 2 -- proto: BarSpoon - entities: - - uid: 4985 + pos: -60.5,47.5 + parent: 16527 + - uid: 17804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.444996,55.442097 - parent: 2 -- proto: BaseBallBat - entities: - - uid: 920 + pos: -60.5,48.5 + parent: 16527 + - uid: 17805 components: - type: Transform - pos: 32.497658,-17.647013 - parent: 2 - - uid: 921 + pos: -60.5,49.5 + parent: 16527 + - uid: 17806 components: - type: Transform - pos: 49.666325,17.460323 - parent: 2 -- proto: BaseComputer - entities: - - uid: 922 + pos: -60.5,50.5 + parent: 16527 + - uid: 17807 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-5.5 - parent: 2 - - uid: 923 + pos: -60.5,51.5 + parent: 16527 + - uid: 17808 components: - type: Transform - pos: 49.5,1.5 - parent: 2 - - uid: 17632 + pos: -59.5,46.5 + parent: 16527 + - uid: 17809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,2.5 - parent: 16504 - - uid: 17633 + pos: -59.5,47.5 + parent: 16527 + - uid: 17810 components: - type: Transform - pos: -8.5,-1.5 - parent: 16504 - - uid: 17634 + pos: -59.5,48.5 + parent: 16527 + - uid: 17811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,3.5 - parent: 16504 -- proto: BaseGasCondenser - entities: - - uid: 924 + pos: -59.5,49.5 + parent: 16527 + - uid: 17812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,77.5 - parent: 2 -- proto: BassGuitarInstrument - entities: - - uid: 21493 + pos: -59.5,50.5 + parent: 16527 + - uid: 17813 components: - type: Transform - pos: 21.730509,40.548702 - parent: 2 -- proto: BeachBall - entities: - - uid: 925 + pos: -59.5,51.5 + parent: 16527 + - uid: 17814 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.43283,-13.297902 - parent: 2 -- proto: Beaker - entities: - - uid: 926 + pos: -57.5,52.5 + parent: 16527 + - uid: 17815 components: - type: Transform - pos: 55.322304,41.535374 - parent: 2 -- proto: Bed - entities: - - uid: 927 + pos: -57.5,53.5 + parent: 16527 + - uid: 17816 components: - type: Transform - pos: 2.5,1.5 - parent: 2 - - uid: 928 + pos: -57.5,54.5 + parent: 16527 + - uid: 17817 components: - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 929 + pos: -57.5,55.5 + parent: 16527 + - uid: 17818 components: - type: Transform - pos: 15.5,4.5 - parent: 2 - - uid: 930 + pos: -58.5,51.5 + parent: 16527 + - uid: 17819 components: - type: Transform - pos: 40.5,20.5 - parent: 2 - - uid: 931 + pos: -58.5,52.5 + parent: 16527 + - uid: 17820 components: - type: Transform - pos: 40.5,17.5 - parent: 2 - - uid: 934 + pos: -58.5,53.5 + parent: 16527 + - uid: 17821 components: - type: Transform - pos: 5.5,36.5 - parent: 2 - - uid: 935 + pos: -58.5,54.5 + parent: 16527 + - uid: 17822 components: - type: Transform - pos: 9.5,36.5 - parent: 2 - - uid: 936 + pos: -58.5,55.5 + parent: 16527 + - uid: 17823 components: - type: Transform - pos: 3.5,36.5 - parent: 2 - - uid: 937 + pos: -59.5,52.5 + parent: 16527 + - uid: 17824 components: - type: Transform - pos: 80.5,27.5 - parent: 2 - - uid: 938 + pos: -59.5,53.5 + parent: 16527 + - uid: 17825 components: - type: Transform - pos: 59.5,65.5 - parent: 2 - - uid: 939 + pos: -59.5,54.5 + parent: 16527 + - uid: 17826 components: - type: Transform - pos: 26.5,20.5 - parent: 2 - - uid: 940 + pos: -59.5,55.5 + parent: 16527 + - uid: 17827 components: - type: Transform - pos: 39.5,24.5 - parent: 2 - - uid: 941 + pos: -60.5,52.5 + parent: 16527 + - uid: 17828 components: - type: Transform - pos: 46.5,20.5 - parent: 2 - - uid: 942 + pos: -60.5,53.5 + parent: 16527 + - uid: 17829 components: - type: Transform - pos: 39.5,22.5 - parent: 2 - - uid: 943 + pos: -60.5,54.5 + parent: 16527 + - uid: 17830 components: - type: Transform - pos: 46.5,17.5 - parent: 2 - - uid: 944 + pos: -60.5,55.5 + parent: 16527 + - uid: 17831 components: - type: Transform - pos: 54.5,41.5 - parent: 2 - - uid: 945 + pos: -61.5,52.5 + parent: 16527 + - uid: 17832 components: - type: Transform - pos: 65.5,5.5 - parent: 2 - - uid: 17635 + pos: -61.5,53.5 + parent: 16527 + - uid: 17833 components: - type: Transform - pos: -6.5,30.5 - parent: 16504 - - uid: 17636 + pos: -61.5,54.5 + parent: 16527 + - uid: 17834 components: - type: Transform - pos: 12.5,22.5 - parent: 16504 - - uid: 17637 + pos: -61.5,55.5 + parent: 16527 + - uid: 17835 components: - type: Transform - pos: 17.5,22.5 - parent: 16504 - - uid: 17638 + pos: -62.5,52.5 + parent: 16527 + - uid: 17836 components: - type: Transform - pos: 12.5,26.5 - parent: 16504 - - uid: 17639 + pos: -62.5,53.5 + parent: 16527 + - uid: 17837 components: - type: Transform - pos: 17.5,26.5 - parent: 16504 -- proto: BedsheetCaptain - entities: - - uid: 946 + pos: -62.5,54.5 + parent: 16527 + - uid: 17838 components: - type: Transform - pos: 26.5,20.5 - parent: 2 -- proto: BedsheetCE - entities: - - uid: 947 + pos: -62.5,55.5 + parent: 16527 + - uid: 17839 components: - type: Transform - pos: 39.5,69.5 - parent: 2 -- proto: BedsheetCMO - entities: - - uid: 948 + pos: -63.5,52.5 + parent: 16527 + - uid: 17840 components: - type: Transform - pos: 48.5,10.5 - parent: 2 -- proto: BedsheetCult - entities: - - uid: 949 + pos: -63.5,53.5 + parent: 16527 + - uid: 17841 components: - type: Transform - pos: 80.5,27.5 - parent: 2 -- proto: BedsheetGreen - entities: - - uid: 950 + pos: -63.5,54.5 + parent: 16527 + - uid: 17842 components: - type: Transform - pos: 56.5,-0.5 - parent: 2 - - uid: 951 + pos: -63.5,55.5 + parent: 16527 + - uid: 17843 components: - type: Transform - pos: 56.5,0.5 - parent: 2 -- proto: BedsheetHOP - entities: - - uid: 952 + pos: -62.5,56.5 + parent: 16527 + - uid: 17844 components: - type: Transform - pos: 20.5,17.5 - parent: 2 -- proto: BedsheetHOS - entities: - - uid: 953 + pos: -61.5,56.5 + parent: 16527 + - uid: 17845 components: - type: Transform - pos: 52.5,33.5 - parent: 2 -- proto: BedsheetMedical - entities: - - uid: 954 + pos: -61.5,58.5 + parent: 16527 + - uid: 17846 components: - type: Transform - pos: 35.5,1.5 - parent: 2 - - uid: 955 + pos: -61.5,57.5 + parent: 16527 + - uid: 17847 components: - type: Transform - pos: 41.5,-2.5 - parent: 2 - - uid: 956 + pos: -60.5,58.5 + parent: 16527 + - uid: 17848 components: - type: Transform - pos: 35.5,-0.5 - parent: 2 - - uid: 957 + pos: -60.5,57.5 + parent: 16527 + - uid: 17849 components: - type: Transform - pos: 41.5,-4.5 - parent: 2 - - uid: 958 + pos: -60.5,56.5 + parent: 16527 + - uid: 17850 components: - type: Transform - pos: 41.5,-0.5 - parent: 2 - - uid: 959 + pos: -60.5,59.5 + parent: 16527 + - uid: 17851 components: - type: Transform - pos: 35.5,-5.5 - parent: 2 - - uid: 960 + pos: -59.5,59.5 + parent: 16527 + - uid: 17852 components: - type: Transform - pos: 35.5,-6.5 - parent: 2 - - uid: 961 + pos: -59.5,58.5 + parent: 16527 + - uid: 17853 components: - type: Transform - pos: 37.5,-5.5 - parent: 2 - - uid: 962 + pos: -59.5,57.5 + parent: 16527 + - uid: 17854 components: - type: Transform - pos: 37.5,-6.5 - parent: 2 - - uid: 963 + pos: -59.5,56.5 + parent: 16527 + - uid: 17855 components: - type: Transform - pos: 35.5,-2.5 - parent: 2 - - uid: 964 + pos: -58.5,59.5 + parent: 16527 + - uid: 17856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,20.5 - parent: 2 - - uid: 965 + pos: -58.5,58.5 + parent: 16527 + - uid: 17857 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,20.5 - parent: 2 - - uid: 17640 + pos: -58.5,57.5 + parent: 16527 + - uid: 17858 components: - type: Transform - pos: 17.5,34.5 - parent: 16504 - - uid: 17641 + pos: -58.5,56.5 + parent: 16527 + - uid: 17859 components: - type: Transform - pos: 15.5,32.5 - parent: 16504 - - uid: 17642 + pos: -57.5,56.5 + parent: 16527 + - uid: 17860 components: - type: Transform - pos: 17.5,36.5 - parent: 16504 -- proto: BedsheetOrange - entities: - - uid: 966 + pos: -57.5,57.5 + parent: 16527 + - uid: 17861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,20.5 - parent: 2 - - uid: 967 + pos: -57.5,58.5 + parent: 16527 + - uid: 17862 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,17.5 - parent: 2 - - uid: 968 + pos: -57.5,59.5 + parent: 16527 + - uid: 17863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,20.5 - parent: 2 - - uid: 969 + pos: -56.5,56.5 + parent: 16527 + - uid: 17864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,17.5 - parent: 2 - - uid: 970 + pos: -56.5,57.5 + parent: 16527 + - uid: 17865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,24.5 - parent: 2 - - uid: 971 + pos: -56.5,58.5 + parent: 16527 + - uid: 17866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,22.5 - parent: 2 -- proto: BedsheetQM - entities: - - uid: 972 + pos: -56.5,59.5 + parent: 16527 + - uid: 17867 components: - type: Transform - pos: 2.5,1.5 - parent: 2 -- proto: BedsheetRD - entities: - - uid: 973 + pos: -55.5,56.5 + parent: 16527 + - uid: 17868 components: - type: Transform - pos: 15.5,4.5 - parent: 2 -- proto: BedsheetSpawner - entities: - - uid: 974 + pos: -55.5,57.5 + parent: 16527 + - uid: 17869 components: - type: Transform - pos: 3.5,36.5 - parent: 2 - - uid: 975 + pos: -55.5,58.5 + parent: 16527 + - uid: 17870 components: - type: Transform - pos: 5.5,36.5 - parent: 2 - - uid: 976 + pos: -55.5,59.5 + parent: 16527 + - uid: 17871 components: - type: Transform - pos: 9.5,36.5 - parent: 2 - - uid: 17643 + pos: -54.5,56.5 + parent: 16527 + - uid: 17872 components: - type: Transform - pos: 12.5,22.5 - parent: 16504 - - uid: 17644 + pos: -54.5,57.5 + parent: 16527 + - uid: 17873 components: - type: Transform - pos: 17.5,22.5 - parent: 16504 - - uid: 17645 + pos: -54.5,58.5 + parent: 16527 + - uid: 17874 components: - type: Transform - pos: 12.5,26.5 - parent: 16504 - - uid: 17646 + pos: -54.5,59.5 + parent: 16527 + - uid: 17875 components: - type: Transform - pos: 17.5,26.5 - parent: 16504 -- proto: BedsheetSyndie - entities: - - uid: 977 + pos: -53.5,56.5 + parent: 16527 + - uid: 17876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,41.5 - parent: 2 - - uid: 17647 + pos: -53.5,57.5 + parent: 16527 + - uid: 17877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,30.5 - parent: 16504 -- proto: BedsheetUSA - entities: - - uid: 978 + pos: -53.5,58.5 + parent: 16527 + - uid: 17878 components: - type: Transform - pos: 49.5,26.5 - parent: 2 -- proto: BedsheetYellow - entities: - - uid: 979 + pos: -53.5,59.5 + parent: 16527 + - uid: 17879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,65.5 - parent: 2 -- proto: BenchBlueComfy - entities: - - uid: 980 + pos: -52.5,56.5 + parent: 16527 + - uid: 17880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,3.5 - parent: 2 - - uid: 981 + pos: -52.5,57.5 + parent: 16527 + - uid: 17881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,2.5 - parent: 2 - - uid: 982 + pos: -52.5,58.5 + parent: 16527 + - uid: 17882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,1.5 - parent: 2 - - uid: 983 + pos: -52.5,59.5 + parent: 16527 + - uid: 17883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,3.5 - parent: 2 - - uid: 985 + pos: -51.5,56.5 + parent: 16527 + - uid: 17884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,2.5 - parent: 2 -- proto: BenchColorfulComfy - entities: - - uid: 281 + pos: -51.5,57.5 + parent: 16527 + - uid: 17885 components: - type: Transform - pos: 1.5,30.5 - parent: 2 - - uid: 5959 + pos: -51.5,58.5 + parent: 16527 + - uid: 17886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,62.5 - parent: 2 - - uid: 5962 + pos: -51.5,59.5 + parent: 16527 + - uid: 17887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,64.5 - parent: 2 - - uid: 5963 + pos: -50.5,56.5 + parent: 16527 + - uid: 17888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,64.5 - parent: 2 - - uid: 5964 + pos: -50.5,57.5 + parent: 16527 + - uid: 17889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,64.5 - parent: 2 - - uid: 5985 + pos: -50.5,58.5 + parent: 16527 + - uid: 17890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,64.5 - parent: 2 - - uid: 5986 + pos: -50.5,59.5 + parent: 16527 + - uid: 17891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,64.5 - parent: 2 - - uid: 5987 + pos: -49.5,56.5 + parent: 16527 + - uid: 17892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,64.5 - parent: 2 - - uid: 5988 + pos: -49.5,57.5 + parent: 16527 + - uid: 17893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,63.5 - parent: 2 - - uid: 5990 + pos: -49.5,58.5 + parent: 16527 + - uid: 17894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,61.5 - parent: 2 - - uid: 5991 + pos: -49.5,59.5 + parent: 16527 + - uid: 17895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,59.5 - parent: 2 - - uid: 5992 + pos: -48.5,56.5 + parent: 16527 + - uid: 17896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,58.5 - parent: 2 - - uid: 5993 + pos: -48.5,57.5 + parent: 16527 + - uid: 17897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,57.5 - parent: 2 - - uid: 5994 + pos: -48.5,58.5 + parent: 16527 + - uid: 17898 components: - type: Transform - pos: 79.5,56.5 - parent: 2 - - uid: 5995 + pos: -48.5,59.5 + parent: 16527 + - uid: 17899 components: - type: Transform - pos: 78.5,56.5 - parent: 2 - - uid: 5996 + pos: -47.5,56.5 + parent: 16527 + - uid: 17900 components: - type: Transform - pos: 77.5,56.5 - parent: 2 - - uid: 5997 + pos: -47.5,57.5 + parent: 16527 + - uid: 17901 components: - type: Transform - pos: 75.5,56.5 - parent: 2 - - uid: 5998 + pos: -47.5,58.5 + parent: 16527 + - uid: 17902 components: - type: Transform - pos: 74.5,56.5 - parent: 2 - - uid: 5999 + pos: -47.5,59.5 + parent: 16527 + - uid: 17903 components: - type: Transform - pos: 73.5,56.5 - parent: 2 - - uid: 6000 + pos: -46.5,56.5 + parent: 16527 + - uid: 17904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,57.5 - parent: 2 - - uid: 6001 + pos: -46.5,57.5 + parent: 16527 + - uid: 17905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,58.5 - parent: 2 - - uid: 6002 + pos: -46.5,58.5 + parent: 16527 + - uid: 17906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,59.5 - parent: 2 - - uid: 6003 + pos: -46.5,59.5 + parent: 16527 + - uid: 17907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,61.5 - parent: 2 - - uid: 6004 + pos: -45.5,56.5 + parent: 16527 + - uid: 17908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,62.5 - parent: 2 - - uid: 6005 + pos: -45.5,57.5 + parent: 16527 + - uid: 17909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,63.5 - parent: 2 - - uid: 6007 + pos: -45.5,58.5 + parent: 16527 + - uid: 17910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,59.5 - parent: 2 - - uid: 6008 + pos: -45.5,59.5 + parent: 16527 + - uid: 17911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,58.5 - parent: 2 - - uid: 6009 + pos: -44.5,56.5 + parent: 16527 + - uid: 17912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,60.5 - parent: 2 - - uid: 6010 + pos: -44.5,57.5 + parent: 16527 + - uid: 17913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,61.5 - parent: 2 - - uid: 6011 + pos: -44.5,58.5 + parent: 16527 + - uid: 17914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,62.5 - parent: 2 - - uid: 16100 + pos: -44.5,59.5 + parent: 16527 + - uid: 17915 components: - type: Transform - pos: 2.5,30.5 - parent: 2 - - uid: 22235 + pos: -43.5,56.5 + parent: 16527 + - uid: 17916 components: - type: Transform - pos: 75.5,66.5 - parent: 2 - - uid: 22236 + pos: -43.5,57.5 + parent: 16527 + - uid: 17917 components: - type: Transform - pos: 76.5,66.5 - parent: 2 - - uid: 22237 + pos: -43.5,58.5 + parent: 16527 + - uid: 17918 components: - type: Transform - pos: 77.5,66.5 - parent: 2 - - uid: 22238 + pos: -43.5,59.5 + parent: 16527 + - uid: 17919 components: - type: Transform - pos: 78.5,66.5 - parent: 2 - - uid: 22239 + pos: -42.5,56.5 + parent: 16527 + - uid: 17920 components: - type: Transform - pos: 73.5,66.5 - parent: 2 - - uid: 22240 + pos: -42.5,57.5 + parent: 16527 + - uid: 17921 components: - type: Transform - pos: 80.5,66.5 - parent: 2 -- proto: BenchComfy - entities: - - uid: 17648 + pos: -42.5,58.5 + parent: 16527 + - uid: 17922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,35.5 - parent: 16504 - - uid: 17649 + pos: -42.5,59.5 + parent: 16527 + - uid: 17923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,34.5 - parent: 16504 -- proto: BenchRedComfy - entities: - - uid: 17650 + pos: -41.5,56.5 + parent: 16527 + - uid: 17924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,0.5 - parent: 16504 - - uid: 17651 + pos: -41.5,57.5 + parent: 16527 + - uid: 17925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,1.5 - parent: 16504 - - uid: 17652 + pos: -41.5,58.5 + parent: 16527 + - uid: 17926 components: - type: Transform - pos: 4.5,35.5 - parent: 16504 - - uid: 17653 + pos: -41.5,59.5 + parent: 16527 + - uid: 17927 components: - type: Transform - pos: 5.5,35.5 - parent: 16504 - - uid: 17654 + pos: -40.5,56.5 + parent: 16527 + - uid: 17928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,32.5 - parent: 16504 - - uid: 17655 + pos: -40.5,57.5 + parent: 16527 + - uid: 17929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,32.5 - parent: 16504 - - uid: 17656 + pos: -40.5,58.5 + parent: 16527 + - uid: 17930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,32.5 - parent: 16504 - - uid: 17657 + pos: -40.5,59.5 + parent: 16527 + - uid: 17931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,32.5 - parent: 16504 - - uid: 17658 + pos: -39.5,56.5 + parent: 16527 + - uid: 17932 components: - type: Transform - pos: -3.5,35.5 - parent: 16504 - - uid: 17659 + pos: -39.5,57.5 + parent: 16527 + - uid: 17933 components: - type: Transform - pos: -2.5,35.5 - parent: 16504 - - uid: 17660 + pos: -39.5,58.5 + parent: 16527 + - uid: 17934 components: - type: Transform - pos: -7.5,18.5 - parent: 16504 - - uid: 17661 + pos: -39.5,59.5 + parent: 16527 + - uid: 17935 components: - type: Transform - pos: -9.5,18.5 - parent: 16504 - - uid: 17662 + pos: -38.5,56.5 + parent: 16527 + - uid: 17936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,17.5 - parent: 16504 - - uid: 17663 + pos: -38.5,57.5 + parent: 16527 + - uid: 17937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,17.5 - parent: 16504 - - uid: 17664 + pos: -38.5,58.5 + parent: 16527 + - uid: 17938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,8.5 - parent: 16504 - - uid: 17665 + pos: -38.5,59.5 + parent: 16527 + - uid: 17939 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,8.5 - parent: 16504 - - uid: 17666 + pos: -41.5,53.5 + parent: 16527 + - uid: 17940 components: - type: Transform - pos: 13.5,18.5 - parent: 16504 -- proto: Biogenerator - entities: - - uid: 21554 + pos: -41.5,54.5 + parent: 16527 + - uid: 17941 components: - type: Transform - pos: 35.5,50.5 - parent: 2 -- proto: BiomassReclaimer - entities: - - uid: 986 + pos: -41.5,55.5 + parent: 16527 + - uid: 17942 components: - type: Transform - pos: 52.5,6.5 - parent: 2 -- proto: BlastDoor - entities: - - uid: 987 + pos: -40.5,53.5 + parent: 16527 + - uid: 17943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,15.5 - parent: 2 - - uid: 988 + pos: -40.5,54.5 + parent: 16527 + - uid: 17944 components: - type: Transform - pos: -1.5,9.5 - parent: 2 - - uid: 989 + pos: -40.5,55.5 + parent: 16527 + - uid: 17945 components: - type: Transform - pos: -1.5,5.5 - parent: 2 - - uid: 990 + pos: -39.5,53.5 + parent: 16527 + - uid: 17946 components: - type: Transform - pos: -1.5,23.5 - parent: 2 - - uid: 991 + pos: -39.5,54.5 + parent: 16527 + - uid: 17947 components: - type: Transform - pos: 17.5,-7.5 - parent: 2 - - uid: 992 + pos: -39.5,55.5 + parent: 16527 + - uid: 17948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,7.5 - parent: 2 - - uid: 993 + pos: -38.5,53.5 + parent: 16527 + - uid: 17949 components: - type: Transform - pos: 41.5,88.5 - parent: 2 - - uid: 994 + pos: -38.5,54.5 + parent: 16527 + - uid: 17950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,15.5 - parent: 2 - - uid: 995 + pos: -38.5,55.5 + parent: 16527 + - uid: 17951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,84.5 - parent: 2 - - uid: 17667 + pos: -43.5,60.5 + parent: 16527 + - uid: 17952 components: - type: Transform - pos: -5.5,16.5 - parent: 16504 - - uid: 17668 + pos: -42.5,60.5 + parent: 16527 + - uid: 17953 components: - type: Transform - pos: 6.5,16.5 - parent: 16504 - - uid: 17669 + pos: -41.5,60.5 + parent: 16527 + - uid: 17954 components: - type: Transform - pos: 1.5,13.5 - parent: 16504 - - uid: 17670 + pos: -40.5,60.5 + parent: 16527 + - uid: 17955 components: - type: Transform - pos: -0.5,13.5 - parent: 16504 - - uid: 17671 + pos: -39.5,60.5 + parent: 16527 + - uid: 17956 components: - type: Transform - pos: 0.5,-0.5 - parent: 16504 - missingComponents: - - Damageable - - Destructible - - uid: 17672 + pos: -38.5,60.5 + parent: 16527 + - uid: 17957 components: - type: Transform - pos: 1.5,-0.5 - parent: 16504 - missingComponents: - - Damageable - - Destructible - - uid: 17673 + pos: -37.5,60.5 + parent: 16527 + - uid: 17958 components: - type: Transform - pos: -0.5,-0.5 - parent: 16504 - missingComponents: - - Damageable - - Destructible - - uid: 17674 + pos: -36.5,60.5 + parent: 16527 + - uid: 17959 components: - type: Transform - pos: -0.5,7.5 - parent: 16504 - missingComponents: - - Damageable - - Destructible - - uid: 17675 + pos: -37.5,58.5 + parent: 16527 + - uid: 17960 components: - type: Transform - pos: 1.5,7.5 - parent: 16504 - missingComponents: - - Damageable - - Destructible - - uid: 17676 + pos: -37.5,59.5 + parent: 16527 + - uid: 17961 components: - type: Transform - pos: 0.5,7.5 - parent: 16504 - missingComponents: - - Damageable - - Destructible - - uid: 17677 + pos: -36.5,59.5 + parent: 16527 + - uid: 17962 components: - type: Transform - pos: -8.5,9.5 - parent: 16504 - - uid: 17678 + pos: -42.5,61.5 + parent: 16527 + - uid: 17963 components: - type: Transform - pos: 9.5,11.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 19951: - - DoorStatus: Trigger - 19613: - - DoorStatus: Toggle - 19564: - - DoorStatus: Toggle - 19565: - - DoorStatus: Toggle - 19569: - - DoorStatus: Toggle - 19561: - - DoorStatus: Toggle - 19620: - - DoorStatus: Toggle - 19619: - - DoorStatus: Toggle - 19624: - - DoorStatus: Toggle - 19570: - - DoorStatus: Toggle - 19574: - - DoorStatus: Toggle - 19628: - - DoorStatus: Toggle - 19630: - - DoorStatus: Toggle - 19633: - - DoorStatus: Toggle - 19577: - - DoorStatus: Toggle - 19573: - - DoorStatus: Toggle - 19579: - - DoorStatus: Toggle - 19629: - - DoorStatus: Toggle - 19583: - - DoorStatus: Toggle - 19584: - - DoorStatus: Toggle - 19572: - - DoorStatus: Toggle - - uid: 17679 + pos: -41.5,61.5 + parent: 16527 + - uid: 17964 components: - type: Transform - pos: -8.5,10.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 19560: - - DoorStatus: Toggle - 19950: - - DoorStatus: Trigger - 19562: - - DoorStatus: Toggle - 19618: - - DoorStatus: Toggle - 19616: - - DoorStatus: Toggle - 19568: - - DoorStatus: Toggle - 19566: - - DoorStatus: Toggle - 19621: - - DoorStatus: Toggle - 19623: - - DoorStatus: Toggle - 19625: - - DoorStatus: Toggle - 19576: - - DoorStatus: Toggle - 19635: - - DoorStatus: Toggle - 19632: - - DoorStatus: Toggle - 19571: - - DoorStatus: Toggle - - uid: 17680 + pos: -40.5,61.5 + parent: 16527 + - uid: 17965 components: - type: Transform - pos: -4.5,18.5 - parent: 16504 - - uid: 17681 + pos: -39.5,61.5 + parent: 16527 + - uid: 17966 components: - type: Transform - pos: -4.5,14.5 - parent: 16504 - - uid: 17682 + pos: -38.5,61.5 + parent: 16527 + - uid: 17967 components: - type: Transform - pos: 5.5,14.5 - parent: 16504 - - uid: 17683 + pos: -37.5,61.5 + parent: 16527 + - uid: 17968 components: - type: Transform - pos: 0.5,16.5 - parent: 16504 - - uid: 17684 + pos: -36.5,61.5 + parent: 16527 + - uid: 17969 components: - type: Transform - pos: 5.5,18.5 - parent: 16504 - - uid: 17685 + pos: -35.5,61.5 + parent: 16527 + - uid: 17970 components: - type: Transform - pos: -21.5,13.5 - parent: 16504 - missingComponents: - - Damageable - - Construction - - Destructible - - uid: 17687 + pos: -34.5,61.5 + parent: 16527 + - uid: 17971 components: - type: Transform - pos: 8.5,19.5 - parent: 16504 - - uid: 17688 + pos: -33.5,61.5 + parent: 16527 + - uid: 17972 components: - type: Transform - pos: 7.5,24.5 - parent: 16504 - - uid: 17689 + pos: -41.5,62.5 + parent: 16527 + - uid: 17973 components: - type: Transform - pos: 9.5,21.5 - parent: 16504 - - uid: 17690 + pos: -40.5,62.5 + parent: 16527 + - uid: 17974 components: - type: Transform - pos: 7.5,21.5 - parent: 16504 - - uid: 17691 + pos: -39.5,62.5 + parent: 16527 + - uid: 17975 components: - type: Transform - pos: 9.5,24.5 - parent: 16504 - - uid: 17692 + pos: -38.5,62.5 + parent: 16527 + - uid: 17976 components: - type: Transform - pos: 9.5,27.5 - parent: 16504 - - uid: 17693 + pos: -37.5,62.5 + parent: 16527 + - uid: 17977 components: - type: Transform - pos: 7.5,27.5 - parent: 16504 - - uid: 17694 + pos: -36.5,62.5 + parent: 16527 + - uid: 17978 components: - type: Transform - pos: 7.5,30.5 - parent: 16504 - - uid: 17695 + pos: -40.5,63.5 + parent: 16527 + - uid: 17979 components: - type: Transform - pos: 9.5,30.5 - parent: 16504 - - uid: 17696 + pos: -39.5,63.5 + parent: 16527 + - uid: 17980 components: - type: Transform - pos: 0.5,31.5 - parent: 16504 - - uid: 17697 + pos: -38.5,63.5 + parent: 16527 + - uid: 17981 components: - type: Transform - pos: 1.5,31.5 - parent: 16504 - - uid: 17698 + pos: -37.5,63.5 + parent: 16527 + - uid: 17982 components: - type: Transform - pos: -0.5,31.5 - parent: 16504 - - uid: 17700 + pos: -38.5,64.5 + parent: 16527 + - uid: 17983 components: - type: Transform - pos: 10.5,16.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 19952: - - DoorStatus: Trigger - 19627: - - DoorStatus: Toggle - 19631: - - DoorStatus: Toggle - 19634: - - DoorStatus: Toggle - 19636: - - DoorStatus: Toggle - 19572: - - DoorStatus: Toggle - 19578: - - DoorStatus: Toggle - 19637: - - DoorStatus: Toggle - 19639: - - DoorStatus: Toggle - 19581: - - DoorStatus: Toggle - 19641: - - DoorStatus: Toggle - - uid: 17704 + pos: -37.5,64.5 + parent: 16527 + - uid: 17984 components: - type: Transform - pos: 6.5,37.5 - parent: 16504 - - uid: 17705 + pos: -36.5,64.5 + parent: 16527 + - uid: 17985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,39.5 - parent: 16504 - - uid: 17706 + pos: -36.5,63.5 + parent: 16527 + - uid: 17986 components: - type: Transform - pos: -5.5,37.5 - parent: 16504 -- proto: BlastDoorFrame - entities: - - uid: 17707 + pos: -35.5,64.5 + parent: 16527 + - uid: 17987 components: - type: Transform - anchored: True - pos: 9.5,10.5 - parent: 16504 - - uid: 17708 + pos: -35.5,63.5 + parent: 16527 + - uid: 17988 components: - type: Transform - anchored: True - pos: -8.5,11.5 - parent: 16504 - - uid: 17709 + pos: -35.5,62.5 + parent: 16527 + - uid: 17989 components: - type: Transform - anchored: True - pos: 9.5,9.5 - parent: 16504 -- proto: BlastDoorOpen - entities: - - uid: 287 + pos: -35.5,60.5 + parent: 16527 + - uid: 17990 components: - type: Transform - pos: 30.5,40.5 - parent: 2 - - uid: 880 + pos: -34.5,64.5 + parent: 16527 + - uid: 17991 components: - type: Transform - pos: 32.5,48.5 - parent: 2 - - uid: 996 + pos: -34.5,63.5 + parent: 16527 + - uid: 17992 components: - type: Transform - pos: 17.5,25.5 - parent: 2 - - uid: 997 + pos: -34.5,62.5 + parent: 16527 + - uid: 17993 components: - type: Transform - pos: 17.5,26.5 - parent: 2 - - uid: 998 + pos: -34.5,60.5 + parent: 16527 + - uid: 17994 components: - type: Transform - pos: 34.5,26.5 - parent: 2 - - uid: 999 + pos: -33.5,64.5 + parent: 16527 + - uid: 17995 components: - type: Transform - pos: 34.5,25.5 - parent: 2 - - uid: 1000 + pos: -33.5,63.5 + parent: 16527 + - uid: 17996 components: - type: Transform - pos: 34.5,24.5 - parent: 2 - - uid: 1001 + pos: -33.5,62.5 + parent: 16527 + - uid: 17997 components: - type: Transform - pos: 14.5,26.5 - parent: 2 - - uid: 1002 + pos: -33.5,60.5 + parent: 16527 + - uid: 17998 components: - type: Transform - pos: 14.5,25.5 - parent: 2 - - uid: 1003 + pos: -32.5,64.5 + parent: 16527 + - uid: 17999 components: - type: Transform - pos: 14.5,24.5 - parent: 2 - - uid: 1004 + pos: -32.5,63.5 + parent: 16527 + - uid: 18000 components: - type: Transform - pos: 17.5,24.5 - parent: 2 - - uid: 1005 + pos: -32.5,62.5 + parent: 16527 + - uid: 18001 components: - type: Transform - pos: 31.5,24.5 - parent: 2 - - uid: 1006 + pos: -32.5,61.5 + parent: 16527 + - uid: 18002 components: - type: Transform - pos: 31.5,26.5 - parent: 2 - - uid: 1007 + pos: -32.5,60.5 + parent: 16527 + - uid: 18003 components: - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 17710 + pos: -31.5,64.5 + parent: 16527 + - uid: 18004 components: - type: Transform - pos: 8.5,35.5 - parent: 16504 - - uid: 21771 + pos: -31.5,63.5 + parent: 16527 + - uid: 18005 components: - type: Transform - pos: 14.5,-38.5 - parent: 2 - - uid: 21772 + pos: -31.5,62.5 + parent: 16527 + - uid: 18006 components: - type: Transform - pos: 22.5,-31.5 - parent: 2 -- proto: BlockGameArcade - entities: - - uid: 1008 + pos: -31.5,61.5 + parent: 16527 + - uid: 18007 components: - type: Transform - pos: 81.5,11.5 - parent: 2 -- proto: Bonfire - entities: - - uid: 1009 + pos: -31.5,60.5 + parent: 16527 + - uid: 18008 components: - type: Transform - pos: 91.5,17.5 - parent: 2 -- proto: BookBase - entities: - - uid: 1010 + pos: -30.5,64.5 + parent: 16527 + - uid: 18009 components: - - type: MetaData - desc: Сборник стихов и гимнов дротткветт под названием "Поэзия скальдов" за авторством Хьюго Дракенберга. - name: сборник стихов "Поэзия скальдов" - type: Transform - pos: 40.63494,29.37681 - parent: 2 - - type: Paper - content: >- - [head=3] Сборник гимнов и стихов дротткветт - "Поэзия скальдов" - Автор: Хьюго Дракенберг[/head] - - - [head=3] Львы Рагнара[/head] - - О, выслушайте песнь мою, - - О воины, львы Рагнара, - - Кто с честью несет брань свою, - - Тот достойнее солнца света. - - - Звучит мощно древняя мелодия, - - Которой Один наделил нас, - - Стойте крепко, вступайте в натиск, - - Ломайте врагов в смертельном бою. - - - И вот на поле, среди крови, - - Один с окровавленным мечом, - - Он стоит смело, презрев смерть, - - За Рагнара он в бой идет. - - - И силней врагов, тот кто мстит, - - Он не будет сдаваться, до тех пор, - - Пока не услышит последний крик, - - Пока не совершит последний удар. - - - Этот гимн мы поем всей душой, - - Среди огня и дождя боя, - - Мы не побоимся даже смерти, - - Ведь мы - воины, львы Рагнара! - - - [head=3] Драконобой[/head] - - Король драконов, над миром правит он, - - Сердце его полно ярости и огня. - - С боевым кличем встреть его на поле брани, - - Герой - ты ли его победишь или падёшь. - - - Сила дракона в душе каждого героя, - - Его песнь разносится на ветру вдали. - - Но воин жив, пока сердце бьется в груди, - - Он не уступит, победит и жизнь отдаст за свободу. - - - Король драконов - враг навсегда с нами, - - Герой, иди в бой - он знает тебя в лицо. - - Побеждай его в смертельной схватке, - - Чтобы мир был свободен, а зло было искоренено. - - - Слава тебе, герой, первому в бою, - - Поднимай свой клинок на вершину горы. - - Пусть песня драконов за тобой звучит, - - И спокойствие к тебе навсегда приходит. - - - [head=3] Мифоходцы[/head] - - Средь древних гор, где бьется молний зарево, - - Зовут нас в битву трубы веков и гром, - - Там где молвят легенды голосом героев, - - Скальд воспевает доблесть сердец мужественных. - - - Тьма разрывается при свете наших клинков, - - На поле сражений четко звучит бой копий - колесниц зарниц. - - Река героических древних обнимает нашу плоть, - - Веселие грома, оно блестит рядом с нами в борьбе. - - - О, славься, эпоха волшебных преданий! - - Где миры сфер сталкиваются, небес колыбель, - - Орлы величаво парят средь бури, дурманя крылами, - - Что дарят нам поэзию бескрылых подвигов и огонь звезд. - - - Оружие светлое отбрасывает мрак, - - Рука воина становится крепче благодаря стремлению, - - Глаза мудрых во мгле ищут истину надежды, - - Вожаки, наш путь, зажигая свет просветления. - - - Твердь гудит от воющих зверей мощных, - - Духи времен, они помогают в жестоком поединке, - - Омега зари, их взор призывает нас в последний бой, - - Ни одного костра не погаснет, пока дух наш не иссякнет. - - - О, славься, эпоха волшебных преданий! - - Где миры сфер сталкиваются, небес колыбель, - - Орлы величаво парят средь бури, дурманя крылами, - - Что дарят нам поэзию бескрылых подвигов и огонь звезд. - - - Сферы искрами света заполняют небосвод, - - Волшебство богов претворяет нас в памятник истине, - - Книга историй, переплетенных вожделением и любовью пропитана, - - Наши души пылают в ней, и создают их вечную магию. - - - О, славься, эпоха волшебных преданий! - - Где миры сфер сталкиваются, небес колыбель, - - Орлы величаво парят средь бури, дурманя крылами, - - Что дарят нам поэзию бескрылых подвигов и огонь звезд. - - - - [head=3] Стремление[/head] - - Взлетает птица в небеса высоко, - - Крылья у неё словно золото блестят, - - Она мчится, не останавливаясь ни на миг, - - Никому не подчиняясь и не смотря назад. - - - Она свободна, как ветер на равнине, - - Как капли дождя на лепестках цветов, - - Её глаза полны радости и света, - - Она живёт каждый день, словно последний в жизни. - - - Если ты смеешься, значит ты живёшь, - - Если ты любишь, значит есть смысл в твоей жизни, - - Не смотря на всё, что тебе придётся пройти, - - Помни, что всегда рядом свет открывается душе. - - - - [head=3] Мечты[/head] - - Скользящие мечты в голове моей - - Ловятся за хвост, словно рыбьи затейники - - Они танцуют, кружатся в экстазе - - И тонут в гуле затаившейся пустоты - - - Но затем они вновь появляются - - Предвкушая победу над реальностью - - И я забываюсь, словно во сне - - Волшебство слов их поражает меня - - - Но затем приходит утро, и все развеивается - - Мечты исчезают, растворяясь в воздухе - - И жизнь продолжает свой путь - - Оставляя на сердце лишь небольшой след - - - - [head=3] Воспоминания[/head] - - Северный ветер веет сильно, - - Ледяные капли стучат в окно. - - Я вспоминаю давний поход, - - Когда с друзьями в лес уходил. - - - Тогда мы бились за каждый шажок, - - Мужество наше рвало преграды. - - Мы были героями, свинцовыми ребятами, - - И даже боги обращали на нас внимание. - - - Сейчас я сижу один, без сил и без молва, - - Только мысль моя уносится вдаль, - - Где солнце осталось навсегда, - - И не знает, что такое лед и сталь. - - - Сколько времени потрачено на бег, - - Сколько сил потрачено на бой, - - Теперь я знаю, что это все не для меня, - - И я готов покинуть все это навсегда. - - - Но я не оставлю свою родину, - - Ни горы, ни озера, ни рождественскую вьюгу, - - И если я умру сегодня на небе, - - То я стану частью великой древности. - - - - [head=3] О, скальды![/head] - - О, скальды былых времен, - - Когда герои грозились мечом, - - Который мерцал в солнечных лучах, - - Обагряя землю кровавым потоком. - - - Идут битвы, кричат щиты, - - Топчется земля стопами стальными, - - Но герои не знают страха, - - Свято веря в свои силы. - - - О, скальды, пусть тучи сгущаются, - - И мраком на землю сажая тень, - - Но герои все равно на подступах, - - В тысячу грудей звучит громкий клич "Берегись, враг!" - - - И хоть бой не разрешится быстро, - - Их душа тверда как сталь, - - И в битве этих кровавых мгновений - - На веки запечатлится их дух и храбрость на все времена! - - uid: 1011 + pos: -30.5,63.5 + parent: 16527 + - uid: 18010 components: - type: Transform - pos: 7.356848,37.607597 - parent: 2 - - uid: 1012 + pos: -30.5,62.5 + parent: 16527 + - uid: 18011 components: - type: Transform - pos: 7.485269,37.552563 - parent: 2 - - uid: 1013 + pos: -30.5,61.5 + parent: 16527 + - uid: 18012 components: - type: Transform - pos: 60.528152,61.5301 - parent: 2 - - uid: 1014 + pos: -30.5,60.5 + parent: 16527 + - uid: 18013 components: - type: Transform - pos: 60.34469,61.56679 - parent: 2 -- proto: BookChemicalCompendium - entities: - - uid: 18623 + pos: -29.5,64.5 + parent: 16527 + - uid: 18014 components: - type: Transform - pos: 40.528683,53.30423 - parent: 2 -- proto: BookMedicalReferenceBook - entities: - - uid: 1015 + pos: -29.5,63.5 + parent: 16527 + - uid: 18015 components: - type: Transform - pos: 57.260647,4.542655 - parent: 2 - - uid: 1016 + pos: -29.5,62.5 + parent: 16527 + - uid: 18016 components: - type: Transform - pos: 57.698147,4.49578 - parent: 2 -- proto: BookNarsieLegend - entities: - - uid: 1017 + pos: -29.5,61.5 + parent: 16527 + - uid: 18017 components: - type: Transform - pos: 25.563324,57.523094 - parent: 2 -- proto: BookRandomStory - entities: - - uid: 1019 + pos: -29.5,60.5 + parent: 16527 + - uid: 18018 components: - type: Transform - parent: 1018 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1022 + pos: -28.5,64.5 + parent: 16527 + - uid: 18019 components: - type: Transform - parent: 1021 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookScientistsGuidebook - entities: - - uid: 22008 + pos: -28.5,63.5 + parent: 16527 + - uid: 18020 components: - type: Transform - pos: 25.510979,8.551438 - parent: 2 -- proto: Bookshelf - entities: - - uid: 17711 + pos: -28.5,62.5 + parent: 16527 + - uid: 18021 components: - type: Transform - pos: 13.5,-8.5 - parent: 16504 - - uid: 17712 + pos: -28.5,61.5 + parent: 16527 + - uid: 18022 components: - type: Transform - pos: -10.5,29.5 - parent: 16504 -- proto: BookshelfFilled - entities: - - uid: 1028 + pos: -28.5,60.5 + parent: 16527 + - uid: 18023 components: - type: Transform - pos: 7.5,36.5 - parent: 2 - - uid: 1029 + pos: -27.5,64.5 + parent: 16527 + - uid: 18024 components: - type: Transform - pos: 62.5,59.5 - parent: 2 - - uid: 1030 + pos: -27.5,63.5 + parent: 16527 + - uid: 18025 components: - type: Transform - pos: 64.5,55.5 - parent: 2 - - uid: 1031 + pos: -27.5,62.5 + parent: 16527 + - uid: 18026 components: - type: Transform - pos: 63.5,55.5 - parent: 2 - - uid: 1032 + pos: -27.5,61.5 + parent: 16527 + - uid: 18027 components: - type: Transform - pos: 62.5,55.5 - parent: 2 - - uid: 1033 + pos: -27.5,60.5 + parent: 16527 + - uid: 18028 components: - type: Transform - pos: 64.5,59.5 - parent: 2 - - uid: 1034 + pos: -26.5,64.5 + parent: 16527 + - uid: 18029 components: - type: Transform - pos: 63.5,59.5 - parent: 2 - - uid: 1035 + pos: -26.5,63.5 + parent: 16527 + - uid: 18030 components: - type: Transform - pos: 53.5,41.5 - parent: 2 -- proto: BookSpaceLaw - entities: - - uid: 22005 + pos: -26.5,62.5 + parent: 16527 + - uid: 18031 components: - type: Transform - pos: 49.838795,21.556015 - parent: 2 - - uid: 22009 + pos: -26.5,61.5 + parent: 16527 + - uid: 18032 components: - type: Transform - pos: 25.341877,25.460508 - parent: 2 -- proto: BookTemple - entities: - - uid: 1036 + pos: -26.5,60.5 + parent: 16527 + - uid: 18033 components: - type: Transform - pos: 80.485855,32.601913 - parent: 2 -- proto: BoozeDispenser - entities: - - uid: 265 + pos: -25.5,64.5 + parent: 16527 + - uid: 18034 components: - type: Transform - pos: 19.5,55.5 - parent: 2 - - uid: 1038 + pos: -25.5,63.5 + parent: 16527 + - uid: 18035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,63.5 - parent: 2 - - uid: 1039 + pos: -25.5,62.5 + parent: 16527 + - uid: 18036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,40.5 - parent: 2 -- proto: BoozeDispenserEmpty - entities: - - uid: 3136 + pos: -25.5,61.5 + parent: 16527 + - uid: 18037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,3.5 - parent: 2 -- proto: BorgCharger - entities: - - uid: 1040 + pos: -25.5,60.5 + parent: 16527 + - uid: 18038 components: - type: Transform - pos: 30.5,-2.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1041 + pos: -24.5,64.5 + parent: 16527 + - uid: 18039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,57.5 - parent: 2 - - uid: 2548 + pos: -24.5,63.5 + parent: 16527 + - uid: 18040 components: - type: Transform - pos: 26.5,-36.5 - parent: 2 - - uid: 3135 + pos: -24.5,62.5 + parent: 16527 + - uid: 18041 components: - type: Transform - pos: 18.5,-36.5 - parent: 2 -- proto: BorgModuleMining - entities: - - uid: 17713 + pos: -24.5,61.5 + parent: 16527 + - uid: 18042 components: - type: Transform - pos: -3.4789386,8.55915 - parent: 16504 -- proto: BorgModuleTool - entities: - - uid: 1045 + pos: -24.5,60.5 + parent: 16527 + - uid: 18043 components: - type: Transform - pos: 67.45607,37.601162 - parent: 2 -- proto: BoxBeaker - entities: - - uid: 21567 + pos: -23.5,64.5 + parent: 16527 + - uid: 18044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.288635,48.269547 - parent: 2 - - uid: 21613 + pos: -23.5,63.5 + parent: 16527 + - uid: 18045 components: - type: Transform - pos: 26.490738,55.088478 - parent: 2 -- proto: BoxBeanbag - entities: - - uid: 1047 + pos: -23.5,62.5 + parent: 16527 + - uid: 18046 components: - type: Transform - parent: 1046 - - type: Physics - canCollide: False -- proto: BoxBodyBag - entities: - - uid: 1055 + pos: -23.5,61.5 + parent: 16527 + - uid: 18047 components: - type: Transform - pos: 55.60759,6.605047 - parent: 2 - - uid: 1056 + pos: -23.5,60.5 + parent: 16527 + - uid: 18048 components: - type: Transform - pos: 62.46805,24.64373 - parent: 2 - - uid: 22478 + pos: -22.5,64.5 + parent: 16527 + - uid: 18049 components: - type: Transform - pos: 24.607885,-8.656851 - parent: 2 - - uid: 22479 + pos: -22.5,63.5 + parent: 16527 + - uid: 18050 components: - type: Transform - pos: 38.184242,-1.6961863 - parent: 2 - - uid: 22480 + pos: -22.5,62.5 + parent: 16527 + - uid: 18051 components: - type: Transform - pos: 38.746742,-1.6649363 - parent: 2 - - uid: 22481 + pos: -22.5,61.5 + parent: 16527 + - uid: 18052 components: - type: Transform - pos: 55.31863,6.33302 - parent: 2 -- proto: BoxCartridgeCap - entities: - - uid: 1023 + pos: -22.5,60.5 + parent: 16527 + - uid: 18053 components: - type: Transform - parent: 1021 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxCleanerGrenades - entities: - - uid: 1058 + pos: -21.5,64.5 + parent: 16527 + - uid: 18054 components: - type: Transform - parent: 1057 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22476 + pos: -21.5,63.5 + parent: 16527 + - uid: 18055 components: - type: Transform - parent: 6182 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxFolderBase - entities: - - uid: 1068 + pos: -21.5,62.5 + parent: 16527 + - uid: 18056 components: - type: Transform - pos: 59.531593,58.62728 - parent: 2 - - uid: 1069 + pos: -21.5,61.5 + parent: 16527 + - uid: 18057 components: - type: Transform - pos: 59.549942,56.535847 - parent: 2 -- proto: BoxFolderBlack - entities: - - uid: 1070 + pos: -21.5,60.5 + parent: 16527 + - uid: 18058 components: - - type: MetaData - name: папка с грифом секретности - type: Transform - pos: 7.5148277,28.681255 - parent: 2 - - type: Storage - storedItems: - 1071: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 1071 - - uid: 17714 + pos: -20.5,64.5 + parent: 16527 + - uid: 18059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.327658,34.987534 - parent: 16504 - - uid: 17715 + pos: -20.5,63.5 + parent: 16527 + - uid: 18060 components: - type: Transform - pos: 19.483553,31.872313 - parent: 16504 -- proto: BoxFolderBlue - entities: - - uid: 1072 + pos: -20.5,62.5 + parent: 16527 + - uid: 18061 components: - type: Transform - pos: 28.40281,30.61314 - parent: 2 - - uid: 1073 + pos: -20.5,61.5 + parent: 16527 + - uid: 18062 components: - type: Transform - pos: 24.393147,24.674196 - parent: 2 - - uid: 1074 + pos: -20.5,60.5 + parent: 16527 + - uid: 18063 components: - type: Transform - pos: 20.517431,16.478916 - parent: 2 - - uid: 1075 + pos: -19.5,64.5 + parent: 16527 + - uid: 18064 components: - type: Transform - pos: 17.476597,5.460553 - parent: 2 - - uid: 1076 + pos: -19.5,63.5 + parent: 16527 + - uid: 18065 components: - type: Transform - pos: 18.718304,20.340763 - parent: 2 -- proto: BoxFolderClipboard - entities: - - uid: 1077 + pos: -19.5,62.5 + parent: 16527 + - uid: 18066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.4697795,32.428143 - parent: 2 - - uid: 1078 + pos: -19.5,61.5 + parent: 16527 + - uid: 18067 components: - type: Transform - pos: 7.412698,2.8673413 - parent: 2 - - uid: 1079 + pos: -19.5,60.5 + parent: 16527 + - uid: 18068 components: - type: Transform - pos: 21.443787,-6.437905 - parent: 2 - - uid: 1080 + pos: -18.5,64.5 + parent: 16527 + - uid: 18069 components: - type: Transform - pos: 16.48936,21.491587 - parent: 2 - - uid: 1081 + pos: -18.5,63.5 + parent: 16527 + - uid: 18070 components: - type: Transform - pos: 40.50558,29.55119 - parent: 2 - - uid: 1082 + pos: -18.5,62.5 + parent: 16527 + - uid: 18071 components: - type: Transform - pos: 65.582985,63.683205 - parent: 2 - - uid: 1083 + pos: -18.5,61.5 + parent: 16527 + - uid: 18072 components: - type: Transform - pos: 7.4471793,20.60081 - parent: 2 - - uid: 1084 + pos: -18.5,60.5 + parent: 16527 + - uid: 18073 components: - type: Transform - pos: 8.547624,9.547516 - parent: 2 - - uid: 1085 + pos: -17.5,64.5 + parent: 16527 + - uid: 18074 components: - type: Transform - pos: 42.578243,68.72275 - parent: 2 - - uid: 1086 + pos: -17.5,63.5 + parent: 16527 + - uid: 18075 components: - type: Transform - pos: 24.533772,24.705446 - parent: 2 - - uid: 17716 + pos: -17.5,62.5 + parent: 16527 + - uid: 18076 components: - type: Transform - pos: 15.756577,33.682777 - parent: 16504 - - uid: 17717 + pos: -17.5,61.5 + parent: 16527 + - uid: 18077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.530783,34.59691 - parent: 16504 -- proto: BoxFolderGreen - entities: - - uid: 1087 + pos: -17.5,60.5 + parent: 16527 + - uid: 18078 components: - type: Transform - pos: 18.24131,20.365225 - parent: 2 -- proto: BoxFolderRed - entities: - - uid: 1088 + pos: -21.5,59.5 + parent: 16527 + - uid: 18079 components: - type: Transform - pos: 51.598156,31.609776 - parent: 2 - - uid: 1089 + pos: -21.5,58.5 + parent: 16527 + - uid: 18080 components: - type: Transform - pos: 7.4106236,21.75367 - parent: 2 - - uid: 1090 + pos: -20.5,59.5 + parent: 16527 + - uid: 18081 components: - type: Transform - pos: 7.575737,21.66194 - parent: 2 - - uid: 1091 + pos: -20.5,58.5 + parent: 16527 + - uid: 18082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.476192,21.506025 - parent: 2 -- proto: BoxFolderWhite - entities: - - uid: 1093 + pos: -19.5,59.5 + parent: 16527 + - uid: 18083 components: - type: Transform - pos: 47.475967,9.561237 - parent: 2 - - uid: 1094 + pos: -19.5,58.5 + parent: 16527 + - uid: 18084 components: - type: Transform - pos: 68.3371,10.698311 - parent: 2 -- proto: BoxFolderYellow - entities: - - uid: 1095 + pos: -18.5,59.5 + parent: 16527 + - uid: 18085 components: - type: Transform - pos: 7.462741,11.53508 - parent: 2 - - uid: 1096 + pos: -18.5,58.5 + parent: 16527 + - uid: 18086 components: - type: Transform - pos: 1.5635915,3.7334058 - parent: 2 - - uid: 1097 + pos: -17.5,59.5 + parent: 16527 + - uid: 18087 components: - type: Transform - pos: 37.560665,69.60916 - parent: 2 -- proto: BoxingBell - entities: - - uid: 6606 + pos: -17.5,58.5 + parent: 16527 + - uid: 18088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,29.5 - parent: 2 -- proto: BoxLatexGloves - entities: - - uid: 1098 + pos: -22.5,65.5 + parent: 16527 + - uid: 18089 components: - type: Transform - pos: 52.51747,-4.365857 - parent: 2 -- proto: BoxLightMixed - entities: - - uid: 1099 + pos: -22.5,66.5 + parent: 16527 + - uid: 18090 components: - type: Transform - pos: 67.4525,37.568535 - parent: 2 -- proto: BoxMesonScanners - entities: - - uid: 1100 + pos: -22.5,67.5 + parent: 16527 + - uid: 18091 components: - type: Transform - pos: 43.38193,62.120964 - parent: 2 -- proto: BoxMouthSwab - entities: - - uid: 21562 + pos: -22.5,68.5 + parent: 16527 + - uid: 18092 components: - type: Transform - pos: 35.45112,47.524704 - parent: 2 -- proto: BoxPerformer - entities: - - uid: 22488 + pos: -22.5,69.5 + parent: 16527 + - uid: 18093 components: - type: Transform - pos: 33.530327,-2.3209026 - parent: 2 -- proto: BoxPillCanister - entities: - - uid: 22486 + pos: -22.5,70.5 + parent: 16527 + - uid: 18094 components: - type: Transform - pos: 58.73327,1.5980728 - parent: 2 - - uid: 22487 + pos: -22.5,71.5 + parent: 16527 + - uid: 18095 components: - type: Transform - pos: 58.717644,2.4886978 - parent: 2 -- proto: BoxSechud - entities: - - uid: 22477 + pos: -22.5,72.5 + parent: 16527 + - uid: 18096 components: - type: Transform - pos: 57.866272,18.664032 - parent: 2 -- proto: BoxShellTranquilizer - entities: - - uid: 1048 + pos: -22.5,73.5 + parent: 16527 + - uid: 18097 components: - type: Transform - parent: 1046 - - type: Physics - canCollide: False -- proto: BoxSterileMask - entities: - - uid: 1101 + pos: -22.5,74.5 + parent: 16527 + - uid: 18098 components: - type: Transform - pos: 20.5485,0.594677 - parent: 2 - - uid: 1102 + pos: -22.5,75.5 + parent: 16527 + - uid: 18099 components: - type: Transform - pos: 52.470596,-4.803357 - parent: 2 -- proto: BoxSyringe - entities: - - uid: 1103 + pos: -22.5,76.5 + parent: 16527 + - uid: 18100 components: - type: Transform - pos: 44.675873,8.621145 - parent: 2 - - uid: 1104 + pos: -22.5,77.5 + parent: 16527 + - uid: 18101 components: - type: Transform - pos: 57.566856,-3.30048 - parent: 2 - - uid: 21555 + pos: -22.5,78.5 + parent: 16527 + - uid: 18102 components: - type: Transform - pos: 35.339718,49.67768 - parent: 2 -- proto: BoxTrashbag - entities: - - uid: 1105 + pos: -22.5,79.5 + parent: 16527 + - uid: 18103 components: - type: Transform - pos: 3.5887227,24.527626 - parent: 2 -- proto: BrbSign - entities: - - uid: 1106 + pos: -22.5,80.5 + parent: 16527 + - uid: 18104 components: - type: Transform - pos: 16.58672,21.520056 - parent: 2 -- proto: BriefcaseBrownFilled - entities: - - uid: 1107 + pos: -22.5,81.5 + parent: 16527 + - uid: 18105 components: - type: Transform - pos: 9.49619,23.804527 - parent: 2 - - uid: 1108 + pos: -22.5,82.5 + parent: 16527 + - uid: 18106 components: - type: Transform - pos: 9.422807,23.529339 - parent: 2 -- proto: BrigTimer - entities: - - uid: 1109 + pos: -22.5,83.5 + parent: 16527 + - uid: 18107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,18.5 - parent: 2 - - uid: 1110 + pos: -21.5,65.5 + parent: 16527 + - uid: 18108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,18.5 - parent: 2 - - uid: 1111 + pos: -21.5,66.5 + parent: 16527 + - uid: 18109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,21.5 - parent: 2 - - uid: 1112 + pos: -21.5,67.5 + parent: 16527 + - uid: 18110 components: - type: Transform - pos: 41.5,24.5 - parent: 2 - - uid: 1113 + pos: -21.5,68.5 + parent: 16527 + - uid: 18111 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,21.5 - parent: 2 - - uid: 1114 + pos: -21.5,69.5 + parent: 16527 + - uid: 18112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,7.5 - parent: 2 - - uid: 1115 + pos: -21.5,70.5 + parent: 16527 + - uid: 18113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,7.5 - parent: 2 - - uid: 17718 + pos: -21.5,71.5 + parent: 16527 + - uid: 18114 components: - - type: MetaData - name: таймер - type: Transform - pos: 2.5,7.5 - parent: 16504 - - type: SignalTimer - label: wait - delay: 6 - - uid: 17719 + pos: -21.5,72.5 + parent: 16527 + - uid: 18115 components: - - type: MetaData - name: таймер - type: Transform - pos: 4.5,4.5 - parent: 16504 - - type: SignalTimer - label: wait - delay: 6 -- proto: BrokenBottle - entities: - - uid: 1116 + pos: -21.5,73.5 + parent: 16527 + - uid: 18116 components: - type: Transform - pos: 26.469122,-10.71988 - parent: 2 -- proto: BrokenEnergyShield - entities: - - uid: 10409 + pos: -21.5,74.5 + parent: 16527 + - uid: 18117 components: - type: Transform - pos: 12.973543,58.14522 - parent: 2 - - uid: 17720 + pos: -21.5,75.5 + parent: 16527 + - uid: 18118 components: - type: Transform - pos: 11.918396,8.819647 - parent: 16504 - - uid: 17721 + pos: -21.5,76.5 + parent: 16527 + - uid: 18119 components: - type: Transform - pos: 12.790003,7.8718934 - parent: 16504 - - uid: 17722 + pos: -21.5,77.5 + parent: 16527 + - uid: 18120 components: - type: Transform - pos: 11.618128,10.840643 - parent: 16504 -- proto: Brutepack - entities: - - uid: 17723 + pos: -21.5,78.5 + parent: 16527 + - uid: 18121 components: - type: Transform - pos: 17.719212,31.52318 - parent: 16504 -- proto: Brutepack1 - entities: - - uid: 17724 + pos: -21.5,79.5 + parent: 16527 + - uid: 18122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.490046,36.642727 - parent: 16504 - - uid: 17725 + pos: -21.5,80.5 + parent: 16527 + - uid: 18123 components: - type: Transform - pos: 15.469213,33.700264 - parent: 16504 -- proto: Bucket - entities: - - uid: 1117 + pos: -21.5,81.5 + parent: 16527 + - uid: 18124 components: - type: Transform - pos: 68.56874,47.504078 - parent: 2 - - uid: 1118 + pos: -21.5,82.5 + parent: 16527 + - uid: 18125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.537544,49.471333 - parent: 2 - - uid: 1119 + pos: -21.5,83.5 + parent: 16527 + - uid: 18126 components: - type: Transform - pos: 59.343822,38.159485 - parent: 2 - - uid: 1120 + pos: -20.5,65.5 + parent: 16527 + - uid: 18127 components: - type: Transform - pos: 58.081383,41.304893 - parent: 2 - - uid: 1121 + pos: -20.5,66.5 + parent: 16527 + - uid: 18128 components: - type: Transform - pos: 56.603107,79.41263 - parent: 2 - - uid: 17726 + pos: -20.5,67.5 + parent: 16527 + - uid: 18129 components: - type: Transform - pos: 11.308048,28.964308 - parent: 16504 - - uid: 18655 + pos: -20.5,68.5 + parent: 16527 + - uid: 18130 components: - type: Transform - pos: 37.542587,48.78989 - parent: 2 - - uid: 19388 + pos: -20.5,69.5 + parent: 16527 + - uid: 18131 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.995712,49.555515 - parent: 2 - - uid: 19600 + pos: -20.5,70.5 + parent: 16527 + - uid: 18132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.120712,53.72739 - parent: 2 -- proto: ButtonFrameCaution - entities: - - uid: 1122 + pos: -20.5,71.5 + parent: 16527 + - uid: 18133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,9.5 - parent: 2 -- proto: C4 - entities: - - uid: 17728 + pos: -20.5,72.5 + parent: 16527 + - uid: 18134 components: - type: Transform - parent: 17727 - - type: Physics - canCollide: False - - uid: 17730 + pos: -20.5,73.5 + parent: 16527 + - uid: 18135 components: - type: Transform - parent: 17729 - - type: Physics - canCollide: False - - uid: 17732 + pos: -20.5,74.5 + parent: 16527 + - uid: 18136 components: - type: Transform - parent: 17731 - - type: Physics - canCollide: False -- proto: CableApcExtension - entities: - - uid: 187 + pos: -20.5,75.5 + parent: 16527 + - uid: 18137 components: - type: Transform - pos: 19.5,42.5 - parent: 2 - - uid: 210 + pos: -20.5,76.5 + parent: 16527 + - uid: 18138 components: - type: Transform - pos: 27.5,42.5 - parent: 2 - - uid: 340 + pos: -20.5,77.5 + parent: 16527 + - uid: 18139 components: - type: Transform - pos: 51.5,35.5 - parent: 2 - - uid: 342 + pos: -20.5,78.5 + parent: 16527 + - uid: 18140 components: - type: Transform - pos: 41.5,56.5 - parent: 2 - - uid: 881 + pos: -20.5,79.5 + parent: 16527 + - uid: 18141 components: - type: Transform - pos: 19.5,43.5 - parent: 2 - - uid: 898 + pos: -20.5,80.5 + parent: 16527 + - uid: 18142 components: - type: Transform - pos: 64.5,9.5 - parent: 2 - - uid: 1044 + pos: -20.5,81.5 + parent: 16527 + - uid: 18143 components: - type: Transform - pos: 26.5,43.5 - parent: 2 - - uid: 1092 + pos: -20.5,82.5 + parent: 16527 + - uid: 18144 components: - type: Transform - pos: 24.5,47.5 - parent: 2 - - uid: 1123 + pos: -20.5,83.5 + parent: 16527 + - uid: 18145 components: - type: Transform - pos: 46.5,100.5 - parent: 2 - - uid: 1124 + pos: -19.5,65.5 + parent: 16527 + - uid: 18146 components: - type: Transform - pos: 47.5,78.5 - parent: 2 - - uid: 1125 + pos: -19.5,66.5 + parent: 16527 + - uid: 18147 components: - type: Transform - pos: 36.5,1.5 - parent: 2 - - uid: 1126 + pos: -19.5,67.5 + parent: 16527 + - uid: 18148 components: - type: Transform - pos: 15.5,80.5 - parent: 2 - - uid: 1127 + pos: -19.5,68.5 + parent: 16527 + - uid: 18149 components: - type: Transform - pos: 46.5,89.5 - parent: 2 - - uid: 1128 + pos: -19.5,69.5 + parent: 16527 + - uid: 18150 components: - type: Transform - pos: 54.5,44.5 - parent: 2 - - uid: 1129 + pos: -19.5,70.5 + parent: 16527 + - uid: 18151 components: - type: Transform - pos: 52.5,44.5 - parent: 2 - - uid: 1130 + pos: -19.5,71.5 + parent: 16527 + - uid: 18152 components: - type: Transform - pos: 53.5,44.5 - parent: 2 - - uid: 1131 + pos: -19.5,72.5 + parent: 16527 + - uid: 18153 components: - type: Transform - pos: 75.5,6.5 - parent: 2 - - uid: 1132 + pos: -19.5,73.5 + parent: 16527 + - uid: 18154 components: - type: Transform - pos: 46.5,92.5 - parent: 2 - - uid: 1133 + pos: -19.5,74.5 + parent: 16527 + - uid: 18155 components: - type: Transform - pos: 46.5,94.5 - parent: 2 - - uid: 1134 + pos: -19.5,75.5 + parent: 16527 + - uid: 18156 components: - type: Transform - pos: 46.5,90.5 - parent: 2 - - uid: 1135 + pos: -19.5,76.5 + parent: 16527 + - uid: 18157 components: - type: Transform - pos: 46.5,91.5 - parent: 2 - - uid: 1136 + pos: -19.5,77.5 + parent: 16527 + - uid: 18158 components: - type: Transform - pos: 46.5,97.5 - parent: 2 - - uid: 1137 + pos: -19.5,78.5 + parent: 16527 + - uid: 18159 components: - type: Transform - pos: 46.5,95.5 - parent: 2 - - uid: 1138 + pos: -19.5,79.5 + parent: 16527 + - uid: 18160 components: - type: Transform - pos: 46.5,93.5 - parent: 2 - - uid: 1139 + pos: -19.5,80.5 + parent: 16527 + - uid: 18161 components: - type: Transform - pos: 41.5,23.5 - parent: 2 - - uid: 1140 + pos: -19.5,81.5 + parent: 16527 + - uid: 18162 components: - type: Transform - pos: 58.5,40.5 - parent: 2 - - uid: 1141 + pos: -19.5,82.5 + parent: 16527 + - uid: 18163 components: - type: Transform - pos: 48.5,81.5 - parent: 2 - - uid: 1142 + pos: -19.5,83.5 + parent: 16527 + - uid: 18164 components: - type: Transform - pos: 46.5,86.5 - parent: 2 - - uid: 1143 + pos: -18.5,65.5 + parent: 16527 + - uid: 18165 components: - type: Transform - pos: 74.5,3.5 - parent: 2 - - uid: 1144 + pos: -18.5,66.5 + parent: 16527 + - uid: 18166 components: - type: Transform - pos: 53.5,-2.5 - parent: 2 - - uid: 1145 + pos: -18.5,67.5 + parent: 16527 + - uid: 18167 components: - type: Transform - pos: 55.5,-0.5 - parent: 2 - - uid: 1146 + pos: -18.5,68.5 + parent: 16527 + - uid: 18168 components: - type: Transform - pos: 1.5,16.5 - parent: 2 - - uid: 1147 + pos: -18.5,69.5 + parent: 16527 + - uid: 18169 components: - type: Transform - pos: 0.5,16.5 - parent: 2 - - uid: 1150 + pos: -18.5,70.5 + parent: 16527 + - uid: 18170 components: - type: Transform - pos: 8.5,6.5 - parent: 2 - - uid: 1151 + pos: -18.5,71.5 + parent: 16527 + - uid: 18171 components: - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 1152 + pos: -18.5,72.5 + parent: 16527 + - uid: 18172 components: - type: Transform - pos: 6.5,6.5 - parent: 2 - - uid: 1153 + pos: -18.5,73.5 + parent: 16527 + - uid: 18173 components: - type: Transform - pos: 5.5,6.5 - parent: 2 - - uid: 1154 + pos: -18.5,74.5 + parent: 16527 + - uid: 18174 components: - type: Transform - pos: 4.5,6.5 - parent: 2 - - uid: 1155 + pos: -18.5,75.5 + parent: 16527 + - uid: 18175 components: - type: Transform - pos: 3.5,6.5 - parent: 2 - - uid: 1156 + pos: -18.5,76.5 + parent: 16527 + - uid: 18176 components: - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 1157 + pos: -18.5,77.5 + parent: 16527 + - uid: 18177 components: - type: Transform - pos: 1.5,6.5 - parent: 2 - - uid: 1158 + pos: -18.5,78.5 + parent: 16527 + - uid: 18178 components: - type: Transform - pos: 0.5,6.5 - parent: 2 - - uid: 1159 + pos: -18.5,79.5 + parent: 16527 + - uid: 18179 components: - type: Transform - pos: -0.5,6.5 - parent: 2 - - uid: 1160 + pos: -18.5,80.5 + parent: 16527 + - uid: 18180 components: - type: Transform - pos: 1.5,7.5 - parent: 2 - - uid: 1161 + pos: -18.5,81.5 + parent: 16527 + - uid: 18181 components: - type: Transform - pos: 1.5,8.5 - parent: 2 - - uid: 1162 + pos: -18.5,82.5 + parent: 16527 + - uid: 18182 components: - type: Transform - pos: 0.5,8.5 - parent: 2 - - uid: 1163 + pos: -18.5,83.5 + parent: 16527 + - uid: 18183 components: - type: Transform - pos: -0.5,8.5 - parent: 2 - - uid: 1164 + pos: -17.5,65.5 + parent: 16527 + - uid: 18184 components: - type: Transform - pos: -1.5,8.5 - parent: 2 - - uid: 1165 + pos: -17.5,66.5 + parent: 16527 + - uid: 18185 components: - type: Transform - pos: 2.5,8.5 - parent: 2 - - uid: 1166 + pos: -17.5,67.5 + parent: 16527 + - uid: 18186 components: - type: Transform - pos: 3.5,8.5 - parent: 2 - - uid: 1167 + pos: -17.5,68.5 + parent: 16527 + - uid: 18187 components: - type: Transform - pos: 4.5,8.5 - parent: 2 - - uid: 1168 + pos: -17.5,69.5 + parent: 16527 + - uid: 18188 components: - type: Transform - pos: 5.5,8.5 - parent: 2 - - uid: 1169 + pos: -17.5,70.5 + parent: 16527 + - uid: 18189 components: - type: Transform - pos: 6.5,8.5 - parent: 2 - - uid: 1170 + pos: -17.5,71.5 + parent: 16527 + - uid: 18190 components: - type: Transform - pos: 7.5,8.5 - parent: 2 - - uid: 1171 + pos: -17.5,72.5 + parent: 16527 + - uid: 18191 components: - type: Transform - pos: 8.5,8.5 - parent: 2 - - uid: 1172 + pos: -17.5,73.5 + parent: 16527 + - uid: 18192 components: - type: Transform - pos: 9.5,8.5 - parent: 2 - - uid: 1173 + pos: -17.5,74.5 + parent: 16527 + - uid: 18193 components: - type: Transform - pos: 1.5,10.5 - parent: 2 - - uid: 1174 + pos: -17.5,75.5 + parent: 16527 + - uid: 18194 components: - type: Transform - pos: 2.5,10.5 - parent: 2 - - uid: 1175 + pos: -17.5,76.5 + parent: 16527 + - uid: 18195 components: - type: Transform - pos: 3.5,10.5 - parent: 2 - - uid: 1176 + pos: -17.5,77.5 + parent: 16527 + - uid: 18196 components: - type: Transform - pos: 4.5,10.5 - parent: 2 - - uid: 1178 + pos: -17.5,78.5 + parent: 16527 + - uid: 18197 components: - type: Transform - pos: 6.5,10.5 - parent: 2 - - uid: 1179 + pos: -17.5,79.5 + parent: 16527 + - uid: 18198 components: - type: Transform - pos: 7.5,10.5 - parent: 2 - - uid: 1180 + pos: -17.5,80.5 + parent: 16527 + - uid: 18199 components: - type: Transform - pos: 8.5,10.5 - parent: 2 - - uid: 1181 + pos: -17.5,81.5 + parent: 16527 + - uid: 18200 components: - type: Transform - pos: 9.5,10.5 - parent: 2 - - uid: 1182 + pos: -17.5,82.5 + parent: 16527 + - uid: 18201 components: - type: Transform - pos: 7.5,9.5 - parent: 2 - - uid: 1183 + pos: -17.5,83.5 + parent: 16527 + - uid: 18202 components: - type: Transform - pos: 5.5,11.5 - parent: 2 - - uid: 1184 + pos: -29.5,65.5 + parent: 16527 + - uid: 18203 components: - type: Transform - pos: 5.5,9.5 - parent: 2 - - uid: 1185 + pos: -28.5,65.5 + parent: 16527 + - uid: 18204 components: - type: Transform - pos: 5.5,12.5 - parent: 2 - - uid: 1186 + pos: -27.5,65.5 + parent: 16527 + - uid: 18205 components: - type: Transform - pos: 5.5,13.5 - parent: 2 - - uid: 1187 + pos: -26.5,65.5 + parent: 16527 + - uid: 18206 components: - type: Transform - pos: 4.5,13.5 - parent: 2 - - uid: 1188 + pos: -25.5,65.5 + parent: 16527 + - uid: 18207 components: - type: Transform - pos: 3.5,13.5 - parent: 2 - - uid: 1189 + pos: -24.5,65.5 + parent: 16527 + - uid: 18208 components: - type: Transform - pos: 2.5,13.5 - parent: 2 - - uid: 1190 + pos: -23.5,65.5 + parent: 16527 + - uid: 18209 components: - type: Transform - pos: 1.5,13.5 - parent: 2 - - uid: 1191 + pos: -23.5,84.5 + parent: 16527 + - uid: 18210 components: - type: Transform - pos: 0.5,13.5 - parent: 2 - - uid: 1192 + pos: -28.5,66.5 + parent: 16527 + - uid: 18211 components: - type: Transform - pos: 1.5,14.5 - parent: 2 - - uid: 1193 + pos: -27.5,66.5 + parent: 16527 + - uid: 18212 components: - type: Transform - pos: 1.5,15.5 - parent: 2 - - uid: 1194 + pos: -26.5,66.5 + parent: 16527 + - uid: 18213 components: - type: Transform - pos: 5.5,14.5 - parent: 2 - - uid: 1195 + pos: -25.5,66.5 + parent: 16527 + - uid: 18214 components: - type: Transform - pos: 6.5,14.5 - parent: 2 - - uid: 1196 + pos: -24.5,66.5 + parent: 16527 + - uid: 18215 components: - type: Transform - pos: 7.5,14.5 - parent: 2 - - uid: 1197 + pos: -23.5,66.5 + parent: 16527 + - uid: 18216 components: - type: Transform - pos: 8.5,14.5 - parent: 2 - - uid: 1198 + pos: -27.5,67.5 + parent: 16527 + - uid: 18217 components: - type: Transform - pos: 9.5,14.5 - parent: 2 - - uid: 1199 + pos: -26.5,67.5 + parent: 16527 + - uid: 18218 components: - type: Transform - pos: 8.5,15.5 - parent: 2 - - uid: 1200 + pos: -25.5,67.5 + parent: 16527 + - uid: 18219 components: - type: Transform - pos: 8.5,13.5 - parent: 2 - - uid: 1201 + pos: -24.5,67.5 + parent: 16527 + - uid: 18220 components: - type: Transform - pos: 8.5,12.5 - parent: 2 - - uid: 1202 + pos: -23.5,67.5 + parent: 16527 + - uid: 18221 components: - type: Transform - pos: 4.5,14.5 - parent: 2 - - uid: 1203 + pos: -24.5,68.5 + parent: 16527 + - uid: 18222 components: - type: Transform - pos: 4.5,15.5 - parent: 2 - - uid: 1204 + pos: -23.5,68.5 + parent: 16527 + - uid: 18223 components: - type: Transform - pos: 8.5,3.5 - parent: 2 - - uid: 1205 + pos: -24.5,69.5 + parent: 16527 + - uid: 18224 components: - type: Transform - pos: 7.5,3.5 - parent: 2 - - uid: 1206 + pos: -23.5,69.5 + parent: 16527 + - uid: 18225 components: - type: Transform - pos: 6.5,3.5 - parent: 2 - - uid: 1207 + pos: -23.5,70.5 + parent: 16527 + - uid: 18226 components: - type: Transform - pos: 5.5,3.5 - parent: 2 - - uid: 1208 + pos: 16.5,72.5 + parent: 16527 + - uid: 18227 components: - type: Transform - pos: 4.5,3.5 - parent: 2 - - uid: 1209 + pos: -23.5,83.5 + parent: 16527 + - uid: 18228 components: - type: Transform - pos: 3.5,3.5 - parent: 2 - - uid: 1210 + pos: -23.5,85.5 + parent: 16527 + - uid: 18229 components: - type: Transform - pos: 2.5,3.5 - parent: 2 - - uid: 1211 + pos: -22.5,84.5 + parent: 16527 + - uid: 18230 components: - type: Transform - pos: 1.5,3.5 - parent: 2 - - uid: 1212 + pos: -22.5,85.5 + parent: 16527 + - uid: 18231 components: - type: Transform - pos: 4.5,2.5 - parent: 2 - - uid: 1213 + pos: -22.5,86.5 + parent: 16527 + - uid: 18232 components: - type: Transform - pos: 4.5,1.5 - parent: 2 - - uid: 1214 + pos: -21.5,84.5 + parent: 16527 + - uid: 18233 components: - type: Transform - pos: 7.5,2.5 - parent: 2 - - uid: 1215 + pos: -21.5,85.5 + parent: 16527 + - uid: 18234 components: - type: Transform - pos: 7.5,1.5 - parent: 2 - - uid: 1216 + pos: -21.5,86.5 + parent: 16527 + - uid: 18235 components: - type: Transform - pos: 1.5,2.5 - parent: 2 - - uid: 1217 + pos: -20.5,84.5 + parent: 16527 + - uid: 18236 components: - type: Transform - pos: 1.5,1.5 - parent: 2 - - uid: 1218 + pos: -20.5,85.5 + parent: 16527 + - uid: 18237 components: - type: Transform - pos: 6.5,4.5 - parent: 2 - - uid: 1219 + pos: -20.5,86.5 + parent: 16527 + - uid: 18238 components: - type: Transform - pos: 43.5,50.5 - parent: 2 - - uid: 1220 + pos: -19.5,84.5 + parent: 16527 + - uid: 18239 components: - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 1221 + pos: -19.5,85.5 + parent: 16527 + - uid: 18240 components: - type: Transform - pos: 27.5,23.5 - parent: 2 - - uid: 1222 + pos: -19.5,86.5 + parent: 16527 + - uid: 18241 components: - type: Transform - pos: 27.5,24.5 - parent: 2 - - uid: 1223 + pos: -18.5,84.5 + parent: 16527 + - uid: 18242 components: - type: Transform - pos: 27.5,25.5 - parent: 2 - - uid: 1224 + pos: -18.5,85.5 + parent: 16527 + - uid: 18243 components: - type: Transform - pos: 27.5,26.5 - parent: 2 - - uid: 1225 + pos: -18.5,86.5 + parent: 16527 + - uid: 18244 components: - type: Transform - pos: 27.5,27.5 - parent: 2 - - uid: 1226 + pos: -17.5,84.5 + parent: 16527 + - uid: 18245 components: - type: Transform - pos: 27.5,28.5 - parent: 2 - - uid: 1227 + pos: -17.5,85.5 + parent: 16527 + - uid: 18246 components: - type: Transform - pos: 27.5,29.5 - parent: 2 - - uid: 1228 + pos: -17.5,86.5 + parent: 16527 + - uid: 18247 components: - type: Transform - pos: 27.5,30.5 - parent: 2 - - uid: 1229 + pos: -22.5,87.5 + parent: 16527 + - uid: 18248 components: - type: Transform - pos: 26.5,30.5 - parent: 2 - - uid: 1230 + pos: -21.5,87.5 + parent: 16527 + - uid: 18249 components: - type: Transform - pos: 25.5,30.5 - parent: 2 - - uid: 1231 + pos: -20.5,87.5 + parent: 16527 + - uid: 18250 components: - type: Transform - pos: 24.5,30.5 - parent: 2 - - uid: 1232 + pos: -19.5,87.5 + parent: 16527 + - uid: 18251 components: - type: Transform - pos: 23.5,30.5 - parent: 2 - - uid: 1233 + pos: -18.5,87.5 + parent: 16527 + - uid: 18252 components: - type: Transform - pos: 22.5,30.5 - parent: 2 - - uid: 1234 + pos: -18.5,88.5 + parent: 16527 + - uid: 18253 components: - type: Transform - pos: 21.5,30.5 - parent: 2 - - uid: 1235 + pos: -19.5,88.5 + parent: 16527 + - uid: 18254 components: - type: Transform - pos: 20.5,30.5 - parent: 2 - - uid: 1236 + pos: -20.5,88.5 + parent: 16527 + - uid: 18255 components: - type: Transform - pos: 20.5,29.5 - parent: 2 - - uid: 1237 + pos: -21.5,88.5 + parent: 16527 + - uid: 18256 components: - type: Transform - pos: 20.5,28.5 - parent: 2 - - uid: 1238 + pos: -17.5,87.5 + parent: 16527 + - uid: 18257 components: - type: Transform - pos: 20.5,27.5 - parent: 2 - - uid: 1239 + pos: -15.5,88.5 + parent: 16527 + - uid: 18258 components: - type: Transform - pos: 20.5,26.5 - parent: 2 - - uid: 1240 + pos: -14.5,88.5 + parent: 16527 + - uid: 18259 components: - type: Transform - pos: 20.5,25.5 - parent: 2 - - uid: 1241 + pos: -16.5,87.5 + parent: 16527 + - uid: 18260 components: - type: Transform - pos: 20.5,24.5 - parent: 2 - - uid: 1242 + pos: -16.5,86.5 + parent: 16527 + - uid: 18261 components: - type: Transform - pos: 21.5,27.5 - parent: 2 - - uid: 1243 + pos: -16.5,85.5 + parent: 16527 + - uid: 18262 components: - type: Transform - pos: 22.5,27.5 - parent: 2 - - uid: 1244 + pos: -16.5,84.5 + parent: 16527 + - uid: 18263 components: - type: Transform - pos: 23.5,27.5 - parent: 2 - - uid: 1245 + pos: -16.5,83.5 + parent: 16527 + - uid: 18264 components: - type: Transform - pos: 24.5,27.5 - parent: 2 - - uid: 1246 + pos: -16.5,82.5 + parent: 16527 + - uid: 18265 components: - type: Transform - pos: 25.5,27.5 - parent: 2 - - uid: 1247 + pos: -15.5,87.5 + parent: 16527 + - uid: 18266 components: - type: Transform - pos: 26.5,27.5 - parent: 2 - - uid: 1248 + pos: -15.5,86.5 + parent: 16527 + - uid: 18267 components: - type: Transform - pos: 19.5,25.5 - parent: 2 - - uid: 1249 + pos: -15.5,85.5 + parent: 16527 + - uid: 18268 components: - type: Transform - pos: 18.5,25.5 - parent: 2 - - uid: 1250 + pos: -15.5,84.5 + parent: 16527 + - uid: 18269 components: - type: Transform - pos: 17.5,25.5 - parent: 2 - - uid: 1251 + pos: -15.5,83.5 + parent: 16527 + - uid: 18270 components: - type: Transform - pos: 16.5,25.5 - parent: 2 - - uid: 1252 + pos: -15.5,82.5 + parent: 16527 + - uid: 18271 components: - type: Transform - pos: 15.5,25.5 - parent: 2 - - uid: 1253 + pos: -14.5,87.5 + parent: 16527 + - uid: 18272 components: - type: Transform - pos: 1.5,33.5 - parent: 2 - - uid: 1254 + pos: -14.5,86.5 + parent: 16527 + - uid: 18273 components: - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 1255 + pos: -14.5,85.5 + parent: 16527 + - uid: 18274 components: - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 1256 + pos: -14.5,84.5 + parent: 16527 + - uid: 18275 components: - type: Transform - pos: 30.5,25.5 - parent: 2 - - uid: 1257 + pos: -14.5,83.5 + parent: 16527 + - uid: 18276 components: - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 1258 + pos: -14.5,82.5 + parent: 16527 + - uid: 18277 components: - type: Transform - pos: 32.5,25.5 - parent: 2 - - uid: 1259 + pos: -13.5,87.5 + parent: 16527 + - uid: 18278 components: - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 1260 + pos: -13.5,86.5 + parent: 16527 + - uid: 18279 components: - type: Transform - pos: 34.5,25.5 - parent: 2 - - uid: 1261 + pos: -13.5,85.5 + parent: 16527 + - uid: 18280 components: - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 1262 + pos: -13.5,84.5 + parent: 16527 + - uid: 18281 components: - type: Transform - pos: 29.5,28.5 - parent: 2 - - uid: 1263 + pos: -13.5,83.5 + parent: 16527 + - uid: 18282 components: - type: Transform - pos: 24.5,26.5 - parent: 2 - - uid: 1264 + pos: -13.5,82.5 + parent: 16527 + - uid: 18283 components: - type: Transform - pos: 24.5,25.5 - parent: 2 - - uid: 1265 + pos: -12.5,87.5 + parent: 16527 + - uid: 18284 components: - type: Transform - pos: 24.5,24.5 - parent: 2 - - uid: 1266 + pos: -12.5,86.5 + parent: 16527 + - uid: 18285 components: - type: Transform - pos: 29.5,27.5 - parent: 2 - - uid: 1267 + pos: -12.5,85.5 + parent: 16527 + - uid: 18286 components: - type: Transform - pos: 29.5,29.5 - parent: 2 - - uid: 1268 + pos: -12.5,84.5 + parent: 16527 + - uid: 18287 components: - type: Transform - pos: 21.5,24.5 - parent: 2 - - uid: 1269 + pos: -12.5,83.5 + parent: 16527 + - uid: 18288 components: - type: Transform - pos: 22.5,24.5 - parent: 2 - - uid: 1270 + pos: -12.5,82.5 + parent: 16527 + - uid: 18289 components: - type: Transform - pos: 23.5,24.5 - parent: 2 - - uid: 1271 + pos: -11.5,87.5 + parent: 16527 + - uid: 18290 components: - type: Transform - pos: 25.5,24.5 - parent: 2 - - uid: 1272 + pos: -11.5,86.5 + parent: 16527 + - uid: 18291 components: - type: Transform - pos: 26.5,24.5 - parent: 2 - - uid: 1273 + pos: -11.5,85.5 + parent: 16527 + - uid: 18292 components: - type: Transform - pos: 29.5,23.5 - parent: 2 - - uid: 1274 + pos: -11.5,84.5 + parent: 16527 + - uid: 18293 components: - type: Transform - pos: 29.5,22.5 - parent: 2 - - uid: 1275 + pos: -11.5,83.5 + parent: 16527 + - uid: 18294 components: - type: Transform - pos: 29.5,21.5 - parent: 2 - - uid: 1276 + pos: -11.5,82.5 + parent: 16527 + - uid: 18295 components: - type: Transform - pos: 30.5,23.5 - parent: 2 - - uid: 1277 + pos: -10.5,87.5 + parent: 16527 + - uid: 18296 components: - type: Transform - pos: 31.5,23.5 - parent: 2 - - uid: 1278 + pos: -10.5,86.5 + parent: 16527 + - uid: 18297 components: - type: Transform - pos: 32.5,23.5 - parent: 2 - - uid: 1279 + pos: -10.5,85.5 + parent: 16527 + - uid: 18298 components: - type: Transform - pos: 30.5,17.5 - parent: 2 - - uid: 1280 + pos: -10.5,84.5 + parent: 16527 + - uid: 18299 components: - type: Transform - pos: 33.5,23.5 - parent: 2 - - uid: 1281 + pos: -10.5,83.5 + parent: 16527 + - uid: 18300 components: - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 1282 + pos: -10.5,82.5 + parent: 16527 + - uid: 18301 components: - type: Transform - pos: 28.5,17.5 - parent: 2 - - uid: 1283 + pos: -9.5,87.5 + parent: 16527 + - uid: 18302 components: - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 1284 + pos: -9.5,86.5 + parent: 16527 + - uid: 18303 components: - type: Transform - pos: 32.5,17.5 - parent: 2 - - uid: 1285 + pos: -9.5,85.5 + parent: 16527 + - uid: 18304 components: - type: Transform - pos: 33.5,17.5 - parent: 2 - - uid: 1286 + pos: -9.5,84.5 + parent: 16527 + - uid: 18305 components: - type: Transform - pos: 33.5,22.5 - parent: 2 - - uid: 1287 + pos: -9.5,83.5 + parent: 16527 + - uid: 18306 components: - type: Transform - pos: 28.5,21.5 - parent: 2 - - uid: 1288 + pos: -9.5,82.5 + parent: 16527 + - uid: 18307 components: - type: Transform - pos: 28.5,20.5 - parent: 2 - - uid: 1289 + pos: -8.5,87.5 + parent: 16527 + - uid: 18308 components: - type: Transform - pos: 27.5,21.5 - parent: 2 - - uid: 1290 + pos: -8.5,86.5 + parent: 16527 + - uid: 18309 components: - type: Transform - pos: 26.5,21.5 - parent: 2 - - uid: 1291 + pos: -8.5,85.5 + parent: 16527 + - uid: 18310 components: - type: Transform - pos: 25.5,21.5 - parent: 2 - - uid: 1292 + pos: -8.5,84.5 + parent: 16527 + - uid: 18311 components: - type: Transform - pos: 24.5,21.5 - parent: 2 - - uid: 1293 + pos: -8.5,83.5 + parent: 16527 + - uid: 18312 components: - type: Transform - pos: 24.5,20.5 - parent: 2 - - uid: 1294 + pos: -8.5,82.5 + parent: 16527 + - uid: 18313 components: - type: Transform - pos: 23.5,20.5 - parent: 2 - - uid: 1295 + pos: -7.5,87.5 + parent: 16527 + - uid: 18314 components: - type: Transform - pos: 24.5,22.5 - parent: 2 - - uid: 1296 + pos: -7.5,86.5 + parent: 16527 + - uid: 18315 components: - type: Transform - pos: 21.5,20.5 - parent: 2 - - uid: 1297 + pos: -7.5,85.5 + parent: 16527 + - uid: 18316 components: - type: Transform - pos: 21.5,17.5 - parent: 2 - - uid: 1298 + pos: -7.5,84.5 + parent: 16527 + - uid: 18317 components: - type: Transform - pos: 22.5,17.5 - parent: 2 - - uid: 1299 + pos: -7.5,83.5 + parent: 16527 + - uid: 18318 components: - type: Transform - pos: 23.5,17.5 - parent: 2 - - uid: 1300 + pos: -7.5,82.5 + parent: 16527 + - uid: 18319 components: - type: Transform - pos: 24.5,17.5 - parent: 2 - - uid: 1301 + pos: -6.5,87.5 + parent: 16527 + - uid: 18320 components: - type: Transform - pos: 25.5,17.5 - parent: 2 - - uid: 1302 + pos: -6.5,86.5 + parent: 16527 + - uid: 18321 components: - type: Transform - pos: 28.5,16.5 - parent: 2 - - uid: 1303 + pos: -6.5,85.5 + parent: 16527 + - uid: 18322 components: - type: Transform - pos: 23.5,16.5 - parent: 2 - - uid: 1304 + pos: -6.5,84.5 + parent: 16527 + - uid: 18323 components: - type: Transform - pos: 25.5,16.5 - parent: 2 - - uid: 1305 + pos: -6.5,83.5 + parent: 16527 + - uid: 18324 components: - type: Transform - pos: 25.5,18.5 - parent: 2 - - uid: 1306 + pos: -6.5,82.5 + parent: 16527 + - uid: 18325 components: - type: Transform - pos: 23.5,18.5 - parent: 2 - - uid: 1307 + pos: -5.5,87.5 + parent: 16527 + - uid: 18326 components: - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 1308 + pos: -5.5,86.5 + parent: 16527 + - uid: 18327 components: - type: Transform - pos: 19.5,20.5 - parent: 2 - - uid: 1309 + pos: -5.5,85.5 + parent: 16527 + - uid: 18328 components: - type: Transform - pos: 18.5,20.5 - parent: 2 - - uid: 1310 + pos: -5.5,84.5 + parent: 16527 + - uid: 18329 components: - type: Transform - pos: 17.5,20.5 - parent: 2 - - uid: 1311 + pos: -5.5,83.5 + parent: 16527 + - uid: 18330 components: - type: Transform - pos: 18.5,22.5 - parent: 2 - - uid: 1312 + pos: -5.5,82.5 + parent: 16527 + - uid: 18331 components: - type: Transform - pos: 18.5,21.5 - parent: 2 - - uid: 1313 + pos: -4.5,87.5 + parent: 16527 + - uid: 18332 components: - type: Transform - pos: 20.5,22.5 - parent: 2 - - uid: 1314 + pos: -4.5,86.5 + parent: 16527 + - uid: 18333 components: - type: Transform - pos: 20.5,21.5 - parent: 2 - - uid: 1315 + pos: -4.5,85.5 + parent: 16527 + - uid: 18334 components: - type: Transform - pos: 16.5,21.5 - parent: 2 - - uid: 1316 + pos: -4.5,84.5 + parent: 16527 + - uid: 18335 components: - type: Transform - pos: 15.5,21.5 - parent: 2 - - uid: 1317 + pos: -4.5,83.5 + parent: 16527 + - uid: 18336 components: - type: Transform - pos: 17.5,21.5 - parent: 2 - - uid: 1318 + pos: -4.5,82.5 + parent: 16527 + - uid: 18337 components: - type: Transform - pos: 18.5,19.5 - parent: 2 - - uid: 1319 + pos: -3.5,87.5 + parent: 16527 + - uid: 18338 components: - type: Transform - pos: 18.5,18.5 - parent: 2 - - uid: 1320 + pos: -3.5,86.5 + parent: 16527 + - uid: 18339 components: - type: Transform - pos: 18.5,17.5 - parent: 2 - - uid: 1321 + pos: -3.5,85.5 + parent: 16527 + - uid: 18340 components: - type: Transform - pos: 18.5,16.5 - parent: 2 - - uid: 1322 + pos: -3.5,84.5 + parent: 16527 + - uid: 18341 components: - type: Transform - pos: 19.5,16.5 - parent: 2 - - uid: 1323 + pos: -3.5,83.5 + parent: 16527 + - uid: 18342 components: - type: Transform - pos: 20.5,16.5 - parent: 2 - - uid: 1324 + pos: -3.5,82.5 + parent: 16527 + - uid: 18343 components: - type: Transform - pos: 15.5,20.5 - parent: 2 - - uid: 1325 + pos: -2.5,87.5 + parent: 16527 + - uid: 18344 components: - type: Transform - pos: 15.5,19.5 - parent: 2 - - uid: 1326 + pos: -2.5,86.5 + parent: 16527 + - uid: 18345 components: - type: Transform - pos: 15.5,18.5 - parent: 2 - - uid: 1327 + pos: -2.5,85.5 + parent: 16527 + - uid: 18346 components: - type: Transform - pos: 15.5,17.5 - parent: 2 - - uid: 1328 + pos: -2.5,84.5 + parent: 16527 + - uid: 18347 components: - type: Transform - pos: 11.5,18.5 - parent: 2 - - uid: 1329 + pos: -2.5,83.5 + parent: 16527 + - uid: 18348 components: - type: Transform - pos: 25.5,-2.5 - parent: 2 - - uid: 1330 + pos: -2.5,82.5 + parent: 16527 + - uid: 18349 components: - type: Transform - pos: 24.5,-2.5 - parent: 2 - - uid: 1331 + pos: -1.5,87.5 + parent: 16527 + - uid: 18350 components: - type: Transform - pos: 23.5,-2.5 - parent: 2 - - uid: 1332 + pos: -1.5,86.5 + parent: 16527 + - uid: 18351 components: - type: Transform - pos: 22.5,-2.5 - parent: 2 - - uid: 1333 + pos: -1.5,85.5 + parent: 16527 + - uid: 18352 components: - type: Transform - pos: 21.5,-2.5 - parent: 2 - - uid: 1334 + pos: -1.5,84.5 + parent: 16527 + - uid: 18353 components: - type: Transform - pos: 20.5,-2.5 - parent: 2 - - uid: 1335 + pos: -1.5,83.5 + parent: 16527 + - uid: 18354 components: - type: Transform - pos: 19.5,-2.5 - parent: 2 - - uid: 1336 + pos: -1.5,82.5 + parent: 16527 + - uid: 18355 components: - type: Transform - pos: 18.5,-2.5 - parent: 2 - - uid: 1337 + pos: -7.5,81.5 + parent: 16527 + - uid: 18356 components: - type: Transform - pos: 17.5,-2.5 - parent: 2 - - uid: 1338 + pos: -7.5,80.5 + parent: 16527 + - uid: 18357 components: - type: Transform - pos: 16.5,-2.5 - parent: 2 - - uid: 1339 + pos: -7.5,79.5 + parent: 16527 + - uid: 18358 components: - type: Transform - pos: 22.5,-3.5 - parent: 2 - - uid: 1340 + pos: -6.5,81.5 + parent: 16527 + - uid: 18359 components: - type: Transform - pos: 22.5,-4.5 - parent: 2 - - uid: 1341 + pos: -6.5,80.5 + parent: 16527 + - uid: 18360 components: - type: Transform - pos: 24.5,-3.5 - parent: 2 - - uid: 1342 + pos: -6.5,79.5 + parent: 16527 + - uid: 18361 components: - type: Transform - pos: 24.5,-4.5 - parent: 2 - - uid: 1343 + pos: -5.5,81.5 + parent: 16527 + - uid: 18362 components: - type: Transform - pos: 20.5,-3.5 - parent: 2 - - uid: 1344 + pos: -5.5,80.5 + parent: 16527 + - uid: 18363 components: - type: Transform - pos: 20.5,-4.5 - parent: 2 - - uid: 1345 + pos: -5.5,79.5 + parent: 16527 + - uid: 18364 components: - type: Transform - pos: 17.5,-3.5 - parent: 2 - - uid: 1346 + pos: -4.5,81.5 + parent: 16527 + - uid: 18365 components: - type: Transform - pos: 17.5,-4.5 - parent: 2 - - uid: 1347 + pos: -4.5,80.5 + parent: 16527 + - uid: 18366 components: - type: Transform - pos: 17.5,-1.5 - parent: 2 - - uid: 1348 + pos: -4.5,79.5 + parent: 16527 + - uid: 18367 components: - type: Transform - pos: 22.5,-1.5 - parent: 2 - - uid: 1349 + pos: -3.5,81.5 + parent: 16527 + - uid: 18368 components: - type: Transform - pos: 22.5,-0.5 - parent: 2 - - uid: 1350 + pos: -3.5,80.5 + parent: 16527 + - uid: 18369 components: - type: Transform - pos: 22.5,0.5 - parent: 2 - - uid: 1351 + pos: -3.5,79.5 + parent: 16527 + - uid: 18370 components: - type: Transform - pos: 22.5,1.5 - parent: 2 - - uid: 1352 + pos: -2.5,81.5 + parent: 16527 + - uid: 18371 components: - type: Transform - pos: 23.5,-0.5 - parent: 2 - - uid: 1353 + pos: -2.5,80.5 + parent: 16527 + - uid: 18372 components: - type: Transform - pos: 24.5,-0.5 - parent: 2 - - uid: 1354 + pos: -2.5,79.5 + parent: 16527 + - uid: 18373 components: - type: Transform - pos: 21.5,0.5 - parent: 2 - - uid: 1355 + pos: -1.5,81.5 + parent: 16527 + - uid: 18374 components: - type: Transform - pos: 20.5,0.5 - parent: 2 - - uid: 1356 + pos: -1.5,80.5 + parent: 16527 + - uid: 18375 components: - type: Transform - pos: 20.5,1.5 - parent: 2 - - uid: 1357 + pos: -1.5,79.5 + parent: 16527 + - uid: 18376 components: - type: Transform - pos: 20.5,2.5 - parent: 2 - - uid: 1358 + pos: -3.5,78.5 + parent: 16527 + - uid: 18377 components: - type: Transform - pos: 31.5,-1.5 - parent: 2 - - uid: 1359 + pos: -3.5,77.5 + parent: 16527 + - uid: 18378 components: - type: Transform - pos: 30.5,-1.5 - parent: 2 - - uid: 1360 + pos: -3.5,76.5 + parent: 16527 + - uid: 18379 components: - type: Transform - pos: 29.5,-1.5 - parent: 2 - - uid: 1361 + pos: -4.5,78.5 + parent: 16527 + - uid: 18380 components: - type: Transform - pos: 29.5,-2.5 - parent: 2 - - uid: 1362 + pos: -4.5,77.5 + parent: 16527 + - uid: 18381 components: - type: Transform - pos: 28.5,-2.5 - parent: 2 - - uid: 1363 + pos: -4.5,76.5 + parent: 16527 + - uid: 18382 components: - type: Transform - pos: 27.5,-2.5 - parent: 2 - - uid: 1364 + pos: -5.5,78.5 + parent: 16527 + - uid: 18383 components: - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 1365 + pos: -5.5,77.5 + parent: 16527 + - uid: 18384 components: - type: Transform - pos: 26.5,-1.5 - parent: 2 - - uid: 1366 + pos: -5.5,76.5 + parent: 16527 + - uid: 18385 components: - type: Transform - pos: 26.5,-0.5 - parent: 2 - - uid: 1367 + pos: -6.5,78.5 + parent: 16527 + - uid: 18386 components: - type: Transform - pos: 26.5,0.5 - parent: 2 - - uid: 1368 + pos: -6.5,77.5 + parent: 16527 + - uid: 18387 components: - type: Transform - pos: 26.5,1.5 - parent: 2 - - uid: 1369 + pos: -6.5,76.5 + parent: 16527 + - uid: 18388 components: - type: Transform - pos: 27.5,1.5 - parent: 2 - - uid: 1370 + pos: -7.5,78.5 + parent: 16527 + - uid: 18389 components: - type: Transform - pos: 28.5,1.5 - parent: 2 - - uid: 1371 + pos: -7.5,77.5 + parent: 16527 + - uid: 18390 components: - type: Transform - pos: 29.5,1.5 - parent: 2 - - uid: 1372 + pos: -7.5,76.5 + parent: 16527 + - uid: 18391 components: - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 1373 + pos: -7.5,92.5 + parent: 16527 + - uid: 18392 components: - type: Transform - pos: 30.5,0.5 - parent: 2 - - uid: 1374 + pos: -7.5,91.5 + parent: 16527 + - uid: 18393 components: - type: Transform - pos: 30.5,-0.5 - parent: 2 - - uid: 1375 + pos: -7.5,90.5 + parent: 16527 + - uid: 18394 components: - type: Transform - pos: 27.5,-1.5 - parent: 2 - - uid: 1376 + pos: -7.5,89.5 + parent: 16527 + - uid: 18395 components: - type: Transform - pos: 25.5,-10.5 - parent: 2 - - uid: 1377 + pos: -7.5,88.5 + parent: 16527 + - uid: 18396 components: - type: Transform - pos: 24.5,-10.5 - parent: 2 - - uid: 1378 + pos: -6.5,92.5 + parent: 16527 + - uid: 18397 components: - type: Transform - pos: 23.5,-10.5 - parent: 2 - - uid: 1379 + pos: -6.5,91.5 + parent: 16527 + - uid: 18398 components: - type: Transform - pos: 22.5,-10.5 - parent: 2 - - uid: 1380 + pos: -6.5,90.5 + parent: 16527 + - uid: 18399 components: - type: Transform - pos: 21.5,-10.5 - parent: 2 - - uid: 1381 + pos: -6.5,89.5 + parent: 16527 + - uid: 18400 components: - type: Transform - pos: 21.5,-11.5 - parent: 2 - - uid: 1382 + pos: -6.5,88.5 + parent: 16527 + - uid: 18401 components: - type: Transform - pos: 19.5,-11.5 - parent: 2 - - uid: 1383 + pos: -5.5,92.5 + parent: 16527 + - uid: 18402 components: - type: Transform - pos: 18.5,-11.5 - parent: 2 - - uid: 1384 + pos: -5.5,91.5 + parent: 16527 + - uid: 18403 components: - type: Transform - pos: 22.5,-9.5 - parent: 2 - - uid: 1385 + pos: -5.5,90.5 + parent: 16527 + - uid: 18404 components: - type: Transform - pos: 22.5,-8.5 - parent: 2 - - uid: 1386 + pos: -5.5,89.5 + parent: 16527 + - uid: 18405 components: - type: Transform - pos: 22.5,-7.5 - parent: 2 - - uid: 1387 + pos: -5.5,88.5 + parent: 16527 + - uid: 18406 components: - type: Transform - pos: 21.5,-7.5 - parent: 2 - - uid: 1388 + pos: -4.5,92.5 + parent: 16527 + - uid: 18407 components: - type: Transform - pos: 20.5,-7.5 - parent: 2 - - uid: 1389 + pos: -4.5,91.5 + parent: 16527 + - uid: 18408 components: - type: Transform - pos: 19.5,-7.5 - parent: 2 - - uid: 1390 + pos: -4.5,90.5 + parent: 16527 + - uid: 18409 components: - type: Transform - pos: 22.5,-6.5 - parent: 2 - - uid: 1391 + pos: -4.5,89.5 + parent: 16527 + - uid: 18410 components: - type: Transform - pos: 22.5,-11.5 - parent: 2 - - uid: 1392 + pos: -4.5,88.5 + parent: 16527 + - uid: 18411 components: - type: Transform - pos: 22.5,-12.5 - parent: 2 - - uid: 1393 + pos: -3.5,92.5 + parent: 16527 + - uid: 18412 components: - type: Transform - pos: 22.5,-13.5 - parent: 2 - - uid: 1394 + pos: -3.5,91.5 + parent: 16527 + - uid: 18413 components: - type: Transform - pos: 22.5,-14.5 - parent: 2 - - uid: 1395 + pos: -3.5,90.5 + parent: 16527 + - uid: 18414 components: - type: Transform - pos: 22.5,-15.5 - parent: 2 - - uid: 1396 + pos: -3.5,89.5 + parent: 16527 + - uid: 18415 components: - type: Transform - pos: 22.5,-16.5 - parent: 2 - - uid: 1397 + pos: -3.5,88.5 + parent: 16527 + - uid: 18416 components: - type: Transform - pos: 19.5,-15.5 - parent: 2 - - uid: 1398 + pos: -2.5,92.5 + parent: 16527 + - uid: 18417 components: - type: Transform - pos: 18.5,-15.5 - parent: 2 - - uid: 1399 + pos: -2.5,91.5 + parent: 16527 + - uid: 18418 components: - type: Transform - pos: 23.5,-15.5 - parent: 2 - - uid: 1400 + pos: -2.5,90.5 + parent: 16527 + - uid: 18419 components: - type: Transform - pos: 24.5,-15.5 - parent: 2 - - uid: 1401 + pos: -2.5,89.5 + parent: 16527 + - uid: 18420 components: - type: Transform - pos: 23.5,-12.5 - parent: 2 - - uid: 1402 + pos: -2.5,88.5 + parent: 16527 + - uid: 18421 components: - type: Transform - pos: 24.5,-12.5 - parent: 2 - - uid: 1403 + pos: -10.5,88.5 + parent: 16527 + - uid: 18422 components: - type: Transform - pos: 25.5,-15.5 - parent: 2 - - uid: 1404 + pos: -9.5,88.5 + parent: 16527 + - uid: 18423 components: - type: Transform - pos: 30.5,-15.5 - parent: 2 - - uid: 1405 + pos: -8.5,88.5 + parent: 16527 + - uid: 18424 components: - type: Transform - pos: 39.5,-10.5 - parent: 2 - - uid: 1406 + pos: -9.5,89.5 + parent: 16527 + - uid: 18425 components: - type: Transform - pos: 23.5,-7.5 - parent: 2 - - uid: 1407 + pos: -8.5,89.5 + parent: 16527 + - uid: 18426 components: - type: Transform - pos: 19.5,9.5 - parent: 2 - - uid: 1408 + pos: -8.5,90.5 + parent: 16527 + - uid: 18427 components: - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 1409 + pos: -5.5,93.5 + parent: 16527 + - uid: 18428 components: - type: Transform - pos: 21.5,9.5 - parent: 2 - - uid: 1410 + pos: -4.5,93.5 + parent: 16527 + - uid: 18429 components: - type: Transform - pos: 22.5,9.5 - parent: 2 - - uid: 1411 + pos: -1.5,91.5 + parent: 16527 + - uid: 18430 components: - type: Transform - pos: 23.5,9.5 - parent: 2 - - uid: 1412 + pos: -1.5,90.5 + parent: 16527 + - uid: 18431 components: - type: Transform - pos: 24.5,9.5 - parent: 2 - - uid: 1413 + pos: -1.5,89.5 + parent: 16527 + - uid: 18432 components: - type: Transform - pos: 21.5,8.5 - parent: 2 - - uid: 1414 + pos: -1.5,88.5 + parent: 16527 + - uid: 18433 components: - type: Transform - pos: 21.5,7.5 - parent: 2 - - uid: 1415 + pos: -0.5,91.5 + parent: 16527 + - uid: 18434 components: - type: Transform - pos: 21.5,6.5 - parent: 2 - - uid: 1416 + pos: -0.5,90.5 + parent: 16527 + - uid: 18435 components: - type: Transform - pos: 21.5,5.5 - parent: 2 - - uid: 1417 + pos: -0.5,89.5 + parent: 16527 + - uid: 18436 components: - type: Transform - pos: 22.5,5.5 - parent: 2 - - uid: 1418 + pos: -0.5,88.5 + parent: 16527 + - uid: 18437 components: - type: Transform - pos: 23.5,5.5 - parent: 2 - - uid: 1419 + pos: -0.5,87.5 + parent: 16527 + - uid: 18438 components: - type: Transform - pos: 24.5,5.5 - parent: 2 - - uid: 1420 + pos: -0.5,86.5 + parent: 16527 + - uid: 18439 components: - type: Transform - pos: 24.5,4.5 - parent: 2 - - uid: 1421 + pos: -0.5,85.5 + parent: 16527 + - uid: 18440 components: - type: Transform - pos: 24.5,3.5 - parent: 2 - - uid: 1422 + pos: 0.5,91.5 + parent: 16527 + - uid: 18441 components: - type: Transform - pos: 24.5,8.5 - parent: 2 - - uid: 1423 + pos: 0.5,90.5 + parent: 16527 + - uid: 18442 components: - type: Transform - pos: 24.5,7.5 - parent: 2 - - uid: 1424 + pos: 0.5,89.5 + parent: 16527 + - uid: 18443 components: - type: Transform - pos: 18.5,3.5 - parent: 2 - - uid: 1425 + pos: 0.5,88.5 + parent: 16527 + - uid: 18444 components: - type: Transform - pos: 18.5,4.5 - parent: 2 - - uid: 1426 + pos: 0.5,87.5 + parent: 16527 + - uid: 18445 components: - type: Transform - pos: 18.5,5.5 - parent: 2 - - uid: 1427 + pos: 0.5,86.5 + parent: 16527 + - uid: 18446 components: - type: Transform - pos: 18.5,6.5 - parent: 2 - - uid: 1428 + pos: 0.5,85.5 + parent: 16527 + - uid: 18447 components: - type: Transform - pos: 17.5,5.5 - parent: 2 - - uid: 1429 + pos: 1.5,91.5 + parent: 16527 + - uid: 18448 components: - type: Transform - pos: 16.5,5.5 - parent: 2 - - uid: 1430 + pos: 1.5,90.5 + parent: 16527 + - uid: 18449 components: - type: Transform - pos: 15.5,5.5 - parent: 2 - - uid: 1431 + pos: 1.5,89.5 + parent: 16527 + - uid: 18450 components: - type: Transform - pos: 54.5,8.5 - parent: 2 - - uid: 1432 + pos: 1.5,88.5 + parent: 16527 + - uid: 18451 components: - type: Transform - pos: 42.5,11.5 - parent: 2 - - uid: 1433 + pos: 1.5,87.5 + parent: 16527 + - uid: 18452 components: - type: Transform - pos: 47.5,39.5 - parent: 2 - - uid: 1434 + pos: 1.5,86.5 + parent: 16527 + - uid: 18453 components: - type: Transform - pos: 44.5,32.5 - parent: 2 - - uid: 1435 + pos: 1.5,85.5 + parent: 16527 + - uid: 18454 components: - type: Transform - pos: 43.5,32.5 - parent: 2 - - uid: 1436 + pos: 2.5,91.5 + parent: 16527 + - uid: 18455 components: - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 1437 + pos: 2.5,90.5 + parent: 16527 + - uid: 18456 components: - type: Transform - pos: 41.5,32.5 - parent: 2 - - uid: 1438 + pos: 2.5,89.5 + parent: 16527 + - uid: 18457 components: - type: Transform - pos: 40.5,32.5 - parent: 2 - - uid: 1439 + pos: 2.5,88.5 + parent: 16527 + - uid: 18458 components: - type: Transform - pos: 39.5,32.5 - parent: 2 - - uid: 1440 + pos: 2.5,87.5 + parent: 16527 + - uid: 18459 components: - type: Transform - pos: 38.5,32.5 - parent: 2 - - uid: 1441 + pos: 2.5,86.5 + parent: 16527 + - uid: 18460 components: - type: Transform - pos: 41.5,31.5 - parent: 2 - - uid: 1442 + pos: 2.5,85.5 + parent: 16527 + - uid: 18461 components: - type: Transform - pos: 41.5,30.5 - parent: 2 - - uid: 1443 + pos: 3.5,91.5 + parent: 16527 + - uid: 18462 components: - type: Transform - pos: 39.5,31.5 - parent: 2 - - uid: 1444 + pos: 3.5,90.5 + parent: 16527 + - uid: 18463 components: - type: Transform - pos: 39.5,30.5 - parent: 2 - - uid: 1445 + pos: 3.5,89.5 + parent: 16527 + - uid: 18464 components: - type: Transform - pos: 43.5,31.5 - parent: 2 - - uid: 1446 + pos: 3.5,88.5 + parent: 16527 + - uid: 18465 components: - type: Transform - pos: 43.5,30.5 - parent: 2 - - uid: 1447 + pos: 3.5,87.5 + parent: 16527 + - uid: 18466 components: - type: Transform - pos: 45.5,32.5 - parent: 2 - - uid: 1448 + pos: 3.5,86.5 + parent: 16527 + - uid: 18467 components: - type: Transform - pos: 45.5,33.5 - parent: 2 - - uid: 1449 + pos: 3.5,85.5 + parent: 16527 + - uid: 18468 components: - type: Transform - pos: 45.5,34.5 - parent: 2 - - uid: 1450 + pos: 4.5,91.5 + parent: 16527 + - uid: 18469 components: - type: Transform - pos: 45.5,35.5 - parent: 2 - - uid: 1451 + pos: 4.5,90.5 + parent: 16527 + - uid: 18470 components: - type: Transform - pos: 44.5,35.5 - parent: 2 - - uid: 1452 + pos: 4.5,89.5 + parent: 16527 + - uid: 18471 components: - type: Transform - pos: 43.5,35.5 - parent: 2 - - uid: 1453 + pos: 4.5,88.5 + parent: 16527 + - uid: 18472 components: - type: Transform - pos: 42.5,35.5 - parent: 2 - - uid: 1454 + pos: 4.5,87.5 + parent: 16527 + - uid: 18473 components: - type: Transform - pos: 41.5,35.5 - parent: 2 - - uid: 1455 + pos: 4.5,86.5 + parent: 16527 + - uid: 18474 components: - type: Transform - pos: 40.5,35.5 - parent: 2 - - uid: 1456 + pos: 4.5,85.5 + parent: 16527 + - uid: 18475 components: - type: Transform - pos: 39.5,35.5 - parent: 2 - - uid: 1457 + pos: 5.5,91.5 + parent: 16527 + - uid: 18476 components: - type: Transform - pos: 46.5,35.5 - parent: 2 - - uid: 1458 + pos: 5.5,90.5 + parent: 16527 + - uid: 18477 components: - type: Transform - pos: 46.5,36.5 - parent: 2 - - uid: 1459 + pos: 5.5,89.5 + parent: 16527 + - uid: 18478 components: - type: Transform - pos: 46.5,37.5 - parent: 2 - - uid: 1460 + pos: 5.5,88.5 + parent: 16527 + - uid: 18479 components: - type: Transform - pos: 46.5,39.5 - parent: 2 - - uid: 1461 + pos: 5.5,87.5 + parent: 16527 + - uid: 18480 components: - type: Transform - pos: 45.5,39.5 - parent: 2 - - uid: 1462 + pos: 5.5,86.5 + parent: 16527 + - uid: 18481 components: - type: Transform - pos: 45.5,40.5 - parent: 2 - - uid: 1463 + pos: 5.5,85.5 + parent: 16527 + - uid: 18482 components: - type: Transform - pos: 52.5,34.5 - parent: 2 - - uid: 1464 + pos: 6.5,91.5 + parent: 16527 + - uid: 18483 components: - type: Transform - pos: 52.5,35.5 - parent: 2 - - uid: 1465 + pos: 6.5,90.5 + parent: 16527 + - uid: 18484 components: - type: Transform - pos: 52.5,36.5 - parent: 2 - - uid: 1466 + pos: 6.5,89.5 + parent: 16527 + - uid: 18485 components: - type: Transform - pos: 53.5,36.5 - parent: 2 - - uid: 1467 + pos: 6.5,88.5 + parent: 16527 + - uid: 18486 components: - type: Transform - pos: 53.5,37.5 - parent: 2 - - uid: 1468 + pos: 6.5,87.5 + parent: 16527 + - uid: 18487 components: - type: Transform - pos: 43.5,23.5 - parent: 2 - - uid: 1469 + pos: 6.5,86.5 + parent: 16527 + - uid: 18488 components: - type: Transform - pos: 54.5,36.5 - parent: 2 - - uid: 1470 + pos: 6.5,85.5 + parent: 16527 + - uid: 18489 components: - type: Transform - pos: 48.5,30.5 - parent: 2 - - uid: 1471 + pos: 8.5,93.5 + parent: 16527 + - uid: 18490 components: - type: Transform - pos: 49.5,30.5 - parent: 2 - - uid: 1472 + pos: 9.5,93.5 + parent: 16527 + - uid: 18491 components: - type: Transform - pos: 50.5,30.5 - parent: 2 - - uid: 1473 + pos: 10.5,93.5 + parent: 16527 + - uid: 18492 components: - type: Transform - pos: 51.5,30.5 - parent: 2 - - uid: 1474 + pos: 7.5,92.5 + parent: 16527 + - uid: 18493 components: - type: Transform - pos: 52.5,30.5 - parent: 2 - - uid: 1476 + pos: 7.5,91.5 + parent: 16527 + - uid: 18494 components: - type: Transform - pos: 51.5,32.5 - parent: 2 - - uid: 1477 + pos: 8.5,92.5 + parent: 16527 + - uid: 18495 components: - type: Transform - pos: 49.5,31.5 - parent: 2 - - uid: 1478 + pos: 8.5,91.5 + parent: 16527 + - uid: 18496 components: - type: Transform - pos: 49.5,32.5 - parent: 2 - - uid: 1479 + pos: 9.5,92.5 + parent: 16527 + - uid: 18497 components: - type: Transform - pos: 49.5,33.5 - parent: 2 - - uid: 1480 + pos: 9.5,91.5 + parent: 16527 + - uid: 18498 components: - type: Transform - pos: 52.5,31.5 - parent: 2 - - uid: 1481 + pos: 10.5,92.5 + parent: 16527 + - uid: 18499 components: - type: Transform - pos: 52.5,32.5 - parent: 2 - - uid: 1482 + pos: 10.5,91.5 + parent: 16527 + - uid: 18500 components: - type: Transform - pos: 45.5,31.5 - parent: 2 - - uid: 1483 + pos: 11.5,92.5 + parent: 16527 + - uid: 18501 components: - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 1484 + pos: 11.5,91.5 + parent: 16527 + - uid: 18502 components: - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 1485 + pos: 12.5,91.5 + parent: 16527 + - uid: 18503 components: - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 1486 + pos: 14.5,86.5 + parent: 16527 + - uid: 18504 components: - type: Transform - pos: 45.5,27.5 - parent: 2 - - uid: 1487 + pos: 13.5,90.5 + parent: 16527 + - uid: 18505 components: - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 1488 + pos: 13.5,89.5 + parent: 16527 + - uid: 18506 components: - type: Transform - pos: 44.5,26.5 - parent: 2 - - uid: 1489 + pos: 13.5,88.5 + parent: 16527 + - uid: 18507 components: - type: Transform - pos: 43.5,26.5 - parent: 2 - - uid: 1490 + pos: 13.5,87.5 + parent: 16527 + - uid: 18508 components: - type: Transform - pos: 42.5,26.5 - parent: 2 - - uid: 1491 + pos: 13.5,86.5 + parent: 16527 + - uid: 18509 components: - type: Transform - pos: 41.5,26.5 - parent: 2 - - uid: 1492 + pos: 13.5,85.5 + parent: 16527 + - uid: 18510 components: - type: Transform - pos: 40.5,26.5 - parent: 2 - - uid: 1493 + pos: 14.5,87.5 + parent: 16527 + - uid: 18511 components: - type: Transform - pos: 39.5,26.5 - parent: 2 - - uid: 1494 + pos: 14.5,88.5 + parent: 16527 + - uid: 18512 components: - type: Transform - pos: 38.5,26.5 - parent: 2 - - uid: 1495 + pos: 14.5,89.5 + parent: 16527 + - uid: 18513 components: - type: Transform - pos: 41.5,27.5 - parent: 2 - - uid: 1496 + pos: 9.5,78.5 + parent: 16527 + - uid: 18514 components: - type: Transform - pos: 41.5,28.5 - parent: 2 - - uid: 1497 + pos: 7.5,90.5 + parent: 16527 + - uid: 18515 components: - type: Transform - pos: 41.5,29.5 - parent: 2 - - uid: 1498 + pos: 7.5,89.5 + parent: 16527 + - uid: 18516 components: - type: Transform - pos: 46.5,27.5 - parent: 2 - - uid: 1502 + pos: 7.5,88.5 + parent: 16527 + - uid: 18517 components: - type: Transform - pos: 50.5,27.5 - parent: 2 - - uid: 1503 + pos: 7.5,87.5 + parent: 16527 + - uid: 18518 components: - type: Transform - pos: 51.5,27.5 - parent: 2 - - uid: 1504 + pos: 7.5,86.5 + parent: 16527 + - uid: 18519 components: - type: Transform - pos: 52.5,27.5 - parent: 2 - - uid: 1505 + pos: 7.5,85.5 + parent: 16527 + - uid: 18520 components: - type: Transform - pos: 53.5,27.5 - parent: 2 - - uid: 1506 + pos: 7.5,84.5 + parent: 16527 + - uid: 18521 components: - type: Transform - pos: 54.5,27.5 - parent: 2 - - uid: 1507 + pos: 7.5,83.5 + parent: 16527 + - uid: 18522 components: - type: Transform - pos: 46.5,31.5 - parent: 2 - - uid: 1508 + pos: 7.5,82.5 + parent: 16527 + - uid: 18523 components: - type: Transform - pos: 45.5,25.5 - parent: 2 - - uid: 1510 + pos: 7.5,81.5 + parent: 16527 + - uid: 18524 components: - type: Transform - pos: 44.5,16.5 - parent: 2 - - uid: 1511 + pos: 7.5,80.5 + parent: 16527 + - uid: 18525 components: - type: Transform - pos: 44.5,17.5 - parent: 2 - - uid: 1512 + pos: 7.5,79.5 + parent: 16527 + - uid: 18526 components: - type: Transform - pos: 44.5,18.5 - parent: 2 - - uid: 1513 + pos: 8.5,90.5 + parent: 16527 + - uid: 18527 components: - type: Transform - pos: 44.5,19.5 - parent: 2 - - uid: 1514 + pos: 8.5,89.5 + parent: 16527 + - uid: 18528 components: - type: Transform - pos: 44.5,20.5 - parent: 2 - - uid: 1515 + pos: 8.5,88.5 + parent: 16527 + - uid: 18529 components: - type: Transform - pos: 44.5,21.5 - parent: 2 - - uid: 1516 + pos: 8.5,87.5 + parent: 16527 + - uid: 18530 components: - type: Transform - pos: 44.5,22.5 - parent: 2 - - uid: 1517 + pos: 8.5,86.5 + parent: 16527 + - uid: 18531 components: - type: Transform - pos: 44.5,23.5 - parent: 2 - - uid: 1518 + pos: 8.5,85.5 + parent: 16527 + - uid: 18532 components: - type: Transform - pos: 43.5,19.5 - parent: 2 - - uid: 1519 + pos: 8.5,84.5 + parent: 16527 + - uid: 18533 components: - type: Transform - pos: 42.5,19.5 - parent: 2 - - uid: 1520 + pos: 8.5,83.5 + parent: 16527 + - uid: 18534 components: - type: Transform - pos: 41.5,19.5 - parent: 2 - - uid: 1521 + pos: 8.5,82.5 + parent: 16527 + - uid: 18535 components: - type: Transform - pos: 40.5,19.5 - parent: 2 - - uid: 1522 + pos: 8.5,81.5 + parent: 16527 + - uid: 18536 components: - type: Transform - pos: 39.5,19.5 - parent: 2 - - uid: 1523 + pos: 8.5,80.5 + parent: 16527 + - uid: 18537 components: - type: Transform - pos: 43.5,16.5 - parent: 2 - - uid: 1524 + pos: 8.5,79.5 + parent: 16527 + - uid: 18538 components: - type: Transform - pos: 42.5,16.5 - parent: 2 - - uid: 1525 + pos: 9.5,90.5 + parent: 16527 + - uid: 18539 components: - type: Transform - pos: 41.5,16.5 - parent: 2 - - uid: 1526 + pos: 9.5,89.5 + parent: 16527 + - uid: 18540 components: - type: Transform - pos: 40.5,16.5 - parent: 2 - - uid: 1527 + pos: 9.5,88.5 + parent: 16527 + - uid: 18541 components: - type: Transform - pos: 49.5,25.5 - parent: 2 - - uid: 1528 + pos: 9.5,87.5 + parent: 16527 + - uid: 18542 components: - type: Transform - pos: 49.5,24.5 - parent: 2 - - uid: 1529 + pos: 9.5,86.5 + parent: 16527 + - uid: 18543 components: - type: Transform - pos: 49.5,23.5 - parent: 2 - - uid: 1530 + pos: 9.5,85.5 + parent: 16527 + - uid: 18544 components: - type: Transform - pos: 48.5,23.5 - parent: 2 - - uid: 1531 + pos: 9.5,84.5 + parent: 16527 + - uid: 18545 components: - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 1532 + pos: 9.5,83.5 + parent: 16527 + - uid: 18546 components: - type: Transform - pos: 46.5,23.5 - parent: 2 - - uid: 1533 + pos: 9.5,82.5 + parent: 16527 + - uid: 18547 components: - type: Transform - pos: 50.5,23.5 - parent: 2 - - uid: 1534 + pos: 9.5,81.5 + parent: 16527 + - uid: 18548 components: - type: Transform - pos: 51.5,23.5 - parent: 2 - - uid: 1535 + pos: 9.5,80.5 + parent: 16527 + - uid: 18549 components: - type: Transform - pos: 52.5,23.5 - parent: 2 - - uid: 1536 + pos: 9.5,79.5 + parent: 16527 + - uid: 18550 components: - type: Transform - pos: 53.5,23.5 - parent: 2 - - uid: 1537 + pos: 10.5,90.5 + parent: 16527 + - uid: 18551 components: - type: Transform - pos: 59.5,18.5 - parent: 2 - - uid: 1538 + pos: 10.5,89.5 + parent: 16527 + - uid: 18552 components: - type: Transform - pos: 58.5,18.5 - parent: 2 - - uid: 1539 + pos: 10.5,88.5 + parent: 16527 + - uid: 18553 components: - type: Transform - pos: 57.5,18.5 - parent: 2 - - uid: 1540 + pos: 10.5,87.5 + parent: 16527 + - uid: 18554 components: - type: Transform - pos: 56.5,18.5 - parent: 2 - - uid: 1541 + pos: 10.5,86.5 + parent: 16527 + - uid: 18555 components: - type: Transform - pos: 55.5,18.5 - parent: 2 - - uid: 1542 + pos: 10.5,85.5 + parent: 16527 + - uid: 18556 components: - type: Transform - pos: 54.5,18.5 - parent: 2 - - uid: 1543 + pos: 10.5,84.5 + parent: 16527 + - uid: 18557 components: - type: Transform - pos: 56.5,17.5 - parent: 2 - - uid: 1544 + pos: 10.5,83.5 + parent: 16527 + - uid: 18558 components: - type: Transform - pos: 56.5,16.5 - parent: 2 - - uid: 1545 + pos: 10.5,82.5 + parent: 16527 + - uid: 18559 components: - type: Transform - pos: 57.5,32.5 - parent: 2 - - uid: 1546 + pos: 10.5,81.5 + parent: 16527 + - uid: 18560 components: - type: Transform - pos: 57.5,33.5 - parent: 2 - - uid: 1547 + pos: 10.5,80.5 + parent: 16527 + - uid: 18561 components: - type: Transform - pos: 56.5,21.5 - parent: 2 - - uid: 1548 + pos: 10.5,79.5 + parent: 16527 + - uid: 18562 components: - type: Transform - pos: 56.5,22.5 - parent: 2 - - uid: 1549 + pos: 11.5,90.5 + parent: 16527 + - uid: 18563 components: - type: Transform - pos: 56.5,23.5 - parent: 2 - - uid: 1550 + pos: 11.5,89.5 + parent: 16527 + - uid: 18564 components: - type: Transform - pos: 29.5,16.5 - parent: 2 - - uid: 1551 + pos: 11.5,88.5 + parent: 16527 + - uid: 18565 components: - type: Transform - pos: 56.5,27.5 - parent: 2 - - uid: 1552 + pos: 11.5,87.5 + parent: 16527 + - uid: 18566 components: - type: Transform - pos: 57.5,26.5 - parent: 2 - - uid: 1553 + pos: 11.5,86.5 + parent: 16527 + - uid: 18567 components: - type: Transform - pos: 57.5,27.5 - parent: 2 - - uid: 1554 + pos: 11.5,85.5 + parent: 16527 + - uid: 18568 components: - type: Transform - pos: 57.5,28.5 - parent: 2 - - uid: 1555 + pos: 11.5,84.5 + parent: 16527 + - uid: 18569 components: - type: Transform - pos: 55.5,23.5 - parent: 2 - - uid: 1556 + pos: 11.5,83.5 + parent: 16527 + - uid: 18570 components: - type: Transform - pos: 55.5,27.5 - parent: 2 - - uid: 1557 + pos: 11.5,82.5 + parent: 16527 + - uid: 18571 components: - type: Transform - pos: 60.5,24.5 - parent: 2 - - uid: 1558 + pos: 11.5,81.5 + parent: 16527 + - uid: 18572 components: - type: Transform - pos: 61.5,24.5 - parent: 2 - - uid: 1559 + pos: 11.5,80.5 + parent: 16527 + - uid: 18573 components: - type: Transform - pos: 62.5,24.5 - parent: 2 - - uid: 1560 + pos: 11.5,79.5 + parent: 16527 + - uid: 18574 components: - type: Transform - pos: 57.5,21.5 - parent: 2 - - uid: 1561 + pos: 12.5,90.5 + parent: 16527 + - uid: 18575 components: - type: Transform - pos: 58.5,21.5 - parent: 2 - - uid: 1562 + pos: 12.5,89.5 + parent: 16527 + - uid: 18576 components: - type: Transform - pos: 59.5,21.5 - parent: 2 - - uid: 1563 + pos: 12.5,88.5 + parent: 16527 + - uid: 18577 components: - type: Transform - pos: 60.5,21.5 - parent: 2 - - uid: 1564 + pos: 12.5,87.5 + parent: 16527 + - uid: 18578 components: - type: Transform - pos: 61.5,21.5 - parent: 2 - - uid: 1565 + pos: 12.5,86.5 + parent: 16527 + - uid: 18579 components: - type: Transform - pos: 62.5,21.5 - parent: 2 - - uid: 1566 + pos: 12.5,85.5 + parent: 16527 + - uid: 18580 components: - type: Transform - pos: 57.5,16.5 - parent: 2 - - uid: 1567 + pos: 12.5,84.5 + parent: 16527 + - uid: 18581 components: - type: Transform - pos: 58.5,16.5 - parent: 2 - - uid: 1568 + pos: 12.5,83.5 + parent: 16527 + - uid: 18582 components: - type: Transform - pos: 54.5,16.5 - parent: 2 - - uid: 1569 + pos: 12.5,82.5 + parent: 16527 + - uid: 18583 components: - type: Transform - pos: 55.5,16.5 - parent: 2 - - uid: 1570 + pos: 12.5,81.5 + parent: 16527 + - uid: 18584 components: - type: Transform - pos: 54.5,23.5 - parent: 2 - - uid: 1571 + pos: 12.5,80.5 + parent: 16527 + - uid: 18585 components: - type: Transform - pos: 54.5,22.5 - parent: 2 - - uid: 1572 + pos: 12.5,79.5 + parent: 16527 + - uid: 18586 components: - type: Transform - pos: 54.5,21.5 - parent: 2 - - uid: 1573 + pos: 13.5,81.5 + parent: 16527 + - uid: 18587 components: - type: Transform - pos: 43.5,49.5 - parent: 2 - - uid: 1574 + pos: 13.5,80.5 + parent: 16527 + - uid: 18588 components: - type: Transform - pos: 54.5,81.5 - parent: 2 - - uid: 1575 + pos: 13.5,79.5 + parent: 16527 + - uid: 18589 components: - type: Transform - pos: 51.5,81.5 - parent: 2 - - uid: 1576 + pos: 9.5,77.5 + parent: 16527 + - uid: 18590 components: - type: Transform - pos: 53.5,81.5 - parent: 2 - - uid: 1577 + pos: 9.5,76.5 + parent: 16527 + - uid: 18591 components: - type: Transform - pos: 52.5,81.5 - parent: 2 - - uid: 1578 + pos: 9.5,75.5 + parent: 16527 + - uid: 18592 components: - type: Transform - pos: 78.5,14.5 - parent: 2 - - uid: 1579 + pos: 9.5,74.5 + parent: 16527 + - uid: 18593 components: - type: Transform - pos: 78.5,15.5 - parent: 2 - - uid: 1580 + pos: 9.5,73.5 + parent: 16527 + - uid: 18594 components: - type: Transform - pos: 78.5,16.5 - parent: 2 - - uid: 1581 + pos: 9.5,72.5 + parent: 16527 + - uid: 18595 components: - type: Transform - pos: 78.5,17.5 - parent: 2 - - uid: 1582 + pos: 10.5,78.5 + parent: 16527 + - uid: 18596 components: - type: Transform - pos: 78.5,18.5 - parent: 2 - - uid: 1583 + pos: 10.5,77.5 + parent: 16527 + - uid: 18597 components: - type: Transform - pos: 78.5,19.5 - parent: 2 - - uid: 1584 + pos: 10.5,76.5 + parent: 16527 + - uid: 18598 components: - type: Transform - pos: 79.5,17.5 - parent: 2 - - uid: 1585 + pos: 10.5,75.5 + parent: 16527 + - uid: 18599 components: - type: Transform - pos: 80.5,17.5 - parent: 2 - - uid: 1586 + pos: 10.5,74.5 + parent: 16527 + - uid: 18600 components: - type: Transform - pos: 81.5,17.5 - parent: 2 - - uid: 1587 + pos: 10.5,73.5 + parent: 16527 + - uid: 18601 components: - type: Transform - pos: 77.5,17.5 - parent: 2 - - uid: 1588 + pos: 10.5,72.5 + parent: 16527 + - uid: 18602 components: - type: Transform - pos: 76.5,17.5 - parent: 2 - - uid: 1589 + pos: 11.5,78.5 + parent: 16527 + - uid: 18603 components: - type: Transform - pos: 75.5,17.5 - parent: 2 - - uid: 1590 + pos: 11.5,77.5 + parent: 16527 + - uid: 18604 components: - type: Transform - pos: 74.5,17.5 - parent: 2 - - uid: 1591 + pos: 11.5,76.5 + parent: 16527 + - uid: 18605 components: - type: Transform - pos: 73.5,17.5 - parent: 2 - - uid: 1592 + pos: 11.5,75.5 + parent: 16527 + - uid: 18606 components: - type: Transform - pos: 75.5,16.5 - parent: 2 - - uid: 1593 + pos: 11.5,74.5 + parent: 16527 + - uid: 18607 components: - type: Transform - pos: 75.5,18.5 - parent: 2 - - uid: 1594 + pos: 11.5,73.5 + parent: 16527 + - uid: 18608 components: - type: Transform - pos: 55.5,5.5 - parent: 2 - - uid: 1595 + pos: 11.5,72.5 + parent: 16527 + - uid: 18609 components: - type: Transform - pos: 55.5,4.5 - parent: 2 - - uid: 1596 + pos: 12.5,78.5 + parent: 16527 + - uid: 18610 components: - type: Transform - pos: 55.5,3.5 - parent: 2 - - uid: 1597 + pos: 12.5,77.5 + parent: 16527 + - uid: 18611 components: - type: Transform - pos: 56.5,3.5 - parent: 2 - - uid: 1598 + pos: 12.5,76.5 + parent: 16527 + - uid: 18612 components: - type: Transform - pos: 57.5,3.5 - parent: 2 - - uid: 1599 + pos: 12.5,75.5 + parent: 16527 + - uid: 18613 components: - type: Transform - pos: 58.5,3.5 - parent: 2 - - uid: 1600 + pos: 12.5,74.5 + parent: 16527 + - uid: 18614 components: - type: Transform - pos: 59.5,3.5 - parent: 2 - - uid: 1601 + pos: 12.5,73.5 + parent: 16527 + - uid: 18615 components: - type: Transform - pos: 60.5,3.5 - parent: 2 - - uid: 1602 + pos: 12.5,72.5 + parent: 16527 + - uid: 18620 components: - type: Transform - pos: 59.5,4.5 - parent: 2 - - uid: 1603 + pos: 13.5,77.5 + parent: 16527 + - uid: 18624 components: - type: Transform - pos: 59.5,2.5 - parent: 2 - - uid: 1604 + pos: 13.5,76.5 + parent: 16527 + - uid: 18625 components: - type: Transform - pos: 59.5,1.5 - parent: 2 - - uid: 1605 + pos: 14.5,73.5 + parent: 16527 + - uid: 18626 components: - type: Transform - pos: 55.5,7.5 - parent: 2 - - uid: 1606 + pos: 14.5,72.5 + parent: 16527 + - uid: 18627 components: - type: Transform - pos: 54.5,7.5 - parent: 2 - - uid: 1607 + pos: 14.5,71.5 + parent: 16527 + - uid: 18628 components: - type: Transform - pos: 53.5,7.5 - parent: 2 - - uid: 1608 + pos: 14.5,70.5 + parent: 16527 + - uid: 18629 components: - type: Transform - pos: 52.5,7.5 - parent: 2 - - uid: 1609 + pos: 14.5,69.5 + parent: 16527 + - uid: 18630 components: - type: Transform - pos: 53.5,6.5 - parent: 2 - - uid: 1610 + pos: 14.5,68.5 + parent: 16527 + - uid: 18631 components: - type: Transform - pos: 54.5,0.5 - parent: 2 - - uid: 1611 + pos: 13.5,75.5 + parent: 16527 + - uid: 18632 components: - type: Transform - pos: 53.5,0.5 - parent: 2 - - uid: 1612 + pos: 13.5,74.5 + parent: 16527 + - uid: 18633 components: - type: Transform - pos: 52.5,0.5 - parent: 2 - - uid: 1613 + pos: 13.5,73.5 + parent: 16527 + - uid: 18634 components: - type: Transform - pos: 53.5,-0.5 - parent: 2 - - uid: 1614 + pos: 13.5,72.5 + parent: 16527 + - uid: 18635 components: - type: Transform - pos: 53.5,-1.5 - parent: 2 - - uid: 1615 + pos: 13.5,71.5 + parent: 16527 + - uid: 18636 components: - type: Transform - pos: 53.5,-3.5 - parent: 2 - - uid: 1616 + pos: 13.5,70.5 + parent: 16527 + - uid: 18637 components: - type: Transform - pos: 53.5,-4.5 - parent: 2 - - uid: 1617 + pos: 13.5,69.5 + parent: 16527 + - uid: 18638 components: - type: Transform - pos: 53.5,-5.5 - parent: 2 - - uid: 1618 + pos: 13.5,68.5 + parent: 16527 + - uid: 18639 components: - type: Transform - pos: 54.5,-3.5 - parent: 2 - - uid: 1619 + pos: 12.5,71.5 + parent: 16527 + - uid: 18640 components: - type: Transform - pos: 55.5,-3.5 - parent: 2 - - uid: 1620 + pos: 12.5,70.5 + parent: 16527 + - uid: 18641 components: - type: Transform - pos: 56.5,-3.5 - parent: 2 - - uid: 1621 + pos: 12.5,69.5 + parent: 16527 + - uid: 18642 components: - type: Transform - pos: 55.5,-2.5 - parent: 2 - - uid: 1622 + pos: 12.5,68.5 + parent: 16527 + - uid: 18643 components: - type: Transform - pos: 55.5,-1.5 - parent: 2 - - uid: 1623 + pos: 11.5,71.5 + parent: 16527 + - uid: 18645 components: - type: Transform - pos: 55.5,0.5 - parent: 2 - - uid: 1624 + pos: 11.5,70.5 + parent: 16527 + - uid: 18646 components: - type: Transform - pos: 55.5,-4.5 - parent: 2 - - uid: 1625 + pos: 11.5,69.5 + parent: 16527 + - uid: 18647 components: - type: Transform - pos: 55.5,-5.5 - parent: 2 - - uid: 1626 + pos: 11.5,68.5 + parent: 16527 + - uid: 18648 components: - type: Transform - pos: 45.5,-6.5 - parent: 2 - - uid: 1627 + pos: 10.5,71.5 + parent: 16527 + - uid: 18649 components: - type: Transform - pos: 45.5,-7.5 - parent: 2 - - uid: 1628 + pos: 10.5,70.5 + parent: 16527 + - uid: 18650 components: - type: Transform - pos: 45.5,-8.5 - parent: 2 - - uid: 1629 + pos: 10.5,69.5 + parent: 16527 + - uid: 18651 components: - type: Transform - pos: 45.5,-9.5 - parent: 2 - - uid: 1630 + pos: 10.5,68.5 + parent: 16527 + - uid: 18652 components: - type: Transform - pos: 45.5,-10.5 - parent: 2 - - uid: 1631 + pos: 9.5,71.5 + parent: 16527 + - uid: 18653 components: - type: Transform - pos: 48.5,-5.5 - parent: 2 - - uid: 1632 + pos: 9.5,70.5 + parent: 16527 + - uid: 18654 components: - type: Transform - pos: 48.5,-6.5 - parent: 2 - - uid: 1633 + pos: 9.5,69.5 + parent: 16527 + - uid: 18656 components: - type: Transform - pos: 61.5,23.5 - parent: 2 - - uid: 1634 + pos: 9.5,68.5 + parent: 16527 + - uid: 18657 components: - type: Transform - pos: 36.5,4.5 - parent: 2 - - uid: 1635 + pos: 15.5,70.5 + parent: 16527 + - uid: 18658 components: - type: Transform - pos: 36.5,5.5 - parent: 2 - - uid: 1636 + pos: 15.5,69.5 + parent: 16527 + - uid: 18660 components: - type: Transform - pos: 36.5,6.5 - parent: 2 - - uid: 1637 + pos: 15.5,68.5 + parent: 16527 + - uid: 18661 components: - type: Transform - pos: 37.5,6.5 - parent: 2 - - uid: 1638 + pos: 16.5,71.5 + parent: 16527 + - uid: 18662 components: - type: Transform - pos: 37.5,7.5 - parent: 2 - - uid: 1639 + pos: 16.5,70.5 + parent: 16527 + - uid: 18663 components: - type: Transform - pos: 37.5,8.5 - parent: 2 - - uid: 1640 + pos: 16.5,69.5 + parent: 16527 + - uid: 18664 components: - type: Transform - pos: 37.5,9.5 - parent: 2 - - uid: 1641 + pos: 16.5,68.5 + parent: 16527 + - uid: 18665 components: - type: Transform - pos: 37.5,10.5 - parent: 2 - - uid: 1642 + pos: 17.5,71.5 + parent: 16527 + - uid: 18666 components: - type: Transform - pos: 36.5,9.5 - parent: 2 - - uid: 1643 + pos: 17.5,70.5 + parent: 16527 + - uid: 18667 components: - type: Transform - pos: 35.5,9.5 - parent: 2 - - uid: 1644 + pos: 17.5,69.5 + parent: 16527 + - uid: 18668 components: - type: Transform - pos: 38.5,9.5 - parent: 2 - - uid: 1645 + pos: 17.5,68.5 + parent: 16527 + - uid: 18669 components: - type: Transform - pos: 35.5,6.5 - parent: 2 - - uid: 1646 + pos: 18.5,71.5 + parent: 16527 + - uid: 18670 components: - type: Transform - pos: 34.5,6.5 - parent: 2 - - uid: 1647 + pos: 18.5,70.5 + parent: 16527 + - uid: 18671 components: - type: Transform - pos: 35.5,4.5 - parent: 2 - - uid: 1648 + pos: 18.5,69.5 + parent: 16527 + - uid: 18672 components: - type: Transform - pos: 47.5,-4.5 - parent: 2 - - uid: 1649 + pos: 18.5,68.5 + parent: 16527 + - uid: 18673 components: - type: Transform - pos: 42.5,10.5 - parent: 2 - - uid: 1650 + pos: 13.5,67.5 + parent: 16527 + - uid: 18674 components: - type: Transform - pos: 42.5,9.5 - parent: 2 - - uid: 1651 + pos: 13.5,66.5 + parent: 16527 + - uid: 18675 components: - type: Transform - pos: 42.5,8.5 - parent: 2 - - uid: 1652 + pos: 13.5,65.5 + parent: 16527 + - uid: 18676 components: - type: Transform - pos: 42.5,7.5 - parent: 2 - - uid: 1653 + pos: 13.5,64.5 + parent: 16527 + - uid: 18677 components: - type: Transform - pos: 42.5,6.5 - parent: 2 - - uid: 1654 + pos: 14.5,67.5 + parent: 16527 + - uid: 18678 components: - type: Transform - pos: 41.5,8.5 - parent: 2 - - uid: 1655 + pos: 14.5,66.5 + parent: 16527 + - uid: 18679 components: - type: Transform - pos: 40.5,8.5 - parent: 2 - - uid: 1656 + pos: 14.5,65.5 + parent: 16527 + - uid: 18680 components: - type: Transform - pos: 41.5,6.5 - parent: 2 - - uid: 1657 + pos: 14.5,64.5 + parent: 16527 + - uid: 18681 components: - type: Transform - pos: 43.5,9.5 - parent: 2 - - uid: 1658 + pos: 15.5,67.5 + parent: 16527 + - uid: 18682 components: - type: Transform - pos: 44.5,9.5 - parent: 2 - - uid: 1659 + pos: 15.5,66.5 + parent: 16527 + - uid: 18683 components: - type: Transform - pos: 43.5,7.5 - parent: 2 - - uid: 1660 + pos: 15.5,65.5 + parent: 16527 + - uid: 18684 components: - type: Transform - pos: 44.5,7.5 - parent: 2 - - uid: 1661 + pos: 15.5,64.5 + parent: 16527 + - uid: 18685 components: - type: Transform - pos: 49.5,7.5 - parent: 2 - - uid: 1662 + pos: 16.5,67.5 + parent: 16527 + - uid: 18686 components: - type: Transform - pos: 48.5,7.5 - parent: 2 - - uid: 1663 + pos: 16.5,66.5 + parent: 16527 + - uid: 18687 components: - type: Transform - pos: 47.5,7.5 - parent: 2 - - uid: 1664 + pos: 16.5,65.5 + parent: 16527 + - uid: 18688 components: - type: Transform - pos: 46.5,7.5 - parent: 2 - - uid: 1665 + pos: 16.5,64.5 + parent: 16527 + - uid: 18689 components: - type: Transform - pos: 47.5,8.5 - parent: 2 - - uid: 1666 + pos: 17.5,67.5 + parent: 16527 + - uid: 18690 components: - type: Transform - pos: 47.5,9.5 - parent: 2 - - uid: 1667 + pos: 17.5,66.5 + parent: 16527 + - uid: 18691 components: - type: Transform - pos: 47.5,10.5 - parent: 2 - - uid: 1668 + pos: 17.5,65.5 + parent: 16527 + - uid: 18692 components: - type: Transform - pos: 47.5,6.5 - parent: 2 - - uid: 1669 + pos: 17.5,64.5 + parent: 16527 + - uid: 18693 components: - type: Transform - pos: 47.5,5.5 - parent: 2 - - uid: 1670 + pos: 18.5,67.5 + parent: 16527 + - uid: 18694 components: - type: Transform - pos: 38.5,4.5 - parent: 2 - - uid: 1671 + pos: 18.5,66.5 + parent: 16527 + - uid: 18695 components: - type: Transform - pos: 46.5,-11.5 - parent: 2 - - uid: 1672 + pos: 18.5,65.5 + parent: 16527 + - uid: 18696 components: - type: Transform - pos: 47.5,-11.5 - parent: 2 - - uid: 1673 + pos: 18.5,64.5 + parent: 16527 + - uid: 18697 components: - type: Transform - pos: 48.5,-11.5 - parent: 2 - - uid: 1674 + pos: 42.5,39.5 + parent: 16527 + - uid: 18698 components: - type: Transform - pos: 49.5,-11.5 - parent: 2 - - uid: 1675 + pos: 42.5,40.5 + parent: 16527 + - uid: 18699 components: - type: Transform - pos: 50.5,-11.5 - parent: 2 - - uid: 1676 + pos: 42.5,41.5 + parent: 16527 + - uid: 18700 components: - type: Transform - pos: 48.5,-10.5 - parent: 2 - - uid: 1677 + pos: 42.5,42.5 + parent: 16527 + - uid: 18701 components: - type: Transform - pos: 48.5,-9.5 - parent: 2 - - uid: 1678 + pos: 42.5,43.5 + parent: 16527 + - uid: 18702 components: - type: Transform - pos: 48.5,-8.5 - parent: 2 - - uid: 1679 + pos: 42.5,44.5 + parent: 16527 + - uid: 18703 components: - type: Transform - pos: 49.5,-9.5 - parent: 2 - - uid: 1680 + pos: 42.5,45.5 + parent: 16527 + - uid: 18704 components: - type: Transform - pos: 32.5,83.5 - parent: 2 - - uid: 1681 + pos: 42.5,46.5 + parent: 16527 + - uid: 18705 components: - type: Transform - pos: 10.5,18.5 - parent: 2 - - uid: 1682 + pos: 41.5,39.5 + parent: 16527 + - uid: 18706 components: - type: Transform - pos: 9.5,18.5 - parent: 2 - - uid: 1683 + pos: 41.5,40.5 + parent: 16527 + - uid: 18707 components: - type: Transform - pos: 8.5,18.5 - parent: 2 - - uid: 1684 + pos: 41.5,41.5 + parent: 16527 + - uid: 18708 components: - type: Transform - pos: 7.5,18.5 - parent: 2 - - uid: 1685 + pos: 41.5,42.5 + parent: 16527 + - uid: 18709 components: - type: Transform - pos: 6.5,18.5 - parent: 2 - - uid: 1686 + pos: 41.5,43.5 + parent: 16527 + - uid: 18710 components: - type: Transform - pos: 5.5,18.5 - parent: 2 - - uid: 1687 + pos: 41.5,44.5 + parent: 16527 + - uid: 18711 components: - type: Transform - pos: 4.5,18.5 - parent: 2 - - uid: 1688 + pos: 41.5,45.5 + parent: 16527 + - uid: 18712 components: - type: Transform - pos: 37.5,83.5 - parent: 2 - - uid: 1689 + pos: 41.5,46.5 + parent: 16527 + - uid: 18713 components: - type: Transform - pos: 37.5,84.5 - parent: 2 - - uid: 1690 + pos: 40.5,39.5 + parent: 16527 + - uid: 18714 components: - type: Transform - pos: 49.5,-16.5 - parent: 2 - - uid: 1691 + pos: 40.5,40.5 + parent: 16527 + - uid: 18715 components: - type: Transform - pos: 68.5,1.5 - parent: 2 - - uid: 1692 + pos: 40.5,41.5 + parent: 16527 + - uid: 18716 components: - type: Transform - pos: 68.5,2.5 - parent: 2 - - uid: 1693 + pos: 40.5,42.5 + parent: 16527 + - uid: 18717 components: - type: Transform - pos: 48.5,-16.5 - parent: 2 - - uid: 1694 + pos: 40.5,43.5 + parent: 16527 + - uid: 18718 components: - type: Transform - pos: 82.5,38.5 - parent: 2 - - uid: 1695 + pos: 40.5,44.5 + parent: 16527 + - uid: 18719 components: - type: Transform - pos: 39.5,13.5 - parent: 2 - - uid: 1698 + pos: 40.5,45.5 + parent: 16527 + - uid: 18720 components: - type: Transform - pos: 36.5,13.5 - parent: 2 - - uid: 1699 + pos: 40.5,46.5 + parent: 16527 + - uid: 18721 components: - type: Transform - pos: 35.5,13.5 - parent: 2 - - uid: 1700 + pos: 39.5,39.5 + parent: 16527 + - uid: 18722 components: - type: Transform - pos: 34.5,13.5 - parent: 2 - - uid: 1701 + pos: 39.5,40.5 + parent: 16527 + - uid: 18723 components: - type: Transform - pos: 33.5,13.5 - parent: 2 - - uid: 1702 + pos: 39.5,41.5 + parent: 16527 + - uid: 18724 components: - type: Transform - pos: 32.5,13.5 - parent: 2 - - uid: 1703 + pos: 39.5,42.5 + parent: 16527 + - uid: 18725 components: - type: Transform - pos: 31.5,13.5 - parent: 2 - - uid: 1704 + pos: 39.5,43.5 + parent: 16527 + - uid: 18726 components: - type: Transform - pos: 30.5,13.5 - parent: 2 - - uid: 1705 + pos: 39.5,44.5 + parent: 16527 + - uid: 18727 components: - type: Transform - pos: 29.5,13.5 - parent: 2 - - uid: 1706 + pos: 39.5,45.5 + parent: 16527 + - uid: 18728 components: - type: Transform - pos: 28.5,13.5 - parent: 2 - - uid: 1707 + pos: 39.5,46.5 + parent: 16527 + - uid: 18729 components: - type: Transform - pos: 27.5,13.5 - parent: 2 - - uid: 1708 + pos: 38.5,40.5 + parent: 16527 + - uid: 18730 components: - type: Transform - pos: 26.5,13.5 - parent: 2 - - uid: 1709 + pos: 38.5,41.5 + parent: 16527 + - uid: 18731 components: - type: Transform - pos: 25.5,13.5 - parent: 2 - - uid: 1710 + pos: 38.5,42.5 + parent: 16527 + - uid: 18732 components: - type: Transform - pos: 24.5,13.5 - parent: 2 - - uid: 1711 + pos: 38.5,43.5 + parent: 16527 + - uid: 18733 components: - type: Transform - pos: 23.5,13.5 - parent: 2 - - uid: 1712 + pos: 38.5,44.5 + parent: 16527 + - uid: 18734 components: - type: Transform - pos: 22.5,13.5 - parent: 2 - - uid: 1713 + pos: 38.5,45.5 + parent: 16527 + - uid: 18735 components: - type: Transform - pos: 21.5,13.5 - parent: 2 - - uid: 1714 + pos: 38.5,46.5 + parent: 16527 + - uid: 18736 components: - type: Transform - pos: 20.5,13.5 - parent: 2 - - uid: 1715 + pos: 37.5,40.5 + parent: 16527 + - uid: 18737 components: - type: Transform - pos: 19.5,13.5 - parent: 2 - - uid: 1716 + pos: 37.5,41.5 + parent: 16527 + - uid: 18738 components: - type: Transform - pos: 18.5,13.5 - parent: 2 - - uid: 1717 + pos: 37.5,42.5 + parent: 16527 + - uid: 18739 components: - type: Transform - pos: 17.5,13.5 - parent: 2 - - uid: 1718 + pos: 37.5,43.5 + parent: 16527 + - uid: 18740 components: - type: Transform - pos: 16.5,13.5 - parent: 2 - - uid: 1719 + pos: 37.5,44.5 + parent: 16527 + - uid: 18741 components: - type: Transform - pos: 15.5,13.5 - parent: 2 - - uid: 1720 + pos: 37.5,45.5 + parent: 16527 + - uid: 18742 components: - type: Transform - pos: 14.5,13.5 - parent: 2 - - uid: 1721 + pos: 37.5,46.5 + parent: 16527 + - uid: 18743 components: - type: Transform - pos: 13.5,13.5 - parent: 2 - - uid: 1722 + pos: 36.5,41.5 + parent: 16527 + - uid: 18744 components: - type: Transform - pos: 12.5,13.5 - parent: 2 - - uid: 1723 + pos: 36.5,42.5 + parent: 16527 + - uid: 18745 components: - type: Transform - pos: 12.5,14.5 - parent: 2 - - uid: 1724 + pos: 36.5,43.5 + parent: 16527 + - uid: 18746 components: - type: Transform - pos: 12.5,15.5 - parent: 2 - - uid: 1725 + pos: 36.5,44.5 + parent: 16527 + - uid: 18747 components: - type: Transform - pos: 12.5,16.5 - parent: 2 - - uid: 1726 + pos: 36.5,45.5 + parent: 16527 + - uid: 18748 components: - type: Transform - pos: 12.5,17.5 - parent: 2 - - uid: 1727 + pos: 36.5,46.5 + parent: 16527 + - uid: 18749 components: - type: Transform - pos: 12.5,18.5 - parent: 2 - - uid: 1728 + pos: 37.5,47.5 + parent: 16527 + - uid: 18750 components: - type: Transform - pos: 12.5,19.5 - parent: 2 - - uid: 1729 + pos: 37.5,48.5 + parent: 16527 + - uid: 18751 components: - type: Transform - pos: 12.5,20.5 - parent: 2 - - uid: 1730 + pos: 37.5,49.5 + parent: 16527 + - uid: 18752 components: - type: Transform - pos: 12.5,21.5 - parent: 2 - - uid: 1731 + pos: 37.5,50.5 + parent: 16527 + - uid: 18753 components: - type: Transform - pos: 12.5,22.5 - parent: 2 - - uid: 1732 + pos: 37.5,51.5 + parent: 16527 + - uid: 18754 components: - type: Transform - pos: 12.5,23.5 - parent: 2 - - uid: 1733 + pos: 37.5,52.5 + parent: 16527 + - uid: 18755 components: - type: Transform - pos: 12.5,24.5 - parent: 2 - - uid: 1734 + pos: 37.5,53.5 + parent: 16527 + - uid: 18756 components: - type: Transform - pos: 12.5,25.5 - parent: 2 - - uid: 1735 + pos: 37.5,54.5 + parent: 16527 + - uid: 18757 components: - type: Transform - pos: 12.5,26.5 - parent: 2 - - uid: 1736 + pos: 37.5,55.5 + parent: 16527 + - uid: 18758 components: - type: Transform - pos: 12.5,27.5 - parent: 2 - - uid: 1737 + pos: 37.5,56.5 + parent: 16527 + - uid: 18759 components: - type: Transform - pos: 12.5,28.5 - parent: 2 - - uid: 1738 + pos: 37.5,57.5 + parent: 16527 + - uid: 18760 components: - type: Transform - pos: 12.5,29.5 - parent: 2 - - uid: 1739 + pos: 37.5,58.5 + parent: 16527 + - uid: 18761 components: - type: Transform - pos: 12.5,30.5 - parent: 2 - - uid: 1740 + pos: 38.5,47.5 + parent: 16527 + - uid: 18762 components: - type: Transform - pos: 12.5,31.5 - parent: 2 - - uid: 1741 + pos: 38.5,48.5 + parent: 16527 + - uid: 18763 components: - type: Transform - pos: 12.5,32.5 - parent: 2 - - uid: 1742 + pos: 38.5,49.5 + parent: 16527 + - uid: 18764 components: - type: Transform - pos: 12.5,33.5 - parent: 2 - - uid: 1743 + pos: 38.5,50.5 + parent: 16527 + - uid: 18765 components: - type: Transform - pos: 12.5,34.5 - parent: 2 - - uid: 1744 + pos: 38.5,51.5 + parent: 16527 + - uid: 18766 components: - type: Transform - pos: 12.5,35.5 - parent: 2 - - uid: 1745 + pos: 38.5,52.5 + parent: 16527 + - uid: 18767 components: - type: Transform - pos: 12.5,36.5 - parent: 2 - - uid: 1746 + pos: 38.5,53.5 + parent: 16527 + - uid: 18768 components: - type: Transform - pos: 12.5,37.5 - parent: 2 - - uid: 1747 + pos: 38.5,54.5 + parent: 16527 + - uid: 18769 components: - type: Transform - pos: 13.5,37.5 - parent: 2 - - uid: 1748 + pos: 38.5,55.5 + parent: 16527 + - uid: 18770 components: - type: Transform - pos: 14.5,37.5 - parent: 2 - - uid: 1749 + pos: 38.5,56.5 + parent: 16527 + - uid: 18771 components: - type: Transform - pos: 15.5,37.5 - parent: 2 - - uid: 1750 + pos: 38.5,57.5 + parent: 16527 + - uid: 18772 components: - type: Transform - pos: 16.5,37.5 - parent: 2 - - uid: 1751 + pos: 38.5,58.5 + parent: 16527 + - uid: 18773 components: - type: Transform - pos: 17.5,37.5 - parent: 2 - - uid: 1752 + pos: 39.5,47.5 + parent: 16527 + - uid: 18774 components: - type: Transform - pos: 18.5,37.5 - parent: 2 - - uid: 1753 + pos: 39.5,48.5 + parent: 16527 + - uid: 18775 components: - type: Transform - pos: 19.5,37.5 - parent: 2 - - uid: 1754 + pos: 39.5,49.5 + parent: 16527 + - uid: 18776 components: - type: Transform - pos: 20.5,37.5 - parent: 2 - - uid: 1755 + pos: 39.5,50.5 + parent: 16527 + - uid: 18777 components: - type: Transform - pos: 21.5,37.5 - parent: 2 - - uid: 1756 + pos: 39.5,51.5 + parent: 16527 + - uid: 18778 components: - type: Transform - pos: 22.5,37.5 - parent: 2 - - uid: 1757 + pos: 39.5,52.5 + parent: 16527 + - uid: 18779 components: - type: Transform - pos: 23.5,37.5 - parent: 2 - - uid: 1758 + pos: 39.5,53.5 + parent: 16527 + - uid: 18780 components: - type: Transform - pos: 24.5,37.5 - parent: 2 - - uid: 1759 + pos: 39.5,54.5 + parent: 16527 + - uid: 18781 components: - type: Transform - pos: 25.5,37.5 - parent: 2 - - uid: 1760 + pos: 39.5,55.5 + parent: 16527 + - uid: 18782 components: - type: Transform - pos: 26.5,37.5 - parent: 2 - - uid: 1761 + pos: 39.5,56.5 + parent: 16527 + - uid: 18783 components: - type: Transform - pos: 27.5,37.5 - parent: 2 - - uid: 1762 + pos: 39.5,57.5 + parent: 16527 + - uid: 18784 components: - type: Transform - pos: 28.5,37.5 - parent: 2 - - uid: 1763 + pos: 39.5,58.5 + parent: 16527 + - uid: 18785 components: - type: Transform - pos: 29.5,37.5 - parent: 2 - - uid: 1764 + pos: 40.5,47.5 + parent: 16527 + - uid: 18786 components: - type: Transform - pos: 30.5,37.5 - parent: 2 - - uid: 1765 + pos: 40.5,48.5 + parent: 16527 + - uid: 18787 components: - type: Transform - pos: 31.5,37.5 - parent: 2 - - uid: 1766 + pos: 40.5,49.5 + parent: 16527 + - uid: 18788 components: - type: Transform - pos: 32.5,37.5 - parent: 2 - - uid: 1767 + pos: 40.5,50.5 + parent: 16527 + - uid: 18789 components: - type: Transform - pos: 33.5,37.5 - parent: 2 - - uid: 1768 + pos: 40.5,51.5 + parent: 16527 + - uid: 18790 components: - type: Transform - pos: 34.5,37.5 - parent: 2 - - uid: 1769 + pos: 40.5,52.5 + parent: 16527 + - uid: 18791 components: - type: Transform - pos: 35.5,37.5 - parent: 2 - - uid: 1770 + pos: 40.5,53.5 + parent: 16527 + - uid: 18792 components: - type: Transform - pos: 36.5,37.5 - parent: 2 - - uid: 1772 + pos: 40.5,54.5 + parent: 16527 + - uid: 18793 components: - type: Transform - pos: 5.5,10.5 - parent: 2 - - uid: 1773 + pos: 40.5,55.5 + parent: 16527 + - uid: 18794 components: - type: Transform - pos: 36.5,40.5 - parent: 2 - - uid: 1774 + pos: 40.5,56.5 + parent: 16527 + - uid: 18795 components: - type: Transform - pos: 36.5,41.5 - parent: 2 - - uid: 1775 + pos: 40.5,57.5 + parent: 16527 + - uid: 18796 components: - type: Transform - pos: 36.5,42.5 - parent: 2 - - uid: 1776 + pos: 40.5,58.5 + parent: 16527 + - uid: 18797 components: - type: Transform - pos: 36.5,43.5 - parent: 2 - - uid: 1777 + pos: 41.5,47.5 + parent: 16527 + - uid: 18798 components: - type: Transform - pos: 36.5,44.5 - parent: 2 - - uid: 1778 + pos: 41.5,48.5 + parent: 16527 + - uid: 18799 components: - type: Transform - pos: 37.5,44.5 - parent: 2 - - uid: 1779 + pos: 41.5,49.5 + parent: 16527 + - uid: 18800 components: - type: Transform - pos: 38.5,44.5 - parent: 2 - - uid: 1780 + pos: 41.5,50.5 + parent: 16527 + - uid: 18801 components: - type: Transform - pos: 39.5,44.5 - parent: 2 - - uid: 1781 + pos: 41.5,51.5 + parent: 16527 + - uid: 18802 components: - type: Transform - pos: 40.5,44.5 - parent: 2 - - uid: 1782 + pos: 41.5,52.5 + parent: 16527 + - uid: 18803 components: - type: Transform - pos: 41.5,44.5 - parent: 2 - - uid: 1783 + pos: 41.5,53.5 + parent: 16527 + - uid: 18804 components: - type: Transform - pos: 42.5,44.5 - parent: 2 - - uid: 1784 + pos: 41.5,54.5 + parent: 16527 + - uid: 18805 components: - type: Transform - pos: 43.5,44.5 - parent: 2 - - uid: 1785 + pos: 41.5,55.5 + parent: 16527 + - uid: 18806 components: - type: Transform - pos: 44.5,44.5 - parent: 2 - - uid: 1786 + pos: 41.5,56.5 + parent: 16527 + - uid: 18807 components: - type: Transform - pos: 45.5,44.5 - parent: 2 - - uid: 1787 + pos: 41.5,57.5 + parent: 16527 + - uid: 18808 components: - type: Transform - pos: 46.5,44.5 - parent: 2 - - uid: 1788 + pos: 41.5,58.5 + parent: 16527 + - uid: 18809 components: - type: Transform - pos: 46.5,45.5 - parent: 2 - - uid: 1789 + pos: 42.5,47.5 + parent: 16527 + - uid: 18810 components: - type: Transform - pos: 46.5,46.5 - parent: 2 - - uid: 1790 + pos: 42.5,48.5 + parent: 16527 + - uid: 18811 components: - type: Transform - pos: 46.5,47.5 - parent: 2 - - uid: 1791 + pos: 42.5,49.5 + parent: 16527 + - uid: 18812 components: - type: Transform - pos: 46.5,48.5 - parent: 2 - - uid: 1792 + pos: 42.5,50.5 + parent: 16527 + - uid: 18813 components: - type: Transform - pos: 46.5,49.5 - parent: 2 - - uid: 1793 + pos: 42.5,51.5 + parent: 16527 + - uid: 18814 components: - type: Transform - pos: 46.5,50.5 - parent: 2 - - uid: 1794 + pos: 42.5,52.5 + parent: 16527 + - uid: 18815 components: - type: Transform - pos: 46.5,51.5 - parent: 2 - - uid: 1795 + pos: 42.5,53.5 + parent: 16527 + - uid: 18816 components: - type: Transform - pos: 46.5,52.5 - parent: 2 - - uid: 1796 + pos: 42.5,54.5 + parent: 16527 + - uid: 18817 components: - type: Transform - pos: 47.5,52.5 - parent: 2 - - uid: 1797 + pos: 42.5,55.5 + parent: 16527 + - uid: 18818 components: - type: Transform - pos: 48.5,52.5 - parent: 2 - - uid: 1798 + pos: 42.5,56.5 + parent: 16527 + - uid: 18819 components: - type: Transform - pos: 49.5,52.5 - parent: 2 - - uid: 1799 + pos: 42.5,57.5 + parent: 16527 + - uid: 18820 components: - type: Transform - pos: 50.5,52.5 - parent: 2 - - uid: 1800 + pos: 42.5,58.5 + parent: 16527 + - uid: 18821 components: - type: Transform - pos: 51.5,52.5 - parent: 2 - - uid: 1801 + pos: 36.5,54.5 + parent: 16527 + - uid: 18822 components: - type: Transform - pos: 52.5,52.5 - parent: 2 - - uid: 1802 + pos: 36.5,55.5 + parent: 16527 + - uid: 18823 components: - type: Transform - pos: 53.5,52.5 - parent: 2 - - uid: 1803 + pos: 36.5,56.5 + parent: 16527 + - uid: 18824 components: - type: Transform - pos: 54.5,52.5 - parent: 2 - - uid: 1804 + pos: 36.5,57.5 + parent: 16527 + - uid: 18825 components: - type: Transform - pos: 55.5,52.5 - parent: 2 - - uid: 1805 + pos: 36.5,63.5 + parent: 16527 + - uid: 18826 components: - type: Transform - pos: 56.5,52.5 - parent: 2 - - uid: 1806 + pos: 36.5,62.5 + parent: 16527 + - uid: 18827 components: - type: Transform - pos: 57.5,52.5 - parent: 2 - - uid: 1807 + pos: 36.5,61.5 + parent: 16527 + - uid: 18828 components: - type: Transform - pos: 58.5,52.5 - parent: 2 - - uid: 1808 + pos: 37.5,63.5 + parent: 16527 + - uid: 18829 components: - type: Transform - pos: 59.5,52.5 - parent: 2 - - uid: 1809 + pos: 37.5,62.5 + parent: 16527 + - uid: 18830 components: - type: Transform - pos: 60.5,52.5 - parent: 2 - - uid: 1810 + pos: 37.5,61.5 + parent: 16527 + - uid: 18831 components: - type: Transform - pos: 61.5,52.5 - parent: 2 - - uid: 1811 + pos: 38.5,63.5 + parent: 16527 + - uid: 18832 components: - type: Transform - pos: 62.5,52.5 - parent: 2 - - uid: 1812 + pos: 38.5,62.5 + parent: 16527 + - uid: 18833 components: - type: Transform - pos: 63.5,52.5 - parent: 2 - - uid: 1813 + pos: 38.5,61.5 + parent: 16527 + - uid: 18834 components: - type: Transform - pos: 64.5,52.5 - parent: 2 - - uid: 1814 + pos: 38.5,60.5 + parent: 16527 + - uid: 18835 components: - type: Transform - pos: 65.5,52.5 - parent: 2 - - uid: 1815 + pos: 39.5,62.5 + parent: 16527 + - uid: 18836 components: - type: Transform - pos: 66.5,52.5 - parent: 2 - - uid: 1816 + pos: 39.5,61.5 + parent: 16527 + - uid: 18837 components: - type: Transform - pos: 67.5,52.5 - parent: 2 - - uid: 1817 + pos: 39.5,60.5 + parent: 16527 + - uid: 18838 components: - type: Transform - pos: 68.5,52.5 - parent: 2 - - uid: 1818 + pos: 40.5,62.5 + parent: 16527 + - uid: 18839 components: - type: Transform - pos: 69.5,52.5 - parent: 2 - - uid: 1819 + pos: 40.5,61.5 + parent: 16527 + - uid: 18840 components: - type: Transform - pos: 70.5,52.5 - parent: 2 - - uid: 1820 + pos: 40.5,60.5 + parent: 16527 + - uid: 18841 components: - type: Transform - pos: 70.5,51.5 - parent: 2 - - uid: 1821 + pos: 40.5,59.5 + parent: 16527 + - uid: 18842 components: - type: Transform - pos: 70.5,50.5 - parent: 2 - - uid: 1822 + pos: 41.5,60.5 + parent: 16527 + - uid: 18843 components: - type: Transform - pos: 70.5,49.5 - parent: 2 - - uid: 1823 + pos: 41.5,59.5 + parent: 16527 + - uid: 18844 components: - type: Transform - pos: 70.5,48.5 - parent: 2 - - uid: 1824 + pos: 42.5,60.5 + parent: 16527 + - uid: 18845 components: - type: Transform - pos: 70.5,47.5 - parent: 2 - - uid: 1825 + pos: 42.5,59.5 + parent: 16527 + - uid: 18846 components: - type: Transform - pos: 70.5,46.5 - parent: 2 - - uid: 1826 + pos: 41.5,61.5 + parent: 16527 + - uid: 18847 components: - type: Transform - pos: 70.5,45.5 - parent: 2 - - uid: 1827 + pos: 15.5,72.5 + parent: 16527 + - uid: 18848 components: - type: Transform - pos: 70.5,44.5 - parent: 2 - - uid: 1828 + pos: 15.5,73.5 + parent: 16527 + - uid: 18849 components: - type: Transform - pos: 70.5,43.5 - parent: 2 - - uid: 1829 + pos: 19.5,69.5 + parent: 16527 + - uid: 18850 components: - type: Transform - pos: 70.5,42.5 - parent: 2 - - uid: 1830 + pos: 19.5,68.5 + parent: 16527 + - uid: 18851 components: - type: Transform - pos: 70.5,41.5 - parent: 2 - - uid: 1831 + pos: 19.5,67.5 + parent: 16527 + - uid: 18852 components: - type: Transform - pos: 70.5,40.5 - parent: 2 - - uid: 1832 - components: + pos: 19.5,66.5 + parent: 16527 + - uid: 18853 + components: - type: Transform - pos: 70.5,39.5 - parent: 2 - - uid: 1833 + pos: 19.5,65.5 + parent: 16527 + - uid: 18854 components: - type: Transform - pos: 70.5,38.5 - parent: 2 - - uid: 1834 + pos: 19.5,64.5 + parent: 16527 + - uid: 18855 components: - type: Transform - pos: 70.5,37.5 - parent: 2 - - uid: 1835 + pos: 20.5,68.5 + parent: 16527 + - uid: 18856 components: - type: Transform - pos: 71.5,37.5 - parent: 2 - - uid: 1836 + pos: 20.5,67.5 + parent: 16527 + - uid: 18857 components: - type: Transform - pos: 72.5,37.5 - parent: 2 - - uid: 1837 + pos: 20.5,66.5 + parent: 16527 + - uid: 18858 components: - type: Transform - pos: 73.5,37.5 - parent: 2 - - uid: 1838 + pos: 20.5,65.5 + parent: 16527 + - uid: 18859 components: - type: Transform - pos: 74.5,37.5 - parent: 2 - - uid: 1839 + pos: 20.5,64.5 + parent: 16527 + - uid: 18860 components: - type: Transform - pos: 75.5,37.5 - parent: 2 - - uid: 1840 + pos: 21.5,68.5 + parent: 16527 + - uid: 18861 components: - type: Transform - pos: 76.5,37.5 - parent: 2 - - uid: 1841 + pos: 21.5,67.5 + parent: 16527 + - uid: 18862 components: - type: Transform - pos: 77.5,37.5 - parent: 2 - - uid: 1842 + pos: 21.5,66.5 + parent: 16527 + - uid: 18863 components: - type: Transform - pos: 78.5,37.5 - parent: 2 - - uid: 1843 + pos: 21.5,65.5 + parent: 16527 + - uid: 18864 components: - type: Transform - pos: 79.5,37.5 - parent: 2 - - uid: 1844 + pos: 21.5,64.5 + parent: 16527 + - uid: 18865 components: - type: Transform - pos: 80.5,37.5 - parent: 2 - - uid: 1845 + pos: 22.5,67.5 + parent: 16527 + - uid: 18866 components: - type: Transform - pos: 81.5,37.5 - parent: 2 - - uid: 1846 + pos: 22.5,66.5 + parent: 16527 + - uid: 18867 components: - type: Transform - pos: 82.5,37.5 - parent: 2 - - uid: 1847 + pos: 22.5,65.5 + parent: 16527 + - uid: 18868 components: - type: Transform - pos: 82.5,39.5 - parent: 2 - - uid: 1848 + pos: 22.5,64.5 + parent: 16527 + - uid: 18869 components: - type: Transform - pos: 82.5,40.5 - parent: 2 - - uid: 1849 + pos: 23.5,66.5 + parent: 16527 + - uid: 18870 components: - type: Transform - pos: 82.5,41.5 - parent: 2 - - uid: 1850 + pos: 23.5,65.5 + parent: 16527 + - uid: 18871 components: - type: Transform - pos: 82.5,42.5 - parent: 2 - - uid: 1851 + pos: 23.5,64.5 + parent: 16527 + - uid: 18872 components: - type: Transform - pos: 82.5,43.5 - parent: 2 - - uid: 1852 + pos: 24.5,66.5 + parent: 16527 + - uid: 18873 components: - type: Transform - pos: 82.5,44.5 - parent: 2 - - uid: 1853 + pos: 24.5,65.5 + parent: 16527 + - uid: 18874 components: - type: Transform - pos: 82.5,45.5 - parent: 2 - - uid: 1854 + pos: 24.5,64.5 + parent: 16527 + - uid: 18875 components: - type: Transform - pos: 82.5,46.5 - parent: 2 - - uid: 1855 + pos: 25.5,65.5 + parent: 16527 + - uid: 18876 components: - type: Transform - pos: 82.5,47.5 - parent: 2 - - uid: 1856 + pos: 25.5,64.5 + parent: 16527 + - uid: 18877 components: - type: Transform - pos: 82.5,48.5 - parent: 2 - - uid: 1857 + pos: 26.5,65.5 + parent: 16527 + - uid: 18878 components: - type: Transform - pos: 82.5,49.5 - parent: 2 - - uid: 1858 + pos: 26.5,64.5 + parent: 16527 + - uid: 18879 components: - type: Transform - pos: 82.5,50.5 - parent: 2 - - uid: 1859 + pos: 27.5,65.5 + parent: 16527 + - uid: 18880 components: - type: Transform - pos: 71.5,36.5 - parent: 2 - - uid: 1860 + pos: 27.5,64.5 + parent: 16527 + - uid: 18881 components: - type: Transform - pos: 71.5,35.5 - parent: 2 - - uid: 1861 + pos: 28.5,64.5 + parent: 16527 + - uid: 18882 components: - type: Transform - pos: 71.5,34.5 - parent: 2 - - uid: 1862 + pos: 28.5,63.5 + parent: 16527 + - uid: 18883 components: - type: Transform - pos: 71.5,33.5 - parent: 2 - - uid: 1863 + pos: 29.5,63.5 + parent: 16527 + - uid: 18884 components: - type: Transform - pos: 71.5,32.5 - parent: 2 - - uid: 1864 + pos: 29.5,62.5 + parent: 16527 + - uid: 18885 components: - type: Transform - pos: 71.5,31.5 - parent: 2 - - uid: 1865 + pos: 29.5,61.5 + parent: 16527 + - uid: 18886 components: - type: Transform - pos: 71.5,30.5 - parent: 2 - - uid: 1866 + pos: 30.5,63.5 + parent: 16527 + - uid: 18887 components: - type: Transform - pos: 71.5,29.5 - parent: 2 - - uid: 1867 + pos: 30.5,62.5 + parent: 16527 + - uid: 18888 components: - type: Transform - pos: 71.5,28.5 - parent: 2 - - uid: 1868 + pos: 30.5,61.5 + parent: 16527 + - uid: 18889 components: - type: Transform - pos: 71.5,27.5 - parent: 2 - - uid: 1869 + pos: 31.5,63.5 + parent: 16527 + - uid: 18890 components: - type: Transform - pos: 71.5,26.5 - parent: 2 - - uid: 1870 + pos: 31.5,62.5 + parent: 16527 + - uid: 18891 components: - type: Transform - pos: 71.5,25.5 - parent: 2 - - uid: 1871 + pos: 31.5,61.5 + parent: 16527 + - uid: 18892 components: - type: Transform - pos: 71.5,24.5 - parent: 2 - - uid: 1872 + pos: 32.5,63.5 + parent: 16527 + - uid: 18893 components: - type: Transform - pos: 71.5,23.5 - parent: 2 - - uid: 1873 + pos: 32.5,62.5 + parent: 16527 + - uid: 18894 components: - type: Transform - pos: 71.5,22.5 - parent: 2 - - uid: 1874 + pos: 32.5,61.5 + parent: 16527 + - uid: 18895 components: - type: Transform - pos: 71.5,21.5 - parent: 2 - - uid: 1875 + pos: 33.5,63.5 + parent: 16527 + - uid: 18896 components: - type: Transform - pos: 71.5,20.5 - parent: 2 - - uid: 1876 + pos: 33.5,62.5 + parent: 16527 + - uid: 18897 components: - type: Transform - pos: 71.5,19.5 - parent: 2 - - uid: 1877 + pos: 33.5,61.5 + parent: 16527 + - uid: 18898 components: - type: Transform - pos: 71.5,18.5 - parent: 2 - - uid: 1878 + pos: 34.5,63.5 + parent: 16527 + - uid: 18899 components: - type: Transform - pos: 71.5,17.5 - parent: 2 - - uid: 1879 + pos: 34.5,62.5 + parent: 16527 + - uid: 18900 components: - type: Transform - pos: 71.5,16.5 - parent: 2 - - uid: 1880 + pos: 34.5,61.5 + parent: 16527 + - uid: 18901 components: - type: Transform - pos: 71.5,15.5 - parent: 2 - - uid: 1881 + pos: 35.5,63.5 + parent: 16527 + - uid: 18902 components: - type: Transform - pos: 71.5,14.5 - parent: 2 - - uid: 1882 + pos: 35.5,62.5 + parent: 16527 + - uid: 18903 components: - type: Transform - pos: 71.5,13.5 - parent: 2 - - uid: 1883 + pos: 35.5,61.5 + parent: 16527 + - uid: 18904 components: - type: Transform - pos: 70.5,13.5 - parent: 2 - - uid: 1884 + pos: 34.5,64.5 + parent: 16527 + - uid: 18905 components: - type: Transform - pos: 69.5,13.5 - parent: 2 - - uid: 1885 + pos: 35.5,64.5 + parent: 16527 + - uid: 18906 components: - type: Transform - pos: 68.5,13.5 - parent: 2 - - uid: 1886 + pos: 36.5,64.5 + parent: 16527 + - uid: 18907 components: - type: Transform - pos: 67.5,13.5 - parent: 2 - - uid: 1887 + pos: 37.5,64.5 + parent: 16527 + - uid: 18908 components: - type: Transform - pos: 66.5,13.5 - parent: 2 - - uid: 1888 + pos: 38.5,64.5 + parent: 16527 + - uid: 18909 components: - type: Transform - pos: 65.5,13.5 - parent: 2 - - uid: 1889 + pos: 39.5,64.5 + parent: 16527 + - uid: 18910 components: - type: Transform - pos: 64.5,13.5 - parent: 2 - - uid: 1890 + pos: 38.5,65.5 + parent: 16527 + - uid: 18911 components: - type: Transform - pos: 63.5,13.5 - parent: 2 - - uid: 1891 + pos: 37.5,65.5 + parent: 16527 + - uid: 18912 components: - type: Transform - pos: 62.5,13.5 - parent: 2 - - uid: 1892 + pos: 36.5,65.5 + parent: 16527 + - uid: 18913 components: - type: Transform - pos: 61.5,13.5 - parent: 2 - - uid: 1893 + pos: 35.5,65.5 + parent: 16527 + - uid: 18914 components: - type: Transform - pos: 60.5,13.5 - parent: 2 - - uid: 1894 + pos: 41.5,64.5 + parent: 16527 + - uid: 18915 components: - type: Transform - pos: 59.5,13.5 - parent: 2 - - uid: 1895 + pos: 41.5,63.5 + parent: 16527 + - uid: 18916 components: - type: Transform - pos: 58.5,13.5 - parent: 2 - - uid: 1896 + pos: 41.5,62.5 + parent: 16527 + - uid: 18917 components: - type: Transform - pos: 57.5,13.5 - parent: 2 - - uid: 1897 + pos: 42.5,64.5 + parent: 16527 + - uid: 18918 components: - type: Transform - pos: 56.5,13.5 - parent: 2 - - uid: 1898 + pos: 42.5,63.5 + parent: 16527 + - uid: 18919 components: - type: Transform - pos: 55.5,13.5 - parent: 2 - - uid: 1899 + pos: 42.5,62.5 + parent: 16527 + - uid: 18920 components: - type: Transform - pos: 54.5,13.5 - parent: 2 - - uid: 1900 + pos: 42.5,61.5 + parent: 16527 + - uid: 18921 components: - type: Transform - pos: 53.5,13.5 - parent: 2 - - uid: 1901 + pos: 43.5,64.5 + parent: 16527 + - uid: 18922 components: - type: Transform - pos: 52.5,13.5 - parent: 2 - - uid: 1902 + pos: 43.5,63.5 + parent: 16527 + - uid: 18923 components: - type: Transform - pos: 51.5,13.5 - parent: 2 - - uid: 1903 + pos: 43.5,62.5 + parent: 16527 + - uid: 18924 components: - type: Transform - pos: 50.5,13.5 - parent: 2 - - uid: 1904 + pos: 43.5,61.5 + parent: 16527 + - uid: 18925 components: - type: Transform - pos: 49.5,13.5 - parent: 2 - - uid: 1905 + pos: 40.5,63.5 + parent: 16527 + - uid: 18926 components: - type: Transform - pos: 48.5,13.5 - parent: 2 - - uid: 1906 + pos: 39.5,63.5 + parent: 16527 + - uid: 18927 components: - type: Transform - pos: 47.5,13.5 - parent: 2 - - uid: 1907 + pos: 43.5,57.5 + parent: 16527 + - uid: 18928 components: - type: Transform - pos: 46.5,13.5 - parent: 2 - - uid: 1908 + pos: 43.5,56.5 + parent: 16527 + - uid: 18929 components: - type: Transform - pos: 45.5,13.5 - parent: 2 - - uid: 1909 + pos: 43.5,55.5 + parent: 16527 + - uid: 18930 components: - type: Transform - pos: 44.5,13.5 - parent: 2 - - uid: 1910 + pos: 44.5,57.5 + parent: 16527 + - uid: 18931 components: - type: Transform - pos: 43.5,13.5 - parent: 2 - - uid: 1911 + pos: 44.5,58.5 + parent: 16527 + - uid: 18932 components: - type: Transform - pos: 42.5,13.5 - parent: 2 - - uid: 1912 + pos: 44.5,59.5 + parent: 16527 + - uid: 18933 components: - type: Transform - pos: 41.5,13.5 - parent: 2 - - uid: 1913 + pos: 32.5,60.5 + parent: 16527 + - uid: 18934 components: - type: Transform - pos: 40.5,13.5 - parent: 2 - - uid: 1914 + pos: 33.5,60.5 + parent: 16527 + - uid: 18935 components: - type: Transform - pos: 39.5,13.5 - parent: 2 - - uid: 1917 + pos: 34.5,60.5 + parent: 16527 + - uid: 18936 components: - type: Transform - pos: 36.5,13.5 - parent: 2 - - uid: 1918 + pos: 35.5,60.5 + parent: 16527 + - uid: 18937 components: - type: Transform - pos: 36.5,14.5 - parent: 2 - - uid: 1919 + pos: 36.5,60.5 + parent: 16527 + - uid: 18938 components: - type: Transform - pos: 36.5,15.5 - parent: 2 - - uid: 1920 + pos: 37.5,60.5 + parent: 16527 + - uid: 18939 components: - type: Transform - pos: 36.5,16.5 - parent: 2 - - uid: 1921 + pos: 38.5,59.5 + parent: 16527 + - uid: 18940 components: - type: Transform - pos: 36.5,17.5 - parent: 2 - - uid: 1922 + pos: 37.5,59.5 + parent: 16527 + - uid: 18941 components: - type: Transform - pos: 36.5,18.5 - parent: 2 - - uid: 1923 + pos: 36.5,59.5 + parent: 16527 + - uid: 18942 components: - type: Transform - pos: 36.5,19.5 - parent: 2 - - uid: 1924 + pos: 35.5,59.5 + parent: 16527 + - uid: 18943 components: - type: Transform - pos: 36.5,20.5 - parent: 2 - - uid: 1925 + pos: 34.5,59.5 + parent: 16527 + - uid: 18944 components: - type: Transform - pos: 36.5,21.5 - parent: 2 - - uid: 1926 + pos: 33.5,59.5 + parent: 16527 + - uid: 18945 components: - type: Transform - pos: 36.5,22.5 - parent: 2 - - uid: 1927 + pos: 32.5,59.5 + parent: 16527 + - uid: 18946 components: - type: Transform - pos: 36.5,23.5 - parent: 2 - - uid: 1928 + pos: 39.5,59.5 + parent: 16527 + - uid: 18947 components: - type: Transform - pos: 36.5,24.5 - parent: 2 - - uid: 1929 + pos: 36.5,58.5 + parent: 16527 + - uid: 18948 components: - type: Transform - pos: 36.5,25.5 - parent: 2 - - uid: 1930 + pos: 35.5,58.5 + parent: 16527 + - uid: 18949 components: - type: Transform - pos: 36.5,26.5 - parent: 2 - - uid: 1931 + pos: 34.5,58.5 + parent: 16527 + - uid: 18950 components: - type: Transform - pos: 36.5,27.5 - parent: 2 - - uid: 1932 + pos: 33.5,58.5 + parent: 16527 + - uid: 18951 components: - type: Transform - pos: 36.5,28.5 - parent: 2 - - uid: 1933 + pos: 24.5,63.5 + parent: 16527 + - uid: 18952 components: - type: Transform - pos: 36.5,29.5 - parent: 2 - - uid: 1934 + pos: 26.5,61.5 + parent: 16527 + - uid: 18953 components: - type: Transform - pos: 36.5,30.5 - parent: 2 - - uid: 1935 + pos: 27.5,60.5 + parent: 16527 + - uid: 18954 components: - type: Transform - pos: 36.5,31.5 - parent: 2 - - uid: 1936 + pos: 28.5,60.5 + parent: 16527 + - uid: 18955 components: - type: Transform - pos: 36.5,32.5 - parent: 2 - - uid: 1937 + pos: 25.5,63.5 + parent: 16527 + - uid: 18956 components: - type: Transform - pos: 36.5,33.5 - parent: 2 - - uid: 1938 + pos: 26.5,63.5 + parent: 16527 + - uid: 18957 components: - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 1939 + pos: 27.5,63.5 + parent: 16527 + - uid: 18958 components: - type: Transform - pos: 36.5,35.5 - parent: 2 - - uid: 1940 + pos: 26.5,62.5 + parent: 16527 + - uid: 18959 components: - type: Transform - pos: 36.5,36.5 - parent: 2 - - uid: 1941 + pos: 27.5,62.5 + parent: 16527 + - uid: 18960 components: - type: Transform - pos: 27.5,12.5 - parent: 2 - - uid: 1942 + pos: 28.5,62.5 + parent: 16527 + - uid: 18961 components: - type: Transform - pos: 27.5,11.5 - parent: 2 - - uid: 1943 + pos: 27.5,61.5 + parent: 16527 + - uid: 18962 components: - type: Transform - pos: 27.5,10.5 - parent: 2 - - uid: 1944 + pos: 28.5,61.5 + parent: 16527 + - uid: 18963 components: - type: Transform - pos: 27.5,9.5 - parent: 2 - - uid: 1945 + pos: 16.5,73.5 + parent: 16527 + - uid: 18964 components: - type: Transform - pos: 27.5,8.5 - parent: 2 - - uid: 1946 + pos: 17.5,72.5 + parent: 16527 + - uid: 18965 components: - type: Transform - pos: 27.5,7.5 - parent: 2 - - uid: 1947 + pos: 18.5,72.5 + parent: 16527 + - uid: 18966 components: - type: Transform - pos: 27.5,6.5 - parent: 2 - - uid: 1948 + pos: 19.5,72.5 + parent: 16527 + - uid: 18967 components: - type: Transform - pos: 27.5,5.5 - parent: 2 - - uid: 1949 + pos: 19.5,71.5 + parent: 16527 + - uid: 18968 components: - type: Transform - pos: 27.5,4.5 - parent: 2 - - uid: 1950 + pos: 19.5,70.5 + parent: 16527 + - uid: 18969 components: - type: Transform - pos: 28.5,4.5 - parent: 2 - - uid: 1951 + pos: 20.5,71.5 + parent: 16527 + - uid: 18970 components: - type: Transform - pos: 29.5,4.5 - parent: 2 - - uid: 1952 + pos: 20.5,70.5 + parent: 16527 + - uid: 18971 components: - type: Transform - pos: 30.5,4.5 - parent: 2 - - uid: 1953 + pos: 20.5,69.5 + parent: 16527 + - uid: 18972 components: - type: Transform - pos: 31.5,4.5 - parent: 2 - - uid: 1954 + pos: 21.5,70.5 + parent: 16527 + - uid: 18973 components: - type: Transform - pos: 32.5,4.5 - parent: 2 - - uid: 1955 + pos: 21.5,69.5 + parent: 16527 + - uid: 18974 components: - type: Transform - pos: 32.5,5.5 - parent: 2 - - uid: 1956 + pos: 22.5,70.5 + parent: 16527 + - uid: 18975 components: - type: Transform - pos: 32.5,6.5 - parent: 2 - - uid: 1957 + pos: 22.5,69.5 + parent: 16527 + - uid: 18976 components: - type: Transform - pos: 32.5,7.5 - parent: 2 - - uid: 1958 + pos: 22.5,68.5 + parent: 16527 + - uid: 18977 components: - type: Transform - pos: 32.5,8.5 - parent: 2 - - uid: 1959 + pos: 23.5,69.5 + parent: 16527 + - uid: 18978 components: - type: Transform - pos: 32.5,9.5 - parent: 2 - - uid: 1960 + pos: 23.5,68.5 + parent: 16527 + - uid: 18979 components: - type: Transform - pos: 32.5,10.5 - parent: 2 - - uid: 1961 + pos: 23.5,67.5 + parent: 16527 + - uid: 18980 components: - type: Transform - pos: 32.5,11.5 - parent: 2 - - uid: 1962 + pos: 24.5,69.5 + parent: 16527 + - uid: 18981 components: - type: Transform - pos: 32.5,12.5 - parent: 2 - - uid: 1963 + pos: 24.5,68.5 + parent: 16527 + - uid: 18982 components: - type: Transform - pos: 30.5,11.5 - parent: 2 - - uid: 1964 + pos: 24.5,67.5 + parent: 16527 + - uid: 18983 components: - type: Transform - pos: 29.5,11.5 - parent: 2 - - uid: 1965 + pos: 25.5,68.5 + parent: 16527 + - uid: 18984 components: - type: Transform - pos: 31.5,11.5 - parent: 2 - - uid: 1966 + pos: 25.5,67.5 + parent: 16527 + - uid: 18985 components: - type: Transform - pos: 28.5,11.5 - parent: 2 - - uid: 1967 + pos: 25.5,66.5 + parent: 16527 + - uid: 18986 components: - type: Transform - pos: 59.5,-2.5 - parent: 2 - - uid: 1968 + pos: 26.5,68.5 + parent: 16527 + - uid: 18987 components: - type: Transform - pos: 53.5,49.5 - parent: 2 - - uid: 1969 + pos: 26.5,67.5 + parent: 16527 + - uid: 18988 components: - type: Transform - pos: 53.5,48.5 - parent: 2 - - uid: 1970 + pos: 26.5,66.5 + parent: 16527 + - uid: 18989 components: - type: Transform - pos: 53.5,47.5 - parent: 2 - - uid: 1971 + pos: 27.5,67.5 + parent: 16527 + - uid: 18990 components: - type: Transform - pos: 52.5,47.5 - parent: 2 - - uid: 1972 + pos: 27.5,66.5 + parent: 16527 + - uid: 18991 components: - type: Transform - pos: 51.5,47.5 - parent: 2 - - uid: 1973 + pos: 28.5,67.5 + parent: 16527 + - uid: 18992 components: - type: Transform - pos: 50.5,47.5 - parent: 2 - - uid: 1974 + pos: 28.5,66.5 + parent: 16527 + - uid: 18993 components: - type: Transform - pos: 49.5,47.5 - parent: 2 - - uid: 1975 + pos: 28.5,65.5 + parent: 16527 + - uid: 18994 components: - type: Transform - pos: 55.5,47.5 - parent: 2 - - uid: 1976 + pos: 29.5,65.5 + parent: 16527 + - uid: 18995 components: - type: Transform - pos: 56.5,47.5 - parent: 2 - - uid: 1977 + pos: 29.5,66.5 + parent: 16527 + - uid: 18996 components: - type: Transform - pos: 61.5,45.5 - parent: 2 - - uid: 1978 + pos: 29.5,64.5 + parent: 16527 + - uid: 18997 components: - type: Transform - pos: 61.5,44.5 - parent: 2 - - uid: 1979 + pos: 30.5,64.5 + parent: 16527 + - uid: 18998 components: - type: Transform - pos: 62.5,44.5 - parent: 2 - - uid: 1980 + pos: 31.5,64.5 + parent: 16527 + - uid: 18999 components: - type: Transform - pos: 63.5,44.5 - parent: 2 - - uid: 1981 + pos: 30.5,65.5 + parent: 16527 + - uid: 19000 components: - type: Transform - pos: 64.5,44.5 - parent: 2 - - uid: 1982 + pos: 14.5,63.5 + parent: 16527 + - uid: 19001 components: - type: Transform - pos: 65.5,44.5 - parent: 2 - - uid: 1983 + pos: 15.5,63.5 + parent: 16527 + - uid: 19002 components: - type: Transform - pos: 66.5,44.5 - parent: 2 - - uid: 1984 + pos: 16.5,63.5 + parent: 16527 + - uid: 19003 components: - type: Transform - pos: 67.5,44.5 - parent: 2 - - uid: 1985 + pos: 17.5,63.5 + parent: 16527 + - uid: 19004 components: - type: Transform - pos: 68.5,44.5 - parent: 2 - - uid: 1986 + pos: 18.5,63.5 + parent: 16527 + - uid: 19005 components: - type: Transform - pos: 63.5,43.5 - parent: 2 - - uid: 1987 + pos: 17.5,62.5 + parent: 16527 + - uid: 19006 components: - type: Transform - pos: 63.5,42.5 - parent: 2 - - uid: 1988 + pos: 16.5,62.5 + parent: 16527 + - uid: 19007 components: - type: Transform - pos: 63.5,41.5 - parent: 2 - - uid: 1989 + pos: 15.5,62.5 + parent: 16527 + - uid: 19008 components: - type: Transform - pos: 63.5,40.5 - parent: 2 - - uid: 1990 + pos: 14.5,62.5 + parent: 16527 + - uid: 19009 components: - type: Transform - pos: 63.5,39.5 - parent: 2 - - uid: 1991 + pos: 16.5,61.5 + parent: 16527 + - uid: 19010 components: - type: Transform - pos: 63.5,38.5 - parent: 2 - - uid: 1992 + pos: 15.5,61.5 + parent: 16527 + - uid: 19011 components: - type: Transform - pos: 63.5,37.5 - parent: 2 - - uid: 1993 + pos: 14.5,61.5 + parent: 16527 + - uid: 19012 components: - type: Transform - pos: 63.5,36.5 - parent: 2 - - uid: 1994 + pos: 19.5,54.5 + parent: 16527 + - uid: 19013 components: - type: Transform - pos: 63.5,35.5 - parent: 2 - - uid: 1995 + pos: 19.5,55.5 + parent: 16527 + - uid: 19014 components: - type: Transform - pos: 57.5,45.5 - parent: 2 - - uid: 1996 + pos: 19.5,56.5 + parent: 16527 + - uid: 19015 components: - type: Transform - pos: 56.5,45.5 - parent: 2 - - uid: 1997 + pos: 18.5,54.5 + parent: 16527 + - uid: 19016 components: - type: Transform - pos: 55.5,45.5 - parent: 2 - - uid: 1998 + pos: 18.5,55.5 + parent: 16527 + - uid: 19017 components: - type: Transform - pos: 54.5,45.5 - parent: 2 - - uid: 1999 + pos: 18.5,56.5 + parent: 16527 + - uid: 19018 components: - type: Transform - pos: 52.5,45.5 - parent: 2 - - uid: 2000 + pos: 17.5,54.5 + parent: 16527 + - uid: 19019 components: - type: Transform - pos: 51.5,45.5 - parent: 2 - - uid: 2001 + pos: 17.5,55.5 + parent: 16527 + - uid: 19020 components: - type: Transform - pos: 50.5,45.5 - parent: 2 - - uid: 2002 + pos: 17.5,56.5 + parent: 16527 + - uid: 19021 components: - type: Transform - pos: 49.5,45.5 - parent: 2 - - uid: 2003 + pos: 16.5,55.5 + parent: 16527 + - uid: 19022 components: - type: Transform - pos: 49.5,44.5 - parent: 2 - - uid: 2004 + pos: 16.5,56.5 + parent: 16527 + - uid: 19023 components: - type: Transform - pos: 49.5,43.5 - parent: 2 - - uid: 2005 + pos: 16.5,57.5 + parent: 16527 + - uid: 19024 components: - type: Transform - pos: 49.5,42.5 - parent: 2 - - uid: 2006 + pos: 15.5,55.5 + parent: 16527 + - uid: 19025 components: - type: Transform - pos: 49.5,41.5 - parent: 2 - - uid: 2007 + pos: 15.5,56.5 + parent: 16527 + - uid: 19026 components: - type: Transform - pos: 49.5,40.5 - parent: 2 - - uid: 2008 + pos: 15.5,57.5 + parent: 16527 + - uid: 19027 components: - type: Transform - pos: 48.5,40.5 - parent: 2 - - uid: 2009 + pos: 14.5,55.5 + parent: 16527 + - uid: 19028 components: - type: Transform - pos: 47.5,40.5 - parent: 2 - - uid: 2010 + pos: 14.5,56.5 + parent: 16527 + - uid: 19029 components: - type: Transform - pos: 43.5,38.5 - parent: 2 - - uid: 2011 + pos: 14.5,57.5 + parent: 16527 + - uid: 19030 components: - type: Transform - pos: 44.5,38.5 - parent: 2 - - uid: 2012 + pos: 14.5,60.5 + parent: 16527 + - uid: 19031 components: - type: Transform - pos: 42.5,38.5 - parent: 2 - - uid: 2013 + pos: 14.5,59.5 + parent: 16527 + - uid: 19032 components: - type: Transform - pos: 41.5,38.5 - parent: 2 - - uid: 2014 + pos: 14.5,58.5 + parent: 16527 + - uid: 19033 components: - type: Transform - pos: 40.5,38.5 - parent: 2 - - uid: 2015 + pos: 15.5,60.5 + parent: 16527 + - uid: 19034 components: - type: Transform - pos: 39.5,38.5 - parent: 2 - - uid: 2016 + pos: 15.5,59.5 + parent: 16527 + - uid: 19035 components: - type: Transform - pos: 64.5,29.5 - parent: 2 - - uid: 2017 + pos: 15.5,58.5 + parent: 16527 + - uid: 19036 components: - type: Transform - pos: 64.5,28.5 - parent: 2 - - uid: 2018 + pos: 16.5,59.5 + parent: 16527 + - uid: 19037 components: - type: Transform - pos: 65.5,28.5 - parent: 2 - - uid: 2019 + pos: 16.5,58.5 + parent: 16527 + - uid: 19038 components: - type: Transform - pos: 66.5,28.5 - parent: 2 - - uid: 2020 + pos: 17.5,58.5 + parent: 16527 + - uid: 19039 components: - type: Transform - pos: 67.5,28.5 - parent: 2 - - uid: 2021 + pos: 17.5,57.5 + parent: 16527 + - uid: 19040 components: - type: Transform - pos: 68.5,28.5 - parent: 2 - - uid: 2022 + pos: 18.5,57.5 + parent: 16527 + - uid: 19041 components: - type: Transform - pos: 67.5,29.5 - parent: 2 - - uid: 2023 + pos: 19.5,57.5 + parent: 16527 + - uid: 19042 components: - type: Transform - pos: 67.5,30.5 - parent: 2 - - uid: 2024 + pos: 19.5,58.5 + parent: 16527 + - uid: 19043 components: - type: Transform - pos: 67.5,27.5 - parent: 2 - - uid: 2025 + pos: 20.5,72.5 + parent: 16527 + - uid: 19044 components: - type: Transform - pos: 67.5,26.5 - parent: 2 - - uid: 2026 + pos: 21.5,71.5 + parent: 16527 + - uid: 19045 components: - type: Transform - pos: 67.5,25.5 - parent: 2 - - uid: 2027 + pos: 22.5,71.5 + parent: 16527 + - uid: 19046 components: - type: Transform - pos: 67.5,24.5 - parent: 2 - - uid: 2028 + pos: 23.5,70.5 + parent: 16527 + - uid: 19047 components: - type: Transform - pos: 64.5,30.5 - parent: 2 - - uid: 2029 + pos: 24.5,70.5 + parent: 16527 + - uid: 19048 components: - type: Transform - pos: 64.5,31.5 - parent: 2 - - uid: 2030 + pos: 25.5,69.5 + parent: 16527 + - uid: 19049 components: - type: Transform - pos: 64.5,32.5 - parent: 2 - - uid: 2031 + pos: 26.5,69.5 + parent: 16527 + - uid: 19050 components: - type: Transform - pos: 64.5,33.5 - parent: 2 - - uid: 2032 + pos: 27.5,68.5 + parent: 16527 + - uid: 19051 components: - type: Transform - pos: 65.5,33.5 - parent: 2 - - uid: 2033 + pos: 28.5,68.5 + parent: 16527 + - uid: 19052 components: - type: Transform - pos: 66.5,33.5 - parent: 2 - - uid: 2034 + pos: 29.5,67.5 + parent: 16527 + - uid: 19053 components: - type: Transform - pos: 67.5,33.5 - parent: 2 - - uid: 2035 + pos: 30.5,66.5 + parent: 16527 + - uid: 19054 components: - type: Transform - pos: 68.5,33.5 - parent: 2 - - uid: 2036 + pos: 31.5,65.5 + parent: 16527 + - uid: 19055 components: - type: Transform - pos: 64.5,27.5 - parent: 2 - - uid: 2037 + pos: 32.5,64.5 + parent: 16527 + - uid: 19056 components: - type: Transform - pos: 64.5,26.5 - parent: 2 - - uid: 2038 + pos: 33.5,64.5 + parent: 16527 +- proto: AsteroidRockPlasma + entities: + - uid: 763 components: - type: Transform - pos: 64.5,25.5 + pos: 61.5,71.5 parent: 2 - - uid: 2039 +- proto: AsteroidRockQuartz + entities: + - uid: 764 components: - type: Transform - pos: 64.5,24.5 + pos: 96.5,13.5 parent: 2 - - uid: 2040 + - uid: 765 components: - type: Transform - pos: 64.5,23.5 + pos: 59.5,74.5 parent: 2 - - uid: 2041 +- proto: AsteroidRockTin + entities: + - uid: 767 components: - type: Transform - pos: 64.5,22.5 + pos: 71.5,1.5 parent: 2 - - uid: 2042 + - uid: 768 components: - type: Transform - pos: 64.5,21.5 + pos: 60.5,73.5 parent: 2 - - uid: 2043 + - uid: 769 components: - type: Transform - pos: 64.5,20.5 + pos: 61.5,73.5 parent: 2 - - uid: 2044 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 770 components: - type: Transform - pos: 64.5,19.5 + rot: 1.5707963267948966 rad + pos: 55.5,83.5 parent: 2 - - uid: 2045 + - uid: 771 components: - type: Transform - pos: 64.5,18.5 + rot: 1.5707963267948966 rad + pos: 97.5,17.5 parent: 2 - - uid: 2046 + - uid: 772 components: - type: Transform - pos: 64.5,17.5 + rot: 1.5707963267948966 rad + pos: 97.5,16.5 parent: 2 - - uid: 2047 + - uid: 773 components: - type: Transform - pos: 63.5,17.5 + rot: -1.5707963267948966 rad + pos: 9.5,78.5 parent: 2 - - uid: 2048 + - uid: 774 components: - type: Transform - pos: 62.5,17.5 + rot: -1.5707963267948966 rad + pos: 9.5,70.5 parent: 2 - - uid: 2049 + - uid: 775 components: - type: Transform - pos: 61.5,17.5 + rot: -1.5707963267948966 rad + pos: 9.5,72.5 parent: 2 - - uid: 2050 + - uid: 776 components: - type: Transform - pos: 60.5,17.5 + rot: 1.5707963267948966 rad + pos: 58.5,78.5 parent: 2 - - uid: 2051 + - uid: 777 components: - type: Transform - pos: 60.5,16.5 + pos: 57.5,75.5 parent: 2 - - uid: 2052 + - uid: 778 components: - type: Transform - pos: 66.5,21.5 + rot: 1.5707963267948966 rad + pos: 58.5,77.5 parent: 2 - - uid: 2053 + - uid: 779 components: - type: Transform - pos: 67.5,21.5 + pos: 46.5,97.5 parent: 2 - - uid: 2054 + - uid: 780 components: - type: Transform - pos: 65.5,21.5 + rot: 3.141592653589793 rad + pos: 74.5,69.5 parent: 2 - - uid: 2055 + - uid: 782 components: - type: Transform - pos: 67.5,19.5 + pos: 22.5,-24.5 parent: 2 - - uid: 2056 + - uid: 783 components: - type: Transform - pos: 67.5,18.5 + rot: 3.141592653589793 rad + pos: 79.5,69.5 parent: 2 - - uid: 2057 + - uid: 784 components: - type: Transform - pos: 67.5,17.5 + rot: 1.5707963267948966 rad + pos: 87.5,63.5 parent: 2 - - uid: 2058 + - uid: 785 components: - type: Transform - pos: 67.5,16.5 + rot: -1.5707963267948966 rad + pos: 76.5,17.5 parent: 2 - - uid: 2059 + - uid: 786 components: - type: Transform - pos: 68.5,16.5 + rot: 1.5707963267948966 rad + pos: 87.5,57.5 parent: 2 - - uid: 2060 + - uid: 787 components: - type: Transform - pos: 67.5,20.5 + rot: -1.5707963267948966 rad + pos: 9.5,80.5 parent: 2 - - uid: 2061 + - uid: 788 components: - type: Transform - pos: 69.5,16.5 + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 parent: 2 - - uid: 2062 + - uid: 789 components: - type: Transform - pos: 71.5,12.5 + rot: -1.5707963267948966 rad + pos: -1.5,6.5 parent: 2 - - uid: 2063 + - uid: 790 components: - type: Transform - pos: 71.5,11.5 + rot: -1.5707963267948966 rad + pos: -1.5,8.5 parent: 2 - - uid: 2064 + - uid: 791 components: - type: Transform - pos: 71.5,10.5 + rot: -1.5707963267948966 rad + pos: -1.5,9.5 parent: 2 - - uid: 2065 + - uid: 792 components: - type: Transform - pos: 71.5,9.5 + rot: -1.5707963267948966 rad + pos: -1.5,5.5 parent: 2 - - uid: 2066 + - uid: 793 components: - type: Transform - pos: 71.5,8.5 + rot: -1.5707963267948966 rad + pos: -0.5,16.5 parent: 2 - - uid: 2067 + - uid: 3139 components: - type: Transform - pos: 71.5,7.5 + rot: -1.5707963267948966 rad + pos: 14.5,-38.5 parent: 2 - - uid: 2068 + - uid: 3632 components: - type: Transform - pos: 71.5,6.5 + rot: -1.5707963267948966 rad + pos: 38.5,-27.5 parent: 2 - - uid: 2069 + - uid: 5096 components: - type: Transform - pos: 71.5,5.5 + pos: 22.5,-32.5 parent: 2 - - uid: 2070 + - uid: 13576 components: - type: Transform - pos: 71.5,4.5 + pos: 10.5,51.5 parent: 2 - - uid: 2071 + - uid: 21336 components: - type: Transform - pos: 71.5,3.5 + rot: 3.141592653589793 rad + pos: 16.5,39.5 parent: 2 - - uid: 2072 + - uid: 21552 components: - type: Transform - pos: 70.5,3.5 + pos: 33.5,56.5 parent: 2 - - uid: 2073 + - uid: 21553 components: - type: Transform - pos: 69.5,3.5 + pos: 31.5,59.5 parent: 2 - - uid: 2074 + - uid: 26634 components: - type: Transform - pos: 68.5,3.5 - parent: 2 - - uid: 2075 + pos: -0.5,-0.5 + parent: 16527 + - uid: 26635 components: - type: Transform - pos: 67.5,3.5 - parent: 2 - - uid: 2076 + pos: 0.5,-0.5 + parent: 16527 + - uid: 26636 components: - type: Transform - pos: 66.5,3.5 - parent: 2 - - uid: 2077 + pos: 1.5,-0.5 + parent: 16527 + - uid: 26637 components: - type: Transform - pos: 65.5,3.5 - parent: 2 - - uid: 2078 + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 16527 + - uid: 26638 components: - type: Transform - pos: 64.5,3.5 - parent: 2 - - uid: 2079 + rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 16527 + - uid: 26639 components: - type: Transform - pos: 63.5,3.5 - parent: 2 - - uid: 2080 + pos: 6.5,7.5 + parent: 16527 + - uid: 26640 components: - type: Transform - pos: 62.5,3.5 - parent: 2 - - uid: 2081 + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 16527 + - uid: 26641 components: - type: Transform - pos: 62.5,4.5 - parent: 2 - - uid: 2082 + rot: 3.141592653589793 rad + pos: 0.5,19.5 + parent: 16527 + - uid: 26642 components: - type: Transform - pos: 62.5,5.5 - parent: 2 - - uid: 2083 + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 16527 + - uid: 26643 components: - type: Transform - pos: 62.5,6.5 - parent: 2 - - uid: 2084 + pos: -0.5,31.5 + parent: 16527 + - uid: 26644 components: - type: Transform - pos: 62.5,7.5 - parent: 2 - - uid: 2085 + pos: 1.5,31.5 + parent: 16527 + - uid: 26645 components: - type: Transform - pos: 62.5,8.5 - parent: 2 - - uid: 2086 + pos: 0.5,31.5 + parent: 16527 + - uid: 26646 components: - type: Transform - pos: 58.5,10.5 - parent: 2 - - uid: 2087 + rot: 3.141592653589793 rad + pos: -0.5,39.5 + parent: 16527 + - uid: 26647 components: - type: Transform - pos: 57.5,10.5 - parent: 2 - - uid: 2088 + rot: 3.141592653589793 rad + pos: 0.5,39.5 + parent: 16527 + - uid: 26648 components: - type: Transform - pos: 56.5,10.5 - parent: 2 - - uid: 2089 + rot: 3.141592653589793 rad + pos: 1.5,39.5 + parent: 16527 + - uid: 26649 components: - type: Transform - pos: 55.5,10.5 - parent: 2 - - uid: 2090 + pos: 8.5,19.5 + parent: 16527 +- proto: AtmosDeviceFanTiny + entities: + - uid: 795 components: - type: Transform - pos: 54.5,10.5 + pos: 86.5,41.5 parent: 2 - - uid: 2091 + - uid: 798 components: - type: Transform - pos: 53.5,10.5 + pos: 39.5,-14.5 parent: 2 - - uid: 2092 + - uid: 799 components: - type: Transform - pos: 52.5,10.5 + pos: 86.5,48.5 parent: 2 - - uid: 2093 + - uid: 800 components: - type: Transform - pos: 51.5,10.5 + pos: 68.5,0.5 parent: 2 - - uid: 2094 + - uid: 19057 components: - type: Transform - pos: 50.5,10.5 - parent: 2 - - uid: 2095 + pos: -19.5,21.5 + parent: 16527 + - uid: 19058 components: - type: Transform - pos: 50.5,9.5 - parent: 2 - - uid: 2096 + pos: -19.5,22.5 + parent: 16527 + - uid: 19059 components: - type: Transform - pos: 50.5,8.5 - parent: 2 - - uid: 2097 + pos: -19.5,23.5 + parent: 16527 + - uid: 19060 components: - type: Transform - pos: 50.5,7.5 - parent: 2 - - uid: 2098 + pos: -19.5,24.5 + parent: 16527 + - uid: 19061 components: - type: Transform - pos: 50.5,6.5 - parent: 2 - - uid: 2099 + pos: -21.5,29.5 + parent: 16527 +- proto: AtmosFixBlockerMarker + entities: + - uid: 801 components: - type: Transform - pos: 62.5,2.5 + pos: 28.5,83.5 parent: 2 - - uid: 2100 + - uid: 802 components: - type: Transform - pos: 62.5,1.5 + pos: 27.5,83.5 parent: 2 - - uid: 2101 + - uid: 803 components: - type: Transform - pos: 62.5,0.5 + pos: 26.5,83.5 parent: 2 - - uid: 2102 + - uid: 804 components: - type: Transform - pos: 62.5,-0.5 + pos: 28.5,79.5 parent: 2 - - uid: 2103 + - uid: 805 components: - type: Transform - pos: 62.5,-1.5 + pos: 27.5,79.5 parent: 2 - - uid: 2104 + - uid: 806 components: - type: Transform - pos: 61.5,-1.5 + pos: 26.5,79.5 parent: 2 - - uid: 2105 + - uid: 807 components: - type: Transform - pos: 60.5,-1.5 + pos: 28.5,77.5 parent: 2 - - uid: 2106 + - uid: 808 components: - type: Transform - pos: 59.5,-1.5 + pos: 27.5,77.5 parent: 2 - - uid: 2107 + - uid: 809 components: - type: Transform - pos: 59.5,-3.5 + pos: 26.5,77.5 parent: 2 - - uid: 2108 + - uid: 810 components: - type: Transform - pos: 59.5,-4.5 + pos: 25.5,77.5 parent: 2 - - uid: 2109 + - uid: 811 components: - type: Transform - pos: 59.5,-5.5 + pos: 24.5,77.5 parent: 2 - - uid: 2110 + - uid: 812 components: - type: Transform - pos: 59.5,-6.5 + pos: 23.5,77.5 parent: 2 - - uid: 2111 + - uid: 813 components: - type: Transform - pos: 59.5,-7.5 + pos: 24.5,79.5 parent: 2 - - uid: 2112 + - uid: 814 components: - type: Transform - pos: 30.5,-8.5 + pos: 23.5,79.5 parent: 2 - - uid: 2113 + - uid: 815 components: - type: Transform - pos: 58.5,-7.5 + pos: 25.5,79.5 parent: 2 - - uid: 2114 + - uid: 816 components: - type: Transform - pos: 57.5,-7.5 + pos: 25.5,83.5 parent: 2 - - uid: 2115 + - uid: 817 components: - type: Transform - pos: 56.5,-7.5 + pos: 24.5,83.5 parent: 2 - - uid: 2116 + - uid: 818 components: - type: Transform - pos: 55.5,-7.5 + pos: 23.5,83.5 parent: 2 - - uid: 2117 +- proto: AtmosFixFreezerMarker + entities: + - uid: 819 components: - type: Transform - pos: 54.5,-7.5 + rot: 3.141592653589793 rad + pos: 77.5,19.5 parent: 2 - - uid: 2118 + - uid: 820 components: - type: Transform - pos: 53.5,-7.5 + rot: 3.141592653589793 rad + pos: 77.5,18.5 parent: 2 - - uid: 2119 + - uid: 821 components: - type: Transform - pos: 52.5,-7.5 + rot: 3.141592653589793 rad + pos: 77.5,17.5 parent: 2 - - uid: 2120 + - uid: 822 components: - type: Transform - pos: 52.5,-8.5 + rot: 3.141592653589793 rad + pos: 77.5,16.5 parent: 2 - - uid: 2121 + - uid: 823 components: - type: Transform - pos: 52.5,-9.5 + rot: 3.141592653589793 rad + pos: 77.5,15.5 parent: 2 - - uid: 2122 + - uid: 824 components: - type: Transform - pos: 52.5,-10.5 + rot: 3.141592653589793 rad + pos: 78.5,19.5 parent: 2 - - uid: 2123 + - uid: 825 components: - type: Transform - pos: 52.5,-11.5 + rot: 3.141592653589793 rad + pos: 78.5,18.5 parent: 2 - - uid: 2124 + - uid: 826 components: - type: Transform - pos: 52.5,-12.5 + rot: 3.141592653589793 rad + pos: 78.5,17.5 parent: 2 - - uid: 2125 + - uid: 827 components: - type: Transform - pos: 52.5,-13.5 + rot: 3.141592653589793 rad + pos: 78.5,16.5 parent: 2 - - uid: 2126 + - uid: 828 components: - type: Transform - pos: 52.5,-14.5 + rot: 3.141592653589793 rad + pos: 78.5,15.5 parent: 2 - - uid: 2127 + - uid: 829 components: - type: Transform - pos: 53.5,-10.5 + rot: 3.141592653589793 rad + pos: 79.5,19.5 parent: 2 - - uid: 2128 + - uid: 830 components: - type: Transform - pos: 54.5,-10.5 + rot: 3.141592653589793 rad + pos: 79.5,18.5 parent: 2 - - uid: 2129 + - uid: 831 components: - type: Transform - pos: 55.5,-10.5 + rot: 3.141592653589793 rad + pos: 79.5,17.5 parent: 2 - - uid: 2130 + - uid: 832 components: - type: Transform - pos: 56.5,-10.5 + rot: 3.141592653589793 rad + pos: 79.5,16.5 parent: 2 - - uid: 2131 + - uid: 833 components: - type: Transform - pos: 57.5,-10.5 + rot: 3.141592653589793 rad + pos: 79.5,15.5 parent: 2 - - uid: 2132 + - uid: 834 components: - type: Transform - pos: 58.5,-10.5 + rot: 3.141592653589793 rad + pos: 80.5,19.5 parent: 2 - - uid: 2133 + - uid: 835 components: - type: Transform - pos: 57.5,-11.5 + rot: 3.141592653589793 rad + pos: 80.5,18.5 parent: 2 - - uid: 2134 + - uid: 836 components: - type: Transform - pos: 51.5,-14.5 + rot: 3.141592653589793 rad + pos: 80.5,16.5 parent: 2 - - uid: 2135 + - uid: 837 components: - type: Transform - pos: 50.5,-14.5 + rot: 3.141592653589793 rad + pos: 80.5,15.5 parent: 2 - - uid: 2136 + - uid: 838 components: - type: Transform - pos: 49.5,-14.5 + rot: 3.141592653589793 rad + pos: 80.5,17.5 parent: 2 - - uid: 2137 + - uid: 839 components: - type: Transform - pos: 48.5,-14.5 + rot: 3.141592653589793 rad + pos: 81.5,18.5 parent: 2 - - uid: 2138 + - uid: 840 components: - type: Transform - pos: 48.5,-15.5 + rot: 3.141592653589793 rad + pos: 81.5,17.5 parent: 2 - - uid: 2139 + - uid: 841 components: - type: Transform - pos: 49.5,-17.5 + rot: 3.141592653589793 rad + pos: 81.5,16.5 parent: 2 - - uid: 2140 + - uid: 842 components: - type: Transform - pos: 50.5,-17.5 + rot: 3.141592653589793 rad + pos: 82.5,18.5 parent: 2 - - uid: 2141 + - uid: 843 components: - type: Transform - pos: 51.5,-17.5 + rot: 3.141592653589793 rad + pos: 82.5,17.5 parent: 2 - - uid: 2142 + - uid: 844 components: - type: Transform - pos: 51.5,-18.5 + rot: 3.141592653589793 rad + pos: 82.5,16.5 parent: 2 - - uid: 2143 + - uid: 845 components: - type: Transform - pos: 51.5,-19.5 + rot: 3.141592653589793 rad + pos: 83.5,18.5 parent: 2 - - uid: 2144 + - uid: 846 components: - type: Transform - pos: 48.5,-13.5 + rot: 3.141592653589793 rad + pos: 83.5,17.5 parent: 2 - - uid: 2145 + - uid: 847 components: - type: Transform - pos: 47.5,-13.5 + rot: 3.141592653589793 rad + pos: 83.5,16.5 parent: 2 - - uid: 2146 + - uid: 848 components: - type: Transform - pos: 46.5,-13.5 + rot: 3.141592653589793 rad + pos: 84.5,18.5 parent: 2 - - uid: 2147 + - uid: 849 components: - type: Transform - pos: 45.5,-13.5 + rot: 3.141592653589793 rad + pos: 84.5,17.5 parent: 2 - - uid: 2148 + - uid: 850 components: - type: Transform - pos: 44.5,-13.5 + rot: 3.141592653589793 rad + pos: 84.5,16.5 parent: 2 - - uid: 2149 + - uid: 851 components: - type: Transform - pos: 43.5,-13.5 + rot: 3.141592653589793 rad + pos: 85.5,18.5 parent: 2 - - uid: 2150 + - uid: 852 components: - type: Transform - pos: 42.5,-13.5 + rot: 3.141592653589793 rad + pos: 85.5,17.5 parent: 2 - - uid: 2151 + - uid: 853 components: - type: Transform - pos: 41.5,-13.5 + rot: 3.141592653589793 rad + pos: 85.5,16.5 parent: 2 - - uid: 2152 + - uid: 854 components: - type: Transform - pos: 41.5,-12.5 + rot: 3.141592653589793 rad + pos: 84.5,15.5 parent: 2 - - uid: 2153 + - uid: 855 components: - type: Transform - pos: 41.5,-11.5 + rot: 3.141592653589793 rad + pos: 85.5,15.5 parent: 2 - - uid: 2154 + - uid: 856 components: - type: Transform - pos: 41.5,-10.5 + rot: 3.141592653589793 rad + pos: 83.5,15.5 parent: 2 - - uid: 2155 + - uid: 857 components: - type: Transform - pos: 40.5,-11.5 + rot: 3.141592653589793 rad + pos: 85.5,19.5 parent: 2 - - uid: 2156 + - uid: 858 components: - type: Transform - pos: 39.5,-11.5 + rot: 3.141592653589793 rad + pos: 84.5,19.5 parent: 2 - - uid: 2158 + - uid: 859 components: - type: Transform - pos: 37.5,-11.5 + rot: 3.141592653589793 rad + pos: 83.5,19.5 parent: 2 - - uid: 2159 + - uid: 2300 components: - type: Transform - pos: 39.5,-12.5 + pos: 29.5,57.5 parent: 2 - - uid: 2160 + - uid: 2301 components: - type: Transform - pos: 39.5,-13.5 + pos: 29.5,58.5 parent: 2 - - uid: 2161 + - uid: 2312 components: - type: Transform - pos: 37.5,-10.5 + pos: 30.5,58.5 parent: 2 - - uid: 2162 + - uid: 4976 components: - type: Transform - pos: 37.5,-9.5 + pos: 31.5,58.5 parent: 2 - - uid: 2163 + - uid: 6629 components: - type: Transform - pos: 37.5,-8.5 + pos: 32.5,58.5 parent: 2 - - uid: 2164 + - uid: 6724 components: - type: Transform - pos: 36.5,-8.5 + pos: 31.5,57.5 parent: 2 - - uid: 2165 + - uid: 9333 components: - type: Transform - pos: 35.5,-8.5 + pos: 33.5,58.5 parent: 2 - - uid: 2166 + - uid: 9334 components: - type: Transform - pos: 38.5,-10.5 + pos: 30.5,57.5 parent: 2 - - uid: 2167 + - uid: 9341 components: - type: Transform - pos: 34.5,-10.5 + pos: 28.5,58.5 parent: 2 - - uid: 2168 + - uid: 9360 components: - type: Transform - pos: 33.5,-10.5 + pos: 32.5,57.5 parent: 2 - - uid: 2172 + - uid: 9361 components: - type: Transform - pos: 33.5,-7.5 + pos: 33.5,57.5 parent: 2 - - uid: 2173 + - uid: 9696 components: - type: Transform - pos: 32.5,-7.5 + pos: 28.5,57.5 parent: 2 - - uid: 2174 + - uid: 19062 components: - type: Transform - pos: 31.5,-7.5 - parent: 2 - - uid: 2175 + pos: -18.5,32.5 + parent: 16527 + - uid: 19063 components: - type: Transform - pos: 30.5,-7.5 - parent: 2 - - uid: 2176 + pos: -14.5,39.5 + parent: 16527 + - uid: 19064 components: - type: Transform - pos: 30.5,-9.5 - parent: 2 - - uid: 2177 + pos: -7.5,35.5 + parent: 16527 + - uid: 19065 components: - type: Transform - pos: 30.5,-10.5 - parent: 2 - - uid: 2178 + pos: -9.5,34.5 + parent: 16527 +- proto: AtmosFixInstantPlasmaFireMarker + entities: + - uid: 19066 components: - type: Transform - pos: 30.5,-11.5 - parent: 2 - - uid: 2179 + pos: -11.5,38.5 + parent: 16527 + - uid: 19067 components: - type: Transform - pos: 30.5,-12.5 - parent: 2 - - uid: 2182 + pos: -6.5,32.5 + parent: 16527 + - uid: 19068 components: - type: Transform - pos: 64.5,8.5 - parent: 2 - - uid: 2183 + pos: -16.5,35.5 + parent: 16527 + - uid: 19069 components: - type: Transform - pos: 31.5,-15.5 - parent: 2 - - uid: 2184 + pos: -7.5,37.5 + parent: 16527 + - uid: 19070 components: - type: Transform - pos: 31.5,-16.5 - parent: 2 - - uid: 2185 + pos: -17.5,29.5 + parent: 16527 + - uid: 19071 components: - type: Transform - pos: 31.5,-17.5 - parent: 2 - - uid: 2188 + pos: -12.5,41.5 + parent: 16527 + - uid: 19072 components: - type: Transform - pos: 36.5,65.5 - parent: 2 - - uid: 2190 + pos: -12.5,32.5 + parent: 16527 + - uid: 19073 components: - type: Transform - pos: 29.5,-18.5 - parent: 2 - - uid: 2191 + pos: 9.5,42.5 + parent: 16527 + - uid: 19074 components: - type: Transform - pos: 49.5,35.5 - parent: 2 - - uid: 2194 + pos: 10.5,41.5 + parent: 16527 + - uid: 19075 components: - type: Transform - pos: 65.5,8.5 - parent: 2 - - uid: 2195 + pos: 11.5,42.5 + parent: 16527 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 860 components: - type: Transform - pos: 33.5,-9.5 + pos: 28.5,73.5 parent: 2 - - uid: 2196 + - uid: 861 components: - type: Transform - pos: 28.5,-13.5 + pos: 27.5,73.5 parent: 2 - - uid: 2197 + - uid: 862 components: - type: Transform - pos: 28.5,-12.5 + pos: 26.5,73.5 parent: 2 - - uid: 2198 + - uid: 863 components: - type: Transform - pos: 28.5,-11.5 + pos: 25.5,73.5 parent: 2 - - uid: 2199 + - uid: 864 components: - type: Transform - pos: 28.5,-10.5 + pos: 24.5,73.5 parent: 2 - - uid: 2200 + - uid: 865 components: - type: Transform - pos: 27.5,-12.5 + pos: 23.5,73.5 parent: 2 - - uid: 2201 +- proto: AtmosFixOxygenMarker + entities: + - uid: 866 components: - type: Transform - pos: 28.5,-19.5 + pos: 28.5,75.5 parent: 2 - - uid: 2202 + - uid: 867 components: - type: Transform - pos: 27.5,-19.5 + pos: 27.5,75.5 parent: 2 - - uid: 2203 + - uid: 868 components: - type: Transform - pos: 26.5,-19.5 + pos: 26.5,75.5 parent: 2 - - uid: 2204 + - uid: 869 components: - type: Transform - pos: 25.5,-19.5 + pos: 25.5,75.5 parent: 2 - - uid: 2205 + - uid: 870 components: - type: Transform - pos: 24.5,-19.5 + pos: 24.5,75.5 parent: 2 - - uid: 2206 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 871 components: - type: Transform - pos: 23.5,-19.5 + pos: 28.5,81.5 parent: 2 - - uid: 2207 + - uid: 872 components: - type: Transform - pos: 22.5,-19.5 + pos: 27.5,81.5 parent: 2 - - uid: 2208 + - uid: 873 components: - type: Transform - pos: 21.5,-19.5 + pos: 26.5,81.5 parent: 2 - - uid: 2209 + - uid: 874 components: - type: Transform - pos: 20.5,-19.5 + pos: 25.5,81.5 parent: 2 - - uid: 2210 + - uid: 875 components: - type: Transform - pos: 19.5,-19.5 + pos: 24.5,81.5 parent: 2 - - uid: 2211 + - uid: 876 components: - type: Transform - pos: 18.5,-19.5 + pos: 23.5,81.5 parent: 2 - - uid: 2212 + - uid: 19076 components: - type: Transform - pos: 17.5,-19.5 - parent: 2 - - uid: 2213 + pos: -15.5,28.5 + parent: 16527 + - uid: 19077 components: - type: Transform - pos: 16.5,-19.5 - parent: 2 - - uid: 2214 + pos: -13.5,34.5 + parent: 16527 + - uid: 19078 components: - type: Transform - pos: 15.5,-19.5 - parent: 2 - - uid: 2215 + pos: -9.5,37.5 + parent: 16527 + - uid: 19079 components: - type: Transform - pos: 14.5,-19.5 - parent: 2 - - uid: 2216 + pos: -12.5,36.5 + parent: 16527 + - uid: 19080 components: - type: Transform - pos: 13.5,-19.5 - parent: 2 - - uid: 2217 + pos: 9.5,40.5 + parent: 16527 + - uid: 19081 components: - type: Transform - pos: 12.5,-19.5 - parent: 2 - - uid: 2218 + pos: 10.5,41.5 + parent: 16527 + - uid: 19082 components: - type: Transform - pos: 11.5,-19.5 - parent: 2 - - uid: 2221 + pos: 11.5,40.5 + parent: 16527 + - uid: 19083 components: - type: Transform - pos: 11.5,-18.5 - parent: 2 - - uid: 2222 + pos: 9.5,66.5 + parent: 16527 + - uid: 19084 components: - type: Transform - pos: 11.5,-17.5 - parent: 2 - - uid: 2223 + pos: 11.5,61.5 + parent: 16527 + - uid: 19085 components: - type: Transform - pos: 11.5,-16.5 - parent: 2 - - uid: 2224 + pos: 9.5,55.5 + parent: 16527 + - uid: 19086 components: - type: Transform - pos: 11.5,-15.5 - parent: 2 - - uid: 2225 + pos: 9.5,64.5 + parent: 16527 + - uid: 19087 components: - type: Transform - pos: 11.5,-14.5 - parent: 2 - - uid: 2226 + pos: 12.5,56.5 + parent: 16527 + - uid: 19088 components: - type: Transform - pos: 12.5,-14.5 - parent: 2 - - uid: 2227 + pos: 9.5,62.5 + parent: 16527 + - uid: 19089 components: - type: Transform - pos: 13.5,-14.5 - parent: 2 - - uid: 2228 + pos: 6.5,65.5 + parent: 16527 + - uid: 19090 components: - type: Transform - pos: 14.5,-14.5 - parent: 2 - - uid: 2229 + pos: 1.5,61.5 + parent: 16527 + - uid: 19091 components: - type: Transform - pos: 13.5,-15.5 - parent: 2 - - uid: 2230 + pos: 5.5,56.5 + parent: 16527 + - uid: 19092 components: - type: Transform - pos: 11.5,-12.5 - parent: 2 - - uid: 2231 + pos: 11.5,59.5 + parent: 16527 +- proto: AtmosFixVoxMarker + entities: + - uid: 2355 components: - type: Transform - pos: 10.5,-8.5 + pos: 16.5,40.5 parent: 2 - - uid: 2232 + - uid: 3626 components: - type: Transform - pos: 10.5,-7.5 + pos: 14.5,41.5 parent: 2 - - uid: 2233 + - uid: 3627 components: - type: Transform - pos: 11.5,-3.5 + pos: 14.5,40.5 parent: 2 - - uid: 2234 + - uid: 12936 components: - type: Transform - pos: 13.5,1.5 + pos: 15.5,41.5 parent: 2 - - uid: 2235 + - uid: 13859 components: - type: Transform - pos: 14.5,1.5 + pos: 16.5,41.5 parent: 2 - - uid: 2236 + - uid: 15727 components: - type: Transform - pos: 15.5,1.5 + pos: 15.5,40.5 parent: 2 - - uid: 2237 + - uid: 21371 components: - type: Transform - pos: 16.5,1.5 + pos: 17.5,41.5 parent: 2 - - uid: 2240 + - uid: 21372 components: - type: Transform - pos: 12.5,1.5 + pos: 17.5,40.5 parent: 2 - - uid: 2241 +- proto: AtmosPDA + entities: + - uid: 44 components: - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 2242 + parent: 41 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Autolathe + entities: + - uid: 883 components: - type: Transform - pos: 10.5,1.5 + pos: 6.5,10.5 parent: 2 - - uid: 2243 + - uid: 884 components: - type: Transform - pos: 9.5,1.5 + pos: 23.5,7.5 parent: 2 - - uid: 2244 + - uid: 5112 components: - type: Transform - pos: 9.5,0.5 + pos: 45.5,64.5 parent: 2 - - uid: 2245 +- proto: AutolatheMachineCircuitboard + entities: + - uid: 886 components: - type: Transform - pos: 9.5,-0.5 + pos: 62.420105,47.617664 parent: 2 - - uid: 2246 +- proto: BackgammonBoard + entities: + - uid: 887 components: - type: Transform - pos: 8.5,-0.5 + pos: 12.405052,-1.1720754 parent: 2 - - uid: 2248 +- proto: BalloonCorgi + entities: + - uid: 888 components: - type: Transform - pos: 10.5,3.5 + pos: 67.5,33.5 parent: 2 - - uid: 2249 +- proto: BalloonSyn + entities: + - uid: 19093 components: - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 2250 + pos: 5.031894,9.086445 + parent: 16527 +- proto: BananaSeeds + entities: + - uid: 889 components: - type: Transform - pos: 11.5,4.5 + pos: 9.402182,-11.561712 parent: 2 - - uid: 2251 + - uid: 890 components: - type: Transform - pos: 11.5,5.5 + pos: 9.433432,-12.561712 parent: 2 - - uid: 2253 +- proto: BannerCargo + entities: + - uid: 891 components: - type: Transform - pos: 12.5,12.5 + pos: 8.5,8.5 parent: 2 - - uid: 2254 +- proto: BannerMedical + entities: + - uid: 892 components: - type: Transform - pos: 11.5,6.5 + pos: 35.5,5.5 parent: 2 - - uid: 2255 +- proto: BannerNanotrasen + entities: + - uid: 893 components: - type: Transform - pos: 11.5,11.5 + pos: 15.5,26.5 parent: 2 - - uid: 2256 + - uid: 894 components: - type: Transform - pos: 11.5,10.5 + pos: 33.5,26.5 parent: 2 - - uid: 2257 +- proto: BannerSecurity + entities: + - uid: 895 components: - type: Transform - pos: 11.5,9.5 + pos: 39.5,27.5 parent: 2 - - uid: 2258 + - uid: 896 components: - type: Transform - pos: 11.5,8.5 + pos: 75.5,8.5 parent: 2 - - uid: 2259 + - uid: 897 components: - type: Transform - pos: 11.5,7.5 + pos: 91.5,15.5 parent: 2 - - uid: 2260 + - uid: 9352 components: - type: Transform - pos: 15.5,12.5 + pos: 43.5,27.5 parent: 2 - - uid: 2261 +- proto: BannerSyndicate + entities: + - uid: 19094 components: - type: Transform - pos: 15.5,11.5 - parent: 2 - - uid: 2262 + pos: -3.5,-1.5 + parent: 16527 + - uid: 19095 components: - type: Transform - pos: 15.5,10.5 - parent: 2 - - uid: 2263 + pos: 4.5,-1.5 + parent: 16527 + - uid: 19096 components: - type: Transform - pos: 15.5,9.5 - parent: 2 - - uid: 2264 + pos: -1.5,12.5 + parent: 16527 + - uid: 19097 components: - type: Transform - pos: 14.5,9.5 - parent: 2 - - uid: 2265 + pos: 2.5,12.5 + parent: 16527 + - uid: 19098 components: - type: Transform - pos: 10.5,31.5 - parent: 2 - - uid: 2266 + pos: 32.5,20.5 + parent: 16527 + - uid: 19099 components: - type: Transform - pos: 9.5,31.5 - parent: 2 - - uid: 2267 + pos: 32.5,12.5 + parent: 16527 + - uid: 19100 components: - type: Transform - pos: 8.5,31.5 - parent: 2 - - uid: 2268 + pos: 25.5,20.5 + parent: 16527 + - uid: 19101 components: - type: Transform - pos: 7.5,31.5 - parent: 2 - - uid: 2269 + pos: 25.5,12.5 + parent: 16527 + - uid: 19102 components: - type: Transform - pos: 6.5,31.5 - parent: 2 - - uid: 2270 + pos: -6.5,14.5 + parent: 16527 + - uid: 19103 components: - type: Transform - pos: 5.5,31.5 - parent: 2 - - uid: 2271 + pos: -1.5,48.5 + parent: 16527 + - uid: 19104 components: - type: Transform - pos: 4.5,31.5 - parent: 2 - - uid: 2272 + pos: 2.5,48.5 + parent: 16527 + - uid: 19105 components: - type: Transform - pos: 3.5,31.5 - parent: 2 - - uid: 2273 + pos: 0.5,54.5 + parent: 16527 + - uid: 19106 components: - type: Transform - pos: 2.5,31.5 - parent: 2 - - uid: 2275 + pos: -3.5,72.5 + parent: 16527 + - uid: 19107 components: - type: Transform - pos: 4.5,32.5 - parent: 2 - - uid: 2276 + pos: -7.5,72.5 + parent: 16527 + - uid: 19108 components: - type: Transform - pos: 5.5,34.5 - parent: 2 - - uid: 2277 + pos: -27.5,42.5 + parent: 16527 +- proto: BarberScissors + entities: + - uid: 19109 components: - type: Transform - pos: 4.5,34.5 - parent: 2 - - uid: 2278 + pos: 11.204256,24.344208 + parent: 16527 +- proto: Barricade + entities: + - uid: 899 components: - type: Transform - pos: 4.5,35.5 + pos: 12.5,-14.5 parent: 2 - - uid: 2279 + - uid: 900 components: - type: Transform - pos: 4.5,36.5 + rot: -1.5707963267948966 rad + pos: 32.5,66.5 parent: 2 - - uid: 2280 + - uid: 901 components: - type: Transform - pos: 4.5,37.5 + pos: 63.5,41.5 parent: 2 - - uid: 2281 + - uid: 902 components: - type: Transform - pos: 4.5,38.5 + rot: -1.5707963267948966 rad + pos: 43.5,38.5 parent: 2 - - uid: 2282 + - uid: 903 components: - type: Transform - pos: 8.5,34.5 + rot: 1.5707963267948966 rad + pos: 64.5,3.5 parent: 2 - - uid: 2283 + - uid: 904 components: - type: Transform - pos: 8.5,35.5 + rot: 1.5707963267948966 rad + pos: 60.5,-0.5 parent: 2 - - uid: 2284 + - uid: 905 components: - type: Transform - pos: 8.5,36.5 + rot: 1.5707963267948966 rad + pos: 60.5,-1.5 parent: 2 - - uid: 2285 + - uid: 906 components: - type: Transform - pos: 8.5,37.5 + rot: 1.5707963267948966 rad + pos: 57.5,10.5 parent: 2 - - uid: 2286 + - uid: 907 components: - type: Transform - pos: 8.5,38.5 + rot: 1.5707963267948966 rad + pos: 10.5,70.5 parent: 2 - - uid: 2287 + - uid: 908 components: - type: Transform - pos: 7.5,34.5 + pos: 59.5,0.5 parent: 2 - - uid: 2288 + - uid: 19110 components: - type: Transform - pos: 6.5,34.5 - parent: 2 - - uid: 2289 + pos: -19.5,-3.5 + parent: 16527 + - uid: 19111 components: - type: Transform - pos: 3.5,30.5 - parent: 2 - - uid: 2290 + pos: -18.5,-2.5 + parent: 16527 + - uid: 19112 components: - type: Transform - pos: 3.5,29.5 - parent: 2 - - uid: 2291 + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 16527 + - uid: 19113 components: - type: Transform - pos: 3.5,28.5 - parent: 2 - - uid: 2292 + pos: 19.5,-6.5 + parent: 16527 + - uid: 19114 components: - type: Transform - pos: 3.5,27.5 - parent: 2 - - uid: 2293 + pos: 20.5,-6.5 + parent: 16527 + - uid: 19115 components: - type: Transform - pos: 3.5,26.5 - parent: 2 - - uid: 2294 + pos: -3.5,50.5 + parent: 16527 + - uid: 19116 components: - type: Transform - pos: 8.5,26.5 - parent: 2 - - uid: 2295 + pos: -1.5,68.5 + parent: 16527 + - uid: 19117 components: - type: Transform - pos: 8.5,28.5 - parent: 2 - - uid: 2296 + pos: 0.5,74.5 + parent: 16527 + - uid: 19118 components: - type: Transform - pos: 27.5,17.5 - parent: 2 - - uid: 2304 + pos: 2.5,73.5 + parent: 16527 + - uid: 19119 components: - type: Transform - pos: 26.5,47.5 - parent: 2 - - uid: 2305 + pos: 6.5,70.5 + parent: 16527 + - uid: 19120 components: - type: Transform - pos: 23.5,47.5 - parent: 2 - - uid: 2310 + pos: 5.5,68.5 + parent: 16527 + - uid: 19121 components: - type: Transform - pos: 22.5,47.5 - parent: 2 - - uid: 2311 + pos: 1.5,69.5 + parent: 16527 + - uid: 19122 components: - type: Transform - pos: 20.5,47.5 - parent: 2 - - uid: 2313 + pos: 4.5,76.5 + parent: 16527 + - uid: 19123 components: - type: Transform - pos: 18.5,47.5 - parent: 2 - - uid: 2317 + pos: -5.5,60.5 + parent: 16527 + - uid: 19124 components: - type: Transform - pos: 24.5,43.5 - parent: 2 - - uid: 2318 + pos: -7.5,65.5 + parent: 16527 + - uid: 19125 components: - type: Transform - pos: 22.5,43.5 - parent: 2 - - uid: 2319 + pos: -3.5,64.5 + parent: 16527 + - uid: 19126 components: - type: Transform - pos: 18.5,43.5 - parent: 2 - - uid: 2321 + pos: 17.5,48.5 + parent: 16527 + - uid: 19127 components: - type: Transform - pos: 17.5,54.5 - parent: 2 - - uid: 2322 + pos: 18.5,49.5 + parent: 16527 + - uid: 19128 components: - type: Transform - pos: 20.5,54.5 - parent: 2 - - uid: 2324 + pos: 23.5,44.5 + parent: 16527 + - uid: 19129 components: - type: Transform - pos: 21.5,54.5 - parent: 2 - - uid: 2325 + rot: 1.5707963267948966 rad + pos: 32.5,55.5 + parent: 16527 + - uid: 19130 components: - type: Transform - pos: 45.5,52.5 - parent: 2 - - uid: 2326 + rot: 1.5707963267948966 rad + pos: 31.5,54.5 + parent: 16527 +- proto: BarricadeBlock + entities: + - uid: 909 components: - type: Transform - pos: 45.5,53.5 + pos: 35.5,63.5 parent: 2 - - uid: 2327 + - uid: 910 components: - type: Transform - pos: 45.5,54.5 + pos: 65.5,28.5 parent: 2 - - uid: 2328 + - uid: 911 components: - type: Transform - pos: 45.5,55.5 + rot: 1.5707963267948966 rad + pos: 13.5,65.5 parent: 2 - - uid: 2329 + - uid: 912 components: - type: Transform - pos: 45.5,80.5 + rot: 1.5707963267948966 rad + pos: 11.5,72.5 parent: 2 - - uid: 2330 + - uid: 913 components: - type: Transform - pos: 16.5,67.5 + rot: 1.5707963267948966 rad + pos: 14.5,65.5 parent: 2 - - uid: 2331 + - uid: 914 components: - type: Transform - pos: 43.5,55.5 + rot: 1.5707963267948966 rad + pos: 16.5,60.5 parent: 2 - - uid: 2334 + - uid: 915 components: - type: Transform - pos: 37.5,57.5 + rot: 1.5707963267948966 rad + pos: 64.5,32.5 parent: 2 - - uid: 2343 + - uid: 916 components: - type: Transform - pos: 43.5,47.5 + rot: 3.141592653589793 rad + pos: 76.5,9.5 parent: 2 - - uid: 2345 + - uid: 917 components: - type: Transform - pos: 22.5,54.5 + pos: 39.5,58.5 parent: 2 - - uid: 2346 + - uid: 10850 components: - type: Transform - pos: 39.5,53.5 + rot: 3.141592653589793 rad + pos: 63.5,23.5 parent: 2 - - uid: 2350 + - uid: 11496 components: - type: Transform - pos: 39.5,49.5 + pos: 46.5,37.5 parent: 2 - - uid: 2351 + - uid: 19131 components: - type: Transform - pos: 43.5,53.5 - parent: 2 - - uid: 2352 + pos: 2.5,36.5 + parent: 16527 + - uid: 19132 components: - type: Transform - pos: 43.5,52.5 - parent: 2 - - uid: 2353 + pos: -1.5,36.5 + parent: 16527 + - uid: 19133 components: - type: Transform - pos: 23.5,53.5 - parent: 2 - - uid: 2354 + pos: 0.5,-8.5 + parent: 16527 + - uid: 19134 components: - type: Transform - pos: 36.5,49.5 - parent: 2 - - uid: 2363 + pos: 6.5,7.5 + parent: 16527 + - uid: 19135 components: - type: Transform - pos: 43.5,51.5 - parent: 2 - - uid: 2365 + pos: -0.5,-13.5 + parent: 16527 + - uid: 19136 components: - type: Transform - pos: 23.5,54.5 - parent: 2 - - uid: 2366 + pos: 1.5,-13.5 + parent: 16527 + - uid: 19137 components: - type: Transform - pos: 36.5,48.5 - parent: 2 - - uid: 2367 + pos: -2.5,10.5 + parent: 16527 + - uid: 19138 components: - type: Transform - pos: 36.5,47.5 - parent: 2 - - uid: 2376 + pos: 0.5,19.5 + parent: 16527 + - uid: 19139 components: - type: Transform - pos: 14.5,53.5 - parent: 2 - - uid: 2377 + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 16527 + - uid: 19140 components: - type: Transform - pos: 15.5,53.5 - parent: 2 - - uid: 2379 + pos: 17.5,13.5 + parent: 16527 + - uid: 19141 components: - type: Transform - pos: 30.5,53.5 - parent: 2 - - uid: 2382 + pos: -8.5,26.5 + parent: 16527 + - uid: 19142 components: - type: Transform - pos: 10.5,45.5 - parent: 2 - - uid: 2413 + pos: -5.5,34.5 + parent: 16527 + - uid: 19143 components: - type: Transform - pos: 40.5,43.5 - parent: 2 - - uid: 2414 + pos: 6.5,47.5 + parent: 16527 + - uid: 19144 components: - type: Transform - pos: 40.5,42.5 - parent: 2 - - uid: 2415 + pos: -0.5,53.5 + parent: 16527 + - uid: 19145 components: - type: Transform - pos: 40.5,41.5 - parent: 2 - - uid: 2416 + pos: 3.5,50.5 + parent: 16527 + - uid: 19146 components: - type: Transform - pos: 40.5,40.5 - parent: 2 - - uid: 2417 + pos: -0.5,59.5 + parent: 16527 + - uid: 19147 components: - type: Transform - pos: 41.5,41.5 - parent: 2 - - uid: 2418 + pos: 1.5,59.5 + parent: 16527 + - uid: 19148 components: - type: Transform - pos: 42.5,41.5 - parent: 2 - - uid: 2419 + pos: -22.5,49.5 + parent: 16527 + - uid: 19149 components: - type: Transform - pos: 43.5,41.5 - parent: 2 - - uid: 2420 + pos: -22.5,47.5 + parent: 16527 + - uid: 19150 components: - type: Transform - pos: 12.5,39.5 - parent: 2 - - uid: 2421 + pos: -0.5,39.5 + parent: 16527 + - uid: 19151 components: - type: Transform - pos: 12.5,41.5 - parent: 2 - - uid: 2422 + pos: 8.5,59.5 + parent: 16527 + - uid: 19152 components: - type: Transform - pos: 12.5,42.5 - parent: 2 - - uid: 2423 + pos: 3.5,67.5 + parent: 16527 + - uid: 19153 components: - type: Transform - pos: 12.5,43.5 - parent: 2 - - uid: 2425 + pos: -8.5,64.5 + parent: 16527 + - uid: 19154 components: - type: Transform - pos: 12.5,45.5 - parent: 2 - - uid: 2426 + pos: 22.5,53.5 + parent: 16527 + - uid: 19155 components: - type: Transform - pos: 11.5,41.5 - parent: 2 - - uid: 2427 + pos: 17.5,48.5 + parent: 16527 + - uid: 21267 components: - type: Transform - pos: 10.5,41.5 + pos: 24.5,58.5 parent: 2 - - uid: 2428 + - uid: 21424 components: - type: Transform - pos: 9.5,41.5 + pos: 31.5,59.5 parent: 2 - - uid: 2429 +- proto: BarricadeDirectional + entities: + - uid: 19156 components: - type: Transform - pos: 10.5,42.5 - parent: 2 - - uid: 2430 + rot: 3.141592653589793 rad + pos: -18.5,-3.5 + parent: 16527 + - uid: 19157 components: - type: Transform - pos: 10.5,43.5 - parent: 2 - - uid: 2431 + rot: 3.141592653589793 rad + pos: -19.5,-4.5 + parent: 16527 + - uid: 19158 components: - type: Transform - pos: 10.5,44.5 - parent: 2 - - uid: 2432 + pos: -19.5,-2.5 + parent: 16527 + - uid: 19159 components: - type: Transform - pos: 12.5,46.5 - parent: 2 - - uid: 2433 + rot: 3.141592653589793 rad + pos: -1.5,35.5 + parent: 16527 + - uid: 19160 components: - type: Transform - pos: 12.5,47.5 - parent: 2 - - uid: 2434 + rot: 3.141592653589793 rad + pos: 2.5,35.5 + parent: 16527 + - uid: 19161 components: - type: Transform - pos: 12.5,48.5 - parent: 2 - - uid: 2435 + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 16527 + - uid: 19162 components: - type: Transform - pos: 12.5,49.5 - parent: 2 - - uid: 2436 + pos: 6.5,8.5 + parent: 16527 + - uid: 19163 components: - type: Transform - pos: 12.5,50.5 - parent: 2 - - uid: 2437 + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 16527 + - uid: 19164 components: - type: Transform - pos: 12.5,51.5 - parent: 2 - - uid: 2438 + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 16527 + - uid: 19165 components: - type: Transform - pos: 12.5,52.5 - parent: 2 - - uid: 2439 + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 16527 + - uid: 19166 components: - type: Transform - pos: 12.5,53.5 - parent: 2 - - uid: 2440 + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 16527 + - uid: 19167 components: - type: Transform - pos: 12.5,54.5 - parent: 2 - - uid: 2441 + rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 16527 + - uid: 19168 components: - type: Transform - pos: 12.5,55.5 - parent: 2 - - uid: 2442 + pos: 0.5,20.5 + parent: 16527 + - uid: 19169 components: - type: Transform - pos: 11.5,55.5 - parent: 2 - - uid: 2443 + rot: 1.5707963267948966 rad + pos: 15.5,10.5 + parent: 16527 + - uid: 19170 components: - type: Transform - pos: 10.5,55.5 - parent: 2 - - uid: 2444 + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 16527 + - uid: 19171 components: - type: Transform - pos: 10.5,56.5 - parent: 2 - - uid: 2445 + rot: 3.141592653589793 rad + pos: 19.5,-7.5 + parent: 16527 + - uid: 19172 components: - type: Transform - pos: 10.5,57.5 - parent: 2 - - uid: 2446 + rot: 3.141592653589793 rad + pos: 20.5,-7.5 + parent: 16527 + - uid: 19173 components: - type: Transform - pos: 10.5,58.5 - parent: 2 - - uid: 2447 + pos: 6.5,48.5 + parent: 16527 + - uid: 19174 components: - type: Transform - pos: 10.5,59.5 - parent: 2 - - uid: 2448 + rot: 3.141592653589793 rad + pos: 6.5,46.5 + parent: 16527 + - uid: 19175 components: - type: Transform - pos: 10.5,60.5 - parent: 2 - - uid: 2449 + rot: -1.5707963267948966 rad + pos: -1.5,50.5 + parent: 16527 + - uid: 19176 components: - type: Transform - pos: 10.5,61.5 - parent: 2 - - uid: 2450 + rot: 3.141592653589793 rad + pos: 1.5,52.5 + parent: 16527 + - uid: 19177 components: - type: Transform - pos: 11.5,61.5 - parent: 2 - - uid: 2451 + rot: -1.5707963267948966 rad + pos: -8.5,51.5 + parent: 16527 + - uid: 19178 components: - type: Transform - pos: 11.5,61.5 - parent: 2 - - uid: 2452 + rot: -1.5707963267948966 rad + pos: -8.5,50.5 + parent: 16527 + - uid: 19179 components: - type: Transform - pos: 12.5,61.5 - parent: 2 - - uid: 2453 + rot: -1.5707963267948966 rad + pos: -8.5,48.5 + parent: 16527 + - uid: 19180 components: - type: Transform - pos: 13.5,61.5 - parent: 2 - - uid: 2454 + rot: -1.5707963267948966 rad + pos: -8.5,47.5 + parent: 16527 + - uid: 19181 components: - type: Transform - pos: 14.5,61.5 - parent: 2 - - uid: 2455 + rot: 3.141592653589793 rad + pos: -0.5,58.5 + parent: 16527 + - uid: 19182 components: - type: Transform - pos: 15.5,61.5 - parent: 2 - - uid: 2456 + pos: -0.5,60.5 + parent: 16527 + - uid: 19183 components: - type: Transform - pos: 16.5,61.5 - parent: 2 - - uid: 2457 + rot: 3.141592653589793 rad + pos: 1.5,58.5 + parent: 16527 + - uid: 19184 components: - type: Transform - pos: 16.5,60.5 - parent: 2 - - uid: 2458 + pos: 1.5,60.5 + parent: 16527 + - uid: 19185 components: - type: Transform - pos: 16.5,59.5 - parent: 2 - - uid: 2459 + rot: -1.5707963267948966 rad + pos: -21.5,47.5 + parent: 16527 + - uid: 19186 components: - type: Transform - pos: 16.5,58.5 - parent: 2 - - uid: 2460 + rot: 1.5707963267948966 rad + pos: -10.5,47.5 + parent: 16527 + - uid: 19187 components: - type: Transform - pos: 15.5,58.5 - parent: 2 - - uid: 2461 + rot: 1.5707963267948966 rad + pos: -10.5,48.5 + parent: 16527 + - uid: 19188 components: - type: Transform - pos: 14.5,58.5 - parent: 2 - - uid: 2462 + rot: 1.5707963267948966 rad + pos: -10.5,50.5 + parent: 16527 + - uid: 19189 components: - type: Transform - pos: 13.5,58.5 - parent: 2 - - uid: 2463 + rot: 1.5707963267948966 rad + pos: -10.5,51.5 + parent: 16527 + - uid: 19190 components: - type: Transform - pos: 12.5,58.5 - parent: 2 - - uid: 2464 + rot: -1.5707963267948966 rad + pos: -20.5,46.5 + parent: 16527 + - uid: 19191 components: - type: Transform - pos: 17.5,58.5 - parent: 2 - - uid: 2465 + rot: -1.5707963267948966 rad + pos: -19.5,47.5 + parent: 16527 + - uid: 19192 components: - type: Transform - pos: 18.5,58.5 - parent: 2 - - uid: 2466 + rot: -1.5707963267948966 rad + pos: -19.5,49.5 + parent: 16527 + - uid: 19193 components: - type: Transform - pos: 19.5,58.5 - parent: 2 - - uid: 2467 + rot: -1.5707963267948966 rad + pos: -20.5,50.5 + parent: 16527 + - uid: 19194 components: - type: Transform - pos: 14.5,62.5 - parent: 2 - - uid: 2468 + rot: 1.5707963267948966 rad + pos: -14.5,48.5 + parent: 16527 + - uid: 19195 components: - type: Transform - pos: 14.5,66.5 - parent: 2 - - uid: 2469 + rot: 1.5707963267948966 rad + pos: -14.5,47.5 + parent: 16527 + - uid: 19196 components: - type: Transform - pos: 14.5,67.5 - parent: 2 - - uid: 2470 + rot: -1.5707963267948966 rad + pos: -12.5,48.5 + parent: 16527 + - uid: 19197 components: - type: Transform - pos: 14.5,68.5 - parent: 2 - - uid: 2471 + rot: -1.5707963267948966 rad + pos: -12.5,47.5 + parent: 16527 + - uid: 19198 components: - type: Transform - pos: 14.5,69.5 - parent: 2 - - uid: 2472 + rot: -1.5707963267948966 rad + pos: -15.5,50.5 + parent: 16527 + - uid: 19199 components: - type: Transform - pos: 14.5,70.5 - parent: 2 - - uid: 2473 + rot: -1.5707963267948966 rad + pos: -15.5,49.5 + parent: 16527 + - uid: 19200 components: - type: Transform - pos: 14.5,71.5 - parent: 2 - - uid: 2474 + rot: 1.5707963267948966 rad + pos: -17.5,50.5 + parent: 16527 + - uid: 19201 components: - type: Transform - pos: 14.5,72.5 - parent: 2 - - uid: 2475 + rot: 1.5707963267948966 rad + pos: -17.5,49.5 + parent: 16527 + - uid: 19202 components: - type: Transform - pos: 14.5,73.5 - parent: 2 - - uid: 2476 + rot: 3.141592653589793 rad + pos: 0.5,66.5 + parent: 16527 + - uid: 19203 components: - type: Transform - pos: 14.5,74.5 - parent: 2 - - uid: 2477 + rot: 3.141592653589793 rad + pos: 2.5,66.5 + parent: 16527 + - uid: 19204 components: - type: Transform - pos: 14.5,75.5 - parent: 2 - - uid: 2478 + rot: 3.141592653589793 rad + pos: 4.5,66.5 + parent: 16527 + - uid: 19205 components: - type: Transform - pos: 14.5,76.5 - parent: 2 - - uid: 2479 + rot: 1.5707963267948966 rad + pos: 5.5,70.5 + parent: 16527 + - uid: 19206 components: - type: Transform - pos: 14.5,77.5 - parent: 2 - - uid: 2480 + pos: 6.5,71.5 + parent: 16527 + - uid: 19207 components: - type: Transform - pos: 14.5,78.5 - parent: 2 - - uid: 2481 + pos: 3.5,68.5 + parent: 16527 + - uid: 19208 components: - type: Transform - pos: 14.5,79.5 - parent: 2 - - uid: 2482 + rot: -1.5707963267948966 rad + pos: -7.5,64.5 + parent: 16527 + - uid: 19209 components: - type: Transform - pos: 14.5,80.5 - parent: 2 - - uid: 2483 + rot: 1.5707963267948966 rad + pos: -9.5,64.5 + parent: 16527 + - uid: 19210 components: - type: Transform - pos: 14.5,81.5 - parent: 2 - - uid: 2484 + pos: 17.5,49.5 + parent: 16527 + - uid: 19211 components: - type: Transform - pos: 14.5,82.5 - parent: 2 - - uid: 2485 + rot: 1.5707963267948966 rad + pos: 17.5,49.5 + parent: 16527 + - uid: 19212 components: - type: Transform - pos: 14.5,83.5 - parent: 2 - - uid: 2486 + rot: -1.5707963267948966 rad + pos: 32.5,54.5 + parent: 16527 + - uid: 19213 components: - type: Transform - pos: 13.5,80.5 - parent: 2 - - uid: 2487 + rot: 3.141592653589793 rad + pos: 32.5,54.5 + parent: 16527 + - uid: 19214 components: - type: Transform - pos: 12.5,80.5 - parent: 2 - - uid: 2488 + rot: 1.5707963267948966 rad + pos: 30.5,54.5 + parent: 16527 +- proto: BarSign + entities: + - uid: 919 components: - type: Transform - pos: 11.5,80.5 + pos: 23.5,56.5 parent: 2 - - uid: 2489 + - uid: 21425 components: - type: Transform - pos: 10.5,80.5 + pos: 24.5,39.5 parent: 2 - - uid: 2490 +- proto: BarSpoon + entities: + - uid: 4985 components: - type: Transform - pos: 9.5,80.5 + rot: 1.5707963267948966 rad + pos: 21.444996,55.442097 parent: 2 - - uid: 2491 +- proto: BaseBallBat + entities: + - uid: 920 components: - type: Transform - pos: 13.5,78.5 + pos: 32.497658,-17.647013 parent: 2 - - uid: 2492 + - uid: 921 components: - type: Transform - pos: 12.5,78.5 + pos: 49.666325,17.460323 parent: 2 - - uid: 2493 +- proto: BaseComputer + entities: + - uid: 922 components: - type: Transform - pos: 11.5,78.5 + rot: 3.141592653589793 rad + pos: 55.5,-5.5 parent: 2 - - uid: 2494 + - uid: 923 components: - type: Transform - pos: 10.5,78.5 + pos: 49.5,1.5 parent: 2 - - uid: 2495 + - uid: 19215 components: - type: Transform - pos: 9.5,78.5 - parent: 2 - - uid: 2496 + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 16527 + - uid: 19216 components: - type: Transform - pos: 13.5,72.5 - parent: 2 - - uid: 2497 + pos: -8.5,-1.5 + parent: 16527 + - uid: 19217 components: - type: Transform - pos: 12.5,72.5 - parent: 2 - - uid: 2498 + rot: -1.5707963267948966 rad + pos: 18.5,3.5 + parent: 16527 + - uid: 19218 components: - type: Transform - pos: 11.5,72.5 - parent: 2 - - uid: 2499 + rot: 3.141592653589793 rad + pos: -46.5,50.5 + parent: 16527 + - uid: 19219 components: - type: Transform - pos: 10.5,72.5 - parent: 2 - - uid: 2500 + pos: -45.5,46.5 + parent: 16527 + - uid: 19220 components: - type: Transform - pos: 9.5,72.5 - parent: 2 - - uid: 2501 + pos: -46.5,46.5 + parent: 16527 + - uid: 19221 components: - type: Transform - pos: 13.5,70.5 - parent: 2 - - uid: 2502 + rot: 3.141592653589793 rad + pos: -45.5,50.5 + parent: 16527 + - uid: 19222 components: - type: Transform - pos: 12.5,70.5 - parent: 2 - - uid: 2503 + pos: -49.5,54.5 + parent: 16527 + - uid: 19223 components: - type: Transform - pos: 11.5,70.5 - parent: 2 - - uid: 2504 + rot: 1.5707963267948966 rad + pos: -55.5,47.5 + parent: 16527 +- proto: BaseGasCondenser + entities: + - uid: 924 components: - type: Transform - pos: 10.5,70.5 + rot: -1.5707963267948966 rad + pos: 39.5,77.5 parent: 2 - - uid: 2505 +- proto: BassGuitarInstrument + entities: + - uid: 21493 components: - type: Transform - pos: 9.5,70.5 + pos: 21.730509,40.548702 parent: 2 - - uid: 2506 +- proto: BeachBall + entities: + - uid: 925 components: - type: Transform - pos: 17.5,61.5 + rot: 3.141592653589793 rad + pos: 55.43283,-13.297902 parent: 2 - - uid: 2507 +- proto: Beaker + entities: + - uid: 926 components: - type: Transform - pos: 18.5,61.5 + pos: 55.322304,41.535374 parent: 2 - - uid: 2508 +- proto: Bed + entities: + - uid: 927 components: - type: Transform - pos: 19.5,61.5 + pos: 2.5,1.5 parent: 2 - - uid: 2509 + - uid: 928 components: - type: Transform - pos: 20.5,61.5 + pos: 20.5,17.5 parent: 2 - - uid: 2510 + - uid: 929 components: - type: Transform - pos: 21.5,61.5 + pos: 15.5,4.5 parent: 2 - - uid: 2511 + - uid: 930 components: - type: Transform - pos: 22.5,61.5 + pos: 40.5,20.5 parent: 2 - - uid: 2512 + - uid: 931 components: - type: Transform - pos: 23.5,61.5 + pos: 40.5,17.5 parent: 2 - - uid: 2513 + - uid: 934 components: - type: Transform - pos: 22.5,60.5 + pos: 5.5,36.5 parent: 2 - - uid: 2514 + - uid: 935 components: - type: Transform - pos: 22.5,59.5 + pos: 9.5,36.5 parent: 2 - - uid: 2515 + - uid: 936 components: - type: Transform - pos: 22.5,58.5 + pos: 3.5,36.5 parent: 2 - - uid: 2516 + - uid: 937 components: - type: Transform - pos: 22.5,57.5 + pos: 80.5,27.5 parent: 2 - - uid: 2517 + - uid: 938 components: - type: Transform - pos: 23.5,62.5 + pos: 59.5,65.5 parent: 2 - - uid: 2518 + - uid: 939 components: - type: Transform - pos: 24.5,62.5 + pos: 26.5,20.5 parent: 2 - - uid: 2519 + - uid: 940 components: - type: Transform - pos: 25.5,62.5 + pos: 39.5,24.5 parent: 2 - - uid: 2520 + - uid: 941 components: - type: Transform - pos: 26.5,62.5 + pos: 46.5,20.5 parent: 2 - - uid: 2521 + - uid: 942 components: - type: Transform - pos: 27.5,62.5 + pos: 39.5,22.5 parent: 2 - - uid: 2522 + - uid: 943 components: - type: Transform - pos: 28.5,62.5 + pos: 46.5,17.5 parent: 2 - - uid: 2523 + - uid: 944 components: - type: Transform - pos: 29.5,62.5 + pos: 54.5,41.5 parent: 2 - - uid: 2524 + - uid: 945 components: - type: Transform - pos: 30.5,62.5 + pos: 65.5,5.5 parent: 2 - - uid: 2525 + - uid: 19224 components: - type: Transform - pos: 31.5,62.5 - parent: 2 - - uid: 2526 + pos: -6.5,30.5 + parent: 16527 + - uid: 19225 components: - type: Transform - pos: 32.5,62.5 - parent: 2 - - uid: 2527 + pos: 12.5,22.5 + parent: 16527 + - uid: 19226 components: - type: Transform - pos: 33.5,62.5 - parent: 2 - - uid: 2528 + pos: 17.5,22.5 + parent: 16527 + - uid: 19227 components: - type: Transform - pos: 34.5,62.5 - parent: 2 - - uid: 2529 + pos: 12.5,26.5 + parent: 16527 + - uid: 19228 components: - type: Transform - pos: 30.5,61.5 - parent: 2 - - uid: 2530 + pos: 17.5,26.5 + parent: 16527 +- proto: BedsheetCaptain + entities: + - uid: 946 components: - type: Transform - pos: 30.5,60.5 + pos: 26.5,20.5 parent: 2 - - uid: 2531 +- proto: BedsheetCE + entities: + - uid: 947 components: - type: Transform - pos: 32.5,64.5 + pos: 39.5,69.5 parent: 2 - - uid: 2532 +- proto: BedsheetCMO + entities: + - uid: 948 components: - type: Transform - pos: 32.5,63.5 + pos: 48.5,10.5 parent: 2 - - uid: 2533 +- proto: BedsheetCult + entities: + - uid: 949 components: - type: Transform - pos: 32.5,65.5 + pos: 80.5,27.5 parent: 2 - - uid: 2534 +- proto: BedsheetGreen + entities: + - uid: 950 components: - type: Transform - pos: 32.5,66.5 + pos: 56.5,-0.5 parent: 2 - - uid: 2535 + - uid: 951 components: - type: Transform - pos: 32.5,67.5 + pos: 56.5,0.5 parent: 2 - - uid: 2536 +- proto: BedsheetHOP + entities: + - uid: 952 components: - type: Transform - pos: 33.5,66.5 + pos: 20.5,17.5 parent: 2 - - uid: 2537 +- proto: BedsheetHOS + entities: + - uid: 953 components: - type: Transform - pos: 34.5,66.5 + pos: 52.5,33.5 parent: 2 - - uid: 2538 +- proto: BedsheetMedical + entities: + - uid: 954 components: - type: Transform - pos: 35.5,66.5 + pos: 35.5,1.5 parent: 2 - - uid: 2539 + - uid: 955 components: - type: Transform - pos: 36.5,66.5 + pos: 41.5,-2.5 parent: 2 - - uid: 2540 + - uid: 956 components: - type: Transform - pos: 36.5,64.5 + pos: 35.5,-0.5 parent: 2 - - uid: 2541 + - uid: 957 components: - type: Transform - pos: 36.5,63.5 + pos: 41.5,-4.5 parent: 2 - - uid: 2542 + - uid: 958 components: - type: Transform - pos: 36.5,62.5 + pos: 41.5,-0.5 parent: 2 - - uid: 2543 + - uid: 959 components: - type: Transform - pos: 36.5,61.5 + pos: 35.5,-5.5 parent: 2 - - uid: 2544 + - uid: 960 components: - type: Transform - pos: 36.5,60.5 + pos: 35.5,-6.5 parent: 2 - - uid: 2545 + - uid: 961 components: - type: Transform - pos: 36.5,59.5 + pos: 37.5,-5.5 parent: 2 - - uid: 2546 + - uid: 962 components: - type: Transform - pos: 36.5,58.5 + pos: 37.5,-6.5 parent: 2 - - uid: 2547 + - uid: 963 components: - type: Transform - pos: 36.5,57.5 + pos: 35.5,-2.5 parent: 2 - - uid: 2551 + - uid: 13254 components: - type: Transform - pos: 50.5,67.5 + pos: 60.5,20.5 parent: 2 - - uid: 2552 + - uid: 14724 components: - type: Transform - pos: 50.5,66.5 + rot: 3.141592653589793 rad + pos: 60.5,19.5 parent: 2 - - uid: 2553 + - uid: 19229 components: - type: Transform - pos: 50.5,65.5 - parent: 2 - - uid: 2554 + pos: 17.5,34.5 + parent: 16527 + - uid: 19230 components: - type: Transform - pos: 49.5,65.5 - parent: 2 - - uid: 2555 + pos: 15.5,32.5 + parent: 16527 + - uid: 19231 components: - type: Transform - pos: 47.5,67.5 - parent: 2 - - uid: 2556 + pos: 17.5,36.5 + parent: 16527 +- proto: BedsheetOrange + entities: + - uid: 966 components: - type: Transform - pos: 47.5,69.5 + rot: 3.141592653589793 rad + pos: 40.5,20.5 parent: 2 - - uid: 2557 + - uid: 967 components: - type: Transform - pos: 47.5,70.5 + rot: 3.141592653589793 rad + pos: 40.5,17.5 parent: 2 - - uid: 2558 + - uid: 968 components: - type: Transform - pos: 47.5,71.5 + rot: 1.5707963267948966 rad + pos: 46.5,20.5 parent: 2 - - uid: 2559 + - uid: 969 components: - type: Transform - pos: 47.5,72.5 + rot: 1.5707963267948966 rad + pos: 46.5,17.5 parent: 2 - - uid: 2560 + - uid: 970 components: - type: Transform - pos: 47.5,73.5 + rot: 1.5707963267948966 rad + pos: 39.5,24.5 parent: 2 - - uid: 2561 + - uid: 971 components: - type: Transform - pos: 47.5,74.5 + rot: 1.5707963267948966 rad + pos: 39.5,22.5 parent: 2 - - uid: 2562 +- proto: BedsheetQM + entities: + - uid: 972 components: - type: Transform - pos: 51.5,65.5 + pos: 2.5,1.5 parent: 2 - - uid: 2563 +- proto: BedsheetRD + entities: + - uid: 973 components: - type: Transform - pos: 52.5,65.5 + pos: 15.5,4.5 parent: 2 - - uid: 2564 +- proto: BedsheetSpawner + entities: + - uid: 974 components: - type: Transform - pos: 53.5,65.5 + pos: 3.5,36.5 parent: 2 - - uid: 2565 + - uid: 975 components: - type: Transform - pos: 54.5,65.5 + pos: 5.5,36.5 parent: 2 - - uid: 2566 + - uid: 976 components: - type: Transform - pos: 51.5,60.5 + pos: 9.5,36.5 parent: 2 - - uid: 2567 + - uid: 19232 components: - type: Transform - pos: 53.5,72.5 - parent: 2 - - uid: 2568 + pos: 12.5,22.5 + parent: 16527 + - uid: 19233 components: - type: Transform - pos: 52.5,63.5 - parent: 2 - - uid: 2569 + pos: 17.5,22.5 + parent: 16527 + - uid: 19234 components: - type: Transform - pos: 51.5,64.5 - parent: 2 - - uid: 2570 - components: - - type: Transform - pos: 52.5,64.5 - parent: 2 - - uid: 2571 - components: - - type: Transform - pos: 53.5,64.5 - parent: 2 - - uid: 2572 - components: - - type: Transform - pos: 48.5,56.5 - parent: 2 - - uid: 2573 - components: - - type: Transform - pos: 48.5,55.5 - parent: 2 - - uid: 2574 - components: - - type: Transform - pos: 49.5,56.5 - parent: 2 - - uid: 2575 - components: - - type: Transform - pos: 50.5,56.5 - parent: 2 - - uid: 2576 + pos: 12.5,26.5 + parent: 16527 + - uid: 19235 components: - type: Transform - pos: 51.5,56.5 - parent: 2 - - uid: 2577 + pos: 17.5,26.5 + parent: 16527 +- proto: BedsheetSyndie + entities: + - uid: 977 components: - type: Transform - pos: 57.5,53.5 + rot: 1.5707963267948966 rad + pos: 54.5,41.5 parent: 2 - - uid: 2578 + - uid: 19236 components: - type: Transform - pos: 57.5,54.5 - parent: 2 - - uid: 2579 + rot: 1.5707963267948966 rad + pos: -6.5,30.5 + parent: 16527 +- proto: BedsheetUSA + entities: + - uid: 978 components: - type: Transform - pos: 57.5,55.5 + pos: 49.5,26.5 parent: 2 - - uid: 2580 +- proto: BedsheetYellow + entities: + - uid: 979 components: - type: Transform - pos: 57.5,56.5 + rot: 3.141592653589793 rad + pos: 59.5,65.5 parent: 2 - - uid: 2581 +- proto: BenchBlueComfy + entities: + - uid: 980 components: - type: Transform - pos: 57.5,57.5 + rot: 3.141592653589793 rad + pos: 36.5,3.5 parent: 2 - - uid: 2582 + - uid: 981 components: - type: Transform - pos: 57.5,58.5 + rot: 3.141592653589793 rad + pos: 52.5,2.5 parent: 2 - - uid: 2583 + - uid: 982 components: - type: Transform - pos: 57.5,59.5 + rot: 1.5707963267948966 rad + pos: 43.5,1.5 parent: 2 - - uid: 2584 + - uid: 983 components: - type: Transform - pos: 57.5,60.5 + rot: 3.141592653589793 rad + pos: 35.5,3.5 parent: 2 - - uid: 2585 + - uid: 985 components: - type: Transform - pos: 57.5,61.5 + rot: 1.5707963267948966 rad + pos: 43.5,2.5 parent: 2 - - uid: 2586 + - uid: 11749 components: - type: Transform - pos: 57.5,62.5 + rot: 1.5707963267948966 rad + pos: 44.5,-9.5 parent: 2 - - uid: 2587 + - uid: 13687 components: - type: Transform - pos: 57.5,63.5 + rot: 1.5707963267948966 rad + pos: 44.5,-8.5 parent: 2 - - uid: 2588 +- proto: BenchColorfulComfy + entities: + - uid: 281 components: - type: Transform - pos: 57.5,64.5 + pos: 1.5,30.5 parent: 2 - - uid: 2589 + - uid: 5959 components: - type: Transform - pos: 57.5,65.5 + rot: 1.5707963267948966 rad + pos: 80.5,62.5 parent: 2 - - uid: 2590 + - uid: 5962 components: - type: Transform - pos: 57.5,66.5 + rot: 3.141592653589793 rad + pos: 79.5,64.5 parent: 2 - - uid: 2591 + - uid: 5963 components: - type: Transform - pos: 57.5,67.5 + rot: 3.141592653589793 rad + pos: 77.5,64.5 parent: 2 - - uid: 2592 + - uid: 5964 components: - type: Transform - pos: 57.5,68.5 + rot: 3.141592653589793 rad + pos: 78.5,64.5 parent: 2 - - uid: 2593 + - uid: 5985 components: - type: Transform - pos: 57.5,69.5 + rot: 3.141592653589793 rad + pos: 74.5,64.5 parent: 2 - - uid: 2594 + - uid: 5986 components: - type: Transform - pos: 57.5,70.5 + rot: 3.141592653589793 rad + pos: 73.5,64.5 parent: 2 - - uid: 2595 + - uid: 5987 components: - type: Transform - pos: 57.5,71.5 + rot: 3.141592653589793 rad + pos: 75.5,64.5 parent: 2 - - uid: 2596 + - uid: 5988 components: - type: Transform - pos: 57.5,72.5 + rot: 1.5707963267948966 rad + pos: 80.5,63.5 parent: 2 - - uid: 2597 + - uid: 5990 components: - type: Transform - pos: 57.5,73.5 + rot: 1.5707963267948966 rad + pos: 80.5,61.5 parent: 2 - - uid: 2598 + - uid: 5991 components: - type: Transform - pos: 57.5,74.5 + rot: 1.5707963267948966 rad + pos: 80.5,59.5 parent: 2 - - uid: 2599 + - uid: 5992 components: - type: Transform - pos: 47.5,79.5 + rot: 1.5707963267948966 rad + pos: 80.5,58.5 parent: 2 - - uid: 2600 + - uid: 5993 components: - type: Transform - pos: 38.5,60.5 + rot: 1.5707963267948966 rad + pos: 80.5,57.5 parent: 2 - - uid: 2601 + - uid: 5994 components: - type: Transform - pos: 54.5,70.5 + pos: 79.5,56.5 parent: 2 - - uid: 2602 + - uid: 5995 components: - type: Transform - pos: 53.5,70.5 + pos: 78.5,56.5 parent: 2 - - uid: 2603 + - uid: 5996 components: - type: Transform - pos: 52.5,70.5 + pos: 77.5,56.5 parent: 2 - - uid: 2604 + - uid: 5997 components: - type: Transform - pos: 51.5,70.5 + pos: 75.5,56.5 parent: 2 - - uid: 2605 + - uid: 5998 components: - type: Transform - pos: 50.5,70.5 + pos: 74.5,56.5 parent: 2 - - uid: 2606 + - uid: 5999 components: - type: Transform - pos: 53.5,69.5 + pos: 73.5,56.5 parent: 2 - - uid: 2607 + - uid: 6000 components: - type: Transform - pos: 50.5,69.5 + rot: -1.5707963267948966 rad + pos: 72.5,57.5 parent: 2 - - uid: 2608 + - uid: 6001 components: - type: Transform - pos: 41.5,69.5 + rot: -1.5707963267948966 rad + pos: 72.5,58.5 parent: 2 - - uid: 2609 + - uid: 6002 components: - type: Transform - pos: 42.5,69.5 + rot: -1.5707963267948966 rad + pos: 72.5,59.5 parent: 2 - - uid: 2610 + - uid: 6003 components: - type: Transform - pos: 43.5,69.5 + rot: -1.5707963267948966 rad + pos: 72.5,61.5 parent: 2 - - uid: 2611 + - uid: 6004 components: - type: Transform - pos: 44.5,69.5 + rot: -1.5707963267948966 rad + pos: 72.5,62.5 parent: 2 - - uid: 2612 + - uid: 6005 components: - type: Transform - pos: 43.5,70.5 + rot: -1.5707963267948966 rad + pos: 72.5,63.5 parent: 2 - - uid: 2613 + - uid: 6007 components: - type: Transform - pos: 43.5,71.5 + rot: -1.5707963267948966 rad + pos: 83.5,59.5 parent: 2 - - uid: 2614 + - uid: 6008 components: - type: Transform - pos: 43.5,72.5 + rot: -1.5707963267948966 rad + pos: 83.5,58.5 parent: 2 - - uid: 2615 + - uid: 6009 components: - type: Transform - pos: 43.5,74.5 + rot: -1.5707963267948966 rad + pos: 83.5,60.5 parent: 2 - - uid: 2616 + - uid: 6010 components: - type: Transform - pos: 43.5,75.5 + rot: -1.5707963267948966 rad + pos: 83.5,61.5 parent: 2 - - uid: 2617 + - uid: 6011 components: - type: Transform - pos: 43.5,76.5 + rot: -1.5707963267948966 rad + pos: 83.5,62.5 parent: 2 - - uid: 2618 + - uid: 16100 components: - type: Transform - pos: 43.5,73.5 + pos: 2.5,30.5 parent: 2 - - uid: 2619 + - uid: 22235 components: - type: Transform - pos: 42.5,75.5 + pos: 75.5,66.5 parent: 2 - - uid: 2620 + - uid: 22236 components: - type: Transform - pos: 42.5,71.5 + pos: 76.5,66.5 parent: 2 - - uid: 2621 + - uid: 22237 components: - type: Transform - pos: 41.5,71.5 + pos: 77.5,66.5 parent: 2 - - uid: 2622 + - uid: 22238 components: - type: Transform - pos: 40.5,71.5 + pos: 78.5,66.5 parent: 2 - - uid: 2623 + - uid: 22239 components: - type: Transform - pos: 39.5,71.5 + pos: 73.5,66.5 parent: 2 - - uid: 2624 + - uid: 22240 components: - type: Transform - pos: 38.5,71.5 + pos: 80.5,66.5 parent: 2 - - uid: 2625 +- proto: BenchComfy + entities: + - uid: 19237 components: - type: Transform - pos: 37.5,71.5 - parent: 2 - - uid: 2626 + rot: 1.5707963267948966 rad + pos: 13.5,35.5 + parent: 16527 + - uid: 19238 components: - type: Transform - pos: 36.5,71.5 - parent: 2 - - uid: 2627 + rot: 1.5707963267948966 rad + pos: 13.5,34.5 + parent: 16527 +- proto: BenchRedComfy + entities: + - uid: 19239 components: - type: Transform - pos: 35.5,71.5 - parent: 2 - - uid: 2628 + rot: 3.141592653589793 rad + pos: 9.5,47.5 + parent: 16527 + - uid: 19240 components: - type: Transform - pos: 34.5,71.5 - parent: 2 - - uid: 2629 + pos: 14.5,53.5 + parent: 16527 + - uid: 19241 components: - type: Transform - pos: 33.5,71.5 - parent: 2 - - uid: 2630 + rot: 1.5707963267948966 rad + pos: -14.5,0.5 + parent: 16527 + - uid: 19242 components: - type: Transform - pos: 32.5,71.5 - parent: 2 - - uid: 2631 + rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 16527 + - uid: 19243 components: - type: Transform - pos: 37.5,72.5 - parent: 2 - - uid: 2632 + pos: 4.5,35.5 + parent: 16527 + - uid: 19244 components: - type: Transform - pos: 37.5,73.5 - parent: 2 - - uid: 2633 + pos: 5.5,35.5 + parent: 16527 + - uid: 19245 components: - type: Transform - pos: 37.5,74.5 - parent: 2 - - uid: 2634 + rot: 3.141592653589793 rad + pos: 4.5,32.5 + parent: 16527 + - uid: 19246 components: - type: Transform - pos: 37.5,75.5 - parent: 2 - - uid: 2635 + rot: 3.141592653589793 rad + pos: 5.5,32.5 + parent: 16527 + - uid: 19247 components: - type: Transform - pos: 37.5,76.5 - parent: 2 - - uid: 2636 + rot: 3.141592653589793 rad + pos: -3.5,32.5 + parent: 16527 + - uid: 19248 components: - type: Transform - pos: 37.5,77.5 - parent: 2 - - uid: 2637 + rot: 3.141592653589793 rad + pos: -2.5,32.5 + parent: 16527 + - uid: 19249 components: - type: Transform - pos: 37.5,78.5 - parent: 2 - - uid: 2638 + pos: -3.5,35.5 + parent: 16527 + - uid: 19250 components: - type: Transform - pos: 37.5,79.5 - parent: 2 - - uid: 2639 + pos: -2.5,35.5 + parent: 16527 + - uid: 19251 components: - type: Transform - pos: 37.5,80.5 - parent: 2 - - uid: 2640 + pos: -7.5,18.5 + parent: 16527 + - uid: 19252 components: - type: Transform - pos: 37.5,81.5 - parent: 2 - - uid: 2641 + pos: -9.5,18.5 + parent: 16527 + - uid: 19253 components: - type: Transform - pos: 37.5,82.5 - parent: 2 - - uid: 2642 + rot: -1.5707963267948966 rad + pos: -6.5,17.5 + parent: 16527 + - uid: 19254 components: - type: Transform - pos: 36.5,80.5 - parent: 2 - - uid: 2643 + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 16527 + - uid: 19255 components: - type: Transform - pos: 35.5,80.5 - parent: 2 - - uid: 2644 + rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 16527 + - uid: 19256 components: - type: Transform - pos: 34.5,80.5 - parent: 2 - - uid: 2645 + rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 16527 + - uid: 19257 components: - type: Transform - pos: 34.5,81.5 - parent: 2 - - uid: 2646 + pos: 13.5,18.5 + parent: 16527 + - uid: 19258 components: - type: Transform - pos: 34.5,82.5 - parent: 2 - - uid: 2647 + rot: 1.5707963267948966 rad + pos: 4.5,58.5 + parent: 16527 + - uid: 19259 components: - type: Transform - pos: 34.5,83.5 - parent: 2 - - uid: 2648 + pos: 6.5,52.5 + parent: 16527 +- proto: BikeHornImplanter + entities: + - uid: 19260 components: - type: Transform - pos: 38.5,80.5 - parent: 2 - - uid: 2649 + rot: -1.5707963267948966 rad + pos: -45.951553,47.622986 + parent: 16527 +- proto: Biogenerator + entities: + - uid: 21554 components: - type: Transform - pos: 39.5,80.5 + pos: 35.5,50.5 parent: 2 - - uid: 2650 +- proto: BiomassReclaimer + entities: + - uid: 986 components: - type: Transform - pos: 40.5,80.5 + pos: 52.5,6.5 parent: 2 - - uid: 2651 +- proto: BladedFlatcapGrey + entities: + - uid: 19261 components: - type: Transform - pos: 41.5,80.5 - parent: 2 - - uid: 2652 + pos: -36.709152,31.607605 + parent: 16527 +- proto: BlastDoor + entities: + - uid: 987 components: - type: Transform - pos: 42.5,80.5 + rot: 1.5707963267948966 rad + pos: 26.5,15.5 parent: 2 - - uid: 2653 + - uid: 988 components: - type: Transform - pos: 43.5,80.5 + pos: -1.5,9.5 parent: 2 - - uid: 2654 + - uid: 989 components: - type: Transform - pos: 47.5,80.5 + pos: -1.5,5.5 parent: 2 - - uid: 2655 + - uid: 990 components: - type: Transform - pos: 50.5,81.5 + pos: -1.5,23.5 parent: 2 - - uid: 2656 + - uid: 991 components: - type: Transform - pos: 50.5,82.5 + pos: 17.5,-7.5 parent: 2 - - uid: 2657 + - uid: 992 components: - type: Transform - pos: 50.5,83.5 + rot: -1.5707963267948966 rad + pos: 64.5,7.5 parent: 2 - - uid: 2658 + - uid: 993 components: - type: Transform - pos: 45.5,81.5 + pos: 41.5,88.5 parent: 2 - - uid: 2659 + - uid: 994 components: - type: Transform - pos: 45.5,82.5 + rot: 1.5707963267948966 rad + pos: 25.5,15.5 parent: 2 - - uid: 2660 + - uid: 995 components: - type: Transform - pos: 45.5,83.5 + rot: -1.5707963267948966 rad + pos: 56.5,84.5 parent: 2 - - uid: 2661 + - uid: 19262 components: - type: Transform - pos: 45.5,84.5 - parent: 2 - - uid: 2662 + pos: 0.5,47.5 + parent: 16527 + - uid: 19263 components: - type: Transform - pos: 45.5,85.5 - parent: 2 - - uid: 2663 + pos: -0.5,47.5 + parent: 16527 + - uid: 19264 components: - type: Transform - pos: 45.5,86.5 - parent: 2 - - uid: 2664 + pos: -12.5,68.5 + parent: 16527 + - uid: 19265 components: - type: Transform - pos: 46.5,87.5 - parent: 2 - - uid: 2665 + pos: -2.5,63.5 + parent: 16527 + - uid: 19266 components: - type: Transform - pos: 46.5,88.5 - parent: 2 - - uid: 2666 + pos: -5.5,16.5 + parent: 16527 + - uid: 19267 components: - type: Transform - pos: 43.5,78.5 - parent: 2 - - uid: 2667 + pos: 6.5,16.5 + parent: 16527 + - uid: 19268 components: - type: Transform - pos: 42.5,78.5 - parent: 2 - - uid: 2668 + pos: 1.5,13.5 + parent: 16527 + - uid: 19269 components: - type: Transform - pos: 41.5,78.5 - parent: 2 - - uid: 2669 + pos: -0.5,13.5 + parent: 16527 + - uid: 19270 components: - type: Transform - pos: 40.5,78.5 - parent: 2 - - uid: 2670 + pos: 0.5,-0.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19271 components: - type: Transform - pos: 39.5,78.5 - parent: 2 - - uid: 2671 + pos: 1.5,-0.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19272 components: - type: Transform - pos: 38.5,78.5 - parent: 2 - - uid: 2672 + pos: -0.5,-0.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19273 components: - type: Transform - pos: 39.5,77.5 - parent: 2 - - uid: 2673 + pos: -0.5,7.5 + parent: 16527 + - uid: 19274 components: - type: Transform - pos: 39.5,76.5 - parent: 2 - - uid: 2674 + pos: 1.5,7.5 + parent: 16527 + - uid: 19275 components: - type: Transform - pos: 39.5,75.5 - parent: 2 - - uid: 2675 + pos: 0.5,7.5 + parent: 16527 + - uid: 19276 components: - type: Transform - pos: 39.5,74.5 - parent: 2 - - uid: 2676 + pos: -8.5,9.5 + parent: 16527 + - uid: 19277 components: - type: Transform - pos: 39.5,73.5 - parent: 2 - - uid: 2677 + pos: 9.5,11.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 24376: + - DoorStatus: Trigger + 23635: + - DoorStatus: Toggle + 23520: + - DoorStatus: Toggle + 23521: + - DoorStatus: Toggle + 23525: + - DoorStatus: Toggle + 23517: + - DoorStatus: Toggle + 23642: + - DoorStatus: Toggle + 23641: + - DoorStatus: Toggle + 23646: + - DoorStatus: Toggle + 23526: + - DoorStatus: Toggle + 23530: + - DoorStatus: Toggle + 23650: + - DoorStatus: Toggle + 23652: + - DoorStatus: Toggle + 23655: + - DoorStatus: Toggle + 23533: + - DoorStatus: Toggle + 23529: + - DoorStatus: Toggle + 23535: + - DoorStatus: Toggle + 23651: + - DoorStatus: Toggle + 23539: + - DoorStatus: Toggle + 23540: + - DoorStatus: Toggle + 23528: + - DoorStatus: Toggle + - uid: 19278 components: - type: Transform - pos: 39.5,72.5 - parent: 2 - - uid: 2678 + pos: -8.5,10.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 23516: + - DoorStatus: Toggle + 24375: + - DoorStatus: Trigger + 23518: + - DoorStatus: Toggle + 23640: + - DoorStatus: Toggle + 23638: + - DoorStatus: Toggle + 23524: + - DoorStatus: Toggle + 23522: + - DoorStatus: Toggle + 23643: + - DoorStatus: Toggle + 23645: + - DoorStatus: Toggle + 23647: + - DoorStatus: Toggle + 23532: + - DoorStatus: Toggle + 23657: + - DoorStatus: Toggle + 23654: + - DoorStatus: Toggle + 23527: + - DoorStatus: Toggle + - uid: 19279 components: - type: Transform - pos: 36.5,75.5 - parent: 2 - - uid: 2679 + pos: -4.5,18.5 + parent: 16527 + - uid: 19280 components: - type: Transform - pos: 35.5,75.5 - parent: 2 - - uid: 2680 + pos: -4.5,14.5 + parent: 16527 + - uid: 19281 components: - type: Transform - pos: 34.5,75.5 - parent: 2 - - uid: 2681 + pos: 5.5,14.5 + parent: 16527 + - uid: 19282 components: - type: Transform - pos: 72.5,66.5 - parent: 2 - - uid: 2682 + pos: 0.5,16.5 + parent: 16527 + - uid: 19283 components: - type: Transform - pos: 72.5,65.5 - parent: 2 - - uid: 2683 + pos: 5.5,18.5 + parent: 16527 + - uid: 19285 components: - type: Transform - pos: 72.5,64.5 - parent: 2 - - uid: 2684 + pos: 0.5,19.5 + parent: 16527 + - uid: 19286 components: - type: Transform - pos: 72.5,63.5 - parent: 2 - - uid: 2685 + pos: 8.5,19.5 + parent: 16527 + - uid: 19287 components: - type: Transform - pos: 72.5,62.5 - parent: 2 - - uid: 2686 + pos: 7.5,24.5 + parent: 16527 + - uid: 19288 components: - type: Transform - pos: 72.5,61.5 - parent: 2 - - uid: 2687 + pos: 9.5,21.5 + parent: 16527 + - uid: 19289 components: - type: Transform - pos: 72.5,60.5 - parent: 2 - - uid: 2688 + pos: 7.5,21.5 + parent: 16527 + - uid: 19290 components: - type: Transform - pos: 72.5,59.5 - parent: 2 - - uid: 2689 + pos: 9.5,24.5 + parent: 16527 + - uid: 19291 components: - type: Transform - pos: 72.5,58.5 - parent: 2 - - uid: 2690 + pos: 9.5,27.5 + parent: 16527 + - uid: 19292 components: - type: Transform - pos: 72.5,57.5 - parent: 2 - - uid: 2691 + pos: 7.5,27.5 + parent: 16527 + - uid: 19293 components: - type: Transform - pos: 72.5,56.5 - parent: 2 - - uid: 2692 + pos: 7.5,30.5 + parent: 16527 + - uid: 19294 components: - type: Transform - pos: 72.5,55.5 - parent: 2 - - uid: 2693 + pos: 9.5,30.5 + parent: 16527 + - uid: 19295 components: - type: Transform - pos: 71.5,58.5 - parent: 2 - - uid: 2694 + pos: 0.5,31.5 + parent: 16527 + - uid: 19296 components: - type: Transform - pos: 70.5,58.5 - parent: 2 - - uid: 2695 + pos: 1.5,31.5 + parent: 16527 + - uid: 19297 components: - type: Transform - pos: 69.5,58.5 - parent: 2 - - uid: 2696 + pos: -0.5,31.5 + parent: 16527 + - uid: 19298 components: - type: Transform - pos: 68.5,58.5 - parent: 2 - - uid: 2697 + pos: -19.5,21.5 + parent: 16527 + - uid: 19299 components: - type: Transform - pos: 71.5,55.5 - parent: 2 - - uid: 2698 + pos: 10.5,16.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 24377: + - DoorStatus: Trigger + 23649: + - DoorStatus: Toggle + 23653: + - DoorStatus: Toggle + 23656: + - DoorStatus: Toggle + 23658: + - DoorStatus: Toggle + 23528: + - DoorStatus: Toggle + 23534: + - DoorStatus: Toggle + 23659: + - DoorStatus: Toggle + 23661: + - DoorStatus: Toggle + 23537: + - DoorStatus: Toggle + 23663: + - DoorStatus: Toggle + - uid: 19300 components: - type: Transform - pos: 70.5,55.5 - parent: 2 - - uid: 2699 + pos: -19.5,22.5 + parent: 16527 + - uid: 19301 components: - type: Transform - pos: 69.5,55.5 - parent: 2 - - uid: 2700 + pos: -19.5,23.5 + parent: 16527 + - uid: 19302 components: - type: Transform - pos: 68.5,55.5 - parent: 2 - - uid: 2701 + pos: -19.5,24.5 + parent: 16527 + - uid: 19303 components: - type: Transform - pos: 73.5,55.5 - parent: 2 - - uid: 2702 + pos: 1.5,39.5 + parent: 16527 + - uid: 19304 components: - type: Transform - pos: 74.5,55.5 - parent: 2 - - uid: 2703 + pos: 0.5,39.5 + parent: 16527 + - uid: 19305 components: - type: Transform - pos: 75.5,55.5 - parent: 2 - - uid: 2704 + pos: -0.5,59.5 + parent: 16527 + - uid: 19306 components: - type: Transform - pos: 76.5,55.5 - parent: 2 - - uid: 2705 + pos: 1.5,59.5 + parent: 16527 + - uid: 19307 components: - type: Transform - pos: 77.5,55.5 - parent: 2 - - uid: 2706 + pos: -5.5,37.5 + parent: 16527 + - uid: 19308 components: - type: Transform - pos: 78.5,55.5 - parent: 2 - - uid: 2707 + pos: 6.5,37.5 + parent: 16527 + - uid: 19309 components: - type: Transform - pos: 79.5,55.5 - parent: 2 - - uid: 2708 + pos: 7.5,77.5 + parent: 16527 + - uid: 19310 components: - type: Transform - pos: 80.5,55.5 - parent: 2 - - uid: 2709 + pos: -1.5,77.5 + parent: 16527 + - uid: 19311 components: - type: Transform - pos: 81.5,55.5 - parent: 2 - - uid: 2710 + pos: 3.5,78.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19312 components: - type: Transform - pos: 82.5,55.5 - parent: 2 - - uid: 2711 + pos: -38.5,39.5 + parent: 16527 + - uid: 19313 components: - type: Transform - pos: 83.5,55.5 - parent: 2 - - uid: 2712 + pos: -37.5,47.5 + parent: 16527 + - uid: 19314 components: - type: Transform - pos: 82.5,56.5 - parent: 2 - - uid: 2713 + pos: -37.5,48.5 + parent: 16527 + - uid: 19315 components: - type: Transform - pos: 82.5,57.5 - parent: 2 - - uid: 2714 + pos: -37.5,49.5 + parent: 16527 + - uid: 19316 components: - type: Transform - pos: 82.5,58.5 - parent: 2 - - uid: 2715 + pos: -42.5,47.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19317 components: - type: Transform - pos: 82.5,59.5 - parent: 2 - - uid: 2716 + pos: -42.5,48.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19318 components: - type: Transform - pos: 82.5,60.5 - parent: 2 - - uid: 2717 + pos: -42.5,49.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19319 components: - type: Transform - pos: 82.5,61.5 - parent: 2 - - uid: 2718 + pos: -53.5,47.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19320 components: - type: Transform - pos: 82.5,62.5 - parent: 2 - - uid: 2719 + pos: -49.5,47.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19321 components: - type: Transform - pos: 82.5,63.5 - parent: 2 - - uid: 2720 + pos: -49.5,48.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19322 components: - type: Transform - pos: 82.5,64.5 - parent: 2 - - uid: 2721 + pos: -49.5,49.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19323 components: - type: Transform - pos: 82.5,65.5 - parent: 2 - - uid: 2722 + pos: -50.5,46.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19324 components: - type: Transform - pos: 81.5,65.5 - parent: 2 - - uid: 2723 + pos: -51.5,46.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19325 components: - type: Transform - pos: 80.5,65.5 - parent: 2 - - uid: 2724 + pos: -52.5,46.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19326 components: - type: Transform - pos: 79.5,65.5 - parent: 2 - - uid: 2725 + pos: -53.5,48.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19327 components: - type: Transform - pos: 78.5,65.5 - parent: 2 - - uid: 2726 + pos: -53.5,49.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19328 components: - type: Transform - pos: 77.5,65.5 - parent: 2 - - uid: 2727 + pos: -52.5,50.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19329 components: - type: Transform - pos: 76.5,65.5 - parent: 2 - - uid: 2728 + pos: -51.5,50.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19330 components: - type: Transform - pos: 75.5,65.5 - parent: 2 - - uid: 2729 + pos: -50.5,50.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 19331 components: - type: Transform - pos: 74.5,65.5 - parent: 2 - - uid: 2730 + pos: 2.5,78.5 + parent: 16527 + missingComponents: + - Damageable +- proto: BlastDoorFrame + entities: + - uid: 19332 components: - type: Transform - pos: 73.5,65.5 - parent: 2 - - uid: 2731 + anchored: True + pos: -0.5,39.5 + parent: 16527 + - uid: 19333 components: - type: Transform - pos: 71.5,65.5 - parent: 2 - - uid: 2732 + anchored: True + pos: 1.5,47.5 + parent: 16527 + - uid: 19334 components: - type: Transform - pos: 70.5,65.5 - parent: 2 - - uid: 2733 + anchored: True + pos: 9.5,10.5 + parent: 16527 + - uid: 19335 components: - type: Transform - pos: 69.5,65.5 - parent: 2 - - uid: 2734 + anchored: True + pos: -8.5,11.5 + parent: 16527 + - uid: 19336 components: - type: Transform - pos: 68.5,65.5 - parent: 2 - - uid: 2735 + anchored: True + pos: 9.5,9.5 + parent: 16527 + - uid: 19337 components: - type: Transform - pos: 68.5,64.5 - parent: 2 - - uid: 2736 + anchored: True + pos: -38.5,42.5 + parent: 16527 +- proto: BlastDoorOpen + entities: + - uid: 287 components: - type: Transform - pos: 68.5,63.5 + pos: 30.5,40.5 parent: 2 - - uid: 2737 + - uid: 880 components: - type: Transform - pos: 68.5,62.5 + pos: 32.5,48.5 parent: 2 - - uid: 2738 + - uid: 996 components: - type: Transform - pos: 68.5,61.5 + pos: 17.5,25.5 parent: 2 - - uid: 2739 + - uid: 997 components: - type: Transform - pos: 68.5,60.5 + pos: 17.5,26.5 parent: 2 - - uid: 2740 + - uid: 998 components: - type: Transform - pos: 68.5,59.5 + pos: 34.5,26.5 parent: 2 - - uid: 2741 + - uid: 999 components: - type: Transform - pos: 69.5,61.5 + pos: 34.5,25.5 parent: 2 - - uid: 2742 + - uid: 1000 components: - type: Transform - pos: 70.5,61.5 + pos: 34.5,24.5 parent: 2 - - uid: 2743 + - uid: 1001 components: - type: Transform - pos: 71.5,61.5 + pos: 14.5,26.5 parent: 2 - - uid: 2744 + - uid: 1002 components: - type: Transform - pos: 73.5,60.5 + pos: 14.5,25.5 parent: 2 - - uid: 2745 + - uid: 1003 components: - type: Transform - pos: 74.5,60.5 + pos: 14.5,24.5 parent: 2 - - uid: 2746 + - uid: 1004 components: - type: Transform - pos: 75.5,60.5 + pos: 17.5,24.5 parent: 2 - - uid: 2747 + - uid: 1005 components: - type: Transform - pos: 76.5,60.5 + pos: 31.5,24.5 parent: 2 - - uid: 2748 + - uid: 1006 components: - type: Transform - pos: 77.5,60.5 + pos: 31.5,26.5 parent: 2 - - uid: 2749 + - uid: 1007 components: - type: Transform - pos: 78.5,60.5 + pos: 31.5,25.5 parent: 2 - - uid: 2750 + - uid: 19338 components: - type: Transform - pos: 79.5,60.5 - parent: 2 - - uid: 2751 + pos: 8.5,35.5 + parent: 16527 + - uid: 21771 components: - type: Transform - pos: 80.5,60.5 + pos: 14.5,-38.5 parent: 2 - - uid: 2752 + - uid: 21772 components: - type: Transform - pos: 81.5,60.5 + pos: 22.5,-31.5 parent: 2 - - uid: 2753 +- proto: BlockGameArcade + entities: + - uid: 1008 components: - type: Transform - pos: 83.5,63.5 + pos: 81.5,11.5 parent: 2 - - uid: 2754 +- proto: BluespaceBeaker + entities: + - uid: 19339 components: - type: Transform - pos: 84.5,63.5 - parent: 2 - - uid: 2755 + pos: -35.294586,27.528015 + parent: 16527 +- proto: BodyBagFolded + entities: + - uid: 19340 components: - type: Transform - pos: 85.5,63.5 - parent: 2 - - uid: 2756 + pos: -2.2380981,-2.2992554 + parent: 16527 + - uid: 19341 components: - type: Transform - pos: 86.5,63.5 - parent: 2 - - uid: 2757 + pos: -1.4412079,-2.8618164 + parent: 16527 +- proto: Bonfire + entities: + - uid: 1009 components: - type: Transform - pos: 87.5,63.5 + pos: 91.5,17.5 parent: 2 - - uid: 2758 +- proto: BookBase + entities: + - uid: 1010 components: + - type: MetaData + desc: Сборник стихов и гимнов дротткветт под названием "Поэзия скальдов" за авторством Хьюго Дракенберга. + name: сборник стихов "Поэзия скальдов" - type: Transform - pos: 87.5,57.5 + pos: 40.63494,29.37681 parent: 2 - - uid: 2759 - components: - - type: Transform - pos: 86.5,57.5 - parent: 2 - - uid: 2760 + - type: Paper + content: >- + [head=3] Сборник гимнов и стихов дротткветт + "Поэзия скальдов" + Автор: Хьюго Дракенберг[/head] + + + [head=3] Львы Рагнара[/head] + + О, выслушайте песнь мою, + + О воины, львы Рагнара, + + Кто с честью несет брань свою, + + Тот достойнее солнца света. + + + Звучит мощно древняя мелодия, + + Которой Один наделил нас, + + Стойте крепко, вступайте в натиск, + + Ломайте врагов в смертельном бою. + + + И вот на поле, среди крови, + + Один с окровавленным мечом, + + Он стоит смело, презрев смерть, + + За Рагнара он в бой идет. + + + И силней врагов, тот кто мстит, + + Он не будет сдаваться, до тех пор, + + Пока не услышит последний крик, + + Пока не совершит последний удар. + + + Этот гимн мы поем всей душой, + + Среди огня и дождя боя, + + Мы не побоимся даже смерти, + + Ведь мы - воины, львы Рагнара! + + + [head=3] Драконобой[/head] + + Король драконов, над миром правит он, + + Сердце его полно ярости и огня. + + С боевым кличем встреть его на поле брани, + + Герой - ты ли его победишь или падёшь. + + + Сила дракона в душе каждого героя, + + Его песнь разносится на ветру вдали. + + Но воин жив, пока сердце бьется в груди, + + Он не уступит, победит и жизнь отдаст за свободу. + + + Король драконов - враг навсегда с нами, + + Герой, иди в бой - он знает тебя в лицо. + + Побеждай его в смертельной схватке, + + Чтобы мир был свободен, а зло было искоренено. + + + Слава тебе, герой, первому в бою, + + Поднимай свой клинок на вершину горы. + + Пусть песня драконов за тобой звучит, + + И спокойствие к тебе навсегда приходит. + + + [head=3] Мифоходцы[/head] + + Средь древних гор, где бьется молний зарево, + + Зовут нас в битву трубы веков и гром, + + Там где молвят легенды голосом героев, + + Скальд воспевает доблесть сердец мужественных. + + + Тьма разрывается при свете наших клинков, + + На поле сражений четко звучит бой копий - колесниц зарниц. + + Река героических древних обнимает нашу плоть, + + Веселие грома, оно блестит рядом с нами в борьбе. + + + О, славься, эпоха волшебных преданий! + + Где миры сфер сталкиваются, небес колыбель, + + Орлы величаво парят средь бури, дурманя крылами, + + Что дарят нам поэзию бескрылых подвигов и огонь звезд. + + + Оружие светлое отбрасывает мрак, + + Рука воина становится крепче благодаря стремлению, + + Глаза мудрых во мгле ищут истину надежды, + + Вожаки, наш путь, зажигая свет просветления. + + + Твердь гудит от воющих зверей мощных, + + Духи времен, они помогают в жестоком поединке, + + Омега зари, их взор призывает нас в последний бой, + + Ни одного костра не погаснет, пока дух наш не иссякнет. + + + О, славься, эпоха волшебных преданий! + + Где миры сфер сталкиваются, небес колыбель, + + Орлы величаво парят средь бури, дурманя крылами, + + Что дарят нам поэзию бескрылых подвигов и огонь звезд. + + + Сферы искрами света заполняют небосвод, + + Волшебство богов претворяет нас в памятник истине, + + Книга историй, переплетенных вожделением и любовью пропитана, + + Наши души пылают в ней, и создают их вечную магию. + + + О, славься, эпоха волшебных преданий! + + Где миры сфер сталкиваются, небес колыбель, + + Орлы величаво парят средь бури, дурманя крылами, + + Что дарят нам поэзию бескрылых подвигов и огонь звезд. + + + + [head=3] Стремление[/head] + + Взлетает птица в небеса высоко, + + Крылья у неё словно золото блестят, + + Она мчится, не останавливаясь ни на миг, + + Никому не подчиняясь и не смотря назад. + + + Она свободна, как ветер на равнине, + + Как капли дождя на лепестках цветов, + + Её глаза полны радости и света, + + Она живёт каждый день, словно последний в жизни. + + + Если ты смеешься, значит ты живёшь, + + Если ты любишь, значит есть смысл в твоей жизни, + + Не смотря на всё, что тебе придётся пройти, + + Помни, что всегда рядом свет открывается душе. + + + + [head=3] Мечты[/head] + + Скользящие мечты в голове моей + + Ловятся за хвост, словно рыбьи затейники + + Они танцуют, кружатся в экстазе + + И тонут в гуле затаившейся пустоты + + + Но затем они вновь появляются + + Предвкушая победу над реальностью + + И я забываюсь, словно во сне + + Волшебство слов их поражает меня + + + Но затем приходит утро, и все развеивается + + Мечты исчезают, растворяясь в воздухе + + И жизнь продолжает свой путь + + Оставляя на сердце лишь небольшой след + + + + [head=3] Воспоминания[/head] + + Северный ветер веет сильно, + + Ледяные капли стучат в окно. + + Я вспоминаю давний поход, + + Когда с друзьями в лес уходил. + + + Тогда мы бились за каждый шажок, + + Мужество наше рвало преграды. + + Мы были героями, свинцовыми ребятами, + + И даже боги обращали на нас внимание. + + + Сейчас я сижу один, без сил и без молва, + + Только мысль моя уносится вдаль, + + Где солнце осталось навсегда, + + И не знает, что такое лед и сталь. + + + Сколько времени потрачено на бег, + + Сколько сил потрачено на бой, + + Теперь я знаю, что это все не для меня, + + И я готов покинуть все это навсегда. + + + Но я не оставлю свою родину, + + Ни горы, ни озера, ни рождественскую вьюгу, + + И если я умру сегодня на небе, + + То я стану частью великой древности. + + + + [head=3] О, скальды![/head] + + О, скальды былых времен, + + Когда герои грозились мечом, + + Который мерцал в солнечных лучах, + + Обагряя землю кровавым потоком. + + + Идут битвы, кричат щиты, + + Топчется земля стопами стальными, + + Но герои не знают страха, + + Свято веря в свои силы. + + + О, скальды, пусть тучи сгущаются, + + И мраком на землю сажая тень, + + Но герои все равно на подступах, + + В тысячу грудей звучит громкий клич "Берегись, враг!" + + + И хоть бой не разрешится быстро, + + Их душа тверда как сталь, + + И в битве этих кровавых мгновений + + На веки запечатлится их дух и храбрость на все времена! + - uid: 1011 components: - type: Transform - pos: 85.5,57.5 + pos: 7.356848,37.607597 parent: 2 - - uid: 2761 + - uid: 1012 components: - type: Transform - pos: 84.5,57.5 + pos: 7.485269,37.552563 parent: 2 - - uid: 2762 + - uid: 1013 components: - type: Transform - pos: 83.5,57.5 + pos: 60.528152,61.5301 parent: 2 - - uid: 2763 + - uid: 1014 components: - type: Transform - pos: 82.5,54.5 + pos: 60.34469,61.56679 parent: 2 - - uid: 2764 +- proto: BookBusido + entities: + - uid: 19342 components: - type: Transform - pos: 82.5,53.5 - parent: 2 - - uid: 2765 + pos: -30.333801,42.54669 + parent: 16527 +- proto: BookChemicalCompendium + entities: + - uid: 18623 components: - type: Transform - pos: 82.5,52.5 + pos: 40.528683,53.30423 parent: 2 - - uid: 2766 +- proto: BookMedicalReferenceBook + entities: + - uid: 1015 components: - type: Transform - pos: 76.5,56.5 + pos: 57.260647,4.542655 parent: 2 - - uid: 2767 + - uid: 1016 components: - type: Transform - pos: 76.5,57.5 + pos: 57.698147,4.49578 parent: 2 - - uid: 2768 +- proto: BookNarsieLegend + entities: + - uid: 1017 components: - type: Transform - pos: 76.5,58.5 + pos: 25.563324,57.523094 parent: 2 - - uid: 2769 +- proto: BookRandomStory + entities: + - uid: 1019 components: - type: Transform - pos: 76.5,59.5 - parent: 2 - - uid: 2770 + parent: 1018 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1022 components: - type: Transform - pos: 76.5,61.5 - parent: 2 - - uid: 2771 + parent: 1021 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BookScientistsGuidebook + entities: + - uid: 22008 components: - type: Transform - pos: 76.5,62.5 + pos: 25.510979,8.551438 parent: 2 - - uid: 2772 +- proto: Bookshelf + entities: + - uid: 19343 components: - type: Transform - pos: 76.5,63.5 - parent: 2 - - uid: 2773 + pos: 13.5,-8.5 + parent: 16527 + - uid: 19344 components: - type: Transform - pos: 76.5,64.5 - parent: 2 - - uid: 2774 + pos: -10.5,29.5 + parent: 16527 +- proto: BookshelfFilled + entities: + - uid: 1028 components: - type: Transform - pos: 67.5,57.5 + pos: 7.5,36.5 parent: 2 - - uid: 2775 + - uid: 1029 components: - type: Transform - pos: 66.5,57.5 + pos: 62.5,59.5 parent: 2 - - uid: 2776 + - uid: 1030 components: - type: Transform - pos: 65.5,57.5 + pos: 64.5,55.5 parent: 2 - - uid: 2777 + - uid: 1031 components: - type: Transform - pos: 64.5,57.5 + pos: 63.5,55.5 parent: 2 - - uid: 2778 + - uid: 1032 components: - type: Transform - pos: 63.5,57.5 + pos: 62.5,55.5 parent: 2 - - uid: 2779 + - uid: 1033 components: - type: Transform - pos: 62.5,57.5 + pos: 64.5,59.5 parent: 2 - - uid: 2780 + - uid: 1034 components: - type: Transform - pos: 62.5,56.5 + pos: 63.5,59.5 parent: 2 - - uid: 2781 + - uid: 1035 components: - type: Transform - pos: 83.5,48.5 + pos: 53.5,41.5 parent: 2 - - uid: 2782 +- proto: BookSpaceLaw + entities: + - uid: 22005 components: - type: Transform - pos: 84.5,48.5 + pos: 55.742683,21.640394 parent: 2 - - uid: 2783 + - uid: 22009 components: - type: Transform - pos: 85.5,48.5 + pos: 25.341877,25.460508 parent: 2 - - uid: 2784 +- proto: BookTemple + entities: + - uid: 1036 components: - type: Transform - pos: 86.5,48.5 + pos: 80.485855,32.601913 parent: 2 - - uid: 2785 +- proto: BoozeDispenser + entities: + - uid: 265 components: - type: Transform - pos: 83.5,41.5 + pos: 19.5,55.5 parent: 2 - - uid: 2786 + - uid: 1038 components: - type: Transform - pos: 84.5,41.5 + rot: 3.141592653589793 rad + pos: 29.5,63.5 parent: 2 - - uid: 2787 + - uid: 1039 components: - type: Transform - pos: 85.5,41.5 + rot: 3.141592653589793 rad + pos: 40.5,40.5 parent: 2 - - uid: 2788 +- proto: BoozeDispenserEmpty + entities: + - uid: 3136 components: - type: Transform - pos: 71.5,41.5 + rot: -1.5707963267948966 rad + pos: 77.5,3.5 parent: 2 - - uid: 2789 + - uid: 19345 components: - type: Transform - pos: 72.5,41.5 - parent: 2 - - uid: 2790 + rot: -1.5707963267948966 rad + pos: 35.5,52.5 + parent: 16527 +- proto: BorgCharger + entities: + - uid: 1040 components: - type: Transform - pos: 73.5,41.5 + pos: 30.5,-2.5 parent: 2 - - uid: 2791 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1041 components: - type: Transform - pos: 74.5,41.5 + rot: -1.5707963267948966 rad + pos: 49.5,57.5 parent: 2 - - uid: 2792 + - uid: 2548 components: - type: Transform - pos: 75.5,41.5 + pos: 26.5,-36.5 parent: 2 - - uid: 2793 + - uid: 3135 components: - type: Transform - pos: 76.5,41.5 + pos: 18.5,-36.5 parent: 2 - - uid: 2794 +- proto: BorgModuleGPS + entities: + - uid: 19346 components: - type: Transform - pos: 77.5,41.5 - parent: 2 - - uid: 2795 + pos: -23.487366,43.331177 + parent: 16527 +- proto: BorgModuleMining + entities: + - uid: 19347 components: - type: Transform - pos: 79.5,41.5 - parent: 2 - - uid: 2796 + pos: -3.4789386,8.55915 + parent: 16527 +- proto: BorgModuleTool + entities: + - uid: 1045 components: - type: Transform - pos: 78.5,41.5 + pos: 67.45607,37.601162 parent: 2 - - uid: 2797 +- proto: BoxBeaker + entities: + - uid: 21567 components: - type: Transform - pos: 75.5,42.5 + rot: 1.5707963267948966 rad + pos: 35.288635,48.269547 parent: 2 - - uid: 2798 + - uid: 21613 components: - type: Transform - pos: 75.5,43.5 + pos: 26.490738,55.088478 parent: 2 - - uid: 2799 +- proto: BoxBeanbag + entities: + - uid: 1047 components: - type: Transform - pos: 74.5,43.5 - parent: 2 - - uid: 2800 + parent: 1046 + - type: Physics + canCollide: False +- proto: BoxBodyBag + entities: + - uid: 1055 components: - type: Transform - pos: 73.5,43.5 + pos: 55.60759,6.605047 parent: 2 - - uid: 2801 + - uid: 1056 components: - type: Transform - pos: 73.5,44.5 + pos: 62.46805,24.64373 parent: 2 - - uid: 2802 + - uid: 22478 components: - type: Transform - pos: 73.5,45.5 + pos: 24.607885,-8.656851 parent: 2 - - uid: 2803 + - uid: 22479 components: - type: Transform - pos: 73.5,46.5 + pos: 38.184242,-1.6961863 parent: 2 - - uid: 2804 + - uid: 22480 components: - type: Transform - pos: 73.5,47.5 + pos: 38.746742,-1.6649363 parent: 2 - - uid: 2805 + - uid: 22481 components: - type: Transform - pos: 73.5,48.5 + pos: 55.31863,6.33302 parent: 2 - - uid: 2806 +- proto: BoxCartridgeCap + entities: + - uid: 1023 components: - type: Transform - pos: 73.5,49.5 - parent: 2 - - uid: 2807 + parent: 1021 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxCleanerGrenades + entities: + - uid: 1058 components: - type: Transform - pos: 73.5,50.5 - parent: 2 - - uid: 2808 + parent: 1057 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22476 components: - type: Transform - pos: 72.5,45.5 - parent: 2 - - uid: 2809 + parent: 6182 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderBase + entities: + - uid: 1068 components: - type: Transform - pos: 71.5,45.5 + pos: 59.531593,58.62728 parent: 2 - - uid: 2810 + - uid: 1069 components: - type: Transform - pos: 74.5,47.5 + pos: 59.549942,56.535847 parent: 2 - - uid: 2811 +- proto: BoxFolderBlack + entities: + - uid: 1070 components: + - type: MetaData + name: папка с грифом секретности - type: Transform - pos: 75.5,47.5 + pos: 7.5148277,28.681255 parent: 2 - - uid: 2812 + - type: Storage + storedItems: + 1071: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1071 + - uid: 19348 components: - type: Transform - pos: 76.5,47.5 - parent: 2 - - uid: 2813 + rot: -1.5707963267948966 rad + pos: 22.327658,34.987534 + parent: 16527 + - uid: 19349 components: - type: Transform - pos: 77.5,47.5 - parent: 2 - - uid: 2814 + pos: 19.483553,31.872313 + parent: 16527 + - uid: 19350 components: - type: Transform - pos: 77.5,48.5 - parent: 2 - - uid: 2815 + rot: 1.5707963267948966 rad + pos: 1.493454,75.61713 + parent: 16527 + - uid: 19351 components: - type: Transform - pos: 77.5,49.5 - parent: 2 - - uid: 2816 + rot: 1.5707963267948966 rad + pos: 1.3996735,75.24213 + parent: 16527 +- proto: BoxFolderBlue + entities: + - uid: 1072 components: - type: Transform - pos: 77.5,50.5 + pos: 28.40281,30.61314 parent: 2 - - uid: 2817 + - uid: 1073 components: - type: Transform - pos: 77.5,46.5 + pos: 24.393147,24.674196 parent: 2 - - uid: 2818 + - uid: 1074 components: - type: Transform - pos: 77.5,45.5 + pos: 20.517431,16.478916 parent: 2 - - uid: 2819 + - uid: 1075 components: - type: Transform - pos: 77.5,44.5 + pos: 17.476597,5.460553 parent: 2 - - uid: 2820 + - uid: 1076 components: - type: Transform - pos: 43.5,48.5 + pos: 18.718304,20.340763 parent: 2 - - uid: 2821 + - uid: 19352 components: - type: Transform - pos: 3.5,18.5 - parent: 2 - - uid: 2822 + rot: -1.5707963267948966 rad + pos: -19.458359,55.01349 + parent: 16527 +- proto: BoxFolderClipboard + entities: + - uid: 1077 components: - type: Transform - pos: 33.5,83.5 + rot: -1.5707963267948966 rad + pos: -1.4697795,32.428143 parent: 2 - - uid: 2823 + - uid: 1078 components: - type: Transform - pos: 31.5,83.5 + pos: 7.412698,2.8673413 parent: 2 - - uid: 2824 + - uid: 1079 components: - type: Transform - pos: 30.5,83.5 + pos: 21.443787,-6.437905 parent: 2 - - uid: 2825 + - uid: 1080 components: - type: Transform - pos: 29.5,83.5 + pos: 16.48936,21.491587 parent: 2 - - uid: 2826 + - uid: 1081 components: - type: Transform - pos: 28.5,83.5 + pos: 40.50558,29.55119 parent: 2 - - uid: 2827 + - uid: 1082 components: - type: Transform - pos: 27.5,83.5 + pos: 65.582985,63.683205 parent: 2 - - uid: 2828 + - uid: 1083 components: - type: Transform - pos: 26.5,83.5 + pos: 7.4471793,20.60081 parent: 2 - - uid: 2829 + - uid: 1084 components: - type: Transform - pos: 33.5,81.5 + pos: 8.547624,9.547516 parent: 2 - - uid: 2830 + - uid: 1085 components: - type: Transform - pos: 32.5,81.5 + pos: 42.578243,68.72275 parent: 2 - - uid: 2831 + - uid: 1086 components: - type: Transform - pos: 31.5,81.5 + pos: 24.533772,24.705446 parent: 2 - - uid: 2832 + - uid: 19353 components: - type: Transform - pos: 30.5,81.5 - parent: 2 - - uid: 2833 + pos: 15.756577,33.682777 + parent: 16527 + - uid: 19354 components: - type: Transform - pos: 29.5,81.5 - parent: 2 - - uid: 2834 + rot: -1.5707963267948966 rad + pos: 22.530783,34.59691 + parent: 16527 +- proto: BoxFolderGreen + entities: + - uid: 1087 components: - type: Transform - pos: 28.5,81.5 + pos: 18.24131,20.365225 parent: 2 - - uid: 2835 +- proto: BoxFolderRed + entities: + - uid: 1088 components: - type: Transform - pos: 27.5,81.5 + pos: 51.598156,31.609776 parent: 2 - - uid: 2836 + - uid: 1089 components: - type: Transform - pos: 26.5,81.5 + pos: 7.4106236,21.75367 parent: 2 - - uid: 2837 + - uid: 1090 components: - type: Transform - pos: 26.5,79.5 + pos: 7.575737,21.66194 parent: 2 - - uid: 2838 + - uid: 1091 components: - type: Transform - pos: 27.5,79.5 + pos: 53.961433,21.536226 parent: 2 - - uid: 2839 + - uid: 19355 components: - type: Transform - pos: 28.5,79.5 - parent: 2 - - uid: 2840 + rot: 3.141592653589793 rad + pos: 2.6809387,74.6015 + parent: 16527 +- proto: BoxFolderWhite + entities: + - uid: 1093 components: - type: Transform - pos: 29.5,79.5 + pos: 47.475967,9.561237 parent: 2 - - uid: 2841 + - uid: 1094 components: - type: Transform - pos: 30.5,79.5 + pos: 68.3371,10.698311 parent: 2 - - uid: 2842 +- proto: BoxFolderYellow + entities: + - uid: 1095 components: - type: Transform - pos: 31.5,79.5 + pos: 7.462741,11.53508 parent: 2 - - uid: 2843 + - uid: 1096 components: - type: Transform - pos: 32.5,79.5 + pos: 1.5635915,3.7334058 parent: 2 - - uid: 2844 + - uid: 1097 components: - type: Transform - pos: 33.5,79.5 + pos: 37.560665,69.60916 parent: 2 - - uid: 2845 +- proto: BoxingBell + entities: + - uid: 6606 components: - type: Transform - pos: 34.5,79.5 + rot: 1.5707963267948966 rad + pos: -0.5,29.5 parent: 2 - - uid: 2846 +- proto: BoxLatexGloves + entities: + - uid: 1098 components: - type: Transform - pos: 34.5,78.5 + pos: 52.51747,-4.365857 parent: 2 - - uid: 2847 +- proto: BoxLightMixed + entities: + - uid: 1099 components: - type: Transform - pos: 34.5,77.5 + pos: 67.4525,37.568535 parent: 2 - - uid: 2848 +- proto: BoxMagazineLightRifle + entities: + - uid: 19356 components: - type: Transform - pos: 34.5,76.5 - parent: 2 - - uid: 2849 + pos: -46.595688,49.57794 + parent: 16527 +- proto: BoxMesonScanners + entities: + - uid: 1100 components: - type: Transform - pos: 33.5,77.5 + pos: 43.38193,62.120964 parent: 2 - - uid: 2850 +- proto: BoxMouthSwab + entities: + - uid: 21562 components: - type: Transform - pos: 32.5,77.5 + pos: 35.45112,47.524704 parent: 2 - - uid: 2851 +- proto: BoxMRE + entities: + - uid: 19357 components: - type: Transform - pos: 31.5,77.5 - parent: 2 - - uid: 2852 + pos: 4.4424286,62.947327 + parent: 16527 + - uid: 19358 components: - type: Transform - pos: 30.5,77.5 - parent: 2 - - uid: 2853 + pos: 0.47364807,64.19733 + parent: 16527 +- proto: BoxPerformer + entities: + - uid: 22488 components: - type: Transform - pos: 29.5,77.5 + pos: 33.530327,-2.3209026 parent: 2 - - uid: 2854 +- proto: BoxPillCanister + entities: + - uid: 22486 components: - type: Transform - pos: 28.5,77.5 + pos: 58.73327,1.5980728 parent: 2 - - uid: 2855 + - uid: 22487 components: - type: Transform - pos: 27.5,77.5 + pos: 58.717644,2.4886978 parent: 2 - - uid: 2856 +- proto: BoxSechud + entities: + - uid: 22477 components: - type: Transform - pos: 26.5,77.5 + pos: 57.866272,18.664032 parent: 2 - - uid: 2857 +- proto: BoxShellTranquilizer + entities: + - uid: 1048 components: - type: Transform - pos: 26.5,75.5 - parent: 2 - - uid: 2858 + parent: 1046 + - type: Physics + canCollide: False +- proto: BoxSterileMask + entities: + - uid: 1101 components: - type: Transform - pos: 27.5,75.5 + pos: 20.5485,0.594677 parent: 2 - - uid: 2859 + - uid: 1102 components: - type: Transform - pos: 28.5,75.5 + pos: 52.470596,-4.803357 parent: 2 - - uid: 2860 +- proto: BoxSurvival + entities: + - uid: 19359 components: - type: Transform - pos: 29.5,75.5 - parent: 2 - - uid: 2861 + rot: 0.34906585039886584 rad + pos: 9.774109,52.36029 + parent: 16527 +- proto: BoxSyringe + entities: + - uid: 1103 components: - type: Transform - pos: 30.5,75.5 + pos: 44.675873,8.621145 parent: 2 - - uid: 2862 + - uid: 1104 components: - type: Transform - pos: 31.5,75.5 + pos: 57.566856,-3.30048 parent: 2 - - uid: 2863 + - uid: 21555 components: - type: Transform - pos: 32.5,75.5 + pos: 35.339718,49.67768 parent: 2 - - uid: 2864 +- proto: BoxTrashbag + entities: + - uid: 1105 components: - type: Transform - pos: 33.5,75.5 + pos: 3.5887227,24.527626 parent: 2 - - uid: 2865 +- proto: BrbSign + entities: + - uid: 1106 components: - type: Transform - pos: 26.5,73.5 + pos: 16.58672,21.520056 parent: 2 - - uid: 2866 +- proto: BriefcaseBrownFilled + entities: + - uid: 1107 components: - type: Transform - pos: 27.5,73.5 + pos: 9.49619,23.804527 parent: 2 - - uid: 2867 + - uid: 1108 components: - type: Transform - pos: 28.5,73.5 + pos: 9.422807,23.529339 parent: 2 - - uid: 2868 +- proto: BrigTimer + entities: + - uid: 1109 components: - type: Transform - pos: 29.5,73.5 + rot: 3.141592653589793 rad + pos: 45.5,18.5 parent: 2 - - uid: 2869 + - type: DeviceLinkSource + linkedPorts: + 389: + - Timer: Open + - Timer: AutoClose + - uid: 1110 components: - type: Transform - pos: 30.5,73.5 + rot: 3.141592653589793 rad + pos: 41.5,18.5 parent: 2 - - uid: 2870 + - type: DeviceLinkSource + linkedPorts: + 388: + - Timer: AutoClose + - Timer: Open + - uid: 1111 components: - type: Transform - pos: 31.5,73.5 + rot: 3.141592653589793 rad + pos: 41.5,21.5 parent: 2 - - uid: 2871 + - type: DeviceLinkSource + linkedPorts: + 392: + - Timer: AutoClose + - Timer: Open + - uid: 1112 components: - type: Transform - pos: 32.5,73.5 + pos: 41.5,24.5 parent: 2 - - uid: 2872 + - type: DeviceLinkSource + linkedPorts: + 390: + - Timer: AutoClose + - Timer: Open + - uid: 1113 components: - type: Transform - pos: 33.5,73.5 + rot: 3.141592653589793 rad + pos: 45.5,21.5 parent: 2 - - uid: 2873 + - type: DeviceLinkSource + linkedPorts: + 391: + - Timer: AutoClose + - Timer: Open + - uid: 1114 components: - type: Transform - pos: 34.5,73.5 + rot: -1.5707963267948966 rad + pos: 79.5,7.5 parent: 2 - - uid: 2874 + - uid: 1115 components: - type: Transform - pos: 34.5,74.5 + rot: -1.5707963267948966 rad + pos: 82.5,7.5 parent: 2 - - uid: 2875 + - uid: 19360 components: + - type: MetaData + name: таймер - type: Transform - pos: 6.5,28.5 - parent: 2 - - uid: 2876 + pos: 2.5,7.5 + parent: 16527 + - type: SignalTimer + label: wait + delay: 6 + - uid: 19361 components: + - type: MetaData + name: таймер - type: Transform - pos: 7.5,28.5 - parent: 2 - - uid: 2877 + pos: 4.5,4.5 + parent: 16527 + - type: SignalTimer + label: wait + delay: 6 +- proto: BrokenBottle + entities: + - uid: 1116 components: - type: Transform - pos: 9.5,22.5 + pos: 26.469122,-10.71988 parent: 2 - - uid: 2878 +- proto: BrokenEnergyShield + entities: + - uid: 10409 components: - type: Transform - pos: 8.5,22.5 + pos: 12.973543,58.14522 parent: 2 - - uid: 2879 + - uid: 19362 components: - type: Transform - pos: 7.5,22.5 - parent: 2 - - uid: 2880 + pos: 11.918396,8.819647 + parent: 16527 + - uid: 19363 components: - type: Transform - pos: 17.5,25.5 - parent: 2 - - uid: 2881 + pos: 12.790003,7.8718934 + parent: 16527 + - uid: 19364 components: - type: Transform - pos: 16.5,25.5 - parent: 2 - - uid: 2882 + pos: 11.618128,10.840643 + parent: 16527 +- proto: Brutepack + entities: + - uid: 19365 components: - type: Transform - pos: 79.5,29.5 - parent: 2 - - uid: 2883 + pos: 17.719212,31.52318 + parent: 16527 +- proto: Brutepack1 + entities: + - uid: 19366 components: - type: Transform - pos: 79.5,28.5 - parent: 2 - - uid: 2884 + rot: 3.141592653589793 rad + pos: 11.490046,36.642727 + parent: 16527 + - uid: 19367 components: - type: Transform - pos: 79.5,27.5 - parent: 2 - - uid: 2885 + pos: 15.469213,33.700264 + parent: 16527 +- proto: Brutepack10Lingering + entities: + - uid: 19368 components: - type: Transform - pos: 79.5,26.5 - parent: 2 - - uid: 2886 + pos: -55.402832,43.763184 + parent: 16527 +- proto: Bucket + entities: + - uid: 1117 components: - type: Transform - pos: 80.5,28.5 + pos: 68.56874,47.504078 parent: 2 - - uid: 2887 + - uid: 1118 components: - type: Transform - pos: 81.5,28.5 + rot: 1.5707963267948966 rad + pos: 67.537544,49.471333 parent: 2 - - uid: 2888 + - uid: 1119 components: - type: Transform - pos: 79.5,30.5 + pos: 59.343822,38.159485 parent: 2 - - uid: 2889 + - uid: 1120 components: - type: Transform - pos: 79.5,31.5 + pos: 58.081383,41.304893 parent: 2 - - uid: 2890 + - uid: 1121 components: - type: Transform - pos: 79.5,32.5 + pos: 56.603107,79.41263 parent: 2 - - uid: 2891 + - uid: 18655 components: - type: Transform - pos: 79.5,33.5 + pos: 37.542587,48.78989 parent: 2 - - uid: 2892 + - uid: 19369 components: - type: Transform - pos: 79.5,34.5 - parent: 2 - - uid: 2893 + pos: 11.308048,28.964308 + parent: 16527 + - uid: 19370 components: - type: Transform - pos: 78.5,32.5 - parent: 2 - - uid: 2894 + pos: 11.443771,66.595276 + parent: 16527 + - uid: 19371 components: - type: Transform - pos: 77.5,32.5 - parent: 2 - - uid: 2895 + pos: 11.662567,64.470276 + parent: 16527 + - uid: 19372 components: - type: Transform - pos: 76.5,32.5 - parent: 2 - - uid: 2896 + pos: 12.553131,61.751526 + parent: 16527 + - uid: 19373 components: - type: Transform - pos: 75.5,32.5 - parent: 2 - - uid: 2897 + pos: 10.350067,58.6109 + parent: 16527 + - uid: 19374 components: - type: Transform - pos: 74.5,32.5 - parent: 2 - - uid: 2898 + pos: 12.256271,55.4859 + parent: 16527 + - uid: 19388 components: - type: Transform - pos: 73.5,32.5 + rot: 3.141592653589793 rad + pos: 39.995712,49.555515 parent: 2 - - uid: 2899 + - uid: 19600 components: - type: Transform - pos: 80.5,32.5 + rot: 3.141592653589793 rad + pos: 36.120712,53.72739 parent: 2 - - uid: 2900 +- proto: ButtonFrameCaution + entities: + - uid: 1122 components: - type: Transform - pos: 81.5,32.5 + rot: -1.5707963267948966 rad + pos: 10.5,9.5 parent: 2 - - uid: 2901 + - uid: 19375 components: - type: Transform - pos: 82.5,32.5 - parent: 2 - - uid: 2902 + pos: 1.5,78.5 + parent: 16527 + - uid: 19376 components: - type: Transform - pos: 83.5,32.5 - parent: 2 - - uid: 2903 + rot: 1.5707963267948966 rad + pos: -41.5,45.5 + parent: 16527 + - uid: 19377 components: - type: Transform - pos: 83.5,33.5 - parent: 2 - - uid: 2904 + rot: 1.5707963267948966 rad + pos: -56.5,47.5 + parent: 16527 +- proto: C4 + entities: + - uid: 19379 components: - type: Transform - pos: 83.5,34.5 - parent: 2 - - uid: 2905 + parent: 19378 + - type: Physics + canCollide: False + - uid: 19381 components: - type: Transform - pos: 83.5,31.5 - parent: 2 - - uid: 2906 + parent: 19380 + - type: Physics + canCollide: False + - uid: 19383 components: - type: Transform - pos: 83.5,30.5 - parent: 2 - - uid: 2907 + parent: 19382 + - type: Physics + canCollide: False + - uid: 19385 components: - type: Transform - pos: 83.5,29.5 - parent: 2 - - uid: 2908 + parent: 19384 + - type: Physics + canCollide: False + - uid: 19389 components: - type: Transform - pos: 83.5,28.5 - parent: 2 - - uid: 2909 + parent: 19386 + - type: Physics + canCollide: False + - uid: 19391 components: - type: Transform - pos: 80.5,26.5 - parent: 2 - - uid: 2910 + parent: 19390 + - type: Physics + canCollide: False + - uid: 19393 components: - type: Transform - pos: 81.5,26.5 - parent: 2 - - uid: 2911 + parent: 19392 + - type: Physics + canCollide: False + - uid: 19395 components: - type: Transform - pos: 82.5,26.5 - parent: 2 - - uid: 2912 + parent: 19394 + - type: Physics + canCollide: False + - uid: 19397 components: - type: Transform - pos: 83.5,26.5 - parent: 2 - - uid: 2913 + parent: 19396 + - type: Physics + canCollide: False + - uid: 19399 components: - type: Transform - pos: 84.5,26.5 - parent: 2 - - uid: 2914 + parent: 19398 + - type: Physics + canCollide: False + - uid: 19401 components: - type: Transform - pos: 79.5,29.5 - parent: 2 - - uid: 2915 + parent: 19400 + - type: Physics + canCollide: False + - uid: 19403 components: - type: Transform - pos: 67.5,51.5 - parent: 2 - - uid: 2916 + parent: 19402 + - type: Physics + canCollide: False + - uid: 19405 components: - type: Transform - pos: 67.5,50.5 - parent: 2 - - uid: 2917 + parent: 19404 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19409 components: - type: Transform - pos: 67.5,49.5 - parent: 2 - - uid: 2918 + parent: 19408 + - type: Physics + canCollide: False + - uid: 19411 components: - type: Transform - pos: 67.5,48.5 - parent: 2 - - uid: 2919 + parent: 19410 + - type: Physics + canCollide: False +- proto: CableApcExtension + entities: + - uid: 187 components: - type: Transform - pos: 66.5,48.5 + pos: 19.5,42.5 parent: 2 - - uid: 2920 + - uid: 210 components: - type: Transform - pos: 65.5,48.5 + pos: 27.5,42.5 parent: 2 - - uid: 2921 + - uid: 340 components: - type: Transform - pos: 64.5,48.5 + pos: 51.5,35.5 parent: 2 - - uid: 2922 + - uid: 342 components: - type: Transform - pos: 65.5,58.5 + pos: 41.5,56.5 parent: 2 - - uid: 2923 + - uid: 881 components: - type: Transform - pos: 65.5,59.5 + pos: 19.5,43.5 parent: 2 - - uid: 2924 + - uid: 898 components: - type: Transform - pos: 65.5,60.5 + pos: 64.5,9.5 parent: 2 - - uid: 2925 + - uid: 1044 components: - type: Transform - pos: 65.5,61.5 + pos: 26.5,43.5 parent: 2 - - uid: 2926 + - uid: 1092 components: - type: Transform - pos: 65.5,62.5 + pos: 24.5,47.5 parent: 2 - - uid: 2927 + - uid: 1123 components: - type: Transform - pos: 65.5,63.5 + pos: 46.5,100.5 parent: 2 - - uid: 2928 + - uid: 1124 components: - type: Transform - pos: 63.5,63.5 + pos: 47.5,78.5 parent: 2 - - uid: 2929 + - uid: 1125 components: - type: Transform - pos: 64.5,63.5 + pos: 36.5,1.5 parent: 2 - - uid: 2930 + - uid: 1126 components: - type: Transform - pos: 62.5,63.5 + pos: 15.5,80.5 parent: 2 - - uid: 2931 + - uid: 1127 components: - type: Transform - pos: 60.5,63.5 + pos: 46.5,89.5 parent: 2 - - uid: 2932 + - uid: 1128 components: - type: Transform - pos: 61.5,63.5 + pos: 54.5,44.5 parent: 2 - - uid: 2933 + - uid: 1129 components: - type: Transform - pos: 59.5,63.5 + pos: 52.5,44.5 parent: 2 - - uid: 2934 + - uid: 1130 components: - type: Transform - pos: 59.5,64.5 + pos: 53.5,44.5 parent: 2 - - uid: 2935 + - uid: 1131 components: - type: Transform - pos: 59.5,62.5 + pos: 75.5,6.5 parent: 2 - - uid: 2936 + - uid: 1132 components: - type: Transform - pos: 61.5,56.5 + pos: 46.5,92.5 parent: 2 - - uid: 2937 + - uid: 1133 components: - type: Transform - pos: 60.5,56.5 + pos: 46.5,94.5 parent: 2 - - uid: 2938 + - uid: 1134 components: - type: Transform - pos: 62.5,58.5 + pos: 46.5,90.5 parent: 2 - - uid: 2939 + - uid: 1135 components: - type: Transform - pos: 61.5,58.5 + pos: 46.5,91.5 parent: 2 - - uid: 2940 + - uid: 1136 components: - type: Transform - pos: 60.5,58.5 + pos: 46.5,97.5 parent: 2 - - uid: 2941 + - uid: 1137 components: - type: Transform - pos: 53.5,46.5 + pos: 46.5,95.5 parent: 2 - - uid: 2942 + - uid: 1138 components: - type: Transform - pos: 4.5,17.5 + pos: 46.5,93.5 parent: 2 - - uid: 2943 + - uid: 1139 components: - type: Transform - pos: 3.5,19.5 + pos: 41.5,23.5 parent: 2 - - uid: 2944 + - uid: 1140 components: - type: Transform - pos: 3.5,20.5 + pos: 58.5,40.5 parent: 2 - - uid: 2945 + - uid: 1141 components: - type: Transform - pos: 3.5,21.5 + pos: 48.5,81.5 parent: 2 - - uid: 2946 + - uid: 1142 components: - type: Transform - pos: 3.5,22.5 + pos: 46.5,86.5 parent: 2 - - uid: 2947 + - uid: 1143 components: - type: Transform - pos: 2.5,22.5 + pos: 74.5,3.5 parent: 2 - - uid: 2948 + - uid: 1144 components: - type: Transform - pos: 1.5,22.5 + pos: 53.5,-2.5 parent: 2 - - uid: 2949 + - uid: 1145 components: - type: Transform - pos: 0.5,22.5 + pos: 55.5,-0.5 parent: 2 - - uid: 2950 + - uid: 1146 components: - type: Transform - pos: 1.5,21.5 + pos: 1.5,16.5 parent: 2 - - uid: 2951 + - uid: 1147 components: - type: Transform - pos: 1.5,20.5 + pos: 0.5,16.5 parent: 2 - - uid: 2952 + - uid: 1150 components: - type: Transform - pos: 3.5,23.5 + pos: 8.5,6.5 parent: 2 - - uid: 2953 + - uid: 1151 components: - type: Transform - pos: 3.5,24.5 + pos: 7.5,6.5 parent: 2 - - uid: 2954 + - uid: 1152 components: - type: Transform - pos: 4.5,21.5 + pos: 6.5,6.5 parent: 2 - - uid: 2955 + - uid: 1153 components: - type: Transform - pos: 0.5,20.5 + pos: 5.5,6.5 parent: 2 - - uid: 2956 + - uid: 1154 components: - type: Transform - pos: 57.5,29.5 + pos: 4.5,6.5 parent: 2 - - uid: 2957 + - uid: 1155 components: - type: Transform - pos: 57.5,30.5 + pos: 3.5,6.5 parent: 2 - - uid: 2958 + - uid: 1156 components: - type: Transform - pos: 58.5,29.5 + pos: 2.5,6.5 parent: 2 - - uid: 2959 + - uid: 1157 components: - type: Transform - pos: 59.5,29.5 + pos: 1.5,6.5 parent: 2 - - uid: 2960 + - uid: 1158 components: - type: Transform - pos: 60.5,29.5 + pos: 0.5,6.5 parent: 2 - - uid: 2961 + - uid: 1159 components: - type: Transform - pos: 61.5,29.5 + pos: -0.5,6.5 parent: 2 - - uid: 2962 + - uid: 1160 components: - type: Transform - pos: 61.5,30.5 + pos: 1.5,7.5 parent: 2 - - uid: 2963 + - uid: 1161 components: - type: Transform - pos: 21.5,-15.5 + pos: 1.5,8.5 parent: 2 - - uid: 2964 + - uid: 1162 components: - type: Transform - pos: 20.5,-15.5 + pos: 0.5,8.5 parent: 2 - - uid: 2965 + - uid: 1163 components: - type: Transform - pos: 76.5,3.5 + pos: -0.5,8.5 parent: 2 - - uid: 2966 + - uid: 1164 components: - type: Transform - pos: 45.5,38.5 + pos: -1.5,8.5 parent: 2 - - uid: 2967 + - uid: 1165 components: - type: Transform - pos: 17.5,12.5 + pos: 2.5,8.5 parent: 2 - - uid: 2968 + - uid: 1166 components: - type: Transform - pos: 17.5,11.5 + pos: 3.5,8.5 parent: 2 - - uid: 2969 + - uid: 1167 components: - type: Transform - pos: 17.5,10.5 + pos: 4.5,8.5 parent: 2 - - uid: 2970 + - uid: 1168 components: - type: Transform - pos: 17.5,9.5 + pos: 5.5,8.5 parent: 2 - - uid: 2971 + - uid: 1169 components: - type: Transform - pos: 20.5,-11.5 + pos: 6.5,8.5 parent: 2 - - uid: 2972 + - uid: 1170 components: - type: Transform - pos: 19.5,-12.5 + pos: 7.5,8.5 parent: 2 - - uid: 2973 + - uid: 1171 components: - type: Transform - pos: 18.5,-7.5 + pos: 8.5,8.5 parent: 2 - - uid: 2974 + - uid: 1172 components: - type: Transform - pos: 66.5,43.5 + pos: 9.5,8.5 parent: 2 - - uid: 2975 + - uid: 1173 components: - type: Transform - pos: 54.5,83.5 + pos: 1.5,10.5 parent: 2 - - uid: 2976 + - uid: 1174 components: - type: Transform - pos: 54.5,82.5 + pos: 2.5,10.5 parent: 2 - - uid: 2977 + - uid: 1175 components: - type: Transform - pos: 52.5,83.5 + pos: 3.5,10.5 parent: 2 - - uid: 2978 + - uid: 1176 components: - type: Transform - pos: 51.5,83.5 + pos: 4.5,10.5 parent: 2 - - uid: 2979 + - uid: 1178 components: - type: Transform - pos: 53.5,83.5 + pos: 6.5,10.5 parent: 2 - - uid: 2980 + - uid: 1179 components: - type: Transform - pos: 59.5,49.5 + pos: 7.5,10.5 parent: 2 - - uid: 2981 + - uid: 1180 components: - type: Transform - pos: 59.5,48.5 + pos: 8.5,10.5 parent: 2 - - uid: 2982 + - uid: 1181 components: - type: Transform - pos: 58.5,48.5 + pos: 9.5,10.5 parent: 2 - - uid: 2983 + - uid: 1182 components: - type: Transform - pos: 60.5,48.5 + pos: 7.5,9.5 parent: 2 - - uid: 2984 + - uid: 1183 components: - type: Transform - pos: 61.5,48.5 + pos: 5.5,11.5 parent: 2 - - uid: 2985 + - uid: 1184 components: - type: Transform - pos: 62.5,49.5 + pos: 5.5,9.5 parent: 2 - - uid: 2986 + - uid: 1185 components: - type: Transform - pos: 61.5,49.5 + pos: 5.5,12.5 parent: 2 - - uid: 2987 + - uid: 1186 components: - type: Transform - pos: 67.5,39.5 + pos: 5.5,13.5 parent: 2 - - uid: 2988 + - uid: 1187 components: - type: Transform - pos: 66.5,39.5 + pos: 4.5,13.5 parent: 2 - - uid: 2989 + - uid: 1188 components: - type: Transform - pos: 65.5,39.5 + pos: 3.5,13.5 parent: 2 - - uid: 2990 + - uid: 1189 components: - type: Transform - pos: 66.5,40.5 + pos: 2.5,13.5 parent: 2 - - uid: 2991 + - uid: 1190 components: - type: Transform - pos: 66.5,41.5 + pos: 1.5,13.5 parent: 2 - - uid: 2992 + - uid: 1191 components: - type: Transform - pos: 66.5,38.5 + pos: 0.5,13.5 parent: 2 - - uid: 2993 + - uid: 1192 components: - type: Transform - pos: 66.5,37.5 + pos: 1.5,14.5 parent: 2 - - uid: 2994 + - uid: 1193 components: - type: Transform - pos: 10.5,-9.5 + pos: 1.5,15.5 parent: 2 - - uid: 2995 + - uid: 1194 components: - type: Transform - pos: 66.5,42.5 + pos: 5.5,14.5 parent: 2 - - uid: 2996 + - uid: 1195 components: - type: Transform - pos: 47.5,86.5 + pos: 6.5,14.5 parent: 2 - - uid: 2997 + - uid: 1196 components: - type: Transform - pos: 47.5,85.5 + pos: 7.5,14.5 parent: 2 - - uid: 2998 + - uid: 1197 components: - type: Transform - pos: 47.5,84.5 + pos: 8.5,14.5 parent: 2 - - uid: 2999 + - uid: 1198 components: - type: Transform - pos: 47.5,83.5 + pos: 9.5,14.5 parent: 2 - - uid: 3000 + - uid: 1199 components: - type: Transform - pos: 47.5,82.5 + pos: 8.5,15.5 parent: 2 - - uid: 3001 + - uid: 1200 components: - type: Transform - pos: 47.5,81.5 + pos: 8.5,13.5 parent: 2 - - uid: 3002 + - uid: 1201 components: - type: Transform - pos: -0.5,34.5 + pos: 8.5,12.5 parent: 2 - - uid: 3003 + - uid: 1202 components: - type: Transform - pos: -0.5,35.5 + pos: 4.5,14.5 parent: 2 - - uid: 3004 + - uid: 1203 components: - type: Transform - pos: 0.5,33.5 + pos: 4.5,15.5 parent: 2 - - uid: 3005 + - uid: 1204 components: - type: Transform - pos: -2.5,33.5 + pos: 8.5,3.5 parent: 2 - - uid: 3006 + - uid: 1205 components: - type: Transform - pos: -0.5,33.5 + pos: 7.5,3.5 parent: 2 - - uid: 3007 + - uid: 1206 components: - type: Transform - pos: -1.5,33.5 + pos: 6.5,3.5 parent: 2 - - uid: 3008 + - uid: 1207 components: - type: Transform - pos: -0.5,32.5 + pos: 5.5,3.5 parent: 2 - - uid: 3009 + - uid: 1208 components: - type: Transform - pos: 2.5,27.5 + pos: 4.5,3.5 parent: 2 - - uid: 3010 + - uid: 1209 components: - type: Transform - pos: 1.5,27.5 + pos: 3.5,3.5 parent: 2 - - uid: 3011 + - uid: 1210 components: - type: Transform - pos: 0.5,27.5 + pos: 2.5,3.5 parent: 2 - - uid: 3012 + - uid: 1211 components: - type: Transform - pos: 53.5,71.5 + pos: 1.5,3.5 parent: 2 - - uid: 3013 + - uid: 1212 components: - type: Transform - pos: 53.5,73.5 + pos: 4.5,2.5 parent: 2 - - uid: 3014 + - uid: 1213 components: - type: Transform - pos: 11.5,-4.5 + pos: 4.5,1.5 parent: 2 - - uid: 3015 + - uid: 1214 components: - type: Transform - pos: 75.5,3.5 + pos: 7.5,2.5 parent: 2 - - uid: 3018 + - uid: 1215 components: - type: Transform - pos: 64.5,10.5 + pos: 7.5,1.5 parent: 2 - - uid: 3020 + - uid: 1216 components: - type: Transform - pos: 15.5,67.5 + pos: 1.5,2.5 parent: 2 - - uid: 3021 + - uid: 1217 components: - type: Transform - pos: 72.5,67.5 + pos: 1.5,1.5 parent: 2 - - uid: 3022 + - uid: 1218 components: - type: Transform - pos: 76.5,8.5 + pos: 6.5,4.5 parent: 2 - - uid: 3023 + - uid: 1219 components: - type: Transform - pos: 76.5,7.5 + pos: 43.5,50.5 parent: 2 - - uid: 3024 + - uid: 1220 components: - type: Transform - pos: 76.5,6.5 + pos: 31.5,18.5 parent: 2 - - uid: 3025 + - uid: 1221 components: - type: Transform - pos: 77.5,8.5 + pos: 27.5,23.5 parent: 2 - - uid: 3026 + - uid: 1222 components: - type: Transform - pos: 78.5,8.5 + pos: 27.5,24.5 parent: 2 - - uid: 3027 + - uid: 1223 components: - type: Transform - pos: 11.5,-5.5 + pos: 27.5,25.5 parent: 2 - - uid: 3028 + - uid: 1224 components: - type: Transform - pos: 11.5,-6.5 + pos: 27.5,26.5 parent: 2 - - uid: 3029 + - uid: 1225 components: - type: Transform - pos: 11.5,-2.5 + pos: 27.5,27.5 parent: 2 - - uid: 3030 + - uid: 1226 components: - type: Transform - pos: 46.5,99.5 + pos: 27.5,28.5 parent: 2 - - uid: 3031 + - uid: 1227 components: - type: Transform - pos: 46.5,98.5 + pos: 27.5,29.5 parent: 2 - - uid: 3032 + - uid: 1228 components: - type: Transform - pos: 46.5,96.5 + pos: 27.5,30.5 parent: 2 - - uid: 3034 + - uid: 1229 components: - type: Transform - pos: -3.5,17.5 + pos: 26.5,30.5 parent: 2 - - uid: 3035 + - uid: 1230 components: - type: Transform - pos: 11.5,0.5 + pos: 25.5,30.5 parent: 2 - - uid: 3036 + - uid: 1231 components: - type: Transform - pos: 10.5,-6.5 + pos: 24.5,30.5 parent: 2 - - uid: 3037 + - uid: 1232 components: - type: Transform - pos: 60.5,10.5 + pos: 23.5,30.5 parent: 2 - - uid: 3038 + - uid: 1233 components: - type: Transform - pos: 50.5,-0.5 + pos: 22.5,30.5 parent: 2 - - uid: 3039 + - uid: 1234 components: - type: Transform - pos: 64.5,35.5 + pos: 21.5,30.5 parent: 2 - - uid: 3040 + - uid: 1235 components: - type: Transform - pos: 50.5,3.5 + pos: 20.5,30.5 parent: 2 - - uid: 3041 + - uid: 1236 components: - type: Transform - pos: 47.5,3.5 + pos: 20.5,29.5 parent: 2 - - uid: 3042 + - uid: 1237 components: - type: Transform - pos: 48.5,3.5 + pos: 20.5,28.5 parent: 2 - - uid: 3043 + - uid: 1238 components: - type: Transform - pos: 49.5,3.5 + pos: 20.5,27.5 parent: 2 - - uid: 3044 + - uid: 1239 components: - type: Transform - pos: 46.5,19.5 + pos: 20.5,26.5 parent: 2 - - uid: 3045 + - uid: 1240 components: - type: Transform - pos: 45.5,19.5 + pos: 20.5,25.5 parent: 2 - - uid: 3046 + - uid: 1241 components: - type: Transform - pos: 45.5,16.5 + pos: 20.5,24.5 parent: 2 - - uid: 3047 + - uid: 1242 components: - type: Transform - pos: 43.5,-7.5 + pos: 21.5,27.5 parent: 2 - - uid: 3048 + - uid: 1243 components: - type: Transform - pos: 51.5,3.5 + pos: 22.5,27.5 parent: 2 - - uid: 3049 + - uid: 1244 components: - type: Transform - pos: 46.5,16.5 + pos: 23.5,27.5 parent: 2 - - uid: 3050 + - uid: 1245 components: - type: Transform - pos: 46.5,82.5 + pos: 24.5,27.5 parent: 2 - - uid: 3051 + - uid: 1246 components: - type: Transform - pos: 58.5,38.5 + pos: 25.5,27.5 parent: 2 - - uid: 3052 + - uid: 1247 components: - type: Transform - pos: 45.5,23.5 + pos: 26.5,27.5 parent: 2 - - uid: 3053 + - uid: 1248 components: - type: Transform - pos: 40.5,0.5 + pos: 19.5,25.5 parent: 2 - - uid: 3054 + - uid: 1249 components: - type: Transform - pos: 40.5,-1.5 + pos: 18.5,25.5 parent: 2 - - uid: 3055 + - uid: 1250 components: - type: Transform - pos: 36.5,-1.5 + pos: 17.5,25.5 parent: 2 - - uid: 3056 + - uid: 1251 components: - type: Transform - pos: 39.5,0.5 + pos: 16.5,25.5 parent: 2 - - uid: 3057 + - uid: 1252 components: - type: Transform - pos: 42.5,-7.5 + pos: 15.5,25.5 parent: 2 - - uid: 3058 + - uid: 1253 components: - type: Transform - pos: 41.5,-7.5 + pos: 1.5,33.5 parent: 2 - - uid: 3059 + - uid: 1254 components: - type: Transform - pos: 45.5,-2.5 + pos: 28.5,25.5 parent: 2 - - uid: 3060 + - uid: 1255 components: - type: Transform - pos: 45.5,-0.5 + pos: 29.5,25.5 parent: 2 - - uid: 3061 + - uid: 1256 components: - type: Transform - pos: 45.5,-1.5 + pos: 30.5,25.5 parent: 2 - - uid: 3062 + - uid: 1257 components: - type: Transform - pos: 45.5,0.5 + pos: 31.5,25.5 parent: 2 - - uid: 3063 + - uid: 1258 components: - type: Transform - pos: 52.5,3.5 + pos: 32.5,25.5 parent: 2 - - uid: 3064 + - uid: 1259 components: - type: Transform - pos: 37.5,0.5 + pos: 33.5,25.5 parent: 2 - - uid: 3065 + - uid: 1260 components: - type: Transform - pos: 36.5,2.5 + pos: 34.5,25.5 parent: 2 - - uid: 3066 + - uid: 1261 components: - type: Transform - pos: 54.5,3.5 + pos: 28.5,28.5 parent: 2 - - uid: 3067 + - uid: 1262 components: - type: Transform - pos: 53.5,3.5 + pos: 29.5,28.5 parent: 2 - - uid: 3068 + - uid: 1263 components: - type: Transform - pos: 48.5,-4.5 + pos: 24.5,26.5 parent: 2 - - uid: 3069 + - uid: 1264 components: - type: Transform - pos: 37.5,4.5 + pos: 24.5,25.5 parent: 2 - - uid: 3070 + - uid: 1265 components: - type: Transform - pos: 49.5,-5.5 + pos: 24.5,24.5 parent: 2 - - uid: 3071 + - uid: 1266 components: - type: Transform - pos: 46.5,-4.5 + pos: 29.5,27.5 parent: 2 - - uid: 3072 + - uid: 1267 components: - type: Transform - pos: 44.5,1.5 + pos: 29.5,29.5 parent: 2 - - uid: 3073 + - uid: 1268 components: - type: Transform - pos: 43.5,1.5 + pos: 21.5,24.5 parent: 2 - - uid: 3074 + - uid: 1269 components: - type: Transform - pos: 42.5,1.5 + pos: 22.5,24.5 parent: 2 - - uid: 3075 + - uid: 1270 components: - type: Transform - pos: 45.5,2.5 + pos: 23.5,24.5 parent: 2 - - uid: 3076 + - uid: 1271 components: - type: Transform - pos: 45.5,-4.5 + pos: 25.5,24.5 parent: 2 - - uid: 3077 + - uid: 1272 components: - type: Transform - pos: 45.5,3.5 + pos: 26.5,24.5 parent: 2 - - uid: 3078 + - uid: 1273 components: - type: Transform - pos: 45.5,1.5 + pos: 29.5,23.5 parent: 2 - - uid: 3079 + - uid: 1274 components: - type: Transform - pos: 36.5,-3.5 + pos: 29.5,22.5 parent: 2 - - uid: 3080 + - uid: 1275 components: - type: Transform - pos: 36.5,-4.5 + pos: 29.5,21.5 parent: 2 - - uid: 3081 + - uid: 1276 components: - type: Transform - pos: 36.5,-5.5 + pos: 30.5,23.5 parent: 2 - - uid: 3082 + - uid: 1277 components: - type: Transform - pos: 40.5,-0.5 + pos: 31.5,23.5 parent: 2 - - uid: 3083 + - uid: 1278 components: - type: Transform - pos: 40.5,-2.5 + pos: 32.5,23.5 parent: 2 - - uid: 3084 + - uid: 1279 components: - type: Transform - pos: 40.5,-3.5 + pos: 30.5,17.5 parent: 2 - - uid: 3085 + - uid: 1280 components: - type: Transform - pos: 40.5,-7.5 + pos: 33.5,23.5 parent: 2 - - uid: 3086 + - uid: 1281 components: - type: Transform - pos: 36.5,-2.5 + pos: 29.5,17.5 parent: 2 - - uid: 3088 + - uid: 1282 components: - type: Transform - pos: 36.5,-0.5 + pos: 28.5,17.5 parent: 2 - - uid: 3089 + - uid: 1283 components: - type: Transform - pos: 36.5,0.5 + pos: 31.5,17.5 parent: 2 - - uid: 3090 + - uid: 1284 components: - type: Transform - pos: 38.5,0.5 + pos: 32.5,17.5 parent: 2 - - uid: 3091 + - uid: 1285 components: - type: Transform - pos: 44.5,-7.5 + pos: 33.5,17.5 parent: 2 - - uid: 3092 + - uid: 1286 components: - type: Transform - pos: 49.5,81.5 + pos: 33.5,22.5 parent: 2 - - uid: 3093 + - uid: 1287 components: - type: Transform - pos: 82.5,17.5 + pos: 28.5,21.5 parent: 2 - - uid: 3094 + - uid: 1288 components: - type: Transform - pos: 45.5,-3.5 + pos: 28.5,20.5 parent: 2 - - uid: 3095 + - uid: 1289 components: - type: Transform - pos: 64.5,34.5 + pos: 27.5,21.5 parent: 2 - - uid: 3096 + - uid: 1290 components: - type: Transform - pos: 14.5,5.5 + pos: 26.5,21.5 parent: 2 - - uid: 3097 + - uid: 1291 components: - type: Transform - pos: 45.5,-5.5 + pos: 25.5,21.5 parent: 2 - - uid: 3098 + - uid: 1292 components: - type: Transform - pos: 56.5,40.5 + pos: 24.5,21.5 parent: 2 - - uid: 3099 + - uid: 1293 components: - type: Transform - pos: 43.5,56.5 + pos: 24.5,20.5 parent: 2 - - uid: 3100 + - uid: 1294 components: - type: Transform - pos: 11.5,-0.5 + pos: 23.5,20.5 parent: 2 - - uid: 3101 + - uid: 1295 components: - type: Transform - pos: 57.5,40.5 + pos: 24.5,22.5 parent: 2 - - uid: 3102 + - uid: 1296 components: - type: Transform - pos: 55.5,40.5 + pos: 21.5,20.5 parent: 2 - - uid: 3104 + - uid: 1297 components: - type: Transform - pos: 59.5,7.5 + pos: 21.5,17.5 parent: 2 - - uid: 3105 + - uid: 1298 components: - type: Transform - pos: 60.5,7.5 + pos: 22.5,17.5 parent: 2 - - uid: 3106 + - uid: 1299 components: - type: Transform - pos: 42.5,23.5 + pos: 23.5,17.5 parent: 2 - - uid: 3107 + - uid: 1300 components: - type: Transform - pos: 54.5,42.5 + pos: 24.5,17.5 parent: 2 - - uid: 3108 + - uid: 1301 components: - type: Transform - pos: 49.5,57.5 + pos: 25.5,17.5 parent: 2 - - uid: 3109 + - uid: 1302 components: - type: Transform - pos: 58.5,67.5 + pos: 28.5,16.5 parent: 2 - - uid: 3111 + - uid: 1303 components: - type: Transform - pos: 48.5,0.5 + pos: 23.5,16.5 parent: 2 - - uid: 3112 + - uid: 1304 components: - type: Transform - pos: 49.5,-0.5 + pos: 25.5,16.5 parent: 2 - - uid: 3113 + - uid: 1305 components: - type: Transform - pos: 40.5,-4.5 + pos: 25.5,18.5 parent: 2 - - uid: 3114 + - uid: 1306 components: - type: Transform - pos: 58.5,37.5 + pos: 23.5,18.5 parent: 2 - - uid: 3115 + - uid: 1307 components: - type: Transform - pos: 11.5,-1.5 + pos: 20.5,20.5 parent: 2 - - uid: 3116 + - uid: 1308 components: - type: Transform - pos: -2.5,17.5 + pos: 19.5,20.5 parent: 2 - - uid: 3117 + - uid: 1309 components: - type: Transform - pos: 37.5,11.5 + pos: 18.5,20.5 parent: 2 - - uid: 3118 + - uid: 1310 components: - type: Transform - pos: 48.5,-7.5 + pos: 17.5,20.5 parent: 2 - - uid: 3119 + - uid: 1311 components: - type: Transform - pos: 54.5,40.5 + pos: 18.5,22.5 parent: 2 - - uid: 3120 + - uid: 1312 components: - type: Transform - pos: 61.5,22.5 + pos: 18.5,21.5 parent: 2 - - uid: 3121 + - uid: 1313 components: - type: Transform - pos: 83.5,17.5 + pos: 20.5,22.5 parent: 2 - - uid: 3122 + - uid: 1314 components: - type: Transform - pos: 59.5,10.5 + pos: 20.5,21.5 parent: 2 - - uid: 3123 + - uid: 1315 components: - type: Transform - pos: 48.5,-1.5 + pos: 16.5,21.5 parent: 2 - - uid: 3124 + - uid: 1316 components: - type: Transform - pos: 8.5,27.5 + pos: 15.5,21.5 parent: 2 - - uid: 3125 + - uid: 1317 components: - type: Transform - pos: 48.5,-0.5 + pos: 17.5,21.5 parent: 2 - - uid: 3126 + - uid: 1318 components: - type: Transform - pos: 58.5,39.5 + pos: 18.5,19.5 parent: 2 - - uid: 3127 + - uid: 1319 components: - type: Transform - pos: 16.5,80.5 + pos: 18.5,18.5 parent: 2 - - uid: 3128 + - uid: 1320 components: - type: Transform - pos: 17.5,80.5 + pos: 18.5,17.5 parent: 2 - - uid: 3129 + - uid: 1321 components: - type: Transform - pos: 15.5,-2.5 + pos: 18.5,16.5 parent: 2 - - uid: 3130 + - uid: 1322 components: - type: Transform - pos: 57.5,7.5 + pos: 19.5,16.5 parent: 2 - - uid: 3131 + - uid: 1323 components: - type: Transform - pos: 56.5,7.5 + pos: 20.5,16.5 parent: 2 - - uid: 3132 + - uid: 1324 components: - type: Transform - pos: 58.5,7.5 + pos: 15.5,20.5 parent: 2 - - uid: 3133 + - uid: 1325 components: - type: Transform - pos: 54.5,41.5 + pos: 15.5,19.5 parent: 2 - - uid: 3134 + - uid: 1326 components: - type: Transform - pos: 51.5,-0.5 + pos: 15.5,18.5 parent: 2 - - uid: 3156 + - uid: 1327 components: - type: Transform - pos: 13.5,44.5 + pos: 15.5,17.5 parent: 2 - - uid: 3157 + - uid: 1328 components: - type: Transform - pos: 22.5,-30.5 + pos: 11.5,18.5 parent: 2 - - uid: 3158 + - uid: 1329 components: - type: Transform - pos: 22.5,-29.5 + pos: 25.5,-2.5 parent: 2 - - uid: 3162 + - uid: 1330 components: - type: Transform - pos: 14.5,44.5 + pos: 24.5,-2.5 parent: 2 - - uid: 3163 + - uid: 1331 components: - type: Transform - pos: 15.5,47.5 + pos: 23.5,-2.5 parent: 2 - - uid: 3172 + - uid: 1332 components: - type: Transform - pos: 19.5,54.5 + pos: 22.5,-2.5 parent: 2 - - uid: 3173 + - uid: 1333 components: - type: Transform - pos: 15.5,54.5 + pos: 21.5,-2.5 parent: 2 - - uid: 3175 + - uid: 1334 components: - type: Transform - pos: 14.5,52.5 + pos: 20.5,-2.5 parent: 2 - - uid: 3199 + - uid: 1335 components: - type: Transform - pos: 16.5,54.5 + pos: 19.5,-2.5 parent: 2 - - uid: 3216 + - uid: 1336 components: - type: Transform - pos: 22.5,-31.5 + pos: 18.5,-2.5 parent: 2 - - uid: 3217 + - uid: 1337 components: - type: Transform - pos: 22.5,-29.5 + pos: 17.5,-2.5 parent: 2 - - uid: 3219 + - uid: 1338 components: - type: Transform - pos: 26.5,-37.5 + pos: 16.5,-2.5 parent: 2 - - uid: 3220 + - uid: 1339 components: - type: Transform - pos: 26.5,-36.5 + pos: 22.5,-3.5 parent: 2 - - uid: 3221 + - uid: 1340 components: - type: Transform - pos: 26.5,-35.5 + pos: 22.5,-4.5 parent: 2 - - uid: 3222 + - uid: 1341 components: - type: Transform - pos: 24.5,65.5 + pos: 24.5,-3.5 parent: 2 - - uid: 3223 + - uid: 1342 components: - type: Transform - pos: 24.5,66.5 + pos: 24.5,-4.5 parent: 2 - - uid: 3224 + - uid: 1343 components: - type: Transform - pos: 26.5,66.5 + pos: 20.5,-3.5 parent: 2 - - uid: 3225 + - uid: 1344 components: - type: Transform - pos: 25.5,66.5 + pos: 20.5,-4.5 parent: 2 - - uid: 3226 + - uid: 1345 components: - type: Transform - pos: 27.5,66.5 + pos: 17.5,-3.5 parent: 2 - - uid: 3227 + - uid: 1346 components: - type: Transform - pos: 29.5,66.5 + pos: 17.5,-4.5 parent: 2 - - uid: 3228 + - uid: 1347 components: - type: Transform - pos: 30.5,66.5 + pos: 17.5,-1.5 parent: 2 - - uid: 3229 + - uid: 1348 components: - type: Transform - pos: 31.5,66.5 + pos: 22.5,-1.5 parent: 2 - - uid: 3230 + - uid: 1349 components: - type: Transform - pos: 28.5,66.5 + pos: 22.5,-0.5 parent: 2 - - uid: 3231 + - uid: 1350 components: - type: Transform - pos: 23.5,66.5 + pos: 22.5,0.5 parent: 2 - - uid: 3232 + - uid: 1351 components: - type: Transform - pos: 22.5,66.5 + pos: 22.5,1.5 parent: 2 - - uid: 3233 + - uid: 1352 components: - type: Transform - pos: 21.5,66.5 + pos: 23.5,-0.5 parent: 2 - - uid: 3234 + - uid: 1353 components: - type: Transform - pos: 20.5,66.5 + pos: 24.5,-0.5 parent: 2 - - uid: 3235 + - uid: 1354 components: - type: Transform - pos: 19.5,66.5 + pos: 21.5,0.5 parent: 2 - - uid: 3236 + - uid: 1355 components: - type: Transform - pos: 18.5,66.5 + pos: 20.5,0.5 parent: 2 - - uid: 3237 + - uid: 1356 components: - type: Transform - pos: 17.5,66.5 + pos: 20.5,1.5 parent: 2 - - uid: 3238 + - uid: 1357 components: - type: Transform - pos: 16.5,66.5 + pos: 20.5,2.5 parent: 2 - - uid: 3239 + - uid: 1358 components: - type: Transform - pos: 15.5,66.5 + pos: 31.5,-1.5 parent: 2 - - uid: 3240 + - uid: 1359 components: - type: Transform - pos: 77.5,3.5 + pos: 30.5,-1.5 parent: 2 - - uid: 3241 + - uid: 1360 components: - type: Transform - pos: 14.5,63.5 + pos: 29.5,-1.5 parent: 2 - - uid: 3242 + - uid: 1361 components: - type: Transform - pos: 22.5,-21.5 + pos: 29.5,-2.5 parent: 2 - - uid: 3243 + - uid: 1362 components: - type: Transform - pos: 22.5,-22.5 + pos: 28.5,-2.5 parent: 2 - - uid: 3244 + - uid: 1363 components: - type: Transform - pos: 22.5,-23.5 + pos: 27.5,-2.5 parent: 2 - - uid: 3245 + - uid: 1364 components: - type: Transform - pos: 22.5,-20.5 + pos: 26.5,-2.5 parent: 2 - - uid: 3246 + - uid: 1365 components: - type: Transform - pos: 23.5,-22.5 + pos: 26.5,-1.5 parent: 2 - - uid: 3247 + - uid: 1366 components: - type: Transform - pos: 24.5,-22.5 + pos: 26.5,-0.5 parent: 2 - - uid: 3248 + - uid: 1367 components: - type: Transform - pos: 22.5,-30.5 + pos: 26.5,0.5 parent: 2 - - uid: 3249 + - uid: 1368 components: - type: Transform - pos: 22.5,-32.5 + pos: 26.5,1.5 parent: 2 - - uid: 3250 + - uid: 1369 components: - type: Transform - pos: 37.5,52.5 + pos: 27.5,1.5 parent: 2 - - uid: 3251 + - uid: 1370 components: - type: Transform - pos: 37.5,53.5 + pos: 28.5,1.5 parent: 2 - - uid: 3253 + - uid: 1371 components: - type: Transform - pos: 55.5,58.5 + pos: 29.5,1.5 parent: 2 - - uid: 3254 + - uid: 1372 components: - type: Transform - pos: 55.5,57.5 + pos: 30.5,1.5 parent: 2 - - uid: 3255 + - uid: 1373 components: - type: Transform - pos: 55.5,56.5 + pos: 30.5,0.5 parent: 2 - - uid: 3256 + - uid: 1374 components: - type: Transform - pos: 55.5,55.5 + pos: 30.5,-0.5 parent: 2 - - uid: 3257 + - uid: 1375 components: - type: Transform - pos: 54.5,55.5 + pos: 27.5,-1.5 parent: 2 - - uid: 3258 + - uid: 1376 components: - type: Transform - pos: 53.5,55.5 + pos: 25.5,-10.5 parent: 2 - - uid: 3259 + - uid: 1377 components: - type: Transform - pos: 53.5,56.5 + pos: 24.5,-10.5 parent: 2 - - uid: 3260 + - uid: 1378 components: - type: Transform - pos: 53.5,57.5 + pos: 23.5,-10.5 parent: 2 - - uid: 3261 + - uid: 1379 components: - type: Transform - pos: 54.5,57.5 + pos: 22.5,-10.5 parent: 2 - - uid: 3262 + - uid: 1380 components: - type: Transform - pos: 53.5,55.5 + pos: 21.5,-10.5 parent: 2 - - uid: 3263 + - uid: 1381 components: - type: Transform - pos: 55.5,55.5 + pos: 21.5,-11.5 parent: 2 - - uid: 3264 + - uid: 1382 components: - type: Transform - pos: 39.5,23.5 + pos: 19.5,-11.5 parent: 2 - - uid: 3265 + - uid: 1383 components: - type: Transform - pos: 40.5,23.5 + pos: 18.5,-11.5 parent: 2 - - uid: 3266 + - uid: 1384 components: - type: Transform - pos: 39.5,59.5 + pos: 22.5,-9.5 parent: 2 - - uid: 3267 + - uid: 1385 components: - type: Transform - pos: 39.5,60.5 + pos: 22.5,-8.5 parent: 2 - - uid: 3268 + - uid: 1386 components: - type: Transform - pos: 49.5,58.5 + pos: 22.5,-7.5 parent: 2 - - uid: 3269 + - uid: 1387 components: - type: Transform - pos: 40.5,60.5 + pos: 21.5,-7.5 parent: 2 - - uid: 3270 + - uid: 1388 components: - type: Transform - pos: 41.5,60.5 + pos: 20.5,-7.5 parent: 2 - - uid: 3271 + - uid: 1389 components: - type: Transform - pos: 42.5,60.5 + pos: 19.5,-7.5 parent: 2 - - uid: 3272 + - uid: 1390 components: - type: Transform - pos: 43.5,60.5 + pos: 22.5,-6.5 parent: 2 - - uid: 3273 + - uid: 1391 components: - type: Transform - pos: 44.5,60.5 + pos: 22.5,-11.5 parent: 2 - - uid: 3274 + - uid: 1392 components: - type: Transform - pos: 45.5,60.5 + pos: 22.5,-12.5 parent: 2 - - uid: 3275 + - uid: 1393 components: - type: Transform - pos: 44.5,61.5 + pos: 22.5,-13.5 parent: 2 - - uid: 3276 + - uid: 1394 components: - type: Transform - pos: 44.5,62.5 + pos: 22.5,-14.5 parent: 2 - - uid: 3277 + - uid: 1395 components: - type: Transform - pos: 44.5,63.5 + pos: 22.5,-15.5 parent: 2 - - uid: 3278 + - uid: 1396 components: - type: Transform - pos: 44.5,64.5 + pos: 22.5,-16.5 parent: 2 - - uid: 3279 + - uid: 1397 components: - type: Transform - pos: 44.5,65.5 + pos: 19.5,-15.5 parent: 2 - - uid: 3280 + - uid: 1398 components: - type: Transform - pos: 43.5,63.5 + pos: 18.5,-15.5 parent: 2 - - uid: 3281 + - uid: 1399 components: - type: Transform - pos: 42.5,63.5 + pos: 23.5,-15.5 parent: 2 - - uid: 3282 + - uid: 1400 components: - type: Transform - pos: 41.5,63.5 + pos: 24.5,-15.5 parent: 2 - - uid: 3283 + - uid: 1401 components: - type: Transform - pos: 40.5,63.5 + pos: 23.5,-12.5 parent: 2 - - uid: 3284 + - uid: 1402 components: - type: Transform - pos: 37.5,67.5 + pos: 24.5,-12.5 parent: 2 - - uid: 3285 + - uid: 1403 components: - type: Transform - pos: 38.5,67.5 + pos: 25.5,-15.5 parent: 2 - - uid: 3286 + - uid: 1404 components: - type: Transform - pos: 39.5,67.5 + pos: 30.5,-15.5 parent: 2 - - uid: 3287 + - uid: 1405 components: - type: Transform - pos: 39.5,68.5 + pos: 39.5,-10.5 parent: 2 - - uid: 3288 + - uid: 1406 components: - type: Transform - pos: 38.5,70.5 + pos: 23.5,-7.5 parent: 2 - - uid: 3289 + - uid: 1407 components: - type: Transform - pos: 50.5,72.5 + pos: 19.5,9.5 parent: 2 - - uid: 3290 + - uid: 1408 components: - type: Transform - pos: 51.5,72.5 + pos: 20.5,9.5 parent: 2 - - uid: 3291 + - uid: 1409 components: - type: Transform - pos: 52.5,72.5 + pos: 21.5,9.5 parent: 2 - - uid: 3292 + - uid: 1410 components: - type: Transform - pos: 50.5,73.5 + pos: 22.5,9.5 parent: 2 - - uid: 3293 + - uid: 1411 components: - type: Transform - pos: 52.5,62.5 + pos: 23.5,9.5 parent: 2 - - uid: 3294 + - uid: 1412 components: - type: Transform - pos: 52.5,61.5 + pos: 24.5,9.5 parent: 2 - - uid: 3295 + - uid: 1413 components: - type: Transform - pos: 52.5,60.5 + pos: 21.5,8.5 parent: 2 - - uid: 3296 + - uid: 1414 components: - type: Transform - pos: 53.5,60.5 + pos: 21.5,7.5 parent: 2 - - uid: 3297 + - uid: 1415 components: - type: Transform - pos: 51.5,60.5 + pos: 21.5,6.5 parent: 2 - - uid: 3298 + - uid: 1416 components: - type: Transform - pos: 47.5,79.5 + pos: 21.5,5.5 parent: 2 - - uid: 3299 + - uid: 1417 components: - type: Transform - pos: 47.5,77.5 + pos: 22.5,5.5 parent: 2 - - uid: 3300 + - uid: 1418 components: - type: Transform - pos: 47.5,76.5 + pos: 23.5,5.5 parent: 2 - - uid: 3301 + - uid: 1419 components: - type: Transform - pos: 47.5,75.5 + pos: 24.5,5.5 parent: 2 - - uid: 3302 + - uid: 1420 components: - type: Transform - pos: 50.5,80.5 + pos: 24.5,4.5 parent: 2 - - uid: 3303 + - uid: 1421 components: - type: Transform - pos: 57.5,75.5 + pos: 24.5,3.5 parent: 2 - - uid: 3304 + - uid: 1422 components: - type: Transform - pos: 57.5,78.5 + pos: 24.5,8.5 parent: 2 - - uid: 3305 + - uid: 1423 components: - type: Transform - pos: 57.5,77.5 + pos: 24.5,7.5 parent: 2 - - uid: 3306 + - uid: 1424 components: - type: Transform - pos: 57.5,76.5 + pos: 18.5,3.5 parent: 2 - - uid: 3307 + - uid: 1425 components: - type: Transform - pos: 58.5,78.5 + pos: 18.5,4.5 parent: 2 - - uid: 3308 + - uid: 1426 components: - type: Transform - pos: 59.5,78.5 + pos: 18.5,5.5 parent: 2 - - uid: 3309 + - uid: 1427 components: - type: Transform - pos: 59.5,67.5 + pos: 18.5,6.5 parent: 2 - - uid: 3310 + - uid: 1428 components: - type: Transform - pos: 52.5,22.5 + pos: 17.5,5.5 parent: 2 - - uid: 3311 + - uid: 1429 components: - type: Transform - pos: 52.5,21.5 + pos: 16.5,5.5 parent: 2 - - uid: 3312 + - uid: 1430 components: - type: Transform - pos: 52.5,20.5 + pos: 15.5,5.5 parent: 2 - - uid: 3313 + - uid: 1431 components: - type: Transform - pos: 52.5,19.5 + pos: 54.5,8.5 parent: 2 - - uid: 3314 + - uid: 1432 components: - type: Transform - pos: 52.5,18.5 + pos: 42.5,11.5 parent: 2 - - uid: 3315 + - uid: 1433 components: - type: Transform - pos: 52.5,17.5 + pos: 47.5,39.5 parent: 2 - - uid: 3316 + - uid: 1434 components: - type: Transform - pos: 51.5,17.5 + pos: 44.5,32.5 parent: 2 - - uid: 3317 + - uid: 1435 components: - type: Transform - pos: 50.5,17.5 + pos: 43.5,32.5 parent: 2 - - uid: 3318 + - uid: 1436 components: - type: Transform - pos: 49.5,17.5 + pos: 42.5,32.5 parent: 2 - - uid: 3319 + - uid: 1437 components: - type: Transform - pos: 47.5,19.5 + pos: 41.5,32.5 parent: 2 - - uid: 3320 + - uid: 1438 components: - type: Transform - pos: 47.5,20.5 + pos: 40.5,32.5 parent: 2 - - uid: 3321 + - uid: 1439 components: - type: Transform - pos: 57.5,31.5 + pos: 39.5,32.5 parent: 2 - - uid: 3322 + - uid: 1440 components: - type: Transform - pos: 56.5,31.5 + pos: 38.5,32.5 parent: 2 - - uid: 3323 + - uid: 1441 components: - type: Transform - pos: 55.5,31.5 + pos: 41.5,31.5 parent: 2 - - uid: 3324 + - uid: 1442 components: - type: Transform - pos: 58.5,31.5 + pos: 41.5,30.5 parent: 2 - - uid: 3325 + - uid: 1443 components: - type: Transform - pos: 60.5,31.5 + pos: 39.5,31.5 parent: 2 - - uid: 3326 + - uid: 1444 components: - type: Transform - pos: 59.5,31.5 + pos: 39.5,30.5 parent: 2 - - uid: 3327 + - uid: 1445 components: - type: Transform - pos: 10.5,-10.5 + pos: 43.5,31.5 parent: 2 - - uid: 3328 + - uid: 1446 components: - type: Transform - pos: 10.5,-11.5 + pos: 43.5,30.5 parent: 2 - - uid: 3329 + - uid: 1447 components: - type: Transform - pos: 10.5,-12.5 + pos: 45.5,32.5 parent: 2 - - uid: 3330 + - uid: 1448 components: - type: Transform - pos: 79.5,8.5 + pos: 45.5,33.5 parent: 2 - - uid: 3331 + - uid: 1449 components: - type: Transform - pos: 80.5,8.5 + pos: 45.5,34.5 parent: 2 - - uid: 3332 + - uid: 1450 components: - type: Transform - pos: 81.5,8.5 + pos: 45.5,35.5 parent: 2 - - uid: 3333 + - uid: 1451 components: - type: Transform - pos: 82.5,8.5 + pos: 44.5,35.5 parent: 2 - - uid: 3334 + - uid: 1452 components: - type: Transform - pos: 83.5,8.5 + pos: 43.5,35.5 parent: 2 - - uid: 3335 + - uid: 1453 components: - type: Transform - pos: -1.5,16.5 + pos: 42.5,35.5 parent: 2 - - uid: 3336 + - uid: 1454 components: - type: Transform - pos: -1.5,17.5 + pos: 41.5,35.5 parent: 2 - - uid: 3337 + - uid: 1455 components: - type: Transform - pos: -4.5,17.5 + pos: 40.5,35.5 parent: 2 - - uid: 3342 + - uid: 1456 components: - type: Transform - pos: 30.5,54.5 + pos: 39.5,35.5 parent: 2 - - uid: 3343 + - uid: 1457 components: - type: Transform - pos: 28.5,54.5 + pos: 46.5,35.5 parent: 2 - - uid: 3346 + - uid: 1458 components: - type: Transform - pos: -0.5,16.5 + pos: 46.5,36.5 parent: 2 - - uid: 3347 + - uid: 1459 components: - type: Transform - pos: 84.5,17.5 + pos: 46.5,37.5 parent: 2 - - uid: 3348 + - uid: 1460 components: - type: Transform - pos: 85.5,17.5 + pos: 46.5,39.5 parent: 2 - - uid: 3349 + - uid: 1461 components: - type: Transform - pos: 80.5,16.5 + pos: 45.5,39.5 parent: 2 - - uid: 3350 + - uid: 1462 components: - type: Transform - pos: 80.5,15.5 + pos: 45.5,40.5 parent: 2 - - uid: 3351 + - uid: 1463 components: - type: Transform - pos: 80.5,18.5 + pos: 52.5,34.5 parent: 2 - - uid: 3352 + - uid: 1464 components: - type: Transform - pos: 80.5,19.5 + pos: 52.5,35.5 parent: 2 - - uid: 3353 + - uid: 1465 components: - type: Transform - pos: 83.5,18.5 + pos: 52.5,36.5 parent: 2 - - uid: 3354 + - uid: 1466 components: - type: Transform - pos: 83.5,19.5 + pos: 53.5,36.5 parent: 2 - - uid: 3355 + - uid: 1467 components: - type: Transform - pos: 83.5,16.5 + pos: 53.5,37.5 parent: 2 - - uid: 3356 + - uid: 1468 components: - type: Transform - pos: 83.5,15.5 + pos: 43.5,23.5 parent: 2 - - uid: 3357 + - uid: 1469 components: - type: Transform - pos: 36.5,84.5 + pos: 54.5,36.5 parent: 2 - - uid: 3358 + - uid: 1470 components: - type: Transform - pos: 36.5,85.5 + pos: 48.5,30.5 parent: 2 - - uid: 3359 + - uid: 1471 components: - type: Transform - pos: 36.5,86.5 + pos: 49.5,30.5 parent: 2 - - uid: 3360 + - uid: 1472 components: - type: Transform - pos: 35.5,86.5 + pos: 50.5,30.5 parent: 2 - - uid: 3361 + - uid: 1473 components: - type: Transform - pos: 35.5,87.5 + pos: 51.5,30.5 parent: 2 - - uid: 3362 + - uid: 1474 components: - type: Transform - pos: 35.5,88.5 + pos: 52.5,30.5 parent: 2 - - uid: 3363 + - uid: 1476 components: - type: Transform - pos: 35.5,89.5 + pos: 51.5,32.5 parent: 2 - - uid: 3364 + - uid: 1477 components: - type: Transform - pos: 36.5,89.5 + pos: 49.5,31.5 parent: 2 - - uid: 3365 + - uid: 1478 components: - type: Transform - pos: 37.5,89.5 + pos: 49.5,32.5 parent: 2 - - uid: 3366 + - uid: 1479 components: - type: Transform - pos: 37.5,90.5 + pos: 49.5,33.5 parent: 2 - - uid: 3367 + - uid: 1480 components: - type: Transform - pos: 38.5,90.5 + pos: 52.5,31.5 parent: 2 - - uid: 3368 + - uid: 1481 components: - type: Transform - pos: 39.5,90.5 + pos: 52.5,32.5 parent: 2 - - uid: 3369 + - uid: 1482 components: - type: Transform - pos: 40.5,90.5 + pos: 45.5,31.5 parent: 2 - - uid: 3370 + - uid: 1483 components: - type: Transform - pos: 40.5,89.5 + pos: 45.5,30.5 parent: 2 - - uid: 3371 + - uid: 1484 components: - type: Transform - pos: 40.5,88.5 + pos: 45.5,29.5 parent: 2 - - uid: 3372 + - uid: 1485 components: - type: Transform - pos: 39.5,88.5 + pos: 45.5,28.5 parent: 2 - - uid: 3373 + - uid: 1486 components: - type: Transform - pos: 38.5,88.5 + pos: 45.5,27.5 parent: 2 - - uid: 3374 + - uid: 1487 components: - type: Transform - pos: 37.5,88.5 + pos: 45.5,26.5 parent: 2 - - uid: 3377 + - uid: 1488 components: - type: Transform - pos: 72.5,10.5 + pos: 44.5,26.5 parent: 2 - - uid: 3378 + - uid: 1489 components: - type: Transform - pos: 73.5,10.5 + pos: 43.5,26.5 parent: 2 - - uid: 3379 + - uid: 1490 components: - type: Transform - pos: 74.5,10.5 + pos: 42.5,26.5 parent: 2 - - uid: 3380 + - uid: 1491 components: - type: Transform - pos: 75.5,10.5 + pos: 41.5,26.5 parent: 2 - - uid: 3381 + - uid: 1492 components: - type: Transform - pos: 77.5,10.5 + pos: 40.5,26.5 parent: 2 - - uid: 3382 + - uid: 1493 components: - type: Transform - pos: 78.5,10.5 + pos: 39.5,26.5 parent: 2 - - uid: 3383 + - uid: 1494 components: - type: Transform - pos: 79.5,10.5 + pos: 38.5,26.5 parent: 2 - - uid: 3384 + - uid: 1495 components: - type: Transform - pos: 80.5,10.5 + pos: 41.5,27.5 parent: 2 - - uid: 3385 + - uid: 1496 components: - type: Transform - pos: 76.5,10.5 + pos: 41.5,28.5 parent: 2 - - uid: 3386 + - uid: 1497 components: - type: Transform - pos: 81.5,10.5 + pos: 41.5,29.5 parent: 2 - - uid: 3387 + - uid: 1498 components: - type: Transform - pos: 82.5,10.5 + pos: 46.5,27.5 parent: 2 - - uid: 3388 + - uid: 1502 components: - type: Transform - pos: 83.5,10.5 + pos: 50.5,27.5 parent: 2 - - uid: 3389 + - uid: 1503 components: - type: Transform - pos: 83.5,11.5 + pos: 51.5,27.5 parent: 2 - - uid: 3390 + - uid: 1504 components: - type: Transform - pos: 84.5,11.5 + pos: 52.5,27.5 parent: 2 - - uid: 3391 + - uid: 1505 components: - type: Transform - pos: 85.5,11.5 + pos: 53.5,27.5 parent: 2 - - uid: 3392 + - uid: 1506 components: - type: Transform - pos: 86.5,11.5 + pos: 54.5,27.5 parent: 2 - - uid: 3393 + - uid: 1507 components: - type: Transform - pos: 87.5,11.5 + pos: 46.5,31.5 parent: 2 - - uid: 3394 + - uid: 1508 components: - type: Transform - pos: 88.5,11.5 + pos: 45.5,25.5 parent: 2 - - uid: 3395 + - uid: 1510 components: - type: Transform - pos: 89.5,11.5 + pos: 44.5,16.5 parent: 2 - - uid: 3396 + - uid: 1511 components: - type: Transform - pos: 89.5,13.5 + pos: 44.5,17.5 parent: 2 - - uid: 3397 + - uid: 1512 components: - type: Transform - pos: 89.5,12.5 + pos: 44.5,18.5 parent: 2 - - uid: 3398 + - uid: 1513 components: - type: Transform - pos: 89.5,14.5 + pos: 44.5,19.5 parent: 2 - - uid: 3399 + - uid: 1514 components: - type: Transform - pos: 89.5,15.5 + pos: 44.5,20.5 parent: 2 - - uid: 3400 + - uid: 1515 components: - type: Transform - pos: 89.5,16.5 + pos: 44.5,21.5 parent: 2 - - uid: 3401 + - uid: 1516 components: - type: Transform - pos: 89.5,17.5 + pos: 44.5,22.5 parent: 2 - - uid: 3402 + - uid: 1517 components: - type: Transform - pos: 90.5,17.5 + pos: 44.5,23.5 parent: 2 - - uid: 3403 + - uid: 1518 components: - type: Transform - pos: 91.5,17.5 + pos: 43.5,19.5 parent: 2 - - uid: 3404 + - uid: 1519 components: - type: Transform - pos: 92.5,17.5 + pos: 42.5,19.5 parent: 2 - - uid: 3405 + - uid: 1520 components: - type: Transform - pos: 93.5,17.5 + pos: 41.5,19.5 parent: 2 - - uid: 3406 + - uid: 1521 components: - type: Transform - pos: 94.5,17.5 + pos: 40.5,19.5 parent: 2 - - uid: 3407 + - uid: 1522 components: - type: Transform - pos: 95.5,17.5 + pos: 39.5,19.5 parent: 2 - - uid: 3408 + - uid: 1523 components: - type: Transform - pos: 96.5,17.5 + pos: 43.5,16.5 parent: 2 - - uid: 3409 + - uid: 1524 components: - type: Transform - pos: 93.5,18.5 + pos: 42.5,16.5 parent: 2 - - uid: 3410 + - uid: 1525 components: - type: Transform - pos: 93.5,19.5 + pos: 41.5,16.5 parent: 2 - - uid: 3411 + - uid: 1526 components: - type: Transform - pos: 93.5,20.5 + pos: 40.5,16.5 parent: 2 - - uid: 3412 + - uid: 1527 components: - type: Transform - pos: 72.5,23.5 + pos: 49.5,25.5 parent: 2 - - uid: 3413 + - uid: 1528 components: - type: Transform - pos: 73.5,23.5 + pos: 49.5,24.5 parent: 2 - - uid: 3414 + - uid: 1529 components: - type: Transform - pos: 74.5,23.5 + pos: 49.5,23.5 parent: 2 - - uid: 3415 + - uid: 1530 components: - type: Transform - pos: 75.5,23.5 + pos: 48.5,23.5 parent: 2 - - uid: 3416 + - uid: 1531 components: - type: Transform - pos: 76.5,23.5 + pos: 47.5,23.5 parent: 2 - - uid: 3417 + - uid: 1532 components: - type: Transform - pos: 77.5,23.5 + pos: 46.5,23.5 parent: 2 - - uid: 3418 + - uid: 1533 components: - type: Transform - pos: 78.5,23.5 + pos: 50.5,23.5 parent: 2 - - uid: 3419 + - uid: 1534 components: - type: Transform - pos: 79.5,23.5 + pos: 51.5,23.5 parent: 2 - - uid: 3420 + - uid: 1535 components: - type: Transform - pos: 81.5,23.5 + pos: 52.5,23.5 parent: 2 - - uid: 3421 + - uid: 1536 components: - type: Transform - pos: 82.5,23.5 + pos: 53.5,23.5 parent: 2 - - uid: 3422 + - uid: 1537 components: - type: Transform - pos: 83.5,23.5 + pos: 59.5,18.5 parent: 2 - - uid: 3423 + - uid: 1538 components: - type: Transform - pos: 80.5,23.5 + pos: 58.5,18.5 parent: 2 - - uid: 3424 + - uid: 1539 components: - type: Transform - pos: 84.5,23.5 + pos: 57.5,18.5 parent: 2 - - uid: 3425 + - uid: 1540 components: - type: Transform - pos: 85.5,23.5 + pos: 56.5,18.5 parent: 2 - - uid: 3426 + - uid: 1541 components: - type: Transform - pos: 86.5,23.5 + pos: 55.5,18.5 parent: 2 - - uid: 3427 + - uid: 1542 components: - type: Transform - pos: 88.5,23.5 + pos: 54.5,18.5 parent: 2 - - uid: 3428 + - uid: 1543 components: - type: Transform - pos: 87.5,23.5 + pos: 56.5,17.5 parent: 2 - - uid: 3429 + - uid: 1544 components: - type: Transform - pos: 89.5,23.5 + pos: 56.5,16.5 parent: 2 - - uid: 3430 + - uid: 1545 components: - type: Transform - pos: 89.5,22.5 + pos: 57.5,32.5 parent: 2 - - uid: 3431 + - uid: 1546 components: - type: Transform - pos: 89.5,21.5 + pos: 57.5,33.5 parent: 2 - - uid: 3432 + - uid: 1547 components: - type: Transform - pos: 89.5,20.5 + pos: 56.5,21.5 parent: 2 - - uid: 3433 + - uid: 1548 components: - type: Transform - pos: 89.5,19.5 + pos: 56.5,22.5 parent: 2 - - uid: 3434 + - uid: 1549 components: - type: Transform - pos: 89.5,18.5 + pos: 56.5,23.5 parent: 2 - - uid: 3435 + - uid: 1550 components: - type: Transform - pos: 75.5,5.5 + pos: 29.5,16.5 parent: 2 - - uid: 3436 + - uid: 1551 components: - type: Transform - pos: 75.5,4.5 + pos: 56.5,27.5 parent: 2 - - uid: 3437 + - uid: 1552 components: - type: Transform - pos: 80.5,7.5 + pos: 57.5,26.5 parent: 2 - - uid: 3438 + - uid: 1553 components: - type: Transform - pos: 80.5,6.5 + pos: 57.5,27.5 parent: 2 - - uid: 3439 + - uid: 1554 components: - type: Transform - pos: 83.5,7.5 + pos: 57.5,28.5 parent: 2 - - uid: 3440 + - uid: 1555 components: - type: Transform - pos: 83.5,6.5 + pos: 55.5,23.5 parent: 2 - - uid: 3643 + - uid: 1556 components: - type: Transform - pos: 38.5,57.5 + pos: 55.5,27.5 parent: 2 - - uid: 3870 + - uid: 1557 components: - type: Transform - pos: 38.5,47.5 + pos: 60.5,24.5 parent: 2 - - uid: 3871 + - uid: 1558 components: - type: Transform - pos: 39.5,47.5 + pos: 61.5,24.5 parent: 2 - - uid: 3872 + - uid: 1559 components: - type: Transform - pos: 41.5,47.5 + pos: 62.5,24.5 parent: 2 - - uid: 4082 + - uid: 1560 components: - type: Transform - pos: 33.5,55.5 + pos: 57.5,21.5 parent: 2 - - uid: 4175 + - uid: 1561 components: - type: Transform - pos: 29.5,-18.5 + pos: 58.5,21.5 parent: 2 - - uid: 4205 + - uid: 1562 components: - type: Transform - pos: 29.5,-19.5 + pos: 59.5,21.5 parent: 2 - - uid: 4238 + - uid: 1563 components: - type: Transform - pos: 33.5,56.5 + pos: 60.5,21.5 parent: 2 - - uid: 4239 + - uid: 1564 components: - type: Transform - pos: 30.5,52.5 + pos: 61.5,21.5 parent: 2 - - uid: 4240 + - uid: 1565 components: - type: Transform - pos: 29.5,54.5 + pos: 62.5,21.5 parent: 2 - - uid: 4241 + - uid: 1566 components: - type: Transform - pos: 15.5,46.5 + pos: 57.5,16.5 parent: 2 - - uid: 4242 + - uid: 1567 components: - type: Transform - pos: 31.5,48.5 + pos: 58.5,16.5 parent: 2 - - uid: 4243 + - uid: 1568 components: - type: Transform - pos: 33.5,57.5 + pos: 54.5,16.5 parent: 2 - - uid: 4244 + - uid: 1569 components: - type: Transform - pos: 31.5,47.5 + pos: 55.5,16.5 parent: 2 - - uid: 4246 + - uid: 1570 components: - type: Transform - pos: 31.5,40.5 + pos: 54.5,23.5 parent: 2 - - uid: 4281 + - uid: 1571 components: - type: Transform - pos: 75.5,2.5 + pos: 54.5,22.5 parent: 2 - - uid: 4285 + - uid: 1572 components: - type: Transform - pos: 20.5,53.5 + pos: 54.5,21.5 parent: 2 - - uid: 4328 + - uid: 1573 components: - type: Transform - pos: 22.5,49.5 + pos: 43.5,49.5 parent: 2 - - uid: 4329 + - uid: 1574 components: - type: Transform - pos: 23.5,49.5 + pos: 54.5,81.5 parent: 2 - - uid: 4330 + - uid: 1575 components: - type: Transform - pos: 15.5,40.5 + pos: 51.5,81.5 parent: 2 - - uid: 4336 + - uid: 1576 components: - type: Transform - pos: 15.5,42.5 + pos: 53.5,81.5 parent: 2 - - uid: 4337 + - uid: 1577 components: - type: Transform - pos: 15.5,44.5 + pos: 52.5,81.5 parent: 2 - - uid: 4340 + - uid: 1578 components: - type: Transform - pos: 15.5,44.5 + pos: 78.5,14.5 parent: 2 - - uid: 4341 + - uid: 1579 components: - type: Transform - pos: 15.5,43.5 + pos: 78.5,15.5 parent: 2 - - uid: 4342 + - uid: 1580 components: - type: Transform - pos: 15.5,48.5 + pos: 78.5,16.5 parent: 2 - - uid: 4344 + - uid: 1581 components: - type: Transform - pos: 15.5,41.5 + pos: 78.5,17.5 parent: 2 - - uid: 4345 + - uid: 1582 components: - type: Transform - pos: 21.5,49.5 + pos: 78.5,18.5 parent: 2 - - uid: 4346 + - uid: 1583 components: - type: Transform - pos: 27.5,54.5 + pos: 78.5,19.5 parent: 2 - - uid: 4355 + - uid: 1584 components: - type: Transform - pos: 32.5,44.5 + pos: 79.5,17.5 parent: 2 - - uid: 4356 + - uid: 1585 components: - type: Transform - pos: 32.5,40.5 + pos: 80.5,17.5 parent: 2 - - uid: 4357 + - uid: 1586 components: - type: Transform - pos: 31.5,41.5 + pos: 81.5,17.5 parent: 2 - - uid: 4363 + - uid: 1587 components: - type: Transform - pos: 34.5,57.5 + pos: 77.5,17.5 parent: 2 - - uid: 4376 + - uid: 1588 components: - type: Transform - pos: 24.5,49.5 + pos: 76.5,17.5 parent: 2 - - uid: 4393 + - uid: 1589 components: - type: Transform - pos: 39.5,56.5 + pos: 75.5,17.5 parent: 2 - - uid: 4394 + - uid: 1590 components: - type: Transform - pos: 40.5,56.5 + pos: 74.5,17.5 parent: 2 - - uid: 4462 + - uid: 1591 components: - type: Transform - pos: 53.5,40.5 + pos: 73.5,17.5 parent: 2 - - uid: 4486 + - uid: 1592 components: - type: Transform - pos: 26.5,40.5 + pos: 75.5,16.5 parent: 2 - - uid: 4504 + - uid: 1593 components: - type: Transform - pos: 19.5,40.5 + pos: 75.5,18.5 parent: 2 - - uid: 4507 + - uid: 1594 components: - type: Transform - pos: 21.5,40.5 + pos: 55.5,5.5 parent: 2 - - uid: 4865 + - uid: 1595 components: - type: Transform - pos: 45.5,-14.5 + pos: 55.5,4.5 parent: 2 - - uid: 4871 + - uid: 1596 components: - type: Transform - pos: 51.5,-21.5 + pos: 55.5,3.5 parent: 2 - - uid: 4872 + - uid: 1597 components: - type: Transform - pos: 51.5,-20.5 + pos: 56.5,3.5 parent: 2 - - uid: 4967 + - uid: 1598 components: - type: Transform - pos: 40.5,47.5 + pos: 57.5,3.5 parent: 2 - - uid: 4984 + - uid: 1599 components: - type: Transform - pos: 42.5,56.5 + pos: 58.5,3.5 parent: 2 - - uid: 4992 + - uid: 1600 components: - type: Transform - pos: -6.5,21.5 + pos: 59.5,3.5 parent: 2 - - uid: 5044 + - uid: 1601 components: - type: Transform - pos: 50.5,35.5 + pos: 60.5,3.5 parent: 2 - - uid: 5045 + - uid: 1602 components: - type: Transform - pos: 31.5,-14.5 + pos: 59.5,4.5 parent: 2 - - uid: 5047 + - uid: 1603 components: - type: Transform - pos: 79.5,68.5 + pos: 59.5,2.5 parent: 2 - - uid: 5048 + - uid: 1604 components: - type: Transform - pos: 74.5,66.5 + pos: 59.5,1.5 parent: 2 - - uid: 5049 + - uid: 1605 components: - type: Transform - pos: 74.5,67.5 + pos: 55.5,7.5 parent: 2 - - uid: 5050 + - uid: 1606 components: - type: Transform - pos: 79.5,66.5 + pos: 54.5,7.5 parent: 2 - - uid: 5089 + - uid: 1607 components: - type: Transform - pos: 74.5,68.5 + pos: 53.5,7.5 parent: 2 - - uid: 5090 + - uid: 1608 components: - type: Transform - pos: 79.5,67.5 + pos: 52.5,7.5 parent: 2 - - uid: 5095 + - uid: 1609 components: - type: Transform - pos: 53.5,39.5 + pos: 53.5,6.5 parent: 2 - - uid: 5216 + - uid: 1610 components: - type: Transform - pos: 27.5,45.5 + pos: 54.5,0.5 parent: 2 - - uid: 5221 + - uid: 1611 components: - type: Transform - pos: 27.5,46.5 + pos: 53.5,0.5 parent: 2 - - uid: 5625 + - uid: 1612 components: - type: Transform - pos: 31.5,-13.5 + pos: 52.5,0.5 parent: 2 - - uid: 5934 + - uid: 1613 components: - type: Transform - pos: 18.5,54.5 + pos: 53.5,-0.5 parent: 2 - - uid: 6218 + - uid: 1614 components: - type: Transform - pos: 22.5,-45.5 + pos: 53.5,-1.5 parent: 2 - - uid: 6234 + - uid: 1615 components: - type: Transform - pos: 22.5,-44.5 + pos: 53.5,-3.5 parent: 2 - - uid: 6240 + - uid: 1616 components: - type: Transform - pos: 17.5,-42.5 + pos: 53.5,-4.5 parent: 2 - - uid: 6248 + - uid: 1617 components: - type: Transform - pos: 18.5,-42.5 + pos: 53.5,-5.5 parent: 2 - - uid: 6249 + - uid: 1618 components: - type: Transform - pos: 26.5,-42.5 + pos: 54.5,-3.5 parent: 2 - - uid: 6294 + - uid: 1619 components: - type: Transform - pos: 27.5,-42.5 + pos: 55.5,-3.5 parent: 2 - - uid: 6500 + - uid: 1620 components: - type: Transform - pos: 14.5,-38.5 + pos: 56.5,-3.5 parent: 2 - - uid: 6501 + - uid: 1621 components: - type: Transform - pos: -5.5,17.5 + pos: 55.5,-2.5 parent: 2 - - uid: 6502 + - uid: 1622 components: - type: Transform - pos: 15.5,-37.5 + pos: 55.5,-1.5 parent: 2 - - uid: 6503 + - uid: 1623 components: - type: Transform - pos: 15.5,-39.5 + pos: 55.5,0.5 parent: 2 - - uid: 6504 + - uid: 1624 components: - type: Transform - pos: -8.5,19.5 + pos: 55.5,-4.5 parent: 2 - - uid: 6505 + - uid: 1625 components: - type: Transform - pos: -8.5,20.5 + pos: 55.5,-5.5 parent: 2 - - uid: 6506 + - uid: 1626 components: - type: Transform - pos: -6.5,17.5 + pos: 45.5,-6.5 parent: 2 - - uid: 6507 + - uid: 1627 components: - type: Transform - pos: -8.5,21.5 + pos: 45.5,-7.5 parent: 2 - - uid: 6508 + - uid: 1628 components: - type: Transform - pos: -7.5,20.5 + pos: 45.5,-8.5 parent: 2 - - uid: 6509 + - uid: 1629 components: - type: Transform - pos: -7.5,17.5 + pos: 45.5,-9.5 parent: 2 - - uid: 6510 + - uid: 1630 components: - type: Transform - pos: -6.5,20.5 + pos: 45.5,-10.5 parent: 2 - - uid: 6511 + - uid: 1631 components: - type: Transform - pos: -8.5,17.5 + pos: 48.5,-5.5 parent: 2 - - uid: 6512 + - uid: 1632 components: - type: Transform - pos: -8.5,18.5 + pos: 48.5,-6.5 parent: 2 - - uid: 6513 + - uid: 1633 components: - type: Transform - pos: 31.5,-38.5 + pos: 61.5,23.5 parent: 2 - - uid: 6514 + - uid: 1634 components: - type: Transform - pos: 32.5,-38.5 + pos: 36.5,4.5 parent: 2 - - uid: 6936 + - uid: 1635 components: - type: Transform - pos: 39.5,50.5 + pos: 36.5,5.5 parent: 2 - - uid: 7449 + - uid: 1636 components: - type: Transform - pos: 37.5,47.5 + pos: 36.5,6.5 parent: 2 - - uid: 7566 + - uid: 1637 components: - type: Transform - pos: 17.5,40.5 + pos: 37.5,6.5 parent: 2 - - uid: 8183 + - uid: 1638 components: - type: Transform - pos: 15.5,49.5 + pos: 37.5,7.5 parent: 2 - - uid: 8192 + - uid: 1639 components: - type: Transform - pos: 15.5,45.5 + pos: 37.5,8.5 parent: 2 - - uid: 8208 + - uid: 1640 components: - type: Transform - pos: 16.5,49.5 + pos: 37.5,9.5 parent: 2 - - uid: 9111 + - uid: 1641 components: - type: Transform - pos: 58.5,27.5 + pos: 37.5,10.5 parent: 2 - - uid: 9708 + - uid: 1642 components: - type: Transform - pos: 27.5,40.5 + pos: 36.5,9.5 parent: 2 - - uid: 9901 + - uid: 1643 components: - type: Transform - pos: 24.5,40.5 + pos: 35.5,9.5 parent: 2 - - uid: 10153 + - uid: 1644 components: - type: Transform - pos: 18.5,40.5 + pos: 38.5,9.5 parent: 2 - - uid: 10216 + - uid: 1645 components: - type: Transform - pos: 30.5,-4.5 + pos: 35.5,6.5 parent: 2 - - uid: 10272 + - uid: 1646 components: - type: Transform - pos: 22.5,40.5 + pos: 34.5,6.5 parent: 2 - - uid: 10792 + - uid: 1647 components: - type: Transform - pos: 20.5,40.5 + pos: 35.5,4.5 parent: 2 - - uid: 10886 + - uid: 1648 components: - type: Transform - pos: 17.5,49.5 + pos: 47.5,-4.5 parent: 2 - - uid: 10887 + - uid: 1649 components: - type: Transform - pos: 19.5,49.5 + pos: 42.5,10.5 parent: 2 - - uid: 10893 + - uid: 1650 components: - type: Transform - pos: 23.5,48.5 + pos: 42.5,9.5 parent: 2 - - uid: 10899 + - uid: 1651 components: - type: Transform - pos: 25.5,40.5 + pos: 42.5,8.5 parent: 2 - - uid: 10904 + - uid: 1652 components: - type: Transform - pos: 26.5,49.5 + pos: 42.5,7.5 parent: 2 - - uid: 10905 + - uid: 1653 components: - type: Transform - pos: 25.5,47.5 + pos: 42.5,6.5 parent: 2 - - uid: 10909 + - uid: 1654 components: - type: Transform - pos: 23.5,40.5 + pos: 41.5,8.5 parent: 2 - - uid: 10915 + - uid: 1655 components: - type: Transform - pos: 20.5,49.5 + pos: 40.5,8.5 parent: 2 - - uid: 10921 + - uid: 1656 components: - type: Transform - pos: 19.5,44.5 + pos: 41.5,6.5 parent: 2 - - uid: 10922 + - uid: 1657 components: - type: Transform - pos: 29.5,57.5 + pos: 43.5,9.5 parent: 2 - - uid: 10928 + - uid: 1658 components: - type: Transform - pos: 31.5,57.5 + pos: 44.5,9.5 parent: 2 - - uid: 10932 + - uid: 1659 components: - type: Transform - pos: 30.5,57.5 + pos: 43.5,7.5 parent: 2 - - uid: 10937 + - uid: 1660 components: - type: Transform - pos: 31.5,46.5 + pos: 44.5,7.5 parent: 2 - - uid: 11246 + - uid: 1661 components: - type: Transform - pos: 34.5,-8.5 + pos: 49.5,7.5 parent: 2 - - uid: 11247 + - uid: 1662 components: - type: Transform - pos: 33.5,-8.5 + pos: 48.5,7.5 parent: 2 - - uid: 11445 + - uid: 1663 components: - type: Transform - pos: 32.5,54.5 + pos: 47.5,7.5 parent: 2 - - uid: 11446 + - uid: 1664 components: - type: Transform - pos: 31.5,54.5 + pos: 46.5,7.5 parent: 2 - - uid: 11467 + - uid: 1665 components: - type: Transform - pos: 30.5,-5.5 + pos: 47.5,8.5 parent: 2 - - uid: 11579 + - uid: 1666 components: - type: Transform - pos: 31.5,-12.5 + pos: 47.5,9.5 parent: 2 - - uid: 11587 + - uid: 1667 components: - type: Transform - pos: 42.5,47.5 + pos: 47.5,10.5 parent: 2 - - uid: 11605 + - uid: 1668 components: - type: Transform - pos: 30.5,-6.5 + pos: 47.5,6.5 parent: 2 - - uid: 11635 + - uid: 1669 components: - type: Transform - pos: 33.5,54.5 + pos: 47.5,5.5 parent: 2 - - uid: 11637 + - uid: 1670 components: - type: Transform - pos: 27.5,52.5 + pos: 38.5,4.5 parent: 2 - - uid: 11673 + - uid: 1671 components: - type: Transform - pos: 33.5,53.5 + pos: 46.5,-11.5 parent: 2 - - uid: 11937 + - uid: 1672 components: - type: Transform - pos: 31.5,45.5 + pos: 47.5,-11.5 parent: 2 - - uid: 11938 + - uid: 1673 components: - type: Transform - pos: 31.5,42.5 + pos: 48.5,-11.5 parent: 2 - - uid: 11939 + - uid: 1674 components: - type: Transform - pos: 31.5,43.5 + pos: 49.5,-11.5 parent: 2 - - uid: 11940 + - uid: 1675 components: - type: Transform - pos: 31.5,44.5 + pos: 50.5,-11.5 parent: 2 - - uid: 12105 + - uid: 1676 components: - type: Transform - pos: 10.5,-4.5 + pos: 48.5,-10.5 parent: 2 - - uid: 12551 + - uid: 1677 components: - type: Transform - pos: 41.5,48.5 + pos: 48.5,-9.5 parent: 2 - - uid: 13888 + - uid: 1678 components: - type: Transform - pos: 18.5,49.5 + pos: 48.5,-8.5 parent: 2 - - uid: 13890 + - uid: 1679 components: - type: Transform - pos: 16.5,40.5 + pos: 49.5,-9.5 parent: 2 - - uid: 13891 + - uid: 1680 components: - type: Transform - pos: 19.5,41.5 + pos: 32.5,83.5 parent: 2 - - uid: 13895 + - uid: 1681 components: - type: Transform - pos: 32.5,57.5 + pos: 10.5,18.5 parent: 2 - - uid: 13900 + - uid: 1682 components: - type: Transform - pos: 37.5,54.5 + pos: 9.5,18.5 parent: 2 - - uid: 13908 + - uid: 1683 components: - type: Transform - pos: 25.5,49.5 + pos: 8.5,18.5 parent: 2 - - uid: 14049 + - uid: 1684 components: - type: Transform - pos: 51.5,84.5 + pos: 7.5,18.5 parent: 2 - - uid: 14149 + - uid: 1685 components: - type: Transform - pos: 12.5,36.5 + pos: 6.5,18.5 parent: 2 - - uid: 14342 + - uid: 1686 components: - type: Transform - pos: 11.5,52.5 + pos: 5.5,18.5 parent: 2 - - uid: 15007 + - uid: 1687 components: - type: Transform - pos: 32.5,46.5 + pos: 4.5,18.5 parent: 2 - - uid: 15403 + - uid: 1688 components: - type: Transform - pos: 29.5,-17.5 + pos: 37.5,83.5 parent: 2 - - uid: 15450 + - uid: 1689 components: - type: Transform - pos: 10.5,2.5 + pos: 37.5,84.5 parent: 2 - - uid: 15483 + - uid: 1690 components: - type: Transform - pos: 7.5,19.5 + pos: 49.5,-16.5 parent: 2 - - uid: 15504 + - uid: 1691 components: - type: Transform - pos: 29.5,-16.5 + pos: 68.5,1.5 parent: 2 - - uid: 15505 + - uid: 1692 components: - type: Transform - pos: 29.5,-15.5 + pos: 68.5,2.5 parent: 2 - - uid: 15977 + - uid: 1693 components: - type: Transform - pos: 23.5,46.5 + pos: 48.5,-16.5 parent: 2 - - uid: 15978 + - uid: 1694 components: - type: Transform - pos: 27.5,-14.5 + pos: 82.5,38.5 parent: 2 - - uid: 16023 + - uid: 1695 components: - type: Transform - pos: 23.5,47.5 + pos: 39.5,13.5 parent: 2 - - uid: 16031 + - uid: 1698 components: - type: Transform - pos: 27.5,46.5 + pos: 36.5,13.5 parent: 2 - - uid: 16135 + - uid: 1699 components: - type: Transform - pos: 10.5,52.5 + pos: 35.5,13.5 parent: 2 - - uid: 16180 + - uid: 1700 components: - type: Transform - pos: 60.5,27.5 + pos: 34.5,13.5 parent: 2 - - uid: 16181 + - uid: 1701 components: - type: Transform - pos: 59.5,27.5 + pos: 33.5,13.5 parent: 2 - - uid: 16222 + - uid: 1702 components: - type: Transform - pos: 27.5,53.5 + pos: 32.5,13.5 parent: 2 - - uid: 16283 + - uid: 1703 components: - type: Transform - pos: 19.5,49.5 + pos: 31.5,13.5 parent: 2 - - uid: 16294 + - uid: 1704 components: - type: Transform - pos: 27.5,43.5 + pos: 30.5,13.5 parent: 2 - - uid: 16329 + - uid: 1705 components: - type: Transform - pos: 32.5,42.5 + pos: 29.5,13.5 parent: 2 - - uid: 16361 + - uid: 1706 components: - type: Transform - pos: 19.5,46.5 + pos: 28.5,13.5 parent: 2 - - uid: 16362 + - uid: 1707 components: - type: Transform - pos: 23.5,42.5 + pos: 27.5,13.5 parent: 2 - - uid: 16371 + - uid: 1708 components: - type: Transform - pos: 23.5,41.5 + pos: 26.5,13.5 parent: 2 - - uid: 16436 + - uid: 1709 components: - type: Transform - pos: 27.5,44.5 + pos: 25.5,13.5 parent: 2 - - uid: 16444 + - uid: 1710 components: - type: Transform - pos: 19.5,47.5 + pos: 24.5,13.5 parent: 2 - - uid: 16455 + - uid: 1711 components: - type: Transform - pos: 20.5,43.5 + pos: 23.5,13.5 parent: 2 - - uid: 16465 + - uid: 1712 components: - type: Transform - pos: 23.5,44.5 + pos: 22.5,13.5 parent: 2 - - uid: 16474 + - uid: 1713 components: - type: Transform - pos: 27.5,41.5 + pos: 21.5,13.5 parent: 2 - - uid: 16476 + - uid: 1714 components: - type: Transform - pos: 23.5,43.5 + pos: 20.5,13.5 parent: 2 - - uid: 17733 + - uid: 1715 components: - type: Transform - pos: -12.5,33.5 - parent: 16504 - - uid: 17734 + pos: 19.5,13.5 + parent: 2 + - uid: 1716 components: - type: Transform - pos: -12.5,34.5 - parent: 16504 - - uid: 17735 + pos: 18.5,13.5 + parent: 2 + - uid: 1717 components: - type: Transform - pos: -3.5,-11.5 - parent: 16504 - - uid: 17736 + pos: 17.5,13.5 + parent: 2 + - uid: 1718 components: - type: Transform - pos: 1.5,-11.5 - parent: 16504 - - uid: 17737 + pos: 16.5,13.5 + parent: 2 + - uid: 1719 components: - type: Transform - pos: -0.5,-11.5 - parent: 16504 - - uid: 17738 + pos: 15.5,13.5 + parent: 2 + - uid: 1720 components: - type: Transform - pos: -2.5,-11.5 - parent: 16504 - - uid: 17739 + pos: 14.5,13.5 + parent: 2 + - uid: 1721 components: - type: Transform - pos: 0.5,-11.5 - parent: 16504 - - uid: 17740 + pos: 13.5,13.5 + parent: 2 + - uid: 1722 components: - type: Transform - pos: -1.5,-11.5 - parent: 16504 - - uid: 17741 + pos: 12.5,13.5 + parent: 2 + - uid: 1723 components: - type: Transform - pos: 2.5,-11.5 - parent: 16504 - - uid: 17742 + pos: 12.5,14.5 + parent: 2 + - uid: 1724 components: - type: Transform - pos: 3.5,-11.5 - parent: 16504 - - uid: 17743 + pos: 12.5,15.5 + parent: 2 + - uid: 1725 components: - type: Transform - pos: 4.5,-11.5 - parent: 16504 - - uid: 17744 + pos: 12.5,16.5 + parent: 2 + - uid: 1726 components: - type: Transform - pos: 0.5,-10.5 - parent: 16504 - - uid: 17745 + pos: 12.5,17.5 + parent: 2 + - uid: 1727 components: - type: Transform - pos: 0.5,-9.5 - parent: 16504 - - uid: 17746 + pos: 12.5,18.5 + parent: 2 + - uid: 1728 components: - type: Transform - pos: 0.5,-8.5 - parent: 16504 - - uid: 17747 + pos: 12.5,19.5 + parent: 2 + - uid: 1729 components: - type: Transform - pos: -0.5,-8.5 - parent: 16504 - - uid: 17748 + pos: 12.5,20.5 + parent: 2 + - uid: 1730 components: - type: Transform - pos: -1.5,-8.5 - parent: 16504 - - uid: 17749 + pos: 12.5,21.5 + parent: 2 + - uid: 1731 components: - type: Transform - pos: -2.5,-8.5 - parent: 16504 - - uid: 17750 + pos: 12.5,22.5 + parent: 2 + - uid: 1732 components: - type: Transform - pos: 1.5,-8.5 - parent: 16504 - - uid: 17751 + pos: 12.5,23.5 + parent: 2 + - uid: 1733 components: - type: Transform - pos: 2.5,-8.5 - parent: 16504 - - uid: 17752 + pos: 12.5,24.5 + parent: 2 + - uid: 1734 components: - type: Transform - pos: 3.5,-8.5 - parent: 16504 - - uid: 17753 + pos: 12.5,25.5 + parent: 2 + - uid: 1735 components: - type: Transform - pos: -2.5,-7.5 - parent: 16504 - - uid: 17754 + pos: 12.5,26.5 + parent: 2 + - uid: 1736 components: - type: Transform - pos: -2.5,-6.5 - parent: 16504 - - uid: 17755 + pos: 12.5,27.5 + parent: 2 + - uid: 1737 components: - type: Transform - pos: -2.5,-5.5 - parent: 16504 - - uid: 17756 + pos: 12.5,28.5 + parent: 2 + - uid: 1738 components: - type: Transform - pos: -2.5,-4.5 - parent: 16504 - - uid: 17757 + pos: 12.5,29.5 + parent: 2 + - uid: 1739 components: - type: Transform - pos: 3.5,-4.5 - parent: 16504 - - uid: 17758 + pos: 12.5,30.5 + parent: 2 + - uid: 1740 components: - type: Transform - pos: 3.5,-5.5 - parent: 16504 - - uid: 17759 + pos: 12.5,31.5 + parent: 2 + - uid: 1741 components: - type: Transform - pos: 3.5,-6.5 - parent: 16504 - - uid: 17760 + pos: 12.5,32.5 + parent: 2 + - uid: 1742 components: - type: Transform - pos: 3.5,-7.5 - parent: 16504 - - uid: 17761 + pos: 12.5,33.5 + parent: 2 + - uid: 1743 components: - type: Transform - pos: -3.5,-4.5 - parent: 16504 - - uid: 17762 + pos: 12.5,34.5 + parent: 2 + - uid: 1744 components: - type: Transform - pos: -4.5,-4.5 - parent: 16504 - - uid: 17763 + pos: 12.5,35.5 + parent: 2 + - uid: 1745 components: - type: Transform - pos: -4.5,-3.5 - parent: 16504 - - uid: 17764 + pos: 12.5,36.5 + parent: 2 + - uid: 1746 components: - type: Transform - pos: -4.5,-2.5 - parent: 16504 - - uid: 17765 + pos: 12.5,37.5 + parent: 2 + - uid: 1747 components: - type: Transform - pos: -4.5,-1.5 - parent: 16504 - - uid: 17766 + pos: 13.5,37.5 + parent: 2 + - uid: 1748 components: - type: Transform - pos: -4.5,-0.5 - parent: 16504 - - uid: 17767 + pos: 14.5,37.5 + parent: 2 + - uid: 1749 components: - type: Transform - pos: -3.5,-0.5 - parent: 16504 - - uid: 17768 + pos: 15.5,37.5 + parent: 2 + - uid: 1750 components: - type: Transform - pos: -2.5,3.5 - parent: 16504 - - uid: 17769 + pos: 16.5,37.5 + parent: 2 + - uid: 1751 components: - type: Transform - pos: -1.5,-0.5 - parent: 16504 - - uid: 17770 + pos: 17.5,37.5 + parent: 2 + - uid: 1752 components: - type: Transform - pos: 4.5,-4.5 - parent: 16504 - - uid: 17771 + pos: 18.5,37.5 + parent: 2 + - uid: 1753 components: - type: Transform - pos: 5.5,-4.5 - parent: 16504 - - uid: 17772 + pos: 19.5,37.5 + parent: 2 + - uid: 1754 components: - type: Transform - pos: 5.5,-3.5 - parent: 16504 - - uid: 17773 + pos: 20.5,37.5 + parent: 2 + - uid: 1755 components: - type: Transform - pos: 5.5,-2.5 - parent: 16504 - - uid: 17774 + pos: 21.5,37.5 + parent: 2 + - uid: 1756 components: - type: Transform - pos: 5.5,-1.5 - parent: 16504 - - uid: 17775 + pos: 22.5,37.5 + parent: 2 + - uid: 1757 components: - type: Transform - pos: 5.5,-0.5 - parent: 16504 - - uid: 17776 + pos: 23.5,37.5 + parent: 2 + - uid: 1758 components: - type: Transform - pos: 4.5,-0.5 - parent: 16504 - - uid: 17777 + pos: 24.5,37.5 + parent: 2 + - uid: 1759 components: - type: Transform - pos: 3.5,-0.5 - parent: 16504 - - uid: 17778 + pos: 25.5,37.5 + parent: 2 + - uid: 1760 components: - type: Transform - pos: 2.5,-0.5 - parent: 16504 - - uid: 17779 + pos: 26.5,37.5 + parent: 2 + - uid: 1761 components: - type: Transform - pos: 6.5,-2.5 - parent: 16504 - - uid: 17780 + pos: 27.5,37.5 + parent: 2 + - uid: 1762 components: - type: Transform - pos: 7.5,-2.5 - parent: 16504 - - uid: 17781 + pos: 28.5,37.5 + parent: 2 + - uid: 1763 components: - type: Transform - pos: 8.5,-2.5 - parent: 16504 - - uid: 17782 + pos: 29.5,37.5 + parent: 2 + - uid: 1764 components: - type: Transform - pos: -3.5,-8.5 - parent: 16504 - - uid: 17783 + pos: 30.5,37.5 + parent: 2 + - uid: 1765 components: - type: Transform - pos: -4.5,-8.5 - parent: 16504 - - uid: 17784 + pos: 31.5,37.5 + parent: 2 + - uid: 1766 components: - type: Transform - pos: -5.5,-8.5 - parent: 16504 - - uid: 17785 + pos: 32.5,37.5 + parent: 2 + - uid: 1767 components: - type: Transform - pos: -6.5,-8.5 - parent: 16504 - - uid: 17786 + pos: 33.5,37.5 + parent: 2 + - uid: 1768 components: - type: Transform - pos: 4.5,-8.5 - parent: 16504 - - uid: 17787 + pos: 34.5,37.5 + parent: 2 + - uid: 1769 components: - type: Transform - pos: 5.5,-8.5 - parent: 16504 - - uid: 17788 + pos: 35.5,37.5 + parent: 2 + - uid: 1770 components: - type: Transform - pos: 6.5,-8.5 - parent: 16504 - - uid: 17789 + pos: 36.5,37.5 + parent: 2 + - uid: 1772 components: - type: Transform - pos: 7.5,-8.5 - parent: 16504 - - uid: 17790 + pos: 5.5,10.5 + parent: 2 + - uid: 1773 components: - type: Transform - pos: -6.5,2.5 - parent: 16504 - - uid: 17791 + pos: 36.5,40.5 + parent: 2 + - uid: 1774 components: - type: Transform - pos: -5.5,2.5 - parent: 16504 - - uid: 17792 + pos: 36.5,41.5 + parent: 2 + - uid: 1775 components: - type: Transform - pos: -4.5,2.5 - parent: 16504 - - uid: 17793 + pos: 36.5,42.5 + parent: 2 + - uid: 1776 components: - type: Transform - pos: -3.5,2.5 - parent: 16504 - - uid: 17794 + pos: 36.5,43.5 + parent: 2 + - uid: 1777 components: - type: Transform - pos: -2.5,2.5 - parent: 16504 - - uid: 17795 + pos: 36.5,44.5 + parent: 2 + - uid: 1778 components: - type: Transform - pos: -2.5,1.5 - parent: 16504 - - uid: 17796 + pos: 37.5,44.5 + parent: 2 + - uid: 1779 components: - type: Transform - pos: -2.5,0.5 - parent: 16504 - - uid: 17797 + pos: 38.5,44.5 + parent: 2 + - uid: 1780 components: - type: Transform - pos: -2.5,-0.5 - parent: 16504 - - uid: 17798 + pos: 39.5,44.5 + parent: 2 + - uid: 1781 components: - type: Transform - pos: -2.5,4.5 - parent: 16504 - - uid: 17799 + pos: 40.5,44.5 + parent: 2 + - uid: 1782 components: - type: Transform - pos: -2.5,5.5 - parent: 16504 - - uid: 17800 + pos: 41.5,44.5 + parent: 2 + - uid: 1783 components: - type: Transform - pos: -2.5,6.5 - parent: 16504 - - uid: 17801 + pos: 42.5,44.5 + parent: 2 + - uid: 1784 components: - type: Transform - pos: -2.5,7.5 - parent: 16504 - - uid: 17802 + pos: 43.5,44.5 + parent: 2 + - uid: 1785 components: - type: Transform - pos: -1.5,7.5 - parent: 16504 - - uid: 17803 + pos: 44.5,44.5 + parent: 2 + - uid: 1786 components: - type: Transform - pos: 2.5,7.5 - parent: 16504 - - uid: 17804 + pos: 45.5,44.5 + parent: 2 + - uid: 1787 components: - type: Transform - pos: 3.5,7.5 - parent: 16504 - - uid: 17805 + pos: 46.5,44.5 + parent: 2 + - uid: 1788 components: - type: Transform - pos: 3.5,6.5 - parent: 16504 - - uid: 17806 + pos: 46.5,45.5 + parent: 2 + - uid: 1789 components: - type: Transform - pos: 3.5,5.5 - parent: 16504 - - uid: 17807 + pos: 46.5,46.5 + parent: 2 + - uid: 1790 components: - type: Transform - pos: 3.5,4.5 - parent: 16504 - - uid: 17808 + pos: 46.5,47.5 + parent: 2 + - uid: 1791 components: - type: Transform - pos: 3.5,3.5 - parent: 16504 - - uid: 17809 + pos: 46.5,48.5 + parent: 2 + - uid: 1792 components: - type: Transform - pos: 3.5,2.5 - parent: 16504 - - uid: 17810 + pos: 46.5,49.5 + parent: 2 + - uid: 1793 components: - type: Transform - pos: 3.5,1.5 - parent: 16504 - - uid: 17811 + pos: 46.5,50.5 + parent: 2 + - uid: 1794 components: - type: Transform - pos: 3.5,0.5 - parent: 16504 - - uid: 17812 + pos: 46.5,51.5 + parent: 2 + - uid: 1795 components: - type: Transform - pos: 4.5,7.5 - parent: 16504 - - uid: 17813 + pos: 46.5,52.5 + parent: 2 + - uid: 1796 components: - type: Transform - pos: 5.5,7.5 - parent: 16504 - - uid: 17814 + pos: 47.5,52.5 + parent: 2 + - uid: 1797 components: - type: Transform - pos: 6.5,-0.5 - parent: 16504 - - uid: 17815 + pos: 48.5,52.5 + parent: 2 + - uid: 1798 components: - type: Transform - pos: 7.5,-0.5 - parent: 16504 - - uid: 17816 + pos: 49.5,52.5 + parent: 2 + - uid: 1799 components: - type: Transform - pos: 8.5,-0.5 - parent: 16504 - - uid: 17817 + pos: 50.5,52.5 + parent: 2 + - uid: 1800 components: - type: Transform - pos: 8.5,0.5 - parent: 16504 - - uid: 17818 + pos: 51.5,52.5 + parent: 2 + - uid: 1801 components: - type: Transform - pos: 8.5,1.5 - parent: 16504 - - uid: 17819 + pos: 52.5,52.5 + parent: 2 + - uid: 1802 components: - type: Transform - pos: 8.5,2.5 - parent: 16504 - - uid: 17820 + pos: 53.5,52.5 + parent: 2 + - uid: 1803 components: - type: Transform - pos: 8.5,3.5 - parent: 16504 - - uid: 17821 + pos: 54.5,52.5 + parent: 2 + - uid: 1804 components: - type: Transform - pos: -18.5,3.5 - parent: 16504 - - uid: 17822 + pos: 55.5,52.5 + parent: 2 + - uid: 1805 components: - type: Transform - pos: -17.5,3.5 - parent: 16504 - - uid: 17823 + pos: 56.5,52.5 + parent: 2 + - uid: 1806 components: - type: Transform - pos: -16.5,3.5 - parent: 16504 - - uid: 17824 + pos: 57.5,52.5 + parent: 2 + - uid: 1807 components: - type: Transform - pos: -15.5,3.5 - parent: 16504 - - uid: 17825 + pos: 58.5,52.5 + parent: 2 + - uid: 1808 components: - type: Transform - pos: -14.5,3.5 - parent: 16504 - - uid: 17826 + pos: 59.5,52.5 + parent: 2 + - uid: 1809 components: - type: Transform - pos: -13.5,3.5 - parent: 16504 - - uid: 17827 + pos: 60.5,52.5 + parent: 2 + - uid: 1810 components: - type: Transform - pos: -12.5,3.5 - parent: 16504 - - uid: 17828 + pos: 61.5,52.5 + parent: 2 + - uid: 1811 components: - type: Transform - pos: -11.5,3.5 - parent: 16504 - - uid: 17829 + pos: 62.5,52.5 + parent: 2 + - uid: 1812 components: - type: Transform - pos: -10.5,3.5 - parent: 16504 - - uid: 17830 + pos: 63.5,52.5 + parent: 2 + - uid: 1813 components: - type: Transform - pos: -13.5,4.5 - parent: 16504 - - uid: 17831 + pos: 64.5,52.5 + parent: 2 + - uid: 1814 components: - type: Transform - pos: -13.5,5.5 - parent: 16504 - - uid: 17832 + pos: 65.5,52.5 + parent: 2 + - uid: 1815 components: - type: Transform - pos: -13.5,6.5 - parent: 16504 - - uid: 17833 + pos: 66.5,52.5 + parent: 2 + - uid: 1816 components: - type: Transform - pos: -13.5,2.5 - parent: 16504 - - uid: 17834 + pos: 67.5,52.5 + parent: 2 + - uid: 1817 components: - type: Transform - pos: -13.5,1.5 - parent: 16504 - - uid: 17835 + pos: 68.5,52.5 + parent: 2 + - uid: 1818 components: - type: Transform - pos: -13.5,0.5 - parent: 16504 - - uid: 17836 + pos: 69.5,52.5 + parent: 2 + - uid: 1819 components: - type: Transform - pos: -13.5,-0.5 - parent: 16504 - - uid: 17837 + pos: 70.5,52.5 + parent: 2 + - uid: 1820 components: - type: Transform - pos: -13.5,7.5 - parent: 16504 - - uid: 17838 + pos: 70.5,51.5 + parent: 2 + - uid: 1821 components: - type: Transform - pos: -11.5,-9.5 - parent: 16504 - - uid: 17839 + pos: 70.5,50.5 + parent: 2 + - uid: 1822 components: - type: Transform - pos: -11.5,-8.5 - parent: 16504 - - uid: 17840 + pos: 70.5,49.5 + parent: 2 + - uid: 1823 components: - type: Transform - pos: -11.5,-7.5 - parent: 16504 - - uid: 17841 - components: + pos: 70.5,48.5 + parent: 2 + - uid: 1824 + components: - type: Transform - pos: -11.5,-6.5 - parent: 16504 - - uid: 17842 + pos: 70.5,47.5 + parent: 2 + - uid: 1825 components: - type: Transform - pos: -11.5,-5.5 - parent: 16504 - - uid: 17843 + pos: 70.5,46.5 + parent: 2 + - uid: 1826 components: - type: Transform - pos: -11.5,-4.5 - parent: 16504 - - uid: 17844 + pos: 70.5,45.5 + parent: 2 + - uid: 1827 components: - type: Transform - pos: -11.5,-3.5 - parent: 16504 - - uid: 17845 + pos: 70.5,44.5 + parent: 2 + - uid: 1828 components: - type: Transform - pos: -11.5,-2.5 - parent: 16504 - - uid: 17846 + pos: 70.5,43.5 + parent: 2 + - uid: 1829 components: - type: Transform - pos: -10.5,-2.5 - parent: 16504 - - uid: 17847 + pos: 70.5,42.5 + parent: 2 + - uid: 1830 components: - type: Transform - pos: -9.5,-2.5 - parent: 16504 - - uid: 17848 + pos: 70.5,41.5 + parent: 2 + - uid: 1831 components: - type: Transform - pos: -8.5,-2.5 - parent: 16504 - - uid: 17849 + pos: 70.5,40.5 + parent: 2 + - uid: 1832 components: - type: Transform - pos: -7.5,-2.5 - parent: 16504 - - uid: 17850 + pos: 70.5,39.5 + parent: 2 + - uid: 1833 components: - type: Transform - pos: -6.5,-2.5 - parent: 16504 - - uid: 17851 + pos: 70.5,38.5 + parent: 2 + - uid: 1834 components: - type: Transform - pos: -6.5,13.5 - parent: 16504 - - uid: 17852 + pos: 70.5,37.5 + parent: 2 + - uid: 1835 components: - type: Transform - pos: -6.5,12.5 - parent: 16504 - - uid: 17853 + pos: 71.5,37.5 + parent: 2 + - uid: 1836 components: - type: Transform - pos: -6.5,11.5 - parent: 16504 - - uid: 17854 + pos: 72.5,37.5 + parent: 2 + - uid: 1837 components: - type: Transform - pos: -6.5,10.5 - parent: 16504 - - uid: 17855 + pos: 73.5,37.5 + parent: 2 + - uid: 1838 components: - type: Transform - pos: -6.5,9.5 - parent: 16504 - - uid: 17856 + pos: 74.5,37.5 + parent: 2 + - uid: 1839 components: - type: Transform - pos: -7.5,10.5 - parent: 16504 - - uid: 17857 + pos: 75.5,37.5 + parent: 2 + - uid: 1840 components: - type: Transform - pos: -8.5,10.5 - parent: 16504 - - uid: 17858 + pos: 76.5,37.5 + parent: 2 + - uid: 1841 components: - type: Transform - pos: -9.5,10.5 - parent: 16504 - - uid: 17859 + pos: 77.5,37.5 + parent: 2 + - uid: 1842 components: - type: Transform - pos: -9.5,9.5 - parent: 16504 - - uid: 17860 + pos: 78.5,37.5 + parent: 2 + - uid: 1843 components: - type: Transform - pos: -10.5,9.5 - parent: 16504 - - uid: 17861 + pos: 79.5,37.5 + parent: 2 + - uid: 1844 components: - type: Transform - pos: -10.5,8.5 - parent: 16504 - - uid: 17862 + pos: 80.5,37.5 + parent: 2 + - uid: 1845 components: - type: Transform - pos: -11.5,8.5 - parent: 16504 - - uid: 17863 + pos: 81.5,37.5 + parent: 2 + - uid: 1846 components: - type: Transform - pos: -5.5,10.5 - parent: 16504 - - uid: 17864 + pos: 82.5,37.5 + parent: 2 + - uid: 1847 components: - type: Transform - pos: -4.5,10.5 - parent: 16504 - - uid: 17865 + pos: 82.5,39.5 + parent: 2 + - uid: 1848 components: - type: Transform - pos: -3.5,10.5 - parent: 16504 - - uid: 17866 + pos: 82.5,40.5 + parent: 2 + - uid: 1849 components: - type: Transform - pos: 4.5,10.5 - parent: 16504 - - uid: 17867 + pos: 82.5,41.5 + parent: 2 + - uid: 1850 components: - type: Transform - pos: 5.5,10.5 - parent: 16504 - - uid: 17868 + pos: 82.5,42.5 + parent: 2 + - uid: 1851 components: - type: Transform - pos: 6.5,10.5 - parent: 16504 - - uid: 17869 + pos: 82.5,43.5 + parent: 2 + - uid: 1852 components: - type: Transform - pos: 7.5,10.5 - parent: 16504 - - uid: 17870 + pos: 82.5,44.5 + parent: 2 + - uid: 1853 components: - type: Transform - pos: 7.5,11.5 - parent: 16504 - - uid: 17871 + pos: 82.5,45.5 + parent: 2 + - uid: 1854 components: - type: Transform - pos: 7.5,12.5 - parent: 16504 - - uid: 17872 + pos: 82.5,46.5 + parent: 2 + - uid: 1855 components: - type: Transform - pos: 7.5,13.5 - parent: 16504 - - uid: 17873 + pos: 82.5,47.5 + parent: 2 + - uid: 1856 components: - type: Transform - pos: 7.5,9.5 - parent: 16504 - - uid: 17874 + pos: 82.5,48.5 + parent: 2 + - uid: 1857 components: - type: Transform - pos: 8.5,10.5 - parent: 16504 - - uid: 17875 + pos: 82.5,49.5 + parent: 2 + - uid: 1858 components: - type: Transform - pos: 9.5,10.5 - parent: 16504 - - uid: 17876 + pos: 82.5,50.5 + parent: 2 + - uid: 1859 components: - type: Transform - pos: 10.5,10.5 - parent: 16504 - - uid: 17877 + pos: 71.5,36.5 + parent: 2 + - uid: 1860 components: - type: Transform - pos: 11.5,10.5 - parent: 16504 - - uid: 17878 + pos: 71.5,35.5 + parent: 2 + - uid: 1861 components: - type: Transform - pos: 11.5,9.5 - parent: 16504 - - uid: 17879 + pos: 71.5,34.5 + parent: 2 + - uid: 1862 components: - type: Transform - pos: 12.5,9.5 - parent: 16504 - - uid: 17880 + pos: 71.5,33.5 + parent: 2 + - uid: 1863 components: - type: Transform - pos: 12.5,8.5 - parent: 16504 - - uid: 17881 + pos: 71.5,32.5 + parent: 2 + - uid: 1864 components: - type: Transform - pos: 13.5,8.5 - parent: 16504 - - uid: 17882 + pos: 71.5,31.5 + parent: 2 + - uid: 1865 components: - type: Transform - pos: 19.5,3.5 - parent: 16504 - - uid: 17883 + pos: 71.5,30.5 + parent: 2 + - uid: 1866 components: - type: Transform - pos: 18.5,3.5 - parent: 16504 - - uid: 17884 + pos: 71.5,29.5 + parent: 2 + - uid: 1867 components: - type: Transform - pos: 17.5,3.5 - parent: 16504 - - uid: 17885 + pos: 71.5,28.5 + parent: 2 + - uid: 1868 components: - type: Transform - pos: 16.5,3.5 - parent: 16504 - - uid: 17886 + pos: 71.5,27.5 + parent: 2 + - uid: 1869 components: - type: Transform - pos: 15.5,3.5 - parent: 16504 - - uid: 17887 + pos: 71.5,26.5 + parent: 2 + - uid: 1870 components: - type: Transform - pos: 14.5,3.5 - parent: 16504 - - uid: 17888 + pos: 71.5,25.5 + parent: 2 + - uid: 1871 components: - type: Transform - pos: 11.5,2.5 - parent: 16504 - - uid: 17889 + pos: 71.5,24.5 + parent: 2 + - uid: 1872 components: - type: Transform - pos: 11.5,3.5 - parent: 16504 - - uid: 17890 + pos: 71.5,23.5 + parent: 2 + - uid: 1873 components: - type: Transform - pos: 10.5,2.5 - parent: 16504 - - uid: 17891 + pos: 71.5,22.5 + parent: 2 + - uid: 1874 components: - type: Transform - pos: 10.5,4.5 - parent: 16504 - - uid: 17892 + pos: 71.5,21.5 + parent: 2 + - uid: 1875 components: - type: Transform - pos: 14.5,4.5 - parent: 16504 - - uid: 17893 + pos: 71.5,20.5 + parent: 2 + - uid: 1876 components: - type: Transform - pos: 14.5,5.5 - parent: 16504 - - uid: 17894 + pos: 71.5,19.5 + parent: 2 + - uid: 1877 components: - type: Transform - pos: 14.5,6.5 - parent: 16504 - - uid: 17895 + pos: 71.5,18.5 + parent: 2 + - uid: 1878 components: - type: Transform - pos: 14.5,2.5 - parent: 16504 - - uid: 17896 + pos: 71.5,17.5 + parent: 2 + - uid: 1879 components: - type: Transform - pos: 14.5,1.5 - parent: 16504 - - uid: 17897 + pos: 71.5,16.5 + parent: 2 + - uid: 1880 components: - type: Transform - pos: 14.5,0.5 - parent: 16504 - - uid: 17898 + pos: 71.5,15.5 + parent: 2 + - uid: 1881 components: - type: Transform - pos: 12.5,-9.5 - parent: 16504 - - uid: 17899 + pos: 71.5,14.5 + parent: 2 + - uid: 1882 components: - type: Transform - pos: 12.5,-8.5 - parent: 16504 - - uid: 17900 + pos: 71.5,13.5 + parent: 2 + - uid: 1883 components: - type: Transform - pos: 12.5,-7.5 - parent: 16504 - - uid: 17901 + pos: 70.5,13.5 + parent: 2 + - uid: 1884 components: - type: Transform - pos: 12.5,-6.5 - parent: 16504 - - uid: 17902 + pos: 69.5,13.5 + parent: 2 + - uid: 1885 components: - type: Transform - pos: 12.5,-5.5 - parent: 16504 - - uid: 17903 + pos: 68.5,13.5 + parent: 2 + - uid: 1886 components: - type: Transform - pos: 12.5,-4.5 - parent: 16504 - - uid: 17904 + pos: 67.5,13.5 + parent: 2 + - uid: 1887 components: - type: Transform - pos: 12.5,-3.5 - parent: 16504 - - uid: 17905 + pos: 66.5,13.5 + parent: 2 + - uid: 1888 components: - type: Transform - pos: 12.5,-2.5 - parent: 16504 - - uid: 17906 + pos: 65.5,13.5 + parent: 2 + - uid: 1889 components: - type: Transform - pos: 13.5,-1.5 - parent: 16504 - - uid: 17907 + pos: 64.5,13.5 + parent: 2 + - uid: 1890 components: - type: Transform - pos: 12.5,-1.5 - parent: 16504 - - uid: 17908 + pos: 63.5,13.5 + parent: 2 + - uid: 1891 components: - type: Transform - pos: 12.5,2.5 - parent: 16504 - - uid: 17909 + pos: 62.5,13.5 + parent: 2 + - uid: 1892 components: - type: Transform - pos: 13.5,2.5 - parent: 16504 - - uid: 17910 + pos: 61.5,13.5 + parent: 2 + - uid: 1893 components: - type: Transform - pos: 11.5,4.5 - parent: 16504 - - uid: 17911 + pos: 60.5,13.5 + parent: 2 + - uid: 1894 components: - type: Transform - pos: 12.5,4.5 - parent: 16504 - - uid: 17912 + pos: 59.5,13.5 + parent: 2 + - uid: 1895 components: - type: Transform - pos: 13.5,4.5 - parent: 16504 - - uid: 17913 + pos: 58.5,13.5 + parent: 2 + - uid: 1896 components: - type: Transform - pos: -16.5,12.5 - parent: 16504 - - uid: 17914 + pos: 57.5,13.5 + parent: 2 + - uid: 1897 components: - type: Transform - pos: -17.5,12.5 - parent: 16504 - - uid: 17915 + pos: 56.5,13.5 + parent: 2 + - uid: 1898 components: - type: Transform - pos: -18.5,12.5 - parent: 16504 - - uid: 17916 + pos: 55.5,13.5 + parent: 2 + - uid: 1899 components: - type: Transform - pos: -19.5,12.5 - parent: 16504 - - uid: 17917 + pos: 54.5,13.5 + parent: 2 + - uid: 1900 components: - type: Transform - pos: -20.5,12.5 - parent: 16504 - - uid: 17918 + pos: 53.5,13.5 + parent: 2 + - uid: 1901 components: - type: Transform - pos: -20.5,11.5 - parent: 16504 - - uid: 17919 + pos: 52.5,13.5 + parent: 2 + - uid: 1902 components: - type: Transform - pos: -20.5,10.5 - parent: 16504 - - uid: 17920 + pos: 51.5,13.5 + parent: 2 + - uid: 1903 components: - type: Transform - pos: -20.5,9.5 - parent: 16504 - - uid: 17921 + pos: 50.5,13.5 + parent: 2 + - uid: 1904 components: - type: Transform - pos: -20.5,8.5 - parent: 16504 - - uid: 17922 + pos: 49.5,13.5 + parent: 2 + - uid: 1905 components: - type: Transform - pos: -20.5,7.5 - parent: 16504 - - uid: 17923 + pos: 48.5,13.5 + parent: 2 + - uid: 1906 components: - type: Transform - pos: -20.5,6.5 - parent: 16504 - - uid: 17924 + pos: 47.5,13.5 + parent: 2 + - uid: 1907 components: - type: Transform - pos: -19.5,6.5 - parent: 16504 - - uid: 17925 + pos: 46.5,13.5 + parent: 2 + - uid: 1908 components: - type: Transform - pos: -18.5,6.5 - parent: 16504 - - uid: 17926 + pos: 45.5,13.5 + parent: 2 + - uid: 1909 components: - type: Transform - pos: -17.5,6.5 - parent: 16504 - - uid: 17927 + pos: 44.5,13.5 + parent: 2 + - uid: 1910 components: - type: Transform - pos: -16.5,6.5 - parent: 16504 - - uid: 17928 + pos: 43.5,13.5 + parent: 2 + - uid: 1911 components: - type: Transform - pos: -16.5,7.5 - parent: 16504 - - uid: 17929 + pos: 42.5,13.5 + parent: 2 + - uid: 1912 components: - type: Transform - pos: -16.5,8.5 - parent: 16504 - - uid: 17930 + pos: 41.5,13.5 + parent: 2 + - uid: 1913 components: - type: Transform - pos: -16.5,9.5 - parent: 16504 - - uid: 17931 + pos: 40.5,13.5 + parent: 2 + - uid: 1914 components: - type: Transform - pos: -16.5,10.5 - parent: 16504 - - uid: 17932 + pos: 39.5,13.5 + parent: 2 + - uid: 1917 components: - type: Transform - pos: -15.5,10.5 - parent: 16504 - - uid: 17933 + pos: 36.5,13.5 + parent: 2 + - uid: 1918 components: - type: Transform - pos: -14.5,10.5 - parent: 16504 - - uid: 17934 + pos: 36.5,14.5 + parent: 2 + - uid: 1919 components: - type: Transform - pos: -14.5,11.5 - parent: 16504 - - uid: 17935 + pos: 36.5,15.5 + parent: 2 + - uid: 1920 components: - type: Transform - pos: -14.5,12.5 - parent: 16504 - - uid: 17936 + pos: 36.5,16.5 + parent: 2 + - uid: 1921 components: - type: Transform - pos: -14.5,13.5 - parent: 16504 - - uid: 17937 + pos: 36.5,17.5 + parent: 2 + - uid: 1922 components: - type: Transform - pos: -14.5,14.5 - parent: 16504 - - uid: 17938 + pos: 36.5,18.5 + parent: 2 + - uid: 1923 components: - type: Transform - pos: -14.5,15.5 - parent: 16504 - - uid: 17939 + pos: 36.5,19.5 + parent: 2 + - uid: 1924 components: - type: Transform - pos: -14.5,16.5 - parent: 16504 - - uid: 17940 + pos: 36.5,20.5 + parent: 2 + - uid: 1925 components: - type: Transform - pos: -14.5,17.5 - parent: 16504 - - uid: 17941 + pos: 36.5,21.5 + parent: 2 + - uid: 1926 components: - type: Transform - pos: -25.5,24.5 - parent: 16504 - - uid: 17942 + pos: 36.5,22.5 + parent: 2 + - uid: 1927 components: - type: Transform - pos: -27.5,26.5 - parent: 16504 - - uid: 17943 + pos: 36.5,23.5 + parent: 2 + - uid: 1928 components: - type: Transform - pos: -26.5,26.5 - parent: 16504 - - uid: 17944 + pos: 36.5,24.5 + parent: 2 + - uid: 1929 components: - type: Transform - pos: -25.5,26.5 - parent: 16504 - - uid: 17945 + pos: 36.5,25.5 + parent: 2 + - uid: 1930 components: - type: Transform - pos: -24.5,26.5 - parent: 16504 - - uid: 17946 + pos: 36.5,26.5 + parent: 2 + - uid: 1931 components: - type: Transform - pos: -25.5,27.5 - parent: 16504 - - uid: 17947 + pos: 36.5,27.5 + parent: 2 + - uid: 1932 components: - type: Transform - pos: -25.5,28.5 - parent: 16504 - - uid: 17948 + pos: 36.5,28.5 + parent: 2 + - uid: 1933 components: - type: Transform - pos: -25.5,29.5 - parent: 16504 - - uid: 17949 + pos: 36.5,29.5 + parent: 2 + - uid: 1934 components: - type: Transform - pos: -25.5,30.5 - parent: 16504 - - uid: 17950 + pos: 36.5,30.5 + parent: 2 + - uid: 1935 components: - type: Transform - pos: -25.5,25.5 - parent: 16504 - - uid: 17951 + pos: 36.5,31.5 + parent: 2 + - uid: 1936 components: - type: Transform - pos: -25.5,31.5 - parent: 16504 - - uid: 17952 + pos: 36.5,32.5 + parent: 2 + - uid: 1937 components: - type: Transform - pos: -26.5,31.5 - parent: 16504 - - uid: 17953 + pos: 36.5,33.5 + parent: 2 + - uid: 1938 components: - type: Transform - pos: -27.5,31.5 - parent: 16504 - - uid: 17954 + pos: 36.5,34.5 + parent: 2 + - uid: 1939 components: - type: Transform - pos: -24.5,31.5 - parent: 16504 - - uid: 17955 + pos: 36.5,35.5 + parent: 2 + - uid: 1940 components: - type: Transform - pos: -23.5,31.5 - parent: 16504 - - uid: 17956 + pos: 36.5,36.5 + parent: 2 + - uid: 1941 components: - type: Transform - pos: -22.5,31.5 - parent: 16504 - - uid: 17957 + pos: 27.5,12.5 + parent: 2 + - uid: 1942 components: - type: Transform - pos: -23.5,26.5 - parent: 16504 - - uid: 17958 + pos: 27.5,11.5 + parent: 2 + - uid: 1943 components: - type: Transform - pos: -22.5,26.5 - parent: 16504 - - uid: 17959 + pos: 27.5,10.5 + parent: 2 + - uid: 1944 components: - type: Transform - pos: -25.5,23.5 - parent: 16504 - - uid: 17960 + pos: 27.5,9.5 + parent: 2 + - uid: 1945 components: - type: Transform - pos: -26.5,23.5 - parent: 16504 - - uid: 17961 + pos: 27.5,8.5 + parent: 2 + - uid: 1946 components: - type: Transform - pos: -24.5,23.5 - parent: 16504 - - uid: 17962 + pos: 27.5,7.5 + parent: 2 + - uid: 1947 components: - type: Transform - pos: -23.5,23.5 - parent: 16504 - - uid: 17963 + pos: 27.5,6.5 + parent: 2 + - uid: 1948 components: - type: Transform - pos: -24.5,29.5 - parent: 16504 - - uid: 17964 + pos: 27.5,5.5 + parent: 2 + - uid: 1949 components: - type: Transform - pos: -23.5,29.5 - parent: 16504 - - uid: 17965 + pos: 27.5,4.5 + parent: 2 + - uid: 1950 components: - type: Transform - pos: -26.5,29.5 - parent: 16504 - - uid: 17966 + pos: 28.5,4.5 + parent: 2 + - uid: 1951 components: - type: Transform - pos: -15.5,15.5 - parent: 16504 - - uid: 17967 + pos: 29.5,4.5 + parent: 2 + - uid: 1952 components: - type: Transform - pos: -16.5,15.5 - parent: 16504 - - uid: 17968 + pos: 30.5,4.5 + parent: 2 + - uid: 1953 components: - type: Transform - pos: -17.5,15.5 - parent: 16504 - - uid: 17969 + pos: 31.5,4.5 + parent: 2 + - uid: 1954 components: - type: Transform - pos: -18.5,15.5 - parent: 16504 - - uid: 17970 + pos: 32.5,4.5 + parent: 2 + - uid: 1955 components: - type: Transform - pos: -19.5,15.5 - parent: 16504 - - uid: 17971 + pos: 32.5,5.5 + parent: 2 + - uid: 1956 components: - type: Transform - pos: -13.5,15.5 - parent: 16504 - - uid: 17972 + pos: 32.5,6.5 + parent: 2 + - uid: 1957 components: - type: Transform - pos: -12.5,15.5 - parent: 16504 - - uid: 17973 + pos: 32.5,7.5 + parent: 2 + - uid: 1958 components: - type: Transform - pos: 14.5,33.5 - parent: 16504 - - uid: 17974 + pos: 32.5,8.5 + parent: 2 + - uid: 1959 components: - type: Transform - pos: -12.5,24.5 - parent: 16504 - - uid: 17975 + pos: 32.5,9.5 + parent: 2 + - uid: 1960 components: - type: Transform - pos: -10.5,31.5 - parent: 16504 - - uid: 17976 + pos: 32.5,10.5 + parent: 2 + - uid: 1961 components: - type: Transform - pos: -11.5,31.5 - parent: 16504 - - uid: 17977 + pos: 32.5,11.5 + parent: 2 + - uid: 1962 components: - type: Transform - pos: -12.5,31.5 - parent: 16504 - - uid: 17978 + pos: 32.5,12.5 + parent: 2 + - uid: 1963 components: - type: Transform - pos: -12.5,30.5 - parent: 16504 - - uid: 17979 + pos: 30.5,11.5 + parent: 2 + - uid: 1964 components: - type: Transform - pos: -12.5,29.5 - parent: 16504 - - uid: 17980 + pos: 29.5,11.5 + parent: 2 + - uid: 1965 components: - type: Transform - pos: -12.5,28.5 - parent: 16504 - - uid: 17981 + pos: 31.5,11.5 + parent: 2 + - uid: 1966 components: - type: Transform - pos: -13.5,28.5 - parent: 16504 - - uid: 17982 + pos: 28.5,11.5 + parent: 2 + - uid: 1967 components: - type: Transform - pos: -14.5,28.5 - parent: 16504 - - uid: 17983 + pos: 59.5,-2.5 + parent: 2 + - uid: 1968 components: - type: Transform - pos: -15.5,28.5 - parent: 16504 - - uid: 17984 + pos: 53.5,49.5 + parent: 2 + - uid: 1969 components: - type: Transform - pos: -16.5,28.5 - parent: 16504 - - uid: 17985 + pos: 53.5,48.5 + parent: 2 + - uid: 1970 components: - type: Transform - pos: -17.5,28.5 - parent: 16504 - - uid: 17986 + pos: 53.5,47.5 + parent: 2 + - uid: 1971 components: - type: Transform - pos: -17.5,29.5 - parent: 16504 - - uid: 17987 + pos: 52.5,47.5 + parent: 2 + - uid: 1972 components: - type: Transform - pos: -17.5,30.5 - parent: 16504 - - uid: 17988 + pos: 51.5,47.5 + parent: 2 + - uid: 1973 components: - type: Transform - pos: -17.5,31.5 - parent: 16504 - - uid: 17989 + pos: 50.5,47.5 + parent: 2 + - uid: 1974 components: - type: Transform - pos: -17.5,32.5 - parent: 16504 - - uid: 17990 + pos: 49.5,47.5 + parent: 2 + - uid: 1975 components: - type: Transform - pos: -17.5,33.5 - parent: 16504 - - uid: 17991 + pos: 55.5,47.5 + parent: 2 + - uid: 1976 components: - type: Transform - pos: -17.5,34.5 - parent: 16504 - - uid: 17992 + pos: 56.5,47.5 + parent: 2 + - uid: 1977 components: - type: Transform - pos: -17.5,35.5 - parent: 16504 - - uid: 17993 + pos: 61.5,45.5 + parent: 2 + - uid: 1978 components: - type: Transform - pos: -16.5,35.5 - parent: 16504 - - uid: 17994 + pos: 61.5,44.5 + parent: 2 + - uid: 1979 components: - type: Transform - pos: -15.5,35.5 - parent: 16504 - - uid: 17995 + pos: 62.5,44.5 + parent: 2 + - uid: 1980 components: - type: Transform - pos: -14.5,35.5 - parent: 16504 - - uid: 17996 + pos: 63.5,44.5 + parent: 2 + - uid: 1981 components: - type: Transform - pos: -13.5,35.5 - parent: 16504 - - uid: 17997 + pos: 64.5,44.5 + parent: 2 + - uid: 1982 components: - type: Transform - pos: -12.5,35.5 - parent: 16504 - - uid: 17998 + pos: 65.5,44.5 + parent: 2 + - uid: 1983 components: - type: Transform - pos: -11.5,35.5 - parent: 16504 - - uid: 17999 + pos: 66.5,44.5 + parent: 2 + - uid: 1984 components: - type: Transform - pos: -10.5,35.5 - parent: 16504 - - uid: 18000 + pos: 67.5,44.5 + parent: 2 + - uid: 1985 components: - type: Transform - pos: -9.5,35.5 - parent: 16504 - - uid: 18001 + pos: 68.5,44.5 + parent: 2 + - uid: 1986 components: - type: Transform - pos: -8.5,35.5 - parent: 16504 - - uid: 18002 + pos: 63.5,43.5 + parent: 2 + - uid: 1987 components: - type: Transform - pos: -7.5,35.5 - parent: 16504 - - uid: 18003 + pos: 63.5,42.5 + parent: 2 + - uid: 1988 components: - type: Transform - pos: -10.5,32.5 - parent: 16504 - - uid: 18004 + pos: 63.5,41.5 + parent: 2 + - uid: 1989 components: - type: Transform - pos: -10.5,33.5 - parent: 16504 - - uid: 18005 + pos: 63.5,40.5 + parent: 2 + - uid: 1990 components: - type: Transform - pos: -10.5,34.5 - parent: 16504 - - uid: 18006 + pos: 63.5,39.5 + parent: 2 + - uid: 1991 components: - type: Transform - pos: -14.5,36.5 - parent: 16504 - - uid: 18007 + pos: 63.5,38.5 + parent: 2 + - uid: 1992 components: - type: Transform - pos: -14.5,37.5 - parent: 16504 - - uid: 18008 + pos: 63.5,37.5 + parent: 2 + - uid: 1993 components: - type: Transform - pos: -13.5,37.5 - parent: 16504 - - uid: 18009 + pos: 63.5,36.5 + parent: 2 + - uid: 1994 components: - type: Transform - pos: -12.5,37.5 - parent: 16504 - - uid: 18010 + pos: 63.5,35.5 + parent: 2 + - uid: 1995 components: - type: Transform - pos: -11.5,37.5 - parent: 16504 - - uid: 18011 + pos: 57.5,45.5 + parent: 2 + - uid: 1996 components: - type: Transform - pos: -10.5,37.5 - parent: 16504 - - uid: 18012 + pos: 56.5,45.5 + parent: 2 + - uid: 1997 components: - type: Transform - pos: -10.5,36.5 - parent: 16504 - - uid: 18013 + pos: 55.5,45.5 + parent: 2 + - uid: 1998 components: - type: Transform - pos: -8.5,34.5 - parent: 16504 - - uid: 18014 + pos: 54.5,45.5 + parent: 2 + - uid: 1999 components: - type: Transform - pos: -8.5,33.5 - parent: 16504 - - uid: 18015 + pos: 52.5,45.5 + parent: 2 + - uid: 2000 components: - type: Transform - pos: -17.5,26.5 - parent: 16504 - - uid: 18016 + pos: 51.5,45.5 + parent: 2 + - uid: 2001 components: - type: Transform - pos: -17.5,25.5 - parent: 16504 - - uid: 18017 + pos: 50.5,45.5 + parent: 2 + - uid: 2002 components: - type: Transform - pos: -17.5,24.5 - parent: 16504 - - uid: 18018 + pos: 49.5,45.5 + parent: 2 + - uid: 2003 components: - type: Transform - pos: -17.5,23.5 - parent: 16504 - - uid: 18019 + pos: 49.5,44.5 + parent: 2 + - uid: 2004 components: - type: Transform - pos: -17.5,22.5 - parent: 16504 - - uid: 18020 + pos: 49.5,43.5 + parent: 2 + - uid: 2005 components: - type: Transform - pos: -17.5,21.5 - parent: 16504 - - uid: 18021 + pos: 49.5,42.5 + parent: 2 + - uid: 2006 components: - type: Transform - pos: -17.5,20.5 - parent: 16504 - - uid: 18022 + pos: 49.5,41.5 + parent: 2 + - uid: 2007 components: - type: Transform - pos: -17.5,19.5 - parent: 16504 - - uid: 18023 + pos: 49.5,40.5 + parent: 2 + - uid: 2008 components: - type: Transform - pos: -16.5,22.5 - parent: 16504 - - uid: 18024 + pos: 48.5,40.5 + parent: 2 + - uid: 2009 components: - type: Transform - pos: -7.5,36.5 - parent: 16504 - - uid: 18025 + pos: 47.5,40.5 + parent: 2 + - uid: 2010 components: - type: Transform - pos: -18.5,22.5 - parent: 16504 - - uid: 18026 + pos: 43.5,38.5 + parent: 2 + - uid: 2011 components: - type: Transform - pos: -15.5,22.5 - parent: 16504 - - uid: 18027 + pos: 44.5,38.5 + parent: 2 + - uid: 2012 components: - type: Transform - pos: -14.5,22.5 - parent: 16504 - - uid: 18028 + pos: 42.5,38.5 + parent: 2 + - uid: 2013 components: - type: Transform - pos: -13.5,22.5 - parent: 16504 - - uid: 18029 + pos: 41.5,38.5 + parent: 2 + - uid: 2014 components: - type: Transform - pos: -12.5,22.5 - parent: 16504 - - uid: 18030 + pos: 40.5,38.5 + parent: 2 + - uid: 2015 components: - type: Transform - pos: -11.5,22.5 - parent: 16504 - - uid: 18031 + pos: 39.5,38.5 + parent: 2 + - uid: 2016 components: - type: Transform - pos: -10.5,22.5 - parent: 16504 - - uid: 18032 + pos: 64.5,29.5 + parent: 2 + - uid: 2017 components: - type: Transform - pos: -9.5,22.5 - parent: 16504 - - uid: 18033 + pos: 64.5,28.5 + parent: 2 + - uid: 2018 components: - type: Transform - pos: -8.5,22.5 - parent: 16504 - - uid: 18034 + pos: 65.5,28.5 + parent: 2 + - uid: 2019 components: - type: Transform - pos: -7.5,22.5 - parent: 16504 - - uid: 18035 + pos: 66.5,28.5 + parent: 2 + - uid: 2020 components: - type: Transform - pos: -6.5,22.5 - parent: 16504 - - uid: 18036 + pos: 67.5,28.5 + parent: 2 + - uid: 2021 components: - type: Transform - pos: -12.5,23.5 - parent: 16504 - - uid: 18037 + pos: 68.5,28.5 + parent: 2 + - uid: 2022 components: - type: Transform - pos: -12.5,21.5 - parent: 16504 - - uid: 18038 + pos: 67.5,29.5 + parent: 2 + - uid: 2023 components: - type: Transform - pos: -12.5,20.5 - parent: 16504 - - uid: 18039 + pos: 67.5,30.5 + parent: 2 + - uid: 2024 components: - type: Transform - pos: -8.5,23.5 - parent: 16504 - - uid: 18040 + pos: 67.5,27.5 + parent: 2 + - uid: 2025 components: - type: Transform - pos: -8.5,24.5 - parent: 16504 - - uid: 18041 + pos: 67.5,26.5 + parent: 2 + - uid: 2026 components: - type: Transform - pos: -8.5,21.5 - parent: 16504 - - uid: 18042 + pos: 67.5,25.5 + parent: 2 + - uid: 2027 components: - type: Transform - pos: -17.5,36.5 - parent: 16504 - - uid: 18043 + pos: 67.5,24.5 + parent: 2 + - uid: 2028 components: - type: Transform - pos: -17.5,37.5 - parent: 16504 - - uid: 18044 + pos: 64.5,30.5 + parent: 2 + - uid: 2029 components: - type: Transform - pos: -8.5,20.5 - parent: 16504 - - uid: 18045 + pos: 64.5,31.5 + parent: 2 + - uid: 2030 components: - type: Transform - pos: -5.5,28.5 - parent: 16504 - - uid: 18046 + pos: 64.5,32.5 + parent: 2 + - uid: 2031 components: - type: Transform - pos: -6.5,28.5 - parent: 16504 - - uid: 18047 + pos: 64.5,33.5 + parent: 2 + - uid: 2032 components: - type: Transform - pos: -7.5,28.5 - parent: 16504 - - uid: 18048 + pos: 65.5,33.5 + parent: 2 + - uid: 2033 components: - type: Transform - pos: -8.5,28.5 - parent: 16504 - - uid: 18049 + pos: 66.5,33.5 + parent: 2 + - uid: 2034 components: - type: Transform - pos: -9.5,28.5 - parent: 16504 - - uid: 18050 + pos: 67.5,33.5 + parent: 2 + - uid: 2035 components: - type: Transform - pos: -8.5,27.5 - parent: 16504 - - uid: 18051 + pos: 68.5,33.5 + parent: 2 + - uid: 2036 components: - type: Transform - pos: -8.5,29.5 - parent: 16504 - - uid: 18052 + pos: 64.5,27.5 + parent: 2 + - uid: 2037 components: - type: Transform - pos: -7.5,37.5 - parent: 16504 - - uid: 18053 + pos: 64.5,26.5 + parent: 2 + - uid: 2038 components: - type: Transform - pos: -6.5,37.5 - parent: 16504 - - uid: 18054 + pos: 64.5,25.5 + parent: 2 + - uid: 2039 components: - type: Transform - pos: -6.5,38.5 - parent: 16504 - - uid: 18055 + pos: 64.5,24.5 + parent: 2 + - uid: 2040 components: - type: Transform - pos: -6.5,39.5 - parent: 16504 - - uid: 18056 + pos: 64.5,23.5 + parent: 2 + - uid: 2041 components: - type: Transform - pos: -6.5,40.5 - parent: 16504 - - uid: 18057 + pos: 64.5,22.5 + parent: 2 + - uid: 2042 components: - type: Transform - pos: -12.5,32.5 - parent: 16504 - - uid: 18058 + pos: 64.5,21.5 + parent: 2 + - uid: 2043 components: - type: Transform - pos: 16.5,19.5 - parent: 16504 - - uid: 18059 + pos: 64.5,20.5 + parent: 2 + - uid: 2044 components: - type: Transform - pos: 16.5,18.5 - parent: 16504 - - uid: 18060 + pos: 64.5,19.5 + parent: 2 + - uid: 2045 components: - type: Transform - pos: 16.5,17.5 - parent: 16504 - - uid: 18061 + pos: 64.5,18.5 + parent: 2 + - uid: 2046 components: - type: Transform - pos: 16.5,16.5 - parent: 16504 - - uid: 18062 + pos: 64.5,17.5 + parent: 2 + - uid: 2047 components: - type: Transform - pos: 17.5,16.5 - parent: 16504 - - uid: 18063 + pos: 63.5,17.5 + parent: 2 + - uid: 2048 components: - type: Transform - pos: 17.5,15.5 - parent: 16504 - - uid: 18064 + pos: 62.5,17.5 + parent: 2 + - uid: 2049 components: - type: Transform - pos: 17.5,14.5 - parent: 16504 - - uid: 18065 + pos: 61.5,17.5 + parent: 2 + - uid: 2050 components: - type: Transform - pos: 17.5,13.5 - parent: 16504 - - uid: 18066 + pos: 60.5,17.5 + parent: 2 + - uid: 2051 components: - type: Transform - pos: 17.5,12.5 - parent: 16504 - - uid: 18067 + pos: 60.5,16.5 + parent: 2 + - uid: 2052 components: - type: Transform - pos: 18.5,12.5 - parent: 16504 - - uid: 18068 + pos: 66.5,21.5 + parent: 2 + - uid: 2053 components: - type: Transform - pos: 19.5,12.5 - parent: 16504 - - uid: 18069 + pos: 67.5,21.5 + parent: 2 + - uid: 2054 components: - type: Transform - pos: 20.5,12.5 - parent: 16504 - - uid: 18070 + pos: 65.5,21.5 + parent: 2 + - uid: 2055 components: - type: Transform - pos: 21.5,12.5 - parent: 16504 - - uid: 18071 + pos: 67.5,19.5 + parent: 2 + - uid: 2056 components: - type: Transform - pos: 15.5,16.5 - parent: 16504 - - uid: 18072 + pos: 67.5,18.5 + parent: 2 + - uid: 2057 components: - type: Transform - pos: 14.5,16.5 - parent: 16504 - - uid: 18073 + pos: 67.5,17.5 + parent: 2 + - uid: 2058 components: - type: Transform - pos: 13.5,16.5 - parent: 16504 - - uid: 18074 + pos: 67.5,16.5 + parent: 2 + - uid: 2059 components: - type: Transform - pos: 12.5,16.5 - parent: 16504 - - uid: 18075 + pos: 68.5,16.5 + parent: 2 + - uid: 2060 components: - type: Transform - pos: 11.5,16.5 - parent: 16504 - - uid: 18076 + pos: 67.5,20.5 + parent: 2 + - uid: 2061 components: - type: Transform - pos: 0.5,15.5 - parent: 16504 - - uid: 18077 + pos: 69.5,16.5 + parent: 2 + - uid: 2062 components: - type: Transform - pos: -0.5,15.5 - parent: 16504 - - uid: 18078 + pos: 71.5,12.5 + parent: 2 + - uid: 2063 components: - type: Transform - pos: -1.5,19.5 - parent: 16504 - - uid: 18079 + pos: 71.5,11.5 + parent: 2 + - uid: 2064 components: - type: Transform - pos: -1.5,18.5 - parent: 16504 - - uid: 18080 + pos: 71.5,10.5 + parent: 2 + - uid: 2065 components: - type: Transform - pos: -1.5,17.5 - parent: 16504 - - uid: 18081 + pos: 71.5,9.5 + parent: 2 + - uid: 2066 components: - type: Transform - pos: -1.5,16.5 - parent: 16504 - - uid: 18082 + pos: 71.5,8.5 + parent: 2 + - uid: 2067 components: - type: Transform - pos: -2.5,16.5 - parent: 16504 - - uid: 18083 + pos: 71.5,7.5 + parent: 2 + - uid: 2068 components: - type: Transform - pos: -3.5,16.5 - parent: 16504 - - uid: 18084 + pos: 71.5,6.5 + parent: 2 + - uid: 2069 components: - type: Transform - pos: -4.5,16.5 - parent: 16504 - - uid: 18085 + pos: 71.5,5.5 + parent: 2 + - uid: 2070 components: - type: Transform - pos: -0.5,16.5 - parent: 16504 - - uid: 18086 + pos: 71.5,4.5 + parent: 2 + - uid: 2071 components: - type: Transform - pos: 1.5,15.5 - parent: 16504 - - uid: 18087 + pos: 71.5,3.5 + parent: 2 + - uid: 2072 components: - type: Transform - pos: 1.5,16.5 - parent: 16504 - - uid: 18088 + pos: 70.5,3.5 + parent: 2 + - uid: 2073 components: - type: Transform - pos: 2.5,16.5 - parent: 16504 - - uid: 18089 + pos: 69.5,3.5 + parent: 2 + - uid: 2074 components: - type: Transform - pos: 3.5,16.5 - parent: 16504 - - uid: 18090 + pos: 68.5,3.5 + parent: 2 + - uid: 2075 components: - type: Transform - pos: 4.5,16.5 - parent: 16504 - - uid: 18091 + pos: 67.5,3.5 + parent: 2 + - uid: 2076 components: - type: Transform - pos: 5.5,16.5 - parent: 16504 - - uid: 18092 + pos: 66.5,3.5 + parent: 2 + - uid: 2077 components: - type: Transform - pos: 6.5,16.5 - parent: 16504 - - uid: 18093 + pos: 65.5,3.5 + parent: 2 + - uid: 2078 components: - type: Transform - pos: 7.5,16.5 - parent: 16504 - - uid: 18094 + pos: 64.5,3.5 + parent: 2 + - uid: 2079 components: - type: Transform - pos: 8.5,16.5 - parent: 16504 - - uid: 18095 + pos: 63.5,3.5 + parent: 2 + - uid: 2080 components: - type: Transform - pos: 0.5,14.5 - parent: 16504 - - uid: 18096 + pos: 62.5,3.5 + parent: 2 + - uid: 2081 components: - type: Transform - pos: -0.5,18.5 - parent: 16504 - - uid: 18097 + pos: 62.5,4.5 + parent: 2 + - uid: 2082 components: - type: Transform - pos: 0.5,18.5 - parent: 16504 - - uid: 18098 + pos: 62.5,5.5 + parent: 2 + - uid: 2083 components: - type: Transform - pos: 0.5,19.5 - parent: 16504 - - uid: 18099 + pos: 62.5,6.5 + parent: 2 + - uid: 2084 components: - type: Transform - pos: 0.5,20.5 - parent: 16504 - - uid: 18100 + pos: 62.5,7.5 + parent: 2 + - uid: 2085 components: - type: Transform - pos: -0.5,20.5 - parent: 16504 - - uid: 18101 + pos: 62.5,8.5 + parent: 2 + - uid: 2086 components: - type: Transform - pos: 1.5,20.5 - parent: 16504 - - uid: 18102 + pos: 58.5,10.5 + parent: 2 + - uid: 2087 components: - type: Transform - pos: 18.5,34.5 - parent: 16504 - - uid: 18103 + pos: 57.5,10.5 + parent: 2 + - uid: 2088 components: - type: Transform - pos: -11.5,15.5 - parent: 16504 - - uid: 18104 + pos: 56.5,10.5 + parent: 2 + - uid: 2089 components: - type: Transform - pos: -10.5,15.5 - parent: 16504 - - uid: 18105 + pos: 55.5,10.5 + parent: 2 + - uid: 2090 components: - type: Transform - pos: -9.5,15.5 - parent: 16504 - - uid: 18106 + pos: 54.5,10.5 + parent: 2 + - uid: 2091 components: - type: Transform - pos: -8.5,15.5 - parent: 16504 - - uid: 18107 + pos: 53.5,10.5 + parent: 2 + - uid: 2092 components: - type: Transform - pos: -8.5,16.5 - parent: 16504 - - uid: 18108 + pos: 52.5,10.5 + parent: 2 + - uid: 2093 components: - type: Transform - pos: -8.5,17.5 - parent: 16504 - - uid: 18109 + pos: 51.5,10.5 + parent: 2 + - uid: 2094 components: - type: Transform - pos: -8.5,18.5 - parent: 16504 - - uid: 18110 + pos: 50.5,10.5 + parent: 2 + - uid: 2095 components: - type: Transform - pos: -7.5,16.5 - parent: 16504 - - uid: 18111 + pos: 50.5,9.5 + parent: 2 + - uid: 2096 components: - type: Transform - pos: 17.5,34.5 - parent: 16504 - - uid: 18112 + pos: 50.5,8.5 + parent: 2 + - uid: 2097 components: - type: Transform - pos: 16.5,34.5 - parent: 16504 - - uid: 18113 + pos: 50.5,7.5 + parent: 2 + - uid: 2098 components: - type: Transform - pos: 15.5,34.5 - parent: 16504 - - uid: 18114 + pos: 50.5,6.5 + parent: 2 + - uid: 2099 components: - type: Transform - pos: 14.5,34.5 - parent: 16504 - - uid: 18115 + pos: 62.5,2.5 + parent: 2 + - uid: 2100 components: - type: Transform - pos: 14.5,32.5 - parent: 16504 - - uid: 18116 + pos: 62.5,1.5 + parent: 2 + - uid: 2101 components: - type: Transform - pos: 14.5,31.5 - parent: 16504 - - uid: 18117 + pos: 62.5,0.5 + parent: 2 + - uid: 2102 components: - type: Transform - pos: 14.5,30.5 - parent: 16504 - - uid: 18118 + pos: 62.5,-0.5 + parent: 2 + - uid: 2103 components: - type: Transform - pos: 14.5,35.5 - parent: 16504 - - uid: 18119 + pos: 62.5,-1.5 + parent: 2 + - uid: 2104 components: - type: Transform - pos: 14.5,36.5 - parent: 16504 - - uid: 18120 + pos: 61.5,-1.5 + parent: 2 + - uid: 2105 components: - type: Transform - pos: 14.5,37.5 - parent: 16504 - - uid: 18121 + pos: 60.5,-1.5 + parent: 2 + - uid: 2106 components: - type: Transform - pos: 14.5,38.5 - parent: 16504 - - uid: 18122 + pos: 59.5,-1.5 + parent: 2 + - uid: 2107 components: - type: Transform - pos: 13.5,38.5 - parent: 16504 - - uid: 18123 + pos: 59.5,-3.5 + parent: 2 + - uid: 2108 components: - type: Transform - pos: 12.5,38.5 - parent: 16504 - - uid: 18124 + pos: 59.5,-4.5 + parent: 2 + - uid: 2109 components: - type: Transform - pos: 11.5,38.5 - parent: 16504 - - uid: 18125 + pos: 59.5,-5.5 + parent: 2 + - uid: 2110 components: - type: Transform - pos: 10.5,38.5 - parent: 16504 - - uid: 18126 + pos: 59.5,-6.5 + parent: 2 + - uid: 2111 components: - type: Transform - pos: 10.5,37.5 - parent: 16504 - - uid: 18127 + pos: 59.5,-7.5 + parent: 2 + - uid: 2112 components: - type: Transform - pos: 10.5,36.5 - parent: 16504 - - uid: 18128 + pos: 30.5,-8.5 + parent: 2 + - uid: 2113 components: - type: Transform - pos: 14.5,17.5 - parent: 16504 - - uid: 18129 + pos: 58.5,-7.5 + parent: 2 + - uid: 2114 components: - type: Transform - pos: 14.5,18.5 - parent: 16504 - - uid: 18130 + pos: 57.5,-7.5 + parent: 2 + - uid: 2115 components: - type: Transform - pos: 14.5,19.5 - parent: 16504 - - uid: 18131 + pos: 56.5,-7.5 + parent: 2 + - uid: 2116 components: - type: Transform - pos: 14.5,20.5 - parent: 16504 - - uid: 18132 + pos: 55.5,-7.5 + parent: 2 + - uid: 2117 components: - type: Transform - pos: 16.5,26.5 - parent: 16504 - - uid: 18133 + pos: 54.5,-7.5 + parent: 2 + - uid: 2118 components: - type: Transform - pos: 14.5,21.5 - parent: 16504 - - uid: 18134 + pos: 53.5,-7.5 + parent: 2 + - uid: 2119 components: - type: Transform - pos: 16.5,28.5 - parent: 16504 - - uid: 18135 + pos: 52.5,-7.5 + parent: 2 + - uid: 2120 components: - type: Transform - pos: 16.5,27.5 - parent: 16504 - - uid: 18136 + pos: 52.5,-8.5 + parent: 2 + - uid: 2121 components: - type: Transform - pos: 14.5,28.5 - parent: 16504 - - uid: 18137 + pos: 52.5,-9.5 + parent: 2 + - uid: 2122 components: - type: Transform - pos: 13.5,28.5 - parent: 16504 - - uid: 18138 + pos: 52.5,-10.5 + parent: 2 + - uid: 2123 components: - type: Transform - pos: 15.5,28.5 - parent: 16504 - - uid: 18139 + pos: 52.5,-11.5 + parent: 2 + - uid: 2124 components: - type: Transform - pos: 15.5,20.5 - parent: 16504 - - uid: 18140 + pos: 52.5,-12.5 + parent: 2 + - uid: 2125 components: - type: Transform - pos: 13.5,20.5 - parent: 16504 - - uid: 18141 + pos: 52.5,-13.5 + parent: 2 + - uid: 2126 components: - type: Transform - pos: 14.5,15.5 - parent: 16504 - - uid: 18142 + pos: 52.5,-14.5 + parent: 2 + - uid: 2127 components: - type: Transform - pos: 14.5,14.5 - parent: 16504 - - uid: 18143 + pos: 53.5,-10.5 + parent: 2 + - uid: 2128 components: - type: Transform - pos: 0.5,36.5 - parent: 16504 - - uid: 18144 + pos: 54.5,-10.5 + parent: 2 + - uid: 2129 components: - type: Transform - pos: 0.5,35.5 - parent: 16504 - - uid: 18145 + pos: 55.5,-10.5 + parent: 2 + - uid: 2130 components: - type: Transform - pos: 0.5,34.5 - parent: 16504 - - uid: 18146 + pos: 56.5,-10.5 + parent: 2 + - uid: 2131 components: - type: Transform - pos: 0.5,33.5 - parent: 16504 - - uid: 18147 + pos: 57.5,-10.5 + parent: 2 + - uid: 2132 components: - type: Transform - pos: 0.5,32.5 - parent: 16504 - - uid: 18148 + pos: 58.5,-10.5 + parent: 2 + - uid: 2133 components: - type: Transform - pos: -0.5,34.5 - parent: 16504 - - uid: 18149 + pos: 57.5,-11.5 + parent: 2 + - uid: 2134 components: - type: Transform - pos: -1.5,34.5 - parent: 16504 - - uid: 18150 + pos: 51.5,-14.5 + parent: 2 + - uid: 2135 components: - type: Transform - pos: -2.5,34.5 - parent: 16504 - - uid: 18151 + pos: 50.5,-14.5 + parent: 2 + - uid: 2136 components: - type: Transform - pos: 1.5,34.5 - parent: 16504 - - uid: 18152 + pos: 49.5,-14.5 + parent: 2 + - uid: 2137 components: - type: Transform - pos: 2.5,34.5 - parent: 16504 - - uid: 18153 + pos: 48.5,-14.5 + parent: 2 + - uid: 2138 components: - type: Transform - pos: 3.5,34.5 - parent: 16504 - - uid: 18154 + pos: 48.5,-15.5 + parent: 2 + - uid: 2139 components: - type: Transform - pos: 4.5,34.5 - parent: 16504 - - uid: 18155 + pos: 49.5,-17.5 + parent: 2 + - uid: 2140 components: - type: Transform - pos: 5.5,34.5 - parent: 16504 - - uid: 18156 + pos: 50.5,-17.5 + parent: 2 + - uid: 2141 components: - type: Transform - pos: 6.5,34.5 - parent: 16504 - - uid: 18157 + pos: 51.5,-17.5 + parent: 2 + - uid: 2142 components: - type: Transform - pos: -1.5,36.5 - parent: 16504 - - uid: 18158 + pos: 51.5,-18.5 + parent: 2 + - uid: 2143 components: - type: Transform - pos: -1.5,35.5 - parent: 16504 - - uid: 18159 + pos: 51.5,-19.5 + parent: 2 + - uid: 2144 components: - type: Transform - pos: 2.5,35.5 - parent: 16504 - - uid: 18160 + pos: 48.5,-13.5 + parent: 2 + - uid: 2145 components: - type: Transform - pos: 2.5,36.5 - parent: 16504 - - uid: 18161 + pos: 47.5,-13.5 + parent: 2 + - uid: 2146 components: - type: Transform - pos: 2.5,37.5 - parent: 16504 - - uid: 18162 + pos: 46.5,-13.5 + parent: 2 + - uid: 2147 components: - type: Transform - pos: -1.5,37.5 - parent: 16504 - - uid: 18163 + pos: 45.5,-13.5 + parent: 2 + - uid: 2148 components: - type: Transform - pos: -2.5,37.5 - parent: 16504 - - uid: 18164 + pos: 44.5,-13.5 + parent: 2 + - uid: 2149 components: - type: Transform - pos: 3.5,37.5 - parent: 16504 - - uid: 18165 + pos: 43.5,-13.5 + parent: 2 + - uid: 2150 components: - type: Transform - pos: 4.5,37.5 - parent: 16504 - - uid: 18166 + pos: 42.5,-13.5 + parent: 2 + - uid: 2151 components: - type: Transform - pos: -3.5,37.5 - parent: 16504 - - uid: 18167 + pos: 41.5,-13.5 + parent: 2 + - uid: 2152 components: - type: Transform - pos: 5.5,37.5 - parent: 16504 - - uid: 18168 + pos: 41.5,-12.5 + parent: 2 + - uid: 2153 components: - type: Transform - pos: 0.5,31.5 - parent: 16504 - - uid: 18169 + pos: 41.5,-11.5 + parent: 2 + - uid: 2154 components: - type: Transform - pos: 0.5,30.5 - parent: 16504 - - uid: 18170 + pos: 41.5,-10.5 + parent: 2 + - uid: 2155 components: - type: Transform - pos: 0.5,29.5 - parent: 16504 - - uid: 18171 + pos: 40.5,-11.5 + parent: 2 + - uid: 2156 components: - type: Transform - pos: 0.5,28.5 - parent: 16504 - - uid: 18172 + pos: 39.5,-11.5 + parent: 2 + - uid: 2158 components: - type: Transform - pos: 0.5,27.5 - parent: 16504 - - uid: 18173 + pos: 37.5,-11.5 + parent: 2 + - uid: 2159 components: - type: Transform - pos: 0.5,26.5 - parent: 16504 - - uid: 18174 + pos: 39.5,-12.5 + parent: 2 + - uid: 2160 components: - type: Transform - pos: 0.5,25.5 - parent: 16504 - - uid: 18175 + pos: 39.5,-13.5 + parent: 2 + - uid: 2161 components: - type: Transform - pos: 0.5,44.5 - parent: 16504 - - uid: 18176 + pos: 37.5,-10.5 + parent: 2 + - uid: 2162 components: - type: Transform - pos: 0.5,43.5 - parent: 16504 - - uid: 18177 + pos: 37.5,-9.5 + parent: 2 + - uid: 2163 components: - type: Transform - pos: 0.5,42.5 - parent: 16504 - - uid: 18178 + pos: 37.5,-8.5 + parent: 2 + - uid: 2164 components: - type: Transform - pos: 0.5,41.5 - parent: 16504 - - uid: 18179 + pos: 36.5,-8.5 + parent: 2 + - uid: 2165 components: - type: Transform - pos: -0.5,42.5 - parent: 16504 - - uid: 18180 + pos: 35.5,-8.5 + parent: 2 + - uid: 2166 components: - type: Transform - pos: 1.5,42.5 - parent: 16504 - - uid: 18181 + pos: 38.5,-10.5 + parent: 2 + - uid: 2167 components: - type: Transform - pos: 0.5,37.5 - parent: 16504 - - uid: 18182 + pos: 34.5,-10.5 + parent: 2 + - uid: 2168 components: - type: Transform - pos: 20.5,37.5 - parent: 16504 - - uid: 18183 + pos: 33.5,-10.5 + parent: 2 + - uid: 2172 components: - type: Transform - pos: 20.5,36.5 - parent: 16504 - - uid: 18184 + pos: 33.5,-7.5 + parent: 2 + - uid: 2173 components: - type: Transform - pos: 20.5,35.5 - parent: 16504 - - uid: 18185 + pos: 32.5,-7.5 + parent: 2 + - uid: 2174 components: - type: Transform - pos: 20.5,34.5 - parent: 16504 - - uid: 18186 + pos: 31.5,-7.5 + parent: 2 + - uid: 2175 components: - type: Transform - pos: 20.5,33.5 - parent: 16504 - - uid: 18187 + pos: 30.5,-7.5 + parent: 2 + - uid: 2176 components: - type: Transform - pos: 20.5,32.5 - parent: 16504 - - uid: 18188 + pos: 30.5,-9.5 + parent: 2 + - uid: 2177 components: - type: Transform - pos: 20.5,31.5 - parent: 16504 - - uid: 18189 + pos: 30.5,-10.5 + parent: 2 + - uid: 2178 components: - type: Transform - pos: 21.5,34.5 - parent: 16504 - - uid: 18190 + pos: 30.5,-11.5 + parent: 2 + - uid: 2179 components: - type: Transform - pos: 18.5,25.5 - parent: 16504 - - uid: 18191 + pos: 30.5,-12.5 + parent: 2 + - uid: 2182 components: - type: Transform - pos: 19.5,25.5 - parent: 16504 - - uid: 18192 + pos: 64.5,8.5 + parent: 2 + - uid: 2183 components: - type: Transform - pos: 20.5,25.5 - parent: 16504 - - uid: 18193 + pos: 31.5,-15.5 + parent: 2 + - uid: 2184 components: - type: Transform - pos: 20.5,26.5 - parent: 16504 - - uid: 18194 + pos: 31.5,-16.5 + parent: 2 + - uid: 2185 components: - type: Transform - pos: 20.5,27.5 - parent: 16504 - - uid: 18195 + pos: 31.5,-17.5 + parent: 2 + - uid: 2188 components: - type: Transform - pos: 20.5,28.5 - parent: 16504 - - uid: 18196 + pos: 36.5,65.5 + parent: 2 + - uid: 2190 components: - type: Transform - pos: 20.5,24.5 - parent: 16504 - - uid: 18197 + pos: 29.5,-18.5 + parent: 2 + - uid: 2191 components: - type: Transform - pos: 20.5,23.5 - parent: 16504 - - uid: 18198 + pos: 49.5,35.5 + parent: 2 + - uid: 2194 components: - type: Transform - pos: 20.5,22.5 - parent: 16504 - - uid: 18199 + pos: 65.5,8.5 + parent: 2 + - uid: 2195 components: - type: Transform - pos: 20.5,21.5 - parent: 16504 - - uid: 18200 + pos: 33.5,-9.5 + parent: 2 + - uid: 2196 components: - type: Transform - pos: 20.5,20.5 - parent: 16504 - - uid: 18201 + pos: 28.5,-13.5 + parent: 2 + - uid: 2197 components: - type: Transform - pos: 20.5,19.5 - parent: 16504 - - uid: 18202 + pos: 28.5,-12.5 + parent: 2 + - uid: 2198 components: - type: Transform - pos: 23.5,16.5 - parent: 16504 - - uid: 18203 + pos: 28.5,-11.5 + parent: 2 + - uid: 2199 components: - type: Transform - pos: 22.5,14.5 - parent: 16504 - - uid: 18204 + pos: 28.5,-10.5 + parent: 2 + - uid: 2200 components: - type: Transform - pos: 22.5,15.5 - parent: 16504 - - uid: 18205 + pos: 27.5,-12.5 + parent: 2 + - uid: 2201 components: - type: Transform - pos: 22.5,16.5 - parent: 16504 - - uid: 18206 + pos: 28.5,-19.5 + parent: 2 + - uid: 2202 components: - type: Transform - pos: 21.5,16.5 - parent: 16504 - - uid: 18207 + pos: 27.5,-19.5 + parent: 2 + - uid: 2203 components: - type: Transform - pos: 20.5,16.5 - parent: 16504 - - uid: 18208 + pos: 26.5,-19.5 + parent: 2 + - uid: 2204 components: - type: Transform - pos: 24.5,16.5 - parent: 16504 - - uid: 18209 + pos: 25.5,-19.5 + parent: 2 + - uid: 2205 components: - type: Transform - pos: 25.5,16.5 - parent: 16504 - - uid: 18210 + pos: 24.5,-19.5 + parent: 2 + - uid: 2206 components: - type: Transform - pos: 26.5,16.5 - parent: 16504 - - uid: 18211 + pos: 23.5,-19.5 + parent: 2 + - uid: 2207 components: - type: Transform - pos: 27.5,16.5 - parent: 16504 - - uid: 18212 + pos: 22.5,-19.5 + parent: 2 + - uid: 2208 components: - type: Transform - pos: 28.5,16.5 - parent: 16504 - - uid: 18213 + pos: 21.5,-19.5 + parent: 2 + - uid: 2209 components: - type: Transform - pos: 29.5,16.5 - parent: 16504 - - uid: 18214 + pos: 20.5,-19.5 + parent: 2 + - uid: 2210 components: - type: Transform - pos: 30.5,16.5 - parent: 16504 - - uid: 18215 + pos: 19.5,-19.5 + parent: 2 + - uid: 2211 components: - type: Transform - pos: 31.5,16.5 - parent: 16504 - - uid: 18216 + pos: 18.5,-19.5 + parent: 2 + - uid: 2212 components: - type: Transform - pos: 32.5,16.5 - parent: 16504 - - uid: 18217 + pos: 17.5,-19.5 + parent: 2 + - uid: 2213 components: - type: Transform - pos: 33.5,16.5 - parent: 16504 - - uid: 18218 + pos: 16.5,-19.5 + parent: 2 + - uid: 2214 components: - type: Transform - pos: 34.5,16.5 - parent: 16504 - - uid: 18219 + pos: 15.5,-19.5 + parent: 2 + - uid: 2215 components: - type: Transform - pos: 28.5,17.5 - parent: 16504 - - uid: 18220 + pos: 14.5,-19.5 + parent: 2 + - uid: 2216 components: - type: Transform - pos: 28.5,18.5 - parent: 16504 - - uid: 18221 + pos: 13.5,-19.5 + parent: 2 + - uid: 2217 components: - type: Transform - pos: 28.5,19.5 - parent: 16504 - - uid: 18222 + pos: 12.5,-19.5 + parent: 2 + - uid: 2218 components: - type: Transform - pos: 27.5,19.5 - parent: 16504 - - uid: 18223 + pos: 11.5,-19.5 + parent: 2 + - uid: 2221 components: - type: Transform - pos: 29.5,19.5 - parent: 16504 - - uid: 18224 + pos: 11.5,-18.5 + parent: 2 + - uid: 2222 components: - type: Transform - pos: 30.5,19.5 - parent: 16504 - - uid: 18225 + pos: 11.5,-17.5 + parent: 2 + - uid: 2223 components: - type: Transform - pos: 31.5,19.5 - parent: 16504 - - uid: 18226 + pos: 11.5,-16.5 + parent: 2 + - uid: 2224 components: - type: Transform - pos: 26.5,19.5 - parent: 16504 - - uid: 18227 + pos: 11.5,-15.5 + parent: 2 + - uid: 2225 components: - type: Transform - pos: 28.5,15.5 - parent: 16504 - - uid: 18228 + pos: 11.5,-14.5 + parent: 2 + - uid: 2226 components: - type: Transform - pos: 28.5,14.5 - parent: 16504 - - uid: 18229 + pos: 12.5,-14.5 + parent: 2 + - uid: 2227 components: - type: Transform - pos: 28.5,13.5 - parent: 16504 - - uid: 18230 + pos: 13.5,-14.5 + parent: 2 + - uid: 2228 components: - type: Transform - pos: 29.5,13.5 - parent: 16504 - - uid: 18231 + pos: 14.5,-14.5 + parent: 2 + - uid: 2229 components: - type: Transform - pos: 30.5,13.5 - parent: 16504 - - uid: 18232 + pos: 13.5,-15.5 + parent: 2 + - uid: 2230 components: - type: Transform - pos: 31.5,13.5 - parent: 16504 - - uid: 18233 + pos: 11.5,-12.5 + parent: 2 + - uid: 2231 components: - type: Transform - pos: 27.5,13.5 - parent: 16504 - - uid: 18234 + pos: 10.5,-8.5 + parent: 2 + - uid: 2232 components: - type: Transform - pos: 26.5,13.5 - parent: 16504 - - uid: 18235 + pos: 10.5,-7.5 + parent: 2 + - uid: 2233 components: - type: Transform - pos: 30.5,22.5 - parent: 16504 - - uid: 18236 + pos: 11.5,-3.5 + parent: 2 + - uid: 2234 components: - type: Transform - pos: 30.5,23.5 - parent: 16504 - - uid: 18237 + pos: 13.5,1.5 + parent: 2 + - uid: 2235 components: - type: Transform - pos: 29.5,23.5 - parent: 16504 - - uid: 18238 + pos: 14.5,1.5 + parent: 2 + - uid: 2236 components: - type: Transform - pos: 28.5,23.5 - parent: 16504 - - uid: 18239 + pos: 15.5,1.5 + parent: 2 + - uid: 2237 components: - type: Transform - pos: 27.5,23.5 - parent: 16504 - - uid: 18240 + pos: 16.5,1.5 + parent: 2 + - uid: 2240 components: - type: Transform - pos: 31.5,23.5 - parent: 16504 - - uid: 18241 + pos: 12.5,1.5 + parent: 2 + - uid: 2241 components: - type: Transform - pos: 32.5,23.5 - parent: 16504 - - uid: 18242 + pos: 11.5,1.5 + parent: 2 + - uid: 2242 components: - type: Transform - pos: 33.5,23.5 - parent: 16504 - - uid: 18243 + pos: 10.5,1.5 + parent: 2 + - uid: 2243 components: - type: Transform - pos: 34.5,23.5 - parent: 16504 - - uid: 18244 + pos: 9.5,1.5 + parent: 2 + - uid: 2244 components: - type: Transform - pos: 35.5,23.5 - parent: 16504 - - uid: 18245 + pos: 9.5,0.5 + parent: 2 + - uid: 2245 components: - type: Transform - pos: 36.5,23.5 - parent: 16504 - - uid: 18246 + pos: 9.5,-0.5 + parent: 2 + - uid: 2246 components: - type: Transform - pos: 36.5,24.5 - parent: 16504 - - uid: 18247 + pos: 8.5,-0.5 + parent: 2 + - uid: 2248 components: - type: Transform - pos: 36.5,25.5 - parent: 16504 - - uid: 18248 + pos: 10.5,3.5 + parent: 2 + - uid: 2249 components: - type: Transform - pos: 36.5,26.5 - parent: 16504 - - uid: 18249 + pos: 11.5,3.5 + parent: 2 + - uid: 2250 components: - type: Transform - pos: 36.5,27.5 - parent: 16504 - - uid: 18250 + pos: 11.5,4.5 + parent: 2 + - uid: 2251 components: - type: Transform - pos: 36.5,28.5 - parent: 16504 - - uid: 18251 + pos: 11.5,5.5 + parent: 2 + - uid: 2253 components: - type: Transform - pos: 36.5,29.5 - parent: 16504 - - uid: 18252 + pos: 12.5,12.5 + parent: 2 + - uid: 2254 components: - type: Transform - pos: 36.5,30.5 - parent: 16504 - - uid: 18253 + pos: 11.5,6.5 + parent: 2 + - uid: 2255 components: - type: Transform - pos: 36.5,31.5 - parent: 16504 - - uid: 18254 - components: - - type: Transform - pos: 36.5,32.5 - parent: 16504 - - uid: 18255 - components: - - type: Transform - pos: 36.5,33.5 - parent: 16504 - - uid: 18256 + pos: 11.5,11.5 + parent: 2 + - uid: 2256 components: - type: Transform - pos: 26.5,23.5 - parent: 16504 - - uid: 18257 + pos: 11.5,10.5 + parent: 2 + - uid: 2257 components: - type: Transform - pos: 25.5,23.5 - parent: 16504 - - uid: 18258 + pos: 11.5,9.5 + parent: 2 + - uid: 2258 components: - type: Transform - pos: 24.5,23.5 - parent: 16504 - - uid: 18259 + pos: 11.5,8.5 + parent: 2 + - uid: 2259 components: - type: Transform - pos: 24.5,24.5 - parent: 16504 - - uid: 18260 + pos: 11.5,7.5 + parent: 2 + - uid: 2260 components: - type: Transform - pos: 24.5,25.5 - parent: 16504 - - uid: 18261 + pos: 15.5,12.5 + parent: 2 + - uid: 2261 components: - type: Transform - pos: 24.5,26.5 - parent: 16504 - - uid: 18262 + pos: 15.5,11.5 + parent: 2 + - uid: 2262 components: - type: Transform - pos: 24.5,27.5 - parent: 16504 - - uid: 18263 + pos: 15.5,10.5 + parent: 2 + - uid: 2263 components: - type: Transform - pos: 24.5,28.5 - parent: 16504 - - uid: 18264 + pos: 15.5,9.5 + parent: 2 + - uid: 2264 components: - type: Transform - pos: 24.5,29.5 - parent: 16504 - - uid: 18265 + pos: 14.5,9.5 + parent: 2 + - uid: 2265 components: - type: Transform - pos: 24.5,30.5 - parent: 16504 - - uid: 18266 + pos: 10.5,31.5 + parent: 2 + - uid: 2266 components: - type: Transform - pos: 24.5,31.5 - parent: 16504 - - uid: 18267 + pos: 9.5,31.5 + parent: 2 + - uid: 2267 components: - type: Transform - pos: 24.5,32.5 - parent: 16504 - - uid: 18268 + pos: 8.5,31.5 + parent: 2 + - uid: 2268 components: - type: Transform - pos: 24.5,33.5 - parent: 16504 - - uid: 18269 + pos: 7.5,31.5 + parent: 2 + - uid: 2269 components: - type: Transform - pos: 24.5,34.5 - parent: 16504 - - uid: 18270 + pos: 6.5,31.5 + parent: 2 + - uid: 2270 components: - type: Transform - pos: 24.5,35.5 - parent: 16504 - - uid: 18271 + pos: 5.5,31.5 + parent: 2 + - uid: 2271 components: - type: Transform - pos: 24.5,36.5 - parent: 16504 - - uid: 18272 + pos: 4.5,31.5 + parent: 2 + - uid: 2272 components: - type: Transform - pos: 25.5,36.5 - parent: 16504 - - uid: 18273 + pos: 3.5,31.5 + parent: 2 + - uid: 2273 components: - type: Transform - pos: 26.5,36.5 - parent: 16504 - - uid: 18274 + pos: 2.5,31.5 + parent: 2 + - uid: 2275 components: - type: Transform - pos: 27.5,36.5 - parent: 16504 - - uid: 18275 + pos: 4.5,32.5 + parent: 2 + - uid: 2276 components: - type: Transform - pos: 28.5,36.5 - parent: 16504 - - uid: 18276 + pos: 5.5,34.5 + parent: 2 + - uid: 2277 components: - type: Transform - pos: 29.5,36.5 - parent: 16504 - - uid: 18277 + pos: 4.5,34.5 + parent: 2 + - uid: 2278 components: - type: Transform - pos: 30.5,36.5 - parent: 16504 - - uid: 18278 + pos: 4.5,35.5 + parent: 2 + - uid: 2279 components: - type: Transform - pos: 31.5,36.5 - parent: 16504 - - uid: 18279 + pos: 4.5,36.5 + parent: 2 + - uid: 2280 components: - type: Transform - pos: 32.5,36.5 - parent: 16504 - - uid: 18280 + pos: 4.5,37.5 + parent: 2 + - uid: 2281 components: - type: Transform - pos: 33.5,36.5 - parent: 16504 - - uid: 18281 + pos: 4.5,38.5 + parent: 2 + - uid: 2282 components: - type: Transform - pos: 34.5,36.5 - parent: 16504 - - uid: 18282 + pos: 8.5,34.5 + parent: 2 + - uid: 2283 components: - type: Transform - pos: 35.5,36.5 - parent: 16504 - - uid: 18283 + pos: 8.5,35.5 + parent: 2 + - uid: 2284 components: - type: Transform - pos: 36.5,36.5 - parent: 16504 - - uid: 18284 + pos: 8.5,36.5 + parent: 2 + - uid: 2285 components: - type: Transform - pos: 36.5,35.5 - parent: 16504 - - uid: 18285 + pos: 8.5,37.5 + parent: 2 + - uid: 2286 components: - type: Transform - pos: 36.5,34.5 - parent: 16504 - - uid: 18286 + pos: 8.5,38.5 + parent: 2 + - uid: 2287 components: - type: Transform - pos: 21.5,21.5 - parent: 16504 - - uid: 21184 + pos: 7.5,34.5 + parent: 2 + - uid: 2288 components: - type: Transform - pos: 39.5,57.5 + pos: 6.5,34.5 parent: 2 - - uid: 21224 + - uid: 2289 components: - type: Transform - pos: 27.5,49.5 + pos: 3.5,30.5 parent: 2 - - uid: 21290 + - uid: 2290 components: - type: Transform - pos: 19.5,48.5 + pos: 3.5,29.5 parent: 2 - - uid: 21356 + - uid: 2291 components: - type: Transform - pos: 39.5,52.5 + pos: 3.5,28.5 parent: 2 - - uid: 21357 + - uid: 2292 components: - type: Transform - pos: 39.5,51.5 + pos: 3.5,27.5 parent: 2 - - uid: 21362 + - uid: 2293 components: - type: Transform - pos: 41.5,49.5 + pos: 3.5,26.5 parent: 2 - - uid: 21363 + - uid: 2294 components: - type: Transform - pos: 39.5,48.5 + pos: 8.5,26.5 parent: 2 - - uid: 21365 + - uid: 2295 components: - type: Transform - pos: 41.5,50.5 + pos: 8.5,28.5 parent: 2 - - uid: 21366 + - uid: 2296 components: - type: Transform - pos: 36.5,50.5 + pos: 27.5,17.5 parent: 2 - - uid: 21367 + - uid: 2304 components: - type: Transform - pos: 36.5,51.5 + pos: 26.5,47.5 parent: 2 - - uid: 21368 + - uid: 2305 components: - type: Transform - pos: 36.5,52.5 + pos: 23.5,47.5 parent: 2 - - uid: 21415 + - uid: 2310 components: - type: Transform - pos: 27.5,47.5 + pos: 22.5,47.5 parent: 2 - - uid: 21524 + - uid: 2311 components: - type: Transform - pos: 28.5,-14.5 + pos: 20.5,47.5 parent: 2 - - uid: 21525 + - uid: 2313 components: - type: Transform - pos: 66.5,8.5 + pos: 18.5,47.5 parent: 2 - - uid: 21526 + - uid: 2317 components: - type: Transform - pos: 67.5,8.5 + pos: 24.5,43.5 parent: 2 - - uid: 21527 + - uid: 2318 components: - type: Transform - pos: 68.5,8.5 + pos: 22.5,43.5 parent: 2 - - uid: 21529 + - uid: 2319 components: - type: Transform - pos: 66.5,7.5 + pos: 18.5,43.5 parent: 2 - - uid: 21570 + - uid: 2321 components: - type: Transform - pos: 37.5,55.5 + pos: 17.5,54.5 parent: 2 - - uid: 21575 + - uid: 2322 components: - type: Transform - pos: 35.5,52.5 + pos: 20.5,54.5 parent: 2 - - uid: 21576 + - uid: 2324 components: - type: Transform - pos: 34.5,52.5 + pos: 21.5,54.5 parent: 2 - - uid: 21577 + - uid: 2325 components: - type: Transform - pos: 34.5,54.5 + pos: 45.5,52.5 parent: 2 - - uid: 21680 + - uid: 2326 components: - type: Transform - pos: 11.5,45.5 + pos: 45.5,53.5 parent: 2 - - uid: 21708 + - uid: 2327 components: - type: Transform - pos: 38.5,53.5 + pos: 45.5,54.5 parent: 2 - - uid: 21735 + - uid: 2328 components: - type: Transform - pos: 22.5,-40.5 + pos: 45.5,55.5 parent: 2 - - uid: 21736 + - uid: 2329 components: - type: Transform - pos: 22.5,-41.5 + pos: 45.5,80.5 parent: 2 - - uid: 21737 + - uid: 2330 components: - type: Transform - pos: 22.5,-43.5 + pos: 16.5,67.5 parent: 2 - - uid: 21738 + - uid: 2331 components: - type: Transform - pos: 22.5,-42.5 + pos: 43.5,55.5 parent: 2 - - uid: 21739 + - uid: 2334 components: - type: Transform - pos: 21.5,-42.5 + pos: 37.5,57.5 parent: 2 - - uid: 21740 + - uid: 2343 components: - type: Transform - pos: 20.5,-42.5 + pos: 43.5,47.5 parent: 2 - - uid: 21741 + - uid: 2345 components: - type: Transform - pos: 19.5,-42.5 + pos: 22.5,54.5 parent: 2 - - uid: 21742 + - uid: 2346 components: - type: Transform - pos: 23.5,-42.5 + pos: 39.5,53.5 parent: 2 - - uid: 21743 + - uid: 2350 components: - type: Transform - pos: 24.5,-42.5 + pos: 39.5,49.5 parent: 2 - - uid: 21744 + - uid: 2351 components: - type: Transform - pos: 25.5,-42.5 + pos: 43.5,53.5 parent: 2 - - uid: 21745 + - uid: 2352 components: - type: Transform - pos: 25.5,-36.5 + pos: 43.5,52.5 parent: 2 - - uid: 21746 + - uid: 2353 components: - type: Transform - pos: 25.5,-38.5 + pos: 23.5,53.5 parent: 2 - - uid: 21747 + - uid: 2354 components: - type: Transform - pos: 25.5,-37.5 + pos: 36.5,49.5 parent: 2 - - uid: 21748 + - uid: 2363 components: - type: Transform - pos: 26.5,-38.5 + pos: 43.5,51.5 parent: 2 - - uid: 21749 + - uid: 2365 components: - type: Transform - pos: 27.5,-38.5 + pos: 23.5,54.5 parent: 2 - - uid: 21750 + - uid: 2366 components: - type: Transform - pos: 29.5,-38.5 + pos: 36.5,48.5 parent: 2 - - uid: 21751 + - uid: 2367 components: - type: Transform - pos: 30.5,-38.5 + pos: 36.5,47.5 parent: 2 - - uid: 21752 + - uid: 2376 components: - type: Transform - pos: 28.5,-38.5 + pos: 14.5,53.5 parent: 2 - - uid: 21753 + - uid: 2377 components: - type: Transform - pos: 24.5,-38.5 + pos: 15.5,53.5 parent: 2 - - uid: 21754 + - uid: 2379 components: - type: Transform - pos: 23.5,-38.5 + pos: 30.5,53.5 parent: 2 - - uid: 21755 + - uid: 2382 components: - type: Transform - pos: 19.5,-36.5 + pos: 10.5,45.5 parent: 2 - - uid: 21756 + - uid: 2413 components: - type: Transform - pos: 19.5,-38.5 + pos: 40.5,43.5 parent: 2 - - uid: 21757 + - uid: 2414 components: - type: Transform - pos: 19.5,-37.5 + pos: 40.5,42.5 parent: 2 - - uid: 21758 + - uid: 2415 components: - type: Transform - pos: 18.5,-38.5 + pos: 40.5,41.5 parent: 2 - - uid: 21759 + - uid: 2416 components: - type: Transform - pos: 17.5,-38.5 + pos: 40.5,40.5 parent: 2 - - uid: 21760 + - uid: 2417 components: - type: Transform - pos: 15.5,-38.5 + pos: 41.5,41.5 parent: 2 - - uid: 21761 + - uid: 2418 components: - type: Transform - pos: 16.5,-38.5 + pos: 42.5,41.5 parent: 2 - - uid: 21762 + - uid: 2419 components: - type: Transform - pos: 20.5,-38.5 + pos: 43.5,41.5 parent: 2 - - uid: 21763 + - uid: 2420 components: - type: Transform - pos: 21.5,-38.5 + pos: 12.5,39.5 parent: 2 - - uid: 21764 + - uid: 2421 components: - type: Transform - pos: 23.5,-32.5 + pos: 12.5,41.5 parent: 2 - - uid: 21765 + - uid: 2422 components: - type: Transform - pos: 23.5,-33.5 + pos: 12.5,42.5 parent: 2 - - uid: 21766 + - uid: 2423 components: - type: Transform - pos: 23.5,-34.5 + pos: 12.5,43.5 parent: 2 - - uid: 21767 + - uid: 2425 components: - type: Transform - pos: 22.5,-34.5 + pos: 12.5,45.5 parent: 2 - - uid: 21768 + - uid: 2426 components: - type: Transform - pos: 21.5,-34.5 + pos: 11.5,41.5 parent: 2 - - uid: 21769 + - uid: 2427 components: - type: Transform - pos: 20.5,-34.5 + pos: 10.5,41.5 parent: 2 - - uid: 21770 + - uid: 2428 components: - type: Transform - pos: 24.5,-34.5 + pos: 9.5,41.5 parent: 2 - - uid: 21902 + - uid: 2429 components: - type: Transform - pos: 61.5,27.5 + pos: 10.5,42.5 parent: 2 - - uid: 21923 + - uid: 2430 components: - type: Transform - pos: 51.5,85.5 + pos: 10.5,43.5 parent: 2 - - uid: 21924 + - uid: 2431 components: - type: Transform - pos: 51.5,86.5 + pos: 10.5,44.5 parent: 2 - - uid: 21925 + - uid: 2432 components: - type: Transform - pos: 53.5,84.5 + pos: 12.5,46.5 parent: 2 - - uid: 21926 + - uid: 2433 components: - type: Transform - pos: 53.5,85.5 + pos: 12.5,47.5 parent: 2 - - uid: 21927 + - uid: 2434 components: - type: Transform - pos: 53.5,86.5 + pos: 12.5,48.5 parent: 2 - - uid: 21928 + - uid: 2435 components: - type: Transform - pos: 55.5,83.5 + pos: 12.5,49.5 parent: 2 - - uid: 21929 + - uid: 2436 components: - type: Transform - pos: 56.5,83.5 + pos: 12.5,50.5 parent: 2 - - uid: 21930 + - uid: 2437 components: - type: Transform - pos: 57.5,83.5 + pos: 12.5,51.5 parent: 2 - - uid: 21931 + - uid: 2438 components: - type: Transform - pos: 12.5,37.5 + pos: 12.5,52.5 parent: 2 - - uid: 21932 + - uid: 2439 components: - type: Transform - pos: 13.5,37.5 + pos: 12.5,53.5 parent: 2 - - uid: 21933 + - uid: 2440 components: - type: Transform - pos: 14.5,37.5 + pos: 12.5,54.5 parent: 2 - - uid: 21934 + - uid: 2441 components: - type: Transform - pos: 15.5,37.5 + pos: 12.5,55.5 parent: 2 - - uid: 21935 + - uid: 2442 components: - type: Transform - pos: 16.5,37.5 + pos: 11.5,55.5 parent: 2 - - uid: 21936 + - uid: 2443 components: - type: Transform - pos: 17.5,37.5 + pos: 10.5,55.5 parent: 2 - - uid: 21937 + - uid: 2444 components: - type: Transform - pos: 19.5,37.5 + pos: 10.5,56.5 parent: 2 - - uid: 21938 + - uid: 2445 components: - type: Transform - pos: 20.5,37.5 + pos: 10.5,57.5 parent: 2 - - uid: 21939 + - uid: 2446 components: - type: Transform - pos: 21.5,37.5 + pos: 10.5,58.5 parent: 2 - - uid: 21940 + - uid: 2447 components: - type: Transform - pos: 22.5,37.5 + pos: 10.5,59.5 parent: 2 - - uid: 21941 + - uid: 2448 components: - type: Transform - pos: 23.5,37.5 + pos: 10.5,60.5 parent: 2 - - uid: 21942 + - uid: 2449 components: - type: Transform - pos: 18.5,37.5 + pos: 10.5,61.5 parent: 2 - - uid: 21943 + - uid: 2450 components: - type: Transform - pos: 24.5,37.5 + pos: 11.5,61.5 parent: 2 - - uid: 21944 + - uid: 2451 components: - type: Transform - pos: 25.5,37.5 + pos: 11.5,61.5 parent: 2 - - uid: 21945 + - uid: 2452 components: - type: Transform - pos: 26.5,37.5 + pos: 12.5,61.5 parent: 2 - - uid: 21946 + - uid: 2453 components: - type: Transform - pos: 27.5,37.5 + pos: 13.5,61.5 parent: 2 - - uid: 21947 + - uid: 2454 components: - type: Transform - pos: 28.5,37.5 + pos: 14.5,61.5 parent: 2 - - uid: 21948 + - uid: 2455 components: - type: Transform - pos: 29.5,37.5 + pos: 15.5,61.5 parent: 2 - - uid: 21949 + - uid: 2456 components: - type: Transform - pos: 30.5,37.5 + pos: 16.5,61.5 parent: 2 - - uid: 21950 + - uid: 2457 components: - type: Transform - pos: 31.5,37.5 + pos: 16.5,60.5 parent: 2 - - uid: 21951 + - uid: 2458 components: - type: Transform - pos: 32.5,37.5 + pos: 16.5,59.5 parent: 2 - - uid: 21952 + - uid: 2459 components: - type: Transform - pos: 33.5,37.5 + pos: 16.5,58.5 parent: 2 - - uid: 21953 + - uid: 2460 components: - type: Transform - pos: 34.5,37.5 + pos: 15.5,58.5 parent: 2 - - uid: 21954 + - uid: 2461 components: - type: Transform - pos: 35.5,37.5 + pos: 14.5,58.5 parent: 2 - - uid: 21955 + - uid: 2462 components: - type: Transform - pos: 36.5,37.5 + pos: 13.5,58.5 parent: 2 - - uid: 21956 + - uid: 2463 components: - type: Transform - pos: 36.5,36.5 + pos: 12.5,58.5 parent: 2 - - uid: 21957 + - uid: 2464 components: - type: Transform - pos: 36.5,35.5 + pos: 17.5,58.5 parent: 2 - - uid: 21958 + - uid: 2465 components: - type: Transform - pos: 36.5,34.5 + pos: 18.5,58.5 parent: 2 - - uid: 21984 + - uid: 2466 components: - type: Transform - pos: -6.5,22.5 + pos: 19.5,58.5 parent: 2 - - uid: 21985 + - uid: 2467 components: - type: Transform - pos: -6.5,23.5 + pos: 14.5,62.5 parent: 2 - - uid: 22212 + - uid: 2468 components: - type: Transform - pos: 77.5,54.5 + pos: 14.5,66.5 parent: 2 - - uid: 22213 + - uid: 2469 components: - type: Transform - pos: 77.5,52.5 + pos: 14.5,67.5 parent: 2 - - uid: 22214 + - uid: 2470 components: - type: Transform - pos: 77.5,53.5 + pos: 14.5,68.5 parent: 2 - - uid: 22215 + - uid: 2471 components: - type: Transform - pos: 76.5,52.5 + pos: 14.5,69.5 parent: 2 - - uid: 22216 + - uid: 2472 components: - type: Transform - pos: 75.5,52.5 + pos: 14.5,70.5 parent: 2 - - uid: 22217 + - uid: 2473 components: - type: Transform - pos: 74.5,52.5 + pos: 14.5,71.5 parent: 2 - - uid: 22218 + - uid: 2474 components: - type: Transform - pos: 78.5,52.5 + pos: 14.5,72.5 parent: 2 - - uid: 22219 + - uid: 2475 components: - type: Transform - pos: 79.5,52.5 + pos: 14.5,73.5 parent: 2 - - uid: 22255 + - uid: 2476 components: - type: Transform - pos: 44.5,68.5 + pos: 14.5,74.5 parent: 2 - - uid: 22256 + - uid: 2477 components: - type: Transform - pos: 44.5,66.5 + pos: 14.5,75.5 parent: 2 - - uid: 22273 + - uid: 2478 components: - type: Transform - pos: 8.5,25.5 + pos: 14.5,76.5 parent: 2 - - uid: 22274 + - uid: 2479 components: - type: Transform - pos: 6.5,24.5 + pos: 14.5,77.5 parent: 2 - - uid: 22275 + - uid: 2480 components: - type: Transform - pos: 6.5,23.5 + pos: 14.5,78.5 parent: 2 - - uid: 22276 + - uid: 2481 components: - type: Transform - pos: 6.5,22.5 + pos: 14.5,79.5 parent: 2 - - uid: 22277 + - uid: 2482 components: - type: Transform - pos: 6.5,27.5 + pos: 14.5,80.5 parent: 2 - - uid: 22278 + - uid: 2483 components: - type: Transform - pos: 6.5,26.5 + pos: 14.5,81.5 parent: 2 - - uid: 22279 + - uid: 2484 components: - type: Transform - pos: 7.5,26.5 + pos: 14.5,82.5 parent: 2 - - uid: 22280 + - uid: 2485 components: - type: Transform - pos: 7.5,21.5 + pos: 14.5,83.5 parent: 2 - - uid: 22296 + - uid: 2486 components: - type: Transform - pos: 2.5,33.5 + pos: 13.5,80.5 parent: 2 - - uid: 22297 + - uid: 2487 components: - type: Transform - pos: 3.5,33.5 + pos: 12.5,80.5 parent: 2 - - uid: 22298 + - uid: 2488 components: - type: Transform - pos: 11.5,-13.5 + pos: 11.5,80.5 parent: 2 - - uid: 22299 + - uid: 2489 components: - type: Transform - pos: 4.5,33.5 + pos: 10.5,80.5 parent: 2 - - uid: 22323 + - uid: 2490 components: - type: Transform - pos: 43.5,81.5 + pos: 9.5,80.5 parent: 2 - - uid: 22324 + - uid: 2491 components: - type: Transform - pos: 43.5,82.5 + pos: 13.5,78.5 parent: 2 - - uid: 22325 + - uid: 2492 components: - type: Transform - pos: 43.5,83.5 + pos: 12.5,78.5 parent: 2 - - uid: 22326 + - uid: 2493 components: - type: Transform - pos: 43.5,84.5 + pos: 11.5,78.5 parent: 2 - - uid: 22327 + - uid: 2494 components: - type: Transform - pos: 42.5,84.5 + pos: 10.5,78.5 parent: 2 - - uid: 22328 + - uid: 2495 components: - type: Transform - pos: 41.5,84.5 + pos: 9.5,78.5 parent: 2 - - uid: 22329 + - uid: 2496 components: - type: Transform - pos: 40.5,84.5 + pos: 13.5,72.5 parent: 2 - - uid: 22330 + - uid: 2497 components: - type: Transform - pos: 39.5,84.5 + pos: 12.5,72.5 parent: 2 - - uid: 22331 + - uid: 2498 components: - type: Transform - pos: 38.5,84.5 + pos: 11.5,72.5 parent: 2 - - uid: 22419 + - uid: 2499 components: - type: Transform - pos: 45.5,-15.5 + pos: 10.5,72.5 parent: 2 - - uid: 22515 + - uid: 2500 components: - type: Transform - pos: -9.5,18.5 + pos: 9.5,72.5 parent: 2 - - uid: 22516 + - uid: 2501 components: - type: Transform - pos: -10.5,18.5 + pos: 13.5,70.5 parent: 2 - - uid: 22517 + - uid: 2502 components: - type: Transform - pos: -11.5,18.5 + pos: 12.5,70.5 parent: 2 -- proto: CableApcStack - entities: - - uid: 3441 + - uid: 2503 components: - type: Transform - pos: 62.576355,49.107327 + pos: 11.5,70.5 parent: 2 - - uid: 3442 + - uid: 2504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.306625,79.5509 + pos: 10.5,70.5 parent: 2 - - uid: 3443 + - uid: 2505 components: - type: Transform - pos: 42.632046,62.681427 + pos: 9.5,70.5 parent: 2 -- proto: CableApcStack1 - entities: - - uid: 18287 + - uid: 2506 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.943169,28.129593 - parent: 16504 - - uid: 18288 + pos: 17.5,61.5 + parent: 2 + - uid: 2507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.833794,27.957718 - parent: 16504 -- proto: CableApcStack10 - entities: - - uid: 18289 + pos: 18.5,61.5 + parent: 2 + - uid: 2508 components: - type: Transform - pos: 37.573006,33.27738 - parent: 16504 -- proto: CableHV - entities: - - uid: 82 + pos: 19.5,61.5 + parent: 2 + - uid: 2509 components: - type: Transform - pos: 12.5,-31.5 + pos: 20.5,61.5 parent: 2 - - uid: 110 + - uid: 2510 components: - type: Transform - pos: 27.5,-17.5 + pos: 21.5,61.5 parent: 2 - - uid: 150 + - uid: 2511 components: - type: Transform - pos: 13.5,-42.5 + pos: 22.5,61.5 parent: 2 - - uid: 488 + - uid: 2512 components: - type: Transform - pos: 14.5,64.5 + pos: 23.5,61.5 parent: 2 - - uid: 1043 + - uid: 2513 components: - type: Transform - pos: 11.5,-41.5 + pos: 22.5,60.5 parent: 2 - - uid: 1500 + - uid: 2514 components: - type: Transform - pos: 43.5,27.5 + pos: 22.5,59.5 parent: 2 - - uid: 1501 + - uid: 2515 components: - type: Transform - pos: 44.5,27.5 + pos: 22.5,58.5 parent: 2 - - uid: 1696 + - uid: 2516 components: - type: Transform - pos: 6.5,19.5 + pos: 22.5,57.5 parent: 2 - - uid: 2181 + - uid: 2517 components: - type: Transform - pos: 31.5,-12.5 + pos: 23.5,62.5 parent: 2 - - uid: 2186 + - uid: 2518 components: - type: Transform - pos: 31.5,-11.5 + pos: 24.5,62.5 parent: 2 - - uid: 2187 + - uid: 2519 components: - type: Transform - pos: 30.5,-11.5 + pos: 25.5,62.5 parent: 2 - - uid: 2189 + - uid: 2520 components: - type: Transform - pos: 30.5,-10.5 + pos: 26.5,62.5 parent: 2 - - uid: 2192 + - uid: 2521 components: - type: Transform - pos: 29.5,-18.5 + pos: 27.5,62.5 parent: 2 - - uid: 2238 + - uid: 2522 components: - type: Transform - pos: 29.5,-14.5 + pos: 28.5,62.5 parent: 2 - - uid: 2239 + - uid: 2523 components: - type: Transform - pos: 31.5,-13.5 + pos: 29.5,62.5 parent: 2 - - uid: 2274 + - uid: 2524 components: - type: Transform - pos: 30.5,-9.5 + pos: 30.5,62.5 parent: 2 - - uid: 2306 + - uid: 2525 components: - type: Transform - pos: 40.5,27.5 + pos: 31.5,62.5 parent: 2 - - uid: 2307 + - uid: 2526 components: - type: Transform - pos: 37.5,27.5 + pos: 32.5,62.5 parent: 2 - - uid: 2308 + - uid: 2527 components: - type: Transform - pos: 10.5,60.5 + pos: 33.5,62.5 parent: 2 - - uid: 2309 + - uid: 2528 components: - type: Transform - pos: 10.5,61.5 + pos: 34.5,62.5 parent: 2 - - uid: 2314 + - uid: 2529 components: - type: Transform - pos: 11.5,61.5 + pos: 30.5,61.5 parent: 2 - - uid: 2316 + - uid: 2530 components: - type: Transform - pos: 16.5,61.5 + pos: 30.5,60.5 parent: 2 - - uid: 2337 + - uid: 2531 components: - type: Transform - pos: 12.5,61.5 + pos: 32.5,64.5 parent: 2 - - uid: 2338 + - uid: 2532 components: - type: Transform - pos: 13.5,61.5 + pos: 32.5,63.5 parent: 2 - - uid: 2339 + - uid: 2533 components: - type: Transform - pos: 15.5,61.5 + pos: 32.5,65.5 parent: 2 - - uid: 2340 + - uid: 2534 components: - type: Transform - pos: 18.5,61.5 + pos: 32.5,66.5 parent: 2 - - uid: 2342 + - uid: 2535 components: - type: Transform - pos: 19.5,61.5 + pos: 32.5,67.5 parent: 2 - - uid: 2369 + - uid: 2536 components: - type: Transform - pos: 41.5,27.5 + pos: 33.5,66.5 parent: 2 - - uid: 2370 + - uid: 2537 components: - type: Transform - pos: 17.5,61.5 + pos: 34.5,66.5 parent: 2 - - uid: 2397 + - uid: 2538 components: - type: Transform - pos: 12.5,49.5 + pos: 35.5,66.5 parent: 2 - - uid: 2398 + - uid: 2539 components: - type: Transform - pos: 12.5,43.5 + pos: 36.5,66.5 parent: 2 - - uid: 3016 + - uid: 2540 components: - type: Transform - pos: 29.5,-15.5 + pos: 36.5,64.5 parent: 2 - - uid: 3033 + - uid: 2541 components: - type: Transform - pos: 29.5,-16.5 + pos: 36.5,63.5 parent: 2 - - uid: 3087 + - uid: 2542 components: - type: Transform - pos: 28.5,-17.5 + pos: 36.5,62.5 parent: 2 - - uid: 3375 + - uid: 2543 components: - type: Transform - pos: 30.5,-14.5 + pos: 36.5,61.5 parent: 2 - - uid: 3376 + - uid: 2544 components: - type: Transform - pos: 31.5,-14.5 + pos: 36.5,60.5 parent: 2 - - uid: 3444 + - uid: 2545 components: - type: Transform - pos: 46.5,77.5 + pos: 36.5,59.5 parent: 2 - - uid: 3445 + - uid: 2546 components: - type: Transform - pos: 50.5,76.5 + pos: 36.5,58.5 parent: 2 - - uid: 3446 + - uid: 2547 components: - type: Transform - pos: 46.5,70.5 + pos: 36.5,57.5 parent: 2 - - uid: 3447 + - uid: 2551 components: - type: Transform - pos: 46.5,78.5 + pos: 50.5,67.5 parent: 2 - - uid: 3448 + - uid: 2552 components: - type: Transform - pos: 50.5,62.5 + pos: 50.5,66.5 parent: 2 - - uid: 3449 + - uid: 2553 components: - type: Transform - pos: 11.5,-5.5 + pos: 50.5,65.5 parent: 2 - - uid: 3450 + - uid: 2554 components: - type: Transform - pos: 76.5,17.5 + pos: 49.5,65.5 parent: 2 - - uid: 3451 + - uid: 2555 components: - type: Transform - pos: 51.5,79.5 + pos: 47.5,67.5 parent: 2 - - uid: 3452 + - uid: 2556 components: - type: Transform - pos: 53.5,79.5 + pos: 47.5,69.5 parent: 2 - - uid: 3453 + - uid: 2557 components: - type: Transform - pos: 44.5,55.5 + pos: 47.5,70.5 parent: 2 - - uid: 3454 + - uid: 2558 components: - type: Transform - pos: 74.5,16.5 + pos: 47.5,71.5 parent: 2 - - uid: 3455 + - uid: 2559 components: - type: Transform - pos: 54.5,60.5 + pos: 47.5,72.5 parent: 2 - - uid: 3456 + - uid: 2560 components: - type: Transform - pos: 50.5,63.5 + pos: 47.5,73.5 parent: 2 - - uid: 3457 + - uid: 2561 components: - type: Transform - pos: 50.5,60.5 + pos: 47.5,74.5 parent: 2 - - uid: 3458 + - uid: 2562 components: - type: Transform pos: 51.5,65.5 parent: 2 - - uid: 3459 + - uid: 2563 components: - type: Transform - pos: 46.5,79.5 + pos: 52.5,65.5 parent: 2 - - uid: 3460 + - uid: 2564 components: - type: Transform - pos: 46.5,81.5 + pos: 53.5,65.5 parent: 2 - - uid: 3461 + - uid: 2565 components: - type: Transform - pos: 47.5,81.5 + pos: 54.5,65.5 parent: 2 - - uid: 3462 + - uid: 2566 components: - type: Transform - pos: 47.5,73.5 + pos: 51.5,60.5 parent: 2 - - uid: 3463 + - uid: 2567 components: - type: Transform - pos: 39.5,73.5 + pos: 53.5,72.5 parent: 2 - - uid: 3464 + - uid: 2568 components: - type: Transform - pos: 87.5,11.5 + pos: 52.5,63.5 parent: 2 - - uid: 3465 + - uid: 2569 components: - type: Transform - pos: 86.5,11.5 + pos: 51.5,64.5 parent: 2 - - uid: 3466 + - uid: 2570 components: - type: Transform - pos: 88.5,11.5 + pos: 52.5,64.5 parent: 2 - - uid: 3467 + - uid: 2571 components: - type: Transform - pos: 89.5,12.5 + pos: 53.5,64.5 parent: 2 - - uid: 3468 + - uid: 2572 components: - type: Transform - pos: 47.5,77.5 + pos: 48.5,56.5 parent: 2 - - uid: 3469 + - uid: 2573 components: - type: Transform - pos: 13.5,3.5 + pos: 48.5,55.5 parent: 2 - - uid: 3470 + - uid: 2574 components: - type: Transform - pos: 12.5,3.5 + pos: 49.5,56.5 parent: 2 - - uid: 3471 + - uid: 2575 components: - type: Transform - pos: 11.5,3.5 + pos: 50.5,56.5 parent: 2 - - uid: 3472 + - uid: 2576 components: - type: Transform - pos: 11.5,4.5 + pos: 51.5,56.5 parent: 2 - - uid: 3473 + - uid: 2577 components: - type: Transform - pos: 11.5,5.5 + pos: 57.5,53.5 parent: 2 - - uid: 3474 + - uid: 2578 components: - type: Transform - pos: 11.5,6.5 + pos: 57.5,54.5 parent: 2 - - uid: 3475 + - uid: 2579 components: - type: Transform - pos: 11.5,7.5 + pos: 57.5,55.5 parent: 2 - - uid: 3476 + - uid: 2580 components: - type: Transform - pos: 11.5,8.5 + pos: 57.5,56.5 parent: 2 - - uid: 3477 + - uid: 2581 components: - type: Transform - pos: 11.5,9.5 + pos: 57.5,57.5 parent: 2 - - uid: 3478 + - uid: 2582 components: - type: Transform - pos: 11.5,10.5 + pos: 57.5,58.5 parent: 2 - - uid: 3479 + - uid: 2583 components: - type: Transform - pos: 11.5,11.5 + pos: 57.5,59.5 parent: 2 - - uid: 3480 + - uid: 2584 components: - type: Transform - pos: 11.5,12.5 + pos: 57.5,60.5 parent: 2 - - uid: 3481 + - uid: 2585 components: - type: Transform - pos: 26.5,28.5 + pos: 57.5,61.5 parent: 2 - - uid: 3483 + - uid: 2586 components: - type: Transform - pos: 31.5,17.5 + pos: 57.5,62.5 parent: 2 - - uid: 3484 + - uid: 2587 components: - type: Transform - pos: 26.5,30.5 + pos: 57.5,63.5 parent: 2 - - uid: 3485 + - uid: 2588 components: - type: Transform - pos: 33.5,19.5 + pos: 57.5,64.5 parent: 2 - - uid: 3486 + - uid: 2589 components: - type: Transform - pos: 32.5,19.5 + pos: 57.5,65.5 parent: 2 - - uid: 3487 + - uid: 2590 components: - type: Transform - pos: 31.5,19.5 + pos: 57.5,66.5 parent: 2 - - uid: 3488 + - uid: 2591 components: - type: Transform - pos: 30.5,17.5 + pos: 57.5,67.5 parent: 2 - - uid: 3489 + - uid: 2592 components: - type: Transform - pos: 30.5,16.5 + pos: 57.5,68.5 parent: 2 - - uid: 3490 + - uid: 2593 components: - type: Transform - pos: 29.5,16.5 + pos: 57.5,69.5 parent: 2 - - uid: 3491 + - uid: 2594 components: - type: Transform - pos: 28.5,16.5 + pos: 57.5,70.5 parent: 2 - - uid: 3492 + - uid: 2595 components: - type: Transform - pos: 28.5,15.5 + pos: 57.5,71.5 parent: 2 - - uid: 3493 + - uid: 2596 components: - type: Transform - pos: 28.5,14.5 + pos: 57.5,72.5 parent: 2 - - uid: 3494 + - uid: 2597 components: - type: Transform - pos: 28.5,13.5 + pos: 57.5,73.5 parent: 2 - - uid: 3495 + - uid: 2598 components: - type: Transform - pos: 26.5,-17.5 + pos: 57.5,74.5 parent: 2 - - uid: 3496 + - uid: 2599 components: - type: Transform - pos: 42.5,55.5 + pos: 47.5,79.5 parent: 2 - - uid: 3502 + - uid: 2600 components: - type: Transform - pos: 29.5,-17.5 + pos: 38.5,60.5 parent: 2 - - uid: 3503 + - uid: 2601 components: - type: Transform - pos: 28.5,-19.5 + pos: 54.5,70.5 parent: 2 - - uid: 3504 + - uid: 2602 components: - type: Transform - pos: 27.5,-19.5 + pos: 53.5,70.5 parent: 2 - - uid: 3505 + - uid: 2603 components: - type: Transform - pos: 26.5,-19.5 + pos: 52.5,70.5 parent: 2 - - uid: 3506 + - uid: 2604 components: - type: Transform - pos: 25.5,-19.5 + pos: 51.5,70.5 parent: 2 - - uid: 3507 + - uid: 2605 components: - type: Transform - pos: 24.5,-19.5 + pos: 50.5,70.5 parent: 2 - - uid: 3508 + - uid: 2606 components: - type: Transform - pos: 23.5,-19.5 + pos: 53.5,69.5 parent: 2 - - uid: 3509 + - uid: 2607 components: - type: Transform - pos: 22.5,-19.5 + pos: 50.5,69.5 parent: 2 - - uid: 3510 + - uid: 2608 components: - type: Transform - pos: 21.5,-19.5 + pos: 41.5,69.5 parent: 2 - - uid: 3511 + - uid: 2609 components: - type: Transform - pos: 20.5,-19.5 + pos: 42.5,69.5 parent: 2 - - uid: 3512 + - uid: 2610 components: - type: Transform - pos: 19.5,-19.5 + pos: 43.5,69.5 parent: 2 - - uid: 3513 + - uid: 2611 components: - type: Transform - pos: 18.5,-19.5 + pos: 44.5,69.5 parent: 2 - - uid: 3514 + - uid: 2612 components: - type: Transform - pos: 17.5,-19.5 + pos: 43.5,70.5 parent: 2 - - uid: 3515 + - uid: 2613 components: - type: Transform - pos: 16.5,-19.5 + pos: 43.5,71.5 parent: 2 - - uid: 3516 + - uid: 2614 components: - type: Transform - pos: 15.5,-19.5 + pos: 43.5,72.5 parent: 2 - - uid: 3517 + - uid: 2615 components: - type: Transform - pos: 14.5,-19.5 + pos: 43.5,74.5 parent: 2 - - uid: 3518 + - uid: 2616 components: - type: Transform - pos: 13.5,-19.5 + pos: 43.5,75.5 parent: 2 - - uid: 3519 + - uid: 2617 components: - type: Transform - pos: 12.5,-19.5 + pos: 43.5,76.5 parent: 2 - - uid: 3520 + - uid: 2618 components: - type: Transform - pos: 11.5,-19.5 + pos: 43.5,73.5 parent: 2 - - uid: 3521 + - uid: 2619 components: - type: Transform - pos: 11.5,-18.5 + pos: 42.5,75.5 parent: 2 - - uid: 3522 + - uid: 2620 components: - type: Transform - pos: 11.5,-17.5 + pos: 42.5,71.5 parent: 2 - - uid: 3523 + - uid: 2621 components: - type: Transform - pos: 11.5,-16.5 + pos: 41.5,71.5 parent: 2 - - uid: 3524 + - uid: 2622 components: - type: Transform - pos: 11.5,-15.5 + pos: 40.5,71.5 parent: 2 - - uid: 3525 + - uid: 2623 components: - type: Transform - pos: 11.5,-14.5 + pos: 39.5,71.5 parent: 2 - - uid: 3526 + - uid: 2624 components: - type: Transform - pos: 11.5,-13.5 + pos: 38.5,71.5 parent: 2 - - uid: 3527 + - uid: 2625 components: - type: Transform - pos: 11.5,-12.5 + pos: 37.5,71.5 parent: 2 - - uid: 3528 + - uid: 2626 components: - type: Transform - pos: 52.5,79.5 + pos: 36.5,71.5 parent: 2 - - uid: 3529 + - uid: 2627 components: - type: Transform - pos: 11.5,1.5 + pos: 35.5,71.5 parent: 2 - - uid: 3530 + - uid: 2628 components: - type: Transform - pos: 10.5,1.5 + pos: 34.5,71.5 parent: 2 - - uid: 3531 + - uid: 2629 components: - type: Transform - pos: 9.5,1.5 + pos: 33.5,71.5 parent: 2 - - uid: 3532 + - uid: 2630 components: - type: Transform - pos: 9.5,2.5 + pos: 32.5,71.5 parent: 2 - - uid: 3533 + - uid: 2631 components: - type: Transform - pos: 9.5,3.5 + pos: 37.5,72.5 parent: 2 - - uid: 3534 + - uid: 2632 components: - type: Transform - pos: 10.5,3.5 + pos: 37.5,73.5 parent: 2 - - uid: 3535 + - uid: 2633 components: - type: Transform - pos: 11.5,13.5 + pos: 37.5,74.5 parent: 2 - - uid: 3536 + - uid: 2634 components: - type: Transform - pos: 57.5,67.5 + pos: 37.5,75.5 parent: 2 - - uid: 3537 + - uid: 2635 components: - type: Transform - pos: 57.5,66.5 + pos: 37.5,76.5 parent: 2 - - uid: 3538 + - uid: 2636 components: - type: Transform - pos: 45.5,41.5 + pos: 37.5,77.5 parent: 2 - - uid: 3539 + - uid: 2637 components: - type: Transform - pos: 45.5,40.5 + pos: 37.5,78.5 parent: 2 - - uid: 3540 + - uid: 2638 components: - type: Transform - pos: 45.5,39.5 + pos: 37.5,79.5 parent: 2 - - uid: 3541 + - uid: 2639 components: - type: Transform - pos: 46.5,39.5 + pos: 37.5,80.5 parent: 2 - - uid: 3542 + - uid: 2640 components: - type: Transform - pos: 47.5,39.5 + pos: 37.5,81.5 parent: 2 - - uid: 3543 + - uid: 2641 components: - type: Transform - pos: 47.5,40.5 + pos: 37.5,82.5 parent: 2 - - uid: 3544 + - uid: 2642 components: - type: Transform - pos: 48.5,40.5 + pos: 36.5,80.5 parent: 2 - - uid: 3545 + - uid: 2643 components: - type: Transform - pos: 49.5,40.5 + pos: 35.5,80.5 parent: 2 - - uid: 3546 + - uid: 2644 components: - type: Transform - pos: 44.5,39.5 + pos: 34.5,80.5 parent: 2 - - uid: 3547 + - uid: 2645 components: - type: Transform - pos: 11.5,41.5 + pos: 34.5,81.5 parent: 2 - - uid: 3548 + - uid: 2646 components: - type: Transform - pos: 9.5,41.5 + pos: 34.5,82.5 parent: 2 - - uid: 3549 + - uid: 2647 components: - type: Transform - pos: 64.5,3.5 + pos: 34.5,83.5 parent: 2 - - uid: 3550 + - uid: 2648 components: - type: Transform - pos: 66.5,3.5 + pos: 38.5,80.5 parent: 2 - - uid: 3551 + - uid: 2649 components: - type: Transform - pos: 67.5,3.5 + pos: 39.5,80.5 parent: 2 - - uid: 3552 + - uid: 2650 components: - type: Transform - pos: 61.5,-3.5 + pos: 40.5,80.5 parent: 2 - - uid: 3553 + - uid: 2651 components: - type: Transform - pos: 60.5,-3.5 + pos: 41.5,80.5 parent: 2 - - uid: 3554 + - uid: 2652 components: - type: Transform - pos: 59.5,-3.5 + pos: 42.5,80.5 parent: 2 - - uid: 3555 + - uid: 2653 components: - type: Transform - pos: 63.5,3.5 + pos: 43.5,80.5 parent: 2 - - uid: 3556 + - uid: 2654 components: - type: Transform - pos: 65.5,3.5 + pos: 47.5,80.5 parent: 2 - - uid: 3557 + - uid: 2655 components: - type: Transform - pos: 74.5,18.5 + pos: 50.5,81.5 parent: 2 - - uid: 3558 + - uid: 2656 components: - type: Transform - pos: 75.5,18.5 + pos: 50.5,82.5 parent: 2 - - uid: 3559 + - uid: 2657 components: - type: Transform - pos: 75.5,19.5 + pos: 50.5,83.5 parent: 2 - - uid: 3560 + - uid: 2658 components: - type: Transform - pos: 74.5,17.5 + pos: 45.5,81.5 parent: 2 - - uid: 3561 + - uid: 2659 components: - type: Transform - pos: 53.5,77.5 + pos: 45.5,82.5 parent: 2 - - uid: 3562 + - uid: 2660 components: - type: Transform - pos: 53.5,70.5 + pos: 45.5,83.5 parent: 2 - - uid: 3563 + - uid: 2661 components: - type: Transform - pos: 55.5,47.5 + pos: 45.5,84.5 parent: 2 - - uid: 3564 + - uid: 2662 components: - type: Transform - pos: 55.5,48.5 + pos: 45.5,85.5 parent: 2 - - uid: 3565 + - uid: 2663 components: - type: Transform - pos: 51.5,60.5 + pos: 45.5,86.5 parent: 2 - - uid: 3566 + - uid: 2664 components: - type: Transform - pos: 51.5,63.5 + pos: 46.5,87.5 parent: 2 - - uid: 3567 + - uid: 2665 components: - type: Transform - pos: 58.5,45.5 + pos: 46.5,88.5 parent: 2 - - uid: 3568 + - uid: 2666 components: - type: Transform - pos: 57.5,45.5 + pos: 43.5,78.5 parent: 2 - - uid: 3569 + - uid: 2667 components: - type: Transform - pos: 60.5,45.5 + pos: 42.5,78.5 parent: 2 - - uid: 3570 + - uid: 2668 components: - type: Transform - pos: 59.5,45.5 + pos: 41.5,78.5 parent: 2 - - uid: 3571 + - uid: 2669 components: - type: Transform - pos: 47.5,66.5 + pos: 40.5,78.5 parent: 2 - - uid: 3572 + - uid: 2670 components: - type: Transform - pos: 47.5,67.5 + pos: 39.5,78.5 parent: 2 - - uid: 3573 + - uid: 2671 components: - type: Transform - pos: 47.5,68.5 + pos: 38.5,78.5 parent: 2 - - uid: 3574 + - uid: 2672 components: - type: Transform - pos: 47.5,69.5 + pos: 39.5,77.5 parent: 2 - - uid: 3575 + - uid: 2673 components: - type: Transform - pos: 47.5,70.5 + pos: 39.5,76.5 parent: 2 - - uid: 3576 + - uid: 2674 components: - type: Transform - pos: 47.5,71.5 + pos: 39.5,75.5 parent: 2 - - uid: 3577 + - uid: 2675 components: - type: Transform - pos: 47.5,72.5 + pos: 39.5,74.5 parent: 2 - - uid: 3578 + - uid: 2676 components: - type: Transform - pos: 48.5,72.5 + pos: 39.5,73.5 parent: 2 - - uid: 3579 + - uid: 2677 components: - type: Transform - pos: 49.5,72.5 + pos: 39.5,72.5 parent: 2 - - uid: 3580 + - uid: 2678 components: - type: Transform - pos: 50.5,72.5 + pos: 36.5,75.5 parent: 2 - - uid: 3581 + - uid: 2679 components: - type: Transform - pos: 51.5,72.5 + pos: 35.5,75.5 parent: 2 - - uid: 3582 + - uid: 2680 components: - type: Transform - pos: 57.5,54.5 + pos: 34.5,75.5 parent: 2 - - uid: 3583 + - uid: 2681 components: - type: Transform - pos: 57.5,53.5 + pos: 72.5,66.5 parent: 2 - - uid: 3584 + - uid: 2682 components: - type: Transform - pos: 57.5,52.5 + pos: 72.5,65.5 parent: 2 - - uid: 3585 + - uid: 2683 components: - type: Transform - pos: 53.5,53.5 + pos: 72.5,64.5 parent: 2 - - uid: 3586 + - uid: 2684 components: - type: Transform - pos: 48.5,-15.5 + pos: 72.5,63.5 parent: 2 - - uid: 3587 + - uid: 2685 components: - type: Transform - pos: 50.5,69.5 + pos: 72.5,62.5 parent: 2 - - uid: 3588 + - uid: 2686 components: - type: Transform - pos: 51.5,70.5 + pos: 72.5,61.5 parent: 2 - - uid: 3590 + - uid: 2687 components: - type: Transform - pos: 47.5,75.5 + pos: 72.5,60.5 parent: 2 - - uid: 3591 + - uid: 2688 components: - type: Transform - pos: 54.5,68.5 + pos: 72.5,59.5 parent: 2 - - uid: 3592 + - uid: 2689 components: - type: Transform - pos: 50.5,68.5 + pos: 72.5,58.5 parent: 2 - - uid: 3593 + - uid: 2690 components: - type: Transform - pos: 52.5,71.5 + pos: 72.5,57.5 parent: 2 - - uid: 3594 + - uid: 2691 components: - type: Transform - pos: 54.5,70.5 + pos: 72.5,56.5 parent: 2 - - uid: 3595 + - uid: 2692 components: - type: Transform - pos: 10.5,41.5 + pos: 72.5,55.5 parent: 2 - - uid: 3596 + - uid: 2693 components: - type: Transform - pos: 54.5,69.5 + pos: 71.5,58.5 parent: 2 - - uid: 3597 + - uid: 2694 components: - type: Transform - pos: 50.5,70.5 + pos: 70.5,58.5 parent: 2 - - uid: 3647 + - uid: 2695 components: - type: Transform - pos: 10.5,44.5 + pos: 69.5,58.5 parent: 2 - - uid: 3648 + - uid: 2696 components: - type: Transform - pos: 10.5,43.5 + pos: 68.5,58.5 parent: 2 - - uid: 3649 + - uid: 2697 components: - type: Transform - pos: 9.5,43.5 + pos: 71.5,55.5 parent: 2 - - uid: 3650 + - uid: 2698 components: - type: Transform - pos: 12.5,42.5 + pos: 70.5,55.5 parent: 2 - - uid: 3651 + - uid: 2699 components: - type: Transform - pos: 9.5,42.5 + pos: 69.5,55.5 parent: 2 - - uid: 3652 + - uid: 2700 components: - type: Transform - pos: 12.5,41.5 + pos: 68.5,55.5 parent: 2 - - uid: 3653 + - uid: 2701 components: - type: Transform - pos: 10.5,45.5 + pos: 73.5,55.5 parent: 2 - - uid: 3654 + - uid: 2702 components: - type: Transform - pos: 9.5,45.5 + pos: 74.5,55.5 parent: 2 - - uid: 3655 + - uid: 2703 components: - type: Transform - pos: 8.5,45.5 + pos: 75.5,55.5 parent: 2 - - uid: 3656 + - uid: 2704 components: - type: Transform - pos: 53.5,-20.5 + pos: 76.5,55.5 parent: 2 - - uid: 3657 + - uid: 2705 components: - type: Transform - pos: 54.5,-20.5 + pos: 77.5,55.5 parent: 2 - - uid: 3658 + - uid: 2706 components: - type: Transform - pos: 55.5,-20.5 + pos: 78.5,55.5 parent: 2 - - uid: 3659 + - uid: 2707 components: - type: Transform - pos: 56.5,-20.5 + pos: 79.5,55.5 parent: 2 - - uid: 3660 + - uid: 2708 components: - type: Transform - pos: 57.5,-20.5 + pos: 80.5,55.5 parent: 2 - - uid: 3661 + - uid: 2709 components: - type: Transform - pos: 58.5,-20.5 + pos: 81.5,55.5 parent: 2 - - uid: 3662 + - uid: 2710 components: - type: Transform - pos: 59.5,-20.5 + pos: 82.5,55.5 parent: 2 - - uid: 3663 + - uid: 2711 components: - type: Transform - pos: 59.5,-22.5 + pos: 83.5,55.5 parent: 2 - - uid: 3664 + - uid: 2712 components: - type: Transform - pos: 58.5,-22.5 + pos: 82.5,56.5 parent: 2 - - uid: 3665 + - uid: 2713 components: - type: Transform - pos: 57.5,-22.5 + pos: 82.5,57.5 parent: 2 - - uid: 3666 + - uid: 2714 components: - type: Transform - pos: 56.5,-22.5 + pos: 82.5,58.5 parent: 2 - - uid: 3668 + - uid: 2715 components: - type: Transform - pos: 54.5,-22.5 + pos: 82.5,59.5 parent: 2 - - uid: 3669 + - uid: 2716 components: - type: Transform - pos: 53.5,-22.5 + pos: 82.5,60.5 parent: 2 - - uid: 3670 + - uid: 2717 components: - type: Transform - pos: 53.5,-24.5 + pos: 82.5,61.5 parent: 2 - - uid: 3671 + - uid: 2718 components: - type: Transform - pos: 54.5,-24.5 + pos: 82.5,62.5 parent: 2 - - uid: 3672 + - uid: 2719 components: - type: Transform - pos: 55.5,-24.5 + pos: 82.5,63.5 parent: 2 - - uid: 3673 + - uid: 2720 components: - type: Transform - pos: 56.5,-24.5 + pos: 82.5,64.5 parent: 2 - - uid: 3674 + - uid: 2721 components: - type: Transform - pos: 57.5,-24.5 + pos: 82.5,65.5 parent: 2 - - uid: 3675 + - uid: 2722 components: - type: Transform - pos: 58.5,-24.5 + pos: 81.5,65.5 parent: 2 - - uid: 3676 + - uid: 2723 components: - type: Transform - pos: 59.5,-24.5 + pos: 80.5,65.5 parent: 2 - - uid: 3677 + - uid: 2724 components: - type: Transform - pos: 59.5,-26.5 + pos: 79.5,65.5 parent: 2 - - uid: 3682 + - uid: 2725 components: - type: Transform - pos: 54.5,-26.5 + pos: 78.5,65.5 parent: 2 - - uid: 3683 + - uid: 2726 components: - type: Transform - pos: 53.5,-26.5 + pos: 77.5,65.5 parent: 2 - - uid: 3684 + - uid: 2727 components: - type: Transform - pos: 56.5,-36.5 + pos: 76.5,65.5 parent: 2 - - uid: 3685 + - uid: 2728 components: - type: Transform - pos: 56.5,-35.5 + pos: 75.5,65.5 parent: 2 - - uid: 3689 + - uid: 2729 components: - type: Transform - pos: 49.5,-17.5 + pos: 74.5,65.5 parent: 2 - - uid: 3690 + - uid: 2730 components: - type: Transform - pos: 50.5,-17.5 + pos: 73.5,65.5 parent: 2 - - uid: 3691 + - uid: 2731 components: - type: Transform - pos: 51.5,-17.5 + pos: 71.5,65.5 parent: 2 - - uid: 3692 + - uid: 2732 components: - type: Transform - pos: 51.5,-18.5 + pos: 70.5,65.5 parent: 2 - - uid: 3693 + - uid: 2733 components: - type: Transform - pos: 51.5,-19.5 + pos: 69.5,65.5 parent: 2 - - uid: 3694 + - uid: 2734 components: - type: Transform - pos: 51.5,-20.5 + pos: 68.5,65.5 parent: 2 - - uid: 3695 + - uid: 2735 components: - type: Transform - pos: 51.5,-21.5 + pos: 68.5,64.5 parent: 2 - - uid: 3696 + - uid: 2736 components: - type: Transform - pos: 48.5,-17.5 + pos: 68.5,63.5 parent: 2 - - uid: 3697 + - uid: 2737 components: - type: Transform - pos: 48.5,-16.5 + pos: 68.5,62.5 parent: 2 - - uid: 3698 + - uid: 2738 components: - type: Transform - pos: 48.5,-14.5 + pos: 68.5,61.5 parent: 2 - - uid: 3699 + - uid: 2739 components: - type: Transform - pos: 48.5,-13.5 + pos: 68.5,60.5 parent: 2 - - uid: 3700 + - uid: 2740 components: - type: Transform - pos: 49.5,-13.5 + pos: 68.5,59.5 parent: 2 - - uid: 3701 + - uid: 2741 components: - type: Transform - pos: 50.5,-13.5 + pos: 69.5,61.5 parent: 2 - - uid: 3702 + - uid: 2742 components: - type: Transform - pos: 51.5,-13.5 + pos: 70.5,61.5 parent: 2 - - uid: 3703 + - uid: 2743 components: - type: Transform - pos: 52.5,-13.5 + pos: 71.5,61.5 parent: 2 - - uid: 3704 + - uid: 2744 components: - type: Transform - pos: 52.5,-12.5 + pos: 73.5,60.5 parent: 2 - - uid: 3705 + - uid: 2745 components: - type: Transform - pos: 52.5,-11.5 + pos: 74.5,60.5 parent: 2 - - uid: 3706 + - uid: 2746 components: - type: Transform - pos: 52.5,-10.5 + pos: 75.5,60.5 parent: 2 - - uid: 3707 + - uid: 2747 components: - type: Transform - pos: 52.5,-9.5 + pos: 76.5,60.5 parent: 2 - - uid: 3708 + - uid: 2748 components: - type: Transform - pos: 52.5,-8.5 + pos: 77.5,60.5 parent: 2 - - uid: 3709 + - uid: 2749 components: - type: Transform - pos: 52.5,-7.5 + pos: 78.5,60.5 parent: 2 - - uid: 3710 + - uid: 2750 components: - type: Transform - pos: 53.5,-7.5 + pos: 79.5,60.5 parent: 2 - - uid: 3711 + - uid: 2751 components: - type: Transform - pos: 54.5,-7.5 + pos: 80.5,60.5 parent: 2 - - uid: 3712 + - uid: 2752 components: - type: Transform - pos: 55.5,-7.5 + pos: 81.5,60.5 parent: 2 - - uid: 3713 + - uid: 2753 components: - type: Transform - pos: 56.5,-7.5 + pos: 83.5,63.5 parent: 2 - - uid: 3714 + - uid: 2754 components: - type: Transform - pos: 57.5,-7.5 + pos: 84.5,63.5 parent: 2 - - uid: 3715 + - uid: 2755 components: - type: Transform - pos: 58.5,-7.5 + pos: 85.5,63.5 parent: 2 - - uid: 3716 + - uid: 2756 components: - type: Transform - pos: 59.5,-7.5 + pos: 86.5,63.5 parent: 2 - - uid: 3717 + - uid: 2757 components: - type: Transform - pos: 59.5,-6.5 + pos: 87.5,63.5 parent: 2 - - uid: 3718 + - uid: 2758 components: - type: Transform - pos: 59.5,-5.5 + pos: 87.5,57.5 parent: 2 - - uid: 3719 + - uid: 2759 components: - type: Transform - pos: 59.5,-4.5 + pos: 86.5,57.5 parent: 2 - - uid: 3720 + - uid: 2760 components: - type: Transform - pos: 59.5,-3.5 + pos: 85.5,57.5 parent: 2 - - uid: 3721 + - uid: 2761 components: - type: Transform - pos: 59.5,-2.5 + pos: 84.5,57.5 parent: 2 - - uid: 3722 + - uid: 2762 components: - type: Transform - pos: 59.5,-1.5 + pos: 83.5,57.5 parent: 2 - - uid: 3723 + - uid: 2763 components: - type: Transform - pos: 60.5,-1.5 + pos: 82.5,54.5 parent: 2 - - uid: 3724 + - uid: 2764 components: - type: Transform - pos: 61.5,-1.5 + pos: 82.5,53.5 parent: 2 - - uid: 3725 + - uid: 2765 components: - type: Transform - pos: 62.5,-1.5 + pos: 82.5,52.5 parent: 2 - - uid: 3726 + - uid: 2766 components: - type: Transform - pos: 62.5,-0.5 + pos: 76.5,56.5 parent: 2 - - uid: 3727 + - uid: 2767 components: - type: Transform - pos: 62.5,0.5 + pos: 76.5,57.5 parent: 2 - - uid: 3728 + - uid: 2768 components: - type: Transform - pos: 62.5,1.5 + pos: 76.5,58.5 parent: 2 - - uid: 3729 + - uid: 2769 components: - type: Transform - pos: 62.5,2.5 + pos: 76.5,59.5 parent: 2 - - uid: 3730 + - uid: 2770 components: - type: Transform - pos: 62.5,3.5 + pos: 76.5,61.5 parent: 2 - - uid: 3731 + - uid: 2771 components: - type: Transform - pos: 67.5,4.5 + pos: 76.5,62.5 parent: 2 - - uid: 3732 + - uid: 2772 components: - type: Transform - pos: 68.5,4.5 + pos: 76.5,63.5 parent: 2 - - uid: 3733 + - uid: 2773 components: - type: Transform - pos: 69.5,4.5 + pos: 76.5,64.5 parent: 2 - - uid: 3734 + - uid: 2774 components: - type: Transform - pos: 70.5,4.5 + pos: 67.5,57.5 parent: 2 - - uid: 3735 + - uid: 2775 components: - type: Transform - pos: 71.5,4.5 + pos: 66.5,57.5 parent: 2 - - uid: 3736 + - uid: 2776 components: - type: Transform - pos: 71.5,5.5 + pos: 65.5,57.5 parent: 2 - - uid: 3737 + - uid: 2777 components: - type: Transform - pos: 71.5,6.5 + pos: 64.5,57.5 parent: 2 - - uid: 3738 + - uid: 2778 components: - type: Transform - pos: 71.5,7.5 + pos: 63.5,57.5 parent: 2 - - uid: 3739 + - uid: 2779 components: - type: Transform - pos: 71.5,8.5 + pos: 62.5,57.5 parent: 2 - - uid: 3740 + - uid: 2780 components: - type: Transform - pos: 71.5,9.5 + pos: 62.5,56.5 parent: 2 - - uid: 3741 + - uid: 2781 components: - type: Transform - pos: 71.5,10.5 + pos: 83.5,48.5 parent: 2 - - uid: 3742 + - uid: 2782 components: - type: Transform - pos: 72.5,10.5 + pos: 84.5,48.5 parent: 2 - - uid: 3743 + - uid: 2783 components: - type: Transform - pos: 73.5,10.5 + pos: 85.5,48.5 parent: 2 - - uid: 3744 + - uid: 2784 components: - type: Transform - pos: 74.5,10.5 + pos: 86.5,48.5 parent: 2 - - uid: 3745 + - uid: 2785 components: - type: Transform - pos: 75.5,10.5 + pos: 83.5,41.5 parent: 2 - - uid: 3746 + - uid: 2786 components: - type: Transform - pos: 76.5,10.5 + pos: 84.5,41.5 parent: 2 - - uid: 3747 + - uid: 2787 components: - type: Transform - pos: 77.5,10.5 + pos: 85.5,41.5 parent: 2 - - uid: 3748 + - uid: 2788 components: - type: Transform - pos: 78.5,10.5 + pos: 71.5,41.5 parent: 2 - - uid: 3749 + - uid: 2789 components: - type: Transform - pos: 79.5,10.5 + pos: 72.5,41.5 parent: 2 - - uid: 3750 + - uid: 2790 components: - type: Transform - pos: 80.5,10.5 + pos: 73.5,41.5 parent: 2 - - uid: 3751 + - uid: 2791 components: - type: Transform - pos: 81.5,10.5 + pos: 74.5,41.5 parent: 2 - - uid: 3752 + - uid: 2792 components: - type: Transform - pos: 82.5,10.5 + pos: 75.5,41.5 parent: 2 - - uid: 3753 + - uid: 2793 components: - type: Transform - pos: 83.5,10.5 + pos: 76.5,41.5 parent: 2 - - uid: 3754 + - uid: 2794 components: - type: Transform - pos: 83.5,11.5 + pos: 77.5,41.5 parent: 2 - - uid: 3755 + - uid: 2795 components: - type: Transform - pos: 84.5,11.5 + pos: 79.5,41.5 parent: 2 - - uid: 3756 + - uid: 2796 components: - type: Transform - pos: 85.5,11.5 + pos: 78.5,41.5 parent: 2 - - uid: 3757 + - uid: 2797 components: - type: Transform - pos: 85.5,23.5 + pos: 75.5,42.5 parent: 2 - - uid: 3758 + - uid: 2798 components: - type: Transform - pos: 84.5,23.5 + pos: 75.5,43.5 parent: 2 - - uid: 3759 + - uid: 2799 components: - type: Transform - pos: 83.5,23.5 + pos: 74.5,43.5 parent: 2 - - uid: 3760 + - uid: 2800 components: - type: Transform - pos: 82.5,23.5 + pos: 73.5,43.5 parent: 2 - - uid: 3761 + - uid: 2801 components: - type: Transform - pos: 81.5,23.5 + pos: 73.5,44.5 parent: 2 - - uid: 3762 + - uid: 2802 components: - type: Transform - pos: 80.5,23.5 + pos: 73.5,45.5 parent: 2 - - uid: 3763 + - uid: 2803 components: - type: Transform - pos: 79.5,23.5 + pos: 73.5,46.5 parent: 2 - - uid: 3764 + - uid: 2804 components: - type: Transform - pos: 78.5,23.5 + pos: 73.5,47.5 parent: 2 - - uid: 3765 + - uid: 2805 components: - type: Transform - pos: 77.5,23.5 + pos: 73.5,48.5 parent: 2 - - uid: 3766 + - uid: 2806 components: - type: Transform - pos: 76.5,23.5 + pos: 73.5,49.5 parent: 2 - - uid: 3767 + - uid: 2807 components: - type: Transform - pos: 75.5,23.5 + pos: 73.5,50.5 parent: 2 - - uid: 3768 + - uid: 2808 components: - type: Transform - pos: 74.5,23.5 + pos: 72.5,45.5 parent: 2 - - uid: 3769 + - uid: 2809 components: - type: Transform - pos: 73.5,23.5 + pos: 71.5,45.5 parent: 2 - - uid: 3770 + - uid: 2810 components: - type: Transform - pos: 72.5,23.5 + pos: 74.5,47.5 parent: 2 - - uid: 3771 + - uid: 2811 components: - type: Transform - pos: 71.5,23.5 + pos: 75.5,47.5 parent: 2 - - uid: 3772 + - uid: 2812 components: - type: Transform - pos: 71.5,22.5 + pos: 76.5,47.5 parent: 2 - - uid: 3773 + - uid: 2813 components: - type: Transform - pos: 71.5,21.5 + pos: 77.5,47.5 parent: 2 - - uid: 3774 + - uid: 2814 components: - type: Transform - pos: 71.5,20.5 + pos: 77.5,48.5 parent: 2 - - uid: 3775 + - uid: 2815 components: - type: Transform - pos: 71.5,19.5 + pos: 77.5,49.5 parent: 2 - - uid: 3776 + - uid: 2816 components: - type: Transform - pos: 71.5,18.5 + pos: 77.5,50.5 parent: 2 - - uid: 3777 + - uid: 2817 components: - type: Transform - pos: 71.5,17.5 + pos: 77.5,46.5 parent: 2 - - uid: 3778 + - uid: 2818 components: - type: Transform - pos: 71.5,16.5 + pos: 77.5,45.5 parent: 2 - - uid: 3779 + - uid: 2819 components: - type: Transform - pos: 70.5,16.5 + pos: 77.5,44.5 parent: 2 - - uid: 3780 + - uid: 2820 components: - type: Transform - pos: 69.5,16.5 + pos: 43.5,48.5 parent: 2 - - uid: 3781 + - uid: 2821 components: - type: Transform - pos: 68.5,16.5 + pos: 3.5,18.5 parent: 2 - - uid: 3782 + - uid: 2822 components: - type: Transform - pos: 67.5,16.5 + pos: 33.5,83.5 parent: 2 - - uid: 3783 + - uid: 2823 components: - type: Transform - pos: 67.5,17.5 + pos: 31.5,83.5 parent: 2 - - uid: 3784 + - uid: 2824 components: - type: Transform - pos: 67.5,18.5 + pos: 30.5,83.5 parent: 2 - - uid: 3785 + - uid: 2825 components: - type: Transform - pos: 67.5,19.5 + pos: 29.5,83.5 parent: 2 - - uid: 3786 + - uid: 2826 components: - type: Transform - pos: 67.5,20.5 + pos: 28.5,83.5 parent: 2 - - uid: 3787 + - uid: 2827 components: - type: Transform - pos: 67.5,21.5 + pos: 27.5,83.5 parent: 2 - - uid: 3788 + - uid: 2828 components: - type: Transform - pos: 66.5,21.5 + pos: 26.5,83.5 parent: 2 - - uid: 3789 + - uid: 2829 components: - type: Transform - pos: 65.5,21.5 + pos: 33.5,81.5 parent: 2 - - uid: 3790 + - uid: 2830 components: - type: Transform - pos: 64.5,21.5 + pos: 32.5,81.5 parent: 2 - - uid: 3791 + - uid: 2831 components: - type: Transform - pos: 64.5,22.5 + pos: 31.5,81.5 parent: 2 - - uid: 3792 + - uid: 2832 components: - type: Transform - pos: 64.5,23.5 + pos: 30.5,81.5 parent: 2 - - uid: 3793 + - uid: 2833 components: - type: Transform - pos: 64.5,24.5 + pos: 29.5,81.5 parent: 2 - - uid: 3794 + - uid: 2834 components: - type: Transform - pos: 64.5,25.5 + pos: 28.5,81.5 parent: 2 - - uid: 3795 + - uid: 2835 components: - type: Transform - pos: 64.5,26.5 + pos: 27.5,81.5 parent: 2 - - uid: 3796 + - uid: 2836 components: - type: Transform - pos: 64.5,27.5 + pos: 26.5,81.5 parent: 2 - - uid: 3797 + - uid: 2837 components: - type: Transform - pos: 64.5,28.5 + pos: 26.5,79.5 parent: 2 - - uid: 3798 + - uid: 2838 components: - type: Transform - pos: 64.5,29.5 + pos: 27.5,79.5 parent: 2 - - uid: 3799 + - uid: 2839 components: - type: Transform - pos: 64.5,30.5 + pos: 28.5,79.5 parent: 2 - - uid: 3800 + - uid: 2840 components: - type: Transform - pos: 64.5,31.5 + pos: 29.5,79.5 parent: 2 - - uid: 3801 + - uid: 2841 components: - type: Transform - pos: 64.5,32.5 + pos: 30.5,79.5 parent: 2 - - uid: 3802 + - uid: 2842 components: - type: Transform - pos: 64.5,33.5 + pos: 31.5,79.5 parent: 2 - - uid: 3803 + - uid: 2843 components: - type: Transform - pos: 63.5,35.5 + pos: 32.5,79.5 parent: 2 - - uid: 3804 + - uid: 2844 components: - type: Transform - pos: 63.5,36.5 + pos: 33.5,79.5 parent: 2 - - uid: 3805 + - uid: 2845 components: - type: Transform - pos: 63.5,37.5 + pos: 34.5,79.5 parent: 2 - - uid: 3806 + - uid: 2846 components: - type: Transform - pos: 63.5,38.5 + pos: 34.5,78.5 parent: 2 - - uid: 3807 + - uid: 2847 components: - type: Transform - pos: 63.5,39.5 + pos: 34.5,77.5 parent: 2 - - uid: 3808 + - uid: 2848 components: - type: Transform - pos: 63.5,40.5 + pos: 34.5,76.5 parent: 2 - - uid: 3809 + - uid: 2849 components: - type: Transform - pos: 63.5,41.5 + pos: 33.5,77.5 parent: 2 - - uid: 3810 + - uid: 2850 components: - type: Transform - pos: 63.5,42.5 + pos: 32.5,77.5 parent: 2 - - uid: 3811 + - uid: 2851 components: - type: Transform - pos: 63.5,43.5 + pos: 31.5,77.5 parent: 2 - - uid: 3812 + - uid: 2852 components: - type: Transform - pos: 63.5,44.5 + pos: 30.5,77.5 parent: 2 - - uid: 3813 + - uid: 2853 components: - type: Transform - pos: 63.5,45.5 + pos: 29.5,77.5 parent: 2 - - uid: 3814 + - uid: 2854 components: - type: Transform - pos: 62.5,45.5 + pos: 28.5,77.5 parent: 2 - - uid: 3815 + - uid: 2855 components: - type: Transform - pos: 61.5,45.5 + pos: 27.5,77.5 parent: 2 - - uid: 3816 + - uid: 2856 components: - type: Transform - pos: 54.5,48.5 + pos: 26.5,77.5 parent: 2 - - uid: 3817 + - uid: 2857 components: - type: Transform - pos: 53.5,48.5 + pos: 26.5,75.5 parent: 2 - - uid: 3818 + - uid: 2858 components: - type: Transform - pos: 53.5,49.5 + pos: 27.5,75.5 parent: 2 - - uid: 3819 + - uid: 2859 components: - type: Transform - pos: 53.5,50.5 + pos: 28.5,75.5 parent: 2 - - uid: 3820 + - uid: 2860 components: - type: Transform - pos: 53.5,51.5 + pos: 29.5,75.5 parent: 2 - - uid: 3821 + - uid: 2861 components: - type: Transform - pos: 53.5,62.5 + pos: 30.5,75.5 parent: 2 - - uid: 3822 + - uid: 2862 components: - type: Transform - pos: 54.5,65.5 + pos: 31.5,75.5 parent: 2 - - uid: 3823 + - uid: 2863 components: - type: Transform - pos: 12.5,40.5 + pos: 32.5,75.5 parent: 2 - - uid: 3824 + - uid: 2864 components: - type: Transform - pos: 12.5,39.5 + pos: 33.5,75.5 parent: 2 - - uid: 3825 + - uid: 2865 components: - type: Transform - pos: 12.5,38.5 + pos: 26.5,73.5 parent: 2 - - uid: 3826 + - uid: 2866 components: - type: Transform - pos: 12.5,37.5 + pos: 27.5,73.5 parent: 2 - - uid: 3827 + - uid: 2867 components: - type: Transform - pos: 13.5,37.5 + pos: 28.5,73.5 parent: 2 - - uid: 3828 + - uid: 2868 components: - type: Transform - pos: 14.5,37.5 + pos: 29.5,73.5 parent: 2 - - uid: 3829 + - uid: 2869 components: - type: Transform - pos: 15.5,37.5 + pos: 30.5,73.5 parent: 2 - - uid: 3830 + - uid: 2870 components: - type: Transform - pos: 16.5,37.5 + pos: 31.5,73.5 parent: 2 - - uid: 3831 + - uid: 2871 components: - type: Transform - pos: 17.5,37.5 + pos: 32.5,73.5 parent: 2 - - uid: 3832 + - uid: 2872 components: - type: Transform - pos: 18.5,37.5 + pos: 33.5,73.5 parent: 2 - - uid: 3833 + - uid: 2873 components: - type: Transform - pos: 19.5,37.5 + pos: 34.5,73.5 parent: 2 - - uid: 3834 + - uid: 2874 components: - type: Transform - pos: 20.5,37.5 + pos: 34.5,74.5 parent: 2 - - uid: 3835 + - uid: 2875 components: - type: Transform - pos: 21.5,37.5 + pos: 6.5,28.5 parent: 2 - - uid: 3836 + - uid: 2876 components: - type: Transform - pos: 22.5,37.5 + pos: 7.5,28.5 parent: 2 - - uid: 3837 + - uid: 2877 components: - type: Transform - pos: 23.5,37.5 + pos: 9.5,22.5 parent: 2 - - uid: 3838 + - uid: 2878 components: - type: Transform - pos: 24.5,37.5 + pos: 8.5,22.5 parent: 2 - - uid: 3839 + - uid: 2879 components: - type: Transform - pos: 25.5,37.5 + pos: 7.5,22.5 parent: 2 - - uid: 3840 + - uid: 2880 components: - type: Transform - pos: 26.5,37.5 + pos: 17.5,25.5 parent: 2 - - uid: 3841 + - uid: 2881 components: - type: Transform - pos: 27.5,37.5 + pos: 16.5,25.5 parent: 2 - - uid: 3842 + - uid: 2882 components: - type: Transform - pos: 28.5,37.5 + pos: 79.5,29.5 parent: 2 - - uid: 3843 + - uid: 2883 components: - type: Transform - pos: 29.5,37.5 + pos: 79.5,28.5 parent: 2 - - uid: 3844 + - uid: 2884 components: - type: Transform - pos: 30.5,37.5 + pos: 79.5,27.5 parent: 2 - - uid: 3845 + - uid: 2885 components: - type: Transform - pos: 31.5,37.5 + pos: 79.5,26.5 parent: 2 - - uid: 3846 + - uid: 2886 components: - type: Transform - pos: 32.5,37.5 + pos: 80.5,28.5 parent: 2 - - uid: 3847 + - uid: 2887 components: - type: Transform - pos: 33.5,37.5 + pos: 81.5,28.5 parent: 2 - - uid: 3848 + - uid: 2888 components: - type: Transform - pos: 34.5,37.5 + pos: 79.5,30.5 parent: 2 - - uid: 3873 + - uid: 2889 components: - type: Transform - pos: 35.5,37.5 + pos: 79.5,31.5 parent: 2 - - uid: 3874 + - uid: 2890 components: - type: Transform - pos: 36.5,37.5 + pos: 79.5,32.5 parent: 2 - - uid: 3875 + - uid: 2891 components: - type: Transform - pos: 27.5,27.5 + pos: 79.5,33.5 parent: 2 - - uid: 3876 + - uid: 2892 components: - type: Transform - pos: 26.5,27.5 + pos: 79.5,34.5 parent: 2 - - uid: 3878 + - uid: 2893 components: - type: Transform - pos: 28.5,27.5 + pos: 78.5,32.5 parent: 2 - - uid: 3879 + - uid: 2894 components: - type: Transform - pos: 29.5,27.5 + pos: 77.5,32.5 parent: 2 - - uid: 3880 + - uid: 2895 components: - type: Transform - pos: 29.5,26.5 + pos: 76.5,32.5 parent: 2 - - uid: 3881 + - uid: 2896 components: - type: Transform - pos: 29.5,25.5 + pos: 75.5,32.5 parent: 2 - - uid: 3882 + - uid: 2897 components: - type: Transform - pos: 31.5,25.5 + pos: 74.5,32.5 parent: 2 - - uid: 3883 + - uid: 2898 components: - type: Transform - pos: 32.5,25.5 + pos: 73.5,32.5 parent: 2 - - uid: 3884 + - uid: 2899 components: - type: Transform - pos: 33.5,25.5 + pos: 80.5,32.5 parent: 2 - - uid: 3885 + - uid: 2900 components: - type: Transform - pos: 34.5,25.5 + pos: 81.5,32.5 parent: 2 - - uid: 3886 + - uid: 2901 components: - type: Transform - pos: 35.5,25.5 + pos: 82.5,32.5 parent: 2 - - uid: 3887 + - uid: 2902 components: - type: Transform - pos: 30.5,25.5 + pos: 83.5,32.5 parent: 2 - - uid: 3888 + - uid: 2903 components: - type: Transform - pos: 36.5,25.5 + pos: 83.5,33.5 parent: 2 - - uid: 3891 + - uid: 2904 components: - type: Transform - pos: 38.5,26.5 + pos: 83.5,34.5 parent: 2 - - uid: 3897 + - uid: 2905 components: - type: Transform - pos: 44.5,26.5 + pos: 83.5,31.5 parent: 2 - - uid: 3898 + - uid: 2906 components: - type: Transform - pos: 45.5,26.5 + pos: 83.5,30.5 parent: 2 - - uid: 3899 + - uid: 2907 components: - type: Transform - pos: 45.5,27.5 + pos: 83.5,29.5 parent: 2 - - uid: 3900 + - uid: 2908 components: - type: Transform - pos: 45.5,28.5 + pos: 83.5,28.5 parent: 2 - - uid: 3901 + - uid: 2909 components: - type: Transform - pos: 45.5,29.5 + pos: 80.5,26.5 parent: 2 - - uid: 3902 + - uid: 2910 components: - type: Transform - pos: 45.5,30.5 + pos: 81.5,26.5 parent: 2 - - uid: 3903 + - uid: 2911 components: - type: Transform - pos: 45.5,31.5 + pos: 82.5,26.5 parent: 2 - - uid: 3904 + - uid: 2912 components: - type: Transform - pos: 45.5,32.5 + pos: 83.5,26.5 parent: 2 - - uid: 3905 + - uid: 2913 components: - type: Transform - pos: 45.5,33.5 + pos: 84.5,26.5 parent: 2 - - uid: 3906 + - uid: 2914 components: - type: Transform - pos: 45.5,34.5 + pos: 79.5,29.5 parent: 2 - - uid: 3907 + - uid: 2915 components: - type: Transform - pos: 45.5,35.5 + pos: 67.5,51.5 parent: 2 - - uid: 3908 + - uid: 2916 components: - type: Transform - pos: 45.5,36.5 + pos: 67.5,50.5 parent: 2 - - uid: 3909 + - uid: 2917 components: - type: Transform - pos: 46.5,36.5 + pos: 67.5,49.5 parent: 2 - - uid: 3910 + - uid: 2918 components: - type: Transform - pos: 46.5,37.5 + pos: 67.5,48.5 parent: 2 - - uid: 3911 + - uid: 2919 components: - type: Transform - pos: 46.5,38.5 + pos: 66.5,48.5 parent: 2 - - uid: 3912 + - uid: 2920 components: - type: Transform - pos: 36.5,36.5 + pos: 65.5,48.5 parent: 2 - - uid: 3913 + - uid: 2921 components: - type: Transform - pos: 36.5,35.5 + pos: 64.5,48.5 parent: 2 - - uid: 3914 + - uid: 2922 components: - type: Transform - pos: 36.5,34.5 + pos: 65.5,58.5 parent: 2 - - uid: 3915 + - uid: 2923 components: - type: Transform - pos: 36.5,33.5 + pos: 65.5,59.5 parent: 2 - - uid: 3916 + - uid: 2924 components: - type: Transform - pos: 36.5,32.5 + pos: 65.5,60.5 parent: 2 - - uid: 3917 + - uid: 2925 components: - type: Transform - pos: 36.5,31.5 + pos: 65.5,61.5 parent: 2 - - uid: 3918 + - uid: 2926 components: - type: Transform - pos: 36.5,30.5 + pos: 65.5,62.5 parent: 2 - - uid: 3919 + - uid: 2927 components: - type: Transform - pos: 36.5,29.5 + pos: 65.5,63.5 parent: 2 - - uid: 3920 + - uid: 2928 components: - type: Transform - pos: 36.5,28.5 + pos: 63.5,63.5 parent: 2 - - uid: 3921 + - uid: 2929 components: - type: Transform - pos: 36.5,27.5 + pos: 64.5,63.5 parent: 2 - - uid: 3922 + - uid: 2930 components: - type: Transform - pos: 36.5,26.5 + pos: 62.5,63.5 parent: 2 - - uid: 3923 + - uid: 2931 components: - type: Transform - pos: 36.5,25.5 + pos: 60.5,63.5 parent: 2 - - uid: 3924 + - uid: 2932 components: - type: Transform - pos: 36.5,24.5 + pos: 61.5,63.5 parent: 2 - - uid: 3925 + - uid: 2933 components: - type: Transform - pos: 36.5,23.5 + pos: 59.5,63.5 parent: 2 - - uid: 3926 + - uid: 2934 components: - type: Transform - pos: 36.5,22.5 + pos: 59.5,64.5 parent: 2 - - uid: 3927 + - uid: 2935 components: - type: Transform - pos: 36.5,21.5 + pos: 59.5,62.5 parent: 2 - - uid: 3928 + - uid: 2936 components: - type: Transform - pos: 36.5,20.5 + pos: 61.5,56.5 parent: 2 - - uid: 3929 + - uid: 2937 components: - type: Transform - pos: 36.5,19.5 + pos: 60.5,56.5 parent: 2 - - uid: 3930 + - uid: 2938 components: - type: Transform - pos: 36.5,18.5 + pos: 62.5,58.5 parent: 2 - - uid: 3931 + - uid: 2939 components: - type: Transform - pos: 36.5,17.5 + pos: 61.5,58.5 parent: 2 - - uid: 3932 + - uid: 2940 components: - type: Transform - pos: 36.5,16.5 + pos: 60.5,58.5 parent: 2 - - uid: 3933 + - uid: 2941 components: - type: Transform - pos: 36.5,15.5 + pos: 53.5,46.5 parent: 2 - - uid: 3934 + - uid: 2942 components: - type: Transform - pos: 36.5,14.5 + pos: 4.5,17.5 parent: 2 - - uid: 3935 + - uid: 2943 components: - type: Transform - pos: 36.5,13.5 + pos: 3.5,19.5 parent: 2 - - uid: 3936 + - uid: 2944 components: - type: Transform - pos: 37.5,13.5 + pos: 3.5,20.5 parent: 2 - - uid: 3937 + - uid: 2945 components: - type: Transform - pos: 38.5,13.5 + pos: 3.5,21.5 parent: 2 - - uid: 3938 + - uid: 2946 components: - type: Transform - pos: 39.5,13.5 + pos: 3.5,22.5 parent: 2 - - uid: 3939 + - uid: 2947 components: - type: Transform - pos: 40.5,13.5 + pos: 2.5,22.5 parent: 2 - - uid: 3940 + - uid: 2948 components: - type: Transform - pos: 41.5,13.5 + pos: 1.5,22.5 parent: 2 - - uid: 3941 + - uid: 2949 components: - type: Transform - pos: 42.5,13.5 + pos: 0.5,22.5 parent: 2 - - uid: 3942 + - uid: 2950 components: - type: Transform - pos: 43.5,13.5 + pos: 1.5,21.5 parent: 2 - - uid: 3943 + - uid: 2951 components: - type: Transform - pos: 44.5,13.5 + pos: 1.5,20.5 parent: 2 - - uid: 3944 + - uid: 2952 components: - type: Transform - pos: 45.5,13.5 + pos: 3.5,23.5 parent: 2 - - uid: 3945 + - uid: 2953 components: - type: Transform - pos: 46.5,13.5 + pos: 3.5,24.5 parent: 2 - - uid: 3946 + - uid: 2954 components: - type: Transform - pos: 47.5,13.5 + pos: 4.5,21.5 parent: 2 - - uid: 3947 + - uid: 2955 components: - type: Transform - pos: 48.5,13.5 + pos: 0.5,20.5 parent: 2 - - uid: 3948 + - uid: 2956 components: - type: Transform - pos: 49.5,13.5 + pos: 57.5,29.5 parent: 2 - - uid: 3949 + - uid: 2957 components: - type: Transform - pos: 50.5,13.5 + pos: 57.5,30.5 parent: 2 - - uid: 3950 + - uid: 2958 components: - type: Transform - pos: 51.5,13.5 + pos: 58.5,29.5 parent: 2 - - uid: 3951 + - uid: 2959 components: - type: Transform - pos: 52.5,13.5 + pos: 59.5,29.5 parent: 2 - - uid: 3952 + - uid: 2960 components: - type: Transform - pos: 53.5,13.5 + pos: 60.5,29.5 parent: 2 - - uid: 3953 + - uid: 2961 components: - type: Transform - pos: 54.5,13.5 + pos: 61.5,29.5 parent: 2 - - uid: 3954 + - uid: 2962 components: - type: Transform - pos: 55.5,13.5 + pos: 61.5,30.5 parent: 2 - - uid: 3955 + - uid: 2963 components: - type: Transform - pos: 56.5,13.5 + pos: 21.5,-15.5 parent: 2 - - uid: 3956 + - uid: 2964 components: - type: Transform - pos: 57.5,13.5 + pos: 20.5,-15.5 parent: 2 - - uid: 3957 + - uid: 2965 components: - type: Transform - pos: 58.5,13.5 + pos: 76.5,3.5 parent: 2 - - uid: 3958 + - uid: 2966 components: - type: Transform - pos: 59.5,13.5 + pos: 45.5,38.5 parent: 2 - - uid: 3959 + - uid: 2967 components: - type: Transform - pos: 60.5,13.5 + pos: 17.5,12.5 parent: 2 - - uid: 3960 + - uid: 2968 components: - type: Transform - pos: 61.5,13.5 + pos: 17.5,11.5 parent: 2 - - uid: 3961 + - uid: 2969 components: - type: Transform - pos: 62.5,13.5 + pos: 17.5,10.5 parent: 2 - - uid: 3962 + - uid: 2970 components: - type: Transform - pos: 63.5,13.5 + pos: 17.5,9.5 parent: 2 - - uid: 3963 + - uid: 2971 components: - type: Transform - pos: 64.5,13.5 + pos: 20.5,-11.5 parent: 2 - - uid: 3964 + - uid: 2972 components: - type: Transform - pos: 65.5,13.5 + pos: 19.5,-12.5 parent: 2 - - uid: 3965 + - uid: 2973 components: - type: Transform - pos: 66.5,13.5 + pos: 18.5,-7.5 parent: 2 - - uid: 3966 + - uid: 2974 components: - type: Transform - pos: 67.5,13.5 + pos: 66.5,43.5 parent: 2 - - uid: 3967 + - uid: 2975 components: - type: Transform - pos: 68.5,13.5 + pos: 54.5,83.5 parent: 2 - - uid: 3968 + - uid: 2976 components: - type: Transform - pos: 69.5,13.5 + pos: 54.5,82.5 parent: 2 - - uid: 3969 + - uid: 2977 components: - type: Transform - pos: 70.5,13.5 + pos: 52.5,83.5 parent: 2 - - uid: 3970 + - uid: 2978 components: - type: Transform - pos: 71.5,13.5 + pos: 51.5,83.5 parent: 2 - - uid: 3971 + - uid: 2979 components: - type: Transform - pos: 52.5,53.5 + pos: 53.5,83.5 parent: 2 - - uid: 3972 + - uid: 2980 components: - type: Transform - pos: 51.5,53.5 + pos: 59.5,49.5 parent: 2 - - uid: 3973 + - uid: 2981 components: - type: Transform - pos: 50.5,53.5 + pos: 59.5,48.5 parent: 2 - - uid: 3974 + - uid: 2982 components: - type: Transform - pos: 49.5,53.5 + pos: 58.5,48.5 parent: 2 - - uid: 3975 + - uid: 2983 components: - type: Transform - pos: 48.5,53.5 + pos: 60.5,48.5 parent: 2 - - uid: 3986 + - uid: 2984 components: - type: Transform - pos: 47.5,43.5 + pos: 61.5,48.5 parent: 2 - - uid: 3987 + - uid: 2985 components: - type: Transform - pos: 49.5,41.5 + pos: 62.5,49.5 parent: 2 - - uid: 3988 + - uid: 2986 components: - type: Transform - pos: 49.5,42.5 + pos: 61.5,49.5 parent: 2 - - uid: 3989 + - uid: 2987 components: - type: Transform - pos: 49.5,43.5 + pos: 67.5,39.5 parent: 2 - - uid: 3990 + - uid: 2988 components: - type: Transform - pos: 49.5,44.5 + pos: 66.5,39.5 parent: 2 - - uid: 3991 + - uid: 2989 components: - type: Transform - pos: 49.5,45.5 + pos: 65.5,39.5 parent: 2 - - uid: 3992 + - uid: 2990 components: - type: Transform - pos: 50.5,45.5 + pos: 66.5,40.5 parent: 2 - - uid: 3993 + - uid: 2991 components: - type: Transform - pos: 51.5,45.5 + pos: 66.5,41.5 parent: 2 - - uid: 3994 + - uid: 2992 components: - type: Transform - pos: 52.5,45.5 + pos: 66.5,38.5 parent: 2 - - uid: 3995 + - uid: 2993 components: - type: Transform - pos: 53.5,45.5 + pos: 66.5,37.5 parent: 2 - - uid: 3996 + - uid: 2994 components: - type: Transform - pos: 54.5,45.5 + pos: 10.5,-9.5 parent: 2 - - uid: 3997 + - uid: 2995 components: - type: Transform - pos: 55.5,45.5 + pos: 66.5,42.5 parent: 2 - - uid: 3998 + - uid: 2996 components: - type: Transform - pos: 71.5,14.5 + pos: 47.5,86.5 parent: 2 - - uid: 3999 + - uid: 2997 components: - type: Transform - pos: 71.5,15.5 + pos: 47.5,85.5 parent: 2 - - uid: 4000 + - uid: 2998 components: - type: Transform - pos: 71.5,24.5 + pos: 47.5,84.5 parent: 2 - - uid: 4001 + - uid: 2999 components: - type: Transform - pos: 71.5,25.5 + pos: 47.5,83.5 parent: 2 - - uid: 4002 + - uid: 3000 components: - type: Transform - pos: 71.5,26.5 + pos: 47.5,82.5 parent: 2 - - uid: 4003 + - uid: 3001 components: - type: Transform - pos: 71.5,27.5 + pos: 47.5,81.5 parent: 2 - - uid: 4004 + - uid: 3002 components: - type: Transform - pos: 71.5,28.5 + pos: -0.5,34.5 parent: 2 - - uid: 4005 + - uid: 3003 components: - type: Transform - pos: 71.5,29.5 + pos: -0.5,35.5 parent: 2 - - uid: 4006 + - uid: 3004 components: - type: Transform - pos: 71.5,30.5 + pos: 0.5,33.5 parent: 2 - - uid: 4007 + - uid: 3005 components: - type: Transform - pos: 71.5,31.5 + pos: -2.5,33.5 parent: 2 - - uid: 4008 + - uid: 3006 components: - type: Transform - pos: 71.5,32.5 + pos: -0.5,33.5 parent: 2 - - uid: 4009 + - uid: 3007 components: - type: Transform - pos: 71.5,33.5 + pos: -1.5,33.5 parent: 2 - - uid: 4010 + - uid: 3008 components: - type: Transform - pos: 71.5,34.5 + pos: -0.5,32.5 parent: 2 - - uid: 4011 + - uid: 3009 components: - type: Transform - pos: 71.5,35.5 + pos: 2.5,27.5 parent: 2 - - uid: 4012 + - uid: 3010 components: - type: Transform - pos: 71.5,36.5 + pos: 1.5,27.5 parent: 2 - - uid: 4013 + - uid: 3011 components: - type: Transform - pos: 71.5,37.5 + pos: 0.5,27.5 parent: 2 - - uid: 4014 + - uid: 3012 components: - type: Transform - pos: 71.5,38.5 + pos: 53.5,71.5 parent: 2 - - uid: 4015 + - uid: 3013 components: - type: Transform - pos: 71.5,39.5 + pos: 53.5,73.5 parent: 2 - - uid: 4016 + - uid: 3014 components: - type: Transform - pos: 71.5,40.5 + pos: 11.5,-4.5 parent: 2 - - uid: 4017 + - uid: 3015 components: - type: Transform - pos: 71.5,41.5 + pos: 75.5,3.5 parent: 2 - - uid: 4018 + - uid: 3018 components: - type: Transform - pos: 71.5,42.5 + pos: 64.5,10.5 parent: 2 - - uid: 4019 + - uid: 3020 components: - type: Transform - pos: 71.5,43.5 + pos: 15.5,67.5 parent: 2 - - uid: 4020 + - uid: 3021 components: - type: Transform - pos: 71.5,44.5 + pos: 72.5,67.5 parent: 2 - - uid: 4021 + - uid: 3022 components: - type: Transform - pos: 71.5,45.5 + pos: 76.5,8.5 parent: 2 - - uid: 4022 + - uid: 3023 components: - type: Transform - pos: 71.5,46.5 + pos: 76.5,7.5 parent: 2 - - uid: 4023 + - uid: 3024 components: - type: Transform - pos: 71.5,47.5 + pos: 76.5,6.5 parent: 2 - - uid: 4024 + - uid: 3025 components: - type: Transform - pos: 71.5,48.5 + pos: 77.5,8.5 parent: 2 - - uid: 4025 + - uid: 3026 components: - type: Transform - pos: 71.5,49.5 + pos: 78.5,8.5 parent: 2 - - uid: 4026 + - uid: 3027 components: - type: Transform - pos: 71.5,50.5 + pos: 11.5,-5.5 parent: 2 - - uid: 4027 + - uid: 3028 components: - type: Transform - pos: 71.5,51.5 + pos: 11.5,-6.5 parent: 2 - - uid: 4028 + - uid: 3029 components: - type: Transform - pos: 71.5,52.5 + pos: 11.5,-2.5 parent: 2 - - uid: 4029 + - uid: 3030 components: - type: Transform - pos: 70.5,52.5 + pos: 46.5,99.5 parent: 2 - - uid: 4030 + - uid: 3031 components: - type: Transform - pos: 69.5,52.5 + pos: 46.5,98.5 parent: 2 - - uid: 4031 + - uid: 3032 components: - type: Transform - pos: 68.5,52.5 + pos: 46.5,96.5 parent: 2 - - uid: 4032 + - uid: 3034 components: - type: Transform - pos: 67.5,52.5 + pos: -3.5,17.5 parent: 2 - - uid: 4033 + - uid: 3035 components: - type: Transform - pos: 66.5,52.5 + pos: 11.5,0.5 parent: 2 - - uid: 4034 + - uid: 3036 components: - type: Transform - pos: 65.5,52.5 + pos: 10.5,-6.5 parent: 2 - - uid: 4035 + - uid: 3037 components: - type: Transform - pos: 64.5,52.5 + pos: 60.5,10.5 parent: 2 - - uid: 4036 + - uid: 3038 components: - type: Transform - pos: 63.5,52.5 + pos: 50.5,-0.5 parent: 2 - - uid: 4037 + - uid: 3039 components: - type: Transform - pos: 62.5,52.5 + pos: 64.5,35.5 parent: 2 - - uid: 4038 + - uid: 3040 components: - type: Transform - pos: 61.5,52.5 + pos: 50.5,3.5 parent: 2 - - uid: 4039 + - uid: 3041 components: - type: Transform - pos: 60.5,52.5 + pos: 47.5,3.5 parent: 2 - - uid: 4040 + - uid: 3042 components: - type: Transform - pos: 59.5,52.5 + pos: 48.5,3.5 parent: 2 - - uid: 4041 + - uid: 3043 components: - type: Transform - pos: 58.5,52.5 + pos: 49.5,3.5 parent: 2 - - uid: 4042 + - uid: 3044 components: - type: Transform - pos: 56.5,45.5 + pos: 46.5,19.5 parent: 2 - - uid: 4043 + - uid: 3045 components: - type: Transform - pos: 57.5,68.5 + pos: 45.5,19.5 parent: 2 - - uid: 4044 + - uid: 3046 components: - type: Transform - pos: 12.5,13.5 + pos: 45.5,16.5 parent: 2 - - uid: 4045 + - uid: 3047 components: - type: Transform - pos: 12.5,14.5 + pos: 43.5,-7.5 parent: 2 - - uid: 4046 + - uid: 3048 components: - type: Transform - pos: 12.5,15.5 + pos: 51.5,3.5 parent: 2 - - uid: 4047 + - uid: 3049 components: - type: Transform - pos: 12.5,16.5 + pos: 46.5,16.5 parent: 2 - - uid: 4048 + - uid: 3050 components: - type: Transform - pos: 12.5,17.5 + pos: 46.5,82.5 parent: 2 - - uid: 4049 + - uid: 3051 components: - type: Transform - pos: 12.5,18.5 + pos: 58.5,38.5 parent: 2 - - uid: 4050 + - uid: 3052 components: - type: Transform - pos: 12.5,19.5 + pos: 45.5,23.5 parent: 2 - - uid: 4051 + - uid: 3053 components: - type: Transform - pos: 12.5,20.5 + pos: 40.5,0.5 parent: 2 - - uid: 4052 + - uid: 3054 components: - type: Transform - pos: 12.5,21.5 + pos: 40.5,-1.5 parent: 2 - - uid: 4053 + - uid: 3055 components: - type: Transform - pos: 12.5,22.5 + pos: 36.5,-1.5 parent: 2 - - uid: 4054 + - uid: 3056 components: - type: Transform - pos: 12.5,23.5 + pos: 39.5,0.5 parent: 2 - - uid: 4055 + - uid: 3057 components: - type: Transform - pos: 12.5,24.5 + pos: 42.5,-7.5 parent: 2 - - uid: 4056 + - uid: 3058 components: - type: Transform - pos: 12.5,25.5 + pos: 41.5,-7.5 parent: 2 - - uid: 4057 + - uid: 3059 components: - type: Transform - pos: 12.5,26.5 + pos: 45.5,-2.5 parent: 2 - - uid: 4058 + - uid: 3060 components: - type: Transform - pos: 12.5,27.5 + pos: 45.5,-0.5 parent: 2 - - uid: 4059 + - uid: 3061 components: - type: Transform - pos: 12.5,28.5 + pos: 45.5,-1.5 parent: 2 - - uid: 4060 + - uid: 3062 components: - type: Transform - pos: 12.5,29.5 + pos: 45.5,0.5 parent: 2 - - uid: 4061 + - uid: 3063 components: - type: Transform - pos: 12.5,30.5 + pos: 52.5,3.5 parent: 2 - - uid: 4062 + - uid: 3064 components: - type: Transform - pos: 12.5,31.5 + pos: 37.5,0.5 parent: 2 - - uid: 4063 + - uid: 3065 components: - type: Transform - pos: 12.5,32.5 + pos: 36.5,2.5 parent: 2 - - uid: 4064 + - uid: 3066 components: - type: Transform - pos: 12.5,33.5 + pos: 54.5,3.5 parent: 2 - - uid: 4065 + - uid: 3067 components: - type: Transform - pos: 12.5,34.5 + pos: 53.5,3.5 parent: 2 - - uid: 4066 + - uid: 3068 components: - type: Transform - pos: 12.5,35.5 + pos: 48.5,-4.5 parent: 2 - - uid: 4067 + - uid: 3069 components: - type: Transform - pos: 12.5,36.5 + pos: 37.5,4.5 parent: 2 - - uid: 4068 + - uid: 3070 components: - type: Transform - pos: 59.5,70.5 + pos: 49.5,-5.5 parent: 2 - - uid: 4069 + - uid: 3071 components: - type: Transform - pos: 58.5,70.5 + pos: 46.5,-4.5 parent: 2 - - uid: 4070 + - uid: 3072 components: - type: Transform - pos: 57.5,70.5 + pos: 44.5,1.5 parent: 2 - - uid: 4071 + - uid: 3073 components: - type: Transform - pos: 53.5,76.5 + pos: 43.5,1.5 parent: 2 - - uid: 4075 + - uid: 3074 components: - type: Transform - pos: 29.5,13.5 + pos: 42.5,1.5 parent: 2 - - uid: 4076 + - uid: 3075 components: - type: Transform - pos: 30.5,13.5 + pos: 45.5,2.5 parent: 2 - - uid: 4077 + - uid: 3076 components: - type: Transform - pos: 31.5,13.5 + pos: 45.5,-4.5 parent: 2 - - uid: 4078 + - uid: 3077 components: - type: Transform - pos: 32.5,13.5 + pos: 45.5,3.5 parent: 2 - - uid: 4079 + - uid: 3078 components: - type: Transform - pos: 33.5,13.5 + pos: 45.5,1.5 parent: 2 - - uid: 4080 + - uid: 3079 components: - type: Transform - pos: 34.5,13.5 + pos: 36.5,-3.5 parent: 2 - - uid: 4081 + - uid: 3080 components: - type: Transform - pos: 35.5,13.5 + pos: 36.5,-4.5 parent: 2 - - uid: 4083 + - uid: 3081 components: - type: Transform - pos: 47.5,76.5 + pos: 36.5,-5.5 parent: 2 - - uid: 4084 + - uid: 3082 components: - type: Transform - pos: 47.5,75.5 + pos: 40.5,-0.5 parent: 2 - - uid: 4085 + - uid: 3083 components: - type: Transform - pos: 47.5,74.5 + pos: 40.5,-2.5 parent: 2 - - uid: 4086 + - uid: 3084 components: - type: Transform - pos: 47.5,73.5 + pos: 40.5,-3.5 parent: 2 - - uid: 4087 + - uid: 3085 components: - type: Transform - pos: 40.5,72.5 + pos: 40.5,-7.5 parent: 2 - - uid: 4088 + - uid: 3086 components: - type: Transform - pos: 41.5,72.5 + pos: 36.5,-2.5 parent: 2 - - uid: 4089 + - uid: 3088 components: - type: Transform - pos: 42.5,72.5 + pos: 36.5,-0.5 parent: 2 - - uid: 4090 + - uid: 3089 components: - type: Transform - pos: 43.5,72.5 + pos: 36.5,0.5 parent: 2 - - uid: 4091 + - uid: 3090 components: - type: Transform - pos: 43.5,71.5 + pos: 38.5,0.5 parent: 2 - - uid: 4092 + - uid: 3091 components: - type: Transform - pos: 43.5,70.5 + pos: 44.5,-7.5 parent: 2 - - uid: 4093 + - uid: 3092 components: - type: Transform - pos: 43.5,69.5 + pos: 49.5,81.5 parent: 2 - - uid: 4094 + - uid: 3093 components: - type: Transform - pos: 43.5,68.5 + pos: 82.5,17.5 parent: 2 - - uid: 4095 + - uid: 3094 components: - type: Transform - pos: 53.5,52.5 + pos: 45.5,-3.5 parent: 2 - - uid: 4096 + - uid: 3095 components: - type: Transform - pos: 54.5,53.5 + pos: 64.5,34.5 parent: 2 - - uid: 4097 + - uid: 3096 components: - type: Transform - pos: 55.5,53.5 + pos: 14.5,5.5 parent: 2 - - uid: 4098 + - uid: 3097 components: - type: Transform - pos: 56.5,53.5 + pos: 45.5,-5.5 parent: 2 - - uid: 4099 + - uid: 3098 components: - type: Transform - pos: 51.5,66.5 + pos: 56.5,40.5 parent: 2 - - uid: 4100 + - uid: 3099 components: - type: Transform - pos: 45.5,70.5 + pos: 43.5,56.5 parent: 2 - - uid: 4101 + - uid: 3100 components: - type: Transform - pos: 57.5,69.5 + pos: 11.5,-0.5 parent: 2 - - uid: 4102 + - uid: 3101 components: - type: Transform - pos: 57.5,65.5 + pos: 57.5,40.5 parent: 2 - - uid: 4103 + - uid: 3102 components: - type: Transform - pos: 53.5,61.5 + pos: 55.5,40.5 parent: 2 - - uid: 4104 + - uid: 3104 components: - type: Transform - pos: 45.5,70.5 + pos: 59.5,7.5 parent: 2 - - uid: 4105 + - uid: 3105 components: - type: Transform - pos: 44.5,70.5 + pos: 60.5,7.5 parent: 2 - - uid: 4106 + - uid: 3106 components: - type: Transform - pos: 48.5,56.5 + pos: 42.5,23.5 parent: 2 - - uid: 4107 + - uid: 3107 components: - type: Transform - pos: 49.5,56.5 + pos: 54.5,42.5 parent: 2 - - uid: 4108 + - uid: 3108 components: - type: Transform - pos: 50.5,56.5 + pos: 49.5,57.5 parent: 2 - - uid: 4109 + - uid: 3109 components: - type: Transform - pos: 51.5,56.5 + pos: 58.5,67.5 parent: 2 - - uid: 4110 + - uid: 3111 components: - type: Transform - pos: 31.5,18.5 + pos: 48.5,0.5 parent: 2 - - uid: 4111 + - uid: 3112 components: - type: Transform - pos: 57.5,64.5 + pos: 49.5,-0.5 parent: 2 - - uid: 4112 + - uid: 3113 components: - type: Transform - pos: 57.5,63.5 + pos: 40.5,-4.5 parent: 2 - - uid: 4113 + - uid: 3114 components: - type: Transform - pos: 57.5,62.5 + pos: 58.5,37.5 parent: 2 - - uid: 4114 + - uid: 3115 components: - type: Transform - pos: 57.5,61.5 + pos: 11.5,-1.5 parent: 2 - - uid: 4115 + - uid: 3116 components: - type: Transform - pos: 57.5,60.5 + pos: -2.5,17.5 parent: 2 - - uid: 4116 + - uid: 3117 components: - type: Transform - pos: 57.5,59.5 + pos: 37.5,11.5 parent: 2 - - uid: 4117 + - uid: 3118 components: - type: Transform - pos: 57.5,58.5 + pos: 48.5,-7.5 parent: 2 - - uid: 4118 + - uid: 3119 components: - type: Transform - pos: 57.5,57.5 + pos: 54.5,40.5 parent: 2 - - uid: 4119 + - uid: 3120 components: - type: Transform - pos: 57.5,56.5 + pos: 61.5,22.5 parent: 2 - - uid: 4120 + - uid: 3121 components: - type: Transform - pos: 57.5,55.5 + pos: 83.5,17.5 parent: 2 - - uid: 4126 + - uid: 3122 components: - type: Transform - pos: 49.5,77.5 + pos: 59.5,10.5 parent: 2 - - uid: 4128 + - uid: 3123 components: - type: Transform - pos: 48.5,77.5 + pos: 48.5,-1.5 parent: 2 - - uid: 4129 + - uid: 3124 components: - type: Transform - pos: 89.5,11.5 + pos: 8.5,27.5 parent: 2 - - uid: 4130 + - uid: 3125 components: - type: Transform - pos: 89.5,13.5 + pos: 48.5,-0.5 parent: 2 - - uid: 4132 + - uid: 3126 components: - type: Transform - pos: 50.5,64.5 + pos: 58.5,39.5 parent: 2 - - uid: 4133 + - uid: 3127 components: - type: Transform - pos: 50.5,61.5 + pos: 16.5,80.5 parent: 2 - - uid: 4134 + - uid: 3128 components: - type: Transform - pos: 49.5,77.5 + pos: 17.5,80.5 parent: 2 - - uid: 4135 + - uid: 3129 components: - type: Transform - pos: 75.5,9.5 + pos: 15.5,-2.5 parent: 2 - - uid: 4136 + - uid: 3130 components: - type: Transform - pos: 75.5,8.5 + pos: 57.5,7.5 parent: 2 - - uid: 4137 + - uid: 3131 components: - type: Transform - pos: 76.5,8.5 + pos: 56.5,7.5 parent: 2 - - uid: 4138 + - uid: 3132 components: - type: Transform - pos: 64.5,34.5 + pos: 58.5,7.5 parent: 2 - - uid: 4139 + - uid: 3133 components: - type: Transform - pos: 52.5,40.5 + pos: 54.5,41.5 parent: 2 - - uid: 4140 + - uid: 3134 components: - type: Transform - pos: 66.5,9.5 + pos: 51.5,-0.5 parent: 2 - - uid: 4141 + - uid: 3156 components: - type: Transform - pos: 46.5,80.5 + pos: 13.5,44.5 parent: 2 - - uid: 4142 + - uid: 3157 components: - type: Transform - pos: 11.5,-1.5 + pos: 22.5,-30.5 parent: 2 - - uid: 4143 + - uid: 3158 components: - type: Transform - pos: 52.5,78.5 + pos: 22.5,-29.5 parent: 2 - - uid: 4144 + - uid: 3162 components: - type: Transform - pos: 50.5,79.5 + pos: 14.5,44.5 parent: 2 - - uid: 4145 + - uid: 3163 components: - type: Transform - pos: 54.5,61.5 + pos: 15.5,47.5 parent: 2 - - uid: 4146 + - uid: 3172 components: - type: Transform - pos: 48.5,81.5 + pos: 19.5,54.5 parent: 2 - - uid: 4147 + - uid: 3173 components: - type: Transform - pos: 54.5,63.5 + pos: 15.5,54.5 parent: 2 - - uid: 4148 + - uid: 3175 components: - type: Transform - pos: 54.5,64.5 + pos: 14.5,52.5 parent: 2 - - uid: 4149 + - uid: 3199 components: - type: Transform - pos: 54.5,62.5 + pos: 16.5,54.5 parent: 2 - - uid: 4150 + - uid: 3216 components: - type: Transform - pos: 52.5,62.5 + pos: 22.5,-31.5 parent: 2 - - uid: 4151 + - uid: 3217 components: - type: Transform - pos: 52.5,61.5 + pos: 22.5,-29.5 parent: 2 - - uid: 4152 + - uid: 3219 components: - type: Transform - pos: 48.5,65.5 + pos: 26.5,-37.5 parent: 2 - - uid: 4153 + - uid: 3220 components: - type: Transform - pos: 53.5,65.5 + pos: 26.5,-36.5 parent: 2 - - uid: 4155 + - uid: 3221 components: - type: Transform - pos: 89.5,17.5 + pos: 26.5,-35.5 parent: 2 - - uid: 4156 + - uid: 3222 components: - type: Transform - pos: 89.5,20.5 + pos: 24.5,65.5 parent: 2 - - uid: 4157 + - uid: 3223 components: - type: Transform - pos: 89.5,19.5 + pos: 24.5,66.5 parent: 2 - - uid: 4158 + - uid: 3224 components: - type: Transform - pos: 53.5,63.5 + pos: 26.5,66.5 parent: 2 - - uid: 4159 + - uid: 3225 components: - type: Transform - pos: 48.5,55.5 + pos: 25.5,66.5 parent: 2 - - uid: 4160 + - uid: 3226 components: - type: Transform - pos: 21.5,-28.5 + pos: 27.5,66.5 parent: 2 - - uid: 4161 + - uid: 3227 components: - type: Transform - pos: 52.5,77.5 + pos: 29.5,66.5 parent: 2 - - uid: 4162 + - uid: 3228 components: - type: Transform - pos: 39.5,72.5 + pos: 30.5,66.5 parent: 2 - - uid: 4163 + - uid: 3229 components: - type: Transform - pos: 51.5,78.5 + pos: 31.5,66.5 parent: 2 - - uid: 4164 + - uid: 3230 components: - type: Transform - pos: 52.5,65.5 + pos: 28.5,66.5 parent: 2 - - uid: 4165 + - uid: 3231 components: - type: Transform - pos: 47.5,65.5 + pos: 23.5,66.5 parent: 2 - - uid: 4166 + - uid: 3232 components: - type: Transform - pos: 52.5,60.5 + pos: 22.5,66.5 parent: 2 - - uid: 4167 + - uid: 3233 components: - type: Transform - pos: 52.5,59.5 + pos: 21.5,66.5 parent: 2 - - uid: 4168 + - uid: 3234 components: - type: Transform - pos: 53.5,60.5 + pos: 20.5,66.5 parent: 2 - - uid: 4170 + - uid: 3235 components: - type: Transform - pos: 51.5,58.5 + pos: 19.5,66.5 parent: 2 - - uid: 4171 + - uid: 3236 components: - type: Transform - pos: 51.5,59.5 + pos: 18.5,66.5 parent: 2 - - uid: 4172 + - uid: 3237 components: - type: Transform - pos: 51.5,57.5 + pos: 17.5,66.5 parent: 2 - - uid: 4173 + - uid: 3238 components: - type: Transform - pos: 49.5,65.5 + pos: 16.5,66.5 parent: 2 - - uid: 4174 + - uid: 3239 components: - type: Transform - pos: 50.5,65.5 + pos: 15.5,66.5 parent: 2 - - uid: 4176 + - uid: 3240 components: - type: Transform - pos: 89.5,22.5 + pos: 77.5,3.5 parent: 2 - - uid: 4177 + - uid: 3241 components: - type: Transform - pos: 89.5,21.5 + pos: 14.5,63.5 parent: 2 - - uid: 4178 + - uid: 3242 components: - type: Transform - pos: 89.5,18.5 + pos: 22.5,-21.5 parent: 2 - - uid: 4179 + - uid: 3243 components: - type: Transform - pos: 67.5,11.5 + pos: 22.5,-22.5 parent: 2 - - uid: 4180 + - uid: 3244 components: - type: Transform - pos: 53.5,78.5 + pos: 22.5,-23.5 parent: 2 - - uid: 4181 + - uid: 3245 components: - type: Transform - pos: 65.5,7.5 + pos: 22.5,-20.5 parent: 2 - - uid: 4182 + - uid: 3246 components: - type: Transform - pos: 48.5,54.5 + pos: 23.5,-22.5 parent: 2 - - uid: 4183 + - uid: 3247 components: - type: Transform - pos: 52.5,76.5 + pos: 24.5,-22.5 parent: 2 - - uid: 4184 + - uid: 3248 components: - type: Transform - pos: 11.5,-0.5 + pos: 22.5,-30.5 parent: 2 - - uid: 4185 + - uid: 3249 components: - type: Transform - pos: 11.5,0.5 + pos: 22.5,-32.5 parent: 2 - - uid: 4186 + - uid: 3250 components: - type: Transform - pos: 51.5,76.5 + pos: 37.5,52.5 parent: 2 - - uid: 4187 + - uid: 3251 components: - type: Transform - pos: 64.5,35.5 + pos: 37.5,53.5 parent: 2 - - uid: 4188 + - uid: 3253 components: - type: Transform - pos: 50.5,78.5 + pos: 55.5,58.5 parent: 2 - - uid: 4189 + - uid: 3254 components: - type: Transform - pos: 89.5,15.5 + pos: 55.5,57.5 parent: 2 - - uid: 4190 + - uid: 3255 components: - type: Transform - pos: 89.5,16.5 + pos: 55.5,56.5 parent: 2 - - uid: 4191 + - uid: 3256 components: - type: Transform - pos: 89.5,14.5 + pos: 55.5,55.5 parent: 2 - - uid: 4192 + - uid: 3257 components: - type: Transform - pos: 89.5,23.5 + pos: 54.5,55.5 parent: 2 - - uid: 4193 + - uid: 3258 components: - type: Transform - pos: 88.5,23.5 + pos: 53.5,55.5 parent: 2 - - uid: 4194 + - uid: 3259 components: - type: Transform - pos: 87.5,23.5 + pos: 53.5,56.5 parent: 2 - - uid: 4195 + - uid: 3260 components: - type: Transform - pos: 50.5,77.5 + pos: 53.5,57.5 parent: 2 - - uid: 4196 + - uid: 3261 components: - type: Transform - pos: 51.5,77.5 + pos: 54.5,57.5 parent: 2 - - uid: 4197 + - uid: 3262 components: - type: Transform - pos: 66.5,10.5 + pos: 53.5,55.5 parent: 2 - - uid: 4198 + - uid: 3263 components: - type: Transform - pos: 68.5,11.5 + pos: 55.5,55.5 parent: 2 - - uid: 4199 + - uid: 3264 components: - type: Transform - pos: 11.5,-6.5 + pos: 39.5,23.5 parent: 2 - - uid: 4200 + - uid: 3265 components: - type: Transform - pos: 11.5,-2.5 + pos: 40.5,23.5 parent: 2 - - uid: 4201 + - uid: 3266 components: - type: Transform - pos: 11.5,-3.5 + pos: 39.5,59.5 parent: 2 - - uid: 4202 + - uid: 3267 components: - type: Transform - pos: 11.5,-4.5 + pos: 39.5,60.5 parent: 2 - - uid: 4203 + - uid: 3268 components: - type: Transform - pos: 66.5,11.5 + pos: 49.5,58.5 parent: 2 - - uid: 4204 + - uid: 3269 components: - type: Transform - pos: 66.5,8.5 + pos: 40.5,60.5 parent: 2 - - uid: 4206 + - uid: 3270 components: - type: Transform - pos: 86.5,23.5 + pos: 41.5,60.5 parent: 2 - - uid: 4207 + - uid: 3271 components: - type: Transform - pos: 10.5,-7.5 + pos: 42.5,60.5 parent: 2 - - uid: 4208 + - uid: 3272 components: - type: Transform - pos: 11.5,18.5 + pos: 43.5,60.5 parent: 2 - - uid: 4209 + - uid: 3273 components: - type: Transform - pos: 10.5,-8.5 + pos: 44.5,60.5 parent: 2 - - uid: 4210 + - uid: 3274 components: - type: Transform - pos: 10.5,18.5 + pos: 45.5,60.5 parent: 2 - - uid: 4211 + - uid: 3275 components: - type: Transform - pos: 52.5,63.5 + pos: 44.5,61.5 parent: 2 - - uid: 4212 + - uid: 3276 components: - type: Transform - pos: 51.5,61.5 + pos: 44.5,62.5 parent: 2 - - uid: 4213 + - uid: 3277 components: - type: Transform - pos: 51.5,62.5 + pos: 44.5,63.5 parent: 2 - - uid: 4214 + - uid: 3278 components: - type: Transform - pos: 53.5,59.5 + pos: 44.5,64.5 parent: 2 - - uid: 4215 + - uid: 3279 components: - type: Transform - pos: 9.5,18.5 + pos: 44.5,65.5 parent: 2 - - uid: 4216 + - uid: 3280 components: - type: Transform - pos: 8.5,18.5 + pos: 43.5,63.5 parent: 2 - - uid: 4217 + - uid: 3281 components: - type: Transform - pos: 7.5,18.5 + pos: 42.5,63.5 parent: 2 - - uid: 4218 + - uid: 3282 components: - type: Transform - pos: 6.5,18.5 + pos: 41.5,63.5 parent: 2 - - uid: 4219 + - uid: 3283 components: - type: Transform - pos: 5.5,18.5 + pos: 40.5,63.5 parent: 2 - - uid: 4220 + - uid: 3284 components: - type: Transform - pos: 4.5,18.5 + pos: 37.5,67.5 parent: 2 - - uid: 4221 + - uid: 3285 components: - type: Transform - pos: 3.5,18.5 + pos: 38.5,67.5 parent: 2 - - uid: 4222 + - uid: 3286 components: - type: Transform - pos: 3.5,17.5 + pos: 39.5,67.5 parent: 2 - - uid: 4223 + - uid: 3287 components: - type: Transform - pos: 3.5,16.5 + pos: 39.5,68.5 parent: 2 - - uid: 4224 + - uid: 3288 components: - type: Transform - pos: 4.5,16.5 + pos: 38.5,70.5 parent: 2 - - uid: 4225 + - uid: 3289 components: - type: Transform - pos: 10.5,-6.5 + pos: 50.5,72.5 parent: 2 - - uid: 4226 + - uid: 3290 components: - type: Transform - pos: 52.5,41.5 + pos: 51.5,72.5 parent: 2 - - uid: 4227 + - uid: 3291 components: - type: Transform - pos: 66.5,7.5 + pos: 52.5,72.5 parent: 2 - - uid: 4228 + - uid: 3292 components: - type: Transform - pos: 66.5,4.5 + pos: 50.5,73.5 parent: 2 - - uid: 4229 + - uid: 3293 components: - type: Transform - pos: 66.5,5.5 + pos: 52.5,62.5 parent: 2 - - uid: 4230 + - uid: 3294 components: - type: Transform - pos: 66.5,6.5 + pos: 52.5,61.5 parent: 2 - - uid: 4231 + - uid: 3295 components: - type: Transform - pos: 66.5,6.5 + pos: 52.5,60.5 parent: 2 - - uid: 4232 + - uid: 3296 components: - type: Transform - pos: 5.5,16.5 + pos: 53.5,60.5 parent: 2 - - uid: 4233 + - uid: 3297 components: - type: Transform - pos: 20.5,-28.5 + pos: 51.5,60.5 parent: 2 - - uid: 4297 + - uid: 3298 components: - type: Transform - pos: 23.5,-28.5 + pos: 47.5,79.5 parent: 2 - - uid: 4298 + - uid: 3299 components: - type: Transform - pos: 22.5,-28.5 + pos: 47.5,77.5 parent: 2 - - uid: 4299 + - uid: 3300 components: - type: Transform - pos: 22.5,-29.5 + pos: 47.5,76.5 parent: 2 - - uid: 4300 + - uid: 3301 components: - type: Transform - pos: 22.5,-30.5 + pos: 47.5,75.5 parent: 2 - - uid: 4306 + - uid: 3302 components: - type: Transform - pos: 39.5,27.5 + pos: 50.5,80.5 parent: 2 - - uid: 4326 + - uid: 3303 components: - type: Transform - pos: 25.5,-39.5 + pos: 57.5,75.5 parent: 2 - - uid: 4327 + - uid: 3304 components: - type: Transform - pos: 20.5,-38.5 + pos: 57.5,78.5 parent: 2 - - uid: 4390 + - uid: 3305 components: - type: Transform - pos: 43.5,55.5 + pos: 57.5,77.5 parent: 2 - - uid: 4395 + - uid: 3306 components: - type: Transform - pos: 36.5,57.5 + pos: 57.5,76.5 parent: 2 - - uid: 4396 + - uid: 3307 components: - type: Transform - pos: 36.5,58.5 + pos: 58.5,78.5 parent: 2 - - uid: 4397 + - uid: 3308 components: - type: Transform - pos: 36.5,59.5 + pos: 59.5,78.5 parent: 2 - - uid: 4398 + - uid: 3309 components: - type: Transform - pos: 36.5,60.5 + pos: 59.5,67.5 parent: 2 - - uid: 4399 + - uid: 3310 components: - type: Transform - pos: 36.5,61.5 + pos: 52.5,22.5 parent: 2 - - uid: 4400 + - uid: 3311 components: - type: Transform - pos: 36.5,62.5 + pos: 52.5,21.5 parent: 2 - - uid: 4401 + - uid: 3312 components: - type: Transform - pos: 36.5,63.5 + pos: 52.5,20.5 parent: 2 - - uid: 4402 + - uid: 3313 components: - type: Transform - pos: 36.5,64.5 + pos: 52.5,19.5 parent: 2 - - uid: 4403 + - uid: 3314 components: - type: Transform - pos: 36.5,65.5 + pos: 52.5,18.5 parent: 2 - - uid: 4404 + - uid: 3315 components: - type: Transform - pos: 36.5,66.5 + pos: 52.5,17.5 parent: 2 - - uid: 4405 + - uid: 3316 components: - type: Transform - pos: 35.5,66.5 + pos: 51.5,17.5 parent: 2 - - uid: 4406 + - uid: 3317 components: - type: Transform - pos: 34.5,66.5 + pos: 50.5,17.5 parent: 2 - - uid: 4407 + - uid: 3318 components: - type: Transform - pos: 33.5,66.5 + pos: 49.5,17.5 parent: 2 - - uid: 4408 + - uid: 3319 components: - type: Transform - pos: 32.5,66.5 + pos: 47.5,19.5 parent: 2 - - uid: 4409 + - uid: 3320 components: - type: Transform - pos: 31.5,66.5 + pos: 47.5,20.5 parent: 2 - - uid: 4410 + - uid: 3321 components: - type: Transform - pos: 30.5,66.5 + pos: 57.5,31.5 parent: 2 - - uid: 4411 + - uid: 3322 components: - type: Transform - pos: 29.5,66.5 + pos: 56.5,31.5 parent: 2 - - uid: 4412 + - uid: 3323 components: - type: Transform - pos: 28.5,66.5 + pos: 55.5,31.5 parent: 2 - - uid: 4413 + - uid: 3324 components: - type: Transform - pos: 27.5,66.5 + pos: 58.5,31.5 parent: 2 - - uid: 4414 + - uid: 3325 components: - type: Transform - pos: 26.5,66.5 + pos: 60.5,31.5 parent: 2 - - uid: 4415 + - uid: 3326 components: - type: Transform - pos: 25.5,66.5 + pos: 59.5,31.5 parent: 2 - - uid: 4416 + - uid: 3327 components: - type: Transform - pos: 28.5,65.5 + pos: 10.5,-10.5 parent: 2 - - uid: 4417 + - uid: 3328 components: - type: Transform - pos: 25.5,65.5 + pos: 10.5,-11.5 parent: 2 - - uid: 4418 + - uid: 3329 components: - type: Transform - pos: 25.5,64.5 + pos: 10.5,-12.5 parent: 2 - - uid: 4419 + - uid: 3330 components: - type: Transform - pos: 49.5,63.5 + pos: 79.5,8.5 parent: 2 - - uid: 4420 + - uid: 3331 components: - type: Transform - pos: 49.5,61.5 + pos: 80.5,8.5 parent: 2 - - uid: 4421 + - uid: 3332 components: - type: Transform - pos: 49.5,62.5 + pos: 81.5,8.5 parent: 2 - - uid: 4422 + - uid: 3333 components: - type: Transform - pos: 51.5,71.5 + pos: 82.5,8.5 parent: 2 - - uid: 4423 + - uid: 3334 components: - type: Transform - pos: 53.5,71.5 + pos: 83.5,8.5 parent: 2 - - uid: 4424 + - uid: 3335 components: - type: Transform - pos: 44.5,56.5 + pos: -1.5,16.5 parent: 2 - - uid: 4425 + - uid: 3336 components: - type: Transform - pos: 44.5,57.5 + pos: -1.5,17.5 parent: 2 - - uid: 4426 + - uid: 3337 components: - type: Transform - pos: 45.5,57.5 + pos: -4.5,17.5 parent: 2 - - uid: 4427 + - uid: 3342 components: - type: Transform - pos: 10.5,-9.5 + pos: 30.5,54.5 parent: 2 - - uid: 4428 + - uid: 3343 components: - type: Transform - pos: 10.5,-10.5 + pos: 28.5,54.5 parent: 2 - - uid: 4429 + - uid: 3346 components: - type: Transform - pos: 10.5,-11.5 + pos: -0.5,16.5 parent: 2 - - uid: 4430 + - uid: 3347 components: - type: Transform - pos: 10.5,-12.5 + pos: 84.5,17.5 parent: 2 - - uid: 4431 + - uid: 3348 components: - type: Transform - pos: 78.5,5.5 + pos: 85.5,17.5 parent: 2 - - uid: 4432 + - uid: 3349 components: - type: Transform - pos: 77.5,5.5 + pos: 80.5,16.5 parent: 2 - - uid: 4433 + - uid: 3350 components: - type: Transform - pos: 78.5,5.5 + pos: 80.5,15.5 parent: 2 - - uid: 4434 + - uid: 3351 components: - type: Transform - pos: 77.5,5.5 + pos: 80.5,18.5 parent: 2 - - uid: 4436 + - uid: 3352 components: - type: Transform - pos: 76.5,18.5 + pos: 80.5,19.5 parent: 2 - - uid: 4437 + - uid: 3353 components: - type: Transform - pos: 76.5,16.5 + pos: 83.5,18.5 parent: 2 - - uid: 4543 + - uid: 3354 components: - type: Transform - pos: 10.5,-5.5 + pos: 83.5,19.5 parent: 2 - - uid: 5007 + - uid: 3355 components: - type: Transform - pos: 11.5,55.5 + pos: 83.5,16.5 parent: 2 - - uid: 5009 + - uid: 3356 components: - type: Transform - pos: 12.5,51.5 + pos: 83.5,15.5 parent: 2 - - uid: 5091 + - uid: 3357 components: - type: Transform - pos: 26.5,29.5 + pos: 36.5,84.5 parent: 2 - - uid: 5309 + - uid: 3358 components: - type: Transform - pos: 12.5,46.5 + pos: 36.5,85.5 parent: 2 - - uid: 5859 + - uid: 3359 components: - type: Transform - pos: 24.5,-38.5 + pos: 36.5,86.5 parent: 2 - - uid: 6123 + - uid: 3360 components: - type: Transform - pos: 12.5,50.5 + pos: 35.5,86.5 parent: 2 - - uid: 6125 + - uid: 3361 components: - type: Transform - pos: 12.5,45.5 + pos: 35.5,87.5 parent: 2 - - uid: 6577 + - uid: 3362 components: - type: Transform - pos: 38.5,27.5 + pos: 35.5,88.5 parent: 2 - - uid: 6723 + - uid: 3363 components: - type: Transform - pos: 16.5,66.5 + pos: 35.5,89.5 parent: 2 - - uid: 6770 + - uid: 3364 components: - type: Transform - pos: 19.5,66.5 + pos: 36.5,89.5 parent: 2 - - uid: 6775 + - uid: 3365 components: - type: Transform - pos: 17.5,66.5 + pos: 37.5,89.5 parent: 2 - - uid: 6791 + - uid: 3366 components: - type: Transform - pos: 20.5,66.5 + pos: 37.5,90.5 parent: 2 - - uid: 6898 + - uid: 3367 components: - type: Transform - pos: 22.5,66.5 + pos: 38.5,90.5 parent: 2 - - uid: 6932 + - uid: 3368 components: - type: Transform - pos: 12.5,48.5 + pos: 39.5,90.5 parent: 2 - - uid: 7331 + - uid: 3369 components: - type: Transform - pos: 24.5,66.5 + pos: 40.5,90.5 parent: 2 - - uid: 7375 + - uid: 3370 components: - type: Transform - pos: 12.5,52.5 + pos: 40.5,89.5 parent: 2 - - uid: 7454 + - uid: 3371 components: - type: Transform - pos: 11.5,-32.5 + pos: 40.5,88.5 parent: 2 - - uid: 8083 + - uid: 3372 components: - type: Transform - pos: 18.5,66.5 + pos: 39.5,88.5 parent: 2 - - uid: 8093 + - uid: 3373 components: - type: Transform - pos: 14.5,66.5 + pos: 38.5,88.5 parent: 2 - - uid: 8094 + - uid: 3374 components: - type: Transform - pos: 20.5,61.5 + pos: 37.5,88.5 parent: 2 - - uid: 8225 + - uid: 3377 components: - type: Transform - pos: 10.5,59.5 + pos: 72.5,10.5 parent: 2 - - uid: 8226 + - uid: 3378 components: - type: Transform - pos: 10.5,58.5 + pos: 73.5,10.5 parent: 2 - - uid: 8306 + - uid: 3379 components: - type: Transform - pos: 50.5,75.5 + pos: 74.5,10.5 parent: 2 - - uid: 8536 + - uid: 3380 components: - type: Transform - pos: 11.5,-38.5 + pos: 75.5,10.5 parent: 2 - - uid: 8569 + - uid: 3381 components: - type: Transform - pos: 13.5,-44.5 + pos: 77.5,10.5 parent: 2 - - uid: 8856 + - uid: 3382 components: - type: Transform - pos: 10.5,55.5 + pos: 78.5,10.5 parent: 2 - - uid: 8900 + - uid: 3383 components: - type: Transform - pos: 53.5,75.5 + pos: 79.5,10.5 parent: 2 - - uid: 9122 + - uid: 3384 components: - type: Transform - pos: 12.5,47.5 + pos: 80.5,10.5 parent: 2 - - uid: 9237 + - uid: 3385 components: - type: Transform - pos: 21.5,61.5 + pos: 76.5,10.5 parent: 2 - - uid: 9308 + - uid: 3386 components: - type: Transform - pos: 10.5,57.5 + pos: 81.5,10.5 parent: 2 - - uid: 9309 + - uid: 3387 components: - type: Transform - pos: 10.5,56.5 + pos: 82.5,10.5 parent: 2 - - uid: 9315 + - uid: 3388 components: - type: Transform - pos: 21.5,66.5 + pos: 83.5,10.5 parent: 2 - - uid: 9316 + - uid: 3389 components: - type: Transform - pos: 23.5,66.5 + pos: 83.5,11.5 parent: 2 - - uid: 9317 + - uid: 3390 components: - type: Transform - pos: 12.5,54.5 + pos: 84.5,11.5 parent: 2 - - uid: 9318 + - uid: 3391 components: - type: Transform - pos: 12.5,53.5 + pos: 85.5,11.5 parent: 2 - - uid: 9340 + - uid: 3392 components: - type: Transform - pos: 14.5,63.5 + pos: 86.5,11.5 parent: 2 - - uid: 9342 + - uid: 3393 components: - type: Transform - pos: 38.5,57.5 + pos: 87.5,11.5 parent: 2 - - uid: 9595 + - uid: 3394 components: - type: Transform - pos: 18.5,-46.5 + pos: 88.5,11.5 parent: 2 - - uid: 9596 + - uid: 3395 components: - type: Transform - pos: 26.5,-34.5 + pos: 89.5,11.5 parent: 2 - - uid: 9695 + - uid: 3396 components: - type: Transform - pos: 15.5,66.5 + pos: 89.5,13.5 parent: 2 - - uid: 10888 + - uid: 3397 components: - type: Transform - pos: 18.5,-36.5 + pos: 89.5,12.5 parent: 2 - - uid: 10889 + - uid: 3398 components: - type: Transform - pos: 20.5,-37.5 + pos: 89.5,14.5 parent: 2 - - uid: 11134 + - uid: 3399 components: - type: Transform - pos: 14.5,61.5 + pos: 89.5,15.5 parent: 2 - - uid: 11263 + - uid: 3400 components: - type: Transform - pos: 40.5,56.5 + pos: 89.5,16.5 parent: 2 - - uid: 11265 + - uid: 3401 components: - type: Transform - pos: 39.5,56.5 + pos: 89.5,17.5 parent: 2 - - uid: 11267 + - uid: 3402 components: - type: Transform - pos: 42.5,56.5 + pos: 90.5,17.5 parent: 2 - - uid: 12136 + - uid: 3403 components: - type: Transform - pos: 41.5,56.5 + pos: 91.5,17.5 parent: 2 - - uid: 12153 + - uid: 3404 components: - type: Transform - pos: 17.5,-46.5 + pos: 92.5,17.5 parent: 2 - - uid: 12154 + - uid: 3405 components: - type: Transform - pos: 16.5,-44.5 + pos: 93.5,17.5 parent: 2 - - uid: 12166 + - uid: 3406 components: - type: Transform - pos: 13.5,-41.5 + pos: 94.5,17.5 parent: 2 - - uid: 12167 + - uid: 3407 components: - type: Transform - pos: 11.5,-40.5 + pos: 95.5,17.5 parent: 2 - - uid: 12168 + - uid: 3408 components: - type: Transform - pos: 16.5,-46.5 + pos: 96.5,17.5 parent: 2 - - uid: 12169 + - uid: 3409 components: - type: Transform - pos: 11.5,-39.5 + pos: 93.5,18.5 parent: 2 - - uid: 12170 + - uid: 3410 components: - type: Transform - pos: 16.5,-45.5 + pos: 93.5,19.5 parent: 2 - - uid: 12179 + - uid: 3411 components: - type: Transform - pos: 12.5,-41.5 + pos: 93.5,20.5 parent: 2 - - uid: 12180 + - uid: 3412 components: - type: Transform - pos: 11.5,-37.5 + pos: 72.5,23.5 parent: 2 - - uid: 12240 + - uid: 3413 components: - type: Transform - pos: 14.5,-44.5 + pos: 73.5,23.5 parent: 2 - - uid: 12905 + - uid: 3414 components: - type: Transform - pos: 52.5,75.5 + pos: 74.5,23.5 parent: 2 - - uid: 13140 + - uid: 3415 components: - type: Transform - pos: 42.5,27.5 + pos: 75.5,23.5 parent: 2 - - uid: 13777 + - uid: 3416 components: - type: Transform - pos: 12.5,55.5 + pos: 76.5,23.5 parent: 2 - - uid: 13883 + - uid: 3417 components: - type: Transform - pos: 26.5,-39.5 + pos: 77.5,23.5 parent: 2 - - uid: 13901 + - uid: 3418 components: - type: Transform - pos: 25.5,-44.5 + pos: 78.5,23.5 parent: 2 - - uid: 13903 + - uid: 3419 components: - type: Transform - pos: 26.5,-36.5 + pos: 79.5,23.5 parent: 2 - - uid: 13904 + - uid: 3420 components: - type: Transform - pos: 32.5,-42.5 + pos: 81.5,23.5 parent: 2 - - uid: 13911 + - uid: 3421 components: - type: Transform - pos: 51.5,75.5 + pos: 82.5,23.5 parent: 2 - - uid: 13933 + - uid: 3422 components: - type: Transform - pos: 20.5,-39.5 + pos: 83.5,23.5 parent: 2 - - uid: 13934 + - uid: 3423 components: - type: Transform - pos: 29.5,-44.5 + pos: 80.5,23.5 parent: 2 - - uid: 13935 + - uid: 3424 components: - type: Transform - pos: 30.5,-43.5 + pos: 84.5,23.5 parent: 2 - - uid: 14182 + - uid: 3425 components: - type: Transform - pos: 13.5,-43.5 + pos: 85.5,23.5 parent: 2 - - uid: 14518 + - uid: 3426 components: - type: Transform - pos: 19.5,-39.5 + pos: 86.5,23.5 parent: 2 - - uid: 14522 + - uid: 3427 components: - type: Transform - pos: 29.5,-39.5 + pos: 88.5,23.5 parent: 2 - - uid: 14811 + - uid: 3428 components: - type: Transform - pos: 19.5,-42.5 + pos: 87.5,23.5 parent: 2 - - uid: 14812 + - uid: 3429 components: - type: Transform - pos: 37.5,57.5 + pos: 89.5,23.5 parent: 2 - - uid: 14999 + - uid: 3430 components: - type: Transform - pos: 18.5,-35.5 + pos: 89.5,22.5 parent: 2 - - uid: 15000 + - uid: 3431 components: - type: Transform - pos: 34.5,-42.5 + pos: 89.5,21.5 parent: 2 - - uid: 15357 + - uid: 3432 components: - type: Transform - pos: 31.5,-39.5 + pos: 89.5,20.5 parent: 2 - - uid: 15691 + - uid: 3433 components: - type: Transform - pos: 18.5,-40.5 + pos: 89.5,19.5 parent: 2 - - uid: 15692 + - uid: 3434 components: - type: Transform - pos: 32.5,-43.5 + pos: 89.5,18.5 parent: 2 - - uid: 15927 + - uid: 3435 components: - type: Transform - pos: 30.5,-38.5 + pos: 75.5,5.5 parent: 2 - - uid: 15928 + - uid: 3436 components: - type: Transform - pos: 26.5,-38.5 + pos: 75.5,4.5 parent: 2 - - uid: 15974 + - uid: 3437 components: - type: Transform - pos: 19.5,-37.5 + pos: 80.5,7.5 parent: 2 - - uid: 15975 + - uid: 3438 components: - type: Transform - pos: 30.5,-39.5 + pos: 80.5,6.5 parent: 2 - - uid: 15976 + - uid: 3439 components: - type: Transform - pos: 27.5,-38.5 + pos: 83.5,7.5 parent: 2 - - uid: 16025 + - uid: 3440 components: - type: Transform - pos: 25.5,-43.5 + pos: 83.5,6.5 parent: 2 - - uid: 16032 + - uid: 3643 components: - type: Transform - pos: 29.5,-46.5 + pos: 38.5,57.5 parent: 2 - - uid: 16036 + - uid: 3870 components: - type: Transform - pos: 25.5,-46.5 + pos: 38.5,47.5 parent: 2 - - uid: 16038 + - uid: 3871 components: - type: Transform - pos: 27.5,-46.5 + pos: 39.5,47.5 parent: 2 - - uid: 16128 + - uid: 3872 components: - type: Transform - pos: 29.5,-38.5 + pos: 41.5,47.5 parent: 2 - - uid: 16131 + - uid: 4082 components: - type: Transform - pos: 25.5,-40.5 + pos: 33.5,55.5 parent: 2 - - uid: 16138 + - uid: 4175 components: - type: Transform - pos: 19.5,-40.5 + pos: 29.5,-18.5 parent: 2 - - uid: 16144 + - uid: 4205 components: - type: Transform - pos: 22.5,-38.5 + pos: 29.5,-19.5 parent: 2 - - uid: 16162 + - uid: 4238 components: - type: Transform - pos: 20.5,-34.5 + pos: 33.5,56.5 parent: 2 - - uid: 16166 + - uid: 4239 components: - type: Transform - pos: 19.5,-43.5 + pos: 30.5,52.5 parent: 2 - - uid: 16167 + - uid: 4240 components: - type: Transform - pos: 21.5,-33.5 + pos: 29.5,54.5 parent: 2 - - uid: 16168 + - uid: 4241 components: - type: Transform - pos: 25.5,-42.5 + pos: 15.5,46.5 parent: 2 - - uid: 16169 + - uid: 4242 components: - type: Transform - pos: 19.5,-41.5 + pos: 31.5,48.5 parent: 2 - - uid: 16171 + - uid: 4243 components: - type: Transform - pos: 18.5,-37.5 + pos: 33.5,57.5 parent: 2 - - uid: 16173 + - uid: 4244 components: - type: Transform - pos: 23.5,-38.5 + pos: 31.5,47.5 parent: 2 - - uid: 16174 + - uid: 4246 components: - type: Transform - pos: 19.5,-44.5 + pos: 31.5,40.5 parent: 2 - - uid: 16175 + - uid: 4281 components: - type: Transform - pos: 21.5,-38.5 + pos: 75.5,2.5 parent: 2 - - uid: 16191 + - uid: 4285 components: - type: Transform - pos: 45.5,55.5 + pos: 20.5,53.5 parent: 2 - - uid: 16201 + - uid: 4328 components: - type: Transform - pos: 45.5,54.5 + pos: 22.5,49.5 parent: 2 - - uid: 16203 + - uid: 4329 components: - type: Transform - pos: 45.5,53.5 + pos: 23.5,49.5 parent: 2 - - uid: 16206 + - uid: 4330 components: - type: Transform - pos: 46.5,53.5 + pos: 15.5,40.5 parent: 2 - - uid: 16207 + - uid: 4336 components: - type: Transform - pos: 47.5,53.5 + pos: 15.5,42.5 parent: 2 - - uid: 16227 + - uid: 4337 components: - type: Transform - pos: 18.5,-34.5 + pos: 15.5,44.5 parent: 2 - - uid: 16229 + - uid: 4340 components: - type: Transform - pos: 20.5,-33.5 + pos: 15.5,44.5 parent: 2 - - uid: 16231 + - uid: 4341 components: - type: Transform - pos: 20.5,-36.5 + pos: 15.5,43.5 parent: 2 - - uid: 16237 + - uid: 4342 components: - type: Transform - pos: 33.5,-42.5 + pos: 15.5,48.5 parent: 2 - - uid: 16238 + - uid: 4344 components: - type: Transform - pos: 31.5,-43.5 + pos: 15.5,41.5 parent: 2 - - uid: 16239 + - uid: 4345 components: - type: Transform - pos: 30.5,-44.5 + pos: 21.5,49.5 parent: 2 - - uid: 16240 + - uid: 4346 components: - type: Transform - pos: 26.5,-46.5 + pos: 27.5,54.5 parent: 2 - - uid: 16241 + - uid: 4355 components: - type: Transform - pos: 29.5,-45.5 + pos: 32.5,44.5 parent: 2 - - uid: 16243 + - uid: 4356 components: - type: Transform - pos: 24.5,-39.5 + pos: 32.5,40.5 parent: 2 - - uid: 16244 + - uid: 4357 components: - type: Transform - pos: 22.5,-32.5 + pos: 31.5,41.5 parent: 2 - - uid: 16245 + - uid: 4363 components: - type: Transform - pos: 20.5,-35.5 + pos: 34.5,57.5 parent: 2 - - uid: 16246 + - uid: 4376 components: - type: Transform - pos: 22.5,-33.5 + pos: 24.5,49.5 parent: 2 - - uid: 16258 + - uid: 4393 components: - type: Transform - pos: 10.5,-34.5 + pos: 39.5,56.5 parent: 2 - - uid: 16259 + - uid: 4394 components: - type: Transform - pos: 10.5,-35.5 + pos: 40.5,56.5 parent: 2 - - uid: 16260 + - uid: 4462 components: - type: Transform - pos: 9.5,-34.5 + pos: 53.5,40.5 parent: 2 - - uid: 16261 + - uid: 4486 components: - type: Transform - pos: 9.5,-33.5 + pos: 26.5,40.5 parent: 2 - - uid: 16262 + - uid: 4504 components: - type: Transform - pos: 9.5,-32.5 + pos: 19.5,40.5 parent: 2 - - uid: 16263 + - uid: 4507 components: - type: Transform - pos: 10.5,-32.5 + pos: 21.5,40.5 parent: 2 - - uid: 16267 + - uid: 4865 components: - type: Transform - pos: 26.5,-40.5 + pos: 45.5,-14.5 parent: 2 - - uid: 16268 + - uid: 4871 components: - type: Transform - pos: 16.5,-28.5 + pos: 51.5,-21.5 parent: 2 - - uid: 16275 + - uid: 4872 components: - type: Transform - pos: 15.5,-31.5 + pos: 51.5,-20.5 parent: 2 - - uid: 16276 + - uid: 4967 components: - type: Transform - pos: 30.5,-33.5 + pos: 40.5,47.5 parent: 2 - - uid: 16277 + - uid: 4984 components: - type: Transform - pos: 18.5,-28.5 + pos: 42.5,56.5 parent: 2 - - uid: 16280 + - uid: 4992 components: - type: Transform - pos: 15.5,-28.5 + pos: -6.5,21.5 parent: 2 - - uid: 16281 + - uid: 5044 components: - type: Transform - pos: 32.5,-33.5 + pos: 50.5,35.5 parent: 2 - - uid: 16282 + - uid: 5045 components: - type: Transform - pos: 17.5,-31.5 + pos: 31.5,-14.5 parent: 2 - - uid: 16284 + - uid: 5047 components: - type: Transform - pos: 19.5,-28.5 + pos: 79.5,68.5 parent: 2 - - uid: 16285 + - uid: 5048 components: - type: Transform - pos: 24.5,-47.5 + pos: 74.5,66.5 parent: 2 - - uid: 16286 + - uid: 5049 components: - type: Transform - pos: 22.5,-47.5 + pos: 74.5,67.5 parent: 2 - - uid: 16287 + - uid: 5050 components: - type: Transform - pos: 13.5,-31.5 + pos: 79.5,66.5 parent: 2 - - uid: 16288 + - uid: 5089 components: - type: Transform - pos: 22.5,-31.5 + pos: 74.5,68.5 parent: 2 - - uid: 16290 + - uid: 5090 components: - type: Transform - pos: 33.5,-35.5 + pos: 79.5,67.5 parent: 2 - - uid: 16291 + - uid: 5095 components: - type: Transform - pos: 19.5,-47.5 + pos: 53.5,39.5 parent: 2 - - uid: 16292 + - uid: 5216 components: - type: Transform - pos: 36.5,-38.5 + pos: 27.5,45.5 parent: 2 - - uid: 16293 + - uid: 5221 components: - type: Transform - pos: 11.5,-31.5 + pos: 27.5,46.5 parent: 2 - - uid: 16295 + - uid: 5625 components: - type: Transform - pos: 22.5,-48.5 + pos: 31.5,-13.5 parent: 2 - - uid: 16296 + - uid: 5934 components: - type: Transform - pos: 23.5,-47.5 + pos: 18.5,54.5 parent: 2 - - uid: 16298 + - uid: 6218 components: - type: Transform - pos: 26.5,-30.5 + pos: 22.5,-45.5 parent: 2 - - uid: 16299 + - uid: 6234 components: - type: Transform - pos: 34.5,-38.5 + pos: 22.5,-44.5 parent: 2 - - uid: 16300 + - uid: 6240 components: - type: Transform - pos: 26.5,-37.5 + pos: 17.5,-42.5 parent: 2 - - uid: 16301 + - uid: 6248 components: - type: Transform - pos: 13.5,-28.5 + pos: 18.5,-42.5 parent: 2 - - uid: 16302 + - uid: 6249 components: - type: Transform - pos: 23.5,-30.5 + pos: 26.5,-42.5 parent: 2 - - uid: 16306 + - uid: 6294 components: - type: Transform - pos: 32.5,-35.5 + pos: 27.5,-42.5 parent: 2 - - uid: 16307 + - uid: 6500 components: - type: Transform - pos: 13.5,-26.5 + pos: 14.5,-38.5 parent: 2 - - uid: 16308 + - uid: 6501 components: - type: Transform - pos: 13.5,-27.5 + pos: -5.5,17.5 parent: 2 - - uid: 16309 + - uid: 6502 components: - type: Transform - pos: 27.5,-30.5 + pos: 15.5,-37.5 parent: 2 - - uid: 16317 + - uid: 6503 components: - type: Transform - pos: 26.5,-35.5 + pos: 15.5,-39.5 parent: 2 - - uid: 16336 + - uid: 6504 components: - type: Transform - pos: 34.5,-40.5 + pos: -8.5,19.5 parent: 2 - - uid: 16341 + - uid: 6505 components: - type: Transform - pos: 24.5,-28.5 + pos: -8.5,20.5 parent: 2 - - uid: 16342 + - uid: 6506 components: - type: Transform - pos: 34.5,-36.5 + pos: -6.5,17.5 parent: 2 - - uid: 16344 + - uid: 6507 components: - type: Transform - pos: 34.5,-39.5 + pos: -8.5,21.5 parent: 2 - - uid: 16366 + - uid: 6508 components: - type: Transform - pos: 10.5,-37.5 + pos: -7.5,20.5 parent: 2 - - uid: 16370 + - uid: 6509 components: - type: Transform - pos: 21.5,-48.5 + pos: -7.5,17.5 parent: 2 - - uid: 16372 + - uid: 6510 components: - type: Transform - pos: 28.5,-46.5 + pos: -6.5,20.5 parent: 2 - - uid: 16373 + - uid: 6511 components: - type: Transform - pos: 20.5,-47.5 + pos: -8.5,17.5 parent: 2 - - uid: 16423 + - uid: 6512 components: - type: Transform - pos: 14.5,-31.5 + pos: -8.5,18.5 parent: 2 - - uid: 16424 + - uid: 6513 components: - type: Transform - pos: 35.5,-39.5 + pos: 31.5,-38.5 parent: 2 - - uid: 16425 + - uid: 6514 components: - type: Transform - pos: 34.5,-35.5 + pos: 32.5,-38.5 parent: 2 - - uid: 16426 + - uid: 6936 components: - type: Transform - pos: 34.5,-41.5 + pos: 39.5,50.5 parent: 2 - - uid: 16427 + - uid: 7449 components: - type: Transform - pos: 32.5,-34.5 + pos: 37.5,47.5 parent: 2 - - uid: 16428 + - uid: 7566 components: - type: Transform - pos: 34.5,-37.5 + pos: 17.5,40.5 parent: 2 - - uid: 16430 + - uid: 8183 components: - type: Transform - pos: 12.5,-27.5 + pos: 15.5,49.5 parent: 2 - - uid: 16431 + - uid: 8192 components: - type: Transform - pos: 24.5,-30.5 + pos: 15.5,45.5 parent: 2 - - uid: 16432 + - uid: 8208 components: - type: Transform - pos: 27.5,-31.5 + pos: 16.5,49.5 parent: 2 - - uid: 16433 + - uid: 9111 components: - type: Transform - pos: 28.5,-32.5 + pos: 58.5,27.5 parent: 2 - - uid: 16437 + - uid: 9708 components: - type: Transform - pos: 14.5,-29.5 + pos: 27.5,40.5 parent: 2 - - uid: 16445 + - uid: 9901 components: - type: Transform - pos: 20.5,-48.5 + pos: 24.5,40.5 parent: 2 - - uid: 16456 + - uid: 10153 components: - type: Transform - pos: 25.5,-47.5 + pos: 18.5,40.5 parent: 2 - - uid: 16459 + - uid: 10216 components: - type: Transform - pos: 14.5,-28.5 + pos: 30.5,-4.5 parent: 2 - - uid: 16466 + - uid: 10272 components: - type: Transform - pos: 15.5,-44.5 + pos: 22.5,40.5 parent: 2 - - uid: 16482 + - uid: 10792 components: - type: Transform - pos: 19.5,-46.5 + pos: 20.5,40.5 parent: 2 - - uid: 18290 + - uid: 10886 components: - type: Transform - pos: -6.5,5.5 - parent: 16504 - - uid: 18291 + pos: 17.5,49.5 + parent: 2 + - uid: 10887 components: - type: Transform - pos: -6.5,6.5 - parent: 16504 - - uid: 18292 + pos: 19.5,49.5 + parent: 2 + - uid: 10893 components: - type: Transform - pos: -23.5,25.5 - parent: 16504 - - uid: 18293 + pos: 23.5,48.5 + parent: 2 + - uid: 10899 components: - type: Transform - pos: -24.5,25.5 - parent: 16504 - - uid: 18294 + pos: 25.5,40.5 + parent: 2 + - uid: 10904 components: - type: Transform - pos: -25.5,25.5 - parent: 16504 - - uid: 18295 + pos: 26.5,49.5 + parent: 2 + - uid: 10905 components: - type: Transform - pos: -25.5,24.5 - parent: 16504 - - uid: 18296 + pos: 25.5,47.5 + parent: 2 + - uid: 10909 components: - type: Transform - pos: -13.5,31.5 - parent: 16504 - - uid: 18297 + pos: 23.5,40.5 + parent: 2 + - uid: 10915 components: - type: Transform - pos: -12.5,31.5 - parent: 16504 - - uid: 18298 + pos: 20.5,49.5 + parent: 2 + - uid: 10921 components: - type: Transform - pos: -12.5,32.5 - parent: 16504 - - uid: 18299 + pos: 19.5,44.5 + parent: 2 + - uid: 10922 components: - type: Transform - pos: -11.5,33.5 - parent: 16504 - - uid: 18300 + pos: 29.5,57.5 + parent: 2 + - uid: 10928 components: - type: Transform - pos: -10.5,33.5 - parent: 16504 - - uid: 18301 + pos: 31.5,57.5 + parent: 2 + - uid: 10932 components: - type: Transform - pos: -8.5,34.5 - parent: 16504 - - uid: 18302 + pos: 30.5,57.5 + parent: 2 + - uid: 10937 components: - type: Transform - pos: -9.5,34.5 - parent: 16504 - - uid: 18303 + pos: 31.5,46.5 + parent: 2 + - uid: 11246 components: - type: Transform - pos: -7.5,34.5 - parent: 16504 - - uid: 21192 + pos: 34.5,-8.5 + parent: 2 + - uid: 11247 components: - type: Transform - pos: 12.5,44.5 + pos: 33.5,-8.5 parent: 2 - - uid: 21204 + - uid: 11445 components: - type: Transform - pos: 14.5,65.5 + pos: 32.5,54.5 parent: 2 - - uid: 21206 + - uid: 11446 components: - type: Transform - pos: 14.5,62.5 + pos: 31.5,54.5 parent: 2 - - uid: 21211 + - uid: 11467 components: - type: Transform - pos: 39.5,57.5 + pos: 30.5,-5.5 parent: 2 - - uid: 21412 + - uid: 11579 components: - type: Transform - pos: 29.5,-37.5 + pos: 31.5,-12.5 parent: 2 - - uid: 21465 + - uid: 11587 components: - type: Transform - pos: 17.5,-28.5 + pos: 42.5,47.5 parent: 2 - - uid: 21466 + - uid: 11605 components: - type: Transform - pos: 29.5,-33.5 + pos: 30.5,-6.5 parent: 2 - - uid: 21467 + - uid: 11635 components: - type: Transform - pos: 31.5,-33.5 + pos: 33.5,54.5 parent: 2 - - uid: 21468 + - uid: 11637 components: - type: Transform - pos: 28.5,-31.5 + pos: 27.5,52.5 parent: 2 - - uid: 21470 + - uid: 11673 components: - type: Transform - pos: 25.5,-30.5 + pos: 33.5,53.5 parent: 2 - - uid: 21471 + - uid: 11937 components: - type: Transform - pos: 14.5,-32.5 + pos: 31.5,45.5 parent: 2 - - uid: 21472 + - uid: 11938 components: - type: Transform - pos: 16.5,-31.5 + pos: 31.5,42.5 parent: 2 - - uid: 21473 + - uid: 11939 components: - type: Transform - pos: 36.5,-39.5 + pos: 31.5,43.5 parent: 2 - - uid: 21474 + - uid: 11940 components: - type: Transform - pos: 14.5,-30.5 + pos: 31.5,44.5 parent: 2 - - uid: 21482 + - uid: 12105 components: - type: Transform - pos: 25.5,-41.5 + pos: 10.5,-4.5 parent: 2 - - uid: 21495 + - uid: 12551 components: - type: Transform - pos: 28.5,-38.5 + pos: 41.5,48.5 parent: 2 - - uid: 21510 + - uid: 13888 components: - type: Transform - pos: 28.5,-33.5 + pos: 18.5,49.5 parent: 2 - - uid: 21515 + - uid: 13890 components: - type: Transform - pos: 30.5,-37.5 + pos: 16.5,40.5 parent: 2 - - uid: 21590 + - uid: 13891 components: - type: Transform - pos: 10.5,-36.5 + pos: 19.5,41.5 parent: 2 - - uid: 21959 + - uid: 13895 components: - type: Transform - pos: 29.5,-19.5 + pos: 32.5,57.5 parent: 2 - - uid: 22303 + - uid: 13900 components: - type: Transform - pos: 30.5,-8.5 + pos: 37.5,54.5 parent: 2 - - uid: 22304 + - uid: 13908 components: - type: Transform - pos: 30.5,-7.5 + pos: 25.5,49.5 parent: 2 - - uid: 22305 + - uid: 14049 components: - type: Transform - pos: 31.5,-7.5 + pos: 51.5,84.5 parent: 2 - - uid: 22306 + - uid: 14149 components: - type: Transform - pos: 32.5,-7.5 + pos: 12.5,36.5 parent: 2 - - uid: 22307 + - uid: 14342 components: - type: Transform - pos: 33.5,-7.5 + pos: 11.5,52.5 parent: 2 - - uid: 22308 + - uid: 15007 components: - type: Transform - pos: 33.5,-8.5 + pos: 32.5,46.5 parent: 2 - - uid: 22309 + - uid: 15403 components: - type: Transform - pos: 34.5,-8.5 + pos: 29.5,-17.5 parent: 2 - - uid: 22310 + - uid: 15450 components: - type: Transform - pos: 35.5,-8.5 + pos: 10.5,2.5 parent: 2 - - uid: 22311 + - uid: 15483 components: - type: Transform - pos: 36.5,-8.5 + pos: 7.5,19.5 parent: 2 - - uid: 22312 + - uid: 15504 components: - type: Transform - pos: 37.5,-8.5 + pos: 29.5,-16.5 parent: 2 - - uid: 22313 + - uid: 15505 components: - type: Transform - pos: 37.5,-9.5 + pos: 29.5,-15.5 parent: 2 - - uid: 22314 + - uid: 15977 components: - type: Transform - pos: 37.5,-10.5 + pos: 23.5,46.5 parent: 2 - - uid: 22315 + - uid: 15978 components: - type: Transform - pos: 38.5,-10.5 + pos: 27.5,-14.5 parent: 2 - - uid: 22316 + - uid: 16023 components: - type: Transform - pos: 39.5,-10.5 + pos: 23.5,47.5 parent: 2 - - uid: 22318 + - uid: 16031 components: - type: Transform - pos: 40.5,-10.5 + pos: 27.5,46.5 parent: 2 - - uid: 22319 + - uid: 16135 components: - type: Transform - pos: 41.5,-10.5 + pos: 10.5,52.5 parent: 2 - - uid: 22320 + - uid: 16180 components: - type: Transform - pos: 41.5,-11.5 + pos: 60.5,27.5 parent: 2 - - uid: 22399 + - uid: 16181 components: - type: Transform - pos: 41.5,-12.5 + pos: 59.5,27.5 parent: 2 - - uid: 22400 + - uid: 16222 components: - type: Transform - pos: 42.5,-12.5 + pos: 27.5,53.5 parent: 2 - - uid: 22401 + - uid: 16283 components: - type: Transform - pos: 43.5,-12.5 + pos: 19.5,49.5 parent: 2 - - uid: 22402 + - uid: 16294 components: - type: Transform - pos: 44.5,-12.5 + pos: 27.5,43.5 parent: 2 - - uid: 22403 + - uid: 16329 components: - type: Transform - pos: 45.5,-12.5 + pos: 32.5,42.5 parent: 2 - - uid: 22404 + - uid: 16361 components: - type: Transform - pos: 45.5,-13.5 + pos: 19.5,46.5 parent: 2 - - uid: 22405 + - uid: 16362 components: - type: Transform - pos: 46.5,-13.5 + pos: 23.5,42.5 parent: 2 - - uid: 22406 + - uid: 16371 components: - type: Transform - pos: 47.5,-13.5 + pos: 23.5,41.5 parent: 2 - - uid: 22410 + - uid: 16436 components: - type: Transform - pos: 46.5,-14.5 + pos: 27.5,44.5 parent: 2 - - uid: 22411 + - uid: 16444 components: - type: Transform - pos: 46.5,-15.5 + pos: 19.5,47.5 parent: 2 - - uid: 22412 + - uid: 16455 components: - type: Transform - pos: 46.5,-16.5 + pos: 20.5,43.5 parent: 2 -- proto: CableHVStack - entities: - - uid: 4438 + - uid: 16465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.541508,-17.558912 + pos: 23.5,44.5 parent: 2 - - uid: 4439 + - uid: 16474 components: - type: Transform - pos: 42.267727,62.66893 + pos: 27.5,41.5 parent: 2 -- proto: CableMV - entities: - - uid: 368 + - uid: 16476 components: - type: Transform - pos: 27.5,-17.5 + pos: 23.5,43.5 parent: 2 - - uid: 486 + - uid: 19412 components: - type: Transform - pos: 28.5,-14.5 - parent: 2 - - uid: 932 + pos: 13.5,-8.5 + parent: 16527 + - uid: 19413 components: - type: Transform - pos: 23.5,-38.5 - parent: 2 - - uid: 1148 + pos: -5.5,74.5 + parent: 16527 + - uid: 19414 components: - type: Transform - pos: 6.5,10.5 - parent: 2 - - uid: 1177 + pos: -5.5,73.5 + parent: 16527 + - uid: 19415 components: - type: Transform - pos: 5.5,10.5 - parent: 2 - - uid: 1697 + pos: -5.5,72.5 + parent: 16527 + - uid: 19416 components: - type: Transform - pos: 7.5,19.5 - parent: 2 - - uid: 1915 + pos: -5.5,71.5 + parent: 16527 + - uid: 19417 components: - type: Transform - pos: 6.5,19.5 - parent: 2 - - uid: 2323 + pos: -5.5,70.5 + parent: 16527 + - uid: 19418 components: - type: Transform - pos: 14.5,52.5 - parent: 2 - - uid: 2332 + pos: -5.5,69.5 + parent: 16527 + - uid: 19419 components: - type: Transform - pos: 42.5,55.5 - parent: 2 - - uid: 2333 + pos: -5.5,68.5 + parent: 16527 + - uid: 19420 components: - type: Transform - pos: 41.5,56.5 - parent: 2 - - uid: 2335 + pos: -6.5,73.5 + parent: 16527 + - uid: 19421 components: - type: Transform - pos: 40.5,56.5 - parent: 2 - - uid: 2336 + pos: -7.5,73.5 + parent: 16527 + - uid: 19422 components: - type: Transform - pos: 42.5,56.5 - parent: 2 - - uid: 2357 + pos: -8.5,73.5 + parent: 16527 + - uid: 19423 components: - type: Transform - pos: 56.5,34.5 - parent: 2 - - uid: 2362 + pos: -8.5,72.5 + parent: 16527 + - uid: 19424 components: - type: Transform - pos: 57.5,34.5 - parent: 2 - - uid: 2549 + pos: -8.5,71.5 + parent: 16527 + - uid: 19425 components: - type: Transform - pos: 39.5,56.5 - parent: 2 - - uid: 3017 + pos: -8.5,70.5 + parent: 16527 + - uid: 19426 components: - type: Transform - pos: 62.5,-1.5 - parent: 2 - - uid: 3019 + pos: -8.5,69.5 + parent: 16527 + - uid: 19427 components: - type: Transform - pos: 60.5,-1.5 - parent: 2 - - uid: 3147 + pos: -8.5,68.5 + parent: 16527 + - uid: 19428 components: - type: Transform - pos: 31.5,49.5 - parent: 2 - - uid: 3148 + pos: -9.5,68.5 + parent: 16527 + - uid: 19429 components: - type: Transform - pos: 31.5,48.5 - parent: 2 - - uid: 3188 + pos: -10.5,68.5 + parent: 16527 + - uid: 19430 components: - type: Transform - pos: 23.5,50.5 - parent: 2 - - uid: 3189 + pos: -11.5,68.5 + parent: 16527 + - uid: 19431 components: - type: Transform - pos: 22.5,50.5 - parent: 2 - - uid: 3190 + pos: -8.5,74.5 + parent: 16527 + - uid: 19432 components: - type: Transform - pos: 21.5,50.5 - parent: 2 - - uid: 3191 + pos: -8.5,75.5 + parent: 16527 + - uid: 19433 components: - type: Transform - pos: 20.5,50.5 - parent: 2 - - uid: 3194 + pos: -8.5,76.5 + parent: 16527 + - uid: 19434 components: - type: Transform - pos: 18.5,54.5 - parent: 2 - - uid: 3195 + pos: -8.5,77.5 + parent: 16527 + - uid: 19435 components: - type: Transform - pos: 17.5,54.5 - parent: 2 - - uid: 3196 + pos: -8.5,78.5 + parent: 16527 + - uid: 19436 components: - type: Transform - pos: 15.5,54.5 - parent: 2 - - uid: 3197 + pos: -8.5,79.5 + parent: 16527 + - uid: 19437 components: - type: Transform - pos: 14.5,54.5 - parent: 2 - - uid: 3198 + pos: -8.5,80.5 + parent: 16527 + - uid: 19438 components: - type: Transform - pos: 14.5,53.5 - parent: 2 - - uid: 3200 + pos: -8.5,81.5 + parent: 16527 + - uid: 19439 components: - type: Transform - pos: 16.5,54.5 - parent: 2 - - uid: 3201 + pos: -9.5,81.5 + parent: 16527 + - uid: 19440 components: - type: Transform - pos: 19.5,50.5 - parent: 2 - - uid: 3202 + pos: -10.5,81.5 + parent: 16527 + - uid: 19441 components: - type: Transform - pos: 18.5,44.5 - parent: 2 - - uid: 3203 + pos: -11.5,81.5 + parent: 16527 + - uid: 19442 components: - type: Transform - pos: 17.5,44.5 - parent: 2 - - uid: 3204 + pos: -12.5,81.5 + parent: 16527 + - uid: 19443 components: - type: Transform - pos: 14.5,44.5 - parent: 2 - - uid: 3609 + pos: -13.5,81.5 + parent: 16527 + - uid: 19444 components: - type: Transform - pos: 27.5,-38.5 - parent: 2 - - uid: 3858 + pos: -14.5,81.5 + parent: 16527 + - uid: 19445 components: - type: Transform - pos: 16.5,44.5 - parent: 2 - - uid: 3860 + pos: -15.5,81.5 + parent: 16527 + - uid: 19446 components: - type: Transform - pos: 18.5,50.5 - parent: 2 - - uid: 3861 + pos: -16.5,81.5 + parent: 16527 + - uid: 19447 components: - type: Transform - pos: 18.5,46.5 - parent: 2 - - uid: 3979 + pos: -16.5,80.5 + parent: 16527 + - uid: 19448 components: - type: Transform - pos: 25.5,50.5 - parent: 2 - - uid: 4073 + pos: -16.5,79.5 + parent: 16527 + - uid: 19449 components: - type: Transform - pos: 13.5,44.5 - parent: 2 - - uid: 4235 + pos: -16.5,78.5 + parent: 16527 + - uid: 19450 components: - type: Transform - pos: 31.5,-38.5 - parent: 2 - - uid: 4252 + pos: -16.5,77.5 + parent: 16527 + - uid: 19451 components: - type: Transform - pos: 33.5,56.5 - parent: 2 - - uid: 4255 + pos: -16.5,76.5 + parent: 16527 + - uid: 19452 components: - type: Transform - pos: 33.5,57.5 - parent: 2 - - uid: 4256 + pos: -16.5,75.5 + parent: 16527 + - uid: 19453 components: - type: Transform - pos: 32.5,57.5 - parent: 2 - - uid: 4260 + pos: -16.5,74.5 + parent: 16527 + - uid: 19454 components: - type: Transform - pos: 31.5,58.5 - parent: 2 - - uid: 4262 + pos: -16.5,73.5 + parent: 16527 + - uid: 19455 components: - type: Transform - pos: 18.5,47.5 - parent: 2 - - uid: 4263 + pos: -16.5,72.5 + parent: 16527 + - uid: 19456 components: - type: Transform - pos: 18.5,48.5 - parent: 2 - - uid: 4264 + pos: -16.5,71.5 + parent: 16527 + - uid: 19457 components: - type: Transform - pos: 18.5,49.5 - parent: 2 - - uid: 4267 + pos: -16.5,70.5 + parent: 16527 + - uid: 19458 components: - type: Transform - pos: 31.5,59.5 - parent: 2 - - uid: 4347 + pos: -16.5,69.5 + parent: 16527 + - uid: 19459 components: - type: Transform - pos: 36.5,58.5 - parent: 2 - - uid: 4361 + pos: -16.5,68.5 + parent: 16527 + - uid: 19460 components: - type: Transform - pos: 36.5,63.5 - parent: 2 - - uid: 4362 + pos: -15.5,68.5 + parent: 16527 + - uid: 19461 components: - type: Transform - pos: 36.5,62.5 - parent: 2 - - uid: 4367 + pos: -14.5,68.5 + parent: 16527 + - uid: 19462 components: - type: Transform - pos: 33.5,55.5 - parent: 2 - - uid: 4371 + pos: -13.5,68.5 + parent: 16527 + - uid: 19463 components: - type: Transform - pos: 36.5,61.5 - parent: 2 - - uid: 4373 + pos: -4.5,73.5 + parent: 16527 + - uid: 19464 components: - type: Transform - pos: 39.5,57.5 - parent: 2 - - uid: 4374 + pos: -3.5,73.5 + parent: 16527 + - uid: 19465 components: - type: Transform - pos: 38.5,57.5 - parent: 2 - - uid: 4375 + pos: -2.5,73.5 + parent: 16527 + - uid: 19466 components: - type: Transform - pos: 36.5,60.5 - parent: 2 - - uid: 4377 + pos: -2.5,72.5 + parent: 16527 + - uid: 19467 components: - type: Transform - pos: 15.5,44.5 - parent: 2 - - uid: 4379 + pos: -2.5,71.5 + parent: 16527 + - uid: 19468 components: - type: Transform - pos: 24.5,50.5 - parent: 2 - - uid: 4380 + pos: -2.5,70.5 + parent: 16527 + - uid: 19469 components: - type: Transform - pos: 18.5,45.5 - parent: 2 - - uid: 4383 + pos: -2.5,69.5 + parent: 16527 + - uid: 19470 components: - type: Transform - pos: 29.5,53.5 - parent: 2 - - uid: 4385 + pos: -2.5,68.5 + parent: 16527 + - uid: 19471 components: - type: Transform - pos: 25.5,53.5 - parent: 2 - - uid: 4391 + pos: -2.5,67.5 + parent: 16527 + - uid: 19472 components: - type: Transform - pos: 36.5,57.5 - parent: 2 - - uid: 4392 + pos: -2.5,66.5 + parent: 16527 + - uid: 19473 components: - type: Transform - pos: 56.5,35.5 - parent: 2 - - uid: 4440 + pos: -2.5,65.5 + parent: 16527 + - uid: 19474 components: - type: Transform - pos: 48.5,58.5 - parent: 2 - - uid: 4441 + pos: -2.5,64.5 + parent: 16527 + - uid: 19475 components: - type: Transform - pos: 41.5,22.5 - parent: 2 - - uid: 4442 + pos: -1.5,67.5 + parent: 16527 + - uid: 19476 components: - type: Transform - pos: 42.5,23.5 - parent: 2 - - uid: 4443 + pos: -0.5,67.5 + parent: 16527 + - uid: 19477 components: - type: Transform - pos: 38.5,22.5 - parent: 2 - - uid: 4444 + pos: -8.5,67.5 + parent: 16527 + - uid: 19478 components: - type: Transform - pos: 72.5,67.5 - parent: 2 - - uid: 4445 + pos: -2.5,74.5 + parent: 16527 + - uid: 19479 components: - type: Transform - pos: 55.5,6.5 - parent: 2 - - uid: 4446 + pos: -2.5,75.5 + parent: 16527 + - uid: 19480 components: - type: Transform - pos: 57.5,41.5 - parent: 2 - - uid: 4447 + pos: -2.5,76.5 + parent: 16527 + - uid: 19481 components: - type: Transform - pos: 23.5,-16.5 - parent: 2 - - uid: 4448 + pos: -2.5,77.5 + parent: 16527 + - uid: 19482 components: - type: Transform - pos: 38.5,60.5 - parent: 2 - - uid: 4449 + pos: -2.5,78.5 + parent: 16527 + - uid: 19483 components: - type: Transform - pos: 69.5,39.5 - parent: 2 - - uid: 4450 + pos: -1.5,78.5 + parent: 16527 + - uid: 19484 components: - type: Transform - pos: 47.5,68.5 - parent: 2 - - uid: 4451 + pos: -0.5,78.5 + parent: 16527 + - uid: 19485 components: - type: Transform - pos: 49.5,3.5 - parent: 2 - - uid: 4452 + pos: 0.5,78.5 + parent: 16527 + - uid: 19486 components: - type: Transform - pos: 56.5,38.5 - parent: 2 - - uid: 4453 + pos: 1.5,78.5 + parent: 16527 + - uid: 19487 components: - type: Transform - pos: 43.5,23.5 - parent: 2 - - uid: 4454 + pos: 0.5,79.5 + parent: 16527 + - uid: 19488 components: - type: Transform - pos: 39.5,3.5 - parent: 2 - - uid: 4455 + pos: 0.5,80.5 + parent: 16527 + - uid: 19489 components: - type: Transform - pos: 56.5,7.5 - parent: 2 - - uid: 4456 + pos: 0.5,81.5 + parent: 16527 + - uid: 19490 components: - type: Transform - pos: 53.5,48.5 - parent: 2 - - uid: 4457 + pos: 0.5,82.5 + parent: 16527 + - uid: 19491 components: - type: Transform - pos: 38.5,73.5 - parent: 2 - - uid: 4458 + pos: 0.5,83.5 + parent: 16527 + - uid: 19492 components: - type: Transform - pos: 37.5,9.5 - parent: 2 - - uid: 4459 + pos: 1.5,83.5 + parent: 16527 + - uid: 19493 components: - type: Transform - pos: 54.5,38.5 - parent: 2 - - uid: 4460 + pos: 2.5,83.5 + parent: 16527 + - uid: 19494 components: - type: Transform - pos: 58.5,40.5 - parent: 2 - - uid: 4463 + pos: 3.5,83.5 + parent: 16527 + - uid: 19495 components: - type: Transform - pos: 37.5,4.5 - parent: 2 - - uid: 4464 + pos: 4.5,83.5 + parent: 16527 + - uid: 19496 components: - type: Transform - pos: 41.5,4.5 - parent: 2 - - uid: 4465 + pos: 5.5,83.5 + parent: 16527 + - uid: 19497 components: - type: Transform - pos: 43.5,4.5 - parent: 2 - - uid: 4466 + pos: 5.5,82.5 + parent: 16527 + - uid: 19498 components: - type: Transform - pos: 43.5,3.5 - parent: 2 - - uid: 4467 + pos: 5.5,81.5 + parent: 16527 + - uid: 19499 components: - type: Transform - pos: 53.5,49.5 - parent: 2 - - uid: 4468 + pos: 5.5,80.5 + parent: 16527 + - uid: 19500 components: - type: Transform - pos: 53.5,50.5 - parent: 2 - - uid: 4469 + pos: 5.5,79.5 + parent: 16527 + - uid: 19501 components: - type: Transform - pos: 55.5,41.5 - parent: 2 - - uid: 4470 + pos: 5.5,78.5 + parent: 16527 + - uid: 19502 components: - type: Transform - pos: 54.5,42.5 - parent: 2 - - uid: 4471 + pos: 4.5,78.5 + parent: 16527 + - uid: 19503 components: - type: Transform - pos: 53.5,51.5 - parent: 2 - - uid: 4472 + pos: 6.5,78.5 + parent: 16527 + - uid: 19504 components: - type: Transform - pos: 53.5,52.5 - parent: 2 - - uid: 4473 + pos: 7.5,78.5 + parent: 16527 + - uid: 19505 components: - type: Transform - pos: 53.5,53.5 - parent: 2 - - uid: 4474 + pos: 8.5,78.5 + parent: 16527 + - uid: 19506 components: - type: Transform - pos: 39.5,66.5 - parent: 2 - - uid: 4475 + pos: 8.5,77.5 + parent: 16527 + - uid: 19507 components: - type: Transform - pos: 48.5,59.5 - parent: 2 - - uid: 4476 + pos: 8.5,76.5 + parent: 16527 + - uid: 19508 components: - type: Transform - pos: 49.5,58.5 - parent: 2 - - uid: 4477 + pos: 8.5,75.5 + parent: 16527 + - uid: 19509 components: - type: Transform - pos: 53.5,54.5 - parent: 2 - - uid: 4478 + pos: 8.5,74.5 + parent: 16527 + - uid: 19510 components: - type: Transform - pos: 53.5,56.5 - parent: 2 - - uid: 4479 + pos: 8.5,73.5 + parent: 16527 + - uid: 19511 components: - type: Transform - pos: 38.5,72.5 - parent: 2 - - uid: 4480 + pos: 8.5,72.5 + parent: 16527 + - uid: 19512 components: - type: Transform - pos: 39.5,73.5 - parent: 2 - - uid: 4481 + pos: 8.5,71.5 + parent: 16527 + - uid: 19513 components: - type: Transform - pos: 53.5,55.5 - parent: 2 - - uid: 4482 + pos: 8.5,70.5 + parent: 16527 + - uid: 19514 components: - type: Transform - pos: 53.5,57.5 - parent: 2 - - uid: 4483 + pos: 8.5,69.5 + parent: 16527 + - uid: 19515 components: - type: Transform - pos: 53.5,35.5 - parent: 2 - - uid: 4484 + pos: 8.5,68.5 + parent: 16527 + - uid: 19516 components: - type: Transform - pos: 51.5,36.5 - parent: 2 - - uid: 4488 + pos: 8.5,67.5 + parent: 16527 + - uid: 19517 components: - type: Transform - pos: 47.5,66.5 - parent: 2 - - uid: 4489 + pos: 7.5,67.5 + parent: 16527 + - uid: 19518 components: - type: Transform - pos: 52.5,65.5 - parent: 2 - - uid: 4490 + pos: 6.5,67.5 + parent: 16527 + - uid: 19519 components: - type: Transform - pos: 53.5,64.5 - parent: 2 - - uid: 4491 + pos: 5.5,67.5 + parent: 16527 + - uid: 19520 components: - type: Transform - pos: 52.5,64.5 - parent: 2 - - uid: 4495 + pos: -8.5,66.5 + parent: 16527 + - uid: 19521 components: - type: Transform - pos: 52.5,63.5 - parent: 2 - - uid: 4496 + pos: -8.5,65.5 + parent: 16527 + - uid: 19522 components: - type: Transform - pos: 51.5,64.5 - parent: 2 - - uid: 4497 + pos: -2.5,63.5 + parent: 16527 + - uid: 19523 components: - type: Transform - pos: 50.5,65.5 - parent: 2 - - uid: 4498 + pos: -2.5,62.5 + parent: 16527 + - uid: 19524 components: - type: Transform - pos: 48.5,65.5 - parent: 2 - - uid: 4499 + pos: -2.5,61.5 + parent: 16527 + - uid: 19525 components: - type: Transform - pos: 49.5,65.5 - parent: 2 - - uid: 4500 + pos: -2.5,60.5 + parent: 16527 + - uid: 19526 components: - type: Transform - pos: 40.5,4.5 - parent: 2 - - uid: 4501 + pos: -2.5,59.5 + parent: 16527 + - uid: 19527 components: - type: Transform - pos: 47.5,67.5 - parent: 2 - - uid: 4502 + pos: -2.5,58.5 + parent: 16527 + - uid: 19528 components: - type: Transform - pos: 47.5,72.5 - parent: 2 - - uid: 4503 + pos: -3.5,59.5 + parent: 16527 + - uid: 19529 components: - type: Transform - pos: 44.5,56.5 - parent: 2 - - uid: 4506 + pos: -4.5,59.5 + parent: 16527 + - uid: 19530 components: - type: Transform - pos: 23.5,-17.5 - parent: 2 - - uid: 4510 + pos: -5.5,59.5 + parent: 16527 + - uid: 19531 components: - type: Transform - pos: 2.5,33.5 - parent: 2 - - uid: 4511 + pos: -6.5,59.5 + parent: 16527 + - uid: 19532 components: - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 4512 + pos: -7.5,59.5 + parent: 16527 + - uid: 19533 components: - type: Transform - pos: 13.5,3.5 - parent: 2 - - uid: 4513 + pos: -8.5,59.5 + parent: 16527 + - uid: 19534 components: - type: Transform - pos: 12.5,3.5 - parent: 2 - - uid: 4514 + pos: -8.5,60.5 + parent: 16527 + - uid: 19535 components: - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 4515 + pos: -8.5,61.5 + parent: 16527 + - uid: 19536 components: - type: Transform - pos: 11.5,4.5 - parent: 2 - - uid: 4516 + pos: -8.5,62.5 + parent: 16527 + - uid: 19537 components: - type: Transform - pos: 11.5,5.5 - parent: 2 - - uid: 4517 + pos: -8.5,63.5 + parent: 16527 + - uid: 19538 components: - type: Transform - pos: 11.5,6.5 - parent: 2 - - uid: 4518 + pos: -8.5,64.5 + parent: 16527 + - uid: 19539 components: - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 4519 + pos: -41.5,43.5 + parent: 16527 + - uid: 19540 components: - type: Transform - pos: 11.5,8.5 - parent: 2 - - uid: 4520 + pos: -42.5,43.5 + parent: 16527 + - uid: 19541 components: - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 4521 + pos: -42.5,44.5 + parent: 16527 + - uid: 19542 components: - type: Transform - pos: 11.5,10.5 - parent: 2 - - uid: 4522 + pos: -42.5,45.5 + parent: 16527 + - uid: 19543 components: - type: Transform - pos: 11.5,11.5 - parent: 2 - - uid: 4523 + pos: -42.5,46.5 + parent: 16527 + - uid: 19544 components: - type: Transform - pos: 11.5,12.5 - parent: 2 - - uid: 4524 + pos: -42.5,47.5 + parent: 16527 + - uid: 19545 components: - type: Transform - pos: 11.5,13.5 - parent: 2 - - uid: 4525 + pos: -42.5,48.5 + parent: 16527 + - uid: 19546 components: - type: Transform - pos: 11.5,14.5 - parent: 2 - - uid: 4526 + pos: -42.5,49.5 + parent: 16527 + - uid: 19547 components: - type: Transform - pos: 10.5,14.5 - parent: 2 - - uid: 4527 + pos: -42.5,50.5 + parent: 16527 + - uid: 19548 components: - type: Transform - pos: 9.5,14.5 - parent: 2 - - uid: 4528 + pos: -42.5,51.5 + parent: 16527 + - uid: 19549 components: - type: Transform - pos: 8.5,14.5 - parent: 2 - - uid: 4529 + pos: -42.5,52.5 + parent: 16527 + - uid: 19550 components: - type: Transform - pos: 7.5,14.5 - parent: 2 - - uid: 4530 + pos: -42.5,53.5 + parent: 16527 + - uid: 19551 components: - type: Transform - pos: 6.5,14.5 - parent: 2 - - uid: 4531 + pos: -42.5,54.5 + parent: 16527 + - uid: 19552 components: - type: Transform - pos: 5.5,14.5 - parent: 2 - - uid: 4532 + pos: -42.5,55.5 + parent: 16527 + - uid: 19553 components: - type: Transform - pos: 5.5,13.5 - parent: 2 - - uid: 4533 + pos: -43.5,55.5 + parent: 16527 + - uid: 19554 components: - type: Transform - pos: 5.5,12.5 - parent: 2 - - uid: 4534 + pos: -44.5,55.5 + parent: 16527 + - uid: 19555 components: - type: Transform - pos: 5.5,11.5 - parent: 2 - - uid: 4535 + pos: -45.5,55.5 + parent: 16527 + - uid: 19556 components: - type: Transform - pos: 7.5,13.5 - parent: 2 - - uid: 4536 + pos: -46.5,55.5 + parent: 16527 + - uid: 19557 components: - type: Transform - pos: 7.5,12.5 - parent: 2 - - uid: 4537 + pos: -47.5,55.5 + parent: 16527 + - uid: 19558 components: - type: Transform - pos: 7.5,11.5 - parent: 2 - - uid: 4538 + pos: -48.5,55.5 + parent: 16527 + - uid: 19559 components: - type: Transform - pos: 7.5,10.5 - parent: 2 - - uid: 4539 + pos: -49.5,55.5 + parent: 16527 + - uid: 19560 components: - type: Transform - pos: 7.5,9.5 - parent: 2 - - uid: 4540 + pos: -50.5,55.5 + parent: 16527 + - uid: 19561 components: - type: Transform - pos: 7.5,8.5 - parent: 2 - - uid: 4541 + pos: -51.5,55.5 + parent: 16527 + - uid: 19562 components: - type: Transform - pos: 7.5,7.5 - parent: 2 - - uid: 4542 + pos: -52.5,55.5 + parent: 16527 + - uid: 19563 components: - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 4544 + pos: -53.5,55.5 + parent: 16527 + - uid: 19564 components: - type: Transform - pos: 10.5,-5.5 - parent: 2 - - uid: 4545 + pos: -54.5,55.5 + parent: 16527 + - uid: 19565 components: - type: Transform - pos: 10.5,-4.5 - parent: 2 - - uid: 4546 + pos: -55.5,55.5 + parent: 16527 + - uid: 19566 components: - type: Transform - pos: 7.5,5.5 - parent: 2 - - uid: 4547 + pos: -56.5,55.5 + parent: 16527 + - uid: 19567 components: - type: Transform - pos: 6.5,5.5 - parent: 2 - - uid: 4548 + pos: -56.5,54.5 + parent: 16527 + - uid: 19568 components: - type: Transform - pos: 6.5,4.5 - parent: 2 - - uid: 4549 + pos: -56.5,53.5 + parent: 16527 + - uid: 19569 components: - type: Transform - pos: 6.5,3.5 - parent: 2 - - uid: 4550 + pos: -56.5,52.5 + parent: 16527 + - uid: 19570 components: - type: Transform - pos: 7.5,3.5 - parent: 2 - - uid: 4551 + pos: -56.5,51.5 + parent: 16527 + - uid: 19571 components: - type: Transform - pos: 8.5,3.5 - parent: 2 - - uid: 4552 + pos: -56.5,50.5 + parent: 16527 + - uid: 19572 components: - type: Transform - pos: 5.5,4.5 - parent: 2 - - uid: 4553 + pos: -56.5,49.5 + parent: 16527 + - uid: 19573 components: - type: Transform - pos: 4.5,4.5 - parent: 2 - - uid: 4554 + pos: -56.5,48.5 + parent: 16527 + - uid: 19574 components: - type: Transform - pos: 6.5,2.5 - parent: 2 - - uid: 4555 + pos: -56.5,47.5 + parent: 16527 + - uid: 19575 components: - type: Transform - pos: 6.5,1.5 - parent: 2 - - uid: 4556 + pos: -56.5,46.5 + parent: 16527 + - uid: 19576 components: - type: Transform - pos: 6.5,0.5 - parent: 2 - - uid: 4557 + pos: -56.5,45.5 + parent: 16527 + - uid: 19577 components: - type: Transform - pos: 5.5,0.5 - parent: 2 - - uid: 4558 + pos: -56.5,44.5 + parent: 16527 + - uid: 19578 components: - type: Transform - pos: 2.5,0.5 - parent: 2 - - uid: 4559 + pos: -56.5,43.5 + parent: 16527 + - uid: 19579 components: - type: Transform - pos: 2.5,1.5 - parent: 2 - - uid: 4560 + pos: -56.5,42.5 + parent: 16527 + - uid: 19580 components: - type: Transform - pos: 2.5,2.5 - parent: 2 - - uid: 4561 + pos: -56.5,41.5 + parent: 16527 + - uid: 19581 components: - type: Transform - pos: 3.5,2.5 - parent: 2 - - uid: 4562 + pos: -55.5,41.5 + parent: 16527 + - uid: 19582 components: - type: Transform - pos: 4.5,2.5 - parent: 2 - - uid: 4563 + pos: -54.5,41.5 + parent: 16527 + - uid: 19583 components: - type: Transform - pos: 5.5,2.5 - parent: 2 - - uid: 4564 + pos: -53.5,41.5 + parent: 16527 + - uid: 19584 components: - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 4565 + pos: -52.5,41.5 + parent: 16527 + - uid: 19585 components: - type: Transform - pos: 27.5,23.5 - parent: 2 - - uid: 4566 + pos: -51.5,41.5 + parent: 16527 + - uid: 19586 components: - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 4567 + pos: -50.5,41.5 + parent: 16527 + - uid: 19587 components: - type: Transform - pos: 29.5,23.5 - parent: 2 - - uid: 4568 + pos: -49.5,41.5 + parent: 16527 + - uid: 19588 components: - type: Transform - pos: 28.5,22.5 - parent: 2 - - uid: 4569 + pos: -48.5,41.5 + parent: 16527 + - uid: 19589 components: - type: Transform - pos: 28.5,21.5 - parent: 2 - - uid: 4570 + pos: -47.5,41.5 + parent: 16527 + - uid: 19590 components: - type: Transform - pos: 29.5,21.5 - parent: 2 - - uid: 4571 + pos: -46.5,41.5 + parent: 16527 + - uid: 19591 components: - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 4572 + pos: -45.5,41.5 + parent: 16527 + - uid: 19592 components: - type: Transform - pos: 31.5,19.5 - parent: 2 - - uid: 4573 + pos: -44.5,41.5 + parent: 16527 + - uid: 19593 components: - type: Transform - pos: 32.5,19.5 - parent: 2 - - uid: 4574 + pos: -43.5,41.5 + parent: 16527 + - uid: 19594 components: - type: Transform - pos: 33.5,19.5 - parent: 2 - - uid: 4575 + pos: -42.5,41.5 + parent: 16527 + - uid: 19595 components: - type: Transform - pos: 26.5,15.5 - parent: 2 - - uid: 4576 + pos: -42.5,42.5 + parent: 16527 + - uid: 19596 components: - type: Transform - pos: 25.5,15.5 - parent: 2 - - uid: 4577 + pos: -41.5,48.5 + parent: 16527 + - uid: 19597 components: - type: Transform - pos: 24.5,15.5 - parent: 2 - - uid: 4578 + pos: -40.5,48.5 + parent: 16527 + - uid: 19598 components: - type: Transform - pos: 23.5,15.5 - parent: 2 - - uid: 4579 + pos: -39.5,48.5 + parent: 16527 + - uid: 19599 components: - type: Transform - pos: 22.5,15.5 - parent: 2 - - uid: 4580 + pos: -38.5,48.5 + parent: 16527 + - uid: 19601 components: - type: Transform - pos: 23.5,14.5 - parent: 2 - - uid: 4581 + pos: -39.5,47.5 + parent: 16527 + - uid: 19604 components: - type: Transform - pos: 23.5,13.5 - parent: 2 - - uid: 4582 + pos: -39.5,46.5 + parent: 16527 + - uid: 19605 components: - type: Transform - pos: 24.5,13.5 - parent: 2 - - uid: 4583 + pos: -39.5,45.5 + parent: 16527 + - uid: 19606 components: - type: Transform - pos: 25.5,13.5 - parent: 2 - - uid: 4584 + pos: -39.5,49.5 + parent: 16527 + - uid: 19607 components: - type: Transform - pos: 26.5,13.5 - parent: 2 - - uid: 4585 + pos: -39.5,50.5 + parent: 16527 + - uid: 19608 components: - type: Transform - pos: 27.5,13.5 - parent: 2 - - uid: 4586 + pos: -39.5,51.5 + parent: 16527 + - uid: 19609 components: - type: Transform - pos: 28.5,13.5 - parent: 2 - - uid: 4587 + pos: -37.5,48.5 + parent: 16527 + - uid: 19610 components: - type: Transform - pos: 28.5,14.5 - parent: 2 - - uid: 4588 + pos: -36.5,48.5 + parent: 16527 + - uid: 19611 components: - type: Transform - pos: 28.5,15.5 - parent: 2 - - uid: 4589 + pos: -35.5,48.5 + parent: 16527 + - uid: 19612 components: - type: Transform - pos: 28.5,16.5 - parent: 2 - - uid: 4590 + pos: -34.5,48.5 + parent: 16527 + - uid: 19613 components: - type: Transform - pos: 28.5,17.5 - parent: 2 - - uid: 4591 + pos: -33.5,48.5 + parent: 16527 + - uid: 19614 components: - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 4592 + pos: -32.5,48.5 + parent: 16527 + - uid: 19615 components: - type: Transform - pos: 30.5,17.5 - parent: 2 - - uid: 4593 + pos: -32.5,49.5 + parent: 16527 + - uid: 19616 components: - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 4594 + pos: -32.5,50.5 + parent: 16527 + - uid: 19617 components: - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 4595 + pos: -32.5,51.5 + parent: 16527 + - uid: 19618 components: - type: Transform - pos: 28.5,26.5 - parent: 2 - - uid: 4596 + pos: -32.5,52.5 + parent: 16527 + - uid: 19619 components: - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 4597 + pos: -32.5,53.5 + parent: 16527 + - uid: 19620 components: - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 4598 + pos: -32.5,54.5 + parent: 16527 + - uid: 19621 components: - type: Transform - pos: 28.5,29.5 - parent: 2 - - uid: 4599 + pos: -31.5,54.5 + parent: 16527 + - uid: 19622 components: - type: Transform - pos: 29.5,29.5 - parent: 2 - - uid: 4600 + pos: -30.5,54.5 + parent: 16527 + - uid: 19623 components: - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 4601 + pos: -29.5,54.5 + parent: 16527 + - uid: 19624 components: - type: Transform - pos: 30.5,28.5 - parent: 2 - - uid: 4602 + pos: -28.5,54.5 + parent: 16527 + - uid: 19625 components: - type: Transform - pos: 28.5,30.5 - parent: 2 - - uid: 4603 + pos: -27.5,54.5 + parent: 16527 + - uid: 19626 components: - type: Transform - pos: 28.5,31.5 - parent: 2 - - uid: 4604 + pos: -26.5,54.5 + parent: 16527 + - uid: 19627 components: - type: Transform - pos: 27.5,31.5 - parent: 2 - - uid: 4605 + pos: -25.5,54.5 + parent: 16527 + - uid: 19628 components: - type: Transform - pos: 26.5,31.5 - parent: 2 - - uid: 4606 + pos: -25.5,53.5 + parent: 16527 + - uid: 19629 components: - type: Transform - pos: 25.5,31.5 - parent: 2 - - uid: 4607 + pos: -25.5,52.5 + parent: 16527 + - uid: 19630 components: - type: Transform - pos: 24.5,31.5 - parent: 2 - - uid: 4608 + pos: -25.5,51.5 + parent: 16527 + - uid: 19631 components: - type: Transform - pos: 23.5,31.5 - parent: 2 - - uid: 4609 + pos: -25.5,50.5 + parent: 16527 + - uid: 19632 components: - type: Transform - pos: 22.5,31.5 - parent: 2 - - uid: 4610 + pos: -25.5,49.5 + parent: 16527 + - uid: 19633 components: - type: Transform - pos: 21.5,31.5 - parent: 2 - - uid: 4611 + pos: -25.5,48.5 + parent: 16527 + - uid: 19634 components: - type: Transform - pos: 20.5,31.5 - parent: 2 - - uid: 4612 + pos: -25.5,47.5 + parent: 16527 + - uid: 19635 components: - type: Transform - pos: 27.5,28.5 - parent: 2 - - uid: 4613 + pos: -25.5,46.5 + parent: 16527 + - uid: 19636 components: - type: Transform - pos: 26.5,28.5 - parent: 2 - - uid: 4614 + pos: -24.5,48.5 + parent: 16527 + - uid: 19637 components: - type: Transform - pos: 25.5,28.5 - parent: 2 - - uid: 4615 + pos: -23.5,48.5 + parent: 16527 + - uid: 19638 components: - type: Transform - pos: 24.5,28.5 - parent: 2 - - uid: 4616 + pos: -26.5,48.5 + parent: 16527 + - uid: 19639 components: - type: Transform - pos: 23.5,28.5 - parent: 2 - - uid: 4617 + pos: -48.5,50.5 + parent: 16527 + - uid: 19640 components: - type: Transform - pos: 22.5,28.5 - parent: 2 - - uid: 4618 + pos: -48.5,49.5 + parent: 16527 + - uid: 19641 components: - type: Transform - pos: 21.5,28.5 - parent: 2 - - uid: 4619 + pos: -48.5,48.5 + parent: 16527 + - uid: 19642 components: - type: Transform - pos: 20.5,28.5 - parent: 2 - - uid: 4620 + pos: -48.5,47.5 + parent: 16527 + - uid: 19643 components: - type: Transform - pos: 19.5,28.5 - parent: 2 - - uid: 4621 + pos: -48.5,46.5 + parent: 16527 + - uid: 19644 components: - type: Transform - pos: 18.5,29.5 - parent: 2 - - uid: 4622 + pos: -47.5,48.5 + parent: 16527 + - uid: 19645 components: - type: Transform - pos: 18.5,28.5 - parent: 2 - - uid: 4623 + pos: -46.5,48.5 + parent: 16527 + - uid: 19646 components: - type: Transform - pos: 19.5,27.5 - parent: 2 - - uid: 4624 + pos: -45.5,48.5 + parent: 16527 + - uid: 19647 components: - type: Transform - pos: 19.5,26.5 - parent: 2 - - uid: 4625 + pos: -44.5,48.5 + parent: 16527 + - uid: 19648 components: - type: Transform - pos: 18.5,26.5 - parent: 2 - - uid: 4626 + pos: -43.5,48.5 + parent: 16527 + - uid: 19649 components: - type: Transform - pos: 20.5,26.5 - parent: 2 - - uid: 4627 + pos: -48.5,45.5 + parent: 16527 + - uid: 19650 components: - type: Transform - pos: 29.5,26.5 - parent: 2 - - uid: 4628 + pos: -48.5,44.5 + parent: 16527 + - uid: 19651 components: - type: Transform - pos: 30.5,26.5 - parent: 2 - - uid: 4629 + pos: -49.5,44.5 + parent: 16527 + - uid: 19652 components: - type: Transform - pos: 29.5,24.5 - parent: 2 - - uid: 4630 + pos: -50.5,44.5 + parent: 16527 + - uid: 19653 components: - type: Transform - pos: 30.5,24.5 - parent: 2 - - uid: 4631 + pos: -51.5,44.5 + parent: 16527 + - uid: 19654 components: - type: Transform - pos: 31.5,26.5 - parent: 2 - - uid: 4632 + pos: -52.5,44.5 + parent: 16527 + - uid: 19655 components: - type: Transform - pos: 32.5,26.5 - parent: 2 - - uid: 4633 + pos: -53.5,44.5 + parent: 16527 + - uid: 19656 components: - type: Transform - pos: 33.5,26.5 - parent: 2 - - uid: 4634 + pos: -54.5,44.5 + parent: 16527 + - uid: 19657 components: - type: Transform - pos: 34.5,26.5 - parent: 2 - - uid: 4635 + pos: -54.5,45.5 + parent: 16527 + - uid: 19658 components: - type: Transform - pos: 34.5,24.5 - parent: 2 - - uid: 4636 + pos: -54.5,46.5 + parent: 16527 + - uid: 19659 components: - type: Transform - pos: 34.5,25.5 - parent: 2 - - uid: 4637 + pos: -54.5,47.5 + parent: 16527 + - uid: 19660 components: - type: Transform - pos: 14.5,25.5 - parent: 2 - - uid: 4638 + pos: -54.5,48.5 + parent: 16527 + - uid: 19661 components: - type: Transform - pos: 14.5,24.5 - parent: 2 - - uid: 4639 + pos: -54.5,49.5 + parent: 16527 + - uid: 19662 components: - type: Transform - pos: 14.5,26.5 - parent: 2 - - uid: 4640 + pos: -54.5,50.5 + parent: 16527 + - uid: 19663 components: - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 4641 + pos: -54.5,51.5 + parent: 16527 + - uid: 19664 components: - type: Transform - pos: 16.5,26.5 - parent: 2 - - uid: 4642 + pos: -54.5,52.5 + parent: 16527 + - uid: 19665 components: - type: Transform - pos: 17.5,26.5 - parent: 2 - - uid: 4643 + pos: -53.5,52.5 + parent: 16527 + - uid: 19666 components: - type: Transform - pos: 21.5,17.5 - parent: 2 - - uid: 4644 + pos: -52.5,52.5 + parent: 16527 + - uid: 19667 components: - type: Transform - pos: 22.5,17.5 - parent: 2 - - uid: 4645 + pos: -51.5,52.5 + parent: 16527 + - uid: 19668 components: - type: Transform - pos: 23.5,17.5 - parent: 2 - - uid: 4646 + pos: -50.5,52.5 + parent: 16527 + - uid: 19670 components: - type: Transform - pos: 23.5,16.5 - parent: 2 - - uid: 4647 + pos: -49.5,52.5 + parent: 16527 + - uid: 19671 components: - type: Transform - pos: 21.5,20.5 - parent: 2 - - uid: 4648 + pos: -48.5,52.5 + parent: 16527 + - uid: 19672 components: - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 4649 + pos: -48.5,51.5 + parent: 16527 + - uid: 19673 components: - type: Transform - pos: 20.5,21.5 - parent: 2 - - uid: 4650 + pos: -44.5,49.5 + parent: 16527 + - uid: 19674 components: - type: Transform - pos: 20.5,22.5 - parent: 2 - - uid: 4651 + pos: -44.5,50.5 + parent: 16527 + - uid: 19675 components: - type: Transform - pos: 20.5,23.5 - parent: 2 - - uid: 4652 + pos: -44.5,51.5 + parent: 16527 + - uid: 19676 components: - type: Transform - pos: 20.5,24.5 - parent: 2 - - uid: 4653 + pos: -44.5,47.5 + parent: 16527 + - uid: 19677 components: - type: Transform - pos: 20.5,25.5 - parent: 2 - - uid: 4654 + pos: -44.5,46.5 + parent: 16527 + - uid: 19678 components: - type: Transform - pos: 19.5,20.5 - parent: 2 - - uid: 4655 + pos: -44.5,45.5 + parent: 16527 + - uid: 19679 components: - type: Transform - pos: 18.5,20.5 - parent: 2 - - uid: 4656 + pos: -23.5,49.5 + parent: 16527 + - uid: 19680 components: - type: Transform - pos: 17.5,20.5 - parent: 2 - - uid: 4657 + pos: -22.5,49.5 + parent: 16527 + - uid: 19681 components: - type: Transform - pos: 16.5,20.5 - parent: 2 - - uid: 4658 + pos: -21.5,49.5 + parent: 16527 + - uid: 19682 components: - type: Transform - pos: 54.5,47.5 - parent: 2 - - uid: 4659 + pos: -20.5,49.5 + parent: 16527 + - uid: 19683 components: - type: Transform - pos: 19.5,9.5 - parent: 2 - - uid: 4660 + pos: -19.5,49.5 + parent: 16527 + - uid: 19684 components: - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 4661 + pos: -19.5,50.5 + parent: 16527 + - uid: 19685 components: - type: Transform - pos: 21.5,9.5 - parent: 2 - - uid: 4662 + pos: -19.5,51.5 + parent: 16527 + - uid: 19686 components: - type: Transform - pos: 22.5,9.5 - parent: 2 - - uid: 4663 + pos: -19.5,52.5 + parent: 16527 + - uid: 19687 components: - type: Transform - pos: 22.5,11.5 - parent: 2 - - uid: 4664 + pos: -19.5,53.5 + parent: 16527 + - uid: 19688 components: - type: Transform - pos: 20.5,8.5 - parent: 2 - - uid: 4665 + pos: -19.5,54.5 + parent: 16527 + - uid: 19689 components: - type: Transform - pos: 20.5,7.5 - parent: 2 - - uid: 4666 + pos: -18.5,54.5 + parent: 16527 + - uid: 19690 components: - type: Transform - pos: 20.5,6.5 - parent: 2 - - uid: 4667 + pos: -17.5,54.5 + parent: 16527 + - uid: 19691 components: - type: Transform - pos: 20.5,5.5 - parent: 2 - - uid: 4668 + pos: -16.5,54.5 + parent: 16527 + - uid: 19692 components: - type: Transform - pos: 20.5,4.5 - parent: 2 - - uid: 4669 + pos: -16.5,55.5 + parent: 16527 + - uid: 19693 components: - type: Transform - pos: 20.5,3.5 - parent: 2 - - uid: 4670 + pos: -23.5,47.5 + parent: 16527 + - uid: 19694 components: - type: Transform - pos: 20.5,2.5 - parent: 2 - - uid: 4671 + pos: -22.5,47.5 + parent: 16527 + - uid: 19695 components: - type: Transform - pos: 20.5,1.5 - parent: 2 - - uid: 4672 + pos: -21.5,47.5 + parent: 16527 + - uid: 19696 components: - type: Transform - pos: 20.5,0.5 - parent: 2 - - uid: 4673 + pos: -20.5,47.5 + parent: 16527 + - uid: 19697 components: - type: Transform - pos: 20.5,-0.5 - parent: 2 - - uid: 4674 + pos: -19.5,47.5 + parent: 16527 + - uid: 19698 components: - type: Transform - pos: 20.5,-1.5 - parent: 2 - - uid: 4675 + pos: -10.5,31.5 + parent: 16527 + - uid: 19699 components: - type: Transform - pos: 20.5,-2.5 - parent: 2 - - uid: 4676 + pos: -10.5,32.5 + parent: 16527 + - uid: 19700 components: - type: Transform - pos: 20.5,-3.5 - parent: 2 - - uid: 4677 + pos: -10.5,33.5 + parent: 16527 + - uid: 19701 components: - type: Transform - pos: 20.5,-4.5 - parent: 2 - - uid: 4678 + pos: -10.5,34.5 + parent: 16527 + - uid: 19702 components: - type: Transform - pos: 21.5,-4.5 - parent: 2 - - uid: 4679 + pos: -9.5,34.5 + parent: 16527 + - uid: 19703 components: - type: Transform - pos: 22.5,-4.5 - parent: 2 - - uid: 4680 + pos: -8.5,34.5 + parent: 16527 + - uid: 19704 components: - type: Transform - pos: 22.5,-5.5 - parent: 2 - - uid: 4681 + pos: -7.5,34.5 + parent: 16527 + - uid: 19705 components: - type: Transform - pos: 22.5,-6.5 - parent: 2 - - uid: 4682 + pos: -6.5,34.5 + parent: 16527 + - uid: 19706 components: - type: Transform - pos: 22.5,-7.5 - parent: 2 - - uid: 4683 + pos: -10.5,35.5 + parent: 16527 + - uid: 19707 components: - type: Transform - pos: 22.5,-8.5 - parent: 2 - - uid: 4684 + pos: -10.5,36.5 + parent: 16527 + - uid: 19708 components: - type: Transform - pos: 22.5,-9.5 - parent: 2 - - uid: 4685 + pos: -10.5,37.5 + parent: 16527 + - uid: 19712 components: - type: Transform - pos: 22.5,-10.5 - parent: 2 - - uid: 4686 + pos: -10.5,38.5 + parent: 16527 + - uid: 19713 components: - type: Transform - pos: 22.5,-11.5 - parent: 2 - - uid: 4687 + pos: -11.5,34.5 + parent: 16527 + - uid: 19714 components: - type: Transform - pos: 22.5,-12.5 - parent: 2 - - uid: 4688 + pos: -12.5,34.5 + parent: 16527 + - uid: 19715 components: - type: Transform - pos: 22.5,-13.5 - parent: 2 - - uid: 4689 + pos: -13.5,34.5 + parent: 16527 + - uid: 19716 components: - type: Transform - pos: 22.5,-14.5 - parent: 2 - - uid: 4690 + pos: -14.5,34.5 + parent: 16527 + - uid: 19717 components: - type: Transform - pos: 22.5,-15.5 - parent: 2 - - uid: 4691 + pos: -15.5,34.5 + parent: 16527 + - uid: 19718 components: - type: Transform - pos: 23.5,-15.5 - parent: 2 - - uid: 4692 + pos: -16.5,34.5 + parent: 16527 + - uid: 19719 components: - type: Transform - pos: 24.5,-15.5 - parent: 2 - - uid: 4693 + pos: -17.5,34.5 + parent: 16527 + - uid: 19720 components: - type: Transform - pos: 25.5,-15.5 - parent: 2 - - uid: 4694 + pos: -13.5,35.5 + parent: 16527 + - uid: 19721 components: - type: Transform - pos: 26.5,-15.5 - parent: 2 - - uid: 4695 + pos: -13.5,36.5 + parent: 16527 + - uid: 19725 components: - type: Transform - pos: 26.5,-16.5 - parent: 2 - - uid: 4696 + pos: -12.5,33.5 + parent: 16527 + - uid: 19726 components: - type: Transform - pos: 26.5,-17.5 - parent: 2 - - uid: 4697 + pos: -12.5,32.5 + parent: 16527 + - uid: 19727 components: - type: Transform - pos: 25.5,-10.5 - parent: 2 - - uid: 4698 + pos: -12.5,31.5 + parent: 16527 + - uid: 19728 components: - type: Transform - pos: 24.5,-10.5 - parent: 2 - - uid: 4699 + pos: -12.5,30.5 + parent: 16527 + - uid: 19729 components: - type: Transform - pos: 23.5,-10.5 - parent: 2 - - uid: 4700 + pos: -12.5,29.5 + parent: 16527 + - uid: 19730 components: - type: Transform - pos: 25.5,-2.5 - parent: 2 - - uid: 4701 + pos: -12.5,28.5 + parent: 16527 + - uid: 19731 components: - type: Transform - pos: 24.5,-2.5 - parent: 2 - - uid: 4702 + pos: -12.5,27.5 + parent: 16527 + - uid: 19732 components: - type: Transform - pos: 23.5,-2.5 - parent: 2 - - uid: 4703 + pos: -13.5,27.5 + parent: 16527 + - uid: 19733 components: - type: Transform - pos: 22.5,-2.5 - parent: 2 - - uid: 4704 + pos: -14.5,27.5 + parent: 16527 + - uid: 19734 components: - type: Transform - pos: 21.5,-2.5 - parent: 2 - - uid: 4705 + pos: -15.5,27.5 + parent: 16527 + - uid: 19735 components: - type: Transform - pos: 18.5,3.5 - parent: 2 - - uid: 4706 + pos: -16.5,27.5 + parent: 16527 + - uid: 19736 components: - type: Transform - pos: 18.5,4.5 - parent: 2 - - uid: 4707 + pos: -17.5,27.5 + parent: 16527 + - uid: 19737 components: - type: Transform - pos: 19.5,4.5 - parent: 2 - - uid: 4708 + pos: -18.5,27.5 + parent: 16527 + - uid: 19738 components: - type: Transform - pos: 21.5,-0.5 - parent: 2 - - uid: 4709 + pos: -18.5,28.5 + parent: 16527 + - uid: 19739 components: - type: Transform - pos: 22.5,-0.5 - parent: 2 - - uid: 4710 + pos: -18.5,29.5 + parent: 16527 + - uid: 19740 components: - type: Transform - pos: 23.5,-0.5 - parent: 2 - - uid: 4711 + pos: -18.5,30.5 + parent: 16527 + - uid: 19741 components: - type: Transform - pos: 24.5,-0.5 - parent: 2 - - uid: 4712 + pos: -18.5,31.5 + parent: 16527 + - uid: 19742 components: - type: Transform - pos: 25.5,-0.5 - parent: 2 - - uid: 4713 + pos: -18.5,32.5 + parent: 16527 + - uid: 19743 components: - type: Transform - pos: 26.5,-0.5 - parent: 2 - - uid: 4714 + pos: -18.5,33.5 + parent: 16527 + - uid: 19744 components: - type: Transform - pos: 27.5,-0.5 - parent: 2 - - uid: 4715 + pos: -18.5,34.5 + parent: 16527 + - uid: 19745 components: - type: Transform - pos: 28.5,-0.5 - parent: 2 - - uid: 4716 + pos: -16.5,35.5 + parent: 16527 + - uid: 19746 components: - type: Transform - pos: 29.5,-0.5 - parent: 2 - - uid: 4717 + pos: 0.5,36.5 + parent: 16527 + - uid: 19747 components: - type: Transform - pos: 30.5,-0.5 - parent: 2 - - uid: 4718 + pos: 0.5,35.5 + parent: 16527 + - uid: 19748 components: - type: Transform - pos: 30.5,-1.5 - parent: 2 - - uid: 4719 + pos: 0.5,34.5 + parent: 16527 + - uid: 19749 components: - type: Transform - pos: 31.5,-1.5 - parent: 2 - - uid: 4720 + pos: 0.5,33.5 + parent: 16527 + - uid: 19750 components: - type: Transform - pos: 53.5,47.5 - parent: 2 - - uid: 4721 + pos: 0.5,32.5 + parent: 16527 + - uid: 19751 components: - type: Transform - pos: 45.5,41.5 - parent: 2 - - uid: 4722 + pos: -0.5,34.5 + parent: 16527 + - uid: 19752 components: - type: Transform - pos: 45.5,40.5 - parent: 2 - - uid: 4723 + pos: -1.5,34.5 + parent: 16527 + - uid: 19753 components: - type: Transform - pos: 45.5,39.5 - parent: 2 - - uid: 4724 + pos: -2.5,34.5 + parent: 16527 + - uid: 19754 components: - type: Transform - pos: 45.5,38.5 - parent: 2 - - uid: 4725 + pos: -3.5,34.5 + parent: 16527 + - uid: 19755 components: - type: Transform - pos: 46.5,38.5 - parent: 2 - - uid: 4726 + pos: 1.5,34.5 + parent: 16527 + - uid: 19756 components: - type: Transform - pos: 46.5,37.5 - parent: 2 - - uid: 4727 + pos: 2.5,34.5 + parent: 16527 + - uid: 19757 components: - type: Transform - pos: 46.5,36.5 - parent: 2 - - uid: 4728 + pos: 3.5,34.5 + parent: 16527 + - uid: 19758 components: - type: Transform - pos: 46.5,35.5 - parent: 2 - - uid: 4729 + pos: 4.5,34.5 + parent: 16527 + - uid: 19759 components: - type: Transform - pos: 46.5,34.5 - parent: 2 - - uid: 4730 + pos: 5.5,34.5 + parent: 16527 + - uid: 19760 components: - type: Transform - pos: 46.5,32.5 - parent: 2 - - uid: 4731 + pos: 6.5,34.5 + parent: 16527 + - uid: 19761 components: - type: Transform - pos: 46.5,31.5 - parent: 2 - - uid: 4732 + pos: 4.5,33.5 + parent: 16527 + - uid: 19762 components: - type: Transform - pos: 46.5,30.5 - parent: 2 - - uid: 4733 + pos: -3.5,33.5 + parent: 16527 + - uid: 19763 components: - type: Transform - pos: 48.5,31.5 - parent: 2 - - uid: 4734 + pos: 0.5,37.5 + parent: 16527 + - uid: 19764 components: - type: Transform - pos: 48.5,32.5 - parent: 2 - - uid: 4735 + pos: -0.5,37.5 + parent: 16527 + - uid: 19765 components: - type: Transform - pos: 48.5,33.5 - parent: 2 - - uid: 4736 + pos: -1.5,37.5 + parent: 16527 + - uid: 19766 components: - type: Transform - pos: 50.5,35.5 - parent: 2 - - uid: 4737 + pos: -2.5,37.5 + parent: 16527 + - uid: 19767 components: - type: Transform - pos: 51.5,35.5 - parent: 2 - - uid: 4738 + pos: -3.5,37.5 + parent: 16527 + - uid: 19768 components: - type: Transform - pos: 52.5,35.5 - parent: 2 - - uid: 4739 + pos: 0.5,38.5 + parent: 16527 + - uid: 19769 components: - type: Transform - pos: 56.5,18.5 - parent: 2 - - uid: 4740 + pos: 1.5,37.5 + parent: 16527 + - uid: 19770 components: - type: Transform - pos: 51.5,37.5 - parent: 2 - - uid: 4741 + pos: 2.5,37.5 + parent: 16527 + - uid: 19771 components: - type: Transform - pos: 58.5,17.5 - parent: 2 - - uid: 4742 + pos: 3.5,37.5 + parent: 16527 + - uid: 19772 components: - type: Transform - pos: 58.5,18.5 - parent: 2 - - uid: 4743 + pos: 4.5,37.5 + parent: 16527 + - uid: 19773 components: - type: Transform - pos: 44.5,31.5 - parent: 2 - - uid: 4744 + pos: 16.5,19.5 + parent: 16527 + - uid: 19774 components: - type: Transform - pos: 43.5,31.5 - parent: 2 - - uid: 4745 + pos: 16.5,18.5 + parent: 16527 + - uid: 19775 components: - type: Transform - pos: 42.5,31.5 - parent: 2 - - uid: 4746 + pos: 16.5,17.5 + parent: 16527 + - uid: 19776 components: - type: Transform - pos: 41.5,31.5 - parent: 2 - - uid: 4747 + pos: 16.5,16.5 + parent: 16527 + - uid: 19777 components: - type: Transform - pos: 40.5,31.5 - parent: 2 - - uid: 4748 + pos: 17.5,16.5 + parent: 16527 + - uid: 19778 components: - type: Transform - pos: 39.5,31.5 - parent: 2 - - uid: 4749 + pos: 15.5,16.5 + parent: 16527 + - uid: 19779 components: - type: Transform - pos: 38.5,31.5 - parent: 2 - - uid: 4750 + pos: 14.5,16.5 + parent: 16527 + - uid: 19780 components: - type: Transform - pos: 38.5,30.5 - parent: 2 - - uid: 4751 + pos: 13.5,16.5 + parent: 16527 + - uid: 19781 components: - type: Transform - pos: 46.5,29.5 - parent: 2 - - uid: 4752 + pos: 12.5,16.5 + parent: 16527 + - uid: 19782 components: - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 4753 + pos: 11.5,16.5 + parent: 16527 + - uid: 19783 components: - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 4754 + pos: 14.5,15.5 + parent: 16527 + - uid: 19784 components: - type: Transform - pos: 45.5,27.5 - parent: 2 - - uid: 4755 + pos: 14.5,14.5 + parent: 16527 + - uid: 19785 components: - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 4756 + pos: 14.5,13.5 + parent: 16527 + - uid: 19786 components: - type: Transform - pos: 45.5,25.5 - parent: 2 - - uid: 4757 + pos: 14.5,17.5 + parent: 16527 + - uid: 19787 components: - type: Transform - pos: 46.5,25.5 - parent: 2 - - uid: 4758 + pos: 14.5,18.5 + parent: 16527 + - uid: 19788 components: - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 4759 + pos: 14.5,19.5 + parent: 16527 + - uid: 19789 components: - type: Transform - pos: 45.5,23.5 - parent: 2 - - uid: 4760 + pos: 14.5,20.5 + parent: 16527 + - uid: 19790 components: - type: Transform - pos: 46.5,23.5 - parent: 2 - - uid: 4761 + pos: 14.5,21.5 + parent: 16527 + - uid: 19791 components: - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 4762 + pos: 14.5,22.5 + parent: 16527 + - uid: 19792 components: - type: Transform - pos: 48.5,23.5 - parent: 2 - - uid: 4763 + pos: 14.5,23.5 + parent: 16527 + - uid: 19793 components: - type: Transform - pos: 49.5,23.5 - parent: 2 - - uid: 4764 + pos: 14.5,24.5 + parent: 16527 + - uid: 19794 components: - type: Transform - pos: 50.5,23.5 - parent: 2 - - uid: 4765 + pos: 14.5,25.5 + parent: 16527 + - uid: 19795 components: - type: Transform - pos: 51.5,23.5 - parent: 2 - - uid: 4766 + pos: 14.5,26.5 + parent: 16527 + - uid: 19796 components: - type: Transform - pos: 52.5,23.5 - parent: 2 - - uid: 4767 + pos: 14.5,27.5 + parent: 16527 + - uid: 19797 components: - type: Transform - pos: 53.5,23.5 - parent: 2 - - uid: 4768 + pos: 14.5,28.5 + parent: 16527 + - uid: 19798 components: - type: Transform - pos: 54.5,23.5 - parent: 2 - - uid: 4769 + pos: 18.5,34.5 + parent: 16527 + - uid: 19799 components: - type: Transform - pos: 54.5,22.5 - parent: 2 - - uid: 4770 + pos: 17.5,34.5 + parent: 16527 + - uid: 19800 components: - type: Transform - pos: 54.5,21.5 - parent: 2 - - uid: 4771 + pos: 16.5,34.5 + parent: 16527 + - uid: 19801 components: - type: Transform - pos: 54.5,19.5 - parent: 2 - - uid: 4772 + pos: 15.5,34.5 + parent: 16527 + - uid: 19802 components: - type: Transform - pos: 55.5,19.5 - parent: 2 - - uid: 4773 + pos: 14.5,34.5 + parent: 16527 + - uid: 19803 components: - type: Transform - pos: 55.5,21.5 - parent: 2 - - uid: 4774 + pos: 14.5,35.5 + parent: 16527 + - uid: 19804 components: - type: Transform - pos: 56.5,21.5 - parent: 2 - - uid: 4775 + pos: 14.5,36.5 + parent: 16527 + - uid: 19805 components: - type: Transform - pos: 57.5,21.5 - parent: 2 - - uid: 4776 + pos: 14.5,37.5 + parent: 16527 + - uid: 19806 components: - type: Transform - pos: 58.5,21.5 - parent: 2 - - uid: 4777 + pos: 14.5,38.5 + parent: 16527 + - uid: 19807 components: - type: Transform - pos: 57.5,19.5 - parent: 2 - - uid: 4778 + pos: 13.5,38.5 + parent: 16527 + - uid: 19808 components: - type: Transform - pos: 58.5,19.5 - parent: 2 - - uid: 4779 + pos: 12.5,38.5 + parent: 16527 + - uid: 19809 components: - type: Transform - pos: 51.5,22.5 - parent: 2 - - uid: 4780 + pos: 11.5,38.5 + parent: 16527 + - uid: 19810 components: - type: Transform - pos: 51.5,21.5 - parent: 2 - - uid: 4781 + pos: 10.5,38.5 + parent: 16527 + - uid: 19811 components: - type: Transform - pos: 44.5,23.5 - parent: 2 - - uid: 4782 + pos: 10.5,37.5 + parent: 16527 + - uid: 19812 components: - type: Transform - pos: 44.5,22.5 - parent: 2 - - uid: 4783 + pos: 10.5,36.5 + parent: 16527 + - uid: 19813 components: - type: Transform - pos: 44.5,21.5 - parent: 2 - - uid: 4784 + pos: 10.5,35.5 + parent: 16527 + - uid: 19814 components: - type: Transform - pos: 44.5,20.5 - parent: 2 - - uid: 4785 + pos: 13.5,28.5 + parent: 16527 + - uid: 19815 components: - type: Transform - pos: 44.5,19.5 - parent: 2 - - uid: 4786 + pos: 16.5,37.5 + parent: 16527 + - uid: 19816 components: - type: Transform - pos: 44.5,18.5 - parent: 2 - - uid: 4787 + pos: 13.5,31.5 + parent: 16527 + - uid: 19817 components: - type: Transform - pos: 44.5,17.5 - parent: 2 - - uid: 4788 + pos: 12.5,31.5 + parent: 16527 + - uid: 19818 components: - type: Transform - pos: 44.5,16.5 - parent: 2 - - uid: 4789 + pos: 15.5,32.5 + parent: 16527 + - uid: 19819 components: - type: Transform - pos: 43.5,19.5 - parent: 2 - - uid: 4790 + pos: 16.5,32.5 + parent: 16527 + - uid: 19820 components: - type: Transform - pos: 42.5,19.5 - parent: 2 - - uid: 4791 + pos: 15.5,36.5 + parent: 16527 + - uid: 19821 components: - type: Transform - pos: 41.5,19.5 - parent: 2 - - uid: 4792 + pos: 16.5,36.5 + parent: 16527 + - uid: 19822 components: - type: Transform - pos: 40.5,19.5 - parent: 2 - - uid: 4793 + pos: 12.5,28.5 + parent: 16527 + - uid: 19823 components: - type: Transform - pos: 39.5,19.5 - parent: 2 - - uid: 4794 + pos: 11.5,28.5 + parent: 16527 + - uid: 19824 components: - type: Transform - pos: 38.5,19.5 - parent: 2 - - uid: 4795 + pos: 11.5,27.5 + parent: 16527 + - uid: 19825 components: - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 4796 + pos: 15.5,28.5 + parent: 16527 + - uid: 19826 components: - type: Transform - pos: 41.5,20.5 - parent: 2 - - uid: 4797 + pos: 16.5,28.5 + parent: 16527 + - uid: 19827 components: - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 4798 + pos: 17.5,28.5 + parent: 16527 + - uid: 19828 components: - type: Transform - pos: 41.5,16.5 - parent: 2 - - uid: 4799 + pos: 17.5,27.5 + parent: 16527 + - uid: 19829 components: - type: Transform - pos: 40.5,16.5 - parent: 2 - - uid: 4800 + pos: 13.5,24.5 + parent: 16527 + - uid: 19830 components: - type: Transform - pos: 39.5,16.5 - parent: 2 - - uid: 4801 + pos: 12.5,24.5 + parent: 16527 + - uid: 19831 components: - type: Transform - pos: 38.5,16.5 - parent: 2 - - uid: 4802 + pos: 11.5,24.5 + parent: 16527 + - uid: 19832 components: - type: Transform - pos: 38.5,17.5 - parent: 2 - - uid: 4803 + pos: 11.5,23.5 + parent: 16527 + - uid: 19833 components: - type: Transform - pos: 42.5,16.5 - parent: 2 - - uid: 4804 + pos: 15.5,24.5 + parent: 16527 + - uid: 19834 components: - type: Transform - pos: 43.5,16.5 - parent: 2 - - uid: 4805 + pos: 16.5,24.5 + parent: 16527 + - uid: 19835 components: - type: Transform - pos: 56.5,36.5 - parent: 2 - - uid: 4806 + pos: 17.5,24.5 + parent: 16527 + - uid: 19836 components: - type: Transform - pos: 59.5,18.5 - parent: 2 - - uid: 4807 + pos: 17.5,23.5 + parent: 16527 + - uid: 19837 components: - type: Transform - pos: 56.5,20.5 - parent: 2 - - uid: 4808 + pos: 13.5,20.5 + parent: 16527 + - uid: 19838 components: - type: Transform - pos: 56.5,19.5 - parent: 2 - - uid: 4809 + pos: 12.5,20.5 + parent: 16527 + - uid: 19839 components: - type: Transform - pos: 57.5,17.5 - parent: 2 - - uid: 4810 + pos: 15.5,20.5 + parent: 16527 + - uid: 19840 components: - type: Transform - pos: 49.5,25.5 - parent: 2 - - uid: 4811 + pos: 16.5,20.5 + parent: 16527 + - uid: 19841 components: - type: Transform - pos: 49.5,24.5 - parent: 2 - - uid: 4812 + pos: 6.5,33.5 + parent: 16527 + - uid: 19842 components: - type: Transform - pos: 44.5,32.5 - parent: 2 - - uid: 4813 + pos: 7.5,33.5 + parent: 16527 + - uid: 19843 components: - type: Transform - pos: 45.5,32.5 - parent: 2 - - uid: 4814 + pos: 8.5,33.5 + parent: 16527 + - uid: 19844 components: - type: Transform - pos: 48.5,30.5 - parent: 2 - - uid: 4815 + pos: 8.5,32.5 + parent: 16527 + - uid: 19847 components: - type: Transform - pos: 47.5,30.5 - parent: 2 - - uid: 4816 + pos: 8.5,31.5 + parent: 16527 + - uid: 19848 components: - type: Transform - pos: 52.5,34.5 - parent: 2 - - uid: 4817 + pos: 8.5,30.5 + parent: 16527 + - uid: 19849 components: - type: Transform - pos: 52.5,35.5 - parent: 2 - - uid: 4818 + pos: 8.5,29.5 + parent: 16527 + - uid: 19850 components: - type: Transform - pos: 71.5,39.5 - parent: 2 - - uid: 4819 + pos: 8.5,28.5 + parent: 16527 + - uid: 19851 components: - type: Transform - pos: 78.5,14.5 - parent: 2 - - uid: 4820 + pos: 8.5,27.5 + parent: 16527 + - uid: 19852 components: - type: Transform - pos: 78.5,15.5 - parent: 2 - - uid: 4821 + pos: 8.5,26.5 + parent: 16527 + - uid: 19853 components: - type: Transform - pos: 78.5,16.5 - parent: 2 - - uid: 4822 + pos: 8.5,25.5 + parent: 16527 + - uid: 19857 components: - type: Transform - pos: 78.5,17.5 - parent: 2 - - uid: 4823 + pos: 8.5,24.5 + parent: 16527 + - uid: 19858 components: - type: Transform - pos: 77.5,17.5 - parent: 2 - - uid: 4824 + pos: 8.5,23.5 + parent: 16527 + - uid: 19859 components: - type: Transform - pos: 76.5,17.5 - parent: 2 - - uid: 4825 + pos: 8.5,22.5 + parent: 16527 + - uid: 19860 components: - type: Transform - pos: 75.5,17.5 - parent: 2 - - uid: 4826 + pos: 8.5,21.5 + parent: 16527 + - uid: 19861 components: - type: Transform - pos: 75.5,18.5 - parent: 2 - - uid: 4827 + pos: 8.5,20.5 + parent: 16527 + - uid: 19862 components: - type: Transform - pos: 75.5,19.5 - parent: 2 - - uid: 4828 + pos: 20.5,37.5 + parent: 16527 + - uid: 19863 components: - type: Transform - pos: 46.5,5.5 - parent: 2 - - uid: 4829 + pos: 20.5,36.5 + parent: 16527 + - uid: 19864 components: - type: Transform - pos: 47.5,5.5 - parent: 2 - - uid: 4830 + pos: 20.5,35.5 + parent: 16527 + - uid: 19865 components: - type: Transform - pos: 48.5,5.5 - parent: 2 - - uid: 4831 + pos: 20.5,34.5 + parent: 16527 + - uid: 19866 components: - type: Transform - pos: 48.5,6.5 - parent: 2 - - uid: 4832 + pos: 20.5,33.5 + parent: 16527 + - uid: 19867 components: - type: Transform - pos: 48.5,7.5 - parent: 2 - - uid: 4833 + pos: 20.5,32.5 + parent: 16527 + - uid: 19868 components: - type: Transform - pos: 49.5,7.5 - parent: 2 - - uid: 4834 + pos: 20.5,31.5 + parent: 16527 + - uid: 19869 components: - type: Transform - pos: 55.5,5.5 - parent: 2 - - uid: 4835 + pos: 20.5,30.5 + parent: 16527 + - uid: 19870 components: - type: Transform - pos: 55.5,4.5 - parent: 2 - - uid: 4836 + pos: 20.5,29.5 + parent: 16527 + - uid: 19871 components: - type: Transform - pos: 55.5,3.5 - parent: 2 - - uid: 4837 + pos: 20.5,28.5 + parent: 16527 + - uid: 19872 components: - type: Transform - pos: 54.5,3.5 - parent: 2 - - uid: 4838 + pos: 20.5,27.5 + parent: 16527 + - uid: 19873 components: - type: Transform - pos: 53.5,3.5 - parent: 2 - - uid: 4839 + pos: 20.5,26.5 + parent: 16527 + - uid: 19874 components: - type: Transform - pos: 52.5,3.5 - parent: 2 - - uid: 4840 + pos: 20.5,25.5 + parent: 16527 + - uid: 19875 components: - type: Transform - pos: 51.5,3.5 - parent: 2 - - uid: 4841 + pos: 20.5,24.5 + parent: 16527 + - uid: 19876 components: - type: Transform - pos: 50.5,3.5 - parent: 2 - - uid: 4842 + pos: 20.5,23.5 + parent: 16527 + - uid: 19877 components: - type: Transform - pos: 47.5,4.5 - parent: 2 - - uid: 4843 + pos: 20.5,22.5 + parent: 16527 + - uid: 19878 components: - type: Transform - pos: 53.5,2.5 - parent: 2 - - uid: 4844 + pos: 20.5,21.5 + parent: 16527 + - uid: 19879 components: - type: Transform - pos: 53.5,1.5 - parent: 2 - - uid: 4845 + pos: 20.5,20.5 + parent: 16527 + - uid: 19880 components: - type: Transform - pos: 53.5,0.5 - parent: 2 - - uid: 4846 + pos: 20.5,19.5 + parent: 16527 + - uid: 19881 components: - type: Transform - pos: 54.5,0.5 - parent: 2 - - uid: 4847 + pos: 21.5,34.5 + parent: 16527 + - uid: 19882 components: - type: Transform - pos: 27.5,17.5 - parent: 2 - - uid: 4848 + pos: 30.5,22.5 + parent: 16527 + - uid: 19883 components: - type: Transform - pos: 45.5,-6.5 - parent: 2 - - uid: 4849 + pos: 30.5,23.5 + parent: 16527 + - uid: 19884 components: - type: Transform - pos: 45.5,-7.5 - parent: 2 - - uid: 4850 + pos: 29.5,23.5 + parent: 16527 + - uid: 19885 components: - type: Transform - pos: 45.5,-8.5 - parent: 2 - - uid: 4851 + pos: 28.5,23.5 + parent: 16527 + - uid: 19886 components: - type: Transform - pos: 45.5,-9.5 - parent: 2 - - uid: 4852 + pos: 27.5,23.5 + parent: 16527 + - uid: 19887 components: - type: Transform - pos: 45.5,-10.5 - parent: 2 - - uid: 4853 + pos: 26.5,23.5 + parent: 16527 + - uid: 19888 components: - type: Transform - pos: 46.5,-11.5 - parent: 2 - - uid: 4854 + pos: 25.5,23.5 + parent: 16527 + - uid: 19889 components: - type: Transform - pos: 40.5,9.5 - parent: 2 - - uid: 4855 + pos: 24.5,23.5 + parent: 16527 + - uid: 19890 components: - type: Transform - pos: 40.5,8.5 - parent: 2 - - uid: 4856 + pos: 24.5,24.5 + parent: 16527 + - uid: 19891 components: - type: Transform - pos: 40.5,7.5 - parent: 2 - - uid: 4857 + pos: 24.5,25.5 + parent: 16527 + - uid: 19892 components: - type: Transform - pos: 40.5,6.5 - parent: 2 - - uid: 4858 + pos: 24.5,26.5 + parent: 16527 + - uid: 19893 components: - type: Transform - pos: 40.5,5.5 - parent: 2 - - uid: 4859 + pos: 24.5,27.5 + parent: 16527 + - uid: 19894 components: - type: Transform - pos: 42.5,10.5 - parent: 2 - - uid: 4860 + pos: 24.5,28.5 + parent: 16527 + - uid: 19895 components: - type: Transform - pos: 42.5,9.5 - parent: 2 - - uid: 4861 + pos: 24.5,29.5 + parent: 16527 + - uid: 19896 components: - type: Transform - pos: 41.5,9.5 - parent: 2 - - uid: 4862 + pos: 24.5,30.5 + parent: 16527 + - uid: 19897 components: - type: Transform - pos: 45.5,-11.5 - parent: 2 - - uid: 4863 + pos: 24.5,31.5 + parent: 16527 + - uid: 19898 components: - type: Transform - pos: 45.5,-12.5 - parent: 2 - - uid: 4864 + pos: 24.5,32.5 + parent: 16527 + - uid: 19899 components: - type: Transform - pos: 45.5,-13.5 - parent: 2 - - uid: 4867 + pos: 24.5,33.5 + parent: 16527 + - uid: 19900 components: - type: Transform - pos: 45.5,-15.5 - parent: 2 - - uid: 4868 + pos: 31.5,23.5 + parent: 16527 + - uid: 19901 components: - type: Transform - pos: 46.5,-15.5 - parent: 2 - - uid: 4869 + pos: 32.5,23.5 + parent: 16527 + - uid: 19902 components: - type: Transform - pos: 46.5,-16.5 - parent: 2 - - uid: 4873 + pos: 33.5,23.5 + parent: 16527 + - uid: 19903 components: - type: Transform - pos: 52.5,-13.5 - parent: 2 - - uid: 4874 + pos: 34.5,23.5 + parent: 16527 + - uid: 19904 components: - type: Transform - pos: 52.5,-12.5 - parent: 2 - - uid: 4875 + pos: 35.5,23.5 + parent: 16527 + - uid: 19905 components: - type: Transform - pos: 52.5,-11.5 - parent: 2 - - uid: 4876 + pos: 36.5,23.5 + parent: 16527 + - uid: 19906 components: - type: Transform - pos: 52.5,-10.5 - parent: 2 - - uid: 4877 + pos: 36.5,24.5 + parent: 16527 + - uid: 19907 components: - type: Transform - pos: 52.5,-9.5 - parent: 2 - - uid: 4878 + pos: 36.5,25.5 + parent: 16527 + - uid: 19908 components: - type: Transform - pos: 52.5,-8.5 - parent: 2 - - uid: 4879 + pos: 36.5,26.5 + parent: 16527 + - uid: 19909 components: - type: Transform - pos: 52.5,-7.5 - parent: 2 - - uid: 4880 + pos: 36.5,27.5 + parent: 16527 + - uid: 19910 components: - type: Transform - pos: 53.5,-7.5 - parent: 2 - - uid: 4881 + pos: 36.5,28.5 + parent: 16527 + - uid: 19911 components: - type: Transform - pos: 54.5,-7.5 - parent: 2 - - uid: 4882 + pos: 36.5,29.5 + parent: 16527 + - uid: 19912 components: - type: Transform - pos: 55.5,-7.5 - parent: 2 - - uid: 4883 + pos: 36.5,30.5 + parent: 16527 + - uid: 19913 components: - type: Transform - pos: 56.5,-7.5 - parent: 2 - - uid: 4884 + pos: 36.5,31.5 + parent: 16527 + - uid: 19914 components: - type: Transform - pos: 57.5,-7.5 - parent: 2 - - uid: 4885 + pos: 36.5,32.5 + parent: 16527 + - uid: 19915 components: - type: Transform - pos: 58.5,-7.5 - parent: 2 - - uid: 4886 + pos: 36.5,33.5 + parent: 16527 + - uid: 19916 components: - type: Transform - pos: 59.5,-7.5 - parent: 2 - - uid: 4887 + pos: 36.5,34.5 + parent: 16527 + - uid: 19917 components: - type: Transform - pos: 59.5,-6.5 - parent: 2 - - uid: 4888 + pos: 36.5,35.5 + parent: 16527 + - uid: 19918 components: - type: Transform - pos: 59.5,-5.5 - parent: 2 - - uid: 4889 + pos: 36.5,36.5 + parent: 16527 + - uid: 19919 components: - type: Transform - pos: 59.5,-4.5 - parent: 2 - - uid: 4890 + pos: 35.5,36.5 + parent: 16527 + - uid: 19920 components: - type: Transform - pos: 59.5,-3.5 - parent: 2 - - uid: 4891 + pos: 34.5,36.5 + parent: 16527 + - uid: 19921 components: - type: Transform - pos: 60.5,-3.5 - parent: 2 - - uid: 4892 + pos: 33.5,36.5 + parent: 16527 + - uid: 19922 components: - type: Transform - pos: 61.5,-3.5 - parent: 2 - - uid: 4893 + pos: 32.5,36.5 + parent: 16527 + - uid: 19923 components: - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 4894 + pos: 31.5,36.5 + parent: 16527 + - uid: 19924 components: - type: Transform - pos: 53.5,46.5 - parent: 2 - - uid: 4895 + pos: 30.5,36.5 + parent: 16527 + - uid: 19925 components: - type: Transform - pos: 55.5,47.5 - parent: 2 - - uid: 4896 + pos: 29.5,36.5 + parent: 16527 + - uid: 19926 components: - type: Transform - pos: 59.5,70.5 - parent: 2 - - uid: 4897 + pos: 28.5,36.5 + parent: 16527 + - uid: 19927 components: - type: Transform - pos: 58.5,70.5 - parent: 2 - - uid: 4898 + pos: 27.5,36.5 + parent: 16527 + - uid: 19928 components: - type: Transform - pos: 57.5,70.5 - parent: 2 - - uid: 4899 + pos: 26.5,36.5 + parent: 16527 + - uid: 19929 components: - type: Transform - pos: 57.5,69.5 - parent: 2 - - uid: 4900 + pos: 25.5,36.5 + parent: 16527 + - uid: 19930 components: - type: Transform - pos: 57.5,68.5 - parent: 2 - - uid: 4901 + pos: 24.5,36.5 + parent: 16527 + - uid: 19931 components: - type: Transform - pos: 57.5,67.5 - parent: 2 - - uid: 4902 + pos: 24.5,35.5 + parent: 16527 + - uid: 19932 components: - type: Transform - pos: 57.5,66.5 - parent: 2 - - uid: 4903 + pos: 24.5,34.5 + parent: 16527 + - uid: 19933 components: - type: Transform - pos: 57.5,65.5 - parent: 2 - - uid: 4904 + pos: 22.5,14.5 + parent: 16527 + - uid: 19934 components: - type: Transform - pos: 50.5,66.5 - parent: 2 - - uid: 4905 + pos: 22.5,15.5 + parent: 16527 + - uid: 19935 components: - type: Transform - pos: 50.5,67.5 - parent: 2 - - uid: 4906 + pos: 22.5,16.5 + parent: 16527 + - uid: 19936 components: - type: Transform - pos: 41.5,69.5 - parent: 2 - - uid: 4907 + pos: 21.5,16.5 + parent: 16527 + - uid: 19937 components: - type: Transform - pos: 42.5,69.5 - parent: 2 - - uid: 4908 + pos: 20.5,16.5 + parent: 16527 + - uid: 19938 components: - type: Transform - pos: 43.5,69.5 - parent: 2 - - uid: 4909 + pos: 23.5,16.5 + parent: 16527 + - uid: 19939 components: - type: Transform - pos: 45.5,69.5 - parent: 2 - - uid: 4910 + pos: 24.5,16.5 + parent: 16527 + - uid: 19940 components: - type: Transform - pos: 43.5,71.5 - parent: 2 - - uid: 4911 + pos: 25.5,16.5 + parent: 16527 + - uid: 19941 components: - type: Transform - pos: 43.5,70.5 - parent: 2 - - uid: 4912 + pos: 26.5,16.5 + parent: 16527 + - uid: 19942 components: - type: Transform - pos: 47.5,65.5 - parent: 2 - - uid: 4913 + pos: 27.5,16.5 + parent: 16527 + - uid: 19943 components: - type: Transform - pos: 57.5,64.5 - parent: 2 - - uid: 4914 + pos: 28.5,16.5 + parent: 16527 + - uid: 19944 components: - type: Transform - pos: 57.5,63.5 - parent: 2 - - uid: 4915 + pos: 29.5,16.5 + parent: 16527 + - uid: 19945 components: - type: Transform - pos: 57.5,62.5 - parent: 2 - - uid: 4916 + pos: 30.5,16.5 + parent: 16527 + - uid: 19946 components: - type: Transform - pos: 57.5,61.5 - parent: 2 - - uid: 4917 + pos: 31.5,16.5 + parent: 16527 + - uid: 19947 components: - type: Transform - pos: 57.5,60.5 - parent: 2 - - uid: 4918 + pos: 32.5,16.5 + parent: 16527 + - uid: 19948 components: - type: Transform - pos: 57.5,59.5 - parent: 2 - - uid: 4919 + pos: 33.5,16.5 + parent: 16527 + - uid: 19949 components: - type: Transform - pos: 57.5,58.5 - parent: 2 - - uid: 4920 + pos: 34.5,16.5 + parent: 16527 + - uid: 19950 components: - type: Transform - pos: 57.5,57.5 - parent: 2 - - uid: 4921 + pos: 26.5,17.5 + parent: 16527 + - uid: 19951 components: - type: Transform - pos: 57.5,56.5 - parent: 2 - - uid: 4922 + pos: 26.5,18.5 + parent: 16527 + - uid: 19952 components: - type: Transform - pos: 57.5,55.5 - parent: 2 - - uid: 4923 + pos: 26.5,19.5 + parent: 16527 + - uid: 19953 components: - type: Transform - pos: 57.5,54.5 - parent: 2 - - uid: 4924 + pos: 26.5,15.5 + parent: 16527 + - uid: 19954 components: - type: Transform - pos: 57.5,53.5 - parent: 2 - - uid: 4925 + pos: 26.5,14.5 + parent: 16527 + - uid: 19955 components: - type: Transform - pos: 57.5,52.5 - parent: 2 - - uid: 4926 + pos: 26.5,13.5 + parent: 16527 + - uid: 19956 components: - type: Transform - pos: 58.5,52.5 - parent: 2 - - uid: 4927 + pos: 31.5,17.5 + parent: 16527 + - uid: 19957 components: - type: Transform - pos: 59.5,52.5 - parent: 2 - - uid: 4928 + pos: 31.5,18.5 + parent: 16527 + - uid: 19958 components: - type: Transform - pos: 60.5,52.5 - parent: 2 - - uid: 4929 + pos: 31.5,19.5 + parent: 16527 + - uid: 19959 components: - type: Transform - pos: 61.5,52.5 - parent: 2 - - uid: 4930 + pos: 31.5,15.5 + parent: 16527 + - uid: 19960 components: - type: Transform - pos: 62.5,52.5 - parent: 2 - - uid: 4931 + pos: 31.5,14.5 + parent: 16527 + - uid: 19961 components: - type: Transform - pos: 63.5,52.5 - parent: 2 - - uid: 4932 + pos: 31.5,13.5 + parent: 16527 + - uid: 19962 components: - type: Transform - pos: 64.5,52.5 - parent: 2 - - uid: 4933 + pos: 24.5,15.5 + parent: 16527 + - uid: 19963 components: - type: Transform - pos: 65.5,52.5 - parent: 2 - - uid: 4934 + pos: 24.5,17.5 + parent: 16527 + - uid: 19964 components: - type: Transform - pos: 66.5,52.5 - parent: 2 - - uid: 4935 + pos: 33.5,17.5 + parent: 16527 + - uid: 19965 components: - type: Transform - pos: 66.5,53.5 - parent: 2 - - uid: 4936 + pos: 33.5,15.5 + parent: 16527 + - uid: 19966 components: - type: Transform - pos: 66.5,54.5 - parent: 2 - - uid: 4937 + pos: 17.5,15.5 + parent: 16527 + - uid: 19967 components: - type: Transform - pos: 66.5,55.5 - parent: 2 - - uid: 4938 + pos: 17.5,14.5 + parent: 16527 + - uid: 19968 components: - type: Transform - pos: 66.5,56.5 - parent: 2 - - uid: 4939 + pos: 17.5,13.5 + parent: 16527 + - uid: 19969 components: - type: Transform - pos: 66.5,57.5 - parent: 2 - - uid: 4940 + pos: 17.5,12.5 + parent: 16527 + - uid: 19970 components: - type: Transform - pos: 67.5,57.5 - parent: 2 - - uid: 4941 + pos: 18.5,12.5 + parent: 16527 + - uid: 19971 components: - type: Transform - pos: 72.5,66.5 - parent: 2 - - uid: 4942 + pos: 19.5,12.5 + parent: 16527 + - uid: 19972 components: - type: Transform - pos: 72.5,65.5 - parent: 2 - - uid: 4943 + pos: 20.5,12.5 + parent: 16527 + - uid: 19973 components: - type: Transform - pos: 72.5,64.5 - parent: 2 - - uid: 4944 + pos: 21.5,12.5 + parent: 16527 + - uid: 19974 components: - type: Transform - pos: 72.5,63.5 - parent: 2 - - uid: 4945 + pos: 8.5,19.5 + parent: 16527 + - uid: 19975 components: - type: Transform - pos: 72.5,62.5 - parent: 2 - - uid: 4946 + pos: 8.5,18.5 + parent: 16527 + - uid: 19976 components: - type: Transform - pos: 72.5,61.5 - parent: 2 - - uid: 4947 + pos: 10.5,16.5 + parent: 16527 + - uid: 19977 components: - type: Transform - pos: 72.5,60.5 - parent: 2 - - uid: 4948 + pos: 9.5,16.5 + parent: 16527 + - uid: 19978 components: - type: Transform - pos: 72.5,59.5 - parent: 2 - - uid: 4949 + pos: -1.5,19.5 + parent: 16527 + - uid: 19979 components: - type: Transform - pos: 72.5,58.5 - parent: 2 - - uid: 4950 + pos: -1.5,18.5 + parent: 16527 + - uid: 19980 components: - type: Transform - pos: 72.5,57.5 - parent: 2 - - uid: 4951 + pos: -1.5,17.5 + parent: 16527 + - uid: 19981 components: - type: Transform - pos: 72.5,56.5 - parent: 2 - - uid: 4952 + pos: -1.5,16.5 + parent: 16527 + - uid: 19982 components: - type: Transform - pos: 72.5,55.5 - parent: 2 - - uid: 4953 + pos: -1.5,15.5 + parent: 16527 + - uid: 19983 components: - type: Transform - pos: 71.5,55.5 - parent: 2 - - uid: 4954 + pos: -1.5,14.5 + parent: 16527 + - uid: 19984 components: - type: Transform - pos: 70.5,55.5 - parent: 2 - - uid: 4955 + pos: -2.5,16.5 + parent: 16527 + - uid: 19985 components: - type: Transform - pos: 69.5,55.5 - parent: 2 - - uid: 4956 + pos: -3.5,16.5 + parent: 16527 + - uid: 19986 components: - type: Transform - pos: 69.5,54.5 - parent: 2 - - uid: 4957 + pos: -4.5,16.5 + parent: 16527 + - uid: 19987 components: - type: Transform - pos: 69.5,53.5 - parent: 2 - - uid: 4958 + pos: -0.5,14.5 + parent: 16527 + - uid: 19988 components: - type: Transform - pos: 69.5,52.5 - parent: 2 - - uid: 4959 + pos: 0.5,14.5 + parent: 16527 + - uid: 19989 components: - type: Transform - pos: 68.5,52.5 - parent: 2 - - uid: 4960 + pos: 1.5,14.5 + parent: 16527 + - uid: 19990 components: - type: Transform - pos: 67.5,52.5 - parent: 2 - - uid: 4962 + pos: 2.5,14.5 + parent: 16527 + - uid: 19991 components: - type: Transform - pos: 44.5,55.5 - parent: 2 - - uid: 4963 + pos: 2.5,15.5 + parent: 16527 + - uid: 19992 components: - type: Transform - pos: 43.5,55.5 - parent: 2 - - uid: 4964 + pos: 2.5,16.5 + parent: 16527 + - uid: 19993 components: - type: Transform - pos: 56.5,37.5 - parent: 2 - - uid: 4965 + pos: 3.5,16.5 + parent: 16527 + - uid: 19994 components: - type: Transform - pos: 28.5,53.5 - parent: 2 - - uid: 4966 + pos: 4.5,16.5 + parent: 16527 + - uid: 19995 components: - type: Transform - pos: 21.5,53.5 - parent: 2 - - uid: 4969 + pos: 5.5,16.5 + parent: 16527 + - uid: 19996 components: - type: Transform - pos: 22.5,53.5 - parent: 2 - - uid: 4970 + pos: 2.5,17.5 + parent: 16527 + - uid: 19997 components: - type: Transform - pos: 19.5,53.5 - parent: 2 - - uid: 4971 + pos: -1.5,20.5 + parent: 16527 + - uid: 19998 components: - type: Transform - pos: 19.5,54.5 - parent: 2 - - uid: 4975 + pos: -0.5,20.5 + parent: 16527 + - uid: 19999 components: - type: Transform - pos: 26.5,53.5 - parent: 2 - - uid: 4977 + pos: 0.5,20.5 + parent: 16527 + - uid: 20000 components: - type: Transform - pos: 37.5,57.5 - parent: 2 - - uid: 4979 + pos: 0.5,31.5 + parent: 16527 + - uid: 20001 components: - type: Transform - pos: 31.5,57.5 - parent: 2 - - uid: 4989 + pos: 0.5,30.5 + parent: 16527 + - uid: 20002 components: - type: Transform - pos: 10.5,31.5 - parent: 2 - - uid: 4990 + pos: 0.5,29.5 + parent: 16527 + - uid: 20003 components: - type: Transform - pos: 10.5,33.5 - parent: 2 - - uid: 4991 + pos: 0.5,28.5 + parent: 16527 + - uid: 20004 components: - type: Transform - pos: 11.5,33.5 - parent: 2 - - uid: 4993 + pos: 0.5,27.5 + parent: 16527 + - uid: 20005 components: - type: Transform - pos: 12.5,33.5 - parent: 2 - - uid: 4994 + pos: 0.5,26.5 + parent: 16527 + - uid: 20006 components: - type: Transform - pos: 12.5,34.5 - parent: 2 - - uid: 4995 + pos: 0.5,25.5 + parent: 16527 + - uid: 20007 components: - type: Transform - pos: 12.5,35.5 - parent: 2 - - uid: 4996 + pos: 0.5,24.5 + parent: 16527 + - uid: 20008 components: - type: Transform - pos: 12.5,36.5 - parent: 2 - - uid: 4997 + pos: -0.5,26.5 + parent: 16527 + - uid: 20009 components: - type: Transform - pos: 12.5,37.5 - parent: 2 - - uid: 4998 + pos: 1.5,26.5 + parent: 16527 + - uid: 20010 components: - type: Transform - pos: 13.5,37.5 - parent: 2 - - uid: 4999 + pos: -14.5,17.5 + parent: 16527 + - uid: 20011 components: - type: Transform - pos: 14.5,37.5 - parent: 2 - - uid: 5000 + pos: -14.5,16.5 + parent: 16527 + - uid: 20012 components: - type: Transform - pos: 15.5,37.5 - parent: 2 - - uid: 5001 + pos: -14.5,15.5 + parent: 16527 + - uid: 20013 components: - type: Transform - pos: 16.5,37.5 - parent: 2 - - uid: 5002 + pos: -14.5,14.5 + parent: 16527 + - uid: 20014 components: - type: Transform - pos: 17.5,37.5 - parent: 2 - - uid: 5003 + pos: -13.5,15.5 + parent: 16527 + - uid: 20015 components: - type: Transform - pos: 18.5,37.5 - parent: 2 - - uid: 5004 + pos: -12.5,15.5 + parent: 16527 + - uid: 20016 components: - type: Transform - pos: 19.5,37.5 - parent: 2 - - uid: 5005 + pos: -15.5,15.5 + parent: 16527 + - uid: 20017 components: - type: Transform - pos: 20.5,37.5 - parent: 2 - - uid: 5010 + pos: -16.5,15.5 + parent: 16527 + - uid: 20018 components: - type: Transform - pos: 70.5,52.5 - parent: 2 - - uid: 5011 + pos: -17.5,15.5 + parent: 16527 + - uid: 20019 components: - type: Transform - pos: 71.5,52.5 - parent: 2 - - uid: 5012 + pos: -18.5,15.5 + parent: 16527 + - uid: 20020 components: - type: Transform - pos: 71.5,51.5 - parent: 2 - - uid: 5013 + pos: -19.5,15.5 + parent: 16527 + - uid: 20021 components: - type: Transform - pos: 71.5,50.5 - parent: 2 - - uid: 5014 + pos: -13.5,13.5 + parent: 16527 + - uid: 20022 components: - type: Transform - pos: 71.5,49.5 - parent: 2 - - uid: 5015 + pos: -14.5,13.5 + parent: 16527 + - uid: 20023 components: - type: Transform - pos: 71.5,48.5 - parent: 2 - - uid: 5016 + pos: -15.5,13.5 + parent: 16527 + - uid: 20024 components: - type: Transform - pos: 71.5,47.5 - parent: 2 - - uid: 5017 + pos: -16.5,13.5 + parent: 16527 + - uid: 20025 components: - type: Transform - pos: 71.5,46.5 - parent: 2 - - uid: 5018 + pos: -17.5,13.5 + parent: 16527 + - uid: 20026 components: - type: Transform - pos: 71.5,45.5 - parent: 2 - - uid: 5019 + pos: -18.5,13.5 + parent: 16527 + - uid: 20027 components: - type: Transform - pos: 71.5,44.5 - parent: 2 - - uid: 5020 + pos: -19.5,13.5 + parent: 16527 + - uid: 20028 components: - type: Transform - pos: 71.5,43.5 - parent: 2 - - uid: 5021 + pos: -20.5,13.5 + parent: 16527 + - uid: 20029 components: - type: Transform - pos: 71.5,42.5 - parent: 2 - - uid: 5022 + pos: -21.5,13.5 + parent: 16527 + - uid: 20030 components: - type: Transform - pos: 71.5,41.5 - parent: 2 - - uid: 5023 + pos: -12.5,13.5 + parent: 16527 + - uid: 20031 components: - type: Transform - pos: 71.5,40.5 - parent: 2 - - uid: 5024 + pos: -15.5,12.5 + parent: 16527 + - uid: 20032 components: - type: Transform - pos: 71.5,38.5 - parent: 2 - - uid: 5025 + pos: -15.5,11.5 + parent: 16527 + - uid: 20033 components: - type: Transform - pos: 71.5,37.5 - parent: 2 - - uid: 5026 + pos: -15.5,10.5 + parent: 16527 + - uid: 20034 components: - type: Transform - pos: 71.5,36.5 - parent: 2 - - uid: 5027 + pos: -15.5,9.5 + parent: 16527 + - uid: 20035 components: - type: Transform - pos: 71.5,35.5 - parent: 2 - - uid: 5028 + pos: -19.5,12.5 + parent: 16527 + - uid: 20036 components: - type: Transform - pos: 71.5,34.5 - parent: 2 - - uid: 5029 + pos: -19.5,11.5 + parent: 16527 + - uid: 20037 components: - type: Transform - pos: 71.5,33.5 - parent: 2 - - uid: 5030 + pos: -19.5,10.5 + parent: 16527 + - uid: 20038 components: - type: Transform - pos: 71.5,32.5 - parent: 2 - - uid: 5031 + pos: -19.5,9.5 + parent: 16527 + - uid: 20039 components: - type: Transform - pos: 72.5,32.5 - parent: 2 - - uid: 5032 + pos: -19.5,8.5 + parent: 16527 + - uid: 20040 components: - type: Transform - pos: 73.5,32.5 - parent: 2 - - uid: 5033 + pos: -19.5,7.5 + parent: 16527 + - uid: 20041 components: - type: Transform - pos: 74.5,32.5 - parent: 2 - - uid: 5034 + pos: -17.5,12.5 + parent: 16527 + - uid: 20042 components: - type: Transform - pos: 75.5,32.5 - parent: 2 - - uid: 5035 + pos: -17.5,11.5 + parent: 16527 + - uid: 20043 components: - type: Transform - pos: 76.5,32.5 - parent: 2 - - uid: 5036 + pos: -17.5,10.5 + parent: 16527 + - uid: 20044 components: - type: Transform - pos: 77.5,32.5 - parent: 2 - - uid: 5037 + pos: -17.5,9.5 + parent: 16527 + - uid: 20045 components: - type: Transform - pos: 78.5,32.5 - parent: 2 - - uid: 5038 + pos: -17.5,8.5 + parent: 16527 + - uid: 20046 components: - type: Transform - pos: 79.5,32.5 - parent: 2 - - uid: 5039 + pos: -17.5,7.5 + parent: 16527 + - uid: 20047 components: - type: Transform - pos: 79.5,31.5 - parent: 2 - - uid: 5040 + pos: -19.5,6.5 + parent: 16527 + - uid: 20048 components: - type: Transform - pos: 79.5,30.5 - parent: 2 - - uid: 5041 + pos: -5.5,16.5 + parent: 16527 + - uid: 20049 components: - type: Transform - pos: 79.5,29.5 - parent: 2 - - uid: 5042 + pos: -6.5,16.5 + parent: 16527 + - uid: 20050 components: - type: Transform - pos: 27.5,-15.5 - parent: 2 - - uid: 5053 + pos: -7.5,16.5 + parent: 16527 + - uid: 20051 components: - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 5054 + pos: -11.5,15.5 + parent: 16527 + - uid: 20052 components: - type: Transform - pos: 78.5,65.5 - parent: 2 - - uid: 5055 + pos: -10.5,15.5 + parent: 16527 + - uid: 20053 components: - type: Transform - pos: 77.5,65.5 - parent: 2 - - uid: 5056 + pos: -9.5,15.5 + parent: 16527 + - uid: 20054 components: - type: Transform - pos: 76.5,65.5 - parent: 2 - - uid: 5057 + pos: -7.5,17.5 + parent: 16527 + - uid: 20055 components: - type: Transform - pos: 75.5,65.5 - parent: 2 - - uid: 5058 + pos: -9.5,14.5 + parent: 16527 + - uid: 20056 components: - type: Transform - pos: 74.5,65.5 - parent: 2 - - uid: 5059 + pos: -8.5,17.5 + parent: 16527 + - uid: 20057 components: - type: Transform - pos: 73.5,65.5 - parent: 2 - - uid: 5060 + pos: -8.5,14.5 + parent: 16527 + - uid: 20058 components: - type: Transform - pos: 42.5,11.5 - parent: 2 - - uid: 5061 + pos: -17.5,26.5 + parent: 16527 + - uid: 20059 components: - type: Transform - pos: 46.5,33.5 - parent: 2 - - uid: 5062 + pos: -17.5,25.5 + parent: 16527 + - uid: 20060 components: - type: Transform - pos: 61.5,50.5 - parent: 2 - - uid: 5063 + pos: -17.5,24.5 + parent: 16527 + - uid: 20061 components: - type: Transform - pos: 59.5,49.5 - parent: 2 - - uid: 5064 + pos: -17.5,23.5 + parent: 16527 + - uid: 20062 components: - type: Transform - pos: 57.5,45.5 - parent: 2 - - uid: 5065 + pos: -17.5,22.5 + parent: 16527 + - uid: 20063 components: - type: Transform - pos: 58.5,45.5 - parent: 2 - - uid: 5066 + pos: -17.5,21.5 + parent: 16527 + - uid: 20064 components: - type: Transform - pos: 59.5,45.5 - parent: 2 - - uid: 5067 + pos: -17.5,20.5 + parent: 16527 + - uid: 20065 components: - type: Transform - pos: 66.5,45.5 - parent: 2 - - uid: 5068 + pos: -17.5,19.5 + parent: 16527 + - uid: 20066 components: - type: Transform - pos: 66.5,44.5 - parent: 2 - - uid: 5069 + pos: -16.5,23.5 + parent: 16527 + - uid: 20067 components: - type: Transform - pos: 66.5,43.5 - parent: 2 - - uid: 5070 + pos: -15.5,23.5 + parent: 16527 + - uid: 20068 components: - type: Transform - pos: 66.5,42.5 - parent: 2 - - uid: 5071 + pos: -14.5,23.5 + parent: 16527 + - uid: 20069 components: - type: Transform - pos: 9.5,33.5 - parent: 2 - - uid: 5072 + pos: -13.5,23.5 + parent: 16527 + - uid: 20070 components: - type: Transform - pos: 5.5,33.5 - parent: 2 - - uid: 5073 + pos: -12.5,23.5 + parent: 16527 + - uid: 20071 components: - type: Transform - pos: 6.5,33.5 - parent: 2 - - uid: 5074 + pos: -11.5,23.5 + parent: 16527 + - uid: 20072 components: - type: Transform - pos: 9.5,32.5 - parent: 2 - - uid: 5075 + pos: -10.5,23.5 + parent: 16527 + - uid: 20073 components: - type: Transform - pos: 9.5,31.5 - parent: 2 - - uid: 5076 + pos: -9.5,23.5 + parent: 16527 + - uid: 20074 components: - type: Transform - pos: 3.5,33.5 - parent: 2 - - uid: 5077 + pos: -8.5,23.5 + parent: 16527 + - uid: 20075 components: - type: Transform - pos: -0.5,35.5 - parent: 2 - - uid: 5078 + pos: -7.5,23.5 + parent: 16527 + - uid: 20076 components: - type: Transform - pos: -0.5,34.5 - parent: 2 - - uid: 5079 + pos: -16.5,20.5 + parent: 16527 + - uid: 20077 components: - type: Transform - pos: -0.5,33.5 - parent: 2 - - uid: 5080 + pos: -15.5,20.5 + parent: 16527 + - uid: 20078 components: - type: Transform - pos: 0.5,33.5 - parent: 2 - - uid: 5081 + pos: -14.5,20.5 + parent: 16527 + - uid: 20079 components: - type: Transform - pos: 1.5,33.5 - parent: 2 - - uid: 5082 + pos: -13.5,20.5 + parent: 16527 + - uid: 20080 components: - type: Transform - pos: 7.5,33.5 - parent: 2 - - uid: 5083 + pos: -12.5,20.5 + parent: 16527 + - uid: 20081 components: - type: Transform - pos: 4.5,33.5 - parent: 2 - - uid: 5084 + pos: -11.5,20.5 + parent: 16527 + - uid: 20082 components: - type: Transform - pos: 8.5,33.5 - parent: 2 - - uid: 5085 + pos: -10.5,20.5 + parent: 16527 + - uid: 20083 components: - type: Transform - pos: 44.5,57.5 - parent: 2 - - uid: 5086 + pos: -9.5,20.5 + parent: 16527 + - uid: 20084 components: - type: Transform - pos: 56.5,41.5 - parent: 2 - - uid: 5087 + pos: -5.5,28.5 + parent: 16527 + - uid: 20085 components: - type: Transform - pos: 43.5,60.5 - parent: 2 - - uid: 5088 + pos: -6.5,28.5 + parent: 16527 + - uid: 20086 components: - type: Transform - pos: 57.5,38.5 - parent: 2 - - uid: 5094 + pos: -7.5,28.5 + parent: 16527 + - uid: 20087 components: - type: Transform - pos: 41.5,20.5 - parent: 2 - - uid: 5097 + pos: -8.5,28.5 + parent: 16527 + - uid: 20088 components: - type: Transform - pos: 59.5,48.5 - parent: 2 - - uid: 5098 + pos: -9.5,28.5 + parent: 16527 + - uid: 20089 components: - type: Transform - pos: 40.5,3.5 - parent: 2 - - uid: 5099 + pos: -8.5,27.5 + parent: 16527 + - uid: 20090 components: - type: Transform - pos: 58.5,47.5 - parent: 2 - - uid: 5100 + pos: -8.5,29.5 + parent: 16527 + - uid: 20091 components: - type: Transform - pos: 59.5,47.5 - parent: 2 - - uid: 5101 + pos: -8.5,24.5 + parent: 16527 + - uid: 20092 components: - type: Transform - pos: 57.5,36.5 - parent: 2 - - uid: 5102 + pos: -8.5,20.5 + parent: 16527 + - uid: 20093 components: - type: Transform - pos: 49.5,-1.5 - parent: 2 - - uid: 5103 + pos: -7.5,20.5 + parent: 16527 + - uid: 20094 components: - type: Transform - pos: 57.5,37.5 - parent: 2 - - uid: 5104 + pos: -6.5,13.5 + parent: 16527 + - uid: 20095 components: - type: Transform - pos: 42.5,4.5 - parent: 2 - - uid: 5105 + pos: -6.5,12.5 + parent: 16527 + - uid: 20096 components: - type: Transform - pos: 43.5,2.5 - parent: 2 - - uid: 5106 + pos: -6.5,11.5 + parent: 16527 + - uid: 20097 components: - type: Transform - pos: 41.5,60.5 - parent: 2 - - uid: 5107 + pos: -6.5,10.5 + parent: 16527 + - uid: 20098 components: - type: Transform - pos: 40.5,60.5 - parent: 2 - - uid: 5109 + pos: -6.5,9.5 + parent: 16527 + - uid: 20099 components: - type: Transform - pos: 56.5,17.5 - parent: 2 - - uid: 5111 + pos: -6.5,8.5 + parent: 16527 + - uid: 20100 components: - type: Transform - pos: 45.5,17.5 - parent: 2 - - uid: 5113 + pos: -5.5,10.5 + parent: 16527 + - uid: 20101 components: - type: Transform - pos: 37.5,5.5 - parent: 2 - - uid: 5114 + pos: -4.5,10.5 + parent: 16527 + - uid: 20102 components: - type: Transform - pos: 37.5,8.5 - parent: 2 - - uid: 5115 + pos: -3.5,10.5 + parent: 16527 + - uid: 20103 components: - type: Transform - pos: 47.5,64.5 - parent: 2 - - uid: 5116 + pos: -2.5,10.5 + parent: 16527 + - uid: 20104 components: - type: Transform - pos: 42.5,60.5 - parent: 2 - - uid: 5117 + pos: -1.5,10.5 + parent: 16527 + - uid: 20105 components: - type: Transform - pos: 47.5,73.5 - parent: 2 - - uid: 5118 + pos: -0.5,10.5 + parent: 16527 + - uid: 20106 components: - type: Transform - pos: 45.5,-4.5 - parent: 2 - - uid: 5120 + pos: -0.5,9.5 + parent: 16527 + - uid: 20107 components: - type: Transform - pos: 56.5,3.5 - parent: 2 - - uid: 5121 + pos: -0.5,11.5 + parent: 16527 + - uid: 20108 components: - type: Transform - pos: 58.5,3.5 - parent: 2 - - uid: 5124 + pos: 1.5,11.5 + parent: 16527 + - uid: 20109 components: - type: Transform - pos: 36.5,2.5 - parent: 2 - - uid: 5126 + pos: 1.5,10.5 + parent: 16527 + - uid: 20110 components: - type: Transform - pos: 50.5,-0.5 - parent: 2 - - uid: 5127 + pos: 1.5,9.5 + parent: 16527 + - uid: 20111 components: - type: Transform - pos: 38.5,71.5 - parent: 2 - - uid: 5128 + pos: 2.5,10.5 + parent: 16527 + - uid: 20112 components: - type: Transform - pos: 38.5,70.5 - parent: 2 - - uid: 5130 + pos: 3.5,10.5 + parent: 16527 + - uid: 20113 components: - type: Transform - pos: 43.5,65.5 - parent: 2 - - uid: 5131 + pos: 4.5,10.5 + parent: 16527 + - uid: 20114 components: - type: Transform - pos: 45.5,65.5 - parent: 2 - - uid: 5132 + pos: 5.5,10.5 + parent: 16527 + - uid: 20115 components: - type: Transform - pos: 45.5,1.5 - parent: 2 - - uid: 5133 + pos: 6.5,10.5 + parent: 16527 + - uid: 20116 components: - type: Transform - pos: 45.5,20.5 - parent: 2 - - uid: 5134 + pos: 7.5,10.5 + parent: 16527 + - uid: 20117 components: - type: Transform - pos: 40.5,23.5 - parent: 2 - - uid: 5135 + pos: 7.5,11.5 + parent: 16527 + - uid: 20118 components: - type: Transform - pos: 39.5,23.5 - parent: 2 - - uid: 5136 + pos: 7.5,12.5 + parent: 16527 + - uid: 20119 components: - type: Transform - pos: 47.5,74.5 - parent: 2 - - uid: 5137 + pos: 7.5,13.5 + parent: 16527 + - uid: 20120 components: - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 5138 + pos: -11.5,-9.5 + parent: 16527 + - uid: 20121 components: - type: Transform - pos: 55.5,7.5 - parent: 2 - - uid: 5139 + pos: -12.5,-8.5 + parent: 16527 + - uid: 20122 components: - type: Transform - pos: 38.5,23.5 - parent: 2 - - uid: 5140 + pos: -11.5,-8.5 + parent: 16527 + - uid: 20123 components: - type: Transform - pos: 41.5,23.5 - parent: 2 - - uid: 5141 + pos: -10.5,10.5 + parent: 16527 + - uid: 20124 components: - type: Transform - pos: 58.5,42.5 - parent: 2 - - uid: 5142 + pos: -10.5,9.5 + parent: 16527 + - uid: 20125 components: - type: Transform - pos: 42.5,1.5 - parent: 2 - - uid: 5143 + pos: -11.5,9.5 + parent: 16527 + - uid: 20126 components: - type: Transform - pos: 44.5,65.5 - parent: 2 - - uid: 5144 + pos: -11.5,8.5 + parent: 16527 + - uid: 20127 components: - type: Transform - pos: 37.5,7.5 - parent: 2 - - uid: 5145 + pos: -12.5,8.5 + parent: 16527 + - uid: 20128 components: - type: Transform - pos: 37.5,10.5 - parent: 2 - - uid: 5146 + pos: -12.5,7.5 + parent: 16527 + - uid: 20129 components: - type: Transform - pos: 45.5,-1.5 - parent: 2 - - uid: 5147 + pos: -13.5,7.5 + parent: 16527 + - uid: 20130 components: - type: Transform - pos: 45.5,-3.5 - parent: 2 - - uid: 5148 + pos: -18.5,3.5 + parent: 16527 + - uid: 20131 components: - type: Transform - pos: 45.5,-2.5 - parent: 2 - - uid: 5149 + pos: -17.5,3.5 + parent: 16527 + - uid: 20132 components: - type: Transform - pos: 45.5,-5.5 - parent: 2 - - uid: 5150 + pos: -16.5,3.5 + parent: 16527 + - uid: 20133 components: - type: Transform - pos: 37.5,5.5 - parent: 2 - - uid: 5151 + pos: -15.5,3.5 + parent: 16527 + - uid: 20134 components: - type: Transform - pos: 58.5,38.5 - parent: 2 - - uid: 5152 + pos: -14.5,3.5 + parent: 16527 + - uid: 20135 components: - type: Transform - pos: 58.5,41.5 - parent: 2 - - uid: 5153 + pos: -13.5,3.5 + parent: 16527 + - uid: 20136 components: - type: Transform - pos: 60.5,40.5 - parent: 2 - - uid: 5154 + pos: -13.5,4.5 + parent: 16527 + - uid: 20137 components: - type: Transform - pos: 45.5,-6.5 - parent: 2 - - uid: 5155 + pos: -13.5,5.5 + parent: 16527 + - uid: 20138 components: - type: Transform - pos: 45.5,-0.5 - parent: 2 - - uid: 5156 + pos: -13.5,6.5 + parent: 16527 + - uid: 20139 components: - type: Transform - pos: 37.5,6.5 - parent: 2 - - uid: 5157 + pos: -13.5,-8.5 + parent: 16527 + - uid: 20140 components: - type: Transform - pos: 37.5,11.5 - parent: 2 - - uid: 5158 + pos: -14.5,-8.5 + parent: 16527 + - uid: 20141 components: - type: Transform - pos: 48.5,-1.5 - parent: 2 - - uid: 5159 + pos: -15.5,-8.5 + parent: 16527 + - uid: 20142 components: - type: Transform - pos: 51.5,-0.5 - parent: 2 - - uid: 5160 + pos: -16.5,-8.5 + parent: 16527 + - uid: 20143 components: - type: Transform - pos: 49.5,-0.5 - parent: 2 - - uid: 5161 + pos: -16.5,-7.5 + parent: 16527 + - uid: 20144 components: - type: Transform - pos: 37.5,2.5 - parent: 2 - - uid: 5162 + pos: -16.5,-6.5 + parent: 16527 + - uid: 20145 components: - type: Transform - pos: 53.5,36.5 - parent: 2 - - uid: 5163 + pos: -16.5,-5.5 + parent: 16527 + - uid: 20146 components: - type: Transform - pos: 41.5,71.5 - parent: 2 - - uid: 5164 + pos: -17.5,-5.5 + parent: 16527 + - uid: 20147 components: - type: Transform - pos: 22.5,10.5 - parent: 2 - - uid: 5165 + pos: -17.5,-4.5 + parent: 16527 + - uid: 20148 components: - type: Transform - pos: 42.5,71.5 - parent: 2 - - uid: 5166 + pos: -18.5,-4.5 + parent: 16527 + - uid: 20149 components: - type: Transform - pos: 59.5,38.5 - parent: 2 - - uid: 5167 + pos: -18.5,-3.5 + parent: 16527 + - uid: 20150 components: - type: Transform - pos: 51.5,66.5 - parent: 2 - - uid: 5168 + pos: -19.5,-3.5 + parent: 16527 + - uid: 20151 components: - type: Transform - pos: 47.5,61.5 - parent: 2 - - uid: 5169 + pos: -19.5,-2.5 + parent: 16527 + - uid: 20152 components: - type: Transform - pos: 47.5,62.5 - parent: 2 - - uid: 5170 + pos: -19.5,-1.5 + parent: 16527 + - uid: 20153 components: - type: Transform - pos: 38.5,3.5 - parent: 2 - - uid: 5171 + pos: -20.5,-1.5 + parent: 16527 + - uid: 20154 components: - type: Transform - pos: 37.5,3.5 - parent: 2 - - uid: 5172 + pos: -20.5,-0.5 + parent: 16527 + - uid: 20155 components: - type: Transform - pos: 47.5,-1.5 - parent: 2 - - uid: 5173 + pos: -20.5,0.5 + parent: 16527 + - uid: 20156 components: - type: Transform - pos: 43.5,1.5 - parent: 2 - - uid: 5174 + pos: -20.5,1.5 + parent: 16527 + - uid: 20157 components: - type: Transform - pos: 59.5,-0.5 - parent: 2 - - uid: 5175 + pos: -20.5,2.5 + parent: 16527 + - uid: 20158 components: - type: Transform - pos: 41.5,66.5 - parent: 2 - - uid: 5176 + pos: -20.5,3.5 + parent: 16527 + - uid: 20159 components: - type: Transform - pos: 40.5,66.5 - parent: 2 - - uid: 5177 + pos: -11.5,-7.5 + parent: 16527 + - uid: 20160 components: - type: Transform - pos: 59.5,40.5 - parent: 2 - - uid: 5179 + pos: -11.5,-6.5 + parent: 16527 + - uid: 20161 components: - type: Transform - pos: 52.5,66.5 - parent: 2 - - uid: 5180 + pos: -11.5,-5.5 + parent: 16527 + - uid: 20162 components: - type: Transform - pos: 60.5,38.5 - parent: 2 - - uid: 5181 + pos: -11.5,-4.5 + parent: 16527 + - uid: 20163 components: - type: Transform - pos: 60.5,38.5 - parent: 2 - - uid: 5182 + pos: -11.5,-3.5 + parent: 16527 + - uid: 20164 components: - type: Transform - pos: 57.5,47.5 - parent: 2 - - uid: 5183 + pos: -11.5,-2.5 + parent: 16527 + - uid: 20165 components: - type: Transform - pos: 38.5,24.5 - parent: 2 - - uid: 5184 + pos: -10.5,-2.5 + parent: 16527 + - uid: 20166 components: - type: Transform - pos: 53.5,37.5 - parent: 2 - - uid: 5185 + pos: -9.5,-2.5 + parent: 16527 + - uid: 20167 components: - type: Transform - pos: 52.5,41.5 - parent: 2 - - uid: 5186 + pos: -8.5,-2.5 + parent: 16527 + - uid: 20168 components: - type: Transform - pos: 53.5,38.5 - parent: 2 - - uid: 5187 + pos: -7.5,-2.5 + parent: 16527 + - uid: 20169 components: - type: Transform - pos: 60.5,39.5 - parent: 2 - - uid: 5188 + pos: -11.5,-1.5 + parent: 16527 + - uid: 20170 components: - type: Transform - pos: 56.5,42.5 - parent: 2 - - uid: 5189 + pos: -11.5,-0.5 + parent: 16527 + - uid: 20171 components: - type: Transform - pos: 52.5,38.5 - parent: 2 - - uid: 5190 + pos: -12.5,-0.5 + parent: 16527 + - uid: 20172 components: - type: Transform - pos: 37.5,67.5 - parent: 2 - - uid: 5191 + pos: -13.5,-0.5 + parent: 16527 + - uid: 20173 components: - type: Transform - pos: 70.5,39.5 - parent: 2 - - uid: 5192 + pos: -13.5,2.5 + parent: 16527 + - uid: 20174 components: - type: Transform - pos: 45.5,57.5 - parent: 2 - - uid: 5193 + pos: -12.5,3.5 + parent: 16527 + - uid: 20175 components: - type: Transform - pos: 54.5,41.5 - parent: 2 - - uid: 5194 + pos: -11.5,3.5 + parent: 16527 + - uid: 20176 components: - type: Transform - pos: 53.5,41.5 - parent: 2 - - uid: 5195 + pos: -10.5,3.5 + parent: 16527 + - uid: 20177 components: - type: Transform - pos: 75.5,5.5 - parent: 2 - - uid: 5196 + pos: -4.5,2.5 + parent: 16527 + - uid: 20178 components: - type: Transform - pos: 46.5,-1.5 - parent: 2 - - uid: 5197 + pos: -3.5,2.5 + parent: 16527 + - uid: 20179 components: - type: Transform - pos: 59.5,-1.5 - parent: 2 - - uid: 5198 + pos: -2.5,2.5 + parent: 16527 + - uid: 20180 components: - type: Transform - pos: 44.5,1.5 - parent: 2 - - uid: 5199 + pos: -1.5,2.5 + parent: 16527 + - uid: 20181 components: - type: Transform - pos: 59.5,-2.5 - parent: 2 - - uid: 5200 + pos: -0.5,2.5 + parent: 16527 + - uid: 20182 components: - type: Transform - pos: 59.5,7.5 - parent: 2 - - uid: 5201 + pos: 0.5,2.5 + parent: 16527 + - uid: 20183 components: - type: Transform - pos: 59.5,3.5 - parent: 2 - - uid: 5202 + pos: 1.5,2.5 + parent: 16527 + - uid: 20184 components: - type: Transform - pos: 60.5,7.5 - parent: 2 - - uid: 5203 + pos: 2.5,2.5 + parent: 16527 + - uid: 20185 components: - type: Transform - pos: 58.5,7.5 - parent: 2 - - uid: 5204 + pos: 3.5,2.5 + parent: 16527 + - uid: 20186 components: - type: Transform - pos: 59.5,0.5 - parent: 2 - - uid: 5205 + pos: 4.5,2.5 + parent: 16527 + - uid: 20187 components: - type: Transform - pos: 57.5,7.5 - parent: 2 - - uid: 5206 + pos: 5.5,2.5 + parent: 16527 + - uid: 20188 components: - type: Transform - pos: 59.5,2.5 - parent: 2 - - uid: 5207 + pos: 6.5,2.5 + parent: 16527 + - uid: 20189 components: - type: Transform - pos: 59.5,1.5 - parent: 2 - - uid: 5208 + pos: 7.5,2.5 + parent: 16527 + - uid: 20190 components: - type: Transform - pos: 57.5,3.5 - parent: 2 - - uid: 5209 + pos: 0.5,3.5 + parent: 16527 + - uid: 20191 components: - type: Transform - pos: 39.5,67.5 - parent: 2 - - uid: 5210 + pos: 0.5,4.5 + parent: 16527 + - uid: 20192 components: - type: Transform - pos: 38.5,67.5 - parent: 2 - - uid: 5211 + pos: 0.5,5.5 + parent: 16527 + - uid: 20193 components: - type: Transform - pos: 56.5,47.5 - parent: 2 - - uid: 5212 + pos: 0.5,6.5 + parent: 16527 + - uid: 20194 components: - type: Transform - pos: 39.5,60.5 - parent: 2 - - uid: 5226 + pos: 0.5,1.5 + parent: 16527 + - uid: 20195 components: - type: Transform - pos: 25.5,64.5 - parent: 2 - - uid: 5227 + pos: 0.5,0.5 + parent: 16527 + - uid: 20196 components: - type: Transform - pos: 25.5,65.5 - parent: 2 - - uid: 5228 + pos: 6.5,3.5 + parent: 16527 + - uid: 20197 components: - type: Transform - pos: 25.5,66.5 - parent: 2 - - uid: 5229 + pos: 6.5,4.5 + parent: 16527 + - uid: 20198 components: - type: Transform - pos: 24.5,66.5 - parent: 2 - - uid: 5230 + pos: 6.5,5.5 + parent: 16527 + - uid: 20199 components: - type: Transform - pos: 23.5,66.5 - parent: 2 - - uid: 5231 + pos: 6.5,1.5 + parent: 16527 + - uid: 20200 components: - type: Transform - pos: 22.5,66.5 - parent: 2 - - uid: 5232 + pos: 6.5,0.5 + parent: 16527 + - uid: 20201 components: - type: Transform - pos: 21.5,66.5 - parent: 2 - - uid: 5233 + pos: 6.5,6.5 + parent: 16527 + - uid: 20202 components: - type: Transform - pos: 20.5,66.5 - parent: 2 - - uid: 5234 + pos: 0.5,-0.5 + parent: 16527 + - uid: 20203 components: - type: Transform - pos: 19.5,66.5 - parent: 2 - - uid: 5235 + pos: 0.5,-1.5 + parent: 16527 + - uid: 20204 components: - type: Transform - pos: 18.5,66.5 - parent: 2 - - uid: 5236 + pos: 0.5,-2.5 + parent: 16527 + - uid: 20205 components: - type: Transform - pos: 17.5,66.5 - parent: 2 - - uid: 5237 + pos: 0.5,-3.5 + parent: 16527 + - uid: 20206 components: - type: Transform - pos: 16.5,66.5 - parent: 2 - - uid: 5238 + pos: -0.5,-2.5 + parent: 16527 + - uid: 20207 components: - type: Transform - pos: 15.5,66.5 - parent: 2 - - uid: 5239 + pos: -1.5,-2.5 + parent: 16527 + - uid: 20208 components: - type: Transform - pos: 14.5,66.5 - parent: 2 - - uid: 5240 + pos: -2.5,-2.5 + parent: 16527 + - uid: 20209 components: - type: Transform - pos: 15.5,67.5 - parent: 2 - - uid: 5241 + pos: 1.5,-2.5 + parent: 16527 + - uid: 20210 components: - type: Transform - pos: 16.5,67.5 - parent: 2 - - uid: 5242 + pos: 2.5,-2.5 + parent: 16527 + - uid: 20211 components: - type: Transform - pos: 24.5,65.5 - parent: 2 - - uid: 5243 + pos: 3.5,-2.5 + parent: 16527 + - uid: 20212 components: - type: Transform - pos: 68.5,39.5 - parent: 2 - - uid: 5244 + pos: 0.5,-4.5 + parent: 16527 + - uid: 20213 components: - type: Transform - pos: 67.5,39.5 - parent: 2 - - uid: 5245 + pos: 0.5,-5.5 + parent: 16527 + - uid: 20214 components: - type: Transform - pos: 66.5,39.5 - parent: 2 - - uid: 5246 + pos: 0.5,-6.5 + parent: 16527 + - uid: 20215 components: - type: Transform - pos: 66.5,40.5 - parent: 2 - - uid: 5247 + pos: 0.5,-7.5 + parent: 16527 + - uid: 20216 components: - type: Transform - pos: 66.5,41.5 - parent: 2 - - uid: 5248 + pos: -0.5,-6.5 + parent: 16527 + - uid: 20217 components: - type: Transform - pos: 54.5,57.5 - parent: 2 - - uid: 5249 + pos: -1.5,-6.5 + parent: 16527 + - uid: 20218 components: - type: Transform - pos: 55.5,57.5 - parent: 2 - - uid: 5250 + pos: -2.5,-6.5 + parent: 16527 + - uid: 20219 components: - type: Transform - pos: 55.5,58.5 - parent: 2 - - uid: 5251 + pos: -3.5,-6.5 + parent: 16527 + - uid: 20220 components: - type: Transform - pos: 54.5,54.5 - parent: 2 - - uid: 5252 + pos: -4.5,-6.5 + parent: 16527 + - uid: 20221 components: - type: Transform - pos: 55.5,54.5 - parent: 2 - - uid: 5253 + pos: 1.5,-6.5 + parent: 16527 + - uid: 20222 components: - type: Transform - pos: 46.5,65.5 - parent: 2 - - uid: 5254 + pos: 2.5,-6.5 + parent: 16527 + - uid: 20223 components: - type: Transform - pos: 42.5,66.5 - parent: 2 - - uid: 5255 + pos: 3.5,-6.5 + parent: 16527 + - uid: 20224 components: - type: Transform - pos: 42.5,65.5 - parent: 2 - - uid: 5256 + pos: 4.5,-6.5 + parent: 16527 + - uid: 20225 components: - type: Transform - pos: 47.5,63.5 - parent: 2 - - uid: 5257 + pos: 5.5,-6.5 + parent: 16527 + - uid: 20226 components: - type: Transform - pos: 47.5,60.5 - parent: 2 - - uid: 5258 + pos: 0.5,-8.5 + parent: 16527 + - uid: 20230 components: - type: Transform - pos: 48.5,60.5 - parent: 2 - - uid: 5259 + pos: 0.5,-9.5 + parent: 16527 + - uid: 20231 components: - type: Transform - pos: 50.5,73.5 - parent: 2 - - uid: 5260 + pos: 0.5,-10.5 + parent: 16527 + - uid: 20232 components: - type: Transform - pos: 47.5,75.5 - parent: 2 - - uid: 5261 + pos: 0.5,-11.5 + parent: 16527 + - uid: 20233 components: - type: Transform - pos: 47.5,76.5 - parent: 2 - - uid: 5262 + pos: -0.5,-11.5 + parent: 16527 + - uid: 20238 components: - type: Transform - pos: 47.5,77.5 - parent: 2 - - uid: 5263 + pos: -1.5,-11.5 + parent: 16527 + - uid: 20239 components: - type: Transform - pos: 47.5,78.5 - parent: 2 - - uid: 5264 + pos: -2.5,-11.5 + parent: 16527 + - uid: 20240 components: - type: Transform - pos: 47.5,79.5 - parent: 2 - - uid: 5265 + pos: -3.5,-11.5 + parent: 16527 + - uid: 20241 components: - type: Transform - pos: 47.5,80.5 - parent: 2 - - uid: 5266 + pos: -3.5,-10.5 + parent: 16527 + - uid: 20242 components: - type: Transform - pos: 47.5,81.5 - parent: 2 - - uid: 5267 + pos: -4.5,-10.5 + parent: 16527 + - uid: 20243 components: - type: Transform - pos: 46.5,81.5 - parent: 2 - - uid: 5268 + pos: 5.5,-10.5 + parent: 16527 + - uid: 20244 components: - type: Transform - pos: 45.5,81.5 - parent: 2 - - uid: 5269 + pos: 4.5,-10.5 + parent: 16527 + - uid: 20245 components: - type: Transform - pos: 45.5,80.5 - parent: 2 - - uid: 5270 + pos: 4.5,-11.5 + parent: 16527 + - uid: 20246 components: - type: Transform - pos: 50.5,81.5 - parent: 2 - - uid: 5271 + pos: 3.5,-11.5 + parent: 16527 + - uid: 20247 components: - type: Transform - pos: 50.5,80.5 - parent: 2 - - uid: 5272 + pos: 2.5,-11.5 + parent: 16527 + - uid: 20248 components: - type: Transform - pos: 48.5,72.5 - parent: 2 - - uid: 5273 + pos: 1.5,-11.5 + parent: 16527 + - uid: 20249 components: - type: Transform - pos: 49.5,72.5 - parent: 2 - - uid: 5274 + pos: -0.5,-12.5 + parent: 16527 + - uid: 20251 components: - type: Transform - pos: 50.5,72.5 - parent: 2 - - uid: 5275 + pos: 1.5,-12.5 + parent: 16527 + - uid: 20252 components: - type: Transform - pos: 50.5,73.5 - parent: 2 - - uid: 5276 + pos: 12.5,-9.5 + parent: 16527 + - uid: 20253 components: - type: Transform - pos: 40.5,71.5 - parent: 2 - - uid: 5277 + pos: 12.5,-8.5 + parent: 16527 + - uid: 20254 components: - type: Transform - pos: 39.5,71.5 - parent: 2 - - uid: 5278 + pos: 12.5,-7.5 + parent: 16527 + - uid: 20255 components: - type: Transform - pos: 45.5,60.5 - parent: 2 - - uid: 5279 + pos: 12.5,-6.5 + parent: 16527 + - uid: 20256 components: - type: Transform - pos: 44.5,60.5 - parent: 2 - - uid: 5280 + pos: 12.5,-5.5 + parent: 16527 + - uid: 20257 components: - type: Transform - pos: 46.5,60.5 - parent: 2 - - uid: 5281 + pos: 12.5,-4.5 + parent: 16527 + - uid: 20258 components: - type: Transform - pos: 45.5,0.5 - parent: 2 - - uid: 5282 + pos: 14.5,-8.5 + parent: 16527 + - uid: 20259 components: - type: Transform - pos: 77.5,5.5 - parent: 2 - - uid: 5283 + pos: 15.5,-8.5 + parent: 16527 + - uid: 20260 components: - type: Transform - pos: 78.5,5.5 - parent: 2 - - uid: 5284 + pos: 16.5,-8.5 + parent: 16527 + - uid: 20261 components: - type: Transform - pos: 76.5,5.5 - parent: 2 - - uid: 5285 + pos: 17.5,-8.5 + parent: 16527 + - uid: 20262 components: - type: Transform - pos: 48.5,3.5 - parent: 2 - - uid: 5286 + pos: 18.5,-8.5 + parent: 16527 + - uid: 20263 components: - type: Transform - pos: 47.5,3.5 - parent: 2 - - uid: 5287 + pos: 19.5,-8.5 + parent: 16527 + - uid: 20267 components: - type: Transform - pos: 46.5,3.5 - parent: 2 - - uid: 5288 + pos: 19.5,-7.5 + parent: 16527 + - uid: 20268 components: - type: Transform - pos: 45.5,3.5 - parent: 2 - - uid: 5289 + pos: 19.5,-6.5 + parent: 16527 + - uid: 20269 components: - type: Transform - pos: 45.5,2.5 - parent: 2 - - uid: 5290 + pos: 19.5,-5.5 + parent: 16527 + - uid: 20270 components: - type: Transform - pos: 47.5,71.5 - parent: 2 - - uid: 5291 + pos: 19.5,-4.5 + parent: 16527 + - uid: 20271 components: - type: Transform - pos: 47.5,70.5 - parent: 2 - - uid: 5292 + pos: 19.5,-3.5 + parent: 16527 + - uid: 20272 components: - type: Transform - pos: 47.5,69.5 - parent: 2 - - uid: 5834 + pos: 19.5,-2.5 + parent: 16527 + - uid: 20273 components: - type: Transform - pos: 20.5,-36.5 - parent: 2 - - uid: 5835 + pos: 20.5,-2.5 + parent: 16527 + - uid: 20274 components: - type: Transform - pos: 23.5,-34.5 - parent: 2 - - uid: 5836 + pos: 20.5,-1.5 + parent: 16527 + - uid: 20275 components: - type: Transform - pos: 25.5,-36.5 - parent: 2 - - uid: 5837 + pos: 21.5,-1.5 + parent: 16527 + - uid: 20276 components: - type: Transform - pos: 19.5,-37.5 - parent: 2 - - uid: 5838 + pos: 21.5,-0.5 + parent: 16527 + - uid: 20277 components: - type: Transform - pos: 20.5,-37.5 - parent: 2 - - uid: 5840 + pos: 21.5,0.5 + parent: 16527 + - uid: 20278 components: - type: Transform - pos: 21.5,-38.5 - parent: 2 - - uid: 5841 + pos: 21.5,1.5 + parent: 16527 + - uid: 20280 components: - type: Transform - pos: 24.5,-38.5 - parent: 2 - - uid: 6159 + pos: 21.5,2.5 + parent: 16527 + - uid: 20281 components: - type: Transform - pos: 20.5,-34.5 - parent: 2 - - uid: 6170 + pos: 21.5,3.5 + parent: 16527 + - uid: 20282 components: - type: Transform - pos: 30.5,-38.5 - parent: 2 - - uid: 6521 + pos: 21.5,4.5 + parent: 16527 + - uid: 20283 components: - type: Transform - pos: 55.5,38.5 - parent: 2 - - uid: 7592 + pos: 21.5,5.5 + parent: 16527 + - uid: 20284 components: - type: Transform - pos: 13.5,25.5 - parent: 2 - - uid: 8071 + pos: 21.5,6.5 + parent: 16527 + - uid: 20285 components: - type: Transform - pos: 57.5,33.5 - parent: 2 - - uid: 10900 + pos: 21.5,7.5 + parent: 16527 + - uid: 20287 components: - type: Transform - pos: 28.5,50.5 - parent: 2 - - uid: 10901 + pos: 21.5,8.5 + parent: 16527 + - uid: 20288 components: - type: Transform - pos: 27.5,53.5 - parent: 2 - - uid: 10902 + pos: 21.5,9.5 + parent: 16527 + - uid: 20289 components: - type: Transform - pos: 24.5,53.5 - parent: 2 - - uid: 10903 + pos: 20.5,9.5 + parent: 16527 + - uid: 20290 components: - type: Transform - pos: 23.5,53.5 - parent: 2 - - uid: 10916 + pos: 20.5,10.5 + parent: 16527 + - uid: 20291 components: - type: Transform - pos: 27.5,50.5 - parent: 2 - - uid: 10938 + pos: 19.5,10.5 + parent: 16527 + - uid: 20292 components: - type: Transform - pos: 32.5,60.5 - parent: 2 - - uid: 11035 + pos: 18.5,10.5 + parent: 16527 + - uid: 20293 components: - type: Transform - pos: 32.5,55.5 - parent: 2 - - uid: 11175 + pos: 17.5,10.5 + parent: 16527 + - uid: 20294 components: - type: Transform - pos: 30.5,54.5 - parent: 2 - - uid: 11220 + pos: 12.5,-3.5 + parent: 16527 + - uid: 20295 components: - type: Transform - pos: 30.5,55.5 - parent: 2 - - uid: 11351 + pos: 12.5,-2.5 + parent: 16527 + - uid: 20296 components: - type: Transform - pos: 30.5,53.5 - parent: 2 - - uid: 11440 + pos: 12.5,-1.5 + parent: 16527 + - uid: 20297 components: - type: Transform - pos: 30.5,52.5 - parent: 2 - - uid: 11441 + pos: 14.5,-0.5 + parent: 16527 + - uid: 20298 components: - type: Transform - pos: 30.5,51.5 - parent: 2 - - uid: 11442 + pos: 14.5,0.5 + parent: 16527 + - uid: 20299 components: - type: Transform - pos: 30.5,50.5 - parent: 2 - - uid: 11444 + pos: 14.5,1.5 + parent: 16527 + - uid: 20300 components: - type: Transform - pos: 30.5,49.5 - parent: 2 - - uid: 11734 + pos: 14.5,2.5 + parent: 16527 + - uid: 20301 components: - type: Transform - pos: 31.5,60.5 - parent: 2 - - uid: 11838 + pos: 14.5,3.5 + parent: 16527 + - uid: 20302 components: - type: Transform - pos: 34.5,63.5 - parent: 2 - - uid: 11883 + pos: 15.5,3.5 + parent: 16527 + - uid: 20303 components: - type: Transform - pos: 33.5,61.5 - parent: 2 - - uid: 11922 + pos: 16.5,3.5 + parent: 16527 + - uid: 20304 components: - type: Transform - pos: 33.5,63.5 - parent: 2 - - uid: 11925 + pos: 17.5,3.5 + parent: 16527 + - uid: 20305 components: - type: Transform - pos: 33.5,60.5 - parent: 2 - - uid: 11926 + pos: 18.5,3.5 + parent: 16527 + - uid: 20306 components: - type: Transform - pos: 33.5,62.5 - parent: 2 - - uid: 11945 + pos: 19.5,3.5 + parent: 16527 + - uid: 20307 components: - type: Transform - pos: 22.5,-41.5 - parent: 2 - - uid: 12241 + pos: 13.5,2.5 + parent: 16527 + - uid: 20308 components: - type: Transform - pos: 20.5,53.5 - parent: 2 - - uid: 13886 + pos: 12.5,2.5 + parent: 16527 + - uid: 20309 components: - type: Transform - pos: 29.5,50.5 - parent: 2 - - uid: 13887 + pos: 11.5,2.5 + parent: 16527 + - uid: 20310 components: - type: Transform - pos: 26.5,50.5 - parent: 2 - - uid: 13905 + pos: 10.5,2.5 + parent: 16527 + - uid: 20311 components: - type: Transform - pos: 20.5,-35.5 - parent: 2 - - uid: 13910 + pos: 13.5,4.5 + parent: 16527 + - uid: 20312 components: - type: Transform - pos: 31.5,55.5 - parent: 2 - - uid: 15005 + pos: 12.5,4.5 + parent: 16527 + - uid: 20313 components: - type: Transform - pos: 25.5,-40.5 - parent: 2 - - uid: 15118 + pos: 11.5,4.5 + parent: 16527 + - uid: 20314 components: - type: Transform - pos: 46.5,-13.5 - parent: 2 - - uid: 15438 + pos: 10.5,4.5 + parent: 16527 + - uid: 20315 components: - type: Transform - pos: 25.5,-37.5 - parent: 2 - - uid: 15693 + pos: 14.5,4.5 + parent: 16527 + - uid: 20317 components: - type: Transform - pos: 29.5,-38.5 - parent: 2 - - uid: 15925 + pos: 14.5,5.5 + parent: 16527 + - uid: 20318 components: - type: Transform - pos: 27.5,-14.5 - parent: 2 - - uid: 15954 + pos: 14.5,6.5 + parent: 16527 + - uid: 20319 components: - type: Transform - pos: 25.5,-38.5 - parent: 2 - - uid: 16041 + pos: 8.5,10.5 + parent: 16527 + - uid: 20320 components: - type: Transform - pos: 22.5,-40.5 - parent: 2 - - uid: 16157 + pos: 9.5,10.5 + parent: 16527 + - uid: 20321 components: - type: Transform - pos: 22.5,-34.5 - parent: 2 - - uid: 16215 + pos: 10.5,10.5 + parent: 16527 + - uid: 20322 components: - type: Transform - pos: 36.5,59.5 - parent: 2 - - uid: 16248 + pos: 11.5,10.5 + parent: 16527 + - uid: 20323 components: - type: Transform - pos: 21.5,-34.5 - parent: 2 - - uid: 16250 + pos: 11.5,9.5 + parent: 16527 + - uid: 20324 components: - type: Transform - pos: -5.5,17.5 - parent: 16504 - - uid: 16251 + pos: 12.5,9.5 + parent: 16527 + - uid: 20325 components: - type: Transform - pos: 19.5,-36.5 - parent: 2 - - uid: 16255 + pos: 12.5,8.5 + parent: 16527 + - uid: 20326 components: - type: Transform - pos: 22.5,-38.5 - parent: 2 - - uid: 16274 + pos: 4.5,-2.5 + parent: 16527 + - uid: 20328 components: - type: Transform - pos: 24.5,-41.5 - parent: 2 - - uid: 16289 + pos: 13.5,8.5 + parent: 16527 + - uid: 20329 components: - type: Transform - pos: 23.5,-41.5 - parent: 2 - - uid: 16446 + pos: 6.5,-0.5 + parent: 16527 + - uid: 20331 components: - type: Transform - pos: 25.5,-39.5 - parent: 2 - - uid: 16460 + pos: 5.5,-0.5 + parent: 16527 + - uid: 20332 components: - type: Transform - pos: 25.5,-41.5 - parent: 2 - - uid: 16462 + pos: 7.5,-0.5 + parent: 16527 + - uid: 20340 components: - type: Transform - pos: 23.5,-32.5 - parent: 2 - - uid: 18304 + pos: 8.5,-0.5 + parent: 16527 + - uid: 20341 components: - type: Transform - pos: 15.5,25.5 - parent: 16504 - - uid: 18305 + pos: 9.5,-0.5 + parent: 16527 + - uid: 20342 components: - type: Transform - pos: 14.5,22.5 - parent: 16504 - - uid: 18306 + pos: 9.5,-1.5 + parent: 16527 + - uid: 20343 components: - type: Transform - pos: 14.5,23.5 - parent: 16504 - - uid: 18307 + pos: 9.5,-2.5 + parent: 16527 + - uid: 20344 components: - type: Transform - pos: 14.5,24.5 - parent: 16504 - - uid: 18308 + pos: 9.5,-3.5 + parent: 16527 + - uid: 20345 components: - type: Transform - pos: -18.5,3.5 - parent: 16504 - - uid: 18309 + pos: 9.5,-4.5 + parent: 16527 + - uid: 20346 components: - type: Transform - pos: -17.5,3.5 - parent: 16504 - - uid: 18310 + pos: 8.5,-4.5 + parent: 16527 + - uid: 20347 components: - type: Transform - pos: -16.5,3.5 - parent: 16504 - - uid: 18311 + pos: 7.5,-4.5 + parent: 16527 + - uid: 20348 components: - type: Transform - pos: -15.5,3.5 - parent: 16504 - - uid: 18312 + pos: 6.5,-4.5 + parent: 16527 + - uid: 20349 components: - type: Transform - pos: -14.5,3.5 - parent: 16504 - - uid: 18313 + pos: 5.5,-4.5 + parent: 16527 + - uid: 20350 components: - type: Transform - pos: -13.5,3.5 - parent: 16504 - - uid: 18314 + pos: 5.5,-3.5 + parent: 16527 + - uid: 20351 components: - type: Transform - pos: -11.5,-9.5 - parent: 16504 - - uid: 18315 + pos: 5.5,-2.5 + parent: 16527 + - uid: 20352 components: - type: Transform - pos: -11.5,-8.5 - parent: 16504 - - uid: 18316 + pos: 5.5,-1.5 + parent: 16527 + - uid: 20353 components: - type: Transform - pos: -11.5,-7.5 - parent: 16504 - - uid: 18317 + pos: -4.5,37.5 + parent: 16527 + - uid: 20354 components: - type: Transform - pos: -11.5,-6.5 - parent: 16504 - - uid: 18318 + pos: 5.5,37.5 + parent: 16527 + - uid: 20355 components: - type: Transform - pos: -11.5,-5.5 - parent: 16504 - - uid: 18319 + pos: 9.5,35.5 + parent: 16527 + - uid: 20356 components: - type: Transform - pos: -11.5,-4.5 - parent: 16504 - - uid: 18320 + pos: 9.5,37.5 + parent: 16527 + - uid: 20357 components: - type: Transform - pos: -11.5,-3.5 - parent: 16504 - - uid: 18321 + pos: 30.5,24.5 + parent: 16527 + - uid: 20358 components: - type: Transform - pos: -11.5,-2.5 - parent: 16504 - - uid: 18322 + pos: 21.5,21.5 + parent: 16527 + - uid: 21184 components: - type: Transform - pos: -11.5,-1.5 - parent: 16504 - - uid: 18323 + pos: 39.5,57.5 + parent: 2 + - uid: 21224 components: - type: Transform - pos: -12.5,-1.5 - parent: 16504 - - uid: 18324 + pos: 27.5,49.5 + parent: 2 + - uid: 21290 components: - type: Transform - pos: -12.5,-0.5 - parent: 16504 - - uid: 18325 + pos: 19.5,48.5 + parent: 2 + - uid: 21356 components: - type: Transform - pos: -12.5,0.5 - parent: 16504 - - uid: 18326 + pos: 39.5,52.5 + parent: 2 + - uid: 21357 components: - type: Transform - pos: -13.5,0.5 - parent: 16504 - - uid: 18327 + pos: 39.5,51.5 + parent: 2 + - uid: 21362 components: - type: Transform - pos: -13.5,1.5 - parent: 16504 - - uid: 18328 + pos: 41.5,49.5 + parent: 2 + - uid: 21363 components: - type: Transform - pos: -13.5,2.5 - parent: 16504 - - uid: 18329 + pos: 39.5,48.5 + parent: 2 + - uid: 21365 components: - type: Transform - pos: -13.5,4.5 - parent: 16504 - - uid: 18330 + pos: 41.5,50.5 + parent: 2 + - uid: 21366 components: - type: Transform - pos: -13.5,5.5 - parent: 16504 - - uid: 18331 + pos: 36.5,50.5 + parent: 2 + - uid: 21367 components: - type: Transform - pos: -13.5,6.5 - parent: 16504 - - uid: 18332 + pos: 36.5,51.5 + parent: 2 + - uid: 21368 components: - type: Transform - pos: -12.5,6.5 - parent: 16504 - - uid: 18333 + pos: 36.5,52.5 + parent: 2 + - uid: 21415 components: - type: Transform - pos: -12.5,7.5 - parent: 16504 - - uid: 18334 + pos: 27.5,47.5 + parent: 2 + - uid: 21524 components: - type: Transform - pos: 12.5,-9.5 - parent: 16504 - - uid: 18335 + pos: 28.5,-14.5 + parent: 2 + - uid: 21525 components: - type: Transform - pos: 12.5,-8.5 - parent: 16504 - - uid: 18336 + pos: 66.5,8.5 + parent: 2 + - uid: 21526 components: - type: Transform - pos: 12.5,-7.5 - parent: 16504 - - uid: 18337 + pos: 67.5,8.5 + parent: 2 + - uid: 21527 components: - type: Transform - pos: 12.5,-6.5 - parent: 16504 - - uid: 18338 + pos: 68.5,8.5 + parent: 2 + - uid: 21529 components: - type: Transform - pos: 12.5,-5.5 - parent: 16504 - - uid: 18339 + pos: 66.5,7.5 + parent: 2 + - uid: 21570 components: - type: Transform - pos: 12.5,-4.5 - parent: 16504 - - uid: 18340 + pos: 37.5,55.5 + parent: 2 + - uid: 21575 components: - type: Transform - pos: 12.5,-3.5 - parent: 16504 - - uid: 18341 + pos: 35.5,52.5 + parent: 2 + - uid: 21576 components: - type: Transform - pos: 12.5,-2.5 - parent: 16504 - - uid: 18342 + pos: 34.5,52.5 + parent: 2 + - uid: 21577 components: - type: Transform - pos: 12.5,-1.5 - parent: 16504 - - uid: 18343 + pos: 34.5,54.5 + parent: 2 + - uid: 21680 components: - type: Transform - pos: 13.5,-1.5 - parent: 16504 - - uid: 18344 + pos: 11.5,45.5 + parent: 2 + - uid: 21708 components: - type: Transform - pos: 13.5,-0.5 - parent: 16504 - - uid: 18345 + pos: 38.5,53.5 + parent: 2 + - uid: 21735 components: - type: Transform - pos: 14.5,-0.5 - parent: 16504 - - uid: 18346 + pos: 22.5,-40.5 + parent: 2 + - uid: 21736 components: - type: Transform - pos: 14.5,0.5 - parent: 16504 - - uid: 18347 + pos: 22.5,-41.5 + parent: 2 + - uid: 21737 components: - type: Transform - pos: 19.5,3.5 - parent: 16504 - - uid: 18348 + pos: 22.5,-43.5 + parent: 2 + - uid: 21738 components: - type: Transform - pos: 18.5,3.5 - parent: 16504 - - uid: 18349 + pos: 22.5,-42.5 + parent: 2 + - uid: 21739 components: - type: Transform - pos: 17.5,3.5 - parent: 16504 - - uid: 18350 + pos: 21.5,-42.5 + parent: 2 + - uid: 21740 components: - type: Transform - pos: 16.5,3.5 - parent: 16504 - - uid: 18351 + pos: 20.5,-42.5 + parent: 2 + - uid: 21741 components: - type: Transform - pos: 15.5,3.5 - parent: 16504 - - uid: 18352 + pos: 19.5,-42.5 + parent: 2 + - uid: 21742 components: - type: Transform - pos: 14.5,3.5 - parent: 16504 - - uid: 18353 + pos: 23.5,-42.5 + parent: 2 + - uid: 21743 components: - type: Transform - pos: 14.5,1.5 - parent: 16504 - - uid: 18354 + pos: 24.5,-42.5 + parent: 2 + - uid: 21744 components: - type: Transform - pos: 14.5,2.5 - parent: 16504 - - uid: 18355 + pos: 25.5,-42.5 + parent: 2 + - uid: 21745 components: - type: Transform - pos: 14.5,4.5 - parent: 16504 - - uid: 18356 + pos: 25.5,-36.5 + parent: 2 + - uid: 21746 components: - type: Transform - pos: 14.5,5.5 - parent: 16504 - - uid: 18357 + pos: 25.5,-38.5 + parent: 2 + - uid: 21747 components: - type: Transform - pos: 14.5,6.5 - parent: 16504 - - uid: 18358 + pos: 25.5,-37.5 + parent: 2 + - uid: 21748 components: - type: Transform - pos: 14.5,7.5 - parent: 16504 - - uid: 18359 + pos: 26.5,-38.5 + parent: 2 + - uid: 21749 components: - type: Transform - pos: 13.5,7.5 - parent: 16504 - - uid: 18360 + pos: 27.5,-38.5 + parent: 2 + - uid: 21750 components: - type: Transform - pos: 13.5,8.5 - parent: 16504 - - uid: 18361 + pos: 29.5,-38.5 + parent: 2 + - uid: 21751 components: - type: Transform - pos: 12.5,8.5 - parent: 16504 - - uid: 18362 + pos: 30.5,-38.5 + parent: 2 + - uid: 21752 components: - type: Transform - pos: 12.5,9.5 - parent: 16504 - - uid: 18363 + pos: 28.5,-38.5 + parent: 2 + - uid: 21753 components: - type: Transform - pos: 11.5,9.5 - parent: 16504 - - uid: 18364 + pos: 24.5,-38.5 + parent: 2 + - uid: 21754 components: - type: Transform - pos: 11.5,10.5 - parent: 16504 - - uid: 18365 + pos: 23.5,-38.5 + parent: 2 + - uid: 21755 components: - type: Transform - pos: 10.5,10.5 - parent: 16504 - - uid: 18366 + pos: 19.5,-36.5 + parent: 2 + - uid: 21756 components: - type: Transform - pos: 9.5,10.5 - parent: 16504 - - uid: 18367 + pos: 19.5,-38.5 + parent: 2 + - uid: 21757 components: - type: Transform - pos: 8.5,10.5 - parent: 16504 - - uid: 18368 + pos: 19.5,-37.5 + parent: 2 + - uid: 21758 components: - type: Transform - pos: 7.5,10.5 - parent: 16504 - - uid: 18369 + pos: 18.5,-38.5 + parent: 2 + - uid: 21759 components: - type: Transform - pos: 6.5,10.5 - parent: 16504 - - uid: 18370 + pos: 17.5,-38.5 + parent: 2 + - uid: 21760 components: - type: Transform - pos: 5.5,10.5 - parent: 16504 - - uid: 18371 + pos: 15.5,-38.5 + parent: 2 + - uid: 21761 components: - type: Transform - pos: 4.5,10.5 - parent: 16504 - - uid: 18372 + pos: 16.5,-38.5 + parent: 2 + - uid: 21762 components: - type: Transform - pos: 3.5,10.5 - parent: 16504 - - uid: 18373 + pos: 20.5,-38.5 + parent: 2 + - uid: 21763 components: - type: Transform - pos: 2.5,10.5 - parent: 16504 - - uid: 18374 + pos: 21.5,-38.5 + parent: 2 + - uid: 21764 components: - type: Transform - pos: 1.5,10.5 - parent: 16504 - - uid: 18375 + pos: 23.5,-32.5 + parent: 2 + - uid: 21765 components: - type: Transform - pos: 0.5,10.5 - parent: 16504 - - uid: 18376 + pos: 23.5,-33.5 + parent: 2 + - uid: 21766 components: - type: Transform - pos: -0.5,10.5 - parent: 16504 - - uid: 18377 + pos: 23.5,-34.5 + parent: 2 + - uid: 21767 components: - type: Transform - pos: -1.5,10.5 - parent: 16504 - - uid: 18378 - components: - - type: Transform - pos: -2.5,10.5 - parent: 16504 - - uid: 18379 + pos: 22.5,-34.5 + parent: 2 + - uid: 21768 components: - type: Transform - pos: -3.5,10.5 - parent: 16504 - - uid: 18380 + pos: 21.5,-34.5 + parent: 2 + - uid: 21769 components: - type: Transform - pos: -4.5,10.5 - parent: 16504 - - uid: 18381 + pos: 20.5,-34.5 + parent: 2 + - uid: 21770 components: - type: Transform - pos: -5.5,10.5 - parent: 16504 - - uid: 18382 + pos: 24.5,-34.5 + parent: 2 + - uid: 21902 components: - type: Transform - pos: -6.5,10.5 - parent: 16504 - - uid: 18383 + pos: 61.5,27.5 + parent: 2 + - uid: 21923 components: - type: Transform - pos: -7.5,10.5 - parent: 16504 - - uid: 18384 + pos: 51.5,85.5 + parent: 2 + - uid: 21924 components: - type: Transform - pos: -8.5,10.5 - parent: 16504 - - uid: 18385 + pos: 51.5,86.5 + parent: 2 + - uid: 21925 components: - type: Transform - pos: -9.5,10.5 - parent: 16504 - - uid: 18386 + pos: 53.5,84.5 + parent: 2 + - uid: 21926 components: - type: Transform - pos: -6.5,6.5 - parent: 16504 - - uid: 18387 + pos: 53.5,85.5 + parent: 2 + - uid: 21927 components: - type: Transform - pos: -10.5,9.5 - parent: 16504 - - uid: 18388 + pos: 53.5,86.5 + parent: 2 + - uid: 21928 components: - type: Transform - pos: -11.5,8.5 - parent: 16504 - - uid: 18389 + pos: 55.5,83.5 + parent: 2 + - uid: 21929 components: - type: Transform - pos: -6.5,7.5 - parent: 16504 - - uid: 18390 + pos: 56.5,83.5 + parent: 2 + - uid: 21930 components: - type: Transform - pos: -6.5,8.5 - parent: 16504 - - uid: 18391 + pos: 57.5,83.5 + parent: 2 + - uid: 21931 components: - type: Transform - pos: -11.5,7.5 - parent: 16504 - - uid: 18392 + pos: 12.5,37.5 + parent: 2 + - uid: 21932 components: - type: Transform - pos: -10.5,8.5 - parent: 16504 - - uid: 18393 + pos: 13.5,37.5 + parent: 2 + - uid: 21933 components: - type: Transform - pos: -9.5,9.5 - parent: 16504 - - uid: 18394 + pos: 14.5,37.5 + parent: 2 + - uid: 21934 components: - type: Transform - pos: -6.5,9.5 - parent: 16504 - - uid: 18395 + pos: 15.5,37.5 + parent: 2 + - uid: 21935 components: - type: Transform - pos: 7.5,11.5 - parent: 16504 - - uid: 18396 + pos: 16.5,37.5 + parent: 2 + - uid: 21936 components: - type: Transform - pos: 7.5,12.5 - parent: 16504 - - uid: 18397 + pos: 17.5,37.5 + parent: 2 + - uid: 21937 components: - type: Transform - pos: 7.5,13.5 - parent: 16504 - - uid: 18398 + pos: 19.5,37.5 + parent: 2 + - uid: 21938 components: - type: Transform - pos: -6.5,11.5 - parent: 16504 - - uid: 18399 + pos: 20.5,37.5 + parent: 2 + - uid: 21939 components: - type: Transform - pos: -6.5,12.5 - parent: 16504 - - uid: 18400 + pos: 21.5,37.5 + parent: 2 + - uid: 21940 components: - type: Transform - pos: -6.5,13.5 - parent: 16504 - - uid: 18401 + pos: 22.5,37.5 + parent: 2 + - uid: 21941 components: - type: Transform - pos: -14.5,17.5 - parent: 16504 - - uid: 18402 + pos: 23.5,37.5 + parent: 2 + - uid: 21942 components: - type: Transform - pos: -14.5,16.5 - parent: 16504 - - uid: 18403 + pos: 18.5,37.5 + parent: 2 + - uid: 21943 components: - type: Transform - pos: -14.5,15.5 - parent: 16504 - - uid: 18404 + pos: 24.5,37.5 + parent: 2 + - uid: 21944 components: - type: Transform - pos: -13.5,15.5 - parent: 16504 - - uid: 18405 + pos: 25.5,37.5 + parent: 2 + - uid: 21945 components: - type: Transform - pos: -12.5,15.5 - parent: 16504 - - uid: 18406 + pos: 26.5,37.5 + parent: 2 + - uid: 21946 components: - type: Transform - pos: -11.5,15.5 - parent: 16504 - - uid: 18407 + pos: 27.5,37.5 + parent: 2 + - uid: 21947 components: - type: Transform - pos: -10.5,15.5 - parent: 16504 - - uid: 18408 + pos: 28.5,37.5 + parent: 2 + - uid: 21948 components: - type: Transform - pos: -25.5,24.5 - parent: 16504 - - uid: 18409 + pos: 29.5,37.5 + parent: 2 + - uid: 21949 components: - type: Transform - pos: -25.5,25.5 - parent: 16504 - - uid: 18410 + pos: 30.5,37.5 + parent: 2 + - uid: 21950 components: - type: Transform - pos: -25.5,26.5 - parent: 16504 - - uid: 18411 + pos: 31.5,37.5 + parent: 2 + - uid: 21951 components: - type: Transform - pos: -26.5,26.5 - parent: 16504 - - uid: 18412 + pos: 32.5,37.5 + parent: 2 + - uid: 21952 components: - type: Transform - pos: -27.5,26.5 - parent: 16504 - - uid: 18413 + pos: 33.5,37.5 + parent: 2 + - uid: 21953 components: - type: Transform - pos: -9.5,16.5 - parent: 16504 - - uid: 18414 + pos: 34.5,37.5 + parent: 2 + - uid: 21954 components: - type: Transform - pos: -9.5,15.5 - parent: 16504 - - uid: 18415 + pos: 35.5,37.5 + parent: 2 + - uid: 21955 components: - type: Transform - pos: -8.5,16.5 - parent: 16504 - - uid: 18416 + pos: 36.5,37.5 + parent: 2 + - uid: 21956 components: - type: Transform - pos: -7.5,16.5 - parent: 16504 - - uid: 18417 + pos: 36.5,36.5 + parent: 2 + - uid: 21957 components: - type: Transform - pos: -6.5,16.5 - parent: 16504 - - uid: 18418 + pos: 36.5,35.5 + parent: 2 + - uid: 21958 components: - type: Transform - pos: -5.5,16.5 - parent: 16504 - - uid: 18419 + pos: 36.5,34.5 + parent: 2 + - uid: 21984 components: - type: Transform - pos: -4.5,16.5 - parent: 16504 - - uid: 18420 + pos: -6.5,22.5 + parent: 2 + - uid: 21985 components: - type: Transform - pos: -3.5,16.5 - parent: 16504 - - uid: 18421 + pos: -6.5,23.5 + parent: 2 + - uid: 22212 components: - type: Transform - pos: -2.5,16.5 - parent: 16504 - - uid: 18422 + pos: 77.5,54.5 + parent: 2 + - uid: 22213 components: - type: Transform - pos: -1.5,16.5 - parent: 16504 - - uid: 18423 + pos: 77.5,52.5 + parent: 2 + - uid: 22214 components: - type: Transform - pos: -0.5,16.5 - parent: 16504 - - uid: 18424 + pos: 77.5,53.5 + parent: 2 + - uid: 22215 components: - type: Transform - pos: -0.5,15.5 - parent: 16504 - - uid: 18425 + pos: 76.5,52.5 + parent: 2 + - uid: 22216 components: - type: Transform - pos: -0.5,14.5 - parent: 16504 - - uid: 18426 + pos: 75.5,52.5 + parent: 2 + - uid: 22217 components: - type: Transform - pos: -0.5,13.5 - parent: 16504 - - uid: 18427 + pos: 74.5,52.5 + parent: 2 + - uid: 22218 components: - type: Transform - pos: -0.5,12.5 - parent: 16504 - - uid: 18428 + pos: 78.5,52.5 + parent: 2 + - uid: 22219 components: - type: Transform - pos: -0.5,11.5 - parent: 16504 - - uid: 18429 + pos: 79.5,52.5 + parent: 2 + - uid: 22255 components: - type: Transform - pos: 1.5,11.5 - parent: 16504 - - uid: 18430 + pos: 44.5,68.5 + parent: 2 + - uid: 22256 components: - type: Transform - pos: 1.5,12.5 - parent: 16504 - - uid: 18431 + pos: 44.5,66.5 + parent: 2 + - uid: 22273 components: - type: Transform - pos: 1.5,13.5 - parent: 16504 - - uid: 18432 + pos: 8.5,25.5 + parent: 2 + - uid: 22274 components: - type: Transform - pos: 1.5,14.5 - parent: 16504 - - uid: 18433 + pos: 6.5,24.5 + parent: 2 + - uid: 22275 components: - type: Transform - pos: 1.5,15.5 - parent: 16504 - - uid: 18434 + pos: 6.5,23.5 + parent: 2 + - uid: 22276 components: - type: Transform - pos: 1.5,16.5 - parent: 16504 - - uid: 18435 + pos: 6.5,22.5 + parent: 2 + - uid: 22277 components: - type: Transform - pos: 0.5,15.5 - parent: 16504 - - uid: 18436 + pos: 6.5,27.5 + parent: 2 + - uid: 22278 components: - type: Transform - pos: 2.5,16.5 - parent: 16504 - - uid: 18437 + pos: 6.5,26.5 + parent: 2 + - uid: 22279 components: - type: Transform - pos: 3.5,16.5 - parent: 16504 - - uid: 18438 + pos: 7.5,26.5 + parent: 2 + - uid: 22280 components: - type: Transform - pos: 4.5,16.5 - parent: 16504 - - uid: 18439 + pos: 7.5,21.5 + parent: 2 + - uid: 22296 components: - type: Transform - pos: 5.5,16.5 - parent: 16504 - - uid: 18440 + pos: 2.5,33.5 + parent: 2 + - uid: 22297 components: - type: Transform - pos: 6.5,16.5 - parent: 16504 - - uid: 18441 + pos: 3.5,33.5 + parent: 2 + - uid: 22298 components: - type: Transform - pos: 7.5,16.5 - parent: 16504 - - uid: 18442 + pos: 11.5,-13.5 + parent: 2 + - uid: 22299 components: - type: Transform - pos: 8.5,16.5 - parent: 16504 - - uid: 18443 + pos: 4.5,33.5 + parent: 2 + - uid: 22323 components: - type: Transform - pos: 9.5,16.5 - parent: 16504 - - uid: 18444 + pos: 43.5,81.5 + parent: 2 + - uid: 22324 components: - type: Transform - pos: 10.5,16.5 - parent: 16504 - - uid: 18445 + pos: 43.5,82.5 + parent: 2 + - uid: 22325 components: - type: Transform - pos: 11.5,16.5 - parent: 16504 - - uid: 18446 + pos: 43.5,83.5 + parent: 2 + - uid: 22326 components: - type: Transform - pos: 12.5,16.5 - parent: 16504 - - uid: 18447 + pos: 43.5,84.5 + parent: 2 + - uid: 22327 components: - type: Transform - pos: 13.5,16.5 - parent: 16504 - - uid: 18448 + pos: 42.5,84.5 + parent: 2 + - uid: 22328 components: - type: Transform - pos: 14.5,16.5 - parent: 16504 - - uid: 18449 + pos: 41.5,84.5 + parent: 2 + - uid: 22329 components: - type: Transform - pos: 14.5,33.5 - parent: 16504 - - uid: 18450 + pos: 40.5,84.5 + parent: 2 + - uid: 22330 components: - type: Transform - pos: 14.5,25.5 - parent: 16504 - - uid: 18451 + pos: 39.5,84.5 + parent: 2 + - uid: 22331 components: - type: Transform - pos: 14.5,32.5 - parent: 16504 - - uid: 18452 + pos: 38.5,84.5 + parent: 2 + - uid: 22419 components: - type: Transform - pos: 14.5,27.5 - parent: 16504 - - uid: 18453 + pos: 45.5,-15.5 + parent: 2 + - uid: 22515 components: - type: Transform - pos: 14.5,30.5 - parent: 16504 - - uid: 18454 + pos: -9.5,18.5 + parent: 2 + - uid: 22516 components: - type: Transform - pos: 14.5,28.5 - parent: 16504 - - uid: 18455 + pos: -10.5,18.5 + parent: 2 + - uid: 22517 components: - type: Transform - pos: 14.5,26.5 - parent: 16504 - - uid: 18456 + pos: -11.5,18.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 3441 components: - type: Transform - pos: 14.5,29.5 - parent: 16504 - - uid: 18457 + pos: 62.576355,49.107327 + parent: 2 + - uid: 3442 components: - type: Transform - pos: 14.5,31.5 - parent: 16504 - - uid: 18458 + rot: -1.5707963267948966 rad + pos: 35.306625,79.5509 + parent: 2 + - uid: 3443 components: - type: Transform - pos: 15.5,34.5 - parent: 16504 - - uid: 18459 + pos: 42.632046,62.681427 + parent: 2 +- proto: CableApcStack1 + entities: + - uid: 20359 components: - type: Transform - pos: 14.5,34.5 - parent: 16504 - - uid: 18460 + rot: 3.141592653589793 rad + pos: 27.943169,28.129593 + parent: 16527 + - uid: 20360 components: - type: Transform - pos: 14.5,19.5 - parent: 16504 - - uid: 18461 + rot: 3.141592653589793 rad + pos: 27.833794,27.957718 + parent: 16527 + - uid: 20361 components: - type: Transform - pos: 14.5,17.5 - parent: 16504 - - uid: 18462 + pos: -32.829285,33.420166 + parent: 16527 + - uid: 20362 components: - type: Transform - pos: 14.5,20.5 - parent: 16504 - - uid: 18463 + pos: -32.36055,33.060364 + parent: 16527 + - uid: 20363 components: - type: Transform - pos: 14.5,21.5 - parent: 16504 - - uid: 18464 + pos: -32.36055,33.31067 + parent: 16527 + - uid: 20364 components: - type: Transform - pos: 14.5,18.5 - parent: 16504 - - uid: 18465 + pos: -32.485535,33.34198 + parent: 16527 + - uid: 20365 components: - type: Transform - pos: 18.5,34.5 - parent: 16504 - - uid: 18466 + pos: -32.79808,33.20117 + parent: 16527 +- proto: CableApcStack10 + entities: + - uid: 20366 components: - type: Transform - pos: 17.5,34.5 - parent: 16504 - - uid: 18467 + pos: 37.573006,33.27738 + parent: 16527 + - uid: 20367 components: - type: Transform - pos: 16.5,34.5 - parent: 16504 - - uid: 18468 + pos: -11.681259,79.25043 + parent: 16527 +- proto: CableHV + entities: + - uid: 82 components: - type: Transform - pos: -8.5,17.5 - parent: 16504 - - uid: 18469 + pos: 12.5,-31.5 + parent: 2 + - uid: 110 components: - type: Transform - pos: -8.5,18.5 - parent: 16504 - - uid: 18470 + pos: 27.5,-17.5 + parent: 2 + - uid: 150 components: - type: Transform - pos: -8.5,19.5 - parent: 16504 - - uid: 18471 + pos: 13.5,-42.5 + parent: 2 + - uid: 488 components: - type: Transform - pos: -8.5,20.5 - parent: 16504 - - uid: 18472 + pos: 14.5,64.5 + parent: 2 + - uid: 1043 components: - type: Transform - pos: -8.5,21.5 - parent: 16504 - - uid: 18473 + pos: 11.5,-41.5 + parent: 2 + - uid: 1500 components: - type: Transform - pos: -8.5,22.5 - parent: 16504 - - uid: 18474 + pos: 43.5,27.5 + parent: 2 + - uid: 1501 components: - type: Transform - pos: -8.5,23.5 - parent: 16504 - - uid: 18475 + pos: 44.5,27.5 + parent: 2 + - uid: 1696 components: - type: Transform - pos: -8.5,24.5 - parent: 16504 - - uid: 18476 + pos: 6.5,19.5 + parent: 2 + - uid: 2181 components: - type: Transform - pos: -8.5,25.5 - parent: 16504 - - uid: 18477 + pos: 31.5,-12.5 + parent: 2 + - uid: 2186 components: - type: Transform - pos: -8.5,26.5 - parent: 16504 - - uid: 18478 + pos: 31.5,-11.5 + parent: 2 + - uid: 2187 components: - type: Transform - pos: -8.5,27.5 - parent: 16504 - - uid: 18479 + pos: 30.5,-11.5 + parent: 2 + - uid: 2189 components: - type: Transform - pos: -8.5,28.5 - parent: 16504 - - uid: 18480 + pos: 30.5,-10.5 + parent: 2 + - uid: 2192 components: - type: Transform - pos: -7.5,28.5 - parent: 16504 - - uid: 18481 + pos: 29.5,-18.5 + parent: 2 + - uid: 2238 components: - type: Transform - pos: -6.5,28.5 - parent: 16504 - - uid: 18482 + pos: 29.5,-14.5 + parent: 2 + - uid: 2239 components: - type: Transform - pos: -5.5,28.5 - parent: 16504 - - uid: 18483 + pos: 31.5,-13.5 + parent: 2 + - uid: 2274 components: - type: Transform - pos: 8.5,17.5 - parent: 16504 - - uid: 18484 + pos: 30.5,-9.5 + parent: 2 + - uid: 2306 components: - type: Transform - pos: 8.5,18.5 - parent: 16504 - - uid: 18485 + pos: 40.5,27.5 + parent: 2 + - uid: 2307 components: - type: Transform - pos: 8.5,19.5 - parent: 16504 - - uid: 18486 + pos: 37.5,27.5 + parent: 2 + - uid: 2308 components: - type: Transform - pos: 8.5,20.5 - parent: 16504 - - uid: 18487 + pos: 10.5,60.5 + parent: 2 + - uid: 2309 components: - type: Transform - pos: 8.5,21.5 - parent: 16504 - - uid: 18488 + pos: 10.5,61.5 + parent: 2 + - uid: 2314 components: - type: Transform - pos: 8.5,22.5 - parent: 16504 - - uid: 18489 + pos: 11.5,61.5 + parent: 2 + - uid: 2316 components: - type: Transform - pos: 8.5,23.5 - parent: 16504 - - uid: 18490 + pos: 16.5,61.5 + parent: 2 + - uid: 2337 components: - type: Transform - pos: 8.5,24.5 - parent: 16504 - - uid: 18491 + pos: 12.5,61.5 + parent: 2 + - uid: 2338 components: - type: Transform - pos: 8.5,25.5 - parent: 16504 - - uid: 18492 + pos: 13.5,61.5 + parent: 2 + - uid: 2339 components: - type: Transform - pos: 8.5,26.5 - parent: 16504 - - uid: 18493 + pos: 15.5,61.5 + parent: 2 + - uid: 2340 components: - type: Transform - pos: 8.5,27.5 - parent: 16504 - - uid: 18494 + pos: 18.5,61.5 + parent: 2 + - uid: 2342 components: - type: Transform - pos: 8.5,28.5 - parent: 16504 - - uid: 18495 + pos: 19.5,61.5 + parent: 2 + - uid: 2369 components: - type: Transform - pos: 8.5,29.5 - parent: 16504 - - uid: 18496 + pos: 41.5,27.5 + parent: 2 + - uid: 2370 components: - type: Transform - pos: 8.5,30.5 - parent: 16504 - - uid: 18497 + pos: 17.5,61.5 + parent: 2 + - uid: 2397 components: - type: Transform - pos: 8.5,31.5 - parent: 16504 - - uid: 18498 + pos: 12.5,49.5 + parent: 2 + - uid: 2398 components: - type: Transform - pos: 8.5,32.5 - parent: 16504 - - uid: 18499 + pos: 12.5,43.5 + parent: 2 + - uid: 3016 components: - type: Transform - pos: 8.5,33.5 - parent: 16504 - - uid: 18500 + pos: 29.5,-15.5 + parent: 2 + - uid: 3033 components: - type: Transform - pos: -9.5,22.5 - parent: 16504 - - uid: 18501 + pos: 29.5,-16.5 + parent: 2 + - uid: 3087 components: - type: Transform - pos: -10.5,22.5 - parent: 16504 - - uid: 18502 + pos: 28.5,-17.5 + parent: 2 + - uid: 3375 components: - type: Transform - pos: -11.5,22.5 - parent: 16504 - - uid: 18503 + pos: 30.5,-14.5 + parent: 2 + - uid: 3376 components: - type: Transform - pos: -12.5,22.5 - parent: 16504 - - uid: 18504 + pos: 31.5,-14.5 + parent: 2 + - uid: 3444 components: - type: Transform - pos: -13.5,22.5 - parent: 16504 - - uid: 18505 + pos: 46.5,77.5 + parent: 2 + - uid: 3445 components: - type: Transform - pos: -14.5,22.5 - parent: 16504 - - uid: 18506 + pos: 50.5,76.5 + parent: 2 + - uid: 3446 components: - type: Transform - pos: -15.5,22.5 - parent: 16504 - - uid: 18507 + pos: 46.5,70.5 + parent: 2 + - uid: 3447 components: - type: Transform - pos: -16.5,22.5 - parent: 16504 - - uid: 18508 + pos: 46.5,78.5 + parent: 2 + - uid: 3448 components: - type: Transform - pos: -17.5,22.5 - parent: 16504 - - uid: 18509 + pos: 50.5,62.5 + parent: 2 + - uid: 3449 components: - type: Transform - pos: 7.5,33.5 - parent: 16504 - - uid: 18510 + pos: 11.5,-5.5 + parent: 2 + - uid: 3450 components: - type: Transform - pos: 6.5,33.5 - parent: 16504 - - uid: 18511 + pos: 76.5,17.5 + parent: 2 + - uid: 3451 components: - type: Transform - pos: 5.5,33.5 - parent: 16504 - - uid: 18512 + pos: 51.5,79.5 + parent: 2 + - uid: 3452 components: - type: Transform - pos: 4.5,33.5 - parent: 16504 - - uid: 18513 + pos: 53.5,79.5 + parent: 2 + - uid: 3453 components: - type: Transform - pos: 3.5,33.5 - parent: 16504 - - uid: 18514 + pos: 44.5,55.5 + parent: 2 + - uid: 3454 components: - type: Transform - pos: 2.5,33.5 - parent: 16504 - - uid: 18515 + pos: 74.5,16.5 + parent: 2 + - uid: 3455 components: - type: Transform - pos: 1.5,33.5 - parent: 16504 - - uid: 18516 + pos: 54.5,60.5 + parent: 2 + - uid: 3456 components: - type: Transform - pos: 0.5,33.5 - parent: 16504 - - uid: 18517 + pos: 50.5,63.5 + parent: 2 + - uid: 3457 components: - type: Transform - pos: -17.5,23.5 - parent: 16504 - - uid: 18518 + pos: 50.5,60.5 + parent: 2 + - uid: 3458 components: - type: Transform - pos: -17.5,24.5 - parent: 16504 - - uid: 18519 + pos: 51.5,65.5 + parent: 2 + - uid: 3459 components: - type: Transform - pos: -17.5,25.5 - parent: 16504 - - uid: 18520 + pos: 46.5,79.5 + parent: 2 + - uid: 3460 components: - type: Transform - pos: -17.5,26.5 - parent: 16504 - - uid: 18521 + pos: 46.5,81.5 + parent: 2 + - uid: 3461 components: - type: Transform - pos: 0.5,34.5 - parent: 16504 - - uid: 18522 + pos: 47.5,81.5 + parent: 2 + - uid: 3462 components: - type: Transform - pos: -0.5,34.5 - parent: 16504 - - uid: 18523 + pos: 47.5,73.5 + parent: 2 + - uid: 3463 components: - type: Transform - pos: -1.5,34.5 - parent: 16504 - - uid: 18524 + pos: 39.5,73.5 + parent: 2 + - uid: 3464 components: - type: Transform - pos: -2.5,34.5 - parent: 16504 - - uid: 18525 + pos: 87.5,11.5 + parent: 2 + - uid: 3465 components: - type: Transform - pos: -3.5,34.5 - parent: 16504 - - uid: 18526 + pos: 86.5,11.5 + parent: 2 + - uid: 3466 components: - type: Transform - pos: -4.5,34.5 - parent: 16504 - - uid: 18527 + pos: 88.5,11.5 + parent: 2 + - uid: 3467 components: - type: Transform - pos: -5.5,34.5 - parent: 16504 - - uid: 18528 + pos: 89.5,12.5 + parent: 2 + - uid: 3468 components: - type: Transform - pos: -6.5,34.5 - parent: 16504 - - uid: 18529 + pos: 47.5,77.5 + parent: 2 + - uid: 3469 components: - type: Transform - pos: -7.5,34.5 - parent: 16504 - - uid: 18530 + pos: 13.5,3.5 + parent: 2 + - uid: 3470 components: - type: Transform - pos: -8.5,34.5 - parent: 16504 - - uid: 18531 + pos: 12.5,3.5 + parent: 2 + - uid: 3471 components: - type: Transform - pos: -9.5,34.5 - parent: 16504 - - uid: 18532 + pos: 11.5,3.5 + parent: 2 + - uid: 3472 components: - type: Transform - pos: -10.5,34.5 - parent: 16504 - - uid: 18533 + pos: 11.5,4.5 + parent: 2 + - uid: 3473 components: - type: Transform - pos: -10.5,33.5 - parent: 16504 - - uid: 18534 + pos: 11.5,5.5 + parent: 2 + - uid: 3474 components: - type: Transform - pos: -10.5,32.5 - parent: 16504 - - uid: 18535 + pos: 11.5,6.5 + parent: 2 + - uid: 3475 components: - type: Transform - pos: -10.5,31.5 - parent: 16504 - - uid: 18536 + pos: 11.5,7.5 + parent: 2 + - uid: 3476 components: - type: Transform - pos: 15.5,18.5 - parent: 16504 - - uid: 18537 + pos: 11.5,8.5 + parent: 2 + - uid: 3477 components: - type: Transform - pos: 16.5,18.5 - parent: 16504 - - uid: 18538 + pos: 11.5,9.5 + parent: 2 + - uid: 3478 components: - type: Transform - pos: 16.5,19.5 - parent: 16504 - - uid: 18539 + pos: 11.5,10.5 + parent: 2 + - uid: 3479 components: - type: Transform - pos: -1.5,17.5 - parent: 16504 - - uid: 18540 + pos: 11.5,11.5 + parent: 2 + - uid: 3480 components: - type: Transform - pos: -1.5,18.5 - parent: 16504 - - uid: 18541 + pos: 11.5,12.5 + parent: 2 + - uid: 3481 components: - type: Transform - pos: -1.5,19.5 - parent: 16504 - - uid: 18542 + pos: 26.5,28.5 + parent: 2 + - uid: 3483 components: - type: Transform - pos: 0.5,35.5 - parent: 16504 - - uid: 18543 + pos: 31.5,17.5 + parent: 2 + - uid: 3484 components: - type: Transform - pos: 0.5,36.5 - parent: 16504 - - uid: 18544 + pos: 26.5,30.5 + parent: 2 + - uid: 3485 components: - type: Transform - pos: 0.5,37.5 - parent: 16504 - - uid: 18545 + pos: 33.5,19.5 + parent: 2 + - uid: 3486 components: - type: Transform - pos: 0.5,38.5 - parent: 16504 - - uid: 18546 + pos: 32.5,19.5 + parent: 2 + - uid: 3487 components: - type: Transform - pos: 0.5,39.5 - parent: 16504 - - uid: 18547 + pos: 31.5,19.5 + parent: 2 + - uid: 3488 components: - type: Transform - pos: 0.5,40.5 - parent: 16504 - - uid: 18548 + pos: 30.5,17.5 + parent: 2 + - uid: 3489 components: - type: Transform - pos: 0.5,41.5 - parent: 16504 - - uid: 18549 + pos: 30.5,16.5 + parent: 2 + - uid: 3490 components: - type: Transform - pos: 0.5,42.5 - parent: 16504 - - uid: 18550 + pos: 29.5,16.5 + parent: 2 + - uid: 3491 components: - type: Transform - pos: 0.5,43.5 - parent: 16504 - - uid: 18551 + pos: 28.5,16.5 + parent: 2 + - uid: 3492 components: - type: Transform - pos: 0.5,44.5 - parent: 16504 - - uid: 18552 + pos: 28.5,15.5 + parent: 2 + - uid: 3493 components: - type: Transform - pos: 15.5,16.5 - parent: 16504 - - uid: 18553 + pos: 28.5,14.5 + parent: 2 + - uid: 3494 components: - type: Transform - pos: 16.5,16.5 - parent: 16504 - - uid: 18554 + pos: 28.5,13.5 + parent: 2 + - uid: 3495 components: - type: Transform - pos: 17.5,16.5 - parent: 16504 - - uid: 18555 + pos: 26.5,-17.5 + parent: 2 + - uid: 3496 components: - type: Transform - pos: 18.5,16.5 - parent: 16504 - - uid: 18556 + pos: 42.5,55.5 + parent: 2 + - uid: 3502 components: - type: Transform - pos: 19.5,16.5 - parent: 16504 - - uid: 18557 + pos: 29.5,-17.5 + parent: 2 + - uid: 3503 components: - type: Transform - pos: 20.5,16.5 - parent: 16504 - - uid: 18558 + pos: 28.5,-19.5 + parent: 2 + - uid: 3504 components: - type: Transform - pos: 20.5,17.5 - parent: 16504 - - uid: 18559 + pos: 27.5,-19.5 + parent: 2 + - uid: 3505 components: - type: Transform - pos: 20.5,18.5 - parent: 16504 - - uid: 18560 + pos: 26.5,-19.5 + parent: 2 + - uid: 3506 components: - type: Transform - pos: 20.5,19.5 - parent: 16504 - - uid: 18561 + pos: 25.5,-19.5 + parent: 2 + - uid: 3507 components: - type: Transform - pos: 20.5,20.5 - parent: 16504 - - uid: 18562 + pos: 24.5,-19.5 + parent: 2 + - uid: 3508 components: - type: Transform - pos: 20.5,21.5 - parent: 16504 - - uid: 18563 + pos: 23.5,-19.5 + parent: 2 + - uid: 3509 components: - type: Transform - pos: 20.5,22.5 - parent: 16504 - - uid: 18564 + pos: 22.5,-19.5 + parent: 2 + - uid: 3510 components: - type: Transform - pos: 20.5,23.5 - parent: 16504 - - uid: 18565 + pos: 21.5,-19.5 + parent: 2 + - uid: 3511 components: - type: Transform - pos: 20.5,24.5 - parent: 16504 - - uid: 18566 + pos: 20.5,-19.5 + parent: 2 + - uid: 3512 components: - type: Transform - pos: 20.5,25.5 - parent: 16504 - - uid: 18567 + pos: 19.5,-19.5 + parent: 2 + - uid: 3513 components: - type: Transform - pos: 20.5,26.5 - parent: 16504 - - uid: 18568 + pos: 18.5,-19.5 + parent: 2 + - uid: 3514 components: - type: Transform - pos: 20.5,27.5 - parent: 16504 - - uid: 18569 + pos: 17.5,-19.5 + parent: 2 + - uid: 3515 components: - type: Transform - pos: 20.5,28.5 - parent: 16504 - - uid: 18570 + pos: 16.5,-19.5 + parent: 2 + - uid: 3516 components: - type: Transform - pos: 20.5,29.5 - parent: 16504 - - uid: 18571 + pos: 15.5,-19.5 + parent: 2 + - uid: 3517 components: - type: Transform - pos: 20.5,30.5 - parent: 16504 - - uid: 18572 + pos: 14.5,-19.5 + parent: 2 + - uid: 3518 components: - type: Transform - pos: 20.5,31.5 - parent: 16504 - - uid: 18573 + pos: 13.5,-19.5 + parent: 2 + - uid: 3519 components: - type: Transform - pos: 20.5,32.5 - parent: 16504 - - uid: 18574 + pos: 12.5,-19.5 + parent: 2 + - uid: 3520 components: - type: Transform - pos: 20.5,33.5 - parent: 16504 - - uid: 18575 + pos: 11.5,-19.5 + parent: 2 + - uid: 3521 components: - type: Transform - pos: 20.5,34.5 - parent: 16504 - - uid: 18576 + pos: 11.5,-18.5 + parent: 2 + - uid: 3522 components: - type: Transform - pos: 20.5,35.5 - parent: 16504 - - uid: 18577 + pos: 11.5,-17.5 + parent: 2 + - uid: 3523 components: - type: Transform - pos: 20.5,36.5 - parent: 16504 - - uid: 18578 + pos: 11.5,-16.5 + parent: 2 + - uid: 3524 components: - type: Transform - pos: 20.5,37.5 - parent: 16504 - - uid: 18579 + pos: 11.5,-15.5 + parent: 2 + - uid: 3525 components: - type: Transform - pos: 19.5,25.5 - parent: 16504 - - uid: 18580 + pos: 11.5,-14.5 + parent: 2 + - uid: 3526 components: - type: Transform - pos: 18.5,25.5 - parent: 16504 - - uid: 18581 + pos: 11.5,-13.5 + parent: 2 + - uid: 3527 components: - type: Transform - pos: 22.5,14.5 - parent: 16504 - - uid: 18582 + pos: 11.5,-12.5 + parent: 2 + - uid: 3528 components: - type: Transform - pos: 22.5,15.5 - parent: 16504 - - uid: 18583 + pos: 52.5,79.5 + parent: 2 + - uid: 3529 components: - type: Transform - pos: 22.5,16.5 - parent: 16504 - - uid: 18584 + pos: 11.5,1.5 + parent: 2 + - uid: 3530 components: - type: Transform - pos: 21.5,16.5 - parent: 16504 - - uid: 18585 + pos: 10.5,1.5 + parent: 2 + - uid: 3531 components: - type: Transform - pos: 21.5,26.5 - parent: 16504 - - uid: 18586 + pos: 9.5,1.5 + parent: 2 + - uid: 3532 components: - type: Transform - pos: 22.5,26.5 - parent: 16504 - - uid: 18587 + pos: 9.5,2.5 + parent: 2 + - uid: 3533 components: - type: Transform - pos: 23.5,26.5 - parent: 16504 - - uid: 18588 + pos: 9.5,3.5 + parent: 2 + - uid: 3534 components: - type: Transform - pos: 24.5,26.5 - parent: 16504 - - uid: 18589 + pos: 10.5,3.5 + parent: 2 + - uid: 3535 components: - type: Transform - pos: 24.5,25.5 - parent: 16504 - - uid: 18590 + pos: 11.5,13.5 + parent: 2 + - uid: 3536 components: - type: Transform - pos: 24.5,24.5 - parent: 16504 - - uid: 18591 + pos: 57.5,67.5 + parent: 2 + - uid: 3537 components: - type: Transform - pos: 25.5,24.5 - parent: 16504 - - uid: 18592 + pos: 57.5,66.5 + parent: 2 + - uid: 3538 components: - type: Transform - pos: 26.5,24.5 - parent: 16504 - - uid: 18593 + pos: 45.5,41.5 + parent: 2 + - uid: 3539 components: - type: Transform - pos: 27.5,24.5 - parent: 16504 - - uid: 18594 + pos: 45.5,40.5 + parent: 2 + - uid: 3540 components: - type: Transform - pos: 28.5,24.5 - parent: 16504 - - uid: 18595 + pos: 45.5,39.5 + parent: 2 + - uid: 3541 components: - type: Transform - pos: 28.5,23.5 - parent: 16504 - - uid: 18596 + pos: 46.5,39.5 + parent: 2 + - uid: 3542 components: - type: Transform - pos: 29.5,23.5 - parent: 16504 - - uid: 18597 + pos: 47.5,39.5 + parent: 2 + - uid: 3543 components: - type: Transform - pos: 30.5,23.5 - parent: 16504 - - uid: 18598 + pos: 47.5,40.5 + parent: 2 + - uid: 3544 components: - type: Transform - pos: 30.5,22.5 - parent: 16504 - - uid: 20501 + pos: 48.5,40.5 + parent: 2 + - uid: 3545 components: - type: Transform - pos: -10.5,6.5 - parent: 16504 - - uid: 20502 + pos: 49.5,40.5 + parent: 2 + - uid: 3546 components: - type: Transform - pos: -6.5,4.5 - parent: 16504 - - uid: 20506 + pos: 44.5,39.5 + parent: 2 + - uid: 3547 components: - type: Transform - pos: -6.5,5.5 - parent: 16504 - - uid: 20507 + pos: 11.5,41.5 + parent: 2 + - uid: 3548 components: - type: Transform - pos: -6.5,3.5 - parent: 16504 - - uid: 20509 + pos: 9.5,41.5 + parent: 2 + - uid: 3549 components: - type: Transform - pos: -11.5,6.5 - parent: 16504 - - uid: 20510 + pos: 64.5,3.5 + parent: 2 + - uid: 3550 components: - type: Transform - pos: -7.5,6.5 - parent: 16504 - - uid: 20512 + pos: 66.5,3.5 + parent: 2 + - uid: 3551 components: - type: Transform - pos: -6.5,2.5 - parent: 16504 - - uid: 21079 + pos: 67.5,3.5 + parent: 2 + - uid: 3552 components: - type: Transform - pos: -5.5,18.5 - parent: 16504 - - uid: 21246 + pos: 61.5,-3.5 + parent: 2 + - uid: 3553 components: - type: Transform - pos: 20.5,-38.5 + pos: 60.5,-3.5 parent: 2 - - uid: 21298 + - uid: 3554 components: - type: Transform - pos: 31.5,-39.5 + pos: 59.5,-3.5 parent: 2 - - uid: 21502 + - uid: 3555 components: - type: Transform - pos: 28.5,-38.5 + pos: 63.5,3.5 parent: 2 - - uid: 21514 + - uid: 3556 components: - type: Transform - pos: 23.5,-33.5 + pos: 65.5,3.5 parent: 2 - - uid: 21530 + - uid: 3557 components: - type: Transform - pos: 61.5,-1.5 + pos: 74.5,18.5 parent: 2 - - uid: 21531 + - uid: 3558 components: - type: Transform - pos: 62.5,-0.5 + pos: 75.5,18.5 parent: 2 - - uid: 21532 + - uid: 3559 components: - type: Transform - pos: 62.5,0.5 + pos: 75.5,19.5 parent: 2 - - uid: 21533 + - uid: 3560 components: - type: Transform - pos: 62.5,2.5 + pos: 74.5,17.5 parent: 2 - - uid: 21534 + - uid: 3561 components: - type: Transform - pos: 62.5,3.5 + pos: 53.5,77.5 parent: 2 - - uid: 21535 + - uid: 3562 components: - type: Transform - pos: 62.5,1.5 + pos: 53.5,70.5 parent: 2 - - uid: 21536 + - uid: 3563 components: - type: Transform - pos: 63.5,3.5 + pos: 55.5,47.5 parent: 2 - - uid: 21537 + - uid: 3564 components: - type: Transform - pos: 64.5,3.5 + pos: 55.5,48.5 parent: 2 - - uid: 21538 + - uid: 3565 components: - type: Transform - pos: 65.5,3.5 + pos: 51.5,60.5 parent: 2 - - uid: 21539 + - uid: 3566 components: - type: Transform - pos: 66.5,3.5 + pos: 51.5,63.5 parent: 2 - - uid: 21540 + - uid: 3567 components: - type: Transform - pos: 67.5,3.5 + pos: 58.5,45.5 parent: 2 - - uid: 21541 + - uid: 3568 components: - type: Transform - pos: 67.5,4.5 + pos: 57.5,45.5 parent: 2 - - uid: 21542 + - uid: 3569 components: - type: Transform - pos: 67.5,5.5 + pos: 60.5,45.5 parent: 2 - - uid: 21543 + - uid: 3570 components: - type: Transform - pos: 67.5,6.5 + pos: 59.5,45.5 parent: 2 - - uid: 21544 + - uid: 3571 components: - type: Transform - pos: 67.5,7.5 + pos: 47.5,66.5 parent: 2 - - uid: 21545 + - uid: 3572 components: - type: Transform - pos: 66.5,7.5 + pos: 47.5,67.5 parent: 2 - - uid: 21574 + - uid: 3573 components: - type: Transform - pos: 26.5,-38.5 + pos: 47.5,68.5 parent: 2 - - uid: 21578 + - uid: 3574 components: - type: Transform - pos: 35.5,63.5 + pos: 47.5,69.5 parent: 2 - - uid: 21648 + - uid: 3575 components: - type: Transform - pos: 34.5,57.5 + pos: 47.5,70.5 parent: 2 - - uid: 21691 + - uid: 3576 components: - type: Transform - pos: 31.5,52.5 + pos: 47.5,71.5 parent: 2 - - uid: 21692 + - uid: 3577 components: - type: Transform - pos: 32.5,52.5 + pos: 47.5,72.5 parent: 2 - - uid: 21693 + - uid: 3578 components: - type: Transform - pos: 33.5,52.5 + pos: 48.5,72.5 parent: 2 - - uid: 21694 + - uid: 3579 components: - type: Transform - pos: 34.5,52.5 + pos: 49.5,72.5 parent: 2 - - uid: 21695 + - uid: 3580 components: - type: Transform - pos: 35.5,52.5 + pos: 50.5,72.5 parent: 2 - - uid: 21696 + - uid: 3581 components: - type: Transform - pos: 36.5,52.5 + pos: 51.5,72.5 parent: 2 - - uid: 21697 + - uid: 3582 components: - type: Transform - pos: 36.5,51.5 + pos: 57.5,54.5 parent: 2 - - uid: 21698 + - uid: 3583 components: - type: Transform - pos: 36.5,50.5 + pos: 57.5,53.5 parent: 2 - - uid: 21699 + - uid: 3584 components: - type: Transform - pos: 37.5,50.5 + pos: 57.5,52.5 parent: 2 - - uid: 21700 + - uid: 3585 components: - type: Transform - pos: 39.5,50.5 + pos: 53.5,53.5 parent: 2 - - uid: 21701 + - uid: 3586 components: - type: Transform - pos: 38.5,50.5 + pos: 48.5,-15.5 parent: 2 - - uid: 21702 + - uid: 3587 components: - type: Transform - pos: 39.5,51.5 + pos: 50.5,69.5 parent: 2 - - uid: 21703 + - uid: 3588 components: - type: Transform - pos: 39.5,52.5 + pos: 51.5,70.5 parent: 2 - - uid: 21704 + - uid: 3590 components: - type: Transform - pos: 39.5,53.5 + pos: 47.5,75.5 parent: 2 - - uid: 21705 + - uid: 3591 components: - type: Transform - pos: 38.5,53.5 + pos: 54.5,68.5 parent: 2 - - uid: 21706 + - uid: 3592 components: - type: Transform - pos: 37.5,53.5 + pos: 50.5,68.5 parent: 2 - - uid: 21986 + - uid: 3593 components: - type: Transform - pos: 21.5,37.5 + pos: 52.5,71.5 parent: 2 - - uid: 21987 + - uid: 3594 components: - type: Transform - pos: 22.5,37.5 + pos: 54.5,70.5 parent: 2 - - uid: 21988 + - uid: 3595 components: - type: Transform - pos: 24.5,37.5 + pos: 10.5,41.5 parent: 2 - - uid: 21989 + - uid: 3596 components: - type: Transform - pos: 25.5,37.5 + pos: 54.5,69.5 parent: 2 - - uid: 21990 + - uid: 3597 components: - type: Transform - pos: 26.5,37.5 + pos: 50.5,70.5 parent: 2 - - uid: 21991 + - uid: 3647 components: - type: Transform - pos: 27.5,37.5 + pos: 10.5,44.5 parent: 2 - - uid: 21992 + - uid: 3648 components: - type: Transform - pos: 23.5,37.5 + pos: 10.5,43.5 parent: 2 - - uid: 21993 + - uid: 3649 components: - type: Transform - pos: 27.5,38.5 + pos: 9.5,43.5 parent: 2 - - uid: 21994 + - uid: 3650 components: - type: Transform - pos: 27.5,40.5 + pos: 12.5,42.5 parent: 2 - - uid: 21995 + - uid: 3651 components: - type: Transform - pos: 27.5,41.5 + pos: 9.5,42.5 parent: 2 - - uid: 21996 + - uid: 3652 components: - type: Transform - pos: 27.5,42.5 + pos: 12.5,41.5 parent: 2 - - uid: 21997 + - uid: 3653 components: - type: Transform - pos: 27.5,39.5 + pos: 10.5,45.5 parent: 2 - - uid: 21998 + - uid: 3654 components: - type: Transform - pos: 27.5,43.5 + pos: 9.5,45.5 parent: 2 - - uid: 21999 + - uid: 3655 components: - type: Transform - pos: 27.5,45.5 + pos: 8.5,45.5 parent: 2 - - uid: 22000 + - uid: 3656 components: - type: Transform - pos: 27.5,44.5 + pos: 53.5,-20.5 parent: 2 - - uid: 22001 + - uid: 3657 components: - type: Transform - pos: 27.5,47.5 + pos: 54.5,-20.5 parent: 2 - - uid: 22002 + - uid: 3658 components: - type: Transform - pos: 27.5,49.5 + pos: 55.5,-20.5 parent: 2 - - uid: 22003 + - uid: 3659 components: - type: Transform - pos: 27.5,46.5 + pos: 56.5,-20.5 parent: 2 - - uid: 22004 + - uid: 3660 components: - type: Transform - pos: 27.5,48.5 + pos: 57.5,-20.5 parent: 2 - - uid: 22099 + - uid: 3661 components: - type: Transform - pos: -5.5,19.5 - parent: 16504 - - uid: 22103 + pos: 58.5,-20.5 + parent: 2 + - uid: 3662 components: - type: Transform - pos: -5.5,20.5 - parent: 16504 - - uid: 22147 + pos: 59.5,-20.5 + parent: 2 + - uid: 3663 components: - type: Transform - pos: -8.5,6.5 - parent: 16504 - - uid: 22192 + pos: 59.5,-22.5 + parent: 2 + - uid: 3664 components: - type: Transform - pos: -9.5,6.5 - parent: 16504 - - uid: 22193 + pos: 58.5,-22.5 + parent: 2 + - uid: 3665 components: - type: Transform - pos: -7.5,2.5 - parent: 16504 - - uid: 22194 + pos: 57.5,-22.5 + parent: 2 + - uid: 3666 components: - type: Transform - pos: -7.5,1.5 - parent: 16504 - - uid: 22195 + pos: 56.5,-22.5 + parent: 2 + - uid: 3668 components: - type: Transform - pos: -7.5,0.5 - parent: 16504 - - uid: 22196 + pos: 54.5,-22.5 + parent: 2 + - uid: 3669 components: - type: Transform - pos: -7.5,-0.5 - parent: 16504 - - uid: 22197 + pos: 53.5,-22.5 + parent: 2 + - uid: 3670 components: - type: Transform - pos: -7.5,-1.5 - parent: 16504 - - uid: 22198 + pos: 53.5,-24.5 + parent: 2 + - uid: 3671 components: - type: Transform - pos: -7.5,-2.5 - parent: 16504 - - uid: 22199 + pos: 54.5,-24.5 + parent: 2 + - uid: 3672 components: - type: Transform - pos: -6.5,-2.5 - parent: 16504 - - uid: 22200 + pos: 55.5,-24.5 + parent: 2 + - uid: 3673 components: - type: Transform - pos: -5.5,-2.5 - parent: 16504 - - uid: 22201 + pos: 56.5,-24.5 + parent: 2 + - uid: 3674 components: - type: Transform - pos: -5.5,-1.5 - parent: 16504 - - uid: 22202 + pos: 57.5,-24.5 + parent: 2 + - uid: 3675 components: - type: Transform - pos: -8.5,-2.5 - parent: 16504 - - uid: 22203 + pos: 58.5,-24.5 + parent: 2 + - uid: 3676 components: - type: Transform - pos: -10.5,-2.5 - parent: 16504 - - uid: 22204 + pos: 59.5,-24.5 + parent: 2 + - uid: 3677 components: - type: Transform - pos: -9.5,-2.5 - parent: 16504 - - uid: 22205 + pos: 59.5,-26.5 + parent: 2 + - uid: 3682 components: - type: Transform - pos: -5.5,21.5 - parent: 16504 - - uid: 22245 + pos: 54.5,-26.5 + parent: 2 + - uid: 3683 components: - type: Transform - pos: 12.5,25.5 + pos: 53.5,-26.5 parent: 2 - - uid: 22246 + - uid: 3684 components: - type: Transform - pos: 11.5,25.5 + pos: 56.5,-36.5 parent: 2 - - uid: 22247 + - uid: 3685 components: - type: Transform - pos: 11.5,26.5 + pos: 56.5,-35.5 parent: 2 - - uid: 22248 + - uid: 3689 components: - type: Transform - pos: 9.5,26.5 + pos: 49.5,-17.5 parent: 2 - - uid: 22249 + - uid: 3690 components: - type: Transform - pos: 8.5,26.5 + pos: 50.5,-17.5 parent: 2 - - uid: 22250 + - uid: 3691 components: - type: Transform - pos: 10.5,26.5 + pos: 51.5,-17.5 parent: 2 - - uid: 22257 + - uid: 3692 components: - type: Transform - pos: 11.5,24.5 + pos: 51.5,-18.5 parent: 2 - - uid: 22258 + - uid: 3693 components: - type: Transform - pos: 11.5,23.5 + pos: 51.5,-19.5 parent: 2 - - uid: 22260 + - uid: 3694 components: - type: Transform - pos: 10.5,22.5 + pos: 51.5,-20.5 parent: 2 - - uid: 22261 + - uid: 3695 components: - type: Transform - pos: 8.5,22.5 + pos: 51.5,-21.5 parent: 2 - - uid: 22262 + - uid: 3696 components: - type: Transform - pos: 7.5,22.5 + pos: 48.5,-17.5 parent: 2 - - uid: 22263 + - uid: 3697 components: - type: Transform - pos: 6.5,22.5 + pos: 48.5,-16.5 parent: 2 - - uid: 22269 + - uid: 3698 components: - type: Transform - pos: 9.5,22.5 + pos: 48.5,-14.5 parent: 2 - - uid: 22270 + - uid: 3699 components: - type: Transform - pos: 6.5,23.5 + pos: 48.5,-13.5 parent: 2 - - uid: 22271 + - uid: 3700 components: - type: Transform - pos: 6.5,24.5 + pos: 49.5,-13.5 parent: 2 - - uid: 22272 + - uid: 3701 components: - type: Transform - pos: 8.5,25.5 + pos: 50.5,-13.5 parent: 2 - - uid: 22282 + - uid: 3702 components: - type: Transform - pos: 10.5,23.5 + pos: 51.5,-13.5 parent: 2 - - uid: 22293 + - uid: 3703 components: - type: Transform - pos: 10.5,21.5 + pos: 52.5,-13.5 parent: 2 - - uid: 22294 + - uid: 3704 components: - type: Transform - pos: 10.5,20.5 + pos: 52.5,-12.5 parent: 2 - - uid: 22414 + - uid: 3705 components: - type: Transform - pos: 47.5,-13.5 + pos: 52.5,-11.5 parent: 2 - - uid: 22415 + - uid: 3706 components: - type: Transform - pos: 48.5,-13.5 + pos: 52.5,-10.5 parent: 2 - - uid: 22416 + - uid: 3707 components: - type: Transform - pos: 49.5,-13.5 + pos: 52.5,-9.5 parent: 2 - - uid: 22417 + - uid: 3708 components: - type: Transform - pos: 50.5,-13.5 + pos: 52.5,-8.5 parent: 2 - - uid: 22418 + - uid: 3709 components: - type: Transform - pos: 51.5,-13.5 + pos: 52.5,-7.5 parent: 2 - - uid: 22420 + - uid: 3710 components: - type: Transform - pos: -5.5,22.5 - parent: 16504 - - uid: 22421 + pos: 53.5,-7.5 + parent: 2 + - uid: 3711 components: - type: Transform - pos: -5.5,23.5 - parent: 16504 - - uid: 22422 + pos: 54.5,-7.5 + parent: 2 + - uid: 3712 components: - type: Transform - pos: -5.5,24.5 - parent: 16504 - - uid: 22423 + pos: 55.5,-7.5 + parent: 2 + - uid: 3713 components: - type: Transform - pos: -5.5,25.5 - parent: 16504 - - uid: 22424 + pos: 56.5,-7.5 + parent: 2 + - uid: 3714 components: - type: Transform - pos: -5.5,26.5 - parent: 16504 - - uid: 22425 + pos: 57.5,-7.5 + parent: 2 + - uid: 3715 components: - type: Transform - pos: -5.5,27.5 - parent: 16504 - - uid: 22426 + pos: 58.5,-7.5 + parent: 2 + - uid: 3716 components: - type: Transform - pos: -5.5,29.5 - parent: 16504 - - uid: 22427 + pos: 59.5,-7.5 + parent: 2 + - uid: 3717 components: - type: Transform - pos: -5.5,31.5 - parent: 16504 - - uid: 22428 + pos: 59.5,-6.5 + parent: 2 + - uid: 3718 components: - type: Transform - pos: -5.5,32.5 - parent: 16504 - - uid: 22429 + pos: 59.5,-5.5 + parent: 2 + - uid: 3719 components: - type: Transform - pos: -5.5,33.5 - parent: 16504 - - uid: 22430 + pos: 59.5,-4.5 + parent: 2 + - uid: 3720 components: - type: Transform - pos: -5.5,30.5 - parent: 16504 - - uid: 22431 + pos: 59.5,-3.5 + parent: 2 + - uid: 3721 components: - type: Transform - pos: -5.5,35.5 - parent: 16504 - - uid: 22432 + pos: 59.5,-2.5 + parent: 2 + - uid: 3722 components: - type: Transform - pos: -5.5,36.5 - parent: 16504 - - uid: 22433 + pos: 59.5,-1.5 + parent: 2 + - uid: 3723 components: - type: Transform - pos: -5.5,37.5 - parent: 16504 - - uid: 22434 + pos: 60.5,-1.5 + parent: 2 + - uid: 3724 components: - type: Transform - pos: -5.5,38.5 - parent: 16504 - - uid: 22435 + pos: 61.5,-1.5 + parent: 2 + - uid: 3725 components: - type: Transform - pos: -5.5,39.5 - parent: 16504 - - uid: 22436 + pos: 62.5,-1.5 + parent: 2 + - uid: 3726 components: - type: Transform - pos: -4.5,39.5 - parent: 16504 - - uid: 22437 + pos: 62.5,-0.5 + parent: 2 + - uid: 3727 components: - type: Transform - pos: -3.5,39.5 - parent: 16504 - - uid: 22438 + pos: 62.5,0.5 + parent: 2 + - uid: 3728 components: - type: Transform - pos: -2.5,39.5 - parent: 16504 - - uid: 22439 + pos: 62.5,1.5 + parent: 2 + - uid: 3729 components: - type: Transform - pos: -1.5,39.5 - parent: 16504 - - uid: 22440 + pos: 62.5,2.5 + parent: 2 + - uid: 3730 components: - type: Transform - pos: -0.5,39.5 - parent: 16504 - - uid: 22441 + pos: 62.5,3.5 + parent: 2 + - uid: 3731 components: - type: Transform - pos: 0.5,39.5 - parent: 16504 - - uid: 22442 + pos: 67.5,4.5 + parent: 2 + - uid: 3732 components: - type: Transform - pos: 11.5,-8.5 - parent: 16504 - - uid: 22443 + pos: 68.5,4.5 + parent: 2 + - uid: 3733 components: - type: Transform - pos: 10.5,-8.5 - parent: 16504 - - uid: 22444 + pos: 69.5,4.5 + parent: 2 + - uid: 3734 components: - type: Transform - pos: 8.5,-8.5 - parent: 16504 - - uid: 22445 + pos: 70.5,4.5 + parent: 2 + - uid: 3735 components: - type: Transform - pos: 7.5,-8.5 - parent: 16504 - - uid: 22446 + pos: 71.5,4.5 + parent: 2 + - uid: 3736 components: - type: Transform - pos: 6.5,-8.5 - parent: 16504 - - uid: 22447 + pos: 71.5,5.5 + parent: 2 + - uid: 3737 components: - type: Transform - pos: 5.5,-8.5 - parent: 16504 - - uid: 22448 + pos: 71.5,6.5 + parent: 2 + - uid: 3738 components: - type: Transform - pos: 4.5,-8.5 - parent: 16504 - - uid: 22449 + pos: 71.5,7.5 + parent: 2 + - uid: 3739 components: - type: Transform - pos: 3.5,-8.5 - parent: 16504 - - uid: 22450 + pos: 71.5,8.5 + parent: 2 + - uid: 3740 components: - type: Transform - pos: 9.5,-8.5 - parent: 16504 - - uid: 22451 + pos: 71.5,9.5 + parent: 2 + - uid: 3741 components: - type: Transform - pos: 2.5,-8.5 - parent: 16504 - - uid: 22452 + pos: 71.5,10.5 + parent: 2 + - uid: 3742 components: - type: Transform - pos: 1.5,-8.5 - parent: 16504 - - uid: 22453 + pos: 72.5,10.5 + parent: 2 + - uid: 3743 components: - type: Transform - pos: 0.5,-8.5 - parent: 16504 - - uid: 22454 + pos: 73.5,10.5 + parent: 2 + - uid: 3744 components: - type: Transform - pos: -0.5,-8.5 - parent: 16504 - - uid: 22455 + pos: 74.5,10.5 + parent: 2 + - uid: 3745 components: - type: Transform - pos: -1.5,-8.5 - parent: 16504 - - uid: 22456 + pos: 75.5,10.5 + parent: 2 + - uid: 3746 components: - type: Transform - pos: -3.5,-8.5 - parent: 16504 - - uid: 22457 + pos: 76.5,10.5 + parent: 2 + - uid: 3747 components: - type: Transform - pos: -4.5,-8.5 - parent: 16504 - - uid: 22458 + pos: 77.5,10.5 + parent: 2 + - uid: 3748 components: - type: Transform - pos: -5.5,-8.5 - parent: 16504 - - uid: 22459 + pos: 78.5,10.5 + parent: 2 + - uid: 3749 components: - type: Transform - pos: -6.5,-8.5 - parent: 16504 - - uid: 22460 + pos: 79.5,10.5 + parent: 2 + - uid: 3750 components: - type: Transform - pos: -2.5,-8.5 - parent: 16504 - - uid: 22461 + pos: 80.5,10.5 + parent: 2 + - uid: 3751 components: - type: Transform - pos: -6.5,-7.5 - parent: 16504 - - uid: 22462 + pos: 81.5,10.5 + parent: 2 + - uid: 3752 components: - type: Transform - pos: -6.5,-5.5 - parent: 16504 - - uid: 22463 + pos: 82.5,10.5 + parent: 2 + - uid: 3753 components: - type: Transform - pos: -6.5,-6.5 - parent: 16504 - - uid: 22464 + pos: 83.5,10.5 + parent: 2 + - uid: 3754 components: - type: Transform - pos: -6.5,-3.5 - parent: 16504 - - uid: 22465 + pos: 83.5,11.5 + parent: 2 + - uid: 3755 components: - type: Transform - pos: -6.5,-4.5 - parent: 16504 - - uid: 22466 + pos: 84.5,11.5 + parent: 2 + - uid: 3756 components: - type: Transform - pos: -2.5,11.5 - parent: 16504 - - uid: 22467 + pos: 85.5,11.5 + parent: 2 + - uid: 3757 components: - type: Transform - pos: -2.5,12.5 - parent: 16504 - - uid: 22468 + pos: 85.5,23.5 + parent: 2 + - uid: 3758 components: - type: Transform - pos: -2.5,13.5 - parent: 16504 - - uid: 22469 + pos: 84.5,23.5 + parent: 2 + - uid: 3759 components: - type: Transform - pos: -1.5,13.5 - parent: 16504 - - uid: 22470 + pos: 83.5,23.5 + parent: 2 + - uid: 3760 components: - type: Transform - pos: 0.5,13.5 - parent: 16504 - - uid: 22471 + pos: 82.5,23.5 + parent: 2 + - uid: 3761 components: - type: Transform - pos: 2.5,13.5 - parent: 16504 - - uid: 22472 + pos: 81.5,23.5 + parent: 2 + - uid: 3762 components: - type: Transform - pos: 3.5,13.5 - parent: 16504 - - uid: 22473 + pos: 80.5,23.5 + parent: 2 + - uid: 3763 components: - type: Transform - pos: 4.5,13.5 - parent: 16504 - - uid: 22474 + pos: 79.5,23.5 + parent: 2 + - uid: 3764 components: - type: Transform - pos: 5.5,13.5 - parent: 16504 - - uid: 22475 + pos: 78.5,23.5 + parent: 2 + - uid: 3765 components: - type: Transform - pos: 6.5,13.5 - parent: 16504 -- proto: CableMVStack - entities: - - uid: 5293 + pos: 77.5,23.5 + parent: 2 + - uid: 3766 components: - type: Transform - pos: 42.434853,62.65952 + pos: 76.5,23.5 parent: 2 -- proto: CableTerminal - entities: - - uid: 5294 + - uid: 3767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,62.5 + pos: 75.5,23.5 parent: 2 - - uid: 5295 + - uid: 3768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,60.5 + pos: 74.5,23.5 parent: 2 - - uid: 5296 + - uid: 3769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,61.5 + pos: 73.5,23.5 parent: 2 - - uid: 5297 + - uid: 3770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,62.5 + pos: 72.5,23.5 parent: 2 - - uid: 5298 + - uid: 3771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,63.5 + pos: 71.5,23.5 parent: 2 - - uid: 5299 + - uid: 3772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,63.5 + pos: 71.5,22.5 parent: 2 - - uid: 5300 + - uid: 3773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,61.5 + pos: 71.5,21.5 parent: 2 - - uid: 5301 + - uid: 3774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,60.5 + pos: 71.5,20.5 parent: 2 - - uid: 5302 + - uid: 3775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,43.5 + pos: 71.5,19.5 parent: 2 - - uid: 5303 + - uid: 3776 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,17.5 + pos: 71.5,18.5 parent: 2 - - uid: 5304 + - uid: 3777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,48.5 + pos: 71.5,17.5 parent: 2 - - uid: 5305 + - uid: 3778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-17.5 + pos: 71.5,16.5 parent: 2 - - uid: 18599 + - uid: 3779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,25.5 - parent: 16504 - - uid: 21407 + pos: 70.5,16.5 + parent: 2 + - uid: 3780 components: - type: Transform - pos: 29.5,-38.5 + pos: 69.5,16.5 parent: 2 - - uid: 21513 + - uid: 3781 components: - type: Transform - pos: 30.5,-38.5 + pos: 68.5,16.5 parent: 2 -- proto: CandleBlackSmallInfinite - entities: - - uid: 22251 + - uid: 3782 components: - type: Transform - pos: 73.48771,60.5649 + pos: 67.5,16.5 parent: 2 - - uid: 22252 + - uid: 3783 components: - type: Transform - pos: 76.51896,63.549274 + pos: 67.5,17.5 parent: 2 - - uid: 22253 + - uid: 3784 components: - type: Transform - pos: 79.503334,60.5024 + pos: 67.5,18.5 parent: 2 - - uid: 22254 + - uid: 3785 components: - type: Transform - pos: 76.42521,57.5649 + pos: 67.5,19.5 parent: 2 - - uid: 22266 + - uid: 3786 components: - type: Transform - pos: 26.495583,47.54221 + pos: 67.5,20.5 parent: 2 - - uid: 22283 + - uid: 3787 components: - type: Transform - pos: 19.25549,47.337704 + pos: 67.5,21.5 parent: 2 - - uid: 22284 + - uid: 3788 components: - type: Transform - pos: 19.66174,47.743954 + pos: 66.5,21.5 parent: 2 - - uid: 22285 + - uid: 3789 components: - type: Transform - pos: 16.38049,48.88458 + pos: 65.5,21.5 parent: 2 - - uid: 22286 + - uid: 3790 components: - type: Transform - pos: 15.458614,49.587704 + pos: 64.5,21.5 parent: 2 - - uid: 22287 + - uid: 3791 components: - type: Transform - pos: 16.16174,43.650204 + pos: 64.5,22.5 parent: 2 - - uid: 22288 + - uid: 3792 components: - type: Transform - pos: 16.63049,45.181454 + pos: 64.5,23.5 parent: 2 - - uid: 22289 + - uid: 3793 components: - type: Transform - pos: 21.09924,51.666508 + pos: 64.5,24.5 parent: 2 - - uid: 22290 + - uid: 3794 components: - type: Transform - pos: 23.279367,51.541508 + pos: 64.5,25.5 parent: 2 - - uid: 22291 + - uid: 3795 components: - type: Transform - pos: 29.17732,51.588383 + pos: 64.5,26.5 parent: 2 - - uid: 22292 + - uid: 3796 components: - type: Transform - pos: 31.39607,51.463383 + pos: 64.5,27.5 parent: 2 - - uid: 22300 + - uid: 3797 components: - type: Transform - pos: 24.619537,26.150465 + pos: 64.5,28.5 parent: 2 - - uid: 22301 + - uid: 3798 components: - type: Transform - pos: 23.994537,27.66609 + pos: 64.5,29.5 parent: 2 - - uid: 22302 + - uid: 3799 components: - type: Transform - pos: 25.072662,27.60359 + pos: 64.5,30.5 parent: 2 -- proto: CandleBlueSmallInfinite - entities: - - uid: 22265 + - uid: 3800 components: - type: Transform - pos: 23.308083,47.432835 + pos: 64.5,31.5 parent: 2 -- proto: CandleGreenSmallInfinite - entities: - - uid: 22267 + - uid: 3801 components: - type: Transform - pos: 25.401833,47.47971 + pos: 64.5,32.5 parent: 2 -- proto: CandlePurpleSmallInfinite - entities: - - uid: 22264 + - uid: 3802 components: - type: Transform - pos: 24.714333,47.557835 + pos: 64.5,33.5 parent: 2 -- proto: CandyBowl - entities: - - uid: 5310 + - uid: 3803 components: - type: Transform - pos: 40.45637,2.434419 + pos: 63.5,35.5 parent: 2 -- proto: CandyBucket - entities: - - uid: 5311 + - uid: 3804 components: - type: Transform - pos: 9.496851,-6.3407125 + pos: 63.5,36.5 parent: 2 -- proto: CannabisSeeds - entities: - - uid: 5312 + - uid: 3805 components: - type: Transform - pos: 59.383396,41.321583 + pos: 63.5,37.5 parent: 2 - - uid: 5313 + - uid: 3806 components: - type: Transform - pos: 68.63592,26.742638 + pos: 63.5,38.5 parent: 2 - - uid: 5314 + - uid: 3807 components: - type: Transform - pos: 66.60467,24.695763 + pos: 63.5,39.5 parent: 2 - - uid: 5315 + - uid: 3808 components: - type: Transform - pos: 59.64902,39.430958 + pos: 63.5,40.5 parent: 2 - - uid: 5316 + - uid: 3809 components: - type: Transform - pos: 59.36777,40.305958 + pos: 63.5,41.5 parent: 2 - - uid: 21361 + - uid: 3810 components: - type: Transform - pos: 42.47398,53.352528 + pos: 63.5,42.5 parent: 2 -- proto: CannedApplauseInstrument - entities: - - uid: 5317 + - uid: 3811 components: - type: Transform - pos: 11.618738,-17.39088 + pos: 63.5,43.5 parent: 2 -- proto: CapacitorStockPart - entities: - - uid: 5318 + - uid: 3812 components: - type: Transform - pos: 62.638855,49.326077 + pos: 63.5,44.5 parent: 2 - - uid: 18600 + - uid: 3813 components: - type: Transform - pos: 25.603254,23.642792 - parent: 16504 - - uid: 18601 + pos: 63.5,45.5 + parent: 2 + - uid: 3814 components: - type: Transform - pos: 25.394922,23.569876 - parent: 16504 - - uid: 18602 + pos: 62.5,45.5 + parent: 2 + - uid: 3815 components: - type: Transform - pos: 23.342838,24.601126 - parent: 16504 - - uid: 18603 + pos: 61.5,45.5 + parent: 2 + - uid: 3816 components: - type: Transform - pos: 37.541164,32.55561 - parent: 16504 -- proto: CaptainIDCard - entities: - - uid: 5319 + pos: 54.5,48.5 + parent: 2 + - uid: 3817 components: - type: Transform - pos: 32.547745,22.643578 + pos: 53.5,48.5 parent: 2 -- proto: CarbonDioxideCanister - entities: - - uid: 5320 + - uid: 3818 components: - type: Transform - pos: 90.5,10.5 + pos: 53.5,49.5 parent: 2 - - uid: 18604 + - uid: 3819 components: - type: Transform - pos: -7.5,38.5 - parent: 16504 -- proto: Carpet - entities: - - uid: 5321 + pos: 53.5,50.5 + parent: 2 + - uid: 3820 components: - type: Transform - pos: 50.5,27.5 + pos: 53.5,51.5 parent: 2 - - uid: 5322 + - uid: 3821 components: - type: Transform - pos: 51.5,33.5 + pos: 53.5,62.5 parent: 2 - - uid: 5323 + - uid: 3822 components: - type: Transform - pos: 51.5,32.5 + pos: 54.5,65.5 parent: 2 - - uid: 5324 + - uid: 3823 components: - type: Transform - pos: 52.5,33.5 + pos: 12.5,40.5 parent: 2 - - uid: 5325 + - uid: 3824 components: - type: Transform - pos: 52.5,32.5 + pos: 12.5,39.5 parent: 2 - - uid: 5326 + - uid: 3825 components: - type: Transform - pos: 81.5,32.5 + pos: 12.5,38.5 parent: 2 - - uid: 5327 + - uid: 3826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,32.5 + pos: 12.5,37.5 parent: 2 - - uid: 5328 + - uid: 3827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,32.5 + pos: 13.5,37.5 parent: 2 - - uid: 5329 + - uid: 3828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,32.5 + pos: 14.5,37.5 parent: 2 - - uid: 5330 + - uid: 3829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,32.5 + pos: 15.5,37.5 parent: 2 - - uid: 5331 + - uid: 3830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,32.5 + pos: 16.5,37.5 parent: 2 - - uid: 5332 + - uid: 3831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,32.5 + pos: 17.5,37.5 parent: 2 - - uid: 5333 + - uid: 3832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,33.5 + pos: 18.5,37.5 parent: 2 - - uid: 5334 + - uid: 3833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,31.5 + pos: 19.5,37.5 parent: 2 - - uid: 5335 + - uid: 3834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,32.5 + pos: 20.5,37.5 parent: 2 - - uid: 5336 + - uid: 3835 components: - type: Transform - pos: 79.5,30.5 + pos: 21.5,37.5 parent: 2 - - uid: 5337 + - uid: 3836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,34.5 + pos: 22.5,37.5 parent: 2 - - uid: 5338 + - uid: 3837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,32.5 + pos: 23.5,37.5 parent: 2 - - uid: 5339 + - uid: 3838 components: - type: Transform - pos: 82.5,32.5 + pos: 24.5,37.5 parent: 2 - - uid: 5340 + - uid: 3839 components: - type: Transform - pos: 49.5,27.5 + pos: 25.5,37.5 parent: 2 -- proto: CarpetBlack - entities: - - uid: 3606 + - uid: 3840 components: - type: Transform - pos: 25.5,47.5 + pos: 26.5,37.5 parent: 2 - - uid: 5218 + - uid: 3841 components: - type: Transform - pos: 25.5,46.5 + pos: 27.5,37.5 parent: 2 - - uid: 5219 + - uid: 3842 components: - type: Transform - pos: 23.5,47.5 + pos: 28.5,37.5 parent: 2 - - uid: 5220 + - uid: 3843 components: - type: Transform - pos: 24.5,47.5 + pos: 29.5,37.5 parent: 2 - - uid: 5222 + - uid: 3844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,54.5 + pos: 30.5,37.5 parent: 2 - - uid: 5223 + - uid: 3845 components: - type: Transform - pos: 26.5,47.5 + pos: 31.5,37.5 parent: 2 - - uid: 5224 + - uid: 3846 components: - type: Transform - pos: 26.5,46.5 + pos: 32.5,37.5 parent: 2 - - uid: 5306 + - uid: 3847 components: - type: Transform - pos: 26.5,48.5 + pos: 33.5,37.5 parent: 2 - - uid: 5341 + - uid: 3848 components: - type: Transform - pos: 23.5,25.5 + pos: 34.5,37.5 parent: 2 - - uid: 5342 + - uid: 3873 components: - type: Transform - pos: 24.5,26.5 + pos: 35.5,37.5 parent: 2 - - uid: 5343 + - uid: 3874 components: - type: Transform - pos: 25.5,25.5 + pos: 36.5,37.5 parent: 2 - - uid: 5344 + - uid: 3875 components: - type: Transform - pos: 23.5,24.5 + pos: 27.5,27.5 parent: 2 - - uid: 5345 + - uid: 3876 components: - type: Transform - pos: 25.5,24.5 + pos: 26.5,27.5 parent: 2 - - uid: 5346 + - uid: 3878 components: - type: Transform - pos: 23.5,26.5 + pos: 28.5,27.5 parent: 2 - - uid: 5347 + - uid: 3879 components: - type: Transform - pos: 24.5,25.5 + pos: 29.5,27.5 parent: 2 - - uid: 5348 + - uid: 3880 components: - type: Transform - pos: 24.5,24.5 + pos: 29.5,26.5 parent: 2 - - uid: 5349 + - uid: 3881 components: - type: Transform - pos: 25.5,26.5 + pos: 29.5,25.5 parent: 2 - - uid: 5818 + - uid: 3882 components: - type: Transform - pos: 15.5,47.5 + pos: 31.5,25.5 parent: 2 - - uid: 5820 + - uid: 3883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,43.5 + pos: 32.5,25.5 parent: 2 - - uid: 5830 + - uid: 3884 components: - type: Transform - pos: 14.5,48.5 + pos: 33.5,25.5 parent: 2 - - uid: 5831 + - uid: 3885 components: - type: Transform - pos: 14.5,47.5 + pos: 34.5,25.5 parent: 2 - - uid: 5931 + - uid: 3886 components: - type: Transform - pos: 25.5,48.5 + pos: 35.5,25.5 parent: 2 - - uid: 5932 + - uid: 3887 components: - type: Transform - pos: 24.5,46.5 + pos: 30.5,25.5 parent: 2 - - uid: 6517 + - uid: 3888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,45.5 + pos: 36.5,25.5 parent: 2 - - uid: 6518 + - uid: 3891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,42.5 + pos: 38.5,26.5 parent: 2 - - uid: 6520 + - uid: 3897 components: - type: Transform - pos: 23.5,46.5 + pos: 44.5,26.5 parent: 2 - - uid: 6522 + - uid: 3898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,53.5 + pos: 45.5,26.5 parent: 2 - - uid: 6523 + - uid: 3899 components: - type: Transform - pos: 24.5,48.5 + pos: 45.5,27.5 parent: 2 - - uid: 7565 + - uid: 3900 components: - type: Transform - pos: 23.5,48.5 + pos: 45.5,28.5 parent: 2 - - uid: 9953 + - uid: 3901 components: - type: Transform - pos: 16.5,48.5 + pos: 45.5,29.5 parent: 2 - - uid: 11959 + - uid: 3902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,44.5 + pos: 45.5,30.5 parent: 2 - - uid: 13902 + - uid: 3903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,44.5 + pos: 45.5,31.5 parent: 2 - - uid: 13916 + - uid: 3904 components: - type: Transform - pos: 17.5,50.5 + pos: 45.5,32.5 parent: 2 - - uid: 13919 + - uid: 3905 components: - type: Transform - pos: 15.5,49.5 + pos: 45.5,33.5 parent: 2 - - uid: 13923 + - uid: 3906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,45.5 + pos: 45.5,34.5 parent: 2 - - uid: 13924 + - uid: 3907 components: - type: Transform - pos: 14.5,50.5 + pos: 45.5,35.5 parent: 2 - - uid: 13925 + - uid: 3908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,43.5 + pos: 45.5,36.5 parent: 2 - - uid: 13926 + - uid: 3909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,44.5 + pos: 46.5,36.5 parent: 2 - - uid: 13927 + - uid: 3910 components: - type: Transform - pos: 17.5,48.5 + pos: 46.5,37.5 parent: 2 - - uid: 13929 + - uid: 3911 components: - type: Transform - pos: 15.5,50.5 + pos: 46.5,38.5 parent: 2 - - uid: 13930 + - uid: 3912 components: - type: Transform - pos: 16.5,49.5 + pos: 36.5,36.5 parent: 2 - - uid: 13937 + - uid: 3913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,40.5 + pos: 36.5,35.5 parent: 2 - - uid: 16026 + - uid: 3914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,54.5 + pos: 36.5,34.5 parent: 2 - - uid: 18605 + - uid: 3915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,22.5 - parent: 16504 - - uid: 18606 + pos: 36.5,33.5 + parent: 2 + - uid: 3916 components: - type: Transform - pos: 16.5,26.5 - parent: 16504 - - uid: 18607 + pos: 36.5,32.5 + parent: 2 + - uid: 3917 components: - type: Transform - pos: 16.5,27.5 - parent: 16504 - - uid: 18608 + pos: 36.5,31.5 + parent: 2 + - uid: 3918 components: - type: Transform - pos: 17.5,26.5 - parent: 16504 - - uid: 18609 + pos: 36.5,30.5 + parent: 2 + - uid: 3919 components: - type: Transform - pos: 17.5,27.5 - parent: 16504 - - uid: 18610 + pos: 36.5,29.5 + parent: 2 + - uid: 3920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,24.5 - parent: 16504 - - uid: 18611 + pos: 36.5,28.5 + parent: 2 + - uid: 3921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,22.5 - parent: 16504 - - uid: 18612 + pos: 36.5,27.5 + parent: 2 + - uid: 3922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,26.5 - parent: 16504 - - uid: 18613 + pos: 36.5,26.5 + parent: 2 + - uid: 3923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,26.5 - parent: 16504 - - uid: 18614 + pos: 36.5,25.5 + parent: 2 + - uid: 3924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,23.5 - parent: 16504 - - uid: 18615 + pos: 36.5,24.5 + parent: 2 + - uid: 3925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,22.5 - parent: 16504 - - uid: 21773 + pos: 36.5,23.5 + parent: 2 + - uid: 3926 components: - type: Transform - pos: 14.5,49.5 + pos: 36.5,22.5 parent: 2 - - uid: 21786 + - uid: 3927 components: - type: Transform - pos: 16.5,50.5 + pos: 36.5,21.5 parent: 2 - - uid: 21808 + - uid: 3928 components: - type: Transform - pos: 17.5,47.5 + pos: 36.5,20.5 parent: 2 - - uid: 21846 + - uid: 3929 components: - type: Transform - pos: 16.5,51.5 + pos: 36.5,19.5 parent: 2 - - uid: 21847 + - uid: 3930 components: - type: Transform - pos: 15.5,51.5 + pos: 36.5,18.5 parent: 2 - - uid: 21850 + - uid: 3931 components: - type: Transform - pos: 16.5,47.5 + pos: 36.5,17.5 parent: 2 - - uid: 21851 + - uid: 3932 components: - type: Transform - pos: 17.5,51.5 + pos: 36.5,16.5 parent: 2 - - uid: 21852 + - uid: 3933 components: - type: Transform - pos: 17.5,49.5 + pos: 36.5,15.5 parent: 2 - - uid: 21854 + - uid: 3934 components: - type: Transform - pos: 15.5,48.5 + pos: 36.5,14.5 parent: 2 - - uid: 21856 + - uid: 3935 components: - type: Transform - pos: 16.5,48.5 + pos: 36.5,13.5 parent: 2 - - uid: 21859 + - uid: 3936 components: - type: Transform - pos: 14.5,51.5 + pos: 37.5,13.5 parent: 2 - - uid: 21860 + - uid: 3937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,45.5 + pos: 38.5,13.5 parent: 2 - - uid: 21865 + - uid: 3938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,43.5 + pos: 39.5,13.5 parent: 2 -- proto: CarpetBlue - entities: - - uid: 5350 + - uid: 3939 components: - type: Transform - pos: 16.5,5.5 + pos: 40.5,13.5 parent: 2 - - uid: 5351 + - uid: 3940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,4.5 + pos: 41.5,13.5 parent: 2 - - uid: 5352 + - uid: 3941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,4.5 + pos: 42.5,13.5 parent: 2 - - uid: 5353 + - uid: 3942 components: - type: Transform - pos: 7.5,38.5 + pos: 43.5,13.5 parent: 2 - - uid: 5354 + - uid: 3943 components: - type: Transform - pos: 7.5,37.5 + pos: 44.5,13.5 parent: 2 - - uid: 5355 + - uid: 3944 components: - type: Transform - pos: 8.5,38.5 + pos: 45.5,13.5 parent: 2 - - uid: 5356 + - uid: 3945 components: - type: Transform - pos: 8.5,37.5 + pos: 46.5,13.5 parent: 2 - - uid: 5357 + - uid: 3946 components: - type: Transform - pos: 9.5,38.5 + pos: 47.5,13.5 parent: 2 - - uid: 5358 + - uid: 3947 components: - type: Transform - pos: 9.5,37.5 + pos: 48.5,13.5 parent: 2 - - uid: 5359 + - uid: 3948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,41.5 + pos: 49.5,13.5 parent: 2 - - uid: 5360 + - uid: 3949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,42.5 + pos: 50.5,13.5 parent: 2 - - uid: 5361 + - uid: 3950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,41.5 + pos: 51.5,13.5 parent: 2 - - uid: 5362 + - uid: 3951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,42.5 + pos: 52.5,13.5 parent: 2 - - uid: 5363 + - uid: 3952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,41.5 + pos: 53.5,13.5 parent: 2 - - uid: 5364 + - uid: 3953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,42.5 + pos: 54.5,13.5 parent: 2 - - uid: 5365 + - uid: 3954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,41.5 + pos: 55.5,13.5 parent: 2 - - uid: 5366 + - uid: 3955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,42.5 + pos: 56.5,13.5 parent: 2 -- proto: CarpetChapel - entities: - - uid: 5367 + - uid: 3956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,31.5 + pos: 57.5,13.5 parent: 2 - - uid: 5368 + - uid: 3957 components: - type: Transform - pos: 82.5,30.5 + pos: 58.5,13.5 parent: 2 - - uid: 5369 + - uid: 3958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,30.5 + pos: 59.5,13.5 parent: 2 - - uid: 5370 + - uid: 3959 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,31.5 + pos: 60.5,13.5 parent: 2 - - uid: 5371 + - uid: 3960 components: - type: Transform - pos: 78.5,27.5 + pos: 61.5,13.5 parent: 2 - - uid: 5372 + - uid: 3961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,28.5 + pos: 62.5,13.5 parent: 2 - - uid: 5373 + - uid: 3962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,28.5 + pos: 63.5,13.5 parent: 2 - - uid: 5374 + - uid: 3963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,27.5 + pos: 64.5,13.5 parent: 2 - - uid: 5375 + - uid: 3964 components: - type: Transform - pos: 74.5,30.5 + pos: 65.5,13.5 parent: 2 - - uid: 5376 + - uid: 3965 components: - type: Transform - pos: 74.5,33.5 + pos: 66.5,13.5 parent: 2 - - uid: 5377 + - uid: 3966 components: - type: Transform - pos: 76.5,30.5 + pos: 67.5,13.5 parent: 2 - - uid: 5378 + - uid: 3967 components: - type: Transform - pos: 76.5,33.5 + pos: 68.5,13.5 parent: 2 - - uid: 5379 + - uid: 3968 components: - type: Transform - pos: 78.5,30.5 + pos: 69.5,13.5 parent: 2 - - uid: 5380 + - uid: 3969 components: - type: Transform - pos: 78.5,33.5 + pos: 70.5,13.5 parent: 2 - - uid: 5381 + - uid: 3970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,31.5 + pos: 71.5,13.5 parent: 2 - - uid: 5382 + - uid: 3971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,31.5 + pos: 52.5,53.5 parent: 2 - - uid: 5383 + - uid: 3972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,34.5 + pos: 51.5,53.5 parent: 2 - - uid: 5384 + - uid: 3973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,34.5 + pos: 50.5,53.5 parent: 2 - - uid: 5385 + - uid: 3974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,34.5 + pos: 49.5,53.5 parent: 2 - - uid: 5386 + - uid: 3975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,34.5 + pos: 48.5,53.5 parent: 2 - - uid: 5387 + - uid: 3986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,34.5 + pos: 47.5,43.5 parent: 2 - - uid: 5388 + - uid: 3987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,30.5 + pos: 49.5,41.5 parent: 2 - - uid: 5389 + - uid: 3988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,33.5 + pos: 49.5,42.5 parent: 2 - - uid: 5390 + - uid: 3989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,33.5 + pos: 49.5,43.5 parent: 2 - - uid: 5391 + - uid: 3990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,31.5 + pos: 49.5,44.5 parent: 2 - - uid: 5392 + - uid: 3991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,31.5 + pos: 49.5,45.5 parent: 2 - - uid: 5393 + - uid: 3992 components: - type: Transform - pos: 80.5,33.5 + pos: 50.5,45.5 parent: 2 - - uid: 5394 + - uid: 3993 components: - type: Transform - pos: 80.5,30.5 + pos: 51.5,45.5 parent: 2 - - uid: 5395 + - uid: 3994 components: - type: Transform - pos: 82.5,33.5 + pos: 52.5,45.5 parent: 2 - - uid: 5396 + - uid: 3995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,34.5 + pos: 53.5,45.5 parent: 2 - - uid: 5397 + - uid: 3996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,34.5 + pos: 54.5,45.5 parent: 2 - - uid: 5398 + - uid: 3997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,31.5 + pos: 55.5,45.5 parent: 2 - - uid: 5399 + - uid: 3998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,31.5 + pos: 71.5,14.5 parent: 2 - - uid: 5400 + - uid: 3999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,34.5 + pos: 71.5,15.5 parent: 2 - - uid: 5401 + - uid: 4000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,34.5 + pos: 71.5,24.5 parent: 2 - - uid: 5402 + - uid: 4001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,31.5 + pos: 71.5,25.5 parent: 2 - - uid: 5403 + - uid: 4002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,33.5 + pos: 71.5,26.5 parent: 2 - - uid: 5404 + - uid: 4003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,33.5 + pos: 71.5,27.5 parent: 2 - - uid: 5405 + - uid: 4004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,30.5 + pos: 71.5,28.5 parent: 2 - - uid: 5406 + - uid: 4005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,30.5 + pos: 71.5,29.5 parent: 2 -- proto: CarpetCyan - entities: - - uid: 5308 + - uid: 4006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,47.5 + pos: 71.5,30.5 parent: 2 - - uid: 5504 + - uid: 4007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,47.5 + pos: 71.5,31.5 parent: 2 - - uid: 5817 + - uid: 4008 components: - type: Transform - pos: 19.5,47.5 + pos: 71.5,32.5 parent: 2 - - uid: 5825 + - uid: 4009 components: - type: Transform - pos: 20.5,46.5 + pos: 71.5,33.5 parent: 2 - - uid: 5827 + - uid: 4010 components: - type: Transform - pos: 20.5,47.5 + pos: 71.5,34.5 parent: 2 - - uid: 5832 + - uid: 4011 components: - type: Transform - pos: 21.5,46.5 + pos: 71.5,35.5 parent: 2 - - uid: 6525 + - uid: 4012 components: - type: Transform - pos: 19.5,48.5 + pos: 71.5,36.5 parent: 2 - - uid: 6526 + - uid: 4013 components: - type: Transform - pos: 19.5,46.5 + pos: 71.5,37.5 parent: 2 - - uid: 6528 + - uid: 4014 components: - type: Transform - pos: 20.5,48.5 + pos: 71.5,38.5 parent: 2 - - uid: 13915 + - uid: 4015 components: - type: Transform - pos: 21.5,48.5 + pos: 71.5,39.5 parent: 2 - - uid: 16228 + - uid: 4016 components: - type: Transform - pos: 21.5,47.5 + pos: 71.5,40.5 parent: 2 -- proto: CarpetGreen - entities: - - uid: 5407 + - uid: 4017 components: - type: Transform - pos: 3.5,38.5 + pos: 71.5,41.5 parent: 2 - - uid: 5408 + - uid: 4018 components: - type: Transform - pos: 3.5,37.5 + pos: 71.5,42.5 parent: 2 - - uid: 5409 + - uid: 4019 components: - type: Transform - pos: 4.5,38.5 + pos: 71.5,43.5 parent: 2 - - uid: 5410 + - uid: 4020 components: - type: Transform - pos: 4.5,37.5 + pos: 71.5,44.5 parent: 2 - - uid: 5411 + - uid: 4021 components: - type: Transform - pos: 5.5,38.5 + pos: 71.5,45.5 parent: 2 - - uid: 5412 + - uid: 4022 components: - type: Transform - pos: 5.5,37.5 + pos: 71.5,46.5 parent: 2 - - uid: 5413 + - uid: 4023 components: - type: Transform - pos: 63.5,62.5 + pos: 71.5,47.5 parent: 2 - - uid: 5414 + - uid: 4024 components: - type: Transform - pos: 64.5,64.5 + pos: 71.5,48.5 parent: 2 - - uid: 5415 + - uid: 4025 components: - type: Transform - pos: 64.5,63.5 + pos: 71.5,49.5 parent: 2 - - uid: 5416 + - uid: 4026 components: - type: Transform - pos: 65.5,64.5 + pos: 71.5,50.5 parent: 2 - - uid: 5417 + - uid: 4027 components: - type: Transform - pos: 65.5,63.5 + pos: 71.5,51.5 parent: 2 - - uid: 5418 + - uid: 4028 components: - type: Transform - pos: 66.5,64.5 + pos: 71.5,52.5 parent: 2 - - uid: 5419 + - uid: 4029 components: - type: Transform - pos: 66.5,63.5 + pos: 70.5,52.5 parent: 2 - - uid: 5420 + - uid: 4030 components: - type: Transform - pos: 63.5,64.5 + pos: 69.5,52.5 parent: 2 - - uid: 5421 + - uid: 4031 components: - type: Transform - pos: 63.5,63.5 + pos: 68.5,52.5 parent: 2 - - uid: 5422 + - uid: 4032 components: - type: Transform - pos: 63.5,61.5 + pos: 67.5,52.5 parent: 2 -- proto: CarpetOrange - entities: - - uid: 5423 + - uid: 4033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,68.5 + pos: 66.5,52.5 parent: 2 - - uid: 5424 + - uid: 4034 components: - type: Transform - pos: 2.5,1.5 + pos: 65.5,52.5 parent: 2 - - uid: 5425 + - uid: 4035 components: - type: Transform - pos: 1.5,1.5 + pos: 64.5,52.5 parent: 2 - - uid: 5426 + - uid: 4036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,65.5 + pos: 63.5,52.5 parent: 2 - - uid: 5427 + - uid: 4037 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,64.5 + pos: 62.5,52.5 parent: 2 - - uid: 5428 + - uid: 4038 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,65.5 + pos: 61.5,52.5 parent: 2 - - uid: 5429 + - uid: 4039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,64.5 + pos: 60.5,52.5 parent: 2 - - uid: 5430 + - uid: 4040 components: - type: Transform - pos: 65.5,59.5 + pos: 59.5,52.5 parent: 2 - - uid: 5431 + - uid: 4041 components: - type: Transform - pos: 65.5,58.5 + pos: 58.5,52.5 parent: 2 - - uid: 5432 + - uid: 4042 components: - type: Transform - pos: 66.5,59.5 + pos: 56.5,45.5 parent: 2 - - uid: 5433 + - uid: 4043 components: - type: Transform - pos: 66.5,58.5 + pos: 57.5,68.5 parent: 2 - - uid: 5434 + - uid: 4044 components: - type: Transform - pos: 39.5,67.5 + pos: 12.5,13.5 parent: 2 - - uid: 5435 + - uid: 4045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,68.5 + pos: 12.5,14.5 parent: 2 - - uid: 5436 + - uid: 4046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,68.5 + pos: 12.5,15.5 parent: 2 - - uid: 5437 + - uid: 4047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,68.5 + pos: 12.5,16.5 parent: 2 -- proto: CarpetPurple - entities: - - uid: 5217 + - uid: 4048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,44.5 + pos: 12.5,17.5 parent: 2 - - uid: 6519 + - uid: 4049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,46.5 + pos: 12.5,18.5 parent: 2 -- proto: CarpetSBlue - entities: - - uid: 5438 + - uid: 4050 components: - type: Transform - pos: 17.5,21.5 + pos: 12.5,19.5 parent: 2 - - uid: 5439 + - uid: 4051 components: - type: Transform - pos: 18.5,19.5 + pos: 12.5,20.5 parent: 2 - - uid: 5440 + - uid: 4052 components: - type: Transform - pos: 18.5,20.5 + pos: 12.5,21.5 parent: 2 - - uid: 5441 + - uid: 4053 components: - type: Transform - pos: 18.5,21.5 + pos: 12.5,22.5 parent: 2 - - uid: 5442 + - uid: 4054 components: - type: Transform - pos: 19.5,21.5 + pos: 12.5,23.5 parent: 2 - - uid: 5443 + - uid: 4055 components: - type: Transform - pos: 19.5,20.5 + pos: 12.5,24.5 parent: 2 - - uid: 5444 + - uid: 4056 components: - type: Transform - pos: 19.5,22.5 + pos: 12.5,25.5 parent: 2 - - uid: 5445 + - uid: 4057 components: - type: Transform - pos: 19.5,19.5 + pos: 12.5,26.5 parent: 2 - - uid: 5764 + - uid: 4058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,44.5 + pos: 12.5,27.5 parent: 2 - - uid: 5808 + - uid: 4059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,42.5 + pos: 12.5,28.5 parent: 2 - - uid: 5810 + - uid: 4060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,44.5 + pos: 12.5,29.5 parent: 2 - - uid: 14008 + - uid: 4061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,42.5 + pos: 12.5,30.5 parent: 2 -- proto: CarvedPumpkinSmall - entities: - - uid: 22268 + - uid: 4062 components: - type: Transform - pos: 24.31805,47.57346 + pos: 12.5,31.5 parent: 2 -- proto: Catwalk - entities: - - uid: 537 + - uid: 4063 components: - type: Transform - pos: 56.5,-34.5 + pos: 12.5,32.5 parent: 2 - - uid: 1509 + - uid: 4064 components: - type: Transform - pos: 56.5,-32.5 + pos: 12.5,33.5 parent: 2 - - uid: 2405 + - uid: 4065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,53.5 + pos: 12.5,34.5 parent: 2 - - uid: 2406 + - uid: 4066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,45.5 + pos: 12.5,35.5 parent: 2 - - uid: 2407 + - uid: 4067 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,55.5 + pos: 12.5,36.5 parent: 2 - - uid: 2408 + - uid: 4068 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,54.5 + pos: 59.5,70.5 parent: 2 - - uid: 2409 + - uid: 4069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,55.5 + pos: 58.5,70.5 parent: 2 - - uid: 2410 + - uid: 4070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,55.5 + pos: 57.5,70.5 parent: 2 - - uid: 2550 + - uid: 4071 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,46.5 + pos: 53.5,76.5 parent: 2 - - uid: 3589 + - uid: 4075 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,45.5 + pos: 29.5,13.5 parent: 2 - - uid: 3599 + - uid: 4076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,46.5 + pos: 30.5,13.5 parent: 2 - - uid: 3604 + - uid: 4077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,54.5 + pos: 31.5,13.5 parent: 2 - - uid: 3635 + - uid: 4078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,46.5 + pos: 32.5,13.5 parent: 2 - - uid: 3636 + - uid: 4079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,45.5 + pos: 33.5,13.5 parent: 2 - - uid: 3637 + - uid: 4080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,47.5 + pos: 34.5,13.5 parent: 2 - - uid: 3638 + - uid: 4081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,48.5 + pos: 35.5,13.5 parent: 2 - - uid: 3639 + - uid: 4083 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,49.5 + pos: 47.5,76.5 parent: 2 - - uid: 3640 + - uid: 4084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,50.5 + pos: 47.5,75.5 parent: 2 - - uid: 3641 + - uid: 4085 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,50.5 + pos: 47.5,74.5 parent: 2 - - uid: 3642 + - uid: 4086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,46.5 + pos: 47.5,73.5 parent: 2 - - uid: 3667 + - uid: 4087 components: - type: Transform - pos: 53.5,-32.5 + pos: 40.5,72.5 parent: 2 - - uid: 3678 + - uid: 4088 components: - type: Transform - pos: 51.5,-30.5 + pos: 41.5,72.5 parent: 2 - - uid: 3686 + - uid: 4089 components: - type: Transform - pos: 51.5,-22.5 + pos: 42.5,72.5 parent: 2 - - uid: 3687 + - uid: 4090 components: - type: Transform - pos: 51.5,-21.5 + pos: 43.5,72.5 parent: 2 - - uid: 3688 + - uid: 4091 components: - type: Transform - pos: 51.5,-24.5 + pos: 43.5,71.5 parent: 2 - - uid: 3896 + - uid: 4092 components: - type: Transform - pos: 55.5,-32.5 + pos: 43.5,70.5 parent: 2 - - uid: 4121 + - uid: 4093 components: - type: Transform - pos: 51.5,-25.5 + pos: 43.5,69.5 parent: 2 - - uid: 4122 + - uid: 4094 components: - type: Transform - pos: 51.5,-27.5 + pos: 43.5,68.5 parent: 2 - - uid: 4123 + - uid: 4095 components: - type: Transform - pos: 51.5,-26.5 + pos: 53.5,52.5 parent: 2 - - uid: 4124 + - uid: 4096 components: - type: Transform - pos: 51.5,-23.5 + pos: 54.5,53.5 parent: 2 - - uid: 4125 + - uid: 4097 components: - type: Transform - pos: 51.5,-28.5 + pos: 55.5,53.5 parent: 2 - - uid: 4127 + - uid: 4098 components: - type: Transform - pos: 51.5,-29.5 + pos: 56.5,53.5 parent: 2 - - uid: 4131 + - uid: 4099 components: - type: Transform - pos: 51.5,-31.5 + pos: 51.5,66.5 parent: 2 - - uid: 4986 + - uid: 4100 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,52.5 + pos: 45.5,70.5 parent: 2 - - uid: 5006 + - uid: 4101 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,45.5 + pos: 57.5,69.5 parent: 2 - - uid: 5446 + - uid: 4102 components: - type: Transform - pos: 27.5,71.5 + pos: 57.5,65.5 parent: 2 - - uid: 5447 + - uid: 4103 components: - type: Transform - pos: 51.5,76.5 + pos: 53.5,61.5 parent: 2 - - uid: 5448 + - uid: 4104 components: - type: Transform - pos: 51.5,78.5 + pos: 45.5,70.5 parent: 2 - - uid: 5449 + - uid: 4105 components: - type: Transform - pos: 32.5,19.5 + pos: 44.5,70.5 parent: 2 - - uid: 5450 + - uid: 4106 components: - type: Transform - pos: 53.5,77.5 + pos: 48.5,56.5 parent: 2 - - uid: 5451 + - uid: 4107 components: - type: Transform - pos: 52.5,79.5 + pos: 49.5,56.5 parent: 2 - - uid: 5452 + - uid: 4108 components: - type: Transform - pos: 52.5,78.5 + pos: 50.5,56.5 parent: 2 - - uid: 5453 + - uid: 4109 components: - type: Transform - pos: 51.5,77.5 + pos: 51.5,56.5 parent: 2 - - uid: 5454 + - uid: 4110 components: - type: Transform - pos: 28.5,71.5 + pos: 31.5,18.5 parent: 2 - - uid: 5455 + - uid: 4111 components: - type: Transform - pos: 46.5,93.5 + pos: 57.5,64.5 parent: 2 - - uid: 5456 + - uid: 4112 components: - type: Transform - pos: 46.5,91.5 + pos: 57.5,63.5 parent: 2 - - uid: 5457 + - uid: 4113 components: - type: Transform - pos: 46.5,95.5 + pos: 57.5,62.5 parent: 2 - - uid: 5458 + - uid: 4114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,83.5 + pos: 57.5,61.5 parent: 2 - - uid: 5459 + - uid: 4115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,82.5 + pos: 57.5,60.5 parent: 2 - - uid: 5460 + - uid: 4116 components: - type: Transform - pos: 53.5,79.5 + pos: 57.5,59.5 parent: 2 - - uid: 5461 + - uid: 4117 components: - type: Transform - pos: 46.5,94.5 + pos: 57.5,58.5 parent: 2 - - uid: 5462 + - uid: 4118 components: - type: Transform - pos: 46.5,92.5 + pos: 57.5,57.5 parent: 2 - - uid: 5463 + - uid: 4119 components: - type: Transform - pos: 46.5,96.5 + pos: 57.5,56.5 parent: 2 - - uid: 5464 + - uid: 4120 components: - type: Transform - pos: 51.5,79.5 + pos: 57.5,55.5 parent: 2 - - uid: 5465 + - uid: 4126 components: - type: Transform - pos: 53.5,76.5 + pos: 49.5,77.5 parent: 2 - - uid: 5466 + - uid: 4128 components: - type: Transform - pos: 52.5,76.5 + pos: 48.5,77.5 parent: 2 - - uid: 5467 + - uid: 4129 components: - type: Transform - pos: 45.5,57.5 + pos: 89.5,11.5 parent: 2 - - uid: 5468 + - uid: 4130 components: - type: Transform - pos: 6.5,-0.5 + pos: 89.5,13.5 parent: 2 - - uid: 5469 + - uid: 4132 components: - type: Transform - pos: 11.5,-12.5 + pos: 50.5,64.5 parent: 2 - - uid: 5470 + - uid: 4133 components: - type: Transform - pos: 10.5,-7.5 + pos: 50.5,61.5 parent: 2 - - uid: 5471 + - uid: 4134 components: - type: Transform - pos: 10.5,-8.5 + pos: 49.5,77.5 parent: 2 - - uid: 5472 + - uid: 4135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,64.5 + pos: 75.5,9.5 parent: 2 - - uid: 5473 + - uid: 4136 components: - type: Transform - pos: 50.5,79.5 + pos: 75.5,8.5 parent: 2 - - uid: 5474 + - uid: 4137 components: - type: Transform - pos: 50.5,78.5 + pos: 76.5,8.5 parent: 2 - - uid: 5475 + - uid: 4138 components: - type: Transform - pos: 50.5,77.5 + pos: 64.5,34.5 parent: 2 - - uid: 5476 + - uid: 4139 components: - type: Transform - pos: 53.5,78.5 + pos: 52.5,40.5 parent: 2 - - uid: 5477 + - uid: 4140 components: - type: Transform - pos: 50.5,76.5 + pos: 66.5,9.5 parent: 2 - - uid: 5478 + - uid: 4141 components: - type: Transform - pos: 10.5,-9.5 + pos: 46.5,80.5 parent: 2 - - uid: 5479 + - uid: 4142 components: - type: Transform - pos: 11.5,-6.5 + pos: 11.5,-1.5 parent: 2 - - uid: 5480 + - uid: 4143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,85.5 + pos: 52.5,78.5 parent: 2 - - uid: 5481 + - uid: 4144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,86.5 + pos: 50.5,79.5 parent: 2 - - uid: 5482 + - uid: 4145 components: - type: Transform - pos: 64.5,35.5 + pos: 54.5,61.5 parent: 2 - - uid: 5483 + - uid: 4146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,81.5 + pos: 48.5,81.5 parent: 2 - - uid: 5484 + - uid: 4147 components: - type: Transform - pos: 45.5,55.5 + pos: 54.5,63.5 parent: 2 - - uid: 5485 + - uid: 4148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,17.5 + pos: 54.5,64.5 parent: 2 - - uid: 5486 + - uid: 4149 components: - type: Transform - pos: 28.5,0.5 + pos: 54.5,62.5 parent: 2 - - uid: 5487 + - uid: 4150 components: - type: Transform - pos: 29.5,-0.5 + pos: 52.5,62.5 parent: 2 - - uid: 5488 + - uid: 4151 components: - type: Transform - pos: 31.5,19.5 + pos: 52.5,61.5 parent: 2 - - uid: 5489 + - uid: 4152 components: - type: Transform - pos: 29.5,17.5 + pos: 48.5,65.5 parent: 2 - - uid: 5490 + - uid: 4153 components: - type: Transform - pos: 31.5,17.5 + pos: 53.5,65.5 parent: 2 - - uid: 5491 + - uid: 4155 components: - type: Transform - pos: 32.5,17.5 + pos: 89.5,17.5 parent: 2 - - uid: 5492 + - uid: 4156 components: - type: Transform - pos: 33.5,17.5 + pos: 89.5,20.5 parent: 2 - - uid: 5493 + - uid: 4157 components: - type: Transform - pos: 28.5,17.5 + pos: 89.5,19.5 parent: 2 - - uid: 5494 + - uid: 4158 components: - type: Transform - pos: 23.5,18.5 + pos: 53.5,63.5 parent: 2 - - uid: 5495 + - uid: 4159 components: - type: Transform - pos: 23.5,17.5 + pos: 48.5,55.5 parent: 2 - - uid: 5496 + - uid: 4160 components: - type: Transform - pos: 23.5,16.5 + pos: 21.5,-28.5 parent: 2 - - uid: 5497 + - uid: 4161 components: - type: Transform - pos: 22.5,16.5 + pos: 52.5,77.5 parent: 2 - - uid: 5498 + - uid: 4162 components: - type: Transform - pos: 24.5,16.5 + pos: 39.5,72.5 parent: 2 - - uid: 5499 + - uid: 4163 components: - type: Transform - pos: 25.5,16.5 + pos: 51.5,78.5 parent: 2 - - uid: 5500 + - uid: 4164 components: - type: Transform - pos: 26.5,16.5 + pos: 52.5,65.5 parent: 2 - - uid: 5501 + - uid: 4165 components: - type: Transform - pos: 25.5,17.5 + pos: 47.5,65.5 parent: 2 - - uid: 5502 + - uid: 4166 components: - type: Transform - pos: 25.5,18.5 + pos: 52.5,60.5 parent: 2 - - uid: 5503 + - uid: 4167 components: - type: Transform - pos: 28.5,-1.5 + pos: 52.5,59.5 parent: 2 - - uid: 5505 + - uid: 4168 components: - type: Transform - pos: 28.5,-0.5 + pos: 53.5,60.5 parent: 2 - - uid: 5506 + - uid: 4170 components: - type: Transform - pos: 27.5,-0.5 + pos: 51.5,58.5 parent: 2 - - uid: 5507 + - uid: 4171 components: - type: Transform - pos: -3.5,16.5 + pos: 51.5,59.5 parent: 2 - - uid: 5508 + - uid: 4172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,45.5 + pos: 51.5,57.5 parent: 2 - - uid: 5509 + - uid: 4173 components: - type: Transform - pos: 57.5,55.5 + pos: 49.5,65.5 parent: 2 - - uid: 5510 + - uid: 4174 components: - type: Transform - pos: 57.5,57.5 + pos: 50.5,65.5 parent: 2 - - uid: 5511 + - uid: 4176 components: - type: Transform - pos: 56.5,62.5 + pos: 89.5,22.5 parent: 2 - - uid: 5512 + - uid: 4177 components: - type: Transform - pos: 57.5,65.5 + pos: 89.5,21.5 parent: 2 - - uid: 5513 + - uid: 4178 components: - type: Transform - pos: 57.5,64.5 + pos: 89.5,18.5 parent: 2 - - uid: 5514 + - uid: 4179 components: - type: Transform - pos: -3.5,17.5 + pos: 67.5,11.5 parent: 2 - - uid: 5515 + - uid: 4180 components: - type: Transform - pos: 3.5,21.5 + pos: 53.5,78.5 parent: 2 - - uid: 5516 + - uid: 4181 components: - type: Transform - pos: 5.5,16.5 + pos: 65.5,7.5 parent: 2 - - uid: 5517 + - uid: 4182 components: - type: Transform - pos: 4.5,16.5 + pos: 48.5,54.5 parent: 2 - - uid: 5518 + - uid: 4183 components: - type: Transform - pos: 3.5,19.5 + pos: 52.5,76.5 parent: 2 - - uid: 5519 + - uid: 4184 components: - type: Transform - pos: 3.5,20.5 + pos: 11.5,-0.5 parent: 2 - - uid: 5520 + - uid: 4185 components: - type: Transform - pos: 5.5,18.5 + pos: 11.5,0.5 parent: 2 - - uid: 5521 + - uid: 4186 components: - type: Transform - pos: -2.5,17.5 + pos: 51.5,76.5 parent: 2 - - uid: 5522 + - uid: 4187 components: - type: Transform - pos: -1.5,16.5 + pos: 64.5,35.5 parent: 2 - - uid: 5523 + - uid: 4188 components: - type: Transform - pos: -2.5,16.5 + pos: 50.5,78.5 parent: 2 - - uid: 5524 + - uid: 4189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,9.5 + pos: 89.5,15.5 parent: 2 - - uid: 5525 + - uid: 4190 components: - type: Transform - pos: 62.5,66.5 + pos: 89.5,16.5 parent: 2 - - uid: 5526 + - uid: 4191 components: - type: Transform - pos: 12.5,39.5 + pos: 89.5,14.5 parent: 2 - - uid: 5527 + - uid: 4192 components: - type: Transform - pos: 9.5,18.5 + pos: 89.5,23.5 parent: 2 - - uid: 5528 + - uid: 4193 components: - type: Transform - pos: 10.5,18.5 + pos: 88.5,23.5 parent: 2 - - uid: 5529 + - uid: 4194 components: - type: Transform - pos: 35.5,59.5 + pos: 87.5,23.5 parent: 2 - - uid: 5530 + - uid: 4195 components: - type: Transform - pos: 3.5,18.5 + pos: 50.5,77.5 parent: 2 - - uid: 5531 + - uid: 4196 components: - type: Transform - pos: 6.5,18.5 + pos: 51.5,77.5 parent: 2 - - uid: 5532 + - uid: 4197 components: - type: Transform - pos: 4.5,18.5 + pos: 66.5,10.5 parent: 2 - - uid: 5533 + - uid: 4198 components: - type: Transform - pos: 7.5,18.5 + pos: 68.5,11.5 parent: 2 - - uid: 5535 + - uid: 4199 components: - type: Transform - pos: 12.5,41.5 + pos: 11.5,-6.5 parent: 2 - - uid: 5536 + - uid: 4200 components: - type: Transform - pos: 12.5,43.5 + pos: 11.5,-2.5 parent: 2 - - uid: 5537 + - uid: 4201 components: - type: Transform - pos: 12.5,44.5 + pos: 11.5,-3.5 parent: 2 - - uid: 5538 + - uid: 4202 components: - type: Transform - pos: 12.5,45.5 + pos: 11.5,-4.5 parent: 2 - - uid: 5539 + - uid: 4203 components: - type: Transform - pos: 12.5,49.5 + pos: 66.5,11.5 parent: 2 - - uid: 5540 + - uid: 4204 components: - type: Transform - pos: 12.5,50.5 + pos: 66.5,8.5 parent: 2 - - uid: 5541 + - uid: 4206 components: - type: Transform - pos: 12.5,51.5 + pos: 86.5,23.5 parent: 2 - - uid: 5542 + - uid: 4207 components: - type: Transform - pos: 11.5,55.5 + pos: 10.5,-7.5 parent: 2 - - uid: 5543 + - uid: 4208 components: - type: Transform - pos: 10.5,55.5 + pos: 11.5,18.5 parent: 2 - - uid: 5544 + - uid: 4209 components: - type: Transform - pos: 10.5,59.5 + pos: 10.5,-8.5 parent: 2 - - uid: 5545 + - uid: 4210 components: - type: Transform - pos: 10.5,60.5 + pos: 10.5,18.5 parent: 2 - - uid: 5546 + - uid: 4211 components: - type: Transform - pos: 10.5,61.5 + pos: 52.5,63.5 parent: 2 - - uid: 5547 + - uid: 4212 components: - type: Transform - pos: 13.5,61.5 + pos: 51.5,61.5 parent: 2 - - uid: 5548 + - uid: 4213 components: - type: Transform - pos: 14.5,61.5 + pos: 51.5,62.5 parent: 2 - - uid: 5549 + - uid: 4214 components: - type: Transform - pos: 15.5,61.5 + pos: 53.5,59.5 parent: 2 - - uid: 5550 + - uid: 4215 components: - type: Transform - pos: 23.5,-21.5 + pos: 9.5,18.5 parent: 2 - - uid: 5551 + - uid: 4216 components: - type: Transform - pos: 14.5,65.5 + pos: 8.5,18.5 parent: 2 - - uid: 5552 + - uid: 4217 components: - type: Transform - pos: 14.5,68.5 + pos: 7.5,18.5 parent: 2 - - uid: 5553 + - uid: 4218 components: - type: Transform - pos: 14.5,69.5 + pos: 6.5,18.5 parent: 2 - - uid: 5554 + - uid: 4219 components: - type: Transform - pos: 14.5,70.5 + pos: 5.5,18.5 parent: 2 - - uid: 5555 + - uid: 4220 components: - type: Transform - pos: 13.5,73.5 + pos: 4.5,18.5 parent: 2 - - uid: 5556 + - uid: 4221 components: - type: Transform - pos: 14.5,76.5 + pos: 3.5,18.5 parent: 2 - - uid: 5557 + - uid: 4222 components: - type: Transform - pos: 13.5,81.5 + pos: 3.5,17.5 parent: 2 - - uid: 5558 + - uid: 4223 components: - type: Transform - pos: 18.5,61.5 + pos: 3.5,16.5 parent: 2 - - uid: 5559 + - uid: 4224 components: - type: Transform - pos: 19.5,61.5 + pos: 4.5,16.5 parent: 2 - - uid: 5560 + - uid: 4225 components: - type: Transform - pos: 20.5,61.5 + pos: 10.5,-6.5 parent: 2 - - uid: 5561 + - uid: 4226 components: - type: Transform - pos: 23.5,62.5 + pos: 52.5,41.5 parent: 2 - - uid: 5562 + - uid: 4227 components: - type: Transform - pos: 24.5,62.5 + pos: 66.5,7.5 parent: 2 - - uid: 5563 + - uid: 4228 components: - type: Transform - pos: 25.5,62.5 + pos: 66.5,4.5 parent: 2 - - uid: 5564 + - uid: 4229 components: - type: Transform - pos: 27.5,66.5 + pos: 66.5,5.5 parent: 2 - - uid: 5565 + - uid: 4230 components: - type: Transform - pos: 28.5,66.5 + pos: 66.5,6.5 parent: 2 - - uid: 5566 + - uid: 4231 components: - type: Transform - pos: 34.5,67.5 + pos: 66.5,6.5 parent: 2 - - uid: 5567 + - uid: 4232 components: - type: Transform - pos: 35.5,67.5 + pos: 5.5,16.5 parent: 2 - - uid: 5568 + - uid: 4233 components: - type: Transform - pos: 36.5,67.5 + pos: 20.5,-28.5 parent: 2 - - uid: 5569 + - uid: 4297 components: - type: Transform - pos: 36.5,64.5 + pos: 23.5,-28.5 parent: 2 - - uid: 5570 + - uid: 4298 components: - type: Transform - pos: 36.5,63.5 + pos: 22.5,-28.5 parent: 2 - - uid: 5571 + - uid: 4299 components: - type: Transform - pos: 36.5,62.5 + pos: 22.5,-29.5 parent: 2 - - uid: 5572 + - uid: 4300 components: - type: Transform - pos: 35.5,58.5 + pos: 22.5,-30.5 parent: 2 - - uid: 5573 + - uid: 4306 components: - type: Transform - pos: 35.5,57.5 + pos: 39.5,27.5 parent: 2 - - uid: 5578 + - uid: 4326 components: - type: Transform - pos: 57.5,45.5 + pos: 25.5,-39.5 parent: 2 - - uid: 5579 + - uid: 4327 components: - type: Transform - pos: 58.5,45.5 + pos: 20.5,-38.5 parent: 2 - - uid: 5580 + - uid: 4390 components: - type: Transform - pos: 59.5,45.5 + pos: 43.5,55.5 parent: 2 - - uid: 5581 + - uid: 4395 components: - type: Transform - pos: 66.5,44.5 + pos: 36.5,57.5 parent: 2 - - uid: 5582 + - uid: 4396 components: - type: Transform - pos: 66.5,43.5 + pos: 36.5,58.5 parent: 2 - - uid: 5583 + - uid: 4397 components: - type: Transform - pos: 51.5,70.5 + pos: 36.5,59.5 parent: 2 - - uid: 5584 + - uid: 4398 components: - type: Transform - pos: 64.5,27.5 + pos: 36.5,60.5 parent: 2 - - uid: 5585 + - uid: 4399 components: - type: Transform - pos: 64.5,26.5 + pos: 36.5,61.5 parent: 2 - - uid: 5586 + - uid: 4400 components: - type: Transform - pos: 64.5,25.5 + pos: 36.5,62.5 parent: 2 - - uid: 5587 + - uid: 4401 components: - type: Transform - pos: 64.5,24.5 + pos: 36.5,63.5 parent: 2 - - uid: 5588 + - uid: 4402 components: - type: Transform - pos: 64.5,23.5 + pos: 36.5,64.5 parent: 2 - - uid: 5589 + - uid: 4403 components: - type: Transform - pos: 67.5,28.5 + pos: 36.5,65.5 parent: 2 - - uid: 5590 + - uid: 4404 components: - type: Transform - pos: 67.5,27.5 + pos: 36.5,66.5 parent: 2 - - uid: 5591 + - uid: 4405 components: - type: Transform - pos: 67.5,26.5 + pos: 35.5,66.5 parent: 2 - - uid: 5592 + - uid: 4406 components: - type: Transform - pos: 67.5,25.5 + pos: 34.5,66.5 parent: 2 - - uid: 5593 + - uid: 4407 components: - type: Transform - pos: 64.5,18.5 + pos: 33.5,66.5 parent: 2 - - uid: 5594 + - uid: 4408 components: - type: Transform - pos: 64.5,17.5 + pos: 32.5,66.5 parent: 2 - - uid: 5595 + - uid: 4409 components: - type: Transform - pos: 62.5,17.5 + pos: 31.5,66.5 parent: 2 - - uid: 5596 + - uid: 4410 components: - type: Transform - pos: 61.5,17.5 + pos: 30.5,66.5 parent: 2 - - uid: 5597 + - uid: 4411 components: - type: Transform - pos: 68.5,18.5 + pos: 29.5,66.5 parent: 2 - - uid: 5598 + - uid: 4412 components: - type: Transform - pos: 68.5,19.5 + pos: 28.5,66.5 parent: 2 - - uid: 5599 + - uid: 4413 components: - type: Transform - pos: 68.5,20.5 + pos: 27.5,66.5 parent: 2 - - uid: 5600 + - uid: 4414 components: - type: Transform - pos: 67.5,20.5 + pos: 26.5,66.5 parent: 2 - - uid: 5601 + - uid: 4415 components: - type: Transform - pos: 64.5,32.5 + pos: 25.5,66.5 parent: 2 - - uid: 5602 + - uid: 4416 components: - type: Transform - pos: 65.5,33.5 + pos: 28.5,65.5 parent: 2 - - uid: 5603 + - uid: 4417 components: - type: Transform - pos: 63.5,37.5 + pos: 25.5,65.5 parent: 2 - - uid: 5604 + - uid: 4418 components: - type: Transform - pos: 63.5,36.5 + pos: 25.5,64.5 parent: 2 - - uid: 5605 + - uid: 4419 components: - type: Transform - pos: 63.5,35.5 + pos: 49.5,63.5 parent: 2 - - uid: 5606 + - uid: 4420 components: - type: Transform - pos: 63.5,43.5 + pos: 49.5,61.5 parent: 2 - - uid: 5607 + - uid: 4421 components: - type: Transform - pos: 63.5,42.5 + pos: 49.5,62.5 parent: 2 - - uid: 5608 + - uid: 4422 components: - type: Transform - pos: 64.5,42.5 + pos: 51.5,71.5 parent: 2 - - uid: 5609 + - uid: 4423 components: - type: Transform - pos: 51.5,69.5 + pos: 53.5,71.5 parent: 2 - - uid: 5610 + - uid: 4424 components: - type: Transform - pos: 52.5,70.5 + pos: 44.5,56.5 parent: 2 - - uid: 5611 + - uid: 4425 components: - type: Transform - pos: 53.5,68.5 + pos: 44.5,57.5 parent: 2 - - uid: 5612 + - uid: 4426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,11.5 + pos: 45.5,57.5 parent: 2 - - uid: 5613 + - uid: 4427 components: - type: Transform - pos: 53.5,70.5 + pos: 10.5,-9.5 parent: 2 - - uid: 5614 + - uid: 4428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-17.5 + pos: 10.5,-10.5 parent: 2 - - uid: 5615 + - uid: 4429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-18.5 + pos: 10.5,-11.5 parent: 2 - - uid: 5616 + - uid: 4430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-19.5 + pos: 10.5,-12.5 parent: 2 - - uid: 5617 + - uid: 4431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-19.5 + pos: 78.5,5.5 parent: 2 - - uid: 5618 + - uid: 4432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-19.5 + pos: 77.5,5.5 parent: 2 - - uid: 5619 + - uid: 4433 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-19.5 + pos: 78.5,5.5 parent: 2 - - uid: 5620 + - uid: 4434 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-19.5 + pos: 77.5,5.5 parent: 2 - - uid: 5621 + - uid: 4436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-19.5 + pos: 76.5,18.5 parent: 2 - - uid: 5622 + - uid: 4437 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-19.5 + pos: 76.5,16.5 parent: 2 - - uid: 5623 + - uid: 4543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-18.5 + pos: 10.5,-5.5 parent: 2 - - uid: 5624 + - uid: 5007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-17.5 + pos: 11.5,55.5 parent: 2 - - uid: 5626 + - uid: 5009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-14.5 + pos: 12.5,51.5 parent: 2 - - uid: 5627 + - uid: 5091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-13.5 + pos: 26.5,29.5 parent: 2 - - uid: 5628 + - uid: 5309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-12.5 + pos: 12.5,46.5 parent: 2 - - uid: 5629 + - uid: 5859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-10.5 + pos: 24.5,-38.5 parent: 2 - - uid: 5630 + - uid: 6123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-9.5 + pos: 12.5,50.5 parent: 2 - - uid: 5631 + - uid: 6125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 + pos: 12.5,45.5 parent: 2 - - uid: 5632 + - uid: 6577 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-7.5 + pos: 38.5,27.5 parent: 2 - - uid: 5633 + - uid: 6723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-4.5 + pos: 16.5,66.5 parent: 2 - - uid: 5634 + - uid: 6770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-3.5 + pos: 19.5,66.5 parent: 2 - - uid: 5635 + - uid: 6775 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-0.5 + pos: 17.5,66.5 parent: 2 - - uid: 5636 + - uid: 6791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,0.5 + pos: 20.5,66.5 parent: 2 - - uid: 5637 + - uid: 6898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-11.5 + pos: 22.5,66.5 parent: 2 - - uid: 5638 + - uid: 6932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-10.5 + pos: 12.5,48.5 parent: 2 - - uid: 5639 + - uid: 7331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-11.5 + pos: 24.5,66.5 parent: 2 - - uid: 5640 + - uid: 7375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-12.5 + pos: 12.5,52.5 parent: 2 - - uid: 5641 + - uid: 7454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-13.5 + pos: 11.5,-32.5 parent: 2 - - uid: 5642 + - uid: 8083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-13.5 + pos: 18.5,66.5 parent: 2 - - uid: 5643 + - uid: 8093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-13.5 + pos: 14.5,66.5 parent: 2 - - uid: 5644 + - uid: 8094 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-14.5 + pos: 20.5,61.5 parent: 2 - - uid: 5645 + - uid: 8225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-14.5 + pos: 10.5,59.5 parent: 2 - - uid: 5646 + - uid: 8226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-13.5 + pos: 10.5,58.5 parent: 2 - - uid: 5647 + - uid: 8306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-13.5 + pos: 50.5,75.5 parent: 2 - - uid: 5648 + - uid: 8536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-11.5 + pos: 11.5,-38.5 parent: 2 - - uid: 5649 + - uid: 8569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-10.5 + pos: 13.5,-44.5 parent: 2 - - uid: 5650 + - uid: 8856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-9.5 + pos: 10.5,55.5 parent: 2 - - uid: 5651 + - uid: 8900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-7.5 + pos: 53.5,75.5 parent: 2 - - uid: 5652 + - uid: 9122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 + pos: 12.5,47.5 parent: 2 - - uid: 5653 + - uid: 9237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-7.5 + pos: 21.5,61.5 parent: 2 - - uid: 5654 + - uid: 9308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-6.5 + pos: 10.5,57.5 parent: 2 - - uid: 5655 + - uid: 9309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-3.5 + pos: 10.5,56.5 parent: 2 - - uid: 5656 + - uid: 9315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-2.5 + pos: 21.5,66.5 parent: 2 - - uid: 5657 + - uid: 9316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-1.5 + pos: 23.5,66.5 parent: 2 - - uid: 5658 + - uid: 9317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-1.5 + pos: 12.5,54.5 parent: 2 - - uid: 5659 + - uid: 9318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-1.5 + pos: 12.5,53.5 parent: 2 - - uid: 5660 + - uid: 9340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,0.5 + pos: 14.5,63.5 parent: 2 - - uid: 5661 + - uid: 9342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,1.5 + pos: 38.5,57.5 parent: 2 - - uid: 5662 + - uid: 9595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,3.5 + pos: 18.5,-46.5 parent: 2 - - uid: 5663 + - uid: 9596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,6.5 + pos: 26.5,-34.5 parent: 2 - - uid: 5664 + - uid: 9695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,7.5 + pos: 15.5,66.5 parent: 2 - - uid: 5665 + - uid: 10888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,8.5 + pos: 18.5,-36.5 parent: 2 - - uid: 5666 + - uid: 10889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,10.5 + pos: 20.5,-37.5 parent: 2 - - uid: 5667 + - uid: 11134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,10.5 - parent: 2 - - uid: 5668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,10.5 + pos: 14.5,61.5 parent: 2 - - uid: 5669 + - uid: 11263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,10.5 + pos: 40.5,56.5 parent: 2 - - uid: 5670 + - uid: 11265 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,10.5 + pos: 39.5,56.5 parent: 2 - - uid: 5671 + - uid: 11267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,10.5 + pos: 42.5,56.5 parent: 2 - - uid: 5672 + - uid: 12136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,8.5 + pos: 41.5,56.5 parent: 2 - - uid: 5673 + - uid: 12153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,7.5 + pos: 17.5,-46.5 parent: 2 - - uid: 5674 + - uid: 12154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,4.5 + pos: 16.5,-44.5 parent: 2 - - uid: 5675 + - uid: 12166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,4.5 + pos: 13.5,-41.5 parent: 2 - - uid: 5676 + - uid: 12167 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,5.5 + pos: 11.5,-40.5 parent: 2 - - uid: 5677 + - uid: 12168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,6.5 + pos: 16.5,-46.5 parent: 2 - - uid: 5678 + - uid: 12169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,8.5 + pos: 11.5,-39.5 parent: 2 - - uid: 5679 + - uid: 12170 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,9.5 + pos: 16.5,-45.5 parent: 2 - - uid: 5680 + - uid: 12179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,10.5 + pos: 12.5,-41.5 parent: 2 - - uid: 5681 + - uid: 12180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,10.5 + pos: 11.5,-37.5 parent: 2 - - uid: 5682 + - uid: 12240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,10.5 + pos: 14.5,-44.5 parent: 2 - - uid: 5683 + - uid: 12905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,10.5 + pos: 52.5,75.5 parent: 2 - - uid: 5684 + - uid: 13140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,10.5 + pos: 42.5,27.5 parent: 2 - - uid: 5685 + - uid: 13777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,11.5 + pos: 12.5,55.5 parent: 2 - - uid: 5686 + - uid: 13883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,11.5 + pos: 26.5,-39.5 parent: 2 - - uid: 5687 + - uid: 13901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,23.5 + pos: 25.5,-44.5 parent: 2 - - uid: 5688 + - uid: 13903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,23.5 + pos: 26.5,-36.5 parent: 2 - - uid: 5689 + - uid: 13904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,23.5 + pos: 32.5,-42.5 parent: 2 - - uid: 5690 + - uid: 13911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,23.5 + pos: 51.5,75.5 parent: 2 - - uid: 5691 + - uid: 13933 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,24.5 + pos: 20.5,-39.5 parent: 2 - - uid: 5692 + - uid: 13934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,24.5 + pos: 29.5,-44.5 parent: 2 - - uid: 5693 + - uid: 13935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,24.5 + pos: 30.5,-43.5 parent: 2 - - uid: 5694 + - uid: 14182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,69.5 + pos: 13.5,-43.5 parent: 2 - - uid: 5695 + - uid: 14518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,70.5 + pos: 19.5,-39.5 parent: 2 - - uid: 5696 + - uid: 14522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,71.5 + pos: 29.5,-39.5 parent: 2 - - uid: 5697 + - uid: 14811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,72.5 + pos: 19.5,-42.5 parent: 2 - - uid: 5698 + - uid: 14812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,74.5 + pos: 37.5,57.5 parent: 2 - - uid: 5699 + - uid: 14999 components: - type: Transform - pos: 53.5,69.5 + pos: 18.5,-35.5 parent: 2 - - uid: 5700 + - uid: 15000 components: - type: Transform - pos: 52.5,68.5 + pos: 34.5,-42.5 parent: 2 - - uid: 5701 + - uid: 15357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-10.5 + pos: 31.5,-39.5 parent: 2 - - uid: 5702 + - uid: 15691 components: - type: Transform - pos: 62.5,68.5 + pos: 18.5,-40.5 parent: 2 - - uid: 5703 + - uid: 15692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,8.5 + pos: 32.5,-43.5 parent: 2 - - uid: 5704 + - uid: 15927 components: - type: Transform - pos: 51.5,68.5 + pos: 30.5,-38.5 parent: 2 - - uid: 5705 + - uid: 15928 components: - type: Transform - pos: 62.5,67.5 + pos: 26.5,-38.5 parent: 2 - - uid: 5706 + - uid: 15974 components: - type: Transform - pos: 57.5,56.5 + pos: 19.5,-37.5 parent: 2 - - uid: 5707 + - uid: 15975 components: - type: Transform - pos: -3.5,53.5 + pos: 30.5,-39.5 parent: 2 - - uid: 5708 + - uid: 15976 components: - type: Transform - pos: -3.5,52.5 + pos: 27.5,-38.5 parent: 2 - - uid: 5709 + - uid: 16025 components: - type: Transform - pos: 56.5,61.5 + pos: 25.5,-43.5 parent: 2 - - uid: 5710 + - uid: 16032 components: - type: Transform - pos: -3.5,51.5 + pos: 29.5,-46.5 parent: 2 - - uid: 5711 + - uid: 16036 components: - type: Transform - pos: 30.5,17.5 + pos: 25.5,-46.5 parent: 2 - - uid: 5712 + - uid: 16038 components: - type: Transform - pos: -3.5,50.5 + pos: 27.5,-46.5 parent: 2 - - uid: 5713 + - uid: 16128 components: - type: Transform - pos: -3.5,49.5 + pos: 29.5,-38.5 parent: 2 - - uid: 5714 + - uid: 16131 components: - type: Transform - pos: -3.5,48.5 + pos: 25.5,-40.5 parent: 2 - - uid: 5715 + - uid: 16138 components: - type: Transform - pos: -3.5,47.5 + pos: 19.5,-40.5 parent: 2 - - uid: 5716 + - uid: 16144 components: - type: Transform - pos: 0.5,53.5 + pos: 22.5,-38.5 parent: 2 - - uid: 5717 + - uid: 16162 components: - type: Transform - pos: 0.5,52.5 + pos: 20.5,-34.5 parent: 2 - - uid: 5718 + - uid: 16166 components: - type: Transform - pos: 0.5,51.5 + pos: 19.5,-43.5 parent: 2 - - uid: 5719 + - uid: 16167 components: - type: Transform - pos: 0.5,50.5 + pos: 21.5,-33.5 parent: 2 - - uid: 5720 + - uid: 16168 components: - type: Transform - pos: 0.5,49.5 + pos: 25.5,-42.5 parent: 2 - - uid: 5721 + - uid: 16169 components: - type: Transform - pos: 0.5,48.5 + pos: 19.5,-41.5 parent: 2 - - uid: 5722 + - uid: 16171 components: - type: Transform - pos: 0.5,47.5 + pos: 18.5,-37.5 parent: 2 - - uid: 5723 + - uid: 16173 components: - type: Transform - pos: 4.5,53.5 + pos: 23.5,-38.5 parent: 2 - - uid: 5724 + - uid: 16174 components: - type: Transform - pos: 4.5,52.5 + pos: 19.5,-44.5 parent: 2 - - uid: 5725 + - uid: 16175 components: - type: Transform - pos: 4.5,51.5 + pos: 21.5,-38.5 parent: 2 - - uid: 5726 + - uid: 16191 components: - type: Transform - pos: 4.5,50.5 + pos: 45.5,55.5 parent: 2 - - uid: 5727 + - uid: 16201 components: - type: Transform - pos: 4.5,49.5 + pos: 45.5,54.5 parent: 2 - - uid: 5728 + - uid: 16203 components: - type: Transform - pos: 4.5,48.5 + pos: 45.5,53.5 parent: 2 - - uid: 5729 + - uid: 16206 components: - type: Transform - pos: 4.5,47.5 + pos: 46.5,53.5 parent: 2 - - uid: 5730 + - uid: 16207 components: - type: Transform - pos: 7.5,45.5 + pos: 47.5,53.5 parent: 2 - - uid: 5731 + - uid: 16227 components: - type: Transform - pos: 6.5,45.5 + pos: 18.5,-34.5 parent: 2 - - uid: 5732 + - uid: 16229 components: - type: Transform - pos: 5.5,45.5 + pos: 20.5,-33.5 parent: 2 - - uid: 5733 + - uid: 16231 components: - type: Transform - pos: 3.5,45.5 + pos: 20.5,-36.5 parent: 2 - - uid: 5734 + - uid: 16237 components: - type: Transform - pos: 2.5,45.5 + pos: 33.5,-42.5 parent: 2 - - uid: 5735 + - uid: 16238 components: - type: Transform - pos: 1.5,45.5 + pos: 31.5,-43.5 parent: 2 - - uid: 5736 + - uid: 16239 components: - type: Transform - pos: -0.5,45.5 + pos: 30.5,-44.5 parent: 2 - - uid: 5737 + - uid: 16240 components: - type: Transform - pos: -1.5,45.5 + pos: 26.5,-46.5 parent: 2 - - uid: 5738 + - uid: 16241 components: - type: Transform - pos: -2.5,45.5 + pos: 29.5,-45.5 parent: 2 - - uid: 5739 + - uid: 16243 components: - type: Transform - pos: -4.5,45.5 + pos: 24.5,-39.5 parent: 2 - - uid: 5740 + - uid: 16244 components: - type: Transform - pos: -5.5,45.5 + pos: 22.5,-32.5 parent: 2 - - uid: 5741 + - uid: 16245 components: - type: Transform - pos: 7.5,55.5 + pos: 20.5,-35.5 parent: 2 - - uid: 5742 + - uid: 16246 components: - type: Transform - pos: 6.5,55.5 + pos: 22.5,-33.5 parent: 2 - - uid: 5743 + - uid: 16258 components: - type: Transform - pos: 5.5,55.5 + pos: 10.5,-34.5 parent: 2 - - uid: 5744 + - uid: 16259 components: - type: Transform - pos: 3.5,55.5 + pos: 10.5,-35.5 parent: 2 - - uid: 5745 + - uid: 16260 components: - type: Transform - pos: 2.5,55.5 + pos: 9.5,-34.5 parent: 2 - - uid: 5746 + - uid: 16261 components: - type: Transform - pos: 1.5,55.5 + pos: 9.5,-33.5 parent: 2 - - uid: 5747 + - uid: 16262 components: - type: Transform - pos: -0.5,55.5 + pos: 9.5,-32.5 parent: 2 - - uid: 5748 + - uid: 16263 components: - type: Transform - pos: -1.5,55.5 + pos: 10.5,-32.5 parent: 2 - - uid: 5749 + - uid: 16267 components: - type: Transform - pos: -2.5,55.5 + pos: 26.5,-40.5 parent: 2 - - uid: 5750 + - uid: 16268 components: - type: Transform - pos: -4.5,55.5 + pos: 16.5,-28.5 parent: 2 - - uid: 5751 + - uid: 16275 components: - type: Transform - pos: -5.5,55.5 + pos: 15.5,-31.5 parent: 2 - - uid: 5752 + - uid: 16276 components: - type: Transform - pos: -6.5,55.5 + pos: 30.5,-33.5 parent: 2 - - uid: 5755 + - uid: 16277 components: - type: Transform - pos: -6.5,54.5 + pos: 18.5,-28.5 parent: 2 - - uid: 5756 + - uid: 16280 components: - type: Transform - pos: 44.5,57.5 + pos: 15.5,-28.5 parent: 2 - - uid: 5757 + - uid: 16281 components: - type: Transform - pos: 52.5,77.5 + pos: 32.5,-33.5 parent: 2 - - uid: 5758 + - uid: 16282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,79.5 + pos: 17.5,-31.5 parent: 2 - - uid: 5759 + - uid: 16284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,74.5 + pos: 19.5,-28.5 parent: 2 - - uid: 5760 + - uid: 16285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,74.5 + pos: 24.5,-47.5 parent: 2 - - uid: 5761 + - uid: 16286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,71.5 + pos: 22.5,-47.5 parent: 2 - - uid: 5762 + - uid: 16287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,73.5 + pos: 13.5,-31.5 parent: 2 - - uid: 5765 + - uid: 16288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,78.5 + pos: 22.5,-31.5 parent: 2 - - uid: 5766 + - uid: 16290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,71.5 + pos: 33.5,-35.5 parent: 2 - - uid: 5767 + - uid: 16291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,15.5 + pos: 19.5,-47.5 parent: 2 - - uid: 5772 + - uid: 16292 components: - type: Transform - pos: 5.5,-0.5 + pos: 36.5,-38.5 parent: 2 - - uid: 5773 + - uid: 16293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,76.5 + pos: 11.5,-31.5 parent: 2 - - uid: 5774 + - uid: 16295 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,86.5 + pos: 22.5,-48.5 parent: 2 - - uid: 5775 + - uid: 16296 components: - type: Transform - pos: 10.5,-12.5 + pos: 23.5,-47.5 parent: 2 - - uid: 5776 + - uid: 16298 components: - type: Transform - pos: 23.5,71.5 + pos: 26.5,-30.5 parent: 2 - - uid: 5777 + - uid: 16299 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,85.5 + pos: 34.5,-38.5 parent: 2 - - uid: 5778 + - uid: 16300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,84.5 + pos: 26.5,-37.5 parent: 2 - - uid: 5779 + - uid: 16301 components: - type: Transform - pos: 25.5,71.5 + pos: 13.5,-28.5 parent: 2 - - uid: 5780 + - uid: 16302 components: - type: Transform - pos: 24.5,71.5 + pos: 23.5,-30.5 parent: 2 - - uid: 5781 + - uid: 16306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,80.5 + pos: 32.5,-35.5 parent: 2 - - uid: 5782 + - uid: 16307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,80.5 + pos: 13.5,-26.5 parent: 2 - - uid: 5783 + - uid: 16308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,15.5 + pos: 13.5,-27.5 parent: 2 - - uid: 5784 + - uid: 16309 components: - type: Transform - pos: 21.5,80.5 + pos: 27.5,-30.5 parent: 2 - - uid: 5785 + - uid: 16317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,18.5 + pos: 26.5,-35.5 parent: 2 - - uid: 5786 + - uid: 16336 components: - type: Transform - pos: 21.5,82.5 + pos: 34.5,-40.5 parent: 2 - - uid: 5787 + - uid: 16341 components: - type: Transform - pos: 46.5,90.5 + pos: 24.5,-28.5 parent: 2 - - uid: 5788 + - uid: 16342 components: - type: Transform - pos: 40.5,56.5 + pos: 34.5,-36.5 parent: 2 - - uid: 5789 + - uid: 16344 components: - type: Transform - pos: 64.5,34.5 + pos: 34.5,-39.5 parent: 2 - - uid: 5790 + - uid: 16366 components: - type: Transform - pos: 21.5,84.5 + pos: 10.5,-37.5 parent: 2 - - uid: 5791 + - uid: 16370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,23.5 + pos: 21.5,-48.5 parent: 2 - - uid: 5792 + - uid: 16372 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,23.5 + pos: 28.5,-46.5 parent: 2 - - uid: 5793 + - uid: 16373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,23.5 + pos: 20.5,-47.5 parent: 2 - - uid: 5794 + - uid: 16423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,21.5 + pos: 14.5,-31.5 parent: 2 - - uid: 5795 + - uid: 16424 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,20.5 + pos: 35.5,-39.5 parent: 2 - - uid: 5796 + - uid: 16425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,19.5 + pos: 34.5,-35.5 parent: 2 - - uid: 5797 + - uid: 16426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,11.5 + pos: 34.5,-41.5 parent: 2 - - uid: 5798 + - uid: 16427 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,11.5 + pos: 32.5,-34.5 parent: 2 - - uid: 5799 + - uid: 16428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,14.5 + pos: 34.5,-37.5 parent: 2 - - uid: 5800 + - uid: 16430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,13.5 + pos: 12.5,-27.5 parent: 2 - - uid: 5801 + - uid: 16431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,11.5 + pos: 24.5,-30.5 parent: 2 - - uid: 5802 + - uid: 16432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,16.5 + pos: 27.5,-31.5 parent: 2 - - uid: 5803 + - uid: 16433 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,16.5 + pos: 28.5,-32.5 parent: 2 - - uid: 5804 + - uid: 16437 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,16.5 + pos: 14.5,-29.5 parent: 2 - - uid: 5805 + - uid: 16445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,16.5 + pos: 20.5,-48.5 parent: 2 - - uid: 5806 + - uid: 16456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,17.5 + pos: 25.5,-47.5 parent: 2 - - uid: 5807 + - uid: 16459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,16.5 + pos: 14.5,-28.5 parent: 2 - - uid: 5833 + - uid: 16466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,1.5 + pos: 15.5,-44.5 parent: 2 - - uid: 5877 + - uid: 16482 components: - type: Transform - pos: 24.5,66.5 + pos: 19.5,-46.5 parent: 2 - - uid: 5878 + - uid: 20368 components: - type: Transform - pos: 22.5,66.5 - parent: 2 - - uid: 5879 + pos: -6.5,5.5 + parent: 16527 + - uid: 20369 components: - type: Transform - pos: 19.5,66.5 - parent: 2 - - uid: 5880 + pos: -6.5,6.5 + parent: 16527 + - uid: 21192 components: - type: Transform - pos: 16.5,66.5 + pos: 12.5,44.5 parent: 2 - - uid: 5881 + - uid: 21204 components: - type: Transform - pos: 18.5,66.5 + pos: 14.5,65.5 parent: 2 - - uid: 5882 + - uid: 21206 components: - type: Transform - pos: 15.5,66.5 + pos: 14.5,62.5 parent: 2 - - uid: 5883 + - uid: 21211 components: - type: Transform - pos: 25.5,64.5 + pos: 39.5,57.5 parent: 2 - - uid: 5884 + - uid: 21412 components: - type: Transform - pos: 22.5,-18.5 + pos: 29.5,-37.5 parent: 2 - - uid: 5886 + - uid: 21465 components: - type: Transform - pos: 24.5,-19.5 + pos: 17.5,-28.5 parent: 2 - - uid: 5887 + - uid: 21466 components: - type: Transform - pos: 24.5,-18.5 + pos: 29.5,-33.5 parent: 2 - - uid: 5889 + - uid: 21467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,7.5 + pos: 31.5,-33.5 parent: 2 - - uid: 5890 + - uid: 21468 components: - type: Transform - pos: 21.5,85.5 + pos: 28.5,-31.5 parent: 2 - - uid: 5891 + - uid: 21470 components: - type: Transform - pos: 21.5,86.5 + pos: 25.5,-30.5 parent: 2 - - uid: 5892 + - uid: 21471 components: - type: Transform - pos: 23.5,86.5 + pos: 14.5,-32.5 parent: 2 - - uid: 5893 + - uid: 21472 components: - type: Transform - pos: 28.5,87.5 + pos: 16.5,-31.5 parent: 2 - - uid: 5894 + - uid: 21473 components: - type: Transform - pos: 29.5,87.5 + pos: 36.5,-39.5 parent: 2 - - uid: 5895 + - uid: 21474 components: - type: Transform - pos: 31.5,86.5 + pos: 14.5,-30.5 parent: 2 - - uid: 5896 + - uid: 21482 components: - type: Transform - pos: 31.5,87.5 + pos: 25.5,-41.5 parent: 2 - - uid: 5897 + - uid: 21495 components: - type: Transform - pos: 39.5,86.5 + pos: 28.5,-38.5 parent: 2 - - uid: 5898 + - uid: 21510 components: - type: Transform - pos: 41.5,56.5 + pos: 28.5,-33.5 parent: 2 - - uid: 5899 + - uid: 21515 components: - type: Transform - pos: 42.5,86.5 + pos: 30.5,-37.5 parent: 2 - - uid: 5900 + - uid: 21590 components: - type: Transform - pos: 51.5,63.5 + pos: 10.5,-36.5 parent: 2 - - uid: 5901 + - uid: 21959 components: - type: Transform - pos: 51.5,61.5 + pos: 29.5,-19.5 parent: 2 - - uid: 5902 + - uid: 22303 components: - type: Transform - pos: 51.5,60.5 + pos: 30.5,-8.5 parent: 2 - - uid: 5903 + - uid: 22304 components: - type: Transform - pos: 51.5,62.5 + pos: 30.5,-7.5 parent: 2 - - uid: 5904 + - uid: 22305 components: - type: Transform - pos: 52.5,63.5 + pos: 31.5,-7.5 parent: 2 - - uid: 5905 + - uid: 22306 components: - type: Transform - pos: 52.5,61.5 + pos: 32.5,-7.5 parent: 2 - - uid: 5906 + - uid: 22307 components: - type: Transform - pos: 52.5,62.5 + pos: 33.5,-7.5 parent: 2 - - uid: 5907 + - uid: 22308 components: - type: Transform - pos: 52.5,60.5 + pos: 33.5,-8.5 parent: 2 - - uid: 5908 + - uid: 22309 components: - type: Transform - pos: 53.5,63.5 + pos: 34.5,-8.5 parent: 2 - - uid: 5909 + - uid: 22310 components: - type: Transform - pos: 53.5,62.5 + pos: 35.5,-8.5 parent: 2 - - uid: 5910 + - uid: 22311 components: - type: Transform - pos: 53.5,60.5 + pos: 36.5,-8.5 parent: 2 - - uid: 5911 + - uid: 22312 components: - type: Transform - pos: 53.5,61.5 + pos: 37.5,-8.5 parent: 2 - - uid: 5912 + - uid: 22313 components: - type: Transform - pos: 41.5,86.5 + pos: 37.5,-9.5 parent: 2 - - uid: 5913 + - uid: 22314 components: - type: Transform - pos: 43.5,88.5 + pos: 37.5,-10.5 parent: 2 - - uid: 5914 + - uid: 22315 components: - type: Transform - pos: 43.5,89.5 + pos: 38.5,-10.5 parent: 2 - - uid: 5915 + - uid: 22316 components: - type: Transform - pos: 42.5,89.5 + pos: 39.5,-10.5 parent: 2 - - uid: 5916 + - uid: 22318 components: - type: Transform - pos: 42.5,91.5 + pos: 40.5,-10.5 parent: 2 - - uid: 5917 + - uid: 22319 components: - type: Transform - pos: 42.5,91.5 + pos: 41.5,-10.5 parent: 2 - - uid: 5918 + - uid: 22320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,17.5 + pos: 41.5,-11.5 parent: 2 - - uid: 5941 + - uid: 22399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,18.5 + pos: 41.5,-12.5 parent: 2 - - uid: 5943 + - uid: 22400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,84.5 + pos: 42.5,-12.5 parent: 2 - - uid: 5944 + - uid: 22401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,83.5 + pos: 43.5,-12.5 parent: 2 - - uid: 5945 + - uid: 22402 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,82.5 + pos: 44.5,-12.5 parent: 2 - - uid: 5946 + - uid: 22403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,81.5 + pos: 45.5,-12.5 parent: 2 - - uid: 5947 + - uid: 22404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,84.5 + pos: 45.5,-13.5 parent: 2 - - uid: 5948 + - uid: 22405 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,83.5 + pos: 46.5,-13.5 parent: 2 - - uid: 5949 + - uid: 22406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,84.5 + pos: 47.5,-13.5 parent: 2 - - uid: 5950 + - uid: 22410 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,83.5 + pos: 46.5,-14.5 parent: 2 - - uid: 5951 + - uid: 22411 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,6.5 + pos: 46.5,-15.5 parent: 2 - - uid: 6457 + - uid: 22412 components: - type: Transform - pos: -9.5,18.5 + pos: 46.5,-16.5 parent: 2 - - uid: 6515 +- proto: CableHVStack + entities: + - uid: 4438 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,1.5 + pos: 50.541508,-17.558912 parent: 2 - - uid: 8327 + - uid: 4439 components: - type: Transform - pos: 22.5,-25.5 + pos: 42.267727,62.66893 parent: 2 - - uid: 8918 +- proto: CableHVStack10 + entities: + - uid: 20393 components: - type: Transform - pos: 52.5,-25.5 - parent: 2 - - uid: 10080 + rot: -1.5707963267948966 rad + pos: -36.13832,30.406006 + parent: 16527 + - uid: 20394 components: - type: Transform - pos: -6.5,17.5 - parent: 2 - - uid: 10896 + rot: 3.141592653589793 rad + pos: -36.81024,30.39032 + parent: 16527 +- proto: CableMV + entities: + - uid: 368 components: - type: Transform - pos: -8.5,19.5 + pos: 27.5,-17.5 parent: 2 - - uid: 10912 + - uid: 486 components: - type: Transform - pos: -8.5,17.5 + pos: 28.5,-14.5 parent: 2 - - uid: 10914 + - uid: 932 components: - type: Transform - pos: -8.5,18.5 + pos: 23.5,-38.5 parent: 2 - - uid: 10925 + - uid: 1148 components: - type: Transform - pos: -5.5,17.5 + pos: 6.5,10.5 parent: 2 - - uid: 10926 + - uid: 1177 components: - type: Transform - pos: -7.5,17.5 + pos: 5.5,10.5 parent: 2 - - uid: 11238 + - uid: 1697 components: - type: Transform - pos: -11.5,18.5 + pos: 7.5,19.5 parent: 2 - - uid: 11515 + - uid: 1915 components: - type: Transform - pos: 52.5,-32.5 + pos: 6.5,19.5 parent: 2 - - uid: 11516 + - uid: 2323 components: - type: Transform - pos: 51.5,-32.5 + pos: 14.5,52.5 parent: 2 - - uid: 11667 + - uid: 2332 components: - type: Transform - pos: -10.5,18.5 + pos: 42.5,55.5 parent: 2 - - uid: 12554 + - uid: 2333 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,51.5 + pos: 41.5,56.5 parent: 2 - - uid: 12599 + - uid: 2335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,54.5 + pos: 40.5,56.5 parent: 2 - - uid: 13139 + - uid: 2336 components: - type: Transform - pos: 54.5,-32.5 + pos: 42.5,56.5 parent: 2 - - uid: 13141 + - uid: 2357 components: - type: Transform - pos: 56.5,-35.5 + pos: 56.5,34.5 parent: 2 - - uid: 13875 + - uid: 2362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-4.5 + pos: 57.5,34.5 parent: 2 - - uid: 15931 + - uid: 2549 components: - type: Transform - pos: 23.5,-19.5 + pos: 39.5,56.5 parent: 2 - - uid: 16019 + - uid: 3017 components: - type: Transform - pos: 22.5,-27.5 + pos: 62.5,-1.5 parent: 2 - - uid: 16156 + - uid: 3019 components: - type: Transform - pos: 56.5,-33.5 + pos: 60.5,-1.5 parent: 2 - - uid: 16160 + - uid: 3147 components: - type: Transform - pos: 22.5,-21.5 + pos: 31.5,49.5 parent: 2 - - uid: 16161 + - uid: 3148 components: - type: Transform - pos: 22.5,-23.5 + pos: 31.5,48.5 parent: 2 - - uid: 16182 + - uid: 3188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-39.5 + pos: 23.5,50.5 parent: 2 - - uid: 16193 + - uid: 3189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,75.5 + pos: 22.5,50.5 parent: 2 - - uid: 16194 + - uid: 3190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,75.5 + pos: 21.5,50.5 parent: 2 - - uid: 16195 + - uid: 3191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,75.5 + pos: 20.5,50.5 parent: 2 - - uid: 16196 + - uid: 3194 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,75.5 + pos: 18.5,54.5 parent: 2 - - uid: 16211 + - uid: 3195 components: - type: Transform - pos: 57.5,-32.5 + pos: 17.5,54.5 parent: 2 - - uid: 16217 + - uid: 3196 components: - type: Transform - pos: 58.5,-32.5 + pos: 15.5,54.5 parent: 2 - - uid: 16234 + - uid: 3197 components: - type: Transform - pos: 60.5,-32.5 + pos: 14.5,54.5 parent: 2 - - uid: 16235 + - uid: 3198 components: - type: Transform - pos: 61.5,-32.5 + pos: 14.5,53.5 parent: 2 - - uid: 16253 + - uid: 3200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 16.5,54.5 parent: 2 - - uid: 16272 + - uid: 3201 components: - type: Transform - pos: 59.5,-32.5 + pos: 19.5,50.5 parent: 2 - - uid: 16279 + - uid: 3202 components: - type: Transform - pos: 61.5,-31.5 + pos: 18.5,44.5 parent: 2 - - uid: 16313 + - uid: 3203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-39.5 + pos: 17.5,44.5 parent: 2 - - uid: 16315 + - uid: 3204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-37.5 + pos: 14.5,44.5 parent: 2 - - uid: 16323 + - uid: 3609 components: - type: Transform - pos: 61.5,-30.5 + pos: 27.5,-38.5 parent: 2 - - uid: 16324 + - uid: 3858 components: - type: Transform - pos: 61.5,-28.5 + pos: 16.5,44.5 parent: 2 - - uid: 16337 + - uid: 3860 components: - type: Transform - pos: 61.5,-27.5 + pos: 18.5,50.5 parent: 2 - - uid: 16346 + - uid: 3861 components: - type: Transform - pos: 22.5,-22.5 + pos: 18.5,46.5 parent: 2 - - uid: 16351 + - uid: 3979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-37.5 + pos: 25.5,50.5 parent: 2 - - uid: 16356 + - uid: 4073 components: - type: Transform - pos: 61.5,-26.5 + pos: 13.5,44.5 parent: 2 - - uid: 16357 + - uid: 4235 components: - type: Transform - pos: 22.5,-30.5 + pos: 31.5,-38.5 parent: 2 - - uid: 16364 + - uid: 4252 components: - type: Transform - pos: 22.5,-19.5 + pos: 33.5,56.5 parent: 2 - - uid: 16377 + - uid: 4255 components: - type: Transform - pos: 61.5,-25.5 + pos: 33.5,57.5 parent: 2 - - uid: 16378 + - uid: 4256 components: - type: Transform - pos: 61.5,-24.5 + pos: 32.5,57.5 parent: 2 - - uid: 16379 + - uid: 4260 components: - type: Transform - pos: 61.5,-23.5 + pos: 31.5,58.5 parent: 2 - - uid: 16381 + - uid: 4262 components: - type: Transform - pos: 61.5,-29.5 + pos: 18.5,47.5 parent: 2 - - uid: 16472 + - uid: 4263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-37.5 + pos: 18.5,48.5 parent: 2 - - uid: 16484 + - uid: 4264 components: - type: Transform - pos: 61.5,-22.5 + pos: 18.5,49.5 parent: 2 - - uid: 18625 + - uid: 4267 components: - type: Transform - pos: -2.5,-10.5 - parent: 16504 - - uid: 18626 + pos: 31.5,59.5 + parent: 2 + - uid: 4347 components: - type: Transform - pos: -1.5,-9.5 - parent: 16504 - - uid: 18627 + pos: 36.5,58.5 + parent: 2 + - uid: 4361 components: - type: Transform - pos: -0.5,-9.5 - parent: 16504 - - uid: 18628 + pos: 36.5,63.5 + parent: 2 + - uid: 4362 components: - type: Transform - pos: -0.5,-10.5 - parent: 16504 - - uid: 18629 + pos: 36.5,62.5 + parent: 2 + - uid: 4367 components: - type: Transform - pos: 0.5,-9.5 - parent: 16504 - - uid: 18630 + pos: 33.5,55.5 + parent: 2 + - uid: 4371 components: - type: Transform - pos: 0.5,-10.5 - parent: 16504 - - uid: 18631 + pos: 36.5,61.5 + parent: 2 + - uid: 4373 components: - type: Transform - pos: 1.5,-9.5 - parent: 16504 - - uid: 18632 + pos: 39.5,57.5 + parent: 2 + - uid: 4374 components: - type: Transform - pos: 1.5,-10.5 - parent: 16504 - - uid: 18633 + pos: 38.5,57.5 + parent: 2 + - uid: 4375 components: - type: Transform - pos: 2.5,-9.5 - parent: 16504 - - uid: 18634 + pos: 36.5,60.5 + parent: 2 + - uid: 4377 components: - type: Transform - pos: 2.5,-10.5 - parent: 16504 - - uid: 18635 + pos: 15.5,44.5 + parent: 2 + - uid: 4379 components: - type: Transform - pos: 3.5,-9.5 - parent: 16504 - - uid: 18636 + pos: 24.5,50.5 + parent: 2 + - uid: 4380 components: - type: Transform - pos: 3.5,-10.5 - parent: 16504 - - uid: 18637 + pos: 18.5,45.5 + parent: 2 + - uid: 4383 components: - type: Transform - pos: 4.5,-10.5 - parent: 16504 - - uid: 18638 + pos: 29.5,53.5 + parent: 2 + - uid: 4385 components: - type: Transform - pos: 5.5,-9.5 - parent: 16504 - - uid: 18639 + pos: 25.5,53.5 + parent: 2 + - uid: 4391 components: - type: Transform - pos: 5.5,-10.5 - parent: 16504 - - uid: 18640 + pos: 36.5,57.5 + parent: 2 + - uid: 4392 components: - type: Transform - pos: 6.5,-9.5 - parent: 16504 - - uid: 18641 + pos: 56.5,35.5 + parent: 2 + - uid: 4440 components: - type: Transform - pos: 6.5,-10.5 - parent: 16504 - - uid: 18642 + pos: 48.5,58.5 + parent: 2 + - uid: 4441 components: - type: Transform - pos: 7.5,-9.5 - parent: 16504 - - uid: 18643 + pos: 41.5,22.5 + parent: 2 + - uid: 4442 components: - type: Transform - pos: 7.5,-10.5 - parent: 16504 - - uid: 18646 + pos: 42.5,23.5 + parent: 2 + - uid: 4443 components: - type: Transform - pos: -2.5,-11.5 - parent: 16504 - - uid: 18647 + pos: 38.5,22.5 + parent: 2 + - uid: 4444 components: - type: Transform - pos: -1.5,-11.5 - parent: 16504 - - uid: 18648 + pos: 72.5,67.5 + parent: 2 + - uid: 4445 components: - type: Transform - pos: -0.5,-11.5 - parent: 16504 - - uid: 18649 + pos: 55.5,6.5 + parent: 2 + - uid: 4446 components: - type: Transform - pos: 0.5,-11.5 - parent: 16504 - - uid: 18651 + pos: 57.5,41.5 + parent: 2 + - uid: 4447 components: - type: Transform - pos: 2.5,-11.5 - parent: 16504 - - uid: 18652 + pos: 23.5,-16.5 + parent: 2 + - uid: 4448 components: - type: Transform - pos: 4.5,-11.5 - parent: 16504 - - uid: 18653 + pos: 38.5,60.5 + parent: 2 + - uid: 4449 components: - type: Transform - pos: 5.5,-11.5 - parent: 16504 - - uid: 18654 + pos: 69.5,39.5 + parent: 2 + - uid: 4450 components: - type: Transform - pos: 6.5,-11.5 - parent: 16504 - - uid: 18656 + pos: 47.5,68.5 + parent: 2 + - uid: 4451 components: - type: Transform - pos: -3.5,-12.5 - parent: 16504 - - uid: 18657 + pos: 49.5,3.5 + parent: 2 + - uid: 4452 components: - type: Transform - pos: -2.5,-12.5 - parent: 16504 - - uid: 18658 + pos: 56.5,38.5 + parent: 2 + - uid: 4453 components: - type: Transform - pos: -1.5,-12.5 - parent: 16504 - - uid: 18660 + pos: 43.5,23.5 + parent: 2 + - uid: 4454 components: - type: Transform - pos: 1.5,-12.5 - parent: 16504 - - uid: 18661 + pos: 39.5,3.5 + parent: 2 + - uid: 4455 components: - type: Transform - pos: 2.5,-12.5 - parent: 16504 - - uid: 18662 + pos: 56.5,7.5 + parent: 2 + - uid: 4456 components: - type: Transform - pos: 3.5,-12.5 - parent: 16504 - - uid: 18663 + pos: 53.5,48.5 + parent: 2 + - uid: 4457 components: - type: Transform - pos: 4.5,-12.5 - parent: 16504 - - uid: 18664 + pos: 38.5,73.5 + parent: 2 + - uid: 4458 components: - type: Transform - pos: 5.5,-12.5 - parent: 16504 - - uid: 18665 + pos: 37.5,9.5 + parent: 2 + - uid: 4459 components: - type: Transform - pos: -3.5,-13.5 - parent: 16504 - - uid: 18666 + pos: 54.5,38.5 + parent: 2 + - uid: 4460 components: - type: Transform - pos: -2.5,-13.5 - parent: 16504 - - uid: 18667 + pos: 58.5,40.5 + parent: 2 + - uid: 4463 components: - type: Transform - pos: -1.5,-13.5 - parent: 16504 - - uid: 18668 + pos: 37.5,4.5 + parent: 2 + - uid: 4464 components: - type: Transform - pos: -0.5,-13.5 - parent: 16504 - - uid: 18669 + pos: 41.5,4.5 + parent: 2 + - uid: 4465 components: - type: Transform - pos: 0.5,-13.5 - parent: 16504 - - uid: 18670 + pos: 43.5,4.5 + parent: 2 + - uid: 4466 components: - type: Transform - pos: 1.5,-13.5 - parent: 16504 - - uid: 18671 + pos: 43.5,3.5 + parent: 2 + - uid: 4467 components: - type: Transform - pos: 2.5,-13.5 - parent: 16504 - - uid: 18672 + pos: 53.5,49.5 + parent: 2 + - uid: 4468 components: - type: Transform - pos: 3.5,-13.5 - parent: 16504 - - uid: 18673 + pos: 53.5,50.5 + parent: 2 + - uid: 4469 components: - type: Transform - pos: 4.5,-13.5 - parent: 16504 - - uid: 18674 + pos: 55.5,41.5 + parent: 2 + - uid: 4470 components: - type: Transform - pos: -1.5,5.5 - parent: 16504 - - uid: 18675 + pos: 54.5,42.5 + parent: 2 + - uid: 4471 components: - type: Transform - pos: -1.5,4.5 - parent: 16504 - - uid: 18676 + pos: 53.5,51.5 + parent: 2 + - uid: 4472 components: - type: Transform - pos: -1.5,3.5 - parent: 16504 - - uid: 18677 + pos: 53.5,52.5 + parent: 2 + - uid: 4473 components: - type: Transform - pos: -1.5,2.5 - parent: 16504 - - uid: 18678 + pos: 53.5,53.5 + parent: 2 + - uid: 4474 components: - type: Transform - pos: -1.5,1.5 - parent: 16504 - - uid: 18679 + pos: 39.5,66.5 + parent: 2 + - uid: 4475 components: - type: Transform - pos: -0.5,6.5 - parent: 16504 - - uid: 18680 + pos: 48.5,59.5 + parent: 2 + - uid: 4476 components: - type: Transform - pos: -0.5,5.5 - parent: 16504 - - uid: 18681 + pos: 49.5,58.5 + parent: 2 + - uid: 4477 components: - type: Transform - pos: -0.5,3.5 - parent: 16504 - - uid: 18682 + pos: 53.5,54.5 + parent: 2 + - uid: 4478 components: - type: Transform - pos: -0.5,1.5 - parent: 16504 - - uid: 18683 + pos: 53.5,56.5 + parent: 2 + - uid: 4479 components: - type: Transform - pos: -0.5,0.5 - parent: 16504 - - uid: 18684 + pos: 38.5,72.5 + parent: 2 + - uid: 4480 components: - type: Transform - pos: 0.5,6.5 - parent: 16504 - - uid: 18685 + pos: 39.5,73.5 + parent: 2 + - uid: 4481 components: - type: Transform - pos: 0.5,5.5 - parent: 16504 - - uid: 18686 + pos: 53.5,55.5 + parent: 2 + - uid: 4482 components: - type: Transform - pos: 0.5,3.5 - parent: 16504 - - uid: 18687 + pos: 53.5,57.5 + parent: 2 + - uid: 4483 components: - type: Transform - pos: 0.5,2.5 - parent: 16504 - - uid: 18688 + pos: 53.5,35.5 + parent: 2 + - uid: 4484 components: - type: Transform - pos: 0.5,1.5 - parent: 16504 - - uid: 18689 + pos: 51.5,36.5 + parent: 2 + - uid: 4488 components: - type: Transform - pos: 0.5,0.5 - parent: 16504 - - uid: 18690 + pos: 47.5,66.5 + parent: 2 + - uid: 4489 components: - type: Transform - pos: 1.5,6.5 - parent: 16504 - - uid: 18691 + pos: 52.5,65.5 + parent: 2 + - uid: 4490 components: - type: Transform - pos: 1.5,5.5 - parent: 16504 - - uid: 18692 + pos: 53.5,64.5 + parent: 2 + - uid: 4491 components: - type: Transform - pos: 0.5,4.5 - parent: 16504 - - uid: 18693 + pos: 52.5,64.5 + parent: 2 + - uid: 4495 components: - type: Transform - pos: 1.5,3.5 - parent: 16504 - - uid: 18694 + pos: 52.5,63.5 + parent: 2 + - uid: 4496 components: - type: Transform - pos: 2.5,2.5 - parent: 16504 - - uid: 18695 + pos: 51.5,64.5 + parent: 2 + - uid: 4497 components: - type: Transform - pos: 1.5,1.5 - parent: 16504 - - uid: 18696 + pos: 50.5,65.5 + parent: 2 + - uid: 4498 components: - type: Transform - pos: 1.5,0.5 - parent: 16504 - - uid: 18697 + pos: 48.5,65.5 + parent: 2 + - uid: 4499 components: - type: Transform - pos: 2.5,5.5 - parent: 16504 - - uid: 18698 + pos: 49.5,65.5 + parent: 2 + - uid: 4500 components: - type: Transform - pos: 2.5,4.5 - parent: 16504 - - uid: 18699 + pos: 40.5,4.5 + parent: 2 + - uid: 4501 components: - type: Transform - pos: 2.5,3.5 - parent: 16504 - - uid: 18700 + pos: 47.5,67.5 + parent: 2 + - uid: 4502 components: - type: Transform - pos: 2.5,1.5 - parent: 16504 - - uid: 18701 + pos: 47.5,72.5 + parent: 2 + - uid: 4503 components: - type: Transform - pos: -13.5,31.5 - parent: 16504 - - uid: 18702 + pos: 44.5,56.5 + parent: 2 + - uid: 4506 components: - type: Transform - pos: -13.5,29.5 - parent: 16504 - - uid: 18703 + pos: 23.5,-17.5 + parent: 2 + - uid: 4510 components: - type: Transform - pos: -13.5,30.5 - parent: 16504 - - uid: 18704 + pos: 2.5,33.5 + parent: 2 + - uid: 4511 components: - type: Transform - pos: -16.5,32.5 - parent: 16504 - - uid: 18705 + pos: 31.5,20.5 + parent: 2 + - uid: 4512 components: - type: Transform - pos: -16.5,28.5 - parent: 16504 - - uid: 18706 + pos: 13.5,3.5 + parent: 2 + - uid: 4513 components: - type: Transform - pos: -15.5,33.5 - parent: 16504 - - uid: 18707 + pos: 12.5,3.5 + parent: 2 + - uid: 4514 components: - type: Transform - pos: -16.5,30.5 - parent: 16504 - - uid: 18708 + pos: 11.5,3.5 + parent: 2 + - uid: 4515 components: - type: Transform - pos: -16.5,29.5 - parent: 16504 - - uid: 18709 + pos: 11.5,4.5 + parent: 2 + - uid: 4516 components: - type: Transform - pos: -16.5,31.5 - parent: 16504 - - uid: 18710 + pos: 11.5,5.5 + parent: 2 + - uid: 4517 components: - type: Transform - pos: -14.5,29.5 - parent: 16504 - - uid: 18711 + pos: 11.5,6.5 + parent: 2 + - uid: 4518 components: - type: Transform - pos: -14.5,28.5 - parent: 16504 - - uid: 18712 + pos: 11.5,7.5 + parent: 2 + - uid: 4519 components: - type: Transform - pos: -14.5,30.5 - parent: 16504 - - uid: 18713 + pos: 11.5,8.5 + parent: 2 + - uid: 4520 components: - type: Transform - pos: -15.5,28.5 - parent: 16504 - - uid: 18714 + pos: 11.5,9.5 + parent: 2 + - uid: 4521 components: - type: Transform - pos: -14.5,32.5 - parent: 16504 - - uid: 18715 + pos: 11.5,10.5 + parent: 2 + - uid: 4522 components: - type: Transform - pos: -14.5,31.5 - parent: 16504 - - uid: 18716 + pos: 11.5,11.5 + parent: 2 + - uid: 4523 components: - type: Transform - pos: -16.5,33.5 - parent: 16504 - - uid: 18717 + pos: 11.5,12.5 + parent: 2 + - uid: 4524 components: - type: Transform - pos: -14.5,33.5 - parent: 16504 - - uid: 18718 + pos: 11.5,13.5 + parent: 2 + - uid: 4525 components: - type: Transform - pos: -15.5,31.5 - parent: 16504 - - uid: 18719 + pos: 11.5,14.5 + parent: 2 + - uid: 4526 components: - type: Transform - pos: -15.5,30.5 - parent: 16504 - - uid: 18720 + pos: 10.5,14.5 + parent: 2 + - uid: 4527 components: - type: Transform - pos: -15.5,32.5 - parent: 16504 - - uid: 18721 + pos: 9.5,14.5 + parent: 2 + - uid: 4528 components: - type: Transform - pos: -15.5,29.5 - parent: 16504 - - uid: 18722 + pos: 8.5,14.5 + parent: 2 + - uid: 4529 components: - type: Transform - pos: -17.5,28.5 - parent: 16504 - - uid: 18723 + pos: 7.5,14.5 + parent: 2 + - uid: 4530 components: - type: Transform - pos: -17.5,29.5 - parent: 16504 - - uid: 18724 + pos: 6.5,14.5 + parent: 2 + - uid: 4531 components: - type: Transform - pos: -17.5,30.5 - parent: 16504 - - uid: 18725 + pos: 5.5,14.5 + parent: 2 + - uid: 4532 components: - type: Transform - pos: -17.5,31.5 - parent: 16504 - - uid: 18726 + pos: 5.5,13.5 + parent: 2 + - uid: 4533 components: - type: Transform - pos: -17.5,32.5 - parent: 16504 - - uid: 18727 + pos: 5.5,12.5 + parent: 2 + - uid: 4534 components: - type: Transform - pos: -17.5,33.5 - parent: 16504 - - uid: 18728 + pos: 5.5,11.5 + parent: 2 + - uid: 4535 components: - type: Transform - pos: -13.5,32.5 - parent: 16504 - - uid: 18729 + pos: 7.5,13.5 + parent: 2 + - uid: 4536 components: - type: Transform - pos: -23.5,26.5 - parent: 16504 - - uid: 18730 + pos: 7.5,12.5 + parent: 2 + - uid: 4537 components: - type: Transform - pos: -23.5,27.5 - parent: 16504 - - uid: 18731 + pos: 7.5,11.5 + parent: 2 + - uid: 4538 components: - type: Transform - pos: -26.5,27.5 - parent: 16504 - - uid: 18732 + pos: 7.5,10.5 + parent: 2 + - uid: 4539 components: - type: Transform - pos: -26.5,26.5 - parent: 16504 - - uid: 18733 + pos: 7.5,9.5 + parent: 2 + - uid: 4540 components: - type: Transform - pos: -24.5,26.5 - parent: 16504 - - uid: 18734 + pos: 7.5,8.5 + parent: 2 + - uid: 4541 components: - type: Transform - pos: -25.5,26.5 - parent: 16504 - - uid: 18735 + pos: 7.5,7.5 + parent: 2 + - uid: 4542 components: - type: Transform - pos: -23.5,28.5 - parent: 16504 - - uid: 18736 + pos: 7.5,6.5 + parent: 2 + - uid: 4544 components: - type: Transform - pos: -24.5,28.5 - parent: 16504 - - uid: 18737 + pos: 10.5,-5.5 + parent: 2 + - uid: 4545 components: - type: Transform - pos: -25.5,28.5 - parent: 16504 - - uid: 18738 + pos: 10.5,-4.5 + parent: 2 + - uid: 4546 components: - type: Transform - pos: -26.5,28.5 - parent: 16504 - - uid: 18739 + pos: 7.5,5.5 + parent: 2 + - uid: 4547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,34.5 - parent: 16504 - - uid: 18740 + pos: 6.5,5.5 + parent: 2 + - uid: 4548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,34.5 - parent: 16504 - - uid: 18741 + pos: 6.5,4.5 + parent: 2 + - uid: 4549 components: - type: Transform - pos: -16.5,9.5 - parent: 16504 - - uid: 18742 + pos: 6.5,3.5 + parent: 2 + - uid: 4550 components: - type: Transform - pos: -16.5,8.5 - parent: 16504 - - uid: 18743 + pos: 7.5,3.5 + parent: 2 + - uid: 4551 components: - type: Transform - pos: -17.5,6.5 - parent: 16504 - - uid: 18744 + pos: 8.5,3.5 + parent: 2 + - uid: 4552 components: - type: Transform - pos: -18.5,6.5 - parent: 16504 - - uid: 18745 + pos: 5.5,4.5 + parent: 2 + - uid: 4553 components: - type: Transform - pos: -20.5,7.5 - parent: 16504 - - uid: 18746 + pos: 4.5,4.5 + parent: 2 + - uid: 4554 components: - type: Transform - pos: -17.5,10.5 - parent: 16504 - - uid: 18747 + pos: 6.5,2.5 + parent: 2 + - uid: 4555 components: - type: Transform - pos: -15.5,10.5 - parent: 16504 - - uid: 18748 + pos: 6.5,1.5 + parent: 2 + - uid: 4556 components: - type: Transform - pos: -20.5,10.5 - parent: 16504 - - uid: 18749 + pos: 6.5,0.5 + parent: 2 + - uid: 4557 components: - type: Transform - pos: -20.5,11.5 - parent: 16504 - - uid: 18750 + pos: 5.5,0.5 + parent: 2 + - uid: 4558 components: - type: Transform - pos: -18.5,12.5 - parent: 16504 - - uid: 18751 + pos: 2.5,0.5 + parent: 2 + - uid: 4559 components: - type: Transform - pos: -17.5,12.5 - parent: 16504 - - uid: 20508 + pos: 2.5,1.5 + parent: 2 + - uid: 4560 components: - type: Transform - pos: -2.5,-9.5 - parent: 16504 - - uid: 20513 + pos: 2.5,2.5 + parent: 2 + - uid: 4561 components: - type: Transform - pos: -1.5,-10.5 - parent: 16504 - - uid: 21209 + pos: 3.5,2.5 + parent: 2 + - uid: 4562 components: - type: Transform - pos: 61.5,-21.5 + pos: 4.5,2.5 parent: 2 - - uid: 21210 + - uid: 4563 components: - type: Transform - pos: 60.5,-21.5 + pos: 5.5,2.5 parent: 2 - - uid: 21264 + - uid: 4564 components: - type: Transform - pos: 59.5,-21.5 + pos: 31.5,21.5 parent: 2 - - uid: 21288 + - uid: 4565 components: - type: Transform - pos: 58.5,-21.5 + pos: 27.5,23.5 parent: 2 - - uid: 21322 + - uid: 4566 components: - type: Transform - pos: 57.5,-21.5 + pos: 28.5,23.5 parent: 2 - - uid: 21395 + - uid: 4567 components: - type: Transform - pos: 56.5,-21.5 + pos: 29.5,23.5 parent: 2 - - uid: 21396 + - uid: 4568 components: - type: Transform - pos: 55.5,-21.5 + pos: 28.5,22.5 parent: 2 - - uid: 21397 + - uid: 4569 components: - type: Transform - pos: 54.5,-21.5 + pos: 28.5,21.5 parent: 2 - - uid: 21398 + - uid: 4570 components: - type: Transform - pos: 53.5,-21.5 + pos: 29.5,21.5 parent: 2 - - uid: 21399 + - uid: 4571 components: - type: Transform - pos: 52.5,-21.5 + pos: 30.5,21.5 parent: 2 - - uid: 21400 + - uid: 4572 components: - type: Transform - pos: 53.5,-25.5 + pos: 31.5,19.5 parent: 2 - - uid: 21401 + - uid: 4573 components: - type: Transform - pos: 54.5,-25.5 + pos: 32.5,19.5 parent: 2 - - uid: 21464 + - uid: 4574 components: - type: Transform - pos: 22.5,-28.5 + pos: 33.5,19.5 parent: 2 - - uid: 21503 + - uid: 4575 components: - type: Transform - pos: 22.5,-29.5 + pos: 26.5,15.5 parent: 2 - - uid: 21504 + - uid: 4576 components: - type: Transform - pos: 22.5,-26.5 + pos: 25.5,15.5 parent: 2 - - uid: 21522 + - uid: 4577 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-39.5 + pos: 24.5,15.5 parent: 2 - - uid: 21730 + - uid: 4578 components: - type: Transform - pos: 55.5,-25.5 + pos: 23.5,15.5 parent: 2 - - uid: 21731 + - uid: 4579 components: - type: Transform - pos: 56.5,-25.5 + pos: 22.5,15.5 parent: 2 - - uid: 21733 + - uid: 4580 components: - type: Transform - pos: 57.5,-25.5 + pos: 23.5,14.5 parent: 2 - - uid: 21842 + - uid: 4581 components: - type: Transform - pos: 58.5,-25.5 + pos: 23.5,13.5 parent: 2 - - uid: 21845 + - uid: 4582 components: - type: Transform - pos: 59.5,-25.5 + pos: 24.5,13.5 parent: 2 - - uid: 21892 + - uid: 4583 components: - type: Transform - pos: -13.5,18.5 + pos: 25.5,13.5 parent: 2 - - uid: 21896 + - uid: 4584 components: - type: Transform - pos: -12.5,18.5 + pos: 26.5,13.5 parent: 2 - - uid: 21897 + - uid: 4585 components: - type: Transform - pos: -10.5,19.5 + pos: 27.5,13.5 parent: 2 - - uid: 21909 + - uid: 4586 components: - type: Transform - pos: -11.5,19.5 + pos: 28.5,13.5 parent: 2 - - uid: 21917 + - uid: 4587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,16.5 + pos: 28.5,14.5 parent: 2 - - uid: 21918 + - uid: 4588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,16.5 + pos: 28.5,15.5 parent: 2 - - uid: 21919 + - uid: 4589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,18.5 + pos: 28.5,16.5 parent: 2 - - uid: 21920 + - uid: 4590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,18.5 + pos: 28.5,17.5 parent: 2 - - uid: 21921 + - uid: 4591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,19.5 + pos: 29.5,17.5 parent: 2 - - uid: 21967 + - uid: 4592 components: - type: Transform - pos: 60.5,-25.5 + pos: 30.5,17.5 parent: 2 - - uid: 21968 + - uid: 4593 components: - type: Transform - pos: 49.5,-16.5 + pos: 28.5,24.5 parent: 2 - - uid: 21969 + - uid: 4594 components: - type: Transform - pos: 60.5,-29.5 + pos: 28.5,25.5 parent: 2 - - uid: 21970 + - uid: 4595 components: - type: Transform - pos: 59.5,-29.5 + pos: 28.5,26.5 parent: 2 - - uid: 21971 + - uid: 4596 components: - type: Transform - pos: 58.5,-29.5 + pos: 28.5,27.5 parent: 2 - - uid: 21972 + - uid: 4597 components: - type: Transform - pos: 57.5,-29.5 + pos: 28.5,28.5 parent: 2 - - uid: 21973 + - uid: 4598 components: - type: Transform - pos: 56.5,-29.5 + pos: 28.5,29.5 parent: 2 - - uid: 21974 + - uid: 4599 components: - type: Transform - pos: 55.5,-29.5 + pos: 29.5,29.5 parent: 2 - - uid: 21975 + - uid: 4600 components: - type: Transform - pos: 54.5,-29.5 + pos: 30.5,29.5 parent: 2 - - uid: 21976 + - uid: 4601 components: - type: Transform - pos: 53.5,-29.5 + pos: 30.5,28.5 parent: 2 - - uid: 21977 + - uid: 4602 components: - type: Transform - pos: 52.5,-29.5 + pos: 28.5,30.5 parent: 2 - - uid: 21978 + - uid: 4603 components: - type: Transform - pos: 48.5,-16.5 + pos: 28.5,31.5 parent: 2 - - uid: 21979 + - uid: 4604 components: - type: Transform - pos: 51.5,-17.5 + pos: 27.5,31.5 parent: 2 - - uid: 21981 + - uid: 4605 components: - type: Transform - pos: 51.5,-19.5 + pos: 26.5,31.5 parent: 2 - - uid: 22148 + - uid: 4606 components: - type: Transform - pos: 0.5,-12.5 - parent: 16504 - - uid: 22242 + pos: 25.5,31.5 + parent: 2 + - uid: 4607 components: - type: Transform - pos: -12.5,19.5 + pos: 24.5,31.5 parent: 2 - - uid: 22243 + - uid: 4608 components: - type: Transform - pos: -13.5,19.5 + pos: 23.5,31.5 parent: 2 - - uid: 22500 + - uid: 4609 components: - type: Transform - pos: -13.5,17.5 + pos: 22.5,31.5 parent: 2 - - uid: 22501 + - uid: 4610 components: - type: Transform - pos: -12.5,17.5 + pos: 21.5,31.5 parent: 2 - - uid: 22503 + - uid: 4611 components: - type: Transform - pos: -10.5,17.5 + pos: 20.5,31.5 parent: 2 - - uid: 22504 + - uid: 4612 components: - type: Transform - pos: -9.5,17.5 + pos: 27.5,28.5 parent: 2 - - uid: 22505 + - uid: 4613 components: - type: Transform - pos: -6.5,16.5 + pos: 26.5,28.5 parent: 2 -- proto: Chair - entities: - - uid: 5952 + - uid: 4614 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,60.5 + pos: 25.5,28.5 parent: 2 - - uid: 5953 + - uid: 4615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,62.5 + pos: 24.5,28.5 parent: 2 - - uid: 5954 + - uid: 4616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,60.5 + pos: 23.5,28.5 parent: 2 - - uid: 5955 + - uid: 4617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,61.5 + pos: 22.5,28.5 parent: 2 - - uid: 5956 + - uid: 4618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,61.5 + pos: 21.5,28.5 parent: 2 - - uid: 5957 + - uid: 4619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,58.5 + pos: 20.5,28.5 parent: 2 - - uid: 5958 + - uid: 4620 components: - type: Transform - pos: 7.5,16.5 + pos: 19.5,28.5 parent: 2 - - uid: 5960 + - uid: 4621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,58.5 + pos: 18.5,29.5 parent: 2 - - uid: 5961 + - uid: 4622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,59.5 + pos: 18.5,28.5 parent: 2 - - uid: 5966 + - uid: 4623 components: - type: Transform - pos: 54.5,18.5 + pos: 19.5,27.5 parent: 2 - - uid: 5967 + - uid: 4624 components: - type: Transform - pos: 55.5,18.5 + pos: 19.5,26.5 parent: 2 - - uid: 5968 + - uid: 4625 components: - type: Transform - pos: 8.5,16.5 + pos: 18.5,26.5 parent: 2 - - uid: 5969 + - uid: 4626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,45.5 + pos: 20.5,26.5 parent: 2 - - uid: 5970 + - uid: 4627 components: - type: Transform - pos: 83.5,44.5 + pos: 29.5,26.5 parent: 2 - - uid: 5971 + - uid: 4628 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,42.5 + pos: 30.5,26.5 parent: 2 - - uid: 5972 + - uid: 4629 components: - type: Transform - pos: 83.5,47.5 + pos: 29.5,24.5 parent: 2 - - uid: 5973 + - uid: 4630 components: - type: Transform - pos: 3.5,34.5 + pos: 30.5,24.5 parent: 2 - - uid: 5974 + - uid: 4631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,24.5 + pos: 31.5,26.5 parent: 2 - - uid: 5975 + - uid: 4632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,8.5 + pos: 32.5,26.5 parent: 2 - - uid: 5976 + - uid: 4633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,74.5 + pos: 33.5,26.5 parent: 2 - - uid: 5977 + - uid: 4634 components: - type: Transform - pos: 75.5,62.5 + pos: 34.5,26.5 parent: 2 - - uid: 5978 + - uid: 4635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,61.5 + pos: 34.5,24.5 parent: 2 - - uid: 5979 + - uid: 4636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,62.5 + pos: 34.5,25.5 parent: 2 - - uid: 5980 + - uid: 4637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,59.5 + pos: 14.5,25.5 parent: 2 - - uid: 5981 + - uid: 4638 components: - type: Transform - pos: 68.5,58.5 + pos: 14.5,24.5 parent: 2 - - uid: 5982 + - uid: 4639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,59.5 + pos: 14.5,26.5 parent: 2 - - uid: 5983 + - uid: 4640 components: - type: Transform - pos: 68.5,61.5 + pos: 15.5,26.5 parent: 2 - - uid: 5984 + - uid: 4641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,56.5 + pos: 16.5,26.5 parent: 2 - - uid: 5989 + - uid: 4642 components: - type: Transform - pos: 77.5,62.5 + pos: 17.5,26.5 parent: 2 - - uid: 6006 + - uid: 4643 components: - type: Transform - pos: 68.5,64.5 + pos: 21.5,17.5 parent: 2 - - uid: 6012 + - uid: 4644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,55.5 + pos: 22.5,17.5 parent: 2 - - uid: 6013 + - uid: 4645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,64.5 + pos: 23.5,17.5 parent: 2 - - uid: 6014 + - uid: 4646 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,20.5 + pos: 23.5,16.5 parent: 2 - - uid: 6015 + - uid: 4647 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,7.5 + pos: 21.5,20.5 parent: 2 - - uid: 6016 + - uid: 4648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,76.5 + pos: 20.5,20.5 parent: 2 - - uid: 6017 + - uid: 4649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,75.5 + pos: 20.5,21.5 parent: 2 - - uid: 6018 + - uid: 4650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,70.5 + pos: 20.5,22.5 parent: 2 - - uid: 6019 + - uid: 4651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,73.5 + pos: 20.5,23.5 parent: 2 - - uid: 6020 + - uid: 4652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,72.5 + pos: 20.5,24.5 parent: 2 - - uid: 6021 + - uid: 4653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,71.5 + pos: 20.5,25.5 parent: 2 - - uid: 6022 + - uid: 4654 components: - type: Transform - pos: 32.5,26.5 + pos: 19.5,20.5 parent: 2 - - uid: 6023 + - uid: 4655 components: - type: Transform - pos: 16.5,26.5 + pos: 18.5,20.5 parent: 2 - - uid: 6024 + - uid: 4656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,24.5 + pos: 17.5,20.5 parent: 2 - - uid: 6025 + - uid: 4657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,47.5 + pos: 16.5,20.5 parent: 2 - - uid: 6026 + - uid: 4658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,46.5 + pos: 54.5,47.5 parent: 2 - - uid: 6027 + - uid: 4659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,45.5 + pos: 19.5,9.5 parent: 2 - - uid: 6028 + - uid: 4660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,44.5 + pos: 20.5,9.5 parent: 2 - - uid: 6029 + - uid: 4661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,43.5 + pos: 21.5,9.5 parent: 2 - - uid: 6030 + - uid: 4662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,42.5 + pos: 22.5,9.5 parent: 2 - - uid: 6031 + - uid: 4663 components: - type: Transform - pos: 78.5,38.5 + pos: 22.5,11.5 parent: 2 - - uid: 6032 + - uid: 4664 components: - type: Transform - pos: 77.5,38.5 + pos: 20.5,8.5 parent: 2 - - uid: 6033 + - uid: 4665 components: - type: Transform - pos: 76.5,38.5 + pos: 20.5,7.5 parent: 2 - - uid: 6034 + - uid: 4666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,36.5 + pos: 20.5,6.5 parent: 2 - - uid: 6035 + - uid: 4667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,36.5 + pos: 20.5,5.5 parent: 2 - - uid: 6036 + - uid: 4668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,36.5 + pos: 20.5,4.5 parent: 2 - - uid: 6037 + - uid: 4669 components: - type: Transform - pos: 50.5,18.5 + pos: 20.5,3.5 parent: 2 - - uid: 6038 + - uid: 4670 components: - type: Transform - pos: 49.5,18.5 + pos: 20.5,2.5 parent: 2 - - uid: 6039 + - uid: 4671 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,16.5 + pos: 20.5,1.5 parent: 2 - - uid: 6040 + - uid: 4672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,16.5 + pos: 20.5,0.5 parent: 2 - - uid: 6041 + - uid: 4673 components: - type: Transform - pos: 43.5,63.5 + pos: 20.5,-0.5 parent: 2 - - uid: 6042 + - uid: 4674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,61.5 + pos: 20.5,-1.5 parent: 2 - - uid: 6043 + - uid: 4675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,62.5 + pos: 20.5,-2.5 parent: 2 - - uid: 6044 + - uid: 4676 components: - type: Transform - pos: 41.5,63.5 + pos: 20.5,-3.5 parent: 2 - - uid: 6045 + - uid: 4677 components: - type: Transform - pos: 42.5,63.5 + pos: 20.5,-4.5 parent: 2 - - uid: 6046 + - uid: 4678 components: - type: Transform - pos: 92.5,19.5 + pos: 21.5,-4.5 parent: 2 - - uid: 6047 + - uid: 4679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,60.5 + pos: 22.5,-4.5 parent: 2 - - uid: 6048 + - uid: 4680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,6.5 + pos: 22.5,-5.5 parent: 2 - - uid: 6536 + - uid: 4681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-8.5 + pos: 22.5,-6.5 parent: 2 - - uid: 18752 + - uid: 4682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,29.5 - parent: 16504 - - uid: 21650 + pos: 22.5,-7.5 + parent: 2 + - uid: 4683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-8.5 + pos: 22.5,-8.5 parent: 2 -- proto: ChairCarp - entities: - - uid: 2364 + - uid: 4684 components: - type: Transform - pos: 31.5,47.5 + pos: 22.5,-9.5 parent: 2 - - uid: 6049 + - uid: 4685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-15.5 + pos: 22.5,-10.5 parent: 2 - - uid: 18753 + - uid: 4686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 16504 - - uid: 21281 + pos: 22.5,-11.5 + parent: 2 + - uid: 4687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,42.5 + pos: 22.5,-12.5 parent: 2 - - uid: 21284 + - uid: 4688 components: - type: Transform - pos: 30.5,47.5 + pos: 22.5,-13.5 parent: 2 - - uid: 21285 + - uid: 4689 components: - type: Transform - pos: 31.5,44.5 + pos: 22.5,-14.5 parent: 2 - - uid: 21292 + - uid: 4690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,42.5 + pos: 22.5,-15.5 parent: 2 - - uid: 21293 + - uid: 4691 components: - type: Transform - pos: 30.5,44.5 + pos: 23.5,-15.5 parent: 2 - - uid: 21299 + - uid: 4692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,44.5 + pos: 24.5,-15.5 parent: 2 - - uid: 21302 + - uid: 4693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,40.5 + pos: 25.5,-15.5 parent: 2 - - uid: 21303 + - uid: 4694 components: - type: Transform - pos: 33.5,46.5 + pos: 26.5,-15.5 parent: 2 - - uid: 21304 + - uid: 4695 components: - type: Transform - pos: 33.5,42.5 + pos: 26.5,-16.5 parent: 2 -- proto: ChairFolding - entities: - - uid: 6050 + - uid: 4696 components: - type: Transform - pos: 57.5,-9.5 + pos: 26.5,-17.5 parent: 2 - - uid: 6051 + - uid: 4697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,17.5 + pos: 25.5,-10.5 parent: 2 - - uid: 6052 + - uid: 4698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,18.5 + pos: 24.5,-10.5 parent: 2 - - uid: 6053 + - uid: 4699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,19.5 + pos: 23.5,-10.5 parent: 2 - - uid: 6054 + - uid: 4700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.311443,78.544846 + pos: 25.5,-2.5 parent: 2 - - uid: 6055 + - uid: 4701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.490166,17.626564 + pos: 24.5,-2.5 parent: 2 - - uid: 6056 + - uid: 4702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.84859,16.633379 + pos: 23.5,-2.5 parent: 2 - - uid: 11803 + - uid: 4703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.275978,41.554043 + pos: 22.5,-2.5 parent: 2 - - uid: 11953 + - uid: 4704 components: - type: Transform - pos: 16.471619,46.424683 + pos: 21.5,-2.5 parent: 2 - - uid: 18754 + - uid: 4705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,13.5 - parent: 16504 - - uid: 18755 + pos: 18.5,3.5 + parent: 2 + - uid: 4706 components: - type: Transform - pos: 11.5,15.5 - parent: 16504 - - uid: 18756 + pos: 18.5,4.5 + parent: 2 + - uid: 4707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 16504 - - uid: 21314 + pos: 19.5,4.5 + parent: 2 + - uid: 4708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.234486,45.906715 + pos: 21.5,-0.5 parent: 2 - - uid: 21315 + - uid: 4709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.273552,44.904114 + pos: 22.5,-0.5 parent: 2 - - uid: 21317 + - uid: 4710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.312622,43.862446 + pos: 23.5,-0.5 parent: 2 - - uid: 21326 + - uid: 4711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.29161,40.647793 + pos: 24.5,-0.5 parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 6058 + - uid: 4712 components: - type: Transform - pos: 53.477474,26.7046 + pos: 25.5,-0.5 parent: 2 - - uid: 6059 + - uid: 4713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.52678,9.618879 + pos: 26.5,-0.5 parent: 2 - - uid: 6060 + - uid: 4714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.53851,9.533354 + pos: 27.5,-0.5 parent: 2 - - uid: 6061 + - uid: 4715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,10.5 + pos: 28.5,-0.5 parent: 2 - - uid: 6062 + - uid: 4716 components: - type: Transform - pos: 5.5,6.5 + pos: 29.5,-0.5 parent: 2 - - uid: 6063 + - uid: 4717 components: - type: Transform - pos: 5.5,2.5 + pos: 30.5,-0.5 parent: 2 - - uid: 6064 + - uid: 4718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,21.5 + pos: 30.5,-1.5 parent: 2 - - uid: 6065 + - uid: 4719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.762114,29.10214 + pos: 31.5,-1.5 parent: 2 - - uid: 6066 + - uid: 4720 components: - type: Transform - pos: 24.496489,29.774015 + pos: 53.5,47.5 parent: 2 - - uid: 6067 + - uid: 4721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.996489,29.75839 + pos: 45.5,41.5 parent: 2 - - uid: 6068 + - uid: 4722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,9.5 + pos: 45.5,40.5 parent: 2 - - uid: 6069 + - uid: 4723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,5.5 + pos: 45.5,39.5 parent: 2 - - uid: 6070 + - uid: 4724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,9.5 + pos: 45.5,38.5 parent: 2 - - uid: 6071 + - uid: 4725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,9.5 + pos: 46.5,38.5 parent: 2 - - uid: 6072 + - uid: 4726 components: - type: Transform - pos: 41.5,30.5 + pos: 46.5,37.5 parent: 2 - - uid: 6073 + - uid: 4727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,32.5 + pos: 46.5,36.5 parent: 2 - - uid: 6074 + - uid: 4728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,21.5 + pos: 46.5,35.5 parent: 2 - - uid: 6075 + - uid: 4729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,21.5 + pos: 46.5,34.5 parent: 2 - - uid: 6076 + - uid: 4730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.346596,29.16464 + pos: 46.5,32.5 parent: 2 - - uid: 6077 + - uid: 4731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,37.5 + pos: 46.5,31.5 parent: 2 - - uid: 6078 + - uid: 4732 components: - type: Transform - pos: 21.502985,9.648951 + pos: 46.5,30.5 parent: 2 - - uid: 6079 + - uid: 4733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,35.5 + pos: 48.5,31.5 parent: 2 - - uid: 6080 + - uid: 4734 components: - type: Transform - pos: 43.448,69.548584 + pos: 48.5,32.5 parent: 2 - - uid: 6081 + - uid: 4735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.965239,29.69589 + pos: 48.5,33.5 parent: 2 - - uid: 6082 + - uid: 4736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,10.5 + pos: 50.5,35.5 parent: 2 - - uid: 6083 + - uid: 4737 components: - type: Transform - pos: 4.430807,12.5678215 + pos: 51.5,35.5 parent: 2 - - uid: 6084 + - uid: 4738 components: - type: Transform - pos: 21.5,-7.5 + pos: 52.5,35.5 parent: 2 - - uid: 6085 + - uid: 4739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5635295,33.568768 + pos: 56.5,18.5 parent: 2 - - uid: 6086 + - uid: 4740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.458984,9.688908 + pos: 51.5,37.5 parent: 2 - - uid: 18757 + - uid: 4741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 16504 - - uid: 18758 + pos: 58.5,17.5 + parent: 2 + - uid: 4742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 16504 - - uid: 18759 + pos: 58.5,18.5 + parent: 2 + - uid: 4743 components: - type: Transform - pos: -10.5,3.5 - parent: 16504 - - uid: 18760 + pos: 44.5,31.5 + parent: 2 + - uid: 4744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 16504 - - uid: 18761 + pos: 43.5,31.5 + parent: 2 + - uid: 4745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 16504 - - uid: 18762 + pos: 42.5,31.5 + parent: 2 + - uid: 4746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,3.5 - parent: 16504 - - uid: 18763 + pos: 41.5,31.5 + parent: 2 + - uid: 4747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 16504 - - uid: 18764 + pos: 40.5,31.5 + parent: 2 + - uid: 4748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,14.5 - parent: 16504 - - uid: 18765 + pos: 39.5,31.5 + parent: 2 + - uid: 4749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 16504 - - uid: 18766 + pos: 38.5,31.5 + parent: 2 + - uid: 4750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 16504 - - uid: 18767 + pos: 38.5,30.5 + parent: 2 + - uid: 4751 components: - type: Transform - pos: 29.5,19.5 - parent: 16504 - - uid: 18768 + pos: 46.5,29.5 + parent: 2 + - uid: 4752 components: - type: Transform - pos: 31.5,18.5 - parent: 16504 - - uid: 18769 + pos: 45.5,29.5 + parent: 2 + - uid: 4753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,18.5 - parent: 16504 - - uid: 18770 + pos: 45.5,28.5 + parent: 2 + - uid: 4754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,14.5 - parent: 16504 - - uid: 18771 + pos: 45.5,27.5 + parent: 2 + - uid: 4755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,34.5 - parent: 16504 - - uid: 22321 + pos: 45.5,26.5 + parent: 2 + - uid: 4756 components: - type: Transform - pos: 60.56198,23.590954 + pos: 45.5,25.5 parent: 2 -- proto: ChairOfficeLight - entities: - - uid: 6087 + - uid: 4757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-4.5 + pos: 46.5,25.5 parent: 2 - - uid: 6088 + - uid: 4758 components: - type: Transform - pos: 57.5,-2.5 + pos: 45.5,24.5 parent: 2 - - uid: 6089 + - uid: 4759 components: - type: Transform - pos: 59.5,62.5 + pos: 45.5,23.5 parent: 2 - - uid: 6090 + - uid: 4760 components: - type: Transform - pos: 43.5139,6.6169376 + pos: 46.5,23.5 parent: 2 - - uid: 6091 + - uid: 4761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,53.5 + pos: 47.5,23.5 parent: 2 - - uid: 6092 + - uid: 4762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.428684,10.520226 + pos: 48.5,23.5 parent: 2 - - uid: 6093 + - uid: 4763 components: - type: Transform - pos: 50.541992,55.54185 + pos: 49.5,23.5 parent: 2 -- proto: ChairPilotSeat - entities: - - uid: 18772 + - uid: 4764 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,31.5 - parent: 16504 - - uid: 18773 + pos: 50.5,23.5 + parent: 2 + - uid: 4765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,31.5 - parent: 16504 -- proto: ChairWeb - entities: - - uid: 6516 + pos: 51.5,23.5 + parent: 2 + - uid: 4766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,44.5 + pos: 52.5,23.5 parent: 2 -- proto: ChairWood - entities: - - uid: 3850 + - uid: 4767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.936659,43.770454 + pos: 53.5,23.5 parent: 2 - - uid: 3976 + - uid: 4768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.75856,46.270454 + pos: 54.5,23.5 parent: 2 - - uid: 3977 + - uid: 4769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.778093,47.61811 + pos: 54.5,22.5 parent: 2 - - uid: 3980 + - uid: 4770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.778093,44.903267 + pos: 54.5,21.5 parent: 2 - - uid: 4305 + - uid: 4771 components: - type: Transform - pos: 21.5,48.5 + pos: 54.5,19.5 parent: 2 - - uid: 4319 + - uid: 4772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.698488,46.576286 + pos: 55.5,19.5 parent: 2 - - uid: 5125 + - uid: 4773 components: - type: Transform - pos: 73.49717,4.5146527 + pos: 55.5,21.5 parent: 2 - - uid: 5923 + - uid: 4774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.46939,2.6674309 + pos: 56.5,21.5 parent: 2 - - uid: 5937 + - uid: 4775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.511055,3.570208 + pos: 57.5,21.5 parent: 2 - - uid: 6097 + - uid: 4776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,60.5 + pos: 58.5,21.5 parent: 2 - - uid: 6098 + - uid: 4777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,60.5 + pos: 57.5,19.5 parent: 2 - - uid: 6099 + - uid: 4778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,31.5 + pos: 58.5,19.5 parent: 2 - - uid: 6100 + - uid: 4779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,30.5 + pos: 51.5,22.5 parent: 2 - - uid: 6101 + - uid: 4780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,31.5 + pos: 51.5,21.5 parent: 2 - - uid: 6102 + - uid: 4781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,30.5 + pos: 44.5,23.5 parent: 2 - - uid: 6103 + - uid: 4782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,31.5 + pos: 44.5,22.5 parent: 2 - - uid: 6104 + - uid: 4783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,30.5 + pos: 44.5,21.5 parent: 2 - - uid: 6105 + - uid: 4784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,34.5 + pos: 44.5,20.5 parent: 2 - - uid: 6106 + - uid: 4785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,33.5 + pos: 44.5,19.5 parent: 2 - - uid: 6107 + - uid: 4786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,34.5 + pos: 44.5,18.5 parent: 2 - - uid: 6108 + - uid: 4787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,33.5 + pos: 44.5,17.5 parent: 2 - - uid: 6109 + - uid: 4788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,34.5 + pos: 44.5,16.5 parent: 2 - - uid: 6110 + - uid: 4789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,33.5 + pos: 43.5,19.5 parent: 2 - - uid: 6111 + - uid: 4790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,34.5 + pos: 42.5,19.5 parent: 2 - - uid: 6112 + - uid: 4791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,33.5 + pos: 41.5,19.5 parent: 2 - - uid: 6113 + - uid: 4792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,31.5 + pos: 40.5,19.5 parent: 2 - - uid: 6114 + - uid: 4793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,30.5 + pos: 39.5,19.5 parent: 2 - - uid: 6115 + - uid: 4794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,28.5 + pos: 38.5,19.5 parent: 2 - - uid: 6116 + - uid: 4795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,26.5 + pos: 38.5,20.5 parent: 2 - - uid: 6117 + - uid: 4796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,59.5 + pos: 41.5,20.5 parent: 2 - - uid: 6118 + - uid: 4797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,62.5 + pos: 41.5,17.5 parent: 2 - - uid: 6119 + - uid: 4798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,62.5 + pos: 41.5,16.5 parent: 2 - - uid: 6120 + - uid: 4799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,64.5 + pos: 40.5,16.5 parent: 2 - - uid: 6121 + - uid: 4800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,63.5 + pos: 39.5,16.5 parent: 2 - - uid: 6122 + - uid: 4801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,55.5 + pos: 38.5,16.5 parent: 2 - - uid: 6532 + - uid: 4802 components: - type: Transform - pos: 74.55272,4.5285416 + pos: 38.5,17.5 parent: 2 - - uid: 9331 + - uid: 4803 components: - type: Transform - pos: 23.5,48.5 + pos: 42.5,16.5 parent: 2 - - uid: 9346 + - uid: 4804 components: - type: Transform - pos: 24.5,48.5 + pos: 43.5,16.5 parent: 2 - - uid: 9930 + - uid: 4805 components: - type: Transform - pos: 19.5,48.5 + pos: 56.5,36.5 parent: 2 - - uid: 10160 + - uid: 4806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,46.5 + pos: 59.5,18.5 parent: 2 - - uid: 10605 + - uid: 4807 components: - type: Transform - pos: 25.5,48.5 + pos: 56.5,20.5 parent: 2 - - uid: 11490 + - uid: 4808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,46.5 + pos: 56.5,19.5 parent: 2 - - uid: 11491 + - uid: 4809 components: - type: Transform - pos: 26.5,48.5 + pos: 57.5,17.5 parent: 2 - - uid: 11493 + - uid: 4810 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,46.5 + pos: 49.5,25.5 parent: 2 - - uid: 11494 + - uid: 4811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,46.5 + pos: 49.5,24.5 parent: 2 - - uid: 13921 + - uid: 4812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,46.5 + pos: 44.5,32.5 parent: 2 -- proto: CheapLighter - entities: - - uid: 3617 + - uid: 4813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.903698,-26.569796 + pos: 45.5,32.5 parent: 2 -- proto: CheckerBoard - entities: - - uid: 6127 + - uid: 4814 components: - type: Transform - pos: 19.512543,-18.396269 + pos: 48.5,30.5 parent: 2 - - uid: 21839 + - uid: 4815 components: - type: Transform - pos: 21.495317,47.61564 + pos: 47.5,30.5 parent: 2 -- proto: ChemDispenser - entities: - - uid: 6128 + - uid: 4816 components: - type: Transform - pos: 40.5,9.5 + pos: 52.5,34.5 parent: 2 - - uid: 6129 + - uid: 4817 components: - type: Transform - pos: 42.5,6.5 + pos: 52.5,35.5 parent: 2 -- proto: ChemDispenserEmpty - entities: - - uid: 6130 + - uid: 4818 components: - type: Transform - pos: 19.5,-14.5 + pos: 71.5,39.5 parent: 2 -- proto: ChemistryHotplate - entities: - - uid: 6131 + - uid: 4819 components: - type: Transform - pos: 44.5,8.5 + pos: 78.5,14.5 parent: 2 -- proto: ChemMaster - entities: - - uid: 6132 + - uid: 4820 components: - type: Transform - pos: 40.5,10.5 + pos: 78.5,15.5 parent: 2 - - uid: 6133 + - uid: 4821 components: - type: Transform - pos: 44.5,6.5 + pos: 78.5,16.5 parent: 2 - - uid: 6134 + - uid: 4822 components: - type: Transform - pos: 18.5,-14.5 + pos: 78.5,17.5 parent: 2 - - uid: 18622 + - uid: 4823 components: - type: Transform - pos: 40.5,53.5 + pos: 77.5,17.5 parent: 2 -- proto: ChessBoard - entities: - - uid: 6135 + - uid: 4824 components: - type: Transform - pos: 9.432614,31.582724 + pos: 76.5,17.5 parent: 2 - - uid: 12239 + - uid: 4825 components: - type: Transform - pos: 19.484901,47.63647 + pos: 75.5,17.5 parent: 2 -- proto: ChurchOrganInstrument - entities: - - uid: 6136 + - uid: 4826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,34.5 + pos: 75.5,18.5 parent: 2 -- proto: Cigar - entities: - - uid: 21408 + - uid: 4827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.789893,53.671906 + pos: 75.5,19.5 parent: 2 -- proto: CigaretteSpent - entities: - - uid: 4282 + - uid: 4828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.59194,4.37199 + pos: 46.5,5.5 parent: 2 - - uid: 4304 + - uid: 4829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.57806,3.885879 + pos: 47.5,5.5 parent: 2 - - uid: 4315 + - uid: 4830 components: - type: Transform - pos: 75.28639,4.62199 + pos: 48.5,5.5 parent: 2 - - uid: 4316 + - uid: 4831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.56417,3.4275458 + pos: 48.5,6.5 parent: 2 - - uid: 5853 + - uid: 4832 components: - type: Transform - pos: 73.96939,3.4188337 + pos: 48.5,7.5 parent: 2 - - uid: 6137 + - uid: 4833 components: - type: Transform - pos: 63.5,-0.5 + pos: 49.5,7.5 parent: 2 - - uid: 9328 + - uid: 4834 components: - type: Transform - pos: 73.99717,3.4466116 + pos: 55.5,5.5 parent: 2 - - uid: 13881 + - uid: 4835 components: - type: Transform - pos: 73.96939,3.502167 + pos: 55.5,4.5 parent: 2 -- proto: CigarGold - entities: - - uid: 6138 + - uid: 4836 components: - type: Transform - pos: 24.363087,34.2277 + pos: 55.5,3.5 parent: 2 -- proto: CigarGoldCase - entities: - - uid: 6139 + - uid: 4837 components: - type: Transform - pos: 20.370047,30.575838 + pos: 54.5,3.5 parent: 2 - - uid: 6140 + - uid: 4838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.564734,25.990993 + pos: 53.5,3.5 parent: 2 -- proto: CigarSpent - entities: - - uid: 5862 + - uid: 4839 components: - type: Transform - pos: 23.854118,47.752377 + pos: 52.5,3.5 parent: 2 - - uid: 13657 + - uid: 4840 components: - type: Transform - pos: 15.616814,48.651505 + pos: 51.5,3.5 parent: 2 - - uid: 21410 + - uid: 4841 components: - type: Transform - pos: 15.581529,53.580757 + pos: 50.5,3.5 parent: 2 - - uid: 21651 + - uid: 4842 components: - type: Transform - pos: 39.651012,-8.378641 + pos: 47.5,4.5 parent: 2 -- proto: CigCartonBlack - entities: - - uid: 21841 + - uid: 4843 components: - type: Transform - pos: 28.502699,44.143787 + pos: 53.5,2.5 parent: 2 -- proto: CigPackBlack - entities: - - uid: 21982 + - uid: 4844 components: - type: Transform - pos: 15.674469,41.40483 + pos: 53.5,1.5 parent: 2 -- proto: CircuitImprinter - entities: - - uid: 6141 + - uid: 4845 components: - type: Transform - pos: 24.5,7.5 + pos: 53.5,0.5 parent: 2 -- proto: CleanerDispenser - entities: - - uid: 6142 + - uid: 4846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,48.5 + pos: 54.5,0.5 parent: 2 - - uid: 22395 + - uid: 4847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,47.5 + pos: 27.5,17.5 parent: 2 - - uid: 22396 + - uid: 4848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,49.5 + pos: 45.5,-6.5 parent: 2 -- proto: CloningPod - entities: - - uid: 6143 + - uid: 4849 components: - type: Transform - pos: 50.5,-4.5 + pos: 45.5,-7.5 parent: 2 -- proto: ClosetBombFilled - entities: - - uid: 6144 + - uid: 4850 components: - type: Transform - pos: 17.5,-3.5 + pos: 45.5,-8.5 parent: 2 -- proto: ClosetChefFilled - entities: - - uid: 21563 + - uid: 4851 components: - type: Transform - pos: 30.5,58.5 + pos: 45.5,-9.5 parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 5868 + - uid: 4852 components: - type: Transform - pos: 15.5,-37.5 + pos: 45.5,-10.5 parent: 2 - - uid: 6145 + - uid: 4853 components: - type: Transform - pos: 69.5,66.5 + pos: 46.5,-11.5 parent: 2 - - uid: 6146 + - uid: 4854 components: - type: Transform - pos: 33.5,2.5 + pos: 40.5,9.5 parent: 2 - - uid: 6147 + - uid: 4855 components: - type: Transform - pos: 23.5,3.5 + pos: 40.5,8.5 parent: 2 - - uid: 6148 + - uid: 4856 components: - type: Transform - pos: 70.5,10.5 + pos: 40.5,7.5 parent: 2 - - uid: 6150 + - uid: 4857 components: - type: Transform - pos: 64.5,15.5 + pos: 40.5,6.5 parent: 2 - - uid: 6151 + - uid: 4858 components: - type: Transform - pos: 11.5,38.5 + pos: 40.5,5.5 parent: 2 - - uid: 6152 + - uid: 4859 components: - type: Transform - pos: 70.5,33.5 + pos: 42.5,10.5 parent: 2 - - uid: 6153 + - uid: 4860 components: - type: Transform - pos: 49.5,51.5 + pos: 42.5,9.5 parent: 2 - - uid: 6154 + - uid: 4861 components: - type: Transform - pos: 4.5,31.5 + pos: 41.5,9.5 parent: 2 - - uid: 6156 + - uid: 4862 components: - type: Transform - pos: 83.5,36.5 + pos: 45.5,-11.5 parent: 2 - - uid: 6158 + - uid: 4863 components: - type: Transform - pos: 83.5,50.5 + pos: 45.5,-12.5 parent: 2 - - uid: 6160 + - uid: 4864 components: - type: Transform - pos: 67.5,20.5 + pos: 45.5,-13.5 parent: 2 - - uid: 6161 + - uid: 4867 components: - type: Transform - pos: 64.5,42.5 + pos: 45.5,-15.5 parent: 2 - - uid: 6162 + - uid: 4868 components: - type: Transform - pos: 44.5,-12.5 + pos: 46.5,-15.5 parent: 2 - - uid: 18774 - components: - - type: Transform - pos: -15.5,14.5 - parent: 16504 - - uid: 18775 + - uid: 4869 components: - type: Transform - pos: -13.5,16.5 - parent: 16504 - - uid: 18776 + pos: 46.5,-16.5 + parent: 2 + - uid: 4873 components: - type: Transform - pos: 22.5,6.5 - parent: 16504 -- proto: ClosetFire - entities: - - uid: 6163 + pos: 52.5,-13.5 + parent: 2 + - uid: 4874 components: - type: Transform - pos: 16.5,-3.5 + pos: 52.5,-12.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6164 - - 6165 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21435 + - uid: 4875 components: - type: Transform - pos: 40.5,52.5 + pos: 52.5,-11.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21440 - - 21439 - - 21438 - - 21437 - - 21436 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetFireFilled - entities: - - uid: 6166 + - uid: 4876 components: - type: Transform - pos: 70.5,66.5 + pos: 52.5,-10.5 parent: 2 - - uid: 6167 + - uid: 4877 components: - type: Transform - pos: 74.5,24.5 + pos: 52.5,-9.5 parent: 2 - - uid: 6168 + - uid: 4878 components: - type: Transform - pos: 24.5,3.5 + pos: 52.5,-8.5 parent: 2 - - uid: 6169 + - uid: 4879 components: - type: Transform - pos: 26.5,2.5 + pos: 52.5,-7.5 parent: 2 - - uid: 6172 + - uid: 4880 components: - type: Transform - pos: 83.5,37.5 + pos: 53.5,-7.5 parent: 2 - - uid: 6173 + - uid: 4881 components: - type: Transform - pos: 5.5,31.5 + pos: 54.5,-7.5 parent: 2 - - uid: 6175 + - uid: 4882 components: - type: Transform - pos: 70.5,32.5 + pos: 55.5,-7.5 parent: 2 - - uid: 6176 + - uid: 4883 components: - type: Transform - pos: 48.5,51.5 + pos: 56.5,-7.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6178 + - uid: 4884 components: - type: Transform - pos: 65.5,15.5 + pos: 57.5,-7.5 parent: 2 - - uid: 6179 + - uid: 4885 components: - type: Transform - pos: 11.5,37.5 + pos: 58.5,-7.5 parent: 2 - - uid: 6180 + - uid: 4886 components: - type: Transform - pos: 83.5,49.5 + pos: 59.5,-7.5 parent: 2 - - uid: 6181 + - uid: 4887 components: - type: Transform - pos: 64.5,43.5 + pos: 59.5,-6.5 parent: 2 - - uid: 18777 + - uid: 4888 components: - type: Transform - pos: -16.5,14.5 - parent: 16504 -- proto: ClosetJanitorFilled - entities: - - uid: 6182 + pos: 59.5,-5.5 + parent: 2 + - uid: 4889 components: - type: Transform - pos: 66.5,47.5 + pos: 59.5,-4.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22476 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18778 + - uid: 4890 components: - type: Transform - pos: 20.5,13.5 - parent: 16504 -- proto: ClosetL3Filled - entities: - - uid: 6183 + pos: 59.5,-3.5 + parent: 2 + - uid: 4891 components: - type: Transform - pos: 67.5,22.5 + pos: 60.5,-3.5 parent: 2 -- proto: ClosetL3JanitorFilled - entities: - - uid: 6184 + - uid: 4892 components: - type: Transform - pos: 67.5,47.5 + pos: 61.5,-3.5 parent: 2 -- proto: ClosetL3SecurityFilled - entities: - - uid: 6185 + - uid: 4893 components: - type: Transform - pos: 58.5,18.5 + pos: 31.5,18.5 parent: 2 -- proto: ClosetL3VirologyFilled - entities: - - uid: 6186 + - uid: 4894 components: - type: Transform - pos: 52.5,-0.5 + pos: 53.5,46.5 parent: 2 - - uid: 6187 + - uid: 4895 components: - type: Transform - pos: 52.5,-2.5 + pos: 55.5,47.5 parent: 2 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 297 + - uid: 4896 components: - type: Transform - pos: 37.5,58.5 + pos: 59.5,70.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 298 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6188 + - uid: 4897 components: - type: Transform - pos: 35.5,67.5 + pos: 58.5,70.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6189 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6190 + - uid: 4898 components: - type: Transform - pos: 86.5,11.5 + pos: 57.5,70.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6191 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6192 + - uid: 4899 components: - type: Transform - pos: 4.5,21.5 + pos: 57.5,69.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6193 + - uid: 4900 components: - type: Transform - pos: 42.5,-13.5 + pos: 57.5,68.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6194 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6195 + - uid: 4901 components: - type: Transform - pos: 15.5,64.5 + pos: 57.5,67.5 parent: 2 - - uid: 6196 + - uid: 4902 components: - type: Transform - pos: 12.5,83.5 + pos: 57.5,66.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6197 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6198 + - uid: 4903 components: - type: Transform - pos: 37.5,61.5 + pos: 57.5,65.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6199 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6201 + - uid: 4904 components: - type: Transform - pos: 62.5,16.5 + pos: 50.5,66.5 parent: 2 - - uid: 6202 + - uid: 4905 components: - type: Transform - pos: 74.5,11.5 + pos: 50.5,67.5 parent: 2 - - uid: 6203 + - uid: 4906 components: - type: Transform - pos: 33.5,-5.5 + pos: 41.5,69.5 parent: 2 - - uid: 6204 + - uid: 4907 components: - type: Transform - pos: 31.5,-10.5 + pos: 42.5,69.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6205 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6206 + - uid: 4908 components: - type: Transform - pos: 15.5,2.5 + pos: 43.5,69.5 parent: 2 - - uid: 6207 + - uid: 4909 components: - type: Transform - pos: 5.5,16.5 + pos: 45.5,69.5 parent: 2 - - uid: 6208 + - uid: 4910 components: - type: Transform - pos: 85.5,24.5 + pos: 43.5,71.5 parent: 2 - - uid: 6209 + - uid: 4911 components: - type: Transform - pos: 15.5,78.5 + pos: 43.5,70.5 parent: 2 - - uid: 6210 + - uid: 4912 components: - type: Transform - pos: 42.5,-11.5 + pos: 47.5,65.5 parent: 2 - - uid: 6211 + - uid: 4913 components: - type: Transform - pos: 66.5,22.5 + pos: 57.5,64.5 parent: 2 - - uid: 6212 + - uid: 4914 components: - type: Transform - pos: 49.5,39.5 + pos: 57.5,63.5 parent: 2 - - uid: 6213 + - uid: 4915 components: - type: Transform - pos: 17.5,65.5 + pos: 57.5,62.5 parent: 2 - - uid: 6214 + - uid: 4916 components: - type: Transform - pos: 63.5,1.5 + pos: 57.5,61.5 parent: 2 - - uid: 6215 + - uid: 4917 components: - type: Transform - pos: 25.5,67.5 + pos: 57.5,60.5 parent: 2 - - uid: 6216 + - uid: 4918 components: - type: Transform - pos: 61.5,8.5 + pos: 57.5,59.5 parent: 2 - - uid: 18779 + - uid: 4919 components: - type: Transform - pos: 20.5,1.5 - parent: 16504 - - uid: 18780 + pos: 57.5,58.5 + parent: 2 + - uid: 4920 components: - type: Transform - pos: 18.5,9.5 - parent: 16504 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 6217 + pos: 57.5,57.5 + parent: 2 + - uid: 4921 components: - type: Transform - pos: 18.5,-3.5 + pos: 57.5,56.5 parent: 2 - - uid: 6219 + - uid: 4922 components: - type: Transform - pos: 54.5,73.5 + pos: 57.5,55.5 parent: 2 - - uid: 16183 + - uid: 4923 components: - type: Transform - pos: 51.5,73.5 + pos: 57.5,54.5 parent: 2 -- proto: ClosetToolFilled - entities: - - uid: 6221 + - uid: 4924 components: - type: Transform - pos: 18.5,2.5 + pos: 57.5,53.5 parent: 2 - - uid: 6222 + - uid: 4925 components: - type: Transform - pos: 84.5,24.5 + pos: 57.5,52.5 parent: 2 - - uid: 6223 + - uid: 4926 components: - type: Transform - pos: 68.5,22.5 + pos: 58.5,52.5 parent: 2 - - uid: 6224 + - uid: 4927 components: - type: Transform - pos: 39.5,61.5 + pos: 59.5,52.5 parent: 2 - - uid: 6225 + - uid: 4928 components: - type: Transform - pos: 47.5,57.5 + pos: 60.5,52.5 parent: 2 -- proto: ClosetWallAtmospherics - entities: - - uid: 41 + - uid: 4929 components: - type: Transform - pos: 22.5,76.5 + pos: 61.5,52.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 44 - - 46 - - 47 - - 50 - - 48 - - 42 - - 45 - - 49 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 2404 + - uid: 4930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,35.5 + pos: 62.5,52.5 parent: 2 - - uid: 6226 + - uid: 4931 components: - type: Transform - pos: 16.5,-17.5 + pos: 63.5,52.5 parent: 2 - - uid: 6227 + - uid: 4932 components: - type: Transform - pos: 47.5,-12.5 + pos: 64.5,52.5 parent: 2 - - uid: 6228 + - uid: 4933 components: - type: Transform - pos: 26.5,-18.5 + pos: 65.5,52.5 parent: 2 - - uid: 6229 + - uid: 4934 components: - type: Transform - pos: 65.5,36.5 + pos: 66.5,52.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6230 + - uid: 4935 components: - type: Transform - pos: 33.5,-1.5 + pos: 66.5,53.5 parent: 2 - - uid: 6231 + - uid: 4936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-4.5 + pos: 66.5,54.5 parent: 2 - - uid: 6232 + - uid: 4937 components: - type: Transform - pos: 45.5,15.5 + pos: 66.5,55.5 parent: 2 - - uid: 6233 + - uid: 4938 components: - type: Transform - pos: 32.5,18.5 + pos: 66.5,56.5 parent: 2 - - uid: 6235 + - uid: 4939 components: - type: Transform - pos: 50.5,46.5 + pos: 66.5,57.5 parent: 2 - - uid: 21205 + - uid: 4940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,42.5 + pos: 67.5,57.5 parent: 2 - - uid: 21777 + - uid: 4941 components: - type: Transform - pos: 20.5,15.5 + pos: 72.5,66.5 parent: 2 - - uid: 21778 + - uid: 4942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,30.5 + pos: 72.5,65.5 parent: 2 - - uid: 21871 + - uid: 4943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-6.5 + pos: 72.5,64.5 parent: 2 - - uid: 21873 + - uid: 4944 components: - type: Transform - pos: 51.5,5.5 + pos: 72.5,63.5 parent: 2 -- proto: ClosetWallFire - entities: - - uid: 18781 + - uid: 4945 components: - type: Transform - pos: -11.5,1.5 - parent: 16504 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 266 + pos: 72.5,62.5 + parent: 2 + - uid: 4946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,35.5 + pos: 72.5,61.5 parent: 2 - - uid: 5813 + - uid: 4947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,31.5 + pos: 72.5,60.5 parent: 2 - - uid: 6236 + - uid: 4948 components: - type: Transform - pos: 51.5,46.5 + pos: 72.5,59.5 parent: 2 - - uid: 6237 + - uid: 4949 components: - type: Transform - pos: 66.5,36.5 + pos: 72.5,58.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6238 + - uid: 4950 components: - type: Transform - pos: 33.5,18.5 + pos: 72.5,57.5 parent: 2 - - uid: 6239 + - uid: 4951 components: - type: Transform - pos: 46.5,15.5 + pos: 72.5,56.5 parent: 2 - - uid: 6527 + - uid: 4952 components: - type: Transform - pos: 19.5,15.5 + pos: 72.5,55.5 parent: 2 - - uid: 18782 + - uid: 4953 components: - type: Transform - pos: 12.5,1.5 - parent: 16504 - - uid: 21203 + pos: 71.5,55.5 + parent: 2 + - uid: 4954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,41.5 + pos: 70.5,55.5 parent: 2 - - uid: 21872 + - uid: 4955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-6.5 + pos: 69.5,55.5 parent: 2 - - uid: 21874 + - uid: 4956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,2.5 + pos: 69.5,54.5 parent: 2 -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 6241 + - uid: 4957 components: - type: Transform - pos: 56.5,46.5 + pos: 69.5,53.5 parent: 2 - - uid: 6242 + - uid: 4958 components: - type: Transform - pos: 63.5,46.5 + pos: 69.5,52.5 parent: 2 - - uid: 6243 + - uid: 4959 components: - type: Transform - pos: 13.5,-17.5 + pos: 68.5,52.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6244 - - uid: 6245 + - uid: 4960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,29.5 + pos: 67.5,52.5 parent: 2 - - uid: 6246 + - uid: 4962 components: - type: Transform - pos: 46.5,40.5 + pos: 44.5,55.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6247 - - uid: 6250 + - uid: 4963 components: - type: Transform - pos: 20.5,-13.5 + pos: 43.5,55.5 parent: 2 - - uid: 6251 + - uid: 4964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,6.5 + pos: 56.5,37.5 parent: 2 - - uid: 6252 + - uid: 4965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-0.5 + pos: 28.5,53.5 parent: 2 - - uid: 6253 + - uid: 4966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 + pos: 21.5,53.5 parent: 2 -- proto: ClosetWallOrange - entities: - - uid: 6254 + - uid: 4969 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,39.5 + pos: 22.5,53.5 parent: 2 - - uid: 6255 + - uid: 4970 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,39.5 + pos: 19.5,53.5 parent: 2 -- proto: ClothingBackpackDuffelSecurity - entities: - - uid: 9591 + - uid: 4971 components: - type: Transform - pos: 73.48328,2.7752597 + pos: 19.5,54.5 parent: 2 -- proto: ClothingBackpackDuffelSyndicateCostumeClown - entities: - - uid: 18783 + - uid: 4975 components: - type: Transform - pos: 14.404769,12.570326 - parent: 16504 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null -- proto: ClothingBackpackDuffelSyndicateHardsuitBundle - entities: - - uid: 18784 + pos: 26.5,53.5 + parent: 2 + - uid: 4977 components: - type: Transform - pos: -12.457862,19.483456 - parent: 16504 -- proto: ClothingBackpackDuffelSyndicateMedicalBundleFilled - entities: - - uid: 18785 + pos: 37.5,57.5 + parent: 2 + - uid: 4979 components: - type: Transform - pos: -24.55205,27.644543 - parent: 16504 -- proto: ClothingBackpackDuffelSyndicatePyjamaBundle - entities: - - uid: 18786 + pos: 31.5,57.5 + parent: 2 + - uid: 4989 components: - type: Transform - pos: 13.514144,12.617201 - parent: 16504 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]90%[/color]. - priority: 0 - component: Armor - - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null -- proto: ClothingBackpackERTClown - entities: - - uid: 21382 + pos: 10.5,31.5 + parent: 2 + - uid: 4990 components: - type: Transform - pos: 9.470834,53.540657 + pos: 10.5,33.5 parent: 2 -- proto: ClothingBeltHolster - entities: - - uid: 18787 + - uid: 4991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.307487,15.34438 - parent: 16504 - - uid: 18788 + pos: 11.5,33.5 + parent: 2 + - uid: 4993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.713737,17.440313 - parent: 16504 - - uid: 18789 + pos: 12.5,33.5 + parent: 2 + - uid: 4994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.166862,17.283901 - parent: 16504 -- proto: ClothingBeltMercWebbing - entities: - - uid: 6197 + pos: 12.5,34.5 + parent: 2 + - uid: 4995 components: - type: Transform - parent: 6196 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltMilitaryWebbing - entities: - - uid: 18791 + pos: 12.5,35.5 + parent: 2 + - uid: 4996 components: - type: Transform - parent: 18790 - - type: Physics - canCollide: False - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]50%[/color]. - priority: 0 - component: Armor - title: null - - type: InsideEntityStorage -- proto: ClothingBeltSyndieHolster - entities: - - uid: 18800 + pos: 12.5,36.5 + parent: 2 + - uid: 4997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.198112,15.313098 - parent: 16504 -- proto: ClothingBeltUtilityEngineering - entities: - - uid: 6256 + pos: 12.5,37.5 + parent: 2 + - uid: 4998 components: - type: Transform - pos: 42.063076,61.55474 + pos: 13.5,37.5 parent: 2 - - uid: 6257 + - uid: 4999 components: - type: Transform - pos: 41.42245,61.507866 + pos: 14.5,37.5 parent: 2 - - uid: 6258 + - uid: 5000 components: - type: Transform - pos: 43.42245,61.539116 + pos: 15.5,37.5 parent: 2 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 6259 + - uid: 5001 components: - type: Transform - pos: 5.5230856,5.52925 + pos: 16.5,37.5 parent: 2 - - uid: 6260 + - uid: 5002 components: - type: Transform - pos: 24.45313,-2.7809253 + pos: 17.5,37.5 parent: 2 - - uid: 6261 + - uid: 5003 components: - type: Transform - pos: 66.57255,37.601162 + pos: 18.5,37.5 parent: 2 -- proto: ClothingEyesGlasses - entities: - - uid: 6262 + - uid: 5004 components: - type: Transform - pos: 23.62776,-4.2432847 + pos: 19.5,37.5 parent: 2 - - uid: 18801 + - uid: 5005 components: - type: Transform - pos: 4.4964066,3.008483 - parent: 16504 -- proto: ClothingEyesGlassesGarOrange - entities: - - uid: 1020 + pos: 20.5,37.5 + parent: 2 + - uid: 5010 components: - type: Transform - parent: 1018 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6264 + pos: 70.5,52.5 + parent: 2 + - uid: 5011 components: - type: Transform - pos: 14.281388,57.640034 + pos: 71.5,52.5 parent: 2 -- proto: ClothingEyesGlassesMercenary - entities: - - uid: 6265 + - uid: 5012 components: - type: Transform - pos: 60.531227,67.49286 + pos: 71.5,51.5 parent: 2 -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 6266 + - uid: 5013 components: - type: Transform - rot: 12.566370614359172 rad - pos: 57.39527,18.646889 + pos: 71.5,50.5 parent: 2 - - uid: 6267 + - uid: 5014 components: - type: Transform - pos: 92.50596,19.435198 + pos: 71.5,49.5 parent: 2 -- proto: ClothingEyesHudMedical - entities: - - uid: 6268 + - uid: 5015 components: - type: Transform - pos: 34.483902,9.726351 + pos: 71.5,48.5 parent: 2 - - uid: 6269 + - uid: 5016 components: - type: Transform - pos: 47.436104,9.5062 + pos: 71.5,47.5 parent: 2 -- proto: ClothingEyesHudMedSec - entities: - - uid: 6270 + - uid: 5017 components: - type: Transform - pos: 75.63416,7.4752283 + pos: 71.5,46.5 parent: 2 -- proto: ClothingEyesHudSyndicate - entities: - - uid: 18802 + - uid: 5018 components: - type: Transform - pos: -18.156078,32.72587 - parent: 16504 -- proto: ClothingHandsGlovesBoxingGreen - entities: - - uid: 6605 + pos: 71.5,45.5 + parent: 2 + - uid: 5019 components: - type: Transform - pos: 0.2772286,30.85181 + pos: 71.5,44.5 parent: 2 -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 13884 + - uid: 5020 components: - type: Transform - pos: 0.5272286,30.867435 + pos: 71.5,43.5 parent: 2 -- proto: ClothingHandsGlovesBoxingRigged - entities: - - uid: 15429 + - uid: 5021 components: - type: Transform - pos: 0.5584786,30.85181 + pos: 71.5,42.5 parent: 2 -- proto: ClothingHandsGlovesBoxingYellow - entities: - - uid: 12965 + - uid: 5022 components: - type: Transform - pos: 0.6678536,30.867435 + pos: 71.5,41.5 parent: 2 -- proto: ClothingHandsGlovesColorGray - entities: - - uid: 6271 + - uid: 5023 components: - type: Transform - pos: 34.354034,-10.469314 + pos: 71.5,40.5 parent: 2 -- proto: ClothingHandsGlovesColorWhite - entities: - - uid: 6272 + - uid: 5024 components: - type: Transform - pos: 50.501118,-1.91307 + pos: 71.5,38.5 parent: 2 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 6194 + - uid: 5025 components: - type: Transform - parent: 6193 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6205 + pos: 71.5,37.5 + parent: 2 + - uid: 5026 components: - type: Transform - parent: 6204 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6244 + pos: 71.5,36.5 + parent: 2 + - uid: 5027 components: - type: Transform - parent: 6243 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6247 + pos: 71.5,35.5 + parent: 2 + - uid: 5028 components: - type: Transform - parent: 6246 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6273 + pos: 71.5,34.5 + parent: 2 + - uid: 5029 components: - type: Transform - pos: 9.456325,-10.455032 + pos: 71.5,33.5 parent: 2 - - uid: 6274 + - uid: 5030 components: - type: Transform - pos: 67.400276,37.601162 + pos: 71.5,32.5 parent: 2 - - uid: 6275 + - uid: 5031 components: - type: Transform - pos: 50.484264,-17.601654 + pos: 72.5,32.5 parent: 2 - - uid: 6277 + - uid: 5032 components: - type: Transform - parent: 6276 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6278 + pos: 73.5,32.5 + parent: 2 + - uid: 5033 components: - type: Transform - parent: 6276 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6279 + pos: 74.5,32.5 + parent: 2 + - uid: 5034 components: - type: Transform - pos: 13.51267,83.507416 + pos: 75.5,32.5 parent: 2 - - uid: 6280 + - uid: 5035 components: - - type: MetaData - name: резиновые перчатки - type: Transform - pos: 57.43824,36.32387 + pos: 76.5,32.5 parent: 2 - - uid: 6281 + - uid: 5036 components: - type: Transform - pos: 43.579124,62.01142 + pos: 77.5,32.5 parent: 2 - - uid: 18803 + - uid: 5037 components: - type: Transform - pos: -17.37787,27.592934 - parent: 16504 -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 6282 + pos: 78.5,32.5 + parent: 2 + - uid: 5038 components: - type: Transform - pos: 22.532297,59.584183 + pos: 79.5,32.5 parent: 2 - - uid: 6283 + - uid: 5039 components: - type: Transform - pos: 22.3733,59.400726 + pos: 79.5,31.5 parent: 2 -- proto: ClothingHandsGlovesCombat - entities: - - uid: 18792 + - uid: 5040 components: - type: Transform - parent: 18790 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHandsGlovesFingerless - entities: - - uid: 21966 + pos: 79.5,30.5 + parent: 2 + - uid: 5041 components: - - type: MetaData - desc: Простые чёрные перчатки с обрезанными пальцами для тяжёлой работы в баре. - name: перчатки бармена - type: Transform - pos: 15.778067,53.856155 + pos: 79.5,29.5 parent: 2 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 6284 + - uid: 5042 components: - type: Transform - pos: 62.46939,24.61248 + pos: 27.5,-15.5 parent: 2 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 6285 + - uid: 5053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.43122,-5.426195 + pos: 31.5,17.5 parent: 2 - - uid: 6286 + - uid: 5054 components: - type: Transform - pos: 49.615623,-8.528999 + pos: 78.5,65.5 parent: 2 -- proto: ClothingHandsTacticalMaidGloves - entities: - - uid: 18804 + - uid: 5055 components: - type: Transform - pos: 12.503679,27.683414 - parent: 16504 -- proto: ClothingHeadBandMerc - entities: - - uid: 6189 + pos: 77.5,65.5 + parent: 2 + - uid: 5056 components: - type: Transform - parent: 6188 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadFishCap - entities: - - uid: 6287 + pos: 76.5,65.5 + parent: 2 + - uid: 5057 components: - type: Transform - pos: 13.741001,-16.631462 + pos: 75.5,65.5 parent: 2 -- proto: ClothingHeadHatBeretEngineering - entities: - - uid: 6288 + - uid: 5058 components: - type: Transform - pos: 40.486477,62.434555 + pos: 74.5,65.5 parent: 2 -- proto: ClothingHeadHatBeretHoS - entities: - - uid: 21965 + - uid: 5059 components: - - type: MetaData - name: барменский берет - type: Transform - pos: 15.905829,53.45934 + pos: 73.5,65.5 parent: 2 -- proto: ClothingHeadHatBeretMerc - entities: - - uid: 6289 + - uid: 5060 components: - type: Transform - pos: 31.433079,62.620743 + pos: 42.5,11.5 parent: 2 -- proto: ClothingHeadHatChef - entities: - - uid: 21633 + - uid: 5061 components: - type: Transform - pos: 31.554855,53.63781 + pos: 46.5,33.5 parent: 2 -- proto: ClothingHeadHatCone - entities: - - uid: 18805 + - uid: 5062 components: - type: Transform - pos: -3.61898,33.47885 - parent: 16504 - - uid: 18806 + pos: 61.5,50.5 + parent: 2 + - uid: 5063 components: - type: Transform - pos: -4.134605,35.681976 - parent: 16504 - - uid: 18807 + pos: 59.5,49.5 + parent: 2 + - uid: 5064 components: - type: Transform - pos: -3.384605,34.713226 - parent: 16504 - - uid: 18808 + pos: 57.5,45.5 + parent: 2 + - uid: 5065 components: - type: Transform - pos: -4.509605,32.775726 - parent: 16504 -- proto: ClothingHeadHatCowboyBlack - entities: - - uid: 18809 + pos: 58.5,45.5 + parent: 2 + - uid: 5066 components: - type: Transform - pos: 27.355827,17.794287 - parent: 16504 -- proto: ClothingHeadHatCowboyBountyHunter - entities: - - uid: 18810 + pos: 59.5,45.5 + parent: 2 + - uid: 5067 components: - type: Transform - pos: 30.573112,15.688489 - parent: 16504 -- proto: ClothingHeadHatCowboyBrown - entities: - - uid: 18811 + pos: 66.5,45.5 + parent: 2 + - uid: 5068 components: - type: Transform - pos: 30.574577,17.82557 - parent: 16504 -- proto: ClothingHeadHatCowboyWhite - entities: - - uid: 18812 + pos: 66.5,44.5 + parent: 2 + - uid: 5069 components: - type: Transform - pos: 27.277702,15.729636 - parent: 16504 -- proto: ClothingHeadHatFedoraGrey - entities: - - uid: 6290 + pos: 66.5,43.5 + parent: 2 + - uid: 5070 components: - type: Transform - pos: 38.86763,-26.283337 + pos: 66.5,42.5 parent: 2 -- proto: ClothingHeadHatFlowerWreath - entities: - - uid: 6291 + - uid: 5071 components: - type: Transform - pos: 25.506002,9.444837 + pos: 9.5,33.5 parent: 2 -- proto: ClothingHeadHatHardhatWhite - entities: - - uid: 3621 + - uid: 5072 components: - type: Transform - parent: 3620 - - type: HandheldLight - toggleActionEntity: 3622 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 3622 - - type: Physics - canCollide: False - - type: ActionsContainer -- proto: ClothingHeadHatHoodCulthood - entities: - - uid: 6292 + pos: 5.5,33.5 + parent: 2 + - uid: 5073 components: - type: Transform - pos: 26.200455,60.865936 + pos: 6.5,33.5 parent: 2 -- proto: ClothingHeadHatPwig - entities: - - uid: 6293 + - uid: 5074 components: - type: Transform - pos: 7.497837,20.988586 + pos: 9.5,32.5 parent: 2 -- proto: ClothingHeadHatSecsoft - entities: - - uid: 13016 + - uid: 5075 components: - type: Transform - pos: 74.59439,2.733593 + pos: 9.5,31.5 parent: 2 -- proto: ClothingHeadHatSurgcapBlue - entities: - - uid: 6295 + - uid: 5076 components: - type: Transform - pos: 50.4608,-2.1060705 + pos: 3.5,33.5 parent: 2 -- proto: ClothingHeadHatSurgcapGreen - entities: - - uid: 6296 + - uid: 5077 components: - type: Transform - pos: 50.30455,-2.0435705 + pos: -0.5,35.5 parent: 2 -- proto: ClothingHeadHatSurgcapPurple - entities: - - uid: 6297 + - uid: 5078 components: - type: Transform - pos: 50.663925,-2.0279455 + pos: -0.5,34.5 parent: 2 -- proto: ClothingHeadHatSyndie - entities: - - uid: 18813 + - uid: 5079 components: - type: Transform - pos: 4.4768877,4.1803656 - parent: 16504 - - uid: 18814 + pos: -0.5,33.5 + parent: 2 + - uid: 5080 components: - type: Transform - pos: 17.332552,31.8152 - parent: 16504 -- proto: ClothingHeadHatSyndieMAA - entities: - - uid: 18815 + pos: 0.5,33.5 + parent: 2 + - uid: 5081 components: - type: Transform - pos: 31.56821,16.477133 - parent: 16504 -- proto: ClothingHeadHatTacticalMaidHeadband - entities: - - uid: 18816 + pos: 1.5,33.5 + parent: 2 + - uid: 5082 components: - type: Transform - pos: 12.066179,27.797998 - parent: 16504 -- proto: ClothingHeadHatWelding - entities: - - uid: 6298 + pos: 7.5,33.5 + parent: 2 + - uid: 5083 components: - type: Transform - pos: 24.37915,-6.5086684 + pos: 4.5,33.5 parent: 2 -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 6299 + - uid: 5084 components: - type: Transform - pos: 42.281483,62.252415 + pos: 8.5,33.5 parent: 2 -- proto: ClothingHeadHatWeldingMaskFlameBlue - entities: - - uid: 6300 + - uid: 5085 components: - type: Transform - pos: 42.804745,62.244175 + pos: 44.5,57.5 parent: 2 -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 6301 + - uid: 5086 components: - type: Transform - pos: 33.603825,17.577902 + pos: 56.5,41.5 parent: 2 - - uid: 6302 + - uid: 5087 components: - type: Transform - pos: 30.53649,-1.4449949 + pos: 43.5,60.5 parent: 2 - - uid: 6303 + - uid: 5088 components: - type: Transform - pos: 2.5762463,20.667091 + pos: 57.5,38.5 parent: 2 -- proto: ClothingHeadHelmetAtmosFire - entities: - - uid: 42 + - uid: 5094 components: - type: Transform - parent: 41 - - type: HandheldLight - toggleActionEntity: 43 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 43 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: InsideEntityStorage - - uid: 6164 + pos: 41.5,20.5 + parent: 2 + - uid: 5097 components: - type: Transform - parent: 6163 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21436 + pos: 59.5,48.5 + parent: 2 + - uid: 5098 components: - type: Transform - parent: 21435 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHelmetHardsuitLing - entities: - - uid: 18817 + pos: 40.5,3.5 + parent: 2 + - uid: 5099 components: - type: Transform - pos: 29.000786,16.412971 - parent: 16504 -- proto: ClothingHeadHelmetHardsuitPirateEVA - entities: - - uid: 6304 + pos: 58.5,47.5 + parent: 2 + - uid: 5100 components: - type: Transform - pos: 59.294624,34.75396 + pos: 59.5,47.5 parent: 2 -- proto: ClothingHeadHelmetMerc - entities: - - uid: 298 + - uid: 5101 components: - type: Transform - parent: 297 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHelmetRiot - entities: - - uid: 6305 + pos: 57.5,36.5 + parent: 2 + - uid: 5102 components: - type: Transform - pos: 60.388313,30.538012 + pos: 49.5,-1.5 parent: 2 - - uid: 6306 + - uid: 5103 components: - type: Transform - pos: 60.825813,30.569262 + pos: 57.5,37.5 parent: 2 - - uid: 6307 + - uid: 5104 components: - type: Transform - pos: 60.43519,30.647387 + pos: 42.5,4.5 parent: 2 -- proto: ClothingHeadPyjamaSyndicateBlack - entities: - - uid: 6308 + - uid: 5105 components: - type: Transform - pos: 74.30056,52.60349 + pos: 43.5,2.5 parent: 2 - - uid: 6309 + - uid: 5106 components: - type: Transform - pos: 79.597435,52.587864 + pos: 41.5,60.5 parent: 2 -- proto: ClothingHeadPyjamaSyndicatePink - entities: - - uid: 22225 + - uid: 5107 components: - type: Transform - pos: 75.36306,52.60349 + pos: 40.5,60.5 parent: 2 -- proto: ClothingHeadPyjamaSyndicateRed - entities: - - uid: 6310 + - uid: 5109 components: - type: Transform - pos: 78.659935,52.587864 + pos: 56.5,17.5 parent: 2 - - uid: 6311 + - uid: 5111 components: - type: Transform - pos: 76.159935,52.556614 + pos: 45.5,17.5 parent: 2 -- proto: ClothingHeadRastaHat - entities: - - uid: 6313 + - uid: 5113 components: - type: Transform - parent: 6312 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6324 + pos: 37.5,5.5 + parent: 2 + - uid: 5114 components: - type: Transform - parent: 6323 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadSafari - entities: - - uid: 6335 + pos: 37.5,8.5 + parent: 2 + - uid: 5115 components: - type: Transform - pos: 76.664085,41.62112 + pos: 47.5,64.5 parent: 2 - - uid: 6337 + - uid: 5116 components: - type: Transform - parent: 6336 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskBat - entities: - - uid: 6340 + pos: 42.5,60.5 + parent: 2 + - uid: 5117 components: - type: Transform - pos: 17.59206,58.483574 + pos: 47.5,73.5 parent: 2 -- proto: ClothingMaskBear - entities: - - uid: 6341 + - uid: 5118 components: - type: Transform - pos: 19.631271,58.63034 + pos: 45.5,-4.5 parent: 2 -- proto: ClothingMaskBreath - entities: - - uid: 9311 + - uid: 5120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.338516,41.444668 + pos: 56.5,3.5 parent: 2 -- proto: ClothingMaskBreathMedicalSecurity - entities: - - uid: 3624 + - uid: 5121 components: - type: Transform - parent: 3620 - - type: Physics - canCollide: False -- proto: ClothingMaskClownBanana - entities: - - uid: 6342 + pos: 58.5,3.5 + parent: 2 + - uid: 5124 components: - type: Transform - pos: 6.4835777,27.743755 + pos: 36.5,2.5 parent: 2 - - uid: 21379 + - uid: 5126 components: - type: Transform - rot: -0.5585053606381855 rad - pos: 10.540007,52.292866 + pos: 50.5,-0.5 parent: 2 -- proto: ClothingMaskClownSecurity - entities: - - uid: 21376 + - uid: 5127 components: - type: Transform - pos: 9.480936,52.167175 + pos: 38.5,71.5 parent: 2 -- proto: ClothingMaskFox - entities: - - uid: 6343 + - uid: 5128 components: - type: Transform - pos: 19.744646,57.749737 + pos: 38.5,70.5 parent: 2 -- proto: ClothingMaskGas - entities: - - uid: 6344 + - uid: 5130 components: - type: Transform - pos: 21.553486,59.559723 + pos: 43.5,65.5 parent: 2 - - uid: 6345 + - uid: 5131 components: - type: Transform - pos: 21.712484,59.388496 + pos: 45.5,65.5 parent: 2 - - uid: 6346 + - uid: 5132 components: - type: Transform - pos: 3.5074286,23.750195 + pos: 45.5,1.5 parent: 2 - - uid: 6347 + - uid: 5133 components: - type: Transform - pos: 3.8376546,23.737963 + pos: 45.5,20.5 parent: 2 - - uid: 6348 + - uid: 5134 components: - type: Transform - pos: 34.33841,-10.234939 + pos: 40.5,23.5 parent: 2 -- proto: ClothingMaskGasAtmos - entities: - - uid: 45 + - uid: 5135 components: - type: Transform - parent: 41 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21438 + pos: 39.5,23.5 + parent: 2 + - uid: 5136 components: - type: Transform - parent: 21435 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskGasMerc - entities: - - uid: 6199 + pos: 47.5,74.5 + parent: 2 + - uid: 5137 components: - type: Transform - parent: 6198 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskGasSwat - entities: - - uid: 18818 + pos: 41.5,17.5 + parent: 2 + - uid: 5138 components: - type: Transform - pos: 17.439287,23.77244 - parent: 16504 -- proto: ClothingMaskGasSyndicate - entities: - - uid: 18793 + pos: 55.5,7.5 + parent: 2 + - uid: 5139 components: - type: Transform - parent: 18790 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskJackal - entities: - - uid: 6349 + pos: 38.5,23.5 + parent: 2 + - uid: 5140 components: - type: Transform - pos: 19.365498,57.517357 + pos: 41.5,23.5 parent: 2 -- proto: ClothingMaskMime - entities: - - uid: 794 + - uid: 5141 components: - type: Transform - pos: 42.39886,-26.56465 + pos: 58.5,42.5 parent: 2 -- proto: ClothingMaskRat - entities: - - uid: 6350 + - uid: 5142 components: - type: Transform - pos: 19.316273,58.45911 + pos: 42.5,1.5 parent: 2 -- proto: ClothingMaskSadMime - entities: - - uid: 878 + - uid: 5143 components: - type: Transform - pos: 42.58118,-26.477844 + pos: 44.5,65.5 parent: 2 -- proto: ClothingMaskScaredMime - entities: - - uid: 3619 + - uid: 5144 components: - type: Transform - pos: 37.787437,-27.498219 + pos: 37.5,7.5 parent: 2 -- proto: ClothingMaskSexyClown - entities: - - uid: 21378 + - uid: 5145 components: - type: Transform - rot: 0.7330382858376184 rad - pos: 9.958323,52.86578 + pos: 37.5,10.5 parent: 2 -- proto: ClothingMaskSexyMime - entities: - - uid: 879 + - uid: 5146 components: - type: Transform - pos: 42.48568,-26.616734 + pos: 45.5,-1.5 parent: 2 -- proto: ClothingNeckCloakEnby - entities: - - uid: 1049 + - uid: 5147 components: - type: Transform - parent: 1046 - - type: Physics - canCollide: False -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 6351 + pos: 45.5,-3.5 + parent: 2 + - uid: 5148 components: - type: Transform - pos: 8.468073,31.619415 + pos: 45.5,-2.5 parent: 2 -- proto: ClothingNeckCloakMoth - entities: - - uid: 6352 + - uid: 5149 components: - type: Transform - pos: 15.479309,6.567212 + pos: 45.5,-5.5 parent: 2 -- proto: ClothingNeckCloakPirateCap - entities: - - uid: 6353 + - uid: 5150 components: - type: Transform - pos: 52.520966,90.51462 + pos: 37.5,5.5 parent: 2 -- proto: ClothingNeckEchoPin - entities: - - uid: 6354 + - uid: 5151 components: - type: Transform - pos: 24.702053,26.742117 + pos: 58.5,38.5 parent: 2 -- proto: ClothingNeckElysiumPin - entities: - - uid: 6355 + - uid: 5152 components: - type: Transform - pos: 83.4391,33.431293 + pos: 58.5,41.5 parent: 2 -- proto: ClothingNeckMainPin - entities: - - uid: 6356 + - uid: 5153 components: - type: Transform - pos: 35.855328,79.22577 + pos: 60.5,40.5 parent: 2 -- proto: ClothingNeckMantleHOP - entities: - - uid: 6357 + - uid: 5154 components: - type: Transform - pos: 20.471823,16.401287 + pos: 45.5,-6.5 parent: 2 -- proto: ClothingNeckMedicalmedal - entities: - - uid: 18819 + - uid: 5155 components: - type: Transform - pos: 10.772202,35.979652 - parent: 16504 -- proto: ClothingNeckNakamuraPin - entities: - - uid: 6358 + pos: 45.5,-0.5 + parent: 2 + - uid: 5156 components: - type: Transform - pos: 52.480534,69.52751 + pos: 37.5,6.5 parent: 2 -- proto: ClothingNeckNanoTrasenPin - entities: - - uid: 6360 + - uid: 5157 components: - type: Transform - parent: 6359 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckNebulaPin - entities: - - uid: 6361 + pos: 37.5,11.5 + parent: 2 + - uid: 5158 components: - type: Transform - pos: 54.761436,20.663277 + pos: 48.5,-1.5 parent: 2 -- proto: ClothingNeckNovaPin - entities: - - uid: 6362 + - uid: 5159 components: - type: Transform - pos: 34.313705,10.133865 + pos: 51.5,-0.5 parent: 2 -- proto: ClothingNeckScarfStripedLightBlue - entities: - - uid: 6363 + - uid: 5160 components: - type: Transform - pos: 47.64092,-0.4029454 + pos: 49.5,-0.5 parent: 2 - - uid: 6364 + - uid: 5161 components: - type: Transform - pos: 47.281544,-0.4341954 + pos: 37.5,2.5 parent: 2 -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 6365 + - uid: 5162 components: - type: Transform - rot: -4.440892098500626E-16 rad - pos: 15.408881,8.476004 + pos: 53.5,36.5 parent: 2 -- proto: ClothingNeckScarfStripedZebra - entities: - - uid: 3625 + - uid: 5163 components: - type: Transform - parent: 3620 - - type: Physics - canCollide: False -- proto: ClothingNeckSolarisPin - entities: - - uid: 6366 + pos: 41.5,71.5 + parent: 2 + - uid: 5164 components: - type: Transform - pos: 21.559338,10.585672 + pos: 22.5,10.5 parent: 2 -- proto: ClothingNeckSyndicakePin - entities: - - uid: 18820 + - uid: 5165 components: - type: Transform - pos: 11.497106,-4.5504894 - parent: 16504 - - uid: 18821 + pos: 42.5,71.5 + parent: 2 + - uid: 5166 components: - type: Transform - pos: -10.55763,18.631758 - parent: 16504 -- proto: ClothingNeckTieDet - entities: - - uid: 1024 + pos: 59.5,38.5 + parent: 2 + - uid: 5167 components: - type: Transform - parent: 1021 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterApronBotanist - entities: - - uid: 6367 + pos: 51.5,66.5 + parent: 2 + - uid: 5168 components: - type: Transform - pos: 67.63592,26.664513 + pos: 47.5,61.5 parent: 2 -- proto: ClothingOuterApronChef - entities: - - uid: 21634 + - uid: 5169 components: - type: Transform - pos: 31.568745,53.59614 + pos: 47.5,62.5 parent: 2 -- proto: ClothingOuterArmorBasic - entities: - - uid: 18794 + - uid: 5170 components: - type: Transform - parent: 18790 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterArmorRiot - entities: - - uid: 6368 + pos: 38.5,3.5 + parent: 2 + - uid: 5171 components: - type: Transform - pos: 60.27894,30.491137 + pos: 37.5,3.5 parent: 2 - - uid: 6369 + - uid: 5172 components: - type: Transform - pos: 60.40394,30.366137 + pos: 47.5,-1.5 parent: 2 - - uid: 6370 + - uid: 5173 components: - type: Transform - pos: 60.71644,30.428637 + pos: 43.5,1.5 parent: 2 -- proto: ClothingOuterCoatDetective - entities: - - uid: 1025 + - uid: 5174 components: - type: Transform - parent: 1021 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitLing - entities: - - uid: 18822 + pos: 59.5,-0.5 + parent: 2 + - uid: 5175 components: - type: Transform - pos: 28.991083,16.272346 - parent: 16504 -- proto: ClothingOuterHardsuitPirateEVA - entities: - - uid: 6371 - components: - - type: Transform - pos: 59.200874,34.59771 + pos: 41.5,66.5 parent: 2 -- proto: ClothingOuterHospitalGown - entities: - - uid: 6372 + - uid: 5176 components: - type: Transform - pos: 56.309563,0.40051258 + pos: 40.5,66.5 parent: 2 - - uid: 6373 + - uid: 5177 components: - type: Transform - pos: 56.309563,-0.6619874 + pos: 59.5,40.5 parent: 2 -- proto: ClothingOuterRobesCult - entities: - - uid: 6374 + - uid: 5179 components: - type: Transform - pos: 26.211544,60.568512 + pos: 52.5,66.5 parent: 2 -- proto: ClothingOuterStraightjacket - entities: - - uid: 6375 + - uid: 5180 components: - type: Transform - pos: 64.45278,5.8528533 + pos: 60.5,38.5 parent: 2 -- proto: ClothingOuterSuitAtmosFire - entities: - - uid: 46 + - uid: 5181 components: - type: Transform - parent: 41 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6165 + pos: 60.5,38.5 + parent: 2 + - uid: 5182 components: - type: Transform - parent: 6163 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21440 + pos: 57.5,47.5 + parent: 2 + - uid: 5183 components: - type: Transform - parent: 21435 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterSuitCarp - entities: - - uid: 6376 + pos: 38.5,24.5 + parent: 2 + - uid: 5184 components: - type: Transform - pos: 14.386289,-15.17385 + pos: 53.5,37.5 parent: 2 -- proto: ClothingOuterSuitChicken - entities: - - uid: 6377 + - uid: 5185 components: - type: Transform - pos: 39.446163,69.45595 + pos: 52.5,41.5 parent: 2 -- proto: ClothingOuterSuitEmergency - entities: - - uid: 5577 + - uid: 5186 components: - type: Transform - pos: 42.525246,-27.44219 + pos: 53.5,38.5 parent: 2 - - uid: 6937 + - uid: 5187 components: - type: Transform - pos: 9.616911,50.62052 + pos: 60.5,39.5 parent: 2 - - uid: 16327 + - uid: 5188 components: - type: Transform - pos: 15.536522,-38.48124 + pos: 56.5,42.5 parent: 2 -- proto: ClothingOuterWinterAtmos - entities: - - uid: 47 + - uid: 5189 components: - type: Transform - parent: 41 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterMime - entities: - - uid: 3623 + pos: 52.5,38.5 + parent: 2 + - uid: 5190 components: - type: Transform - parent: 3620 - - type: Physics - canCollide: False -- proto: ClothingOuterWinterSec - entities: - - uid: 6378 + pos: 37.5,67.5 + parent: 2 + - uid: 5191 components: - type: Transform - pos: 77.5489,7.4908533 + pos: 70.5,39.5 parent: 2 -- proto: ClothingShoesBling - entities: - - uid: 6379 + - uid: 5192 components: - type: Transform - pos: 6.4835777,27.57188 + pos: 45.5,57.5 parent: 2 -- proto: ClothingShoesBootsCombat - entities: - - uid: 18795 + - uid: 5193 components: - type: Transform - parent: 18790 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesBootsCowboyBlack - entities: - - uid: 18823 + pos: 54.5,41.5 + parent: 2 + - uid: 5194 components: - type: Transform - pos: 27.308952,17.199917 - parent: 16504 -- proto: ClothingShoesBootsCowboyBrown - entities: - - uid: 18824 + pos: 53.5,41.5 + parent: 2 + - uid: 5195 components: - type: Transform - pos: 30.574577,17.278126 - parent: 16504 -- proto: ClothingShoesBootsCowboyFancy - entities: - - uid: 18825 + pos: 75.5,5.5 + parent: 2 + - uid: 5196 components: - type: Transform - pos: 30.510612,15.266174 - parent: 16504 -- proto: ClothingShoesBootsCowboyWhite - entities: - - uid: 18826 + pos: 46.5,-1.5 + parent: 2 + - uid: 5197 components: - type: Transform - pos: 27.543327,15.448093 - parent: 16504 -- proto: ClothingShoesBootsMag - entities: - - uid: 6381 + pos: 59.5,-1.5 + parent: 2 + - uid: 5198 components: - type: Transform - parent: 6380 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6383 + pos: 44.5,1.5 + parent: 2 + - uid: 5199 components: - type: Transform - parent: 6382 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6385 + pos: 59.5,-2.5 + parent: 2 + - uid: 5200 components: - type: Transform - parent: 6384 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesBootsMercFilled - entities: - - uid: 6386 + pos: 59.5,7.5 + parent: 2 + - uid: 5201 components: - type: Transform - pos: 1.6860552,37.71367 + pos: 59.5,3.5 parent: 2 -- proto: ClothingShoesChameleonNoSlips - entities: - - uid: 48 + - uid: 5202 components: - type: Transform - parent: 41 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesClownLarge - entities: - - uid: 1026 + pos: 60.5,7.5 + parent: 2 + - uid: 5203 components: - type: Transform - parent: 1021 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesColorBlack - entities: - - uid: 6388 + pos: 58.5,7.5 + parent: 2 + - uid: 5204 components: - type: Transform - parent: 6387 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6389 + pos: 59.5,0.5 + parent: 2 + - uid: 5205 components: - type: Transform - parent: 6387 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6390 + pos: 57.5,7.5 + parent: 2 + - uid: 5206 components: - type: Transform - parent: 6387 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6391 + pos: 59.5,2.5 + parent: 2 + - uid: 5207 components: - type: Transform - parent: 6387 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesCult - entities: - - uid: 6396 + pos: 59.5,1.5 + parent: 2 + - uid: 5208 components: - type: Transform - pos: 26.180593,60.12821 + pos: 57.5,3.5 parent: 2 -- proto: ClothingShoesFlippers - entities: - - uid: 6397 + - uid: 5209 components: - type: Transform - pos: 0.50055933,23.601164 + pos: 39.5,67.5 parent: 2 -- proto: ClothingShoesHighheelBoots - entities: - - uid: 18827 + - uid: 5210 components: - type: Transform - pos: 12.439287,28.139019 - parent: 16504 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 6398 + pos: 38.5,67.5 + parent: 2 + - uid: 5211 components: - - type: MetaData - name: тапки-уточки Лаврика - type: Transform - pos: 55.76543,-1.2950953 + pos: 56.5,47.5 parent: 2 - - uid: 6400 + - uid: 5212 components: - type: Transform - parent: 6399 - - type: Physics - canCollide: False -- proto: ClothingShoesSlippers - entities: - - uid: 6404 + pos: 39.5,60.5 + parent: 2 + - uid: 5226 components: - type: Transform - pos: 76.59434,53.742016 + pos: 25.5,64.5 parent: 2 - - uid: 6405 + - uid: 5227 components: - type: Transform - pos: 76.42246,53.94514 + pos: 25.5,65.5 parent: 2 - - uid: 6406 + - uid: 5228 components: - type: Transform - pos: 1.531704,1.3974777 + pos: 25.5,66.5 parent: 2 - - uid: 6407 + - uid: 5229 components: - - type: MetaData - name: тапочки Лаврика - type: Transform - pos: 55.593544,0.305943 + pos: 24.5,66.5 parent: 2 - - uid: 6408 + - uid: 5230 components: - type: Transform - pos: 52.47336,32.836014 + pos: 23.5,66.5 parent: 2 - - uid: 6409 + - uid: 5231 components: - type: Transform - pos: 65.20112,6.182456 + pos: 22.5,66.5 parent: 2 -- proto: ClothingShoesSnakeskinBoots - entities: - - uid: 6410 + - uid: 5232 components: - type: Transform - pos: 60.407978,82.31232 + pos: 21.5,66.5 parent: 2 -- proto: ClothingShoesWizard - entities: - - uid: 6412 + - uid: 5233 components: - - type: MetaData - desc: Кожанные сандалии. Не надевайте их в технических туннелях, пораните пальцы ног. - name: сандалии - type: Transform - parent: 6411 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6414 + pos: 20.5,66.5 + parent: 2 + - uid: 5234 components: - - type: MetaData - desc: Кожанные сандалии. Не надевайте их в технических туннелях, пораните пальцы ног. - name: сандалии - type: Transform - parent: 6413 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUnderSocksCoder - entities: - - uid: 6415 + pos: 19.5,66.5 + parent: 2 + - uid: 5235 components: - type: Transform - pos: 82.5,24.5 + pos: 18.5,66.5 parent: 2 -- proto: ClothingUniformJumpskirtElegantMaid - entities: - - uid: 6417 + - uid: 5236 components: - type: Transform - parent: 6416 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtJanimaidmini - entities: - - uid: 6418 + pos: 17.5,66.5 + parent: 2 + - uid: 5237 components: - type: Transform - pos: 64.39949,48.712254 + pos: 16.5,66.5 parent: 2 -- proto: ClothingUniformJumpskirtLawyerPurple - entities: - - uid: 6420 + - uid: 5238 components: - type: Transform - parent: 6419 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtTacticalMaid - entities: - - uid: 18828 + pos: 15.5,66.5 + parent: 2 + - uid: 5239 components: - type: Transform - pos: 12.680763,26.38133 - parent: 16504 -- proto: ClothingUniformJumpskirtTacticool - entities: - - uid: 18796 + pos: 14.5,66.5 + parent: 2 + - uid: 5240 components: - type: Transform - parent: 18790 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitAtmos - entities: - - uid: 49 + pos: 15.5,67.5 + parent: 2 + - uid: 5241 components: - type: Transform - parent: 41 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitColorGrey - entities: - - uid: 6392 + pos: 16.5,67.5 + parent: 2 + - uid: 5242 components: - type: Transform - parent: 6387 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6393 + pos: 24.5,65.5 + parent: 2 + - uid: 5243 components: - type: Transform - parent: 6387 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6394 + pos: 68.5,39.5 + parent: 2 + - uid: 5244 components: - type: Transform - parent: 6387 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6395 + pos: 67.5,39.5 + parent: 2 + - uid: 5245 components: - type: Transform - parent: 6387 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitJournalist - entities: - - uid: 6422 + pos: 66.5,39.5 + parent: 2 + - uid: 5246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5010295,33.178143 + pos: 66.5,40.5 parent: 2 -- proto: ClothingUniformJumpsuitLawyerPurple - entities: - - uid: 6421 + - uid: 5247 components: - type: Transform - parent: 6419 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitMusician - entities: - - uid: 6423 + pos: 66.5,41.5 + parent: 2 + - uid: 5248 components: - type: Transform - pos: 13.48734,-16.366333 + pos: 54.5,57.5 parent: 2 -- proto: ClothingUniformJumpsuitOperative - entities: - - uid: 18797 + - uid: 5249 components: - type: Transform - parent: 18790 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitReporter - entities: - - uid: 6424 + pos: 55.5,57.5 + parent: 2 + - uid: 5250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.3604045,32.850018 + pos: 55.5,58.5 parent: 2 -- proto: ClothingUniformJumpsuitSafari - entities: - - uid: 6338 + - uid: 5251 components: - type: Transform - parent: 6336 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6339 + pos: 54.5,54.5 + parent: 2 + - uid: 5252 components: - type: Transform - parent: 6336 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformOveralls - entities: - - uid: 6425 + pos: 55.5,54.5 + parent: 2 + - uid: 5253 components: - type: Transform - pos: 68.33097,29.463043 + pos: 46.5,65.5 parent: 2 -- proto: ClownRecorder - entities: - - uid: 6426 + - uid: 5254 components: - type: Transform - pos: 51.558765,38.56774 + pos: 42.5,66.5 parent: 2 -- proto: ClusterBangFull - entities: - - uid: 1059 + - uid: 5255 components: - type: Transform - parent: 1057 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1060 + pos: 42.5,65.5 + parent: 2 + - uid: 5256 components: - type: Transform - parent: 1057 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Cobweb1 - entities: - - uid: 18830 + pos: 47.5,63.5 + parent: 2 + - uid: 5257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,10.5 - parent: 16504 - - uid: 18831 + pos: 47.5,60.5 + parent: 2 + - uid: 5258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,10.5 - parent: 16504 - - uid: 18832 + pos: 48.5,60.5 + parent: 2 + - uid: 5259 components: - type: Transform - pos: -10.5,29.5 - parent: 16504 -- proto: Cobweb2 - entities: - - uid: 18833 + pos: 50.5,73.5 + parent: 2 + - uid: 5260 components: - type: Transform - pos: -6.5,30.5 - parent: 16504 -- proto: CombatKnife - entities: - - uid: 18834 + pos: 47.5,75.5 + parent: 2 + - uid: 5261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.891756,24.104626 - parent: 16504 -- proto: ComfyChair - entities: - - uid: 6427 + pos: 47.5,76.5 + parent: 2 + - uid: 5262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,68.5 + pos: 47.5,77.5 parent: 2 - - uid: 6428 + - uid: 5263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,24.5 + pos: 47.5,78.5 parent: 2 - - uid: 6429 + - uid: 5264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,25.5 + pos: 47.5,79.5 parent: 2 - - uid: 6430 + - uid: 5265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,26.5 + pos: 47.5,80.5 parent: 2 - - uid: 6431 + - uid: 5266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,26.5 + pos: 47.5,81.5 parent: 2 - - uid: 6432 + - uid: 5267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,25.5 + pos: 46.5,81.5 parent: 2 - - uid: 6433 + - uid: 5268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,21.5 + pos: 45.5,81.5 parent: 2 - - uid: 6434 + - uid: 5269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,5.5 + pos: 45.5,80.5 parent: 2 - - uid: 6435 + - uid: 5270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,30.5 + pos: 50.5,81.5 parent: 2 - - uid: 6436 + - uid: 5271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,30.5 + pos: 50.5,80.5 parent: 2 - - uid: 6438 + - uid: 5272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,64.5 + pos: 48.5,72.5 parent: 2 - - uid: 6439 + - uid: 5273 components: - type: Transform - pos: 77.5,42.5 + pos: 49.5,72.5 parent: 2 - - uid: 6440 + - uid: 5274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,24.5 + pos: 50.5,72.5 parent: 2 - - uid: 6441 + - uid: 5275 components: - type: Transform - pos: 36.5,-10.5 + pos: 50.5,73.5 parent: 2 - - uid: 6442 + - uid: 5276 components: - type: Transform - pos: 68.5,7.5 + pos: 40.5,71.5 parent: 2 - - uid: 6443 + - uid: 5277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,20.5 + pos: 39.5,71.5 parent: 2 - - uid: 6444 + - uid: 5278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,20.5 + pos: 45.5,60.5 parent: 2 - - uid: 6445 + - uid: 5279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,68.5 + pos: 44.5,60.5 parent: 2 - - uid: 9845 + - uid: 5280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,41.5 + pos: 46.5,60.5 parent: 2 - - uid: 18835 + - uid: 5281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,4.5 - parent: 16504 - - uid: 18836 + pos: 45.5,0.5 + parent: 2 + - uid: 5282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 16504 - - uid: 18837 + pos: 77.5,5.5 + parent: 2 + - uid: 5283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,16.5 - parent: 16504 - - uid: 18838 + pos: 78.5,5.5 + parent: 2 + - uid: 5284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,16.5 - parent: 16504 - - uid: 21327 + pos: 76.5,5.5 + parent: 2 + - uid: 5285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,41.5 + pos: 48.5,3.5 parent: 2 -- proto: CommandmentCircuitBoard - entities: - - uid: 580 + - uid: 5286 components: - type: Transform - parent: 577 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CommsComputerCircuitboard - entities: - - uid: 6447 + pos: 47.5,3.5 + parent: 2 + - uid: 5287 components: - type: Transform - pos: 57.528862,47.438488 + pos: 46.5,3.5 parent: 2 -- proto: ComputerAlert - entities: - - uid: 6448 + - uid: 5288 components: - type: Transform - pos: 53.5,66.5 + pos: 45.5,3.5 parent: 2 - - uid: 13932 + - uid: 5289 components: - type: Transform - pos: 44.5,70.5 + pos: 45.5,2.5 parent: 2 -- proto: ComputerAnalysisConsole - entities: - - uid: 6449 + - uid: 5290 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 + pos: 47.5,71.5 parent: 2 -- proto: computerBodyScanner - entities: - - uid: 6450 + - uid: 5291 components: - type: Transform - pos: 48.5,-8.5 + pos: 47.5,70.5 parent: 2 -- proto: ComputerBroken - entities: - - uid: 6451 + - uid: 5292 components: - type: Transform - pos: 76.5,11.5 + pos: 47.5,69.5 parent: 2 - - uid: 12076 + - uid: 5834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-5.5 + pos: 20.5,-36.5 parent: 2 - - uid: 12574 + - uid: 5835 components: - type: Transform - pos: 62.5,10.5 + pos: 23.5,-34.5 parent: 2 - - uid: 18839 + - uid: 5836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 16504 - - uid: 18840 + pos: 25.5,-36.5 + parent: 2 + - uid: 5837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 16504 - - uid: 18841 + pos: 19.5,-37.5 + parent: 2 + - uid: 5838 components: - type: Transform - pos: 0.5,21.5 - parent: 16504 - - uid: 18842 + pos: 20.5,-37.5 + parent: 2 + - uid: 5840 components: - type: Transform - pos: 2.5,21.5 - parent: 16504 - - uid: 18843 + pos: 21.5,-38.5 + parent: 2 + - uid: 5841 components: - type: Transform - pos: -24.5,32.5 - parent: 16504 - - uid: 18844 + pos: 24.5,-38.5 + parent: 2 + - uid: 6159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,27.5 - parent: 16504 - - uid: 18845 + pos: 20.5,-34.5 + parent: 2 + - uid: 6170 components: - type: Transform - pos: 3.5,35.5 - parent: 16504 - - uid: 18846 + pos: 30.5,-38.5 + parent: 2 + - uid: 6521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 16504 - - uid: 20473 + pos: 55.5,38.5 + parent: 2 + - uid: 7592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,19.5 + pos: 13.5,25.5 parent: 2 -- proto: ComputerCargoBounty - entities: - - uid: 6452 + - uid: 8071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 + pos: 57.5,33.5 parent: 2 - - uid: 6453 + - uid: 10900 components: - type: Transform - pos: 4.5,9.5 + pos: 28.5,50.5 parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 6454 + - uid: 10901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,10.5 + pos: 27.5,53.5 parent: 2 - - uid: 6455 + - uid: 10902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,1.5 + pos: 24.5,53.5 parent: 2 - - uid: 6456 + - uid: 10903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,12.5 + pos: 23.5,53.5 parent: 2 -- proto: ComputerComms - entities: - - uid: 6458 + - uid: 10916 components: - type: Transform - pos: 24.5,30.5 + pos: 27.5,50.5 parent: 2 - - uid: 6459 + - uid: 10938 components: - type: Transform - pos: 31.5,22.5 + pos: 32.5,60.5 parent: 2 -- proto: ComputerCrewMonitoring - entities: - - uid: 6460 + - uid: 11035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,10.5 + pos: 32.5,55.5 parent: 2 - - uid: 6461 + - uid: 11175 components: - type: Transform - pos: 21.5,30.5 + pos: 30.5,54.5 parent: 2 - - uid: 6462 + - uid: 11220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,8.5 + pos: 30.5,55.5 parent: 2 - - uid: 6463 + - uid: 11351 components: - type: Transform - pos: 52.5,28.5 + pos: 30.5,53.5 parent: 2 -- proto: ComputerCriminalRecords - entities: - - uid: 6464 + - uid: 11440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,26.5 + pos: 30.5,52.5 parent: 2 - - uid: 6465 + - uid: 11441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,29.5 + pos: 30.5,51.5 parent: 2 - - uid: 6466 + - uid: 11442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,31.5 + pos: 30.5,50.5 parent: 2 - - uid: 6467 + - uid: 11444 components: - type: Transform - pos: 43.5,36.5 + pos: 30.5,49.5 parent: 2 - - uid: 6468 + - uid: 11734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,21.5 + pos: 31.5,60.5 parent: 2 -- proto: ComputerFrame - entities: - - uid: 6469 + - uid: 11838 components: - type: Transform - pos: 77.5,11.5 + pos: 34.5,63.5 parent: 2 - - uid: 6470 + - uid: 11883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 + pos: 33.5,61.5 parent: 2 - - uid: 18847 + - uid: 11922 components: - type: Transform - pos: -16.5,4.5 - parent: 16504 - - uid: 18848 + pos: 33.5,63.5 + parent: 2 + - uid: 11925 components: - type: Transform - pos: 5.5,4.5 - parent: 16504 - - uid: 18849 + pos: 33.5,60.5 + parent: 2 + - uid: 11926 components: - type: Transform - pos: -23.5,16.5 - parent: 16504 - - uid: 18850 + pos: 33.5,62.5 + parent: 2 + - uid: 11945 components: - type: Transform - pos: -1.5,21.5 - parent: 16504 - - uid: 18851 + pos: 22.5,-41.5 + parent: 2 + - uid: 12241 components: - type: Transform - pos: -25.5,32.5 - parent: 16504 -- proto: ComputerId - entities: - - uid: 6471 + pos: 20.5,53.5 + parent: 2 + - uid: 13886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,20.5 + pos: 29.5,50.5 parent: 2 - - uid: 6472 + - uid: 13887 components: - type: Transform - pos: 22.5,30.5 + pos: 26.5,50.5 parent: 2 - - uid: 6473 + - uid: 13905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,20.5 + pos: 20.5,-35.5 parent: 2 -- proto: ComputerMassMedia - entities: - - uid: 6474 + - uid: 13910 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,32.5 + pos: 31.5,55.5 parent: 2 -- proto: ComputerMedicalRecords - entities: - - uid: 6475 + - uid: 15005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,28.5 + pos: 25.5,-40.5 parent: 2 - - uid: 6476 + - uid: 15118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,8.5 + pos: 46.5,-13.5 parent: 2 -- proto: ComputerPowerMonitoring - entities: - - uid: 6477 + - uid: 15438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,56.5 + pos: 25.5,-37.5 parent: 2 - - uid: 6478 + - uid: 15693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,41.5 + pos: 29.5,-38.5 parent: 2 - - uid: 6479 + - uid: 15925 components: - type: Transform - pos: 51.5,66.5 + pos: 27.5,-14.5 parent: 2 - - uid: 6480 + - uid: 15954 components: - type: Transform - pos: 26.5,30.5 + pos: 25.5,-38.5 parent: 2 -- proto: ComputerRadar - entities: - - uid: 6481 + - uid: 16041 components: - type: Transform - pos: 27.5,30.5 + pos: 22.5,-40.5 parent: 2 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 6482 + - uid: 16157 components: - type: Transform - pos: 22.5,10.5 + pos: 22.5,-34.5 parent: 2 -- proto: ComputerRoboticsControl - entities: - - uid: 3180 + - uid: 16215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-39.5 + pos: 36.5,59.5 parent: 2 - missingComponents: - - AccessReader - - Lock - - uid: 6483 + - uid: 16248 components: - type: Transform - pos: 18.5,6.5 + pos: 21.5,-34.5 parent: 2 - - uid: 6484 + - uid: 16251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-1.5 + pos: 19.5,-36.5 parent: 2 -- proto: ComputerShuttleCargo - entities: - - uid: 6486 + - uid: 16255 components: - type: Transform - pos: 5.5,9.5 + pos: 22.5,-38.5 parent: 2 -- proto: ComputerShuttleSalvage - entities: - - uid: 10790 + - uid: 16274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,12.5 + pos: 24.5,-41.5 parent: 2 -- proto: ComputerSolarControl - entities: - - uid: 6487 + - uid: 16289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-17.5 + pos: 23.5,-41.5 parent: 2 - - uid: 6488 + - uid: 16446 components: - type: Transform - pos: 52.5,66.5 + pos: 25.5,-39.5 parent: 2 -- proto: ComputerStationRecords - entities: - - uid: 6489 + - uid: 16460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,29.5 + pos: 25.5,-41.5 parent: 2 - - uid: 6490 + - uid: 16462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,34.5 + pos: 23.5,-32.5 parent: 2 - - uid: 6491 + - uid: 20396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,52.5 - parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 6492 + pos: -6.5,6.5 + parent: 16527 + - uid: 20424 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,8.5 - parent: 2 - - uid: 6493 + pos: -6.5,7.5 + parent: 16527 + - uid: 20441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,30.5 - parent: 2 - - uid: 6494 + pos: -6.5,8.5 + parent: 16527 + - uid: 20442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,28.5 - parent: 2 - - uid: 6495 + pos: -6.5,9.5 + parent: 16527 + - uid: 20443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,53.5 - parent: 2 -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 6496 + pos: -6.5,10.5 + parent: 16527 + - uid: 20444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,32.5 - parent: 2 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 6497 + pos: -6.5,11.5 + parent: 16527 + - uid: 20445 components: - type: Transform - pos: 20.5,-1.5 - parent: 2 -- proto: ComputerTelevision - entities: - - uid: 6498 + pos: -6.5,12.5 + parent: 16527 + - uid: 20446 components: - type: Transform - pos: 4.5,38.5 - parent: 2 - - uid: 6499 + pos: -6.5,13.5 + parent: 16527 + - uid: 20447 components: - type: Transform - pos: 9.5,38.5 - parent: 2 - - uid: 21256 + pos: -7.5,10.5 + parent: 16527 + - uid: 20448 components: - type: Transform - pos: 19.5,51.5 - parent: 2 -- proto: ConveyorBelt - entities: - - uid: 6542 + pos: -8.5,10.5 + parent: 16527 + - uid: 20449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 2 - - uid: 6543 + pos: -9.5,10.5 + parent: 16527 + - uid: 20450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 2 - - uid: 6544 + pos: -10.5,10.5 + parent: 16527 + - uid: 20451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 2 - - uid: 6545 + pos: -10.5,9.5 + parent: 16527 + - uid: 20452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,5.5 - parent: 2 - - uid: 6546 + pos: -11.5,9.5 + parent: 16527 + - uid: 20453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 2 - - uid: 6547 + pos: -11.5,8.5 + parent: 16527 + - uid: 20454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 2 - - uid: 6548 + pos: -12.5,8.5 + parent: 16527 + - uid: 20455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,9.5 - parent: 2 - - uid: 6549 + pos: -12.5,7.5 + parent: 16527 + - uid: 20456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,9.5 - parent: 2 - - uid: 6550 + pos: -13.5,7.5 + parent: 16527 + - uid: 20459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 2 - - uid: 6551 + pos: -13.5,6.5 + parent: 16527 + - uid: 20460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,19.5 - parent: 2 - - uid: 6552 + pos: -13.5,5.5 + parent: 16527 + - uid: 20471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,19.5 - parent: 2 - - uid: 6553 + pos: -13.5,4.5 + parent: 16527 + - uid: 20476 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,22.5 - parent: 2 - - uid: 6554 + pos: -13.5,3.5 + parent: 16527 + - uid: 20477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,23.5 - parent: 2 - - uid: 6555 + pos: -14.5,3.5 + parent: 16527 + - uid: 20478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,23.5 - parent: 2 - - uid: 6556 + pos: -15.5,3.5 + parent: 16527 + - uid: 20479 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,20.5 - parent: 2 - - uid: 6557 + pos: -16.5,3.5 + parent: 16527 + - uid: 20480 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,21.5 - parent: 2 - - uid: 18852 + pos: -17.5,3.5 + parent: 16527 + - uid: 20481 components: - type: Transform - pos: -17.5,9.5 - parent: 16504 - - uid: 18853 + pos: -18.5,3.5 + parent: 16527 + - uid: 20482 components: - type: Transform - pos: -17.5,8.5 - parent: 16504 - - uid: 18854 + pos: -11.5,-9.5 + parent: 16527 + - uid: 20483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,7.5 - parent: 16504 - - uid: 18855 + pos: -11.5,-8.5 + parent: 16527 + - uid: 20484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,7.5 - parent: 16504 - - uid: 18856 + pos: -11.5,-7.5 + parent: 16527 + - uid: 20485 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,7.5 - parent: 16504 - - uid: 18857 + pos: -11.5,-6.5 + parent: 16527 + - uid: 20486 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,8.5 - parent: 16504 - - uid: 18858 + pos: -11.5,-5.5 + parent: 16527 + - uid: 20487 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,9.5 - parent: 16504 - - uid: 18859 + pos: -11.5,-4.5 + parent: 16527 + - uid: 20489 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,10.5 - parent: 16504 - - uid: 18860 + pos: -11.5,-3.5 + parent: 16527 + - uid: 20490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,11.5 - parent: 16504 - - uid: 18861 + pos: -11.5,-2.5 + parent: 16527 + - uid: 20491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 16504 - - uid: 18862 + pos: -11.5,-1.5 + parent: 16527 + - uid: 20493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,11.5 - parent: 16504 - - uid: 18863 + pos: -11.5,-0.5 + parent: 16527 + - uid: 20494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,11.5 - parent: 16504 - - uid: 18864 + pos: -12.5,-0.5 + parent: 16527 + - uid: 20495 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,11.5 - parent: 16504 - - uid: 18865 + pos: -13.5,-0.5 + parent: 16527 + - uid: 20496 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,12.5 - parent: 16504 - - uid: 18866 + pos: -13.5,0.5 + parent: 16527 + - uid: 20499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,13.5 - parent: 16504 - - uid: 18867 + pos: -13.5,1.5 + parent: 16527 + - uid: 20500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,13.5 - parent: 16504 - - uid: 18868 + pos: -13.5,2.5 + parent: 16527 + - uid: 20501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,13.5 - parent: 16504 - - uid: 18869 + pos: 7.5,13.5 + parent: 16527 + - uid: 20502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,13.5 - parent: 16504 - - uid: 18870 + pos: 7.5,12.5 + parent: 16527 + - uid: 20503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,13.5 - parent: 16504 - - uid: 18871 + pos: 7.5,11.5 + parent: 16527 + - uid: 20504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,13.5 - parent: 16504 - - uid: 18872 + pos: 7.5,10.5 + parent: 16527 + - uid: 20505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,13.5 - parent: 16504 - - uid: 18873 + pos: 6.5,10.5 + parent: 16527 + - uid: 20506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,13.5 - parent: 16504 -- proto: CorporateCircuitBoard - entities: - - uid: 581 + pos: 5.5,10.5 + parent: 16527 + - uid: 20507 components: - type: Transform - parent: 577 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CounterMetalFrame - entities: - - uid: 6558 + pos: 4.5,10.5 + parent: 16527 + - uid: 20508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 2 - - uid: 6559 + pos: 3.5,10.5 + parent: 16527 + - uid: 20509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 18874 + pos: 2.5,10.5 + parent: 16527 + - uid: 20510 components: - type: Transform - pos: -0.5,21.5 - parent: 16504 - - uid: 18875 + pos: 1.5,10.5 + parent: 16527 + - uid: 20511 components: - type: Transform - pos: -16.5,27.5 - parent: 16504 - - uid: 18876 + pos: 0.5,10.5 + parent: 16527 + - uid: 20512 components: - type: Transform - pos: -12.5,18.5 - parent: 16504 -- proto: CrateArtifactContainer - entities: - - uid: 6560 + pos: -0.5,10.5 + parent: 16527 + - uid: 20513 components: - type: Transform - pos: 20.5,-10.5 - parent: 2 -- proto: CrateCoffin - entities: - - uid: 6561 + pos: -1.5,10.5 + parent: 16527 + - uid: 20514 components: - type: Transform - pos: 79.5,26.5 - parent: 2 - - uid: 18877 + pos: -2.5,10.5 + parent: 16527 + - uid: 20515 components: - type: Transform - pos: 17.5,28.5 - parent: 16504 -- proto: CrateCommandSecure - entities: - - uid: 577 + pos: -3.5,10.5 + parent: 16527 + - uid: 20516 components: - - type: MetaData - name: ящик плат законов ИИ - type: Transform - pos: 58.5,47.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 585 - - 583 - - 586 - - 580 - - 588 - - 578 - - 581 - - 587 - - 582 - - 579 - - 584 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEmergencyExplosive - entities: - - uid: 6562 + pos: -4.5,10.5 + parent: 16527 + - uid: 20517 components: - type: Transform - pos: 58.5,26.5 - parent: 2 -- proto: CrateEmergencyInternals - entities: - - uid: 6563 + pos: -5.5,10.5 + parent: 16527 + - uid: 20518 components: - type: Transform - pos: 85.5,10.5 - parent: 2 -- proto: CrateEmergencyInternalsLarge - entities: - - uid: 13882 + pos: 19.5,3.5 + parent: 16527 + - uid: 20519 components: - type: Transform - pos: 16.5,57.5 - parent: 2 - - uid: 21879 + pos: 18.5,3.5 + parent: 16527 + - uid: 20520 components: - type: Transform - pos: 43.5,-3.5 - parent: 2 -- proto: CrateEmergencyO2Kit - entities: - - uid: 6564 + pos: 17.5,3.5 + parent: 16527 + - uid: 20521 components: - type: Transform - pos: 60.5,2.5 - parent: 2 -- proto: CrateEmptySpawner - entities: - - uid: 18878 + pos: 16.5,3.5 + parent: 16527 + - uid: 20522 components: - type: Transform - pos: -8.5,22.5 - parent: 16504 -- proto: CrateEngineeringAMEJar - entities: - - uid: 6565 + pos: 15.5,3.5 + parent: 16527 + - uid: 20523 components: - type: Transform - pos: 50.5,76.5 - parent: 2 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 515 + pos: 14.5,3.5 + parent: 16527 + - uid: 20524 components: - type: Transform - pos: 50.5,79.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 516 - - 517 - - 518 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringCableBulk - entities: - - uid: 6566 + pos: 14.5,4.5 + parent: 16527 + - uid: 20525 components: - type: Transform - pos: 29.5,18.5 - parent: 2 - - uid: 6567 + pos: 14.5,5.5 + parent: 16527 + - uid: 20526 components: - type: Transform - pos: 56.5,68.5 - parent: 2 - - uid: 6568 + pos: 14.5,6.5 + parent: 16527 + - uid: 20527 components: - type: Transform - pos: 10.5,40.5 - parent: 2 -- proto: CrateFilledSpawner - entities: - - uid: 18879 + pos: 14.5,7.5 + parent: 16527 + - uid: 20528 components: - type: Transform - pos: -11.5,24.5 - parent: 16504 - - uid: 18880 + pos: 13.5,7.5 + parent: 16527 + - uid: 20529 components: - type: Transform - pos: -7.5,23.5 - parent: 16504 - - uid: 18881 + pos: 13.5,8.5 + parent: 16527 + - uid: 20530 components: - type: Transform - pos: -8.5,21.5 - parent: 16504 -- proto: CrateFoodMRE - entities: - - uid: 6569 + pos: 12.5,8.5 + parent: 16527 + - uid: 20531 components: - type: Transform - pos: 90.5,19.5 - parent: 2 -- proto: CrateFreezer - entities: - - uid: 6570 + pos: 12.5,9.5 + parent: 16527 + - uid: 20532 components: - type: Transform - pos: 50.5,-10.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6571 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6572 + pos: 11.5,9.5 + parent: 16527 + - uid: 20533 components: - type: Transform - pos: 12.5,57.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 98.0039 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6573 - - 6574 - - 6575 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateFunInstrumentsString - entities: - - uid: 18882 + pos: 11.5,10.5 + parent: 16527 + - uid: 20534 components: - type: Transform - pos: -7.5,22.5 - parent: 16504 -- proto: CrateFunToyBox - entities: - - uid: 6576 + pos: 10.5,10.5 + parent: 16527 + - uid: 20535 components: - type: Transform - pos: 59.5,36.5 - parent: 2 -- proto: CrateHydroponics - entities: - - uid: 6578 + pos: 9.5,10.5 + parent: 16527 + - uid: 20536 components: - type: Transform - pos: 90.5,12.5 - parent: 2 -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 6094 + pos: 8.5,10.5 + parent: 16527 + - uid: 20537 components: - type: Transform - pos: 15.5,74.5 - parent: 2 -- proto: CrateInternals - entities: - - uid: 6579 + pos: 14.5,2.5 + parent: 16527 + - uid: 20538 components: - type: Transform - pos: 65.5,40.5 - parent: 2 - - uid: 6580 + pos: 14.5,1.5 + parent: 16527 + - uid: 20539 components: - type: Transform - pos: 92.5,15.5 - parent: 2 -- proto: CrateMedical - entities: - - uid: 18883 + pos: 14.5,0.5 + parent: 16527 + - uid: 20540 components: - type: Transform - pos: 15.5,38.5 - parent: 16504 -- proto: CrateMedicalSecure - entities: - - uid: 6581 + pos: 14.5,-0.5 + parent: 16527 + - uid: 20541 components: - type: Transform - pos: 50.5,-0.5 - parent: 2 -- proto: CrateMedicalSurgery - entities: - - uid: 6582 + pos: 13.5,-0.5 + parent: 16527 + - uid: 20542 components: - type: Transform - pos: 47.5,-8.5 - parent: 2 - - uid: 6583 + pos: 12.5,-0.5 + parent: 16527 + - uid: 20543 components: - type: Transform - pos: 59.5,1.5 - parent: 2 -- proto: CrateNPCHamlet - entities: - - uid: 6584 + pos: 12.5,-1.5 + parent: 16527 + - uid: 20544 components: - type: Transform - pos: 25.5,27.5 - parent: 2 -- proto: CrateNPCKoboldCube - entities: - - uid: 18884 + pos: 12.5,-2.5 + parent: 16527 + - uid: 20545 components: - type: Transform - pos: 16.5,38.5 - parent: 16504 -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 6585 + pos: 12.5,-3.5 + parent: 16527 + - uid: 20546 components: - type: Transform - pos: 4.5,20.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 18885 + pos: 12.5,-4.5 + parent: 16527 + - uid: 20547 components: - type: Transform - pos: -12.5,16.5 - parent: 16504 -- proto: CrateServicePersonnel - entities: - - uid: 6586 + pos: 12.5,-5.5 + parent: 16527 + - uid: 20548 components: - type: Transform - pos: 20.5,21.5 - parent: 2 -- proto: CrateSyndicateSuperSurplusBundle - entities: - - uid: 10552 + pos: 12.5,-6.5 + parent: 16527 + - uid: 20549 components: - type: Transform - pos: 0.5,26.5 - parent: 16504 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22096 - - 22098 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateTrashCart - entities: - - uid: 6416 + pos: 12.5,-7.5 + parent: 16527 + - uid: 20550 components: - type: Transform - pos: 2.5,24.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1462 - moles: - - 1.606311 - - 6.042789 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6417 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18887 + pos: 12.5,-8.5 + parent: 16527 + - uid: 20551 components: - type: Transform - pos: -4.5,12.5 - parent: 16504 - - uid: 18888 + pos: 12.5,-9.5 + parent: 16527 + - uid: 20552 components: - type: Transform - pos: -18.5,16.5 - parent: 16504 - - uid: 18889 + pos: -0.5,11.5 + parent: 16527 + - uid: 20553 components: - type: Transform - pos: -17.5,16.5 - parent: 16504 - - uid: 22499 + pos: -0.5,12.5 + parent: 16527 + - uid: 20554 components: - type: Transform - pos: -26.5,16.5 - parent: 16504 -- proto: CrateTrashCartFilled - entities: - - uid: 6587 + pos: -0.5,13.5 + parent: 16527 + - uid: 20555 components: - type: Transform - pos: 1.5,24.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 18890 + pos: -0.5,14.5 + parent: 16527 + - uid: 20556 components: - type: Transform - pos: -19.5,16.5 - parent: 16504 -- proto: CrateTrashCartJani - entities: - - uid: 6588 + pos: 0.5,14.5 + parent: 16527 + - uid: 20557 components: - type: Transform - pos: 90.5,18.5 - parent: 2 - - uid: 6589 + pos: 1.5,14.5 + parent: 16527 + - uid: 20558 components: - type: Transform - pos: 66.5,49.5 - parent: 2 - - uid: 18891 + pos: -1.5,14.5 + parent: 16527 + - uid: 20559 components: - type: Transform - pos: 16.5,14.5 - parent: 16504 -- proto: CrateWeaponSecure - entities: - - uid: 1057 + pos: -1.5,15.5 + parent: 16527 + - uid: 20560 components: - - type: MetaData - name: оружейный ящик гранат - type: Transform - pos: 56.5,30.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1060 - - 1059 - - 1063 - - 1066 - - 1065 - - 1067 - - 1064 - - 1061 - - 1058 - - 1062 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6590 + pos: -1.5,16.5 + parent: 16527 + - uid: 20561 components: - type: Transform - pos: 54.5,28.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6594 - - 6591 - - 6592 - - 6593 - - 6595 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrayonBox - entities: - - uid: 933 + pos: -1.5,17.5 + parent: 16527 + - uid: 20562 components: - type: Transform - pos: 40.461395,-26.439587 - parent: 2 - - uid: 6596 + pos: -1.5,18.5 + parent: 16527 + - uid: 20563 components: - type: Transform - pos: 9.338084,52.725395 - parent: 2 - - uid: 6597 + pos: -1.5,19.5 + parent: 16527 + - uid: 20564 components: - type: Transform - pos: 8.481375,31.582724 - parent: 2 -- proto: Crematorium - entities: - - uid: 6598 + pos: -2.5,16.5 + parent: 16527 + - uid: 20565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,26.5 - parent: 2 - - uid: 6599 + pos: -3.5,16.5 + parent: 16527 + - uid: 20566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,22.5 - parent: 2 -- proto: CrewMonitoringComputerCircuitboard - entities: - - uid: 6600 + pos: -4.5,16.5 + parent: 16527 + - uid: 20567 components: - type: Transform - pos: 57.518803,48.669518 - parent: 2 -- proto: CrewMonitoringServer - entities: - - uid: 6601 + pos: -5.5,16.5 + parent: 16527 + - uid: 20568 components: - type: Transform - pos: 80.5,15.5 - parent: 2 - - type: SingletonDeviceNetServer - active: False - available: False -- proto: Crowbar - entities: - - uid: 6602 + pos: -6.5,16.5 + parent: 16527 + - uid: 20569 components: - type: Transform - pos: 48.766743,-2.397445 - parent: 2 - - uid: 18892 + pos: -7.5,16.5 + parent: 16527 + - uid: 20570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.457228,34.49971 - parent: 16504 -- proto: CrowbarRed - entities: - - uid: 6603 + pos: -8.5,16.5 + parent: 16527 + - uid: 20571 components: - type: Transform - pos: 24.599216,-8.212352 - parent: 2 - - uid: 6604 + pos: -8.5,15.5 + parent: 16527 + - uid: 20572 components: - type: Transform - pos: 58.857124,34.72271 - parent: 2 - - uid: 18893 + pos: -9.5,15.5 + parent: 16527 + - uid: 20573 components: - type: Transform - pos: -20.4793,14.552873 - parent: 16504 - - uid: 21345 + pos: -10.5,15.5 + parent: 16527 + - uid: 20574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.496753,51.7262 - parent: 2 - - uid: 21374 + pos: -11.5,15.5 + parent: 16527 + - uid: 20575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.20802,-26.697763 - parent: 2 -- proto: CryogenicSleepUnit - entities: - - uid: 22394 + pos: -12.5,15.5 + parent: 16527 + - uid: 20576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,38.5 - parent: 2 -- proto: CryogenicSleepUnitSpawner - entities: - - uid: 22220 + pos: -13.5,15.5 + parent: 16527 + - uid: 20577 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,52.5 - parent: 2 - - uid: 22221 + pos: -14.5,15.5 + parent: 16527 + - uid: 20578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,52.5 - parent: 2 - - uid: 22222 + pos: -14.5,16.5 + parent: 16527 + - uid: 20579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,52.5 - parent: 2 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 22223 + pos: -14.5,17.5 + parent: 16527 + - uid: 20580 components: - type: Transform - pos: 79.5,52.5 - parent: 2 - - uid: 22224 + pos: -17.5,26.5 + parent: 16527 + - uid: 20581 components: - type: Transform - pos: 78.5,52.5 - parent: 2 -- proto: CryoPod - entities: - - uid: 6609 + pos: -17.5,25.5 + parent: 16527 + - uid: 20582 components: - type: Transform - pos: 48.5,1.5 - parent: 2 - - uid: 6610 + pos: -17.5,24.5 + parent: 16527 + - uid: 20583 components: - type: Transform - pos: 50.5,1.5 - parent: 2 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 6611 + pos: -17.5,23.5 + parent: 16527 + - uid: 20584 components: - type: Transform - pos: 50.45342,-1.4966954 - parent: 2 - - uid: 6612 + pos: -17.5,22.5 + parent: 16527 + - uid: 20585 components: - type: Transform - pos: 50.29717,-1.1685704 - parent: 2 - - uid: 6613 + pos: -16.5,22.5 + parent: 16527 + - uid: 20586 components: - type: Transform - pos: 50.781544,-1.4810704 - parent: 2 - - uid: 6614 + pos: -15.5,22.5 + parent: 16527 + - uid: 20587 components: - type: Transform - pos: 50.60967,-1.1998204 - parent: 2 -- proto: CultAltarSpawner - entities: - - uid: 6615 + pos: -14.5,22.5 + parent: 16527 + - uid: 20588 components: - type: Transform - pos: 25.5,57.5 - parent: 2 -- proto: CurtainsBlackOpen - entities: - - uid: 2368 + pos: -13.5,22.5 + parent: 16527 + - uid: 20589 components: - type: Transform - pos: 29.5,46.5 - parent: 2 - - uid: 4968 + pos: -12.5,22.5 + parent: 16527 + - uid: 20590 components: - type: Transform - pos: 29.5,44.5 - parent: 2 - - uid: 15491 + pos: -11.5,22.5 + parent: 16527 + - uid: 20591 components: - type: Transform - pos: 29.5,45.5 - parent: 2 -- proto: CurtainsBlueOpen - entities: - - uid: 6616 + pos: -10.5,22.5 + parent: 16527 + - uid: 20592 components: - type: Transform - pos: 26.5,20.5 - parent: 2 - - uid: 6617 + pos: -9.5,22.5 + parent: 16527 + - uid: 20593 components: - type: Transform - pos: 48.5,10.5 - parent: 2 -- proto: CurtainsOrange - entities: - - uid: 6618 + pos: -8.5,22.5 + parent: 16527 + - uid: 20594 components: - type: Transform - pos: 52.5,33.5 - parent: 2 - - uid: 6619 + pos: -8.5,21.5 + parent: 16527 + - uid: 20595 components: - type: Transform - pos: 49.5,26.5 - parent: 2 - - uid: 6620 + pos: -8.5,20.5 + parent: 16527 + - uid: 20596 components: - type: Transform - pos: 41.5,66.5 - parent: 2 - - uid: 8150 + pos: -8.5,19.5 + parent: 16527 + - uid: 20597 components: - type: Transform - pos: 31.5,40.5 - parent: 2 - - uid: 18644 + pos: -8.5,18.5 + parent: 16527 + - uid: 20598 components: - type: Transform - pos: 32.5,47.5 - parent: 2 -- proto: CurtainsOrangeOpen - entities: - - uid: 6621 + pos: -8.5,17.5 + parent: 16527 + - uid: 20599 components: - type: Transform - pos: 39.5,69.5 - parent: 2 -- proto: CurtainSpawner - entities: - - uid: 6622 + pos: -5.5,28.5 + parent: 16527 + - uid: 20600 components: - type: Transform - pos: 18.5,53.5 - parent: 2 -- proto: CutterMachine - entities: - - uid: 6623 + pos: -6.5,28.5 + parent: 16527 + - uid: 20601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,73.5 - parent: 2 -- proto: CyberPen - entities: - - uid: 3618 + pos: -7.5,28.5 + parent: 16527 + - uid: 20602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.584244,-26.582815 - parent: 2 -- proto: DefaultStationBeacon - entities: - - uid: 22391 + pos: -8.5,28.5 + parent: 16527 + - uid: 20603 components: - type: Transform - pos: 15.5,40.5 - parent: 2 - - type: NavMapBeacon - text: Воксбокс - - type: WarpPoint - location: Воксбокс -- proto: DefaultStationBeaconAISatellite - entities: - - uid: 21883 + pos: -8.5,27.5 + parent: 16527 + - uid: 20604 components: - type: Transform - pos: 22.5,-38.5 - parent: 2 - - type: NavMapBeacon - text: Спутник ИИ - - type: WarpPoint - location: Спутник ИИ -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 6624 + pos: -8.5,26.5 + parent: 16527 + - uid: 20605 components: - type: Transform - pos: 17.5,-0.5 - parent: 2 - - type: WarpPoint - location: Генератор аномалий -- proto: DefaultStationBeaconArrivals - entities: - - uid: 6625 + pos: -8.5,25.5 + parent: 16527 + - uid: 20606 components: - type: Transform - pos: 82.5,44.5 - parent: 2 - - type: WarpPoint - location: Прибытие -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 6626 + pos: -8.5,24.5 + parent: 16527 + - uid: 20607 components: - type: Transform - pos: 19.5,-11.5 - parent: 2 - - type: WarpPoint - location: Артефактная -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 6627 + pos: -8.5,23.5 + parent: 16527 + - uid: 20608 components: - type: Transform - pos: 36.5,77.5 - parent: 2 - - type: WarpPoint - location: Атмосферный отсек -- proto: DefaultStationBeaconBar - entities: - - uid: 21962 + pos: 2.5,14.5 + parent: 16527 + - uid: 20609 components: - type: Transform - pos: 24.5,48.5 - parent: 2 - - type: NavMapBeacon - text: Бар - - type: WarpPoint - location: Бар -- proto: DefaultStationBeaconBotany - entities: - - uid: 22007 + pos: 2.5,15.5 + parent: 16527 + - uid: 20610 components: - type: Transform - pos: 42.5,47.5 - parent: 2 -- proto: DefaultStationBeaconBridge - entities: - - uid: 6630 + pos: 2.5,16.5 + parent: 16527 + - uid: 20611 components: - type: Transform - pos: 24.5,28.5 - parent: 2 - - type: WarpPoint - location: Мостик -- proto: DefaultStationBeaconBrig - entities: - - uid: 6631 + pos: 3.5,16.5 + parent: 16527 + - uid: 20612 components: - type: Transform - pos: 41.5,29.5 - parent: 2 - - type: WarpPoint - location: Бриг приемная -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 6632 + pos: 4.5,16.5 + parent: 16527 + - uid: 20613 components: - type: Transform - pos: 30.5,21.5 - parent: 2 - - type: WarpPoint - location: Офис Капитана -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 6633 + pos: 5.5,16.5 + parent: 16527 + - uid: 20614 components: - type: Transform - pos: 1.5,7.5 - parent: 2 - - type: WarpPoint - location: Карго док -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 6634 + pos: 6.5,16.5 + parent: 16527 + - uid: 20615 components: - type: Transform - pos: 8.5,14.5 - parent: 2 - - type: WarpPoint - location: Карго ресепшн -- proto: DefaultStationBeaconCERoom - entities: - - uid: 6635 + pos: 7.5,16.5 + parent: 16527 + - uid: 20616 components: - type: Transform - pos: 39.5,68.5 - parent: 2 - - type: NavMapBeacon - text: Офис СИ - - type: WarpPoint - location: Офис СИ -- proto: DefaultStationBeaconChapel - entities: - - uid: 6636 + pos: 8.5,16.5 + parent: 16527 + - uid: 20617 components: - type: Transform - pos: 79.5,32.5 - parent: 2 - - type: WarpPoint - location: Церковь -- proto: DefaultStationBeaconChemistry - entities: - - uid: 6637 + pos: 9.5,16.5 + parent: 16527 + - uid: 20618 components: - type: Transform - pos: 43.5,8.5 - parent: 2 - - type: WarpPoint - location: Химка -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 6638 + pos: 10.5,16.5 + parent: 16527 + - uid: 20619 components: - type: Transform - pos: 47.5,8.5 - parent: 2 - - type: WarpPoint - location: Офис ГВ -- proto: DefaultStationBeaconCryonics - entities: - - uid: 6639 + pos: 11.5,16.5 + parent: 16527 + - uid: 20620 components: - type: Transform - pos: 49.5,-0.5 - parent: 2 - - type: NavMapBeacon - text: Крионика - - type: WarpPoint - location: Крионика -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 6640 + pos: 12.5,16.5 + parent: 16527 + - uid: 20621 components: - type: Transform - pos: 3.5,28.5 - parent: 2 - - type: NavMapBeacon - text: Боксёрский ринг - - type: WarpPoint - location: Боксёрский ринг - - uid: 10550 + pos: 13.5,16.5 + parent: 16527 + - uid: 20622 components: - type: Transform - pos: 77.5,53.5 - parent: 2 - - type: NavMapBeacon - text: Криосон - - type: WarpPoint - location: Криосон -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 6641 + pos: 14.5,16.5 + parent: 16527 + - uid: 20623 components: - type: Transform - pos: 42.5,35.5 - parent: 2 - - type: WarpPoint - location: Детектив -- proto: DefaultStationBeaconDisposals - entities: - - uid: 6642 + pos: 15.5,16.5 + parent: 16527 + - uid: 20624 components: - type: Transform - pos: 1.5,22.5 - parent: 2 - - type: WarpPoint - location: Мусоросброс -- proto: DefaultStationBeaconDorms - entities: - - uid: 6643 + pos: 16.5,16.5 + parent: 16527 + - uid: 20625 components: - type: Transform - pos: 7.5,31.5 - parent: 2 - - type: WarpPoint - location: Дормы -- proto: DefaultStationBeaconEngineering - entities: - - uid: 6644 + pos: 16.5,17.5 + parent: 16527 + - uid: 20626 components: - type: Transform - pos: 49.5,56.5 - parent: 2 - - type: WarpPoint - location: Инженерка -- proto: DefaultStationBeaconEvac - entities: - - uid: 6645 + pos: 16.5,18.5 + parent: 16527 + - uid: 20627 components: - type: Transform - pos: 76.5,60.5 - parent: 2 - - type: WarpPoint - location: Эвак -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 6646 + pos: 16.5,19.5 + parent: 16527 + - uid: 20628 components: - type: Transform - pos: 24.5,17.5 - parent: 2 - - type: WarpPoint - location: ЕВА -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 6647 + pos: 17.5,16.5 + parent: 16527 + - uid: 20629 components: - type: Transform - pos: 18.5,20.5 - parent: 2 - - type: WarpPoint - location: Офис ГП -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 6648 + pos: 18.5,16.5 + parent: 16527 + - uid: 20630 components: - type: Transform - pos: 50.5,32.5 - parent: 2 - - type: WarpPoint - location: Офис ГСБ -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 6649 + pos: 19.5,16.5 + parent: 16527 + - uid: 20631 components: - type: Transform - pos: 67.5,48.5 - parent: 2 - - type: WarpPoint - location: Уборщики -- proto: DefaultStationBeaconKitchen - entities: - - uid: 11506 + pos: 20.5,16.5 + parent: 16527 + - uid: 20632 components: - type: Transform - pos: 29.5,54.5 - parent: 2 - - type: NavMapBeacon - text: Кухня - - type: WarpPoint - location: Кухня -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 6651 + pos: 21.5,16.5 + parent: 16527 + - uid: 20633 components: - type: Transform - pos: 7.5,21.5 - parent: 2 - - type: WarpPoint - location: Законник -- proto: DefaultStationBeaconLibrary - entities: - - uid: 6652 + pos: 22.5,16.5 + parent: 16527 + - uid: 20634 components: - type: Transform - pos: 63.5,57.5 - parent: 2 - - type: WarpPoint - location: Библиотека -- proto: DefaultStationBeaconMedbay - entities: - - uid: 6653 + pos: 22.5,15.5 + parent: 16527 + - uid: 20635 components: - type: Transform - pos: 37.5,4.5 - parent: 2 - - type: NavMapBeacon - text: Медбей - - type: WarpPoint - location: Медбей - - uid: 6654 + pos: 22.5,14.5 + parent: 16527 + - uid: 20636 components: - type: Transform - pos: 39.5,-2.5 - parent: 2 - - type: NavMapBeacon - text: Палаты - - type: WarpPoint - location: Палаты -- proto: DefaultStationBeaconMedical - entities: - - uid: 6655 + pos: 20.5,17.5 + parent: 16527 + - uid: 20637 components: - type: Transform - pos: 66.5,9.5 - parent: 2 - - type: NavMapBeacon - text: Кабинет психолога - - type: WarpPoint - location: Кабинет психолога -- proto: DefaultStationBeaconMorgue - entities: - - uid: 6656 + pos: 20.5,18.5 + parent: 16527 + - uid: 20638 components: - type: Transform - pos: 54.5,7.5 - parent: 2 - - type: WarpPoint - location: Морг -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 6657 + pos: 20.5,19.5 + parent: 16527 + - uid: 20639 components: - type: Transform - pos: 52.5,61.5 - parent: 2 - - type: WarpPoint - location: Энергетический Резерв -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 6658 + pos: 20.5,20.5 + parent: 16527 + - uid: 20640 components: - type: Transform - pos: 6.5,2.5 - parent: 2 - - type: WarpPoint - location: Офис КМ -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 6659 + pos: 20.5,21.5 + parent: 16527 + - uid: 20641 components: - type: Transform - pos: 16.5,5.5 - parent: 2 - - type: WarpPoint - location: Офис НР -- proto: DefaultStationBeaconRobotics - entities: - - uid: 6660 + pos: 20.5,22.5 + parent: 16527 + - uid: 20642 components: - type: Transform - pos: 27.5,-1.5 - parent: 2 - - type: WarpPoint - location: Робототехника -- proto: DefaultStationBeaconSalvage - entities: - - uid: 6661 + pos: 20.5,23.5 + parent: 16527 + - uid: 20643 components: - type: Transform - pos: 3.5,13.5 - parent: 2 - - type: WarpPoint - location: Утили -- proto: DefaultStationBeaconScience - entities: - - uid: 6662 + pos: 20.5,24.5 + parent: 16527 + - uid: 20644 components: - type: Transform - pos: 21.5,-0.5 - parent: 2 - - type: WarpPoint - location: РНД -- proto: DefaultStationBeaconSecurity - entities: - - uid: 6663 + pos: 20.5,25.5 + parent: 16527 + - uid: 20645 components: - type: Transform - pos: 50.5,23.5 - parent: 2 - - type: WarpPoint - location: Бриг -- proto: DefaultStationBeaconSecurityCheckpoint - entities: - - uid: 6664 + pos: 20.5,26.5 + parent: 16527 + - uid: 20646 components: - type: Transform - pos: 14.5,9.5 - parent: 2 - - type: WarpPoint - location: КПП СБ Карго - - uid: 6665 + pos: 20.5,27.5 + parent: 16527 + - uid: 20647 components: - type: Transform - pos: 82.5,53.5 - parent: 2 - - type: WarpPoint - location: КПП СБ отбытие\прибытие -- proto: DefaultStationBeaconService - entities: - - uid: 15060 + pos: 20.5,28.5 + parent: 16527 + - uid: 20648 components: - type: Transform - pos: 22.5,53.5 - parent: 2 - - type: NavMapBeacon - text: Барная стойка - - type: WarpPoint - location: Барная стойка -- proto: DefaultStationBeaconSupply - entities: - - uid: 6666 + pos: 20.5,29.5 + parent: 16527 + - uid: 20649 components: - type: Transform - pos: 7.5,7.5 - parent: 2 - - type: WarpPoint - location: Каргония -- proto: DefaultStationBeaconSurgery - entities: - - uid: 6667 + pos: 20.5,30.5 + parent: 16527 + - uid: 20650 components: - type: Transform - pos: 48.5,-10.5 - parent: 2 - - type: WarpPoint - location: Хирургия -- proto: DefaultStationBeaconTEG - entities: - - uid: 6668 + pos: 20.5,31.5 + parent: 16527 + - uid: 20651 components: - type: Transform - pos: 46.5,82.5 - parent: 2 - - type: WarpPoint - location: Выход в космос -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 6669 + pos: 20.5,32.5 + parent: 16527 + - uid: 20652 components: - type: Transform - pos: 79.5,17.5 - parent: 2 - - type: NavMapBeacon - text: Телекомы - - type: WarpPoint - location: Телекомы -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 6670 + pos: 20.5,33.5 + parent: 16527 + - uid: 20653 components: - type: Transform - pos: 67.5,39.5 - parent: 2 - - type: WarpPoint - location: Общественная мастерская -- proto: DefaultStationBeaconVault - entities: - - uid: 6671 + pos: 20.5,34.5 + parent: 16527 + - uid: 20654 components: - type: Transform - pos: 7.5,27.5 - parent: 2 - - type: NavMapBeacon - text: Хранилище - - type: WarpPoint - location: Хранилище -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 6672 + pos: 20.5,35.5 + parent: 16527 + - uid: 20655 components: - type: Transform - pos: 49.5,27.5 - parent: 2 - - type: NavMapBeacon - text: Офис смотрителя - - type: WarpPoint - location: Офис смотрителя -- proto: Defibrillator - entities: - - uid: 6674 + pos: 20.5,36.5 + parent: 16527 + - uid: 20656 components: - type: Transform - parent: 6673 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DefibrillatorCabinetFilled - entities: - - uid: 6676 + pos: 20.5,37.5 + parent: 16527 + - uid: 20657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 2 - - uid: 6677 + pos: 21.5,26.5 + parent: 16527 + - uid: 20658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-5.5 - parent: 2 - - uid: 6678 + pos: 22.5,26.5 + parent: 16527 + - uid: 20659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,23.5 - parent: 2 - - uid: 6679 + pos: 23.5,26.5 + parent: 16527 + - uid: 20660 components: - type: Transform - pos: 36.5,7.5 - parent: 2 - - uid: 6680 + pos: 24.5,26.5 + parent: 16527 + - uid: 20661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-3.5 - parent: 2 - - uid: 6681 + pos: 24.5,25.5 + parent: 16527 + - uid: 20662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 2 - - uid: 6682 + pos: 24.5,24.5 + parent: 16527 + - uid: 20663 components: - type: Transform - pos: 35.5,2.5 - parent: 2 - - uid: 6683 + pos: 25.5,24.5 + parent: 16527 + - uid: 20664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,10.5 - parent: 2 -- proto: DehydratedSpaceCarp - entities: - - uid: 6191 + pos: 26.5,24.5 + parent: 16527 + - uid: 20665 components: - type: Transform - parent: 6190 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DeployableBarrier - entities: - - uid: 6684 + pos: 27.5,24.5 + parent: 16527 + - uid: 20666 components: - type: Transform - pos: 54.5,31.5 - parent: 2 - - uid: 6685 + pos: 28.5,24.5 + parent: 16527 + - uid: 20667 components: - type: Transform - pos: 54.5,30.5 - parent: 2 - - uid: 6686 + pos: 28.5,23.5 + parent: 16527 + - uid: 20668 components: - type: Transform - pos: 55.5,30.5 - parent: 2 - - uid: 6687 + pos: 29.5,23.5 + parent: 16527 + - uid: 20669 components: - type: Transform - pos: 54.5,32.5 - parent: 2 -- proto: DeskBell - entities: - - uid: 6688 + pos: 30.5,23.5 + parent: 16527 + - uid: 20670 components: - type: Transform - pos: 7.524387,11.668822 - parent: 2 - - uid: 6689 + pos: 30.5,22.5 + parent: 16527 + - uid: 20671 components: - type: Transform - pos: 16.57862,21.47777 - parent: 2 - - uid: 6690 + pos: 14.5,17.5 + parent: 16527 + - uid: 20672 components: - type: Transform - pos: 51.43683,54.608246 - parent: 2 -- proto: DiceBag - entities: - - uid: 6691 + pos: 14.5,18.5 + parent: 16527 + - uid: 20673 components: - type: Transform - pos: 66.409805,64.4893 - parent: 2 - - uid: 6692 + pos: 14.5,19.5 + parent: 16527 + - uid: 20674 components: - type: Transform - pos: 18.485172,-18.157772 - parent: 2 -- proto: DiseaseDiagnoser - entities: - - uid: 6693 + pos: 14.5,20.5 + parent: 16527 + - uid: 20675 components: - type: Transform - pos: 90.5,14.5 - parent: 2 - - uid: 6694 + pos: 14.5,21.5 + parent: 16527 + - uid: 20676 components: - type: Transform - pos: 56.5,-5.5 - parent: 2 -- proto: DisposalBend - entities: - - uid: 6695 + pos: 14.5,22.5 + parent: 16527 + - uid: 20677 components: - type: Transform - pos: 37.5,-8.5 - parent: 2 - - uid: 6696 + pos: 14.5,23.5 + parent: 16527 + - uid: 20678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-1.5 - parent: 2 - - uid: 6697 + pos: 14.5,24.5 + parent: 16527 + - uid: 20679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 2 - - uid: 6698 + pos: 14.5,25.5 + parent: 16527 + - uid: 20680 components: - type: Transform - pos: 48.5,60.5 - parent: 2 - - uid: 6699 + pos: 14.5,26.5 + parent: 16527 + - uid: 20681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,31.5 - parent: 2 - - uid: 6700 + pos: 14.5,27.5 + parent: 16527 + - uid: 20682 components: - type: Transform - pos: 47.5,74.5 - parent: 2 - - uid: 6701 + pos: 14.5,28.5 + parent: 16527 + - uid: 20683 components: - type: Transform - pos: 52.5,23.5 - parent: 2 - - uid: 6702 + pos: 14.5,29.5 + parent: 16527 + - uid: 20684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,23.5 - parent: 2 - - uid: 6703 + pos: 14.5,30.5 + parent: 16527 + - uid: 20685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 2 - - uid: 6704 + pos: 14.5,31.5 + parent: 16527 + - uid: 20686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 2 - - uid: 6705 + pos: 14.5,32.5 + parent: 16527 + - uid: 20687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 2 - - uid: 6706 + pos: 14.5,33.5 + parent: 16527 + - uid: 20688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,14.5 - parent: 2 - - uid: 6707 + pos: 14.5,34.5 + parent: 16527 + - uid: 20689 components: - type: Transform - pos: 18.5,25.5 - parent: 2 - - uid: 6708 + pos: 15.5,34.5 + parent: 16527 + - uid: 20690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,10.5 - parent: 2 - - uid: 6709 + pos: 16.5,34.5 + parent: 16527 + - uid: 20691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,47.5 - parent: 2 - - uid: 6710 + pos: 17.5,34.5 + parent: 16527 + - uid: 20692 components: - type: Transform - pos: 53.5,51.5 - parent: 2 - - uid: 6711 + pos: 18.5,34.5 + parent: 16527 + - uid: 20693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,47.5 - parent: 2 - - uid: 6712 + pos: 8.5,17.5 + parent: 16527 + - uid: 20694 components: - type: Transform - pos: 55.5,47.5 - parent: 2 - - uid: 6713 + pos: 8.5,18.5 + parent: 16527 + - uid: 20695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,45.5 - parent: 2 - - uid: 6714 + pos: 8.5,19.5 + parent: 16527 + - uid: 20696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,45.5 - parent: 2 - - uid: 6715 + pos: 8.5,20.5 + parent: 16527 + - uid: 20697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,40.5 - parent: 2 - - uid: 6716 + pos: 8.5,21.5 + parent: 16527 + - uid: 20698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,40.5 - parent: 2 - - uid: 6717 + pos: 8.5,22.5 + parent: 16527 + - uid: 20699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,38.5 - parent: 2 - - uid: 6718 + pos: 8.5,23.5 + parent: 16527 + - uid: 20700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 2 - - uid: 6719 + pos: 8.5,24.5 + parent: 16527 + - uid: 20701 components: - type: Transform - pos: 3.5,22.5 - parent: 2 - - uid: 6720 + pos: 8.5,25.5 + parent: 16527 + - uid: 20702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,22.5 - parent: 2 - - uid: 6725 + pos: 8.5,26.5 + parent: 16527 + - uid: 20703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,32.5 - parent: 2 - - uid: 6726 + pos: 8.5,27.5 + parent: 16527 + - uid: 20704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 2 - - uid: 6727 + pos: 8.5,28.5 + parent: 16527 + - uid: 20705 components: - type: Transform - pos: 22.5,0.5 - parent: 2 - - uid: 6728 + pos: 8.5,29.5 + parent: 16527 + - uid: 20706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,0.5 - parent: 2 - - uid: 6729 + pos: 8.5,30.5 + parent: 16527 + - uid: 20707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-14.5 - parent: 2 - - uid: 6730 + pos: 8.5,31.5 + parent: 16527 + - uid: 20708 components: - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 6731 + pos: 8.5,32.5 + parent: 16527 + - uid: 20709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,1.5 - parent: 2 - - uid: 6732 + pos: 8.5,33.5 + parent: 16527 + - uid: 20710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-12.5 - parent: 2 - - uid: 6733 + pos: -10.5,31.5 + parent: 16527 + - uid: 20711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-12.5 - parent: 2 - - uid: 6734 + pos: -10.5,32.5 + parent: 16527 + - uid: 20712 components: - type: Transform - pos: 41.5,-10.5 - parent: 2 - - uid: 6735 + pos: -10.5,33.5 + parent: 16527 + - uid: 20713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-10.5 - parent: 2 - - uid: 6736 + pos: -10.5,34.5 + parent: 16527 + - uid: 20714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-7.5 - parent: 2 - - uid: 6737 + pos: -9.5,34.5 + parent: 16527 + - uid: 20715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,13.5 - parent: 2 - - uid: 6740 + pos: -8.5,34.5 + parent: 16527 + - uid: 20716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,36.5 - parent: 2 - - uid: 6741 + pos: -7.5,34.5 + parent: 16527 + - uid: 20717 components: - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 6742 + pos: -6.5,34.5 + parent: 16527 + - uid: 20718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,26.5 - parent: 2 - - uid: 6743 + pos: -5.5,34.5 + parent: 16527 + - uid: 20719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,22.5 - parent: 2 - - uid: 6744 + pos: -4.5,34.5 + parent: 16527 + - uid: 20720 components: - type: Transform - pos: 12.5,55.5 - parent: 2 - - uid: 6745 + pos: -3.5,34.5 + parent: 16527 + - uid: 20721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,61.5 - parent: 2 - - uid: 6746 + pos: -2.5,34.5 + parent: 16527 + - uid: 20722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,55.5 - parent: 2 - - uid: 6747 + pos: -1.5,34.5 + parent: 16527 + - uid: 20723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,61.5 - parent: 2 - - uid: 6748 + pos: -0.5,34.5 + parent: 16527 + - uid: 20724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,52.5 - parent: 2 - - uid: 6749 + pos: 0.5,34.5 + parent: 16527 + - uid: 20725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,65.5 - parent: 2 - - uid: 6750 + pos: 0.5,33.5 + parent: 16527 + - uid: 20726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,52.5 - parent: 2 - - uid: 6751 + pos: 1.5,33.5 + parent: 16527 + - uid: 20727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,47.5 - parent: 2 - - uid: 6752 + pos: 2.5,33.5 + parent: 16527 + - uid: 20728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,48.5 - parent: 2 - - uid: 6753 + pos: 3.5,33.5 + parent: 16527 + - uid: 20729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,13.5 - parent: 2 - - uid: 6754 + pos: 4.5,33.5 + parent: 16527 + - uid: 20730 components: - type: Transform - pos: 22.5,21.5 - parent: 2 - - uid: 6755 + pos: 5.5,33.5 + parent: 16527 + - uid: 20731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,3.5 - parent: 2 - - uid: 6756 + pos: 6.5,33.5 + parent: 16527 + - uid: 20732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-8.5 - parent: 2 - - uid: 6757 + pos: 7.5,33.5 + parent: 16527 + - uid: 20733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,56.5 - parent: 2 - - uid: 6758 + pos: 0.5,35.5 + parent: 16527 + - uid: 20734 components: - type: Transform - pos: 33.5,-7.5 - parent: 2 - - uid: 6759 + pos: 0.5,36.5 + parent: 16527 + - uid: 20735 components: - type: Transform - pos: 45.5,-7.5 - parent: 2 - - uid: 6760 + pos: -5.5,6.5 + parent: 16527 + - uid: 20736 components: - type: Transform - pos: 52.5,3.5 - parent: 2 - - uid: 6761 + pos: -4.5,6.5 + parent: 16527 + - uid: 20737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,2.5 - parent: 2 - - uid: 6762 + pos: -3.5,6.5 + parent: 16527 + - uid: 20738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 2 - - uid: 7613 + pos: -3.5,5.5 + parent: 16527 + - uid: 20739 components: - type: Transform - pos: 36.5,44.5 - parent: 2 - - uid: 8308 + pos: -3.5,4.5 + parent: 16527 + - uid: 20740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,55.5 - parent: 2 - - uid: 18894 + pos: -3.5,3.5 + parent: 16527 + - uid: 20741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-0.5 - parent: 16504 - - uid: 18895 + pos: -3.5,2.5 + parent: 16527 + - uid: 20742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 16504 - - uid: 18896 + pos: -4.5,2.5 + parent: 16527 + - uid: 21246 components: - type: Transform - pos: 14.5,7.5 - parent: 16504 - - uid: 18897 + pos: 20.5,-38.5 + parent: 2 + - uid: 21298 components: - type: Transform - pos: 13.5,8.5 - parent: 16504 - - uid: 18898 + pos: 31.5,-39.5 + parent: 2 + - uid: 21502 components: - type: Transform - pos: 12.5,9.5 - parent: 16504 - - uid: 18899 + pos: 28.5,-38.5 + parent: 2 + - uid: 21514 components: - type: Transform - pos: 11.5,10.5 - parent: 16504 - - uid: 18900 + pos: 23.5,-33.5 + parent: 2 + - uid: 21530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,7.5 - parent: 16504 - - uid: 18901 + pos: 61.5,-1.5 + parent: 2 + - uid: 21531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,8.5 - parent: 16504 - - uid: 18902 + pos: 62.5,-0.5 + parent: 2 + - uid: 21532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 16504 - - uid: 18903 + pos: 62.5,0.5 + parent: 2 + - uid: 21533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,7.5 - parent: 16504 - - uid: 18904 + pos: 62.5,2.5 + parent: 2 + - uid: 21534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,8.5 - parent: 16504 - - uid: 18905 + pos: 62.5,3.5 + parent: 2 + - uid: 21535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,9.5 - parent: 16504 - - uid: 18906 + pos: 62.5,1.5 + parent: 2 + - uid: 21536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,7.5 - parent: 16504 - - uid: 18907 + pos: 63.5,3.5 + parent: 2 + - uid: 21537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,8.5 - parent: 16504 - - uid: 18908 + pos: 64.5,3.5 + parent: 2 + - uid: 21538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,9.5 - parent: 16504 - - uid: 18909 + pos: 65.5,3.5 + parent: 2 + - uid: 21539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,10.5 - parent: 16504 - - uid: 18910 + pos: 66.5,3.5 + parent: 2 + - uid: 21540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 16504 - - uid: 18911 + pos: 67.5,3.5 + parent: 2 + - uid: 21541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,9.5 - parent: 16504 - - uid: 18912 + pos: 67.5,4.5 + parent: 2 + - uid: 21542 components: - type: Transform - pos: 1.5,14.5 - parent: 16504 - - uid: 18913 + pos: 67.5,5.5 + parent: 2 + - uid: 21543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,14.5 - parent: 16504 - - uid: 18914 + pos: 67.5,6.5 + parent: 2 + - uid: 21544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 16504 - - uid: 18915 + pos: 67.5,7.5 + parent: 2 + - uid: 21545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 16504 - - uid: 18916 + pos: 66.5,7.5 + parent: 2 + - uid: 21574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,10.5 - parent: 16504 - - uid: 18917 + pos: 26.5,-38.5 + parent: 2 + - uid: 21578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 16504 - - uid: 18918 + pos: 35.5,63.5 + parent: 2 + - uid: 21648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,20.5 - parent: 16504 - - uid: 18919 + pos: 34.5,57.5 + parent: 2 + - uid: 21691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,15.5 - parent: 16504 - - uid: 21549 + pos: 31.5,52.5 + parent: 2 + - uid: 21692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,44.5 + pos: 32.5,52.5 parent: 2 - - uid: 21644 + - uid: 21693 components: - type: Transform - pos: 35.5,52.5 + pos: 33.5,52.5 parent: 2 -- proto: DisposalJunction - entities: - - uid: 6174 + - uid: 21694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,37.5 + pos: 34.5,52.5 parent: 2 - - uid: 6765 + - uid: 21695 components: - type: Transform - pos: 51.5,56.5 + pos: 35.5,52.5 parent: 2 - - uid: 6766 + - uid: 21696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,9.5 + pos: 36.5,52.5 parent: 2 - - uid: 6767 + - uid: 21697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,21.5 + pos: 36.5,51.5 parent: 2 - - uid: 6768 + - uid: 21698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,13.5 + pos: 36.5,50.5 parent: 2 - - uid: 6769 + - uid: 21699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,37.5 + pos: 37.5,50.5 parent: 2 - - uid: 6771 + - uid: 21700 components: - type: Transform - pos: 12.5,36.5 + pos: 39.5,50.5 parent: 2 - - uid: 6772 + - uid: 21701 components: - type: Transform - pos: 12.5,32.5 + pos: 38.5,50.5 parent: 2 - - uid: 6773 + - uid: 21702 components: - type: Transform - pos: 12.5,26.5 + pos: 39.5,51.5 parent: 2 - - uid: 6774 + - uid: 21703 components: - type: Transform - pos: 12.5,22.5 + pos: 39.5,52.5 parent: 2 - - uid: 6776 + - uid: 21704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,4.5 + pos: 39.5,53.5 parent: 2 - - uid: 6777 + - uid: 21705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-3.5 + pos: 38.5,53.5 parent: 2 - - uid: 6778 + - uid: 21706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,6.5 + pos: 37.5,53.5 parent: 2 - - uid: 6779 + - uid: 21986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,13.5 + pos: 21.5,37.5 parent: 2 - - uid: 6780 + - uid: 21987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,32.5 + pos: 22.5,37.5 parent: 2 - - uid: 6781 + - uid: 21988 components: - type: Transform - pos: 71.5,48.5 + pos: 24.5,37.5 parent: 2 - - uid: 6782 + - uid: 21989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-8.5 + pos: 25.5,37.5 parent: 2 - - uid: 6783 + - uid: 21990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,20.5 + pos: 26.5,37.5 parent: 2 - - uid: 18920 + - uid: 21991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,10.5 - parent: 16504 -- proto: DisposalJunctionFlipped - entities: - - uid: 4980 + pos: 27.5,37.5 + parent: 2 + - uid: 21992 components: - type: Transform - pos: 17.5,40.5 + pos: 23.5,37.5 parent: 2 - - uid: 6784 + - uid: 21993 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 + pos: 27.5,38.5 parent: 2 - - uid: 6785 + - uid: 21994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,51.5 + pos: 27.5,40.5 parent: 2 - - uid: 6786 + - uid: 21995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,38.5 + pos: 27.5,41.5 parent: 2 - - uid: 6787 + - uid: 21996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,38.5 + pos: 27.5,42.5 parent: 2 - - uid: 6788 + - uid: 21997 components: - type: Transform - pos: 12.5,25.5 + pos: 27.5,39.5 parent: 2 - - uid: 6789 + - uid: 21998 components: - type: Transform - pos: 12.5,21.5 + pos: 27.5,43.5 parent: 2 - - uid: 6790 + - uid: 21999 components: - type: Transform - pos: 12.5,37.5 + pos: 27.5,45.5 parent: 2 - - uid: 6792 + - uid: 22000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,14.5 + pos: 27.5,44.5 parent: 2 - - uid: 6793 + - uid: 22001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-3.5 + pos: 27.5,47.5 parent: 2 - - uid: 6794 + - uid: 22002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,4.5 + pos: 27.5,49.5 parent: 2 - - uid: 6795 + - uid: 22003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,13.5 + pos: 27.5,46.5 parent: 2 - - uid: 6796 + - uid: 22004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,13.5 + pos: 27.5,48.5 parent: 2 - - uid: 6797 + - uid: 22245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,13.5 + pos: 12.5,25.5 parent: 2 - - uid: 6798 + - uid: 22246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,13.5 + pos: 11.5,25.5 parent: 2 - - uid: 6799 + - uid: 22247 components: - type: Transform - pos: 51.5,52.5 + pos: 11.5,26.5 parent: 2 - - uid: 6800 + - uid: 22248 components: - type: Transform - pos: 71.5,52.5 + pos: 9.5,26.5 parent: 2 - - uid: 6801 + - uid: 22249 components: - type: Transform - pos: 71.5,36.5 + pos: 8.5,26.5 parent: 2 - - uid: 6802 + - uid: 22250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,13.5 + pos: 10.5,26.5 parent: 2 - - uid: 7562 + - uid: 22257 components: - type: Transform - pos: 36.5,38.5 + pos: 11.5,24.5 parent: 2 - - uid: 18921 + - uid: 22258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 16504 - - uid: 18922 + pos: 11.5,23.5 + parent: 2 + - uid: 22260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,16.5 - parent: 16504 - - uid: 18923 + pos: 10.5,22.5 + parent: 2 + - uid: 22261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,15.5 - parent: 16504 - - uid: 18924 + pos: 8.5,22.5 + parent: 2 + - uid: 22262 components: - type: Transform - pos: -8.5,16.5 - parent: 16504 - - uid: 21647 + pos: 7.5,22.5 + parent: 2 + - uid: 22263 components: - type: Transform - pos: 26.5,52.5 + pos: 6.5,22.5 parent: 2 -- proto: DisposalMachineFrame - entities: - - uid: 6803 + - uid: 22269 components: - type: Transform - pos: 27.5,-8.5 + pos: 9.5,22.5 parent: 2 - - uid: 18925 + - uid: 22270 components: - type: Transform - pos: -7.5,8.5 - parent: 16504 - - uid: 18926 + pos: 6.5,23.5 + parent: 2 + - uid: 22271 components: - type: Transform - pos: 11.5,-0.5 - parent: 16504 - - uid: 18927 + pos: 6.5,24.5 + parent: 2 + - uid: 22272 components: - type: Transform - pos: -10.5,13.5 - parent: 16504 -- proto: DisposalPipe - entities: - - uid: 2297 + pos: 8.5,25.5 + parent: 2 + - uid: 22282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,43.5 + pos: 10.5,23.5 parent: 2 - - uid: 2298 + - uid: 22293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,42.5 + pos: 10.5,21.5 parent: 2 - - uid: 2302 + - uid: 22294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,54.5 + pos: 10.5,20.5 parent: 2 - - uid: 2303 + - uid: 22414 components: - type: Transform - pos: 26.5,40.5 + pos: 47.5,-13.5 parent: 2 - - uid: 2375 + - uid: 22415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,50.5 + pos: 48.5,-13.5 parent: 2 - - uid: 2395 + - uid: 22416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,51.5 + pos: 49.5,-13.5 parent: 2 - - uid: 3644 + - uid: 22417 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,47.5 + pos: 50.5,-13.5 parent: 2 - - uid: 3645 + - uid: 22418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,49.5 + pos: 51.5,-13.5 parent: 2 - - uid: 3646 +- proto: CableMVStack + entities: + - uid: 5293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,40.5 + pos: 42.434853,62.65952 parent: 2 - - uid: 4981 +- proto: CableMVStack10 + entities: + - uid: 20743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,41.5 + pos: -11.306244,79.5473 + parent: 16527 +- proto: CableTerminal + entities: + - uid: 5294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,62.5 parent: 2 - - uid: 4982 + - uid: 5295 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,44.5 + rot: -1.5707963267948966 rad + pos: 54.5,60.5 parent: 2 - - uid: 4983 + - uid: 5296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,45.5 + rot: -1.5707963267948966 rad + pos: 54.5,61.5 parent: 2 - - uid: 6149 + - uid: 5297 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,37.5 + pos: 54.5,62.5 parent: 2 - - uid: 6220 + - uid: 5298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,39.5 + rot: -1.5707963267948966 rad + pos: 54.5,63.5 parent: 2 - - uid: 6263 + - uid: 5299 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,38.5 + rot: 1.5707963267948966 rad + pos: 50.5,63.5 parent: 2 - - uid: 6437 + - uid: 5300 components: - type: Transform - pos: 26.5,39.5 + rot: 1.5707963267948966 rad + pos: 50.5,61.5 parent: 2 - - uid: 6804 + - uid: 5301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,10.5 + rot: 1.5707963267948966 rad + pos: 50.5,60.5 parent: 2 - - uid: 6805 + - uid: 5302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,11.5 + rot: -1.5707963267948966 rad + pos: 10.5,43.5 parent: 2 - - uid: 6806 + - uid: 5303 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,62.5 + pos: 74.5,17.5 parent: 2 - - uid: 6807 + - uid: 5304 components: - type: Transform - pos: 36.5,-6.5 + rot: 1.5707963267948966 rad + pos: 54.5,48.5 parent: 2 - - uid: 6808 + - uid: 5305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,3.5 + rot: -1.5707963267948966 rad + pos: 49.5,-17.5 parent: 2 - - uid: 6809 + - uid: 20744 components: - type: Transform - pos: 36.5,-4.5 + rot: -1.5707963267948966 rad + pos: -23.5,25.5 + parent: 16527 + - uid: 21407 + components: + - type: Transform + pos: 29.5,-38.5 parent: 2 - - uid: 6810 + - uid: 21513 components: - type: Transform - pos: 36.5,-2.5 + pos: 30.5,-38.5 parent: 2 - - uid: 6811 +- proto: CandleBlackSmallInfinite + entities: + - uid: 22251 components: - type: Transform - pos: 45.5,-9.5 + pos: 73.48771,60.5649 parent: 2 - - uid: 6812 + - uid: 22252 components: - type: Transform - pos: 36.5,-3.5 + pos: 76.51896,63.549274 parent: 2 - - uid: 6813 + - uid: 22253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,64.5 + pos: 79.503334,60.5024 parent: 2 - - uid: 6814 + - uid: 22254 components: - type: Transform - pos: 48.5,58.5 + pos: 76.42521,57.5649 parent: 2 - - uid: 6815 + - uid: 22266 components: - type: Transform - pos: 48.5,57.5 + pos: 26.495583,47.54221 parent: 2 - - uid: 6816 + - uid: 22283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,56.5 + pos: 19.25549,47.337704 parent: 2 - - uid: 6817 + - uid: 22284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,56.5 + pos: 19.66174,47.743954 parent: 2 - - uid: 6818 + - uid: 22285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,52.5 + pos: 16.38049,48.88458 parent: 2 - - uid: 6819 + - uid: 22286 components: - type: Transform - pos: 47.5,66.5 + pos: 15.458614,49.587704 parent: 2 - - uid: 6820 + - uid: 22287 components: - type: Transform - pos: 47.5,68.5 + pos: 16.16174,43.650204 parent: 2 - - uid: 6821 + - uid: 22288 components: - type: Transform - pos: 47.5,69.5 + pos: 16.63049,45.181454 parent: 2 - - uid: 6822 + - uid: 22289 components: - type: Transform - pos: 47.5,70.5 + pos: 21.09924,51.666508 parent: 2 - - uid: 6823 + - uid: 22290 components: - type: Transform - pos: 47.5,71.5 + pos: 23.279367,51.541508 parent: 2 - - uid: 6824 + - uid: 22291 components: - type: Transform - pos: 47.5,72.5 + pos: 29.17732,51.588383 parent: 2 - - uid: 6825 + - uid: 22292 components: - type: Transform - pos: 47.5,67.5 + pos: 31.39607,51.463383 parent: 2 - - uid: 6826 + - uid: 22300 components: - type: Transform - pos: 47.5,73.5 + pos: 24.619537,26.150465 parent: 2 - - uid: 6827 + - uid: 22301 components: - type: Transform - pos: 48.5,59.5 + pos: 23.994537,27.66609 parent: 2 - - uid: 6828 + - uid: 22302 components: - type: Transform - pos: 47.5,39.5 + pos: 25.072662,27.60359 parent: 2 - - uid: 6829 +- proto: CandleBlueSmallInfinite + entities: + - uid: 22265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,23.5 + pos: 23.308083,47.432835 parent: 2 - - uid: 6830 +- proto: CandleGreenSmallInfinite + entities: + - uid: 22267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,21.5 + pos: 25.401833,47.47971 parent: 2 - - uid: 6831 +- proto: CandlePurpleSmallInfinite + entities: + - uid: 22264 components: - type: Transform - pos: 52.5,22.5 + pos: 24.714333,47.557835 parent: 2 - - uid: 6832 +- proto: CandleRedInfinite + entities: + - uid: 20745 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-8.5 - parent: 2 - - uid: 6833 + pos: -51.4718,49.282288 + parent: 16527 + - uid: 20746 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,52.5 - parent: 2 - - uid: 6834 + pos: -50.50305,48.90735 + parent: 16527 + - uid: 20747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 2 - - uid: 6835 + rot: -1.5707963267948966 rad + pos: -51.768646,47.579163 + parent: 16527 + - uid: 20748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.37805,49.141663 + parent: 16527 + - uid: 20749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.75302,47.797913 + parent: 16527 + - uid: 20750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.4718,48.110413 + parent: 16527 +- proto: CandleRedSmallInfinite + entities: + - uid: 20751 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,5.5 - parent: 2 - - uid: 6836 + pos: -35.91989,34.117126 + parent: 16527 +- proto: CandyBowl + entities: + - uid: 5310 components: - type: Transform - pos: 6.5,2.5 + pos: 40.45637,2.434419 parent: 2 - - uid: 6837 +- proto: CandyBucket + entities: + - uid: 5311 components: - type: Transform - pos: 6.5,3.5 + pos: 9.496851,-6.3407125 parent: 2 - - uid: 6838 +- proto: CannabisSeeds + entities: + - uid: 5312 components: - type: Transform - pos: 6.5,4.5 + pos: 59.383396,41.321583 parent: 2 - - uid: 6839 + - uid: 5313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 + pos: 68.63592,26.742638 parent: 2 - - uid: 6840 + - uid: 5314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,7.5 + pos: 66.60467,24.695763 parent: 2 - - uid: 6841 + - uid: 5315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,8.5 + pos: 59.64902,39.430958 parent: 2 - - uid: 6842 + - uid: 5316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,9.5 + pos: 59.36777,40.305958 parent: 2 - - uid: 6843 + - uid: 21361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,9.5 + pos: 42.47398,53.352528 parent: 2 - - uid: 6844 +- proto: CannedApplauseInstrument + entities: + - uid: 5317 components: - type: Transform - pos: 9.5,10.5 + pos: 11.618738,-17.39088 parent: 2 - - uid: 6845 +- proto: CapacitorStockPart + entities: + - uid: 5318 components: - type: Transform - pos: 9.5,11.5 + pos: 62.638855,49.326077 parent: 2 - - uid: 6846 + - uid: 20752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 2 - - uid: 6847 + pos: 25.603254,23.642792 + parent: 16527 + - uid: 20753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,14.5 - parent: 2 - - uid: 6848 + pos: 25.394922,23.569876 + parent: 16527 + - uid: 20754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 2 - - uid: 6849 + pos: 23.342838,24.601126 + parent: 16527 + - uid: 20755 components: - type: Transform - pos: 9.5,12.5 - parent: 2 - - uid: 6850 + pos: 37.541164,32.55561 + parent: 16527 + - uid: 20756 components: - type: Transform - pos: 64.5,48.5 - parent: 2 - - uid: 6851 + pos: -9.655304,69.384705 + parent: 16527 + - uid: 20757 components: - type: Transform - pos: 53.5,50.5 - parent: 2 - - uid: 6852 + pos: -9.592773,69.65033 + parent: 16527 + - uid: 20758 components: - type: Transform - pos: 53.5,49.5 - parent: 2 - - uid: 6853 + pos: -9.405304,69.36908 + parent: 16527 + - uid: 20759 components: - type: Transform - pos: 53.5,48.5 - parent: 2 - - uid: 6854 + pos: -9.467804,69.384705 + parent: 16527 +- proto: CaptainIDCard + entities: + - uid: 5319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,18.5 + pos: 32.547745,22.643578 parent: 2 - - uid: 6855 +- proto: CarbonDioxideCanister + entities: + - uid: 5320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,18.5 + pos: 90.5,10.5 parent: 2 - - uid: 6856 + - uid: 20760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,18.5 + pos: -7.5,38.5 + parent: 16527 +- proto: Carpet + entities: + - uid: 5321 + components: + - type: Transform + pos: 50.5,27.5 parent: 2 - - uid: 6857 + - uid: 5322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,18.5 + pos: 51.5,33.5 parent: 2 - - uid: 6858 + - uid: 5323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,18.5 + pos: 51.5,32.5 parent: 2 - - uid: 6859 + - uid: 5324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,18.5 + pos: 52.5,33.5 parent: 2 - - uid: 6860 + - uid: 5325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,18.5 + pos: 52.5,32.5 parent: 2 - - uid: 6861 + - uid: 5326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,51.5 + pos: 81.5,32.5 parent: 2 - - uid: 6862 + - uid: 5327 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,47.5 + pos: 74.5,32.5 parent: 2 - - uid: 6863 + - uid: 5328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,46.5 + rot: -1.5707963267948966 rad + pos: 75.5,32.5 parent: 2 - - uid: 6864 + - uid: 5329 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,45.5 + pos: 76.5,32.5 parent: 2 - - uid: 6865 + - uid: 5330 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,45.5 + pos: 77.5,32.5 parent: 2 - - uid: 6866 + - uid: 5331 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,45.5 + pos: 78.5,32.5 parent: 2 - - uid: 6867 + - uid: 5332 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,45.5 + pos: 79.5,32.5 parent: 2 - - uid: 6868 + - uid: 5333 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,45.5 + pos: 79.5,33.5 parent: 2 - - uid: 6869 + - uid: 5334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,44.5 + rot: -1.5707963267948966 rad + pos: 79.5,31.5 parent: 2 - - uid: 6870 + - uid: 5335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,43.5 + rot: -1.5707963267948966 rad + pos: 80.5,32.5 parent: 2 - - uid: 6871 + - uid: 5336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,42.5 + pos: 79.5,30.5 parent: 2 - - uid: 6872 + - uid: 5337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,41.5 + rot: -1.5707963267948966 rad + pos: 79.5,34.5 parent: 2 - - uid: 6873 + - uid: 5338 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,40.5 + pos: 83.5,32.5 parent: 2 - - uid: 6874 + - uid: 5339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,38.5 + pos: 82.5,32.5 parent: 2 - - uid: 6875 + - uid: 5340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,38.5 + pos: 49.5,27.5 parent: 2 - - uid: 6876 +- proto: CarpetBlack + entities: + - uid: 3606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,38.5 + pos: 25.5,47.5 parent: 2 - - uid: 6877 + - uid: 5218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,38.5 + pos: 25.5,46.5 parent: 2 - - uid: 6878 + - uid: 5219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,38.5 + pos: 23.5,47.5 parent: 2 - - uid: 6879 + - uid: 5220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,38.5 + pos: 24.5,47.5 parent: 2 - - uid: 6880 + - uid: 5222 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,38.5 + pos: 14.5,54.5 parent: 2 - - uid: 6881 + - uid: 5223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,38.5 + pos: 26.5,47.5 parent: 2 - - uid: 6882 + - uid: 5224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,37.5 + pos: 26.5,46.5 parent: 2 - - uid: 6883 + - uid: 5306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,37.5 + pos: 26.5,48.5 parent: 2 - - uid: 6884 + - uid: 5341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,37.5 + pos: 23.5,25.5 parent: 2 - - uid: 6885 + - uid: 5342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,37.5 + pos: 24.5,26.5 parent: 2 - - uid: 6886 + - uid: 5343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,37.5 + pos: 25.5,25.5 parent: 2 - - uid: 6887 + - uid: 5344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,37.5 + pos: 23.5,24.5 parent: 2 - - uid: 6888 + - uid: 5345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,37.5 + pos: 25.5,24.5 parent: 2 - - uid: 6889 + - uid: 5346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,37.5 + pos: 23.5,26.5 parent: 2 - - uid: 6890 + - uid: 5347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,37.5 + pos: 24.5,25.5 parent: 2 - - uid: 6891 + - uid: 5348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,37.5 + pos: 24.5,24.5 parent: 2 - - uid: 6892 + - uid: 5349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,37.5 - parent: 2 - - uid: 6893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,37.5 + pos: 25.5,26.5 parent: 2 - - uid: 6894 + - uid: 5818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,37.5 + pos: 15.5,47.5 parent: 2 - - uid: 6895 + - uid: 5820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,37.5 + rot: 1.5707963267948966 rad + pos: 15.5,43.5 parent: 2 - - uid: 6896 + - uid: 5830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,37.5 + pos: 14.5,48.5 parent: 2 - - uid: 6897 + - uid: 5831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,37.5 + pos: 14.5,47.5 parent: 2 - - uid: 6899 + - uid: 5931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,37.5 + pos: 25.5,48.5 parent: 2 - - uid: 6900 + - uid: 5932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,37.5 + pos: 24.5,46.5 parent: 2 - - uid: 6901 + - uid: 6517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,37.5 + rot: 1.5707963267948966 rad + pos: 15.5,45.5 parent: 2 - - uid: 6902 + - uid: 6518 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,37.5 + pos: 33.5,42.5 parent: 2 - - uid: 6903 + - uid: 6520 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,35.5 + pos: 23.5,46.5 parent: 2 - - uid: 6904 + - uid: 6522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,34.5 + rot: -1.5707963267948966 rad + pos: 14.5,53.5 parent: 2 - - uid: 6905 + - uid: 6523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,33.5 + pos: 24.5,48.5 parent: 2 - - uid: 6906 + - uid: 7565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,31.5 + pos: 23.5,48.5 parent: 2 - - uid: 6907 + - uid: 9953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,30.5 + pos: 16.5,48.5 parent: 2 - - uid: 6908 + - uid: 11959 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,29.5 + rot: 1.5707963267948966 rad + pos: 15.5,44.5 parent: 2 - - uid: 6909 + - uid: 13902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,28.5 + rot: 1.5707963267948966 rad + pos: 16.5,44.5 parent: 2 - - uid: 6910 + - uid: 13916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,27.5 + pos: 17.5,50.5 parent: 2 - - uid: 6911 + - uid: 13919 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,24.5 + pos: 15.5,49.5 parent: 2 - - uid: 6912 + - uid: 13923 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,23.5 + rot: 1.5707963267948966 rad + pos: 17.5,45.5 parent: 2 - - uid: 6913 + - uid: 13924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,20.5 + pos: 14.5,50.5 parent: 2 - - uid: 6914 + - uid: 13925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,19.5 + rot: 1.5707963267948966 rad + pos: 17.5,43.5 parent: 2 - - uid: 6915 + - uid: 13926 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,18.5 + pos: 17.5,44.5 parent: 2 - - uid: 6916 + - uid: 13927 components: - type: Transform - pos: 3.5,19.5 + pos: 17.5,48.5 parent: 2 - - uid: 6917 + - uid: 13929 components: - type: Transform - pos: 3.5,20.5 + pos: 15.5,50.5 parent: 2 - - uid: 6918 + - uid: 13930 components: - type: Transform - pos: 3.5,21.5 + pos: 16.5,49.5 parent: 2 - - uid: 6919 + - uid: 13937 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,22.5 - parent: 2 - - uid: 6920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,21.5 - parent: 2 - - uid: 6921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,20.5 + pos: 33.5,40.5 parent: 2 - - uid: 6926 + - uid: 16026 components: - type: Transform - pos: 26.5,38.5 + rot: -1.5707963267948966 rad + pos: 15.5,54.5 parent: 2 - - uid: 6940 + - uid: 20761 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,32.5 - parent: 2 - - uid: 6941 + pos: 12.5,22.5 + parent: 16527 + - uid: 20762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 2 - - uid: 6942 + pos: 16.5,26.5 + parent: 16527 + - uid: 20763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 2 - - uid: 6943 + pos: 16.5,27.5 + parent: 16527 + - uid: 20764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,32.5 - parent: 2 - - uid: 6944 + pos: 17.5,26.5 + parent: 16527 + - uid: 20765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,32.5 - parent: 2 - - uid: 6945 + pos: 17.5,27.5 + parent: 16527 + - uid: 20766 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,32.5 - parent: 2 - - uid: 6946 + pos: 11.5,24.5 + parent: 16527 + - uid: 20767 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 2 - - uid: 6947 + pos: 11.5,22.5 + parent: 16527 + - uid: 20768 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,32.5 - parent: 2 - - uid: 6948 + pos: 12.5,26.5 + parent: 16527 + - uid: 20769 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,32.5 - parent: 2 - - uid: 6949 + pos: 11.5,26.5 + parent: 16527 + - uid: 20770 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,21.5 - parent: 2 - - uid: 6950 + pos: 17.5,23.5 + parent: 16527 + - uid: 20771 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,21.5 - parent: 2 - - uid: 6951 + pos: 17.5,22.5 + parent: 16527 + - uid: 21773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,21.5 + pos: 14.5,49.5 parent: 2 - - uid: 6952 + - uid: 21786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,21.5 + pos: 16.5,50.5 parent: 2 - - uid: 6953 + - uid: 21808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,21.5 + pos: 17.5,47.5 parent: 2 - - uid: 6954 + - uid: 21846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,21.5 + pos: 16.5,51.5 parent: 2 - - uid: 6955 + - uid: 21847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,25.5 + pos: 15.5,51.5 parent: 2 - - uid: 6956 + - uid: 21850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,25.5 + pos: 16.5,47.5 parent: 2 - - uid: 6957 + - uid: 21851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,25.5 + pos: 17.5,51.5 parent: 2 - - uid: 6958 + - uid: 21852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,25.5 + pos: 17.5,49.5 parent: 2 - - uid: 6959 + - uid: 21854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,25.5 + pos: 15.5,48.5 parent: 2 - - uid: 6960 + - uid: 21856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,15.5 + pos: 16.5,48.5 parent: 2 - - uid: 6961 + - uid: 21859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,16.5 + pos: 14.5,51.5 parent: 2 - - uid: 6962 + - uid: 21860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,17.5 + rot: 1.5707963267948966 rad + pos: 16.5,45.5 parent: 2 - - uid: 6963 + - uid: 21865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-14.5 + rot: 1.5707963267948966 rad + pos: 16.5,43.5 parent: 2 - - uid: 6964 +- proto: CarpetBlue + entities: + - uid: 5350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-13.5 + pos: 16.5,5.5 parent: 2 - - uid: 6965 + - uid: 5351 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-12.5 + rot: 1.5707963267948966 rad + pos: 15.5,4.5 parent: 2 - - uid: 6966 + - uid: 5352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-11.5 + rot: 1.5707963267948966 rad + pos: 16.5,4.5 parent: 2 - - uid: 6967 + - uid: 5353 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-10.5 + pos: 7.5,38.5 parent: 2 - - uid: 6968 + - uid: 5354 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-9.5 + pos: 7.5,37.5 parent: 2 - - uid: 6969 + - uid: 5355 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-8.5 + pos: 8.5,38.5 parent: 2 - - uid: 6970 + - uid: 5356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 + pos: 8.5,37.5 parent: 2 - - uid: 6971 + - uid: 5357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-6.5 + pos: 9.5,38.5 parent: 2 - - uid: 6972 + - uid: 5358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-5.5 + pos: 9.5,37.5 parent: 2 - - uid: 6973 + - uid: 5359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-4.5 + rot: -1.5707963267948966 rad + pos: 76.5,41.5 parent: 2 - - uid: 6974 + - uid: 5360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 + rot: -1.5707963267948966 rad + pos: 76.5,42.5 parent: 2 - - uid: 6975 + - uid: 5361 components: - type: Transform - pos: 22.5,-2.5 + rot: -1.5707963267948966 rad + pos: 77.5,41.5 parent: 2 - - uid: 6976 + - uid: 5362 components: - type: Transform - pos: 22.5,-1.5 + rot: -1.5707963267948966 rad + pos: 77.5,42.5 parent: 2 - - uid: 6977 + - uid: 5363 components: - type: Transform - pos: 22.5,-0.5 + rot: -1.5707963267948966 rad + pos: 78.5,41.5 parent: 2 - - uid: 6978 + - uid: 5364 components: - type: Transform - pos: 21.5,1.5 + rot: -1.5707963267948966 rad + pos: 78.5,42.5 parent: 2 - - uid: 6979 + - uid: 5365 components: - type: Transform - pos: 21.5,2.5 + rot: -1.5707963267948966 rad + pos: 79.5,41.5 parent: 2 - - uid: 6980 + - uid: 5366 components: - type: Transform - pos: 21.5,3.5 + rot: -1.5707963267948966 rad + pos: 79.5,42.5 parent: 2 - - uid: 6981 +- proto: CarpetChapel + entities: + - uid: 5367 components: - type: Transform - pos: 20.5,7.5 + rot: -1.5707963267948966 rad + pos: 82.5,31.5 parent: 2 - - uid: 6982 + - uid: 5368 components: - type: Transform - pos: 20.5,6.5 + pos: 82.5,30.5 parent: 2 - - uid: 6983 + - uid: 5369 components: - type: Transform - pos: 20.5,5.5 + rot: 1.5707963267948966 rad + pos: 81.5,30.5 parent: 2 - - uid: 6984 + - uid: 5370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,4.5 + rot: 3.141592653589793 rad + pos: 77.5,31.5 parent: 2 - - uid: 6985 + - uid: 5371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,4.5 + pos: 78.5,27.5 parent: 2 - - uid: 6986 + - uid: 5372 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,4.5 + pos: 78.5,28.5 parent: 2 - - uid: 6987 + - uid: 5373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,4.5 + rot: 3.141592653589793 rad + pos: 79.5,28.5 parent: 2 - - uid: 6988 + - uid: 5374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,4.5 + rot: 1.5707963267948966 rad + pos: 79.5,27.5 parent: 2 - - uid: 6989 + - uid: 5375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,0.5 + pos: 74.5,30.5 parent: 2 - - uid: 6990 + - uid: 5376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,1.5 + pos: 74.5,33.5 parent: 2 - - uid: 6991 + - uid: 5377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,1.5 + pos: 76.5,30.5 parent: 2 - - uid: 6992 + - uid: 5378 components: - type: Transform - pos: 27.5,2.5 + pos: 76.5,33.5 parent: 2 - - uid: 6993 + - uid: 5379 components: - type: Transform - pos: 27.5,3.5 + pos: 78.5,30.5 parent: 2 - - uid: 6994 + - uid: 5380 components: - type: Transform - pos: 27.5,5.5 + pos: 78.5,33.5 parent: 2 - - uid: 6995 + - uid: 5381 components: - type: Transform - pos: 27.5,6.5 + rot: -1.5707963267948966 rad + pos: 76.5,31.5 parent: 2 - - uid: 6996 + - uid: 5382 components: - type: Transform - pos: 27.5,7.5 + rot: -1.5707963267948966 rad + pos: 74.5,31.5 parent: 2 - - uid: 6997 + - uid: 5383 components: - type: Transform - pos: 27.5,8.5 + rot: -1.5707963267948966 rad + pos: 74.5,34.5 parent: 2 - - uid: 6998 + - uid: 5384 components: - type: Transform - pos: 27.5,9.5 + rot: -1.5707963267948966 rad + pos: 76.5,34.5 parent: 2 - - uid: 6999 + - uid: 5385 components: - type: Transform - pos: 27.5,10.5 + rot: -1.5707963267948966 rad + pos: 78.5,34.5 parent: 2 - - uid: 7000 + - uid: 5386 components: - type: Transform - pos: 27.5,11.5 + rot: 3.141592653589793 rad + pos: 75.5,34.5 parent: 2 - - uid: 7001 + - uid: 5387 components: - type: Transform - pos: 27.5,12.5 + rot: 3.141592653589793 rad + pos: 77.5,34.5 parent: 2 - - uid: 7002 + - uid: 5388 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,2.5 + pos: 75.5,30.5 parent: 2 - - uid: 7003 + - uid: 5389 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,2.5 + pos: 75.5,33.5 parent: 2 - - uid: 7004 + - uid: 5390 components: - type: Transform - pos: 50.5,4.5 + rot: 1.5707963267948966 rad + pos: 77.5,33.5 parent: 2 - - uid: 7005 + - uid: 5391 components: - type: Transform - pos: 50.5,5.5 + rot: 3.141592653589793 rad + pos: 75.5,31.5 parent: 2 - - uid: 7006 + - uid: 5392 components: - type: Transform - pos: 50.5,6.5 + rot: -1.5707963267948966 rad + pos: 78.5,31.5 parent: 2 - - uid: 7007 + - uid: 5393 components: - type: Transform - pos: 50.5,7.5 + pos: 80.5,33.5 parent: 2 - - uid: 7008 + - uid: 5394 components: - type: Transform - pos: 50.5,8.5 + pos: 80.5,30.5 parent: 2 - - uid: 7009 + - uid: 5395 components: - type: Transform - pos: 50.5,9.5 + pos: 82.5,33.5 parent: 2 - - uid: 7010 + - uid: 5396 components: - type: Transform - pos: 50.5,10.5 + rot: -1.5707963267948966 rad + pos: 80.5,34.5 parent: 2 - - uid: 7011 + - uid: 5397 components: - type: Transform - pos: 50.5,11.5 + rot: -1.5707963267948966 rad + pos: 82.5,34.5 parent: 2 - - uid: 7012 + - uid: 5398 components: - type: Transform - pos: 50.5,12.5 + rot: -1.5707963267948966 rad + pos: 80.5,31.5 parent: 2 - - uid: 7013 + - uid: 5399 components: - type: Transform - pos: 37.5,-9.5 + rot: 3.141592653589793 rad + pos: 81.5,31.5 parent: 2 - - uid: 7014 + - uid: 5400 components: - type: Transform - pos: 47.5,5.5 + rot: 3.141592653589793 rad + pos: 81.5,34.5 parent: 2 - - uid: 7015 + - uid: 5401 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,11.5 + pos: 83.5,34.5 parent: 2 - - uid: 7016 + - uid: 5402 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,12.5 + pos: 83.5,31.5 parent: 2 - - uid: 7017 + - uid: 5403 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,13.5 + pos: 81.5,33.5 parent: 2 - - uid: 7018 + - uid: 5404 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,13.5 + pos: 83.5,33.5 parent: 2 - - uid: 7019 + - uid: 5405 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,13.5 + pos: 83.5,30.5 parent: 2 - - uid: 7020 + - uid: 5406 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,13.5 + pos: 77.5,30.5 parent: 2 - - uid: 7021 +- proto: CarpetCyan + entities: + - uid: 5308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,13.5 + rot: -1.5707963267948966 rad + pos: 31.5,47.5 parent: 2 - - uid: 7022 + - uid: 5504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,13.5 + rot: -1.5707963267948966 rad + pos: 30.5,47.5 parent: 2 - - uid: 7023 + - uid: 5817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,13.5 + pos: 19.5,47.5 parent: 2 - - uid: 7024 + - uid: 5825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,13.5 + pos: 20.5,46.5 parent: 2 - - uid: 7025 + - uid: 5827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,13.5 + pos: 20.5,47.5 parent: 2 - - uid: 7026 + - uid: 5832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,13.5 + pos: 21.5,46.5 parent: 2 - - uid: 7027 + - uid: 6525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,13.5 + pos: 19.5,48.5 parent: 2 - - uid: 7028 + - uid: 6526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,13.5 + pos: 19.5,46.5 parent: 2 - - uid: 7029 + - uid: 6528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,13.5 + pos: 20.5,48.5 parent: 2 - - uid: 7030 + - uid: 13915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,13.5 + pos: 21.5,48.5 parent: 2 - - uid: 7031 + - uid: 16228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,13.5 + pos: 21.5,47.5 parent: 2 - - uid: 7032 +- proto: CarpetGreen + entities: + - uid: 5407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,13.5 + pos: 3.5,38.5 parent: 2 - - uid: 7033 + - uid: 5408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,13.5 + pos: 3.5,37.5 parent: 2 - - uid: 7034 + - uid: 5409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,13.5 + pos: 4.5,38.5 parent: 2 - - uid: 7035 + - uid: 5410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,13.5 + pos: 4.5,37.5 parent: 2 - - uid: 7036 + - uid: 5411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,13.5 + pos: 5.5,38.5 parent: 2 - - uid: 7037 + - uid: 5412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-10.5 + pos: 5.5,37.5 parent: 2 - - uid: 7038 + - uid: 5413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-10.5 + pos: 63.5,62.5 parent: 2 - - uid: 7039 + - uid: 5414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-10.5 + pos: 64.5,64.5 parent: 2 - - uid: 7040 + - uid: 5415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-11.5 + pos: 64.5,63.5 parent: 2 - - uid: 7041 + - uid: 5416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-12.5 + pos: 65.5,64.5 parent: 2 - - uid: 7042 + - uid: 5417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-12.5 + pos: 65.5,63.5 parent: 2 - - uid: 7043 + - uid: 5418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-12.5 + pos: 66.5,64.5 parent: 2 - - uid: 7044 + - uid: 5419 components: - type: Transform - pos: 45.5,-11.5 + pos: 66.5,63.5 parent: 2 - - uid: 7045 + - uid: 5420 components: - type: Transform - pos: 32.5,-6.5 + pos: 63.5,64.5 parent: 2 - - uid: 7046 + - uid: 5421 components: - type: Transform - pos: 32.5,-5.5 + pos: 63.5,63.5 parent: 2 - - uid: 7047 + - uid: 5422 components: - type: Transform - pos: 32.5,-4.5 + pos: 63.5,61.5 parent: 2 - - uid: 7048 + - uid: 20772 components: - type: Transform - pos: 32.5,-2.5 - parent: 2 - - uid: 7049 + pos: -13.5,58.5 + parent: 16527 + - uid: 20773 components: - type: Transform - pos: 32.5,-1.5 - parent: 2 - - uid: 7050 + pos: -13.5,57.5 + parent: 16527 + - uid: 20774 components: - type: Transform - pos: 32.5,-0.5 - parent: 2 - - uid: 7051 + pos: -13.5,56.5 + parent: 16527 + - uid: 20775 components: - type: Transform - pos: 32.5,0.5 - parent: 2 - - uid: 7052 + pos: -13.5,55.5 + parent: 16527 + - uid: 20776 components: - type: Transform - pos: 32.5,1.5 - parent: 2 - - uid: 7053 + pos: -12.5,58.5 + parent: 16527 + - uid: 20777 components: - type: Transform - pos: 32.5,2.5 - parent: 2 - - uid: 7054 + pos: -12.5,57.5 + parent: 16527 + - uid: 20778 components: - type: Transform - pos: 32.5,3.5 - parent: 2 - - uid: 7055 + pos: -12.5,56.5 + parent: 16527 + - uid: 20779 components: - type: Transform - pos: 32.5,4.5 - parent: 2 - - uid: 7056 + pos: -12.5,55.5 + parent: 16527 + - uid: 20780 components: - type: Transform - pos: 32.5,5.5 - parent: 2 - - uid: 7057 + pos: -11.5,58.5 + parent: 16527 + - uid: 20781 components: - type: Transform - pos: 32.5,7.5 - parent: 2 - - uid: 7058 + pos: -11.5,57.5 + parent: 16527 + - uid: 20782 components: - type: Transform - pos: 32.5,8.5 - parent: 2 - - uid: 7059 + pos: -11.5,56.5 + parent: 16527 + - uid: 20783 components: - type: Transform - pos: 32.5,9.5 - parent: 2 - - uid: 7060 + pos: -11.5,55.5 + parent: 16527 +- proto: CarpetOrange + entities: + - uid: 5423 components: - type: Transform - pos: 32.5,10.5 + rot: 3.141592653589793 rad + pos: 39.5,68.5 parent: 2 - - uid: 7061 + - uid: 5424 components: - type: Transform - pos: 32.5,11.5 + pos: 2.5,1.5 parent: 2 - - uid: 7062 + - uid: 5425 components: - type: Transform - pos: 32.5,12.5 + pos: 1.5,1.5 parent: 2 - - uid: 7063 + - uid: 5426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,13.5 + rot: 3.141592653589793 rad + pos: 59.5,65.5 parent: 2 - - uid: 7064 + - uid: 5427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,13.5 + rot: 3.141592653589793 rad + pos: 59.5,64.5 parent: 2 - - uid: 7065 + - uid: 5428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 + rot: 3.141592653589793 rad + pos: 60.5,65.5 parent: 2 - - uid: 7066 + - uid: 5429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,13.5 + rot: 3.141592653589793 rad + pos: 60.5,64.5 parent: 2 - - uid: 7067 + - uid: 5430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,13.5 + pos: 65.5,59.5 parent: 2 - - uid: 7068 + - uid: 5431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,13.5 + pos: 65.5,58.5 parent: 2 - - uid: 7069 + - uid: 5432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,13.5 + pos: 66.5,59.5 parent: 2 - - uid: 7070 + - uid: 5433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,13.5 + pos: 66.5,58.5 parent: 2 - - uid: 7071 + - uid: 5434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,13.5 + pos: 39.5,67.5 parent: 2 - - uid: 7072 + - uid: 5435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,13.5 + rot: 3.141592653589793 rad + pos: 40.5,68.5 parent: 2 - - uid: 7073 + - uid: 5436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,13.5 + rot: 3.141592653589793 rad + pos: 38.5,68.5 parent: 2 - - uid: 7074 + - uid: 5437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,13.5 + rot: 3.141592653589793 rad + pos: 37.5,68.5 parent: 2 - - uid: 7075 +- proto: CarpetPurple + entities: + - uid: 5217 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,6.5 + pos: 33.5,44.5 parent: 2 - - uid: 7076 + - uid: 6519 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,6.5 + pos: 33.5,46.5 parent: 2 - - uid: 7077 +- proto: CarpetSBlue + entities: + - uid: 5438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,6.5 + pos: 17.5,21.5 parent: 2 - - uid: 7078 + - uid: 5439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,6.5 + pos: 18.5,19.5 parent: 2 - - uid: 7079 + - uid: 5440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,6.5 + pos: 18.5,20.5 parent: 2 - - uid: 7080 + - uid: 5441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,13.5 + pos: 18.5,21.5 parent: 2 - - uid: 7081 + - uid: 5442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,13.5 + pos: 19.5,21.5 parent: 2 - - uid: 7082 + - uid: 5443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,13.5 + pos: 19.5,20.5 parent: 2 - - uid: 7083 + - uid: 5444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,13.5 + pos: 19.5,22.5 parent: 2 - - uid: 7084 + - uid: 5445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,13.5 + pos: 19.5,19.5 parent: 2 - - uid: 7085 + - uid: 5764 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,13.5 + pos: 30.5,44.5 parent: 2 - - uid: 7086 + - uid: 5808 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,13.5 + pos: 31.5,42.5 parent: 2 - - uid: 7087 + - uid: 5810 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,13.5 + pos: 31.5,44.5 parent: 2 - - uid: 7088 + - uid: 14008 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,13.5 + pos: 30.5,42.5 parent: 2 - - uid: 7089 +- proto: CarvedPumpkinSmall + entities: + - uid: 22268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,13.5 + pos: 24.31805,47.57346 parent: 2 - - uid: 7090 +- proto: Catwalk + entities: + - uid: 537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,13.5 + pos: 56.5,-34.5 parent: 2 - - uid: 7091 + - uid: 1509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,13.5 + pos: 56.5,-32.5 parent: 2 - - uid: 7092 + - uid: 2405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,13.5 + rot: 3.141592653589793 rad + pos: -6.5,53.5 parent: 2 - - uid: 7093 + - uid: 2406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,13.5 + rot: 3.141592653589793 rad + pos: 0.5,45.5 parent: 2 - - uid: 7094 + - uid: 2407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,13.5 + rot: 3.141592653589793 rad + pos: -3.5,55.5 parent: 2 - - uid: 7095 + - uid: 2408 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,14.5 + pos: -3.5,54.5 parent: 2 - - uid: 7096 + - uid: 2409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,32.5 + rot: 3.141592653589793 rad + pos: 0.5,55.5 parent: 2 - - uid: 7097 + - uid: 2410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,32.5 + rot: 3.141592653589793 rad + pos: 4.5,55.5 parent: 2 - - uid: 7098 + - uid: 2550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,32.5 + rot: 3.141592653589793 rad + pos: -3.5,46.5 parent: 2 - - uid: 7099 + - uid: 3589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,32.5 + rot: 3.141592653589793 rad + pos: 4.5,45.5 parent: 2 - - uid: 7103 + - uid: 3599 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,37.5 + pos: 4.5,46.5 parent: 2 - - uid: 7104 + - uid: 3604 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,33.5 + pos: 0.5,54.5 parent: 2 - - uid: 7105 + - uid: 3635 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,34.5 + pos: -6.5,46.5 parent: 2 - - uid: 7106 + - uid: 3636 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,35.5 + pos: -6.5,45.5 parent: 2 - - uid: 7107 + - uid: 3637 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,36.5 + pos: -6.5,47.5 parent: 2 - - uid: 7108 + - uid: 3638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,23.5 + rot: 3.141592653589793 rad + pos: -6.5,48.5 parent: 2 - - uid: 7109 + - uid: 3639 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,24.5 + pos: -6.5,49.5 parent: 2 - - uid: 7110 + - uid: 3640 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,25.5 + pos: -6.5,50.5 parent: 2 - - uid: 7111 + - uid: 3641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,26.5 + rot: 3.141592653589793 rad + pos: -7.5,50.5 parent: 2 - - uid: 7112 + - uid: 3642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,26.5 + rot: 3.141592653589793 rad + pos: 0.5,46.5 parent: 2 - - uid: 7113 + - uid: 3667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,26.5 + pos: 53.5,-32.5 parent: 2 - - uid: 7114 + - uid: 3678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,26.5 + pos: 51.5,-30.5 parent: 2 - - uid: 7115 + - uid: 3686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,26.5 + pos: 51.5,-22.5 parent: 2 - - uid: 7116 + - uid: 3687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,26.5 + pos: 51.5,-21.5 parent: 2 - - uid: 7117 + - uid: 3688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,26.5 + pos: 51.5,-24.5 parent: 2 - - uid: 7118 + - uid: 3896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,26.5 + pos: 55.5,-32.5 parent: 2 - - uid: 7119 + - uid: 4121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,26.5 + pos: 51.5,-25.5 parent: 2 - - uid: 7120 + - uid: 4122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,26.5 + pos: 51.5,-27.5 parent: 2 - - uid: 7121 + - uid: 4123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,27.5 + pos: 51.5,-26.5 parent: 2 - - uid: 7122 + - uid: 4124 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,28.5 + pos: 51.5,-23.5 parent: 2 - - uid: 7123 + - uid: 4125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,29.5 + pos: 51.5,-28.5 parent: 2 - - uid: 7124 + - uid: 4127 + components: + - type: Transform + pos: 51.5,-29.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 51.5,-31.5 + parent: 2 + - uid: 4986 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,30.5 + pos: -6.5,52.5 parent: 2 - - uid: 7125 + - uid: 5006 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,31.5 + pos: -3.5,45.5 parent: 2 - - uid: 7126 + - uid: 5446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,22.5 + pos: 27.5,71.5 parent: 2 - - uid: 7127 + - uid: 5447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,22.5 + pos: 51.5,76.5 parent: 2 - - uid: 7128 + - uid: 5448 components: - type: Transform - pos: 14.5,82.5 + pos: 51.5,78.5 parent: 2 - - uid: 7129 + - uid: 5449 components: - type: Transform - pos: 14.5,81.5 + pos: 32.5,19.5 parent: 2 - - uid: 7130 + - uid: 5450 components: - type: Transform - pos: 14.5,80.5 + pos: 53.5,77.5 parent: 2 - - uid: 7131 + - uid: 5451 components: - type: Transform - pos: 14.5,79.5 + pos: 52.5,79.5 parent: 2 - - uid: 7132 + - uid: 5452 components: - type: Transform - pos: 14.5,78.5 + pos: 52.5,78.5 parent: 2 - - uid: 7133 + - uid: 5453 components: - type: Transform - pos: 14.5,77.5 + pos: 51.5,77.5 parent: 2 - - uid: 7134 + - uid: 5454 components: - type: Transform - pos: 14.5,76.5 + pos: 28.5,71.5 parent: 2 - - uid: 7135 + - uid: 5455 components: - type: Transform - pos: 14.5,75.5 + pos: 46.5,93.5 parent: 2 - - uid: 7136 + - uid: 5456 components: - type: Transform - pos: 14.5,74.5 + pos: 46.5,91.5 parent: 2 - - uid: 7137 + - uid: 5457 components: - type: Transform - pos: 14.5,73.5 + pos: 46.5,95.5 parent: 2 - - uid: 7138 + - uid: 5458 components: - type: Transform - pos: 14.5,72.5 + rot: 3.141592653589793 rad + pos: 51.5,83.5 parent: 2 - - uid: 7139 + - uid: 5459 components: - type: Transform - pos: 14.5,71.5 + rot: 3.141592653589793 rad + pos: 51.5,82.5 parent: 2 - - uid: 7140 + - uid: 5460 components: - type: Transform - pos: 14.5,70.5 + pos: 53.5,79.5 parent: 2 - - uid: 7141 + - uid: 5461 components: - type: Transform - pos: 14.5,69.5 + pos: 46.5,94.5 parent: 2 - - uid: 7142 + - uid: 5462 components: - type: Transform - pos: 14.5,68.5 + pos: 46.5,92.5 parent: 2 - - uid: 7143 + - uid: 5463 components: - type: Transform - pos: 14.5,67.5 + pos: 46.5,96.5 parent: 2 - - uid: 7144 + - uid: 5464 components: - type: Transform - pos: 14.5,66.5 + pos: 51.5,79.5 parent: 2 - - uid: 7145 + - uid: 5465 components: - type: Transform - pos: 14.5,65.5 + pos: 53.5,76.5 parent: 2 - - uid: 7146 + - uid: 5466 components: - type: Transform - pos: 14.5,63.5 + pos: 52.5,76.5 parent: 2 - - uid: 7147 + - uid: 5467 components: - type: Transform - pos: 14.5,62.5 + pos: 45.5,57.5 parent: 2 - - uid: 7148 + - uid: 5468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,61.5 + pos: 6.5,-0.5 parent: 2 - - uid: 7149 + - uid: 5469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,61.5 + pos: 11.5,-12.5 parent: 2 - - uid: 7150 + - uid: 5470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,61.5 + pos: 10.5,-7.5 parent: 2 - - uid: 7151 + - uid: 5471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,60.5 + pos: 10.5,-8.5 parent: 2 - - uid: 7152 + - uid: 5472 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,59.5 + pos: 14.5,64.5 parent: 2 - - uid: 7153 + - uid: 5473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,58.5 + pos: 50.5,79.5 parent: 2 - - uid: 7154 + - uid: 5474 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,57.5 + pos: 50.5,78.5 parent: 2 - - uid: 7155 + - uid: 5475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,56.5 + pos: 50.5,77.5 parent: 2 - - uid: 7156 + - uid: 5476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,55.5 + pos: 53.5,78.5 parent: 2 - - uid: 7157 + - uid: 5477 components: - type: Transform - pos: 12.5,54.5 + pos: 50.5,76.5 parent: 2 - - uid: 7158 + - uid: 5478 components: - type: Transform - pos: 12.5,53.5 + pos: 10.5,-9.5 parent: 2 - - uid: 7159 + - uid: 5479 components: - type: Transform - pos: 12.5,52.5 + pos: 11.5,-6.5 parent: 2 - - uid: 7160 + - uid: 5480 components: - type: Transform - pos: 12.5,51.5 + rot: 3.141592653589793 rad + pos: 51.5,85.5 parent: 2 - - uid: 7161 + - uid: 5481 components: - type: Transform - pos: 12.5,50.5 + rot: 3.141592653589793 rad + pos: 51.5,86.5 parent: 2 - - uid: 7162 + - uid: 5482 components: - type: Transform - pos: 12.5,49.5 + pos: 64.5,35.5 parent: 2 - - uid: 7163 + - uid: 5483 components: - type: Transform - pos: 12.5,48.5 + rot: 3.141592653589793 rad + pos: 51.5,81.5 parent: 2 - - uid: 7164 + - uid: 5484 components: - type: Transform - pos: 12.5,47.5 + pos: 45.5,55.5 parent: 2 - - uid: 7165 + - uid: 5485 components: - type: Transform - pos: 12.5,46.5 + rot: -1.5707963267948966 rad + pos: -1.5,17.5 parent: 2 - - uid: 7166 + - uid: 5486 components: - type: Transform - pos: 12.5,45.5 + pos: 28.5,0.5 parent: 2 - - uid: 7167 + - uid: 5487 components: - type: Transform - pos: 12.5,44.5 + pos: 29.5,-0.5 parent: 2 - - uid: 7168 + - uid: 5488 components: - type: Transform - pos: 12.5,43.5 + pos: 31.5,19.5 parent: 2 - - uid: 7169 + - uid: 5489 components: - type: Transform - pos: 12.5,42.5 + pos: 29.5,17.5 parent: 2 - - uid: 7170 + - uid: 5490 components: - type: Transform - pos: 12.5,41.5 + pos: 31.5,17.5 parent: 2 - - uid: 7171 + - uid: 5491 components: - type: Transform - pos: 12.5,40.5 + pos: 32.5,17.5 parent: 2 - - uid: 7172 + - uid: 5492 components: - type: Transform - pos: 12.5,39.5 + pos: 33.5,17.5 parent: 2 - - uid: 7173 + - uid: 5493 components: - type: Transform - pos: 12.5,38.5 + pos: 28.5,17.5 parent: 2 - - uid: 7174 + - uid: 5494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,55.5 + pos: 23.5,18.5 parent: 2 - - uid: 7175 + - uid: 5495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,54.5 + pos: 23.5,17.5 parent: 2 - - uid: 7176 + - uid: 5496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,53.5 + pos: 23.5,16.5 parent: 2 - - uid: 7177 + - uid: 5497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,65.5 + pos: 22.5,16.5 parent: 2 - - uid: 7178 + - uid: 5498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,52.5 + pos: 24.5,16.5 parent: 2 - - uid: 7179 + - uid: 5499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,52.5 + pos: 25.5,16.5 parent: 2 - - uid: 7180 + - uid: 5500 components: - type: Transform - pos: 66.5,58.5 + pos: 26.5,16.5 parent: 2 - - uid: 7181 + - uid: 5501 components: - type: Transform - pos: 66.5,57.5 + pos: 25.5,17.5 parent: 2 - - uid: 7182 + - uid: 5502 components: - type: Transform - pos: 66.5,56.5 + pos: 25.5,18.5 parent: 2 - - uid: 7183 + - uid: 5503 components: - type: Transform - pos: 66.5,55.5 + pos: 28.5,-1.5 parent: 2 - - uid: 7184 + - uid: 5505 components: - type: Transform - pos: 66.5,54.5 + pos: 28.5,-0.5 parent: 2 - - uid: 7185 + - uid: 5506 components: - type: Transform - pos: 66.5,53.5 + pos: 27.5,-0.5 parent: 2 - - uid: 7186 + - uid: 5507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,52.5 + pos: -3.5,16.5 parent: 2 - - uid: 7187 + - uid: 5508 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,52.5 + pos: 66.5,45.5 parent: 2 - - uid: 7188 + - uid: 5509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,52.5 + pos: 57.5,55.5 parent: 2 - - uid: 7189 + - uid: 5510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,52.5 + pos: 57.5,57.5 parent: 2 - - uid: 7190 + - uid: 5511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,52.5 + pos: 56.5,62.5 parent: 2 - - uid: 7191 + - uid: 5512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,52.5 + pos: 57.5,65.5 parent: 2 - - uid: 7192 + - uid: 5513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,52.5 + pos: 57.5,64.5 parent: 2 - - uid: 7193 + - uid: 5514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,52.5 + pos: -3.5,17.5 parent: 2 - - uid: 7194 + - uid: 5515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,52.5 + pos: 3.5,21.5 parent: 2 - - uid: 7195 + - uid: 5516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,52.5 + pos: 5.5,16.5 parent: 2 - - uid: 7196 + - uid: 5517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,65.5 + pos: 4.5,16.5 parent: 2 - - uid: 7197 + - uid: 5518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,65.5 + pos: 3.5,19.5 parent: 2 - - uid: 7198 + - uid: 5519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,65.5 + pos: 3.5,20.5 parent: 2 - - uid: 7199 + - uid: 5520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,65.5 + pos: 5.5,18.5 parent: 2 - - uid: 7200 + - uid: 5521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,65.5 + pos: -2.5,17.5 parent: 2 - - uid: 7201 + - uid: 5522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,65.5 + pos: -1.5,16.5 parent: 2 - - uid: 7202 + - uid: 5523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,65.5 + pos: -2.5,16.5 parent: 2 - - uid: 7203 + - uid: 5524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,65.5 + rot: 3.141592653589793 rad + pos: 73.5,9.5 parent: 2 - - uid: 7204 + - uid: 5525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,65.5 + pos: 62.5,66.5 parent: 2 - - uid: 7205 + - uid: 5526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,65.5 + pos: 12.5,39.5 parent: 2 - - uid: 7206 + - uid: 5527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,65.5 + pos: 9.5,18.5 parent: 2 - - uid: 7207 + - uid: 5528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,64.5 + pos: 10.5,18.5 parent: 2 - - uid: 7208 + - uid: 5529 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,63.5 + pos: 35.5,59.5 parent: 2 - - uid: 7209 + - uid: 5530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,62.5 + pos: 3.5,18.5 parent: 2 - - uid: 7210 + - uid: 5531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,61.5 + pos: 6.5,18.5 parent: 2 - - uid: 7211 + - uid: 5532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,60.5 + pos: 4.5,18.5 parent: 2 - - uid: 7212 + - uid: 5533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,59.5 + pos: 7.5,18.5 parent: 2 - - uid: 7213 + - uid: 5535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,58.5 + pos: 12.5,41.5 parent: 2 - - uid: 7214 + - uid: 5536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,57.5 + pos: 12.5,43.5 parent: 2 - - uid: 7215 + - uid: 5537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,56.5 + pos: 12.5,44.5 parent: 2 - - uid: 7216 + - uid: 5538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,55.5 + pos: 12.5,45.5 parent: 2 - - uid: 7217 + - uid: 5539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,54.5 + pos: 12.5,49.5 parent: 2 - - uid: 7218 + - uid: 5540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,53.5 + pos: 12.5,50.5 parent: 2 - - uid: 7219 + - uid: 5541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,47.5 + pos: 12.5,51.5 parent: 2 - - uid: 7220 + - uid: 5542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,47.5 + pos: 11.5,55.5 parent: 2 - - uid: 7221 + - uid: 5543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,47.5 + pos: 10.5,55.5 parent: 2 - - uid: 7222 + - uid: 5544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,48.5 + pos: 10.5,59.5 parent: 2 - - uid: 7223 + - uid: 5545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,48.5 + pos: 10.5,60.5 parent: 2 - - uid: 7224 + - uid: 5546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,51.5 + pos: 10.5,61.5 parent: 2 - - uid: 7225 + - uid: 5547 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,50.5 + pos: 13.5,61.5 parent: 2 - - uid: 7226 + - uid: 5548 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,49.5 + pos: 14.5,61.5 parent: 2 - - uid: 7227 + - uid: 5549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,46.5 + pos: 15.5,61.5 parent: 2 - - uid: 7228 + - uid: 5550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,45.5 + pos: 23.5,-21.5 parent: 2 - - uid: 7229 + - uid: 5551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,47.5 + pos: 14.5,65.5 parent: 2 - - uid: 7230 + - uid: 5552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,36.5 + pos: 14.5,68.5 parent: 2 - - uid: 7231 + - uid: 5553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,36.5 + pos: 14.5,69.5 parent: 2 - - uid: 7232 + - uid: 5554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,36.5 + pos: 14.5,70.5 parent: 2 - - uid: 7233 + - uid: 5555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,36.5 + pos: 13.5,73.5 parent: 2 - - uid: 7234 + - uid: 5556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,36.5 + pos: 14.5,76.5 parent: 2 - - uid: 7235 + - uid: 5557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,36.5 + pos: 13.5,81.5 parent: 2 - - uid: 7236 + - uid: 5558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,36.5 + pos: 18.5,61.5 parent: 2 - - uid: 7237 + - uid: 5559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,36.5 + pos: 19.5,61.5 parent: 2 - - uid: 7238 + - uid: 5560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,36.5 + pos: 20.5,61.5 parent: 2 - - uid: 7239 + - uid: 5561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,36.5 + pos: 23.5,62.5 parent: 2 - - uid: 7240 + - uid: 5562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,37.5 + pos: 24.5,62.5 parent: 2 - - uid: 7241 + - uid: 5563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,38.5 + pos: 25.5,62.5 parent: 2 - - uid: 7242 + - uid: 5564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,39.5 + pos: 27.5,66.5 parent: 2 - - uid: 7243 + - uid: 5565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,40.5 + pos: 28.5,66.5 parent: 2 - - uid: 7244 + - uid: 5566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,41.5 + pos: 34.5,67.5 parent: 2 - - uid: 7245 + - uid: 5567 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,42.5 + pos: 35.5,67.5 parent: 2 - - uid: 7246 + - uid: 5568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,43.5 + pos: 36.5,67.5 parent: 2 - - uid: 7247 + - uid: 5569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,44.5 + pos: 36.5,64.5 parent: 2 - - uid: 7248 + - uid: 5570 components: - type: Transform - pos: 71.5,35.5 + pos: 36.5,63.5 parent: 2 - - uid: 7249 + - uid: 5571 components: - type: Transform - pos: 71.5,34.5 + pos: 36.5,62.5 parent: 2 - - uid: 7250 + - uid: 5572 components: - type: Transform - pos: 71.5,33.5 + pos: 35.5,58.5 parent: 2 - - uid: 7251 + - uid: 5573 components: - type: Transform - pos: 71.5,32.5 + pos: 35.5,57.5 parent: 2 - - uid: 7252 + - uid: 5578 components: - type: Transform - pos: 71.5,31.5 + pos: 57.5,45.5 parent: 2 - - uid: 7253 + - uid: 5579 components: - type: Transform - pos: 71.5,30.5 + pos: 58.5,45.5 parent: 2 - - uid: 7254 + - uid: 5580 components: - type: Transform - pos: 71.5,29.5 + pos: 59.5,45.5 parent: 2 - - uid: 7255 + - uid: 5581 components: - type: Transform - pos: 71.5,28.5 + pos: 66.5,44.5 parent: 2 - - uid: 7256 + - uid: 5582 components: - type: Transform - pos: 71.5,27.5 + pos: 66.5,43.5 parent: 2 - - uid: 7257 + - uid: 5583 components: - type: Transform - pos: 71.5,26.5 + pos: 51.5,70.5 parent: 2 - - uid: 7258 + - uid: 5584 components: - type: Transform - pos: 71.5,25.5 + pos: 64.5,27.5 parent: 2 - - uid: 7259 + - uid: 5585 components: - type: Transform - pos: 71.5,24.5 + pos: 64.5,26.5 parent: 2 - - uid: 7260 + - uid: 5586 components: - type: Transform - pos: 71.5,23.5 + pos: 64.5,25.5 parent: 2 - - uid: 7261 + - uid: 5587 components: - type: Transform - pos: 71.5,22.5 + pos: 64.5,24.5 parent: 2 - - uid: 7262 + - uid: 5588 components: - type: Transform - pos: 71.5,21.5 + pos: 64.5,23.5 parent: 2 - - uid: 7263 + - uid: 5589 components: - type: Transform - pos: 71.5,20.5 + pos: 67.5,28.5 parent: 2 - - uid: 7264 + - uid: 5590 components: - type: Transform - pos: 71.5,19.5 + pos: 67.5,27.5 parent: 2 - - uid: 7265 + - uid: 5591 components: - type: Transform - pos: 71.5,18.5 + pos: 67.5,26.5 parent: 2 - - uid: 7266 + - uid: 5592 components: - type: Transform - pos: 71.5,17.5 + pos: 67.5,25.5 parent: 2 - - uid: 7267 + - uid: 5593 components: - type: Transform - pos: 71.5,16.5 + pos: 64.5,18.5 parent: 2 - - uid: 7268 + - uid: 5594 components: - type: Transform - pos: 71.5,15.5 + pos: 64.5,17.5 parent: 2 - - uid: 7269 + - uid: 5595 components: - type: Transform - pos: 71.5,14.5 + pos: 62.5,17.5 parent: 2 - - uid: 7270 + - uid: 5596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,13.5 + pos: 61.5,17.5 parent: 2 - - uid: 7271 + - uid: 5597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,13.5 + pos: 68.5,18.5 parent: 2 - - uid: 7272 + - uid: 5598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,13.5 + pos: 68.5,19.5 parent: 2 - - uid: 7273 + - uid: 5599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,13.5 + pos: 68.5,20.5 parent: 2 - - uid: 7274 + - uid: 5600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-8.5 + pos: 67.5,20.5 parent: 2 - - uid: 7275 + - uid: 5601 components: - type: Transform - pos: 36.5,-7.5 + pos: 64.5,32.5 parent: 2 - - uid: 7276 + - uid: 5602 components: - type: Transform - pos: 52.5,19.5 + pos: 65.5,33.5 parent: 2 - - uid: 7277 + - uid: 5603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,21.5 + pos: 63.5,37.5 parent: 2 - - uid: 7278 + - uid: 5604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,23.5 + pos: 63.5,36.5 parent: 2 - - uid: 7279 + - uid: 5605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,23.5 + pos: 63.5,35.5 parent: 2 - - uid: 7280 + - uid: 5606 components: - type: Transform - pos: 45.5,-10.5 + pos: 63.5,43.5 parent: 2 - - uid: 7281 + - uid: 5607 components: - type: Transform - pos: 45.5,-8.5 + pos: 63.5,42.5 parent: 2 - - uid: 7282 + - uid: 5608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,18.5 + pos: 64.5,42.5 parent: 2 - - uid: 7283 + - uid: 5609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-7.5 + pos: 51.5,69.5 parent: 2 - - uid: 7284 + - uid: 5610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-7.5 + pos: 52.5,70.5 parent: 2 - - uid: 7285 + - uid: 5611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,17.5 + pos: 53.5,68.5 parent: 2 - - uid: 7286 + - uid: 5612 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,63.5 + pos: 82.5,11.5 parent: 2 - - uid: 7287 + - uid: 5613 components: - type: Transform - pos: 22.5,-23.5 + pos: 53.5,70.5 parent: 2 - - uid: 7288 + - uid: 5614 components: - type: Transform - pos: 36.5,-5.5 + rot: 3.141592653589793 rad + pos: 11.5,-17.5 parent: 2 - - uid: 7289 + - uid: 5615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,31.5 + rot: 3.141592653589793 rad + pos: 11.5,-18.5 parent: 2 - - uid: 7290 + - uid: 5616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,31.5 + rot: 3.141592653589793 rad + pos: 14.5,-19.5 parent: 2 - - uid: 7291 + - uid: 5617 components: - type: Transform - pos: 57.5,33.5 + rot: 3.141592653589793 rad + pos: 15.5,-19.5 parent: 2 - - uid: 7292 + - uid: 5618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,31.5 + rot: 3.141592653589793 rad + pos: 17.5,-19.5 parent: 2 - - uid: 7293 + - uid: 5619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,31.5 + rot: 3.141592653589793 rad + pos: 18.5,-19.5 parent: 2 - - uid: 7294 + - uid: 5620 components: - type: Transform - pos: 57.5,32.5 + rot: 3.141592653589793 rad + pos: 19.5,-19.5 parent: 2 - - uid: 7295 + - uid: 5621 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,64.5 + pos: 20.5,-19.5 parent: 2 - - uid: 7296 + - uid: 5622 components: - type: Transform - pos: 22.5,-24.5 + rot: 3.141592653589793 rad + pos: 29.5,-19.5 parent: 2 - - uid: 7297 + - uid: 5623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-22.5 + rot: 3.141592653589793 rad + pos: 29.5,-18.5 parent: 2 - - uid: 7298 + - uid: 5624 components: - type: Transform - pos: 22.5,-25.5 + rot: 3.141592653589793 rad + pos: 29.5,-17.5 parent: 2 - - uid: 7299 + - uid: 5626 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,12.5 + pos: 31.5,-14.5 parent: 2 - - uid: 7300 + - uid: 5627 components: - type: Transform - pos: 57.5,35.5 + rot: 3.141592653589793 rad + pos: 31.5,-13.5 parent: 2 - - uid: 7301 + - uid: 5628 components: - type: Transform - pos: 57.5,34.5 + rot: 3.141592653589793 rad + pos: 31.5,-12.5 parent: 2 - - uid: 7302 + - uid: 5629 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,61.5 + pos: 30.5,-10.5 parent: 2 - - uid: 7303 + - uid: 5630 components: - type: Transform - pos: 22.5,-26.5 + rot: 3.141592653589793 rad + pos: 30.5,-9.5 parent: 2 - - uid: 7304 + - uid: 5631 components: - type: Transform - pos: 22.5,-28.5 + rot: 3.141592653589793 rad + pos: 30.5,-8.5 parent: 2 - - uid: 7305 + - uid: 5632 components: - type: Transform - pos: 22.5,-29.5 + rot: 3.141592653589793 rad + pos: 32.5,-7.5 parent: 2 - - uid: 7306 + - uid: 5633 components: - type: Transform - pos: 22.5,-30.5 + rot: 3.141592653589793 rad + pos: 32.5,-4.5 parent: 2 - - uid: 7310 + - uid: 5634 components: - type: Transform - pos: 22.5,-27.5 + rot: 3.141592653589793 rad + pos: 32.5,-3.5 parent: 2 - - uid: 7567 + - uid: 5635 components: - type: Transform - pos: 26.5,49.5 + rot: 3.141592653589793 rad + pos: 32.5,-0.5 parent: 2 - - uid: 7568 + - uid: 5636 components: - type: Transform - pos: 36.5,41.5 + rot: 3.141592653589793 rad + pos: 32.5,0.5 parent: 2 - - uid: 7569 + - uid: 5637 components: - type: Transform - pos: 36.5,43.5 + rot: 3.141592653589793 rad + pos: 39.5,-11.5 parent: 2 - - uid: 7593 + - uid: 5638 components: - type: Transform - pos: 36.5,40.5 + rot: 3.141592653589793 rad + pos: 42.5,-10.5 parent: 2 - - uid: 7652 + - uid: 5639 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,45.5 + pos: 42.5,-11.5 parent: 2 - - uid: 7746 + - uid: 5640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,52.5 + rot: 3.141592653589793 rad + pos: 42.5,-12.5 parent: 2 - - uid: 7785 + - uid: 5641 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,44.5 + pos: 43.5,-13.5 parent: 2 - - uid: 7786 + - uid: 5642 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,42.5 + pos: 44.5,-13.5 parent: 2 - - uid: 7787 + - uid: 5643 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,46.5 + pos: 45.5,-13.5 parent: 2 - - uid: 7788 + - uid: 5644 components: - type: Transform - pos: 36.5,42.5 + rot: 3.141592653589793 rad + pos: 47.5,-14.5 parent: 2 - - uid: 8209 + - uid: 5645 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,43.5 + pos: 49.5,-14.5 parent: 2 - - uid: 8268 + - uid: 5646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,55.5 + rot: 3.141592653589793 rad + pos: 51.5,-13.5 parent: 2 - - uid: 10681 + - uid: 5647 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,46.5 + pos: 52.5,-13.5 parent: 2 - - uid: 11796 + - uid: 5648 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,48.5 + pos: 52.5,-11.5 parent: 2 - - uid: 11859 + - uid: 5649 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,53.5 + pos: 52.5,-10.5 parent: 2 - - uid: 12303 + - uid: 5650 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,48.5 + pos: 52.5,-9.5 parent: 2 - - uid: 12407 + - uid: 5651 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,47.5 + pos: 54.5,-7.5 parent: 2 - - uid: 15698 + - uid: 5652 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,41.5 + pos: 55.5,-7.5 parent: 2 - - uid: 16178 + - uid: 5653 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-34.5 + pos: 59.5,-7.5 parent: 2 - - uid: 16270 + - uid: 5654 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-33.5 + pos: 59.5,-6.5 parent: 2 - - uid: 16273 + - uid: 5655 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-32.5 + pos: 59.5,-3.5 parent: 2 - - uid: 16353 + - uid: 5656 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-31.5 + pos: 59.5,-2.5 parent: 2 - - uid: 18928 + - uid: 5657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,10.5 - parent: 16504 - - uid: 18929 + rot: 3.141592653589793 rad + pos: 59.5,-1.5 + parent: 2 + - uid: 5658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 16504 - - uid: 18930 + rot: 3.141592653589793 rad + pos: 61.5,-1.5 + parent: 2 + - uid: 5659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 16504 - - uid: 18931 + rot: 3.141592653589793 rad + pos: 62.5,-1.5 + parent: 2 + - uid: 5660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 16504 - - uid: 18932 + rot: 3.141592653589793 rad + pos: 63.5,0.5 + parent: 2 + - uid: 5661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,10.5 - parent: 16504 - - uid: 18933 + rot: 3.141592653589793 rad + pos: 63.5,1.5 + parent: 2 + - uid: 5662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,10.5 - parent: 16504 - - uid: 18934 + rot: 3.141592653589793 rad + pos: 63.5,3.5 + parent: 2 + - uid: 5663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,10.5 - parent: 16504 - - uid: 18935 + rot: 3.141592653589793 rad + pos: 62.5,6.5 + parent: 2 + - uid: 5664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,10.5 - parent: 16504 - - uid: 18936 + rot: 3.141592653589793 rad + pos: 62.5,7.5 + parent: 2 + - uid: 5665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,10.5 - parent: 16504 - - uid: 18937 + rot: 3.141592653589793 rad + pos: 62.5,8.5 + parent: 2 + - uid: 5666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,10.5 - parent: 16504 - - uid: 18938 + rot: 3.141592653589793 rad + pos: 61.5,10.5 + parent: 2 + - uid: 5667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 16504 - - uid: 18939 + rot: 3.141592653589793 rad + pos: 60.5,10.5 + parent: 2 + - uid: 5668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,10.5 - parent: 16504 - - uid: 18940 + rot: 3.141592653589793 rad + pos: 59.5,10.5 + parent: 2 + - uid: 5669 components: - type: Transform - pos: 8.5,9.5 - parent: 16504 - - uid: 18941 + rot: 3.141592653589793 rad + pos: 56.5,10.5 + parent: 2 + - uid: 5670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 16504 - - uid: 18942 + rot: 3.141592653589793 rad + pos: 55.5,10.5 + parent: 2 + - uid: 5671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 16504 - - uid: 18943 + rot: 3.141592653589793 rad + pos: 54.5,10.5 + parent: 2 + - uid: 5672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 16504 - - uid: 18944 + rot: 3.141592653589793 rad + pos: 50.5,8.5 + parent: 2 + - uid: 5673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 16504 - - uid: 18945 + rot: 3.141592653589793 rad + pos: 50.5,7.5 + parent: 2 + - uid: 5674 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 16504 - - uid: 18946 + pos: 67.5,4.5 + parent: 2 + - uid: 5675 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,1.5 - parent: 16504 - - uid: 18947 + pos: 71.5,4.5 + parent: 2 + - uid: 5676 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,2.5 - parent: 16504 - - uid: 18948 + pos: 71.5,5.5 + parent: 2 + - uid: 5677 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,3.5 - parent: 16504 - - uid: 18949 + pos: 71.5,6.5 + parent: 2 + - uid: 5678 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,4.5 - parent: 16504 - - uid: 18950 + pos: 71.5,8.5 + parent: 2 + - uid: 5679 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,5.5 - parent: 16504 - - uid: 18951 + pos: 71.5,9.5 + parent: 2 + - uid: 5680 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,6.5 - parent: 16504 - - uid: 18952 + pos: 74.5,10.5 + parent: 2 + - uid: 5681 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,6.5 - parent: 16504 - - uid: 18953 + pos: 75.5,10.5 + parent: 2 + - uid: 5682 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,5.5 - parent: 16504 - - uid: 18954 + pos: 77.5,10.5 + parent: 2 + - uid: 5683 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,4.5 - parent: 16504 - - uid: 18955 + pos: 78.5,10.5 + parent: 2 + - uid: 5684 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,3.5 - parent: 16504 - - uid: 18956 + pos: 79.5,10.5 + parent: 2 + - uid: 5685 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 16504 - - uid: 18957 + pos: 83.5,11.5 + parent: 2 + - uid: 5686 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,1.5 - parent: 16504 - - uid: 18958 + pos: 86.5,11.5 + parent: 2 + - uid: 5687 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 16504 - - uid: 18959 + pos: 85.5,23.5 + parent: 2 + - uid: 5688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 16504 - - uid: 18960 + rot: 3.141592653589793 rad + pos: 82.5,23.5 + parent: 2 + - uid: 5689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,10.5 - parent: 16504 - - uid: 18961 + rot: 3.141592653589793 rad + pos: 81.5,23.5 + parent: 2 + - uid: 5690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 16504 - - uid: 18962 + rot: 3.141592653589793 rad + pos: 80.5,23.5 + parent: 2 + - uid: 5691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 16504 - - uid: 18963 + rot: 3.141592653589793 rad + pos: 78.5,24.5 + parent: 2 + - uid: 5692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 16504 - - uid: 18964 + rot: 3.141592653589793 rad + pos: 77.5,24.5 + parent: 2 + - uid: 5693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 16504 - - uid: 18965 + rot: 3.141592653589793 rad + pos: 76.5,24.5 + parent: 2 + - uid: 5694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,9.5 - parent: 16504 - - uid: 18966 + rot: 3.141592653589793 rad + pos: 57.5,69.5 + parent: 2 + - uid: 5695 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,11.5 - parent: 16504 - - uid: 18967 + pos: 57.5,70.5 + parent: 2 + - uid: 5696 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,12.5 - parent: 16504 - - uid: 18968 + pos: 57.5,71.5 + parent: 2 + - uid: 5697 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,13.5 - parent: 16504 - - uid: 18969 + pos: 57.5,72.5 + parent: 2 + - uid: 5698 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,15.5 - parent: 16504 - - uid: 18970 + pos: 57.5,74.5 + parent: 2 + - uid: 5699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,11.5 - parent: 16504 - - uid: 18971 + pos: 53.5,69.5 + parent: 2 + - uid: 5700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 16504 - - uid: 18972 + pos: 52.5,68.5 + parent: 2 + - uid: 5701 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,13.5 - parent: 16504 - - uid: 18973 + pos: 39.5,-10.5 + parent: 2 + - uid: 5702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,16.5 - parent: 16504 - - uid: 18974 + pos: 62.5,68.5 + parent: 2 + - uid: 5703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,16.5 - parent: 16504 - - uid: 18975 + rot: 3.141592653589793 rad + pos: 73.5,8.5 + parent: 2 + - uid: 5704 components: - type: Transform - pos: -14.5,13.5 - parent: 16504 - - uid: 18976 + pos: 51.5,68.5 + parent: 2 + - uid: 5705 components: - type: Transform - pos: -14.5,12.5 - parent: 16504 - - uid: 18977 + pos: 62.5,67.5 + parent: 2 + - uid: 5706 components: - type: Transform - pos: -14.5,11.5 - parent: 16504 - - uid: 18978 + pos: 57.5,56.5 + parent: 2 + - uid: 5707 components: - type: Transform - pos: -14.5,14.5 - parent: 16504 - - uid: 18979 + pos: -3.5,53.5 + parent: 2 + - uid: 5708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,15.5 - parent: 16504 - - uid: 18980 + pos: -3.5,52.5 + parent: 2 + - uid: 5709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,15.5 - parent: 16504 - - uid: 18981 + pos: 56.5,61.5 + parent: 2 + - uid: 5710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,15.5 - parent: 16504 - - uid: 18982 + pos: -3.5,51.5 + parent: 2 + - uid: 5711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,15.5 - parent: 16504 - - uid: 18983 + pos: 30.5,17.5 + parent: 2 + - uid: 5712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,20.5 - parent: 16504 - - uid: 18984 + pos: -3.5,50.5 + parent: 2 + - uid: 5713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,19.5 - parent: 16504 - - uid: 18985 + pos: -3.5,49.5 + parent: 2 + - uid: 5714 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,18.5 - parent: 16504 - - uid: 18986 + pos: -3.5,48.5 + parent: 2 + - uid: 5715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,17.5 - parent: 16504 - - uid: 18987 + pos: -3.5,47.5 + parent: 2 + - uid: 5716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,16.5 - parent: 16504 - - uid: 18988 + pos: 0.5,53.5 + parent: 2 + - uid: 5717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,16.5 - parent: 16504 - - uid: 18989 + pos: 0.5,52.5 + parent: 2 + - uid: 5718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,16.5 - parent: 16504 - - uid: 18990 + pos: 0.5,51.5 + parent: 2 + - uid: 5719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,16.5 - parent: 16504 - - uid: 18991 + pos: 0.5,50.5 + parent: 2 + - uid: 5720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,16.5 - parent: 16504 - - uid: 18992 + pos: 0.5,49.5 + parent: 2 + - uid: 5721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,16.5 - parent: 16504 - - uid: 21185 + pos: 0.5,48.5 + parent: 2 + - uid: 5722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,50.5 + pos: 0.5,47.5 parent: 2 - - uid: 21611 + - uid: 5723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,55.5 + pos: 4.5,53.5 parent: 2 - - uid: 21612 + - uid: 5724 components: - type: Transform - pos: 36.5,39.5 + pos: 4.5,52.5 parent: 2 - - uid: 21627 + - uid: 5725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,55.5 + pos: 4.5,51.5 parent: 2 - - uid: 21635 + - uid: 5726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,52.5 + pos: 4.5,50.5 parent: 2 - - uid: 21636 + - uid: 5727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,52.5 + pos: 4.5,49.5 parent: 2 - - uid: 21637 + - uid: 5728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,52.5 + pos: 4.5,48.5 parent: 2 - - uid: 21638 + - uid: 5729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,52.5 + pos: 4.5,47.5 parent: 2 - - uid: 21639 + - uid: 5730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,52.5 + pos: 7.5,45.5 parent: 2 - - uid: 21640 + - uid: 5731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,52.5 + pos: 6.5,45.5 parent: 2 - - uid: 21641 + - uid: 5732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,55.5 + pos: 5.5,45.5 parent: 2 - - uid: 21643 + - uid: 5733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,52.5 + pos: 3.5,45.5 parent: 2 -- proto: DisposalPipeBroken - entities: - - uid: 18993 + - uid: 5734 components: - type: Transform - pos: -7.5,9.5 - parent: 16504 - - uid: 18994 + pos: 2.5,45.5 + parent: 2 + - uid: 5735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,9.5 - parent: 16504 - - uid: 18995 + pos: 1.5,45.5 + parent: 2 + - uid: 5736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 16504 - - uid: 18996 + pos: -0.5,45.5 + parent: 2 + - uid: 5737 components: - type: Transform - pos: -10.5,14.5 - parent: 16504 -- proto: DisposalTrunk - entities: - - uid: 3145 + pos: -1.5,45.5 + parent: 2 + - uid: 5738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-35.5 + pos: -2.5,45.5 parent: 2 - - uid: 7315 + - uid: 5739 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-8.5 + pos: -4.5,45.5 parent: 2 - - uid: 7316 + - uid: 5740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-1.5 + pos: -5.5,45.5 parent: 2 - - uid: 7317 + - uid: 5741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,74.5 + pos: 7.5,55.5 parent: 2 - - uid: 7318 + - uid: 5742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,9.5 + pos: 6.5,55.5 parent: 2 - - uid: 7319 + - uid: 5743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,20.5 + pos: 5.5,55.5 parent: 2 - - uid: 7320 + - uid: 5744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,16.5 + pos: 3.5,55.5 parent: 2 - - uid: 7321 + - uid: 5745 components: - type: Transform - pos: 20.5,22.5 + pos: 2.5,55.5 parent: 2 - - uid: 7322 + - uid: 5746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,1.5 + pos: 1.5,55.5 parent: 2 - - uid: 7323 + - uid: 5747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,5.5 + pos: -0.5,55.5 parent: 2 - - uid: 7324 + - uid: 5748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 + pos: -1.5,55.5 parent: 2 - - uid: 7325 + - uid: 5749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,24.5 + pos: -2.5,55.5 parent: 2 - - uid: 7326 + - uid: 5750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,2.5 + pos: -4.5,55.5 parent: 2 - - uid: 7327 + - uid: 5751 components: - type: Transform - pos: 64.5,49.5 + pos: -5.5,55.5 parent: 2 - - uid: 7328 + - uid: 5752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,51.5 + pos: -6.5,55.5 parent: 2 - - uid: 7329 + - uid: 5755 components: - type: Transform - pos: 21.5,14.5 + pos: -6.5,54.5 parent: 2 - - uid: 7330 + - uid: 5756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,19.5 + pos: 44.5,57.5 parent: 2 - - uid: 7332 + - uid: 5757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,36.5 + pos: 52.5,77.5 parent: 2 - - uid: 7333 + - uid: 5758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,31.5 + rot: -1.5707963267948966 rad + pos: 21.5,79.5 parent: 2 - - uid: 7334 + - uid: 5759 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-14.5 + pos: 21.5,74.5 parent: 2 - - uid: 7335 + - uid: 5760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-3.5 + rot: -1.5707963267948966 rad + pos: 21.5,74.5 parent: 2 - - uid: 7336 + - uid: 5761 components: - type: Transform - pos: 20.5,8.5 + rot: -1.5707963267948966 rad + pos: 22.5,71.5 parent: 2 - - uid: 7337 + - uid: 5762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-0.5 + rot: -1.5707963267948966 rad + pos: 21.5,73.5 parent: 2 - - uid: 7338 + - uid: 5765 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,6.5 + pos: 21.5,78.5 parent: 2 - - uid: 7339 + - uid: 5766 components: - type: Transform - pos: 66.5,15.5 + rot: -1.5707963267948966 rad + pos: 21.5,71.5 parent: 2 - - uid: 7341 + - uid: 5767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,32.5 + rot: 3.141592653589793 rad + pos: 25.5,15.5 parent: 2 - - uid: 7342 + - uid: 5772 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 5773 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,36.5 + pos: 21.5,76.5 parent: 2 - - uid: 7343 + - uid: 5774 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,21.5 + pos: 52.5,86.5 parent: 2 - - uid: 7344 + - uid: 5775 components: - type: Transform - pos: 14.5,83.5 + pos: 10.5,-12.5 parent: 2 - - uid: 7345 + - uid: 5776 components: - type: Transform - pos: 51.5,57.5 + pos: 23.5,71.5 parent: 2 - - uid: 7346 + - uid: 5777 components: - type: Transform - pos: 66.5,59.5 + rot: 3.141592653589793 rad + pos: 52.5,85.5 parent: 2 - - uid: 7347 + - uid: 5778 components: - type: Transform - pos: 72.5,53.5 + rot: 3.141592653589793 rad + pos: 51.5,84.5 parent: 2 - - uid: 7348 + - uid: 5779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,65.5 + pos: 25.5,71.5 parent: 2 - - uid: 7349 + - uid: 5780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,36.5 + pos: 24.5,71.5 parent: 2 - - uid: 7350 + - uid: 5781 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,10.5 + pos: 20.5,80.5 parent: 2 - - uid: 7351 + - uid: 5782 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,10.5 + pos: 19.5,80.5 parent: 2 - - uid: 7352 + - uid: 5783 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,59.5 + pos: 26.5,15.5 parent: 2 - - uid: 7353 + - uid: 5784 components: - type: Transform - pos: 57.5,36.5 + pos: 21.5,80.5 parent: 2 - - uid: 7354 + - uid: 5785 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,8.5 + pos: -2.5,18.5 parent: 2 - - uid: 7355 + - uid: 5786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-22.5 + pos: 21.5,82.5 parent: 2 - - uid: 7356 + - uid: 5787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,31.5 + pos: 46.5,90.5 parent: 2 - - uid: 7747 + - uid: 5788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,51.5 + pos: 40.5,56.5 parent: 2 - - uid: 7916 + - uid: 5789 components: - type: Transform - pos: 35.5,45.5 + pos: 64.5,34.5 parent: 2 - - uid: 12347 + - uid: 5790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,40.5 + pos: 21.5,84.5 parent: 2 - - uid: 14253 + - uid: 5791 components: - type: Transform - pos: 17.5,51.5 + rot: 3.141592653589793 rad + pos: 87.5,23.5 parent: 2 - - uid: 18997 + - uid: 5792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 16504 - - uid: 18998 + rot: 3.141592653589793 rad + pos: 88.5,23.5 + parent: 2 + - uid: 5793 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 16504 - - uid: 18999 + pos: 89.5,23.5 + parent: 2 + - uid: 5794 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,8.5 - parent: 16504 - - uid: 19000 + pos: 89.5,21.5 + parent: 2 + - uid: 5795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 16504 - - uid: 19001 + rot: 3.141592653589793 rad + pos: 89.5,20.5 + parent: 2 + - uid: 5796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,9.5 - parent: 16504 - - uid: 19002 + rot: 3.141592653589793 rad + pos: 89.5,19.5 + parent: 2 + - uid: 5797 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,13.5 - parent: 16504 - - uid: 19003 + pos: 88.5,11.5 + parent: 2 + - uid: 5798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,20.5 - parent: 16504 - - uid: 21642 + rot: 3.141592653589793 rad + pos: 87.5,11.5 + parent: 2 + - uid: 5799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,55.5 + rot: 3.141592653589793 rad + pos: 89.5,14.5 parent: 2 -- proto: DisposalUnit - entities: - - uid: 267 + - uid: 5800 components: - type: Transform - pos: 35.5,51.5 + rot: 3.141592653589793 rad + pos: 90.5,13.5 parent: 2 - - uid: 3140 + - uid: 5801 components: - - type: MetaData - desc: Пневматическая установка для быстрого перемещения. - name: Гипертруба от ЦИИ - type: Transform - pos: 22.5,-35.5 + rot: 3.141592653589793 rad + pos: 90.5,11.5 parent: 2 - - uid: 7358 + - uid: 5802 components: - type: Transform - pos: 46.5,74.5 + rot: 3.141592653589793 rad + pos: 90.5,16.5 parent: 2 - - uid: 7359 + - uid: 5803 components: - type: Transform - pos: 52.5,16.5 + rot: 3.141592653589793 rad + pos: 90.5,16.5 parent: 2 - - uid: 7360 + - uid: 5804 components: - type: Transform - pos: 53.5,20.5 + rot: 3.141592653589793 rad + pos: 89.5,16.5 parent: 2 - - uid: 7361 + - uid: 5805 components: - type: Transform - pos: 3.5,5.5 + rot: 3.141592653589793 rad + pos: 93.5,16.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7362 + - uid: 5806 components: - type: Transform - pos: 7.5,1.5 + rot: 3.141592653589793 rad + pos: 94.5,17.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7363 + - uid: 5807 components: - type: Transform - pos: 24.5,-14.5 + rot: 3.141592653589793 rad + pos: 91.5,16.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7364 + - uid: 5833 components: - type: Transform - pos: 20.5,-3.5 + rot: 1.5707963267948966 rad + pos: 10.5,1.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7365 + - uid: 5877 components: - type: Transform - pos: 55.5,2.5 + pos: 24.5,66.5 parent: 2 - - uid: 7366 + - uid: 5878 components: - type: Transform - pos: 38.5,6.5 + pos: 22.5,66.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7368 + - uid: 5879 components: - type: Transform - pos: 41.5,32.5 + pos: 19.5,66.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7369 + - uid: 5880 components: - type: Transform - pos: 47.5,36.5 + pos: 16.5,66.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7370 + - uid: 5881 components: - type: Transform - pos: 72.5,53.5 + pos: 18.5,66.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7371 + - uid: 5882 components: - type: Transform - pos: 2.5,31.5 + pos: 15.5,66.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7372 + - uid: 5883 components: - type: Transform - pos: 21.5,14.5 + pos: 25.5,64.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7373 + - uid: 5884 components: - type: Transform - pos: 11.5,36.5 + pos: 22.5,-18.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7374 + - uid: 5886 components: - type: Transform - pos: 82.5,36.5 + pos: 24.5,-19.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7376 + - uid: 5887 components: - type: Transform - pos: 18.5,24.5 + pos: 24.5,-18.5 parent: 2 - - uid: 7377 + - uid: 5889 components: - type: Transform - pos: 50.5,51.5 + rot: 3.141592653589793 rad + pos: 72.5,7.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7378 + - uid: 5890 components: - type: Transform - pos: 66.5,59.5 + pos: 21.5,85.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7379 + - uid: 5891 components: - type: Transform - pos: 44.5,72.5 + pos: 21.5,86.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7380 + - uid: 5892 components: - type: Transform - pos: 51.5,57.5 + pos: 23.5,86.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7381 + - uid: 5893 components: - type: Transform - pos: 9.5,21.5 + pos: 28.5,87.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7382 + - uid: 5894 components: - type: Transform - pos: 83.5,65.5 + pos: 29.5,87.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7383 + - uid: 5895 components: - type: Transform - pos: 66.5,15.5 + pos: 31.5,86.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7384 + - uid: 5896 components: - type: Transform - pos: 64.5,49.5 + pos: 31.5,87.5 parent: 2 - - uid: 7385 + - uid: 5897 components: - type: Transform - pos: 20.5,8.5 + pos: 39.5,86.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7386 + - uid: 5898 components: - type: Transform - pos: 30.5,-0.5 + pos: 41.5,56.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7387 + - uid: 5899 components: - type: Transform - pos: 14.5,83.5 + pos: 42.5,86.5 parent: 2 - - type: DisposalUnit - powered: True - - uid: 7388 + - uid: 5900 components: - type: Transform - pos: 42.5,10.5 + pos: 51.5,63.5 parent: 2 - - uid: 7389 + - uid: 5901 components: - type: Transform - pos: 18.5,9.5 + pos: 51.5,61.5 parent: 2 - - uid: 7390 + - uid: 5902 components: - type: Transform - pos: 42.5,-8.5 + pos: 51.5,60.5 parent: 2 - - uid: 7391 + - uid: 5903 components: - - type: MetaData - desc: Пневматическая установка для быстрого перемещения. - name: Гипертруба к ЦИИ - type: Transform - pos: 24.5,-22.5 + pos: 51.5,62.5 parent: 2 - - uid: 7392 + - uid: 5904 components: - type: Transform - pos: 37.5,-1.5 + pos: 52.5,63.5 parent: 2 - - uid: 7393 + - uid: 5905 components: - type: Transform - pos: 47.5,59.5 + pos: 52.5,61.5 parent: 2 - - uid: 7395 + - uid: 5906 components: - type: Transform - pos: 20.5,22.5 + pos: 52.5,62.5 parent: 2 - - uid: 7594 + - uid: 5907 components: - type: Transform - pos: 35.5,45.5 + pos: 52.5,60.5 parent: 2 - - uid: 9956 + - uid: 5908 components: - type: Transform - pos: 31.5,55.5 + pos: 53.5,63.5 parent: 2 - - uid: 19004 + - uid: 5909 components: - type: Transform - pos: 8.5,8.5 - parent: 16504 - - uid: 19005 + pos: 53.5,62.5 + parent: 2 + - uid: 5910 components: - type: Transform - pos: -10.5,-0.5 - parent: 16504 - - uid: 19006 + pos: 53.5,60.5 + parent: 2 + - uid: 5911 components: - type: Transform - pos: -6.5,20.5 - parent: 16504 - - uid: 19007 + pos: 53.5,61.5 + parent: 2 + - uid: 5912 components: - type: Transform - pos: 11.5,30.5 - parent: 16504 - - uid: 21645 + pos: 41.5,86.5 + parent: 2 + - uid: 5913 components: - type: Transform - pos: 19.5,40.5 + pos: 43.5,88.5 parent: 2 - - uid: 21646 + - uid: 5914 components: - type: Transform - pos: 17.5,51.5 + pos: 43.5,89.5 parent: 2 -- proto: DisposalYJunction - entities: - - uid: 7396 + - uid: 5915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,18.5 + pos: 42.5,89.5 parent: 2 - - uid: 7397 + - uid: 5916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,37.5 + pos: 42.5,91.5 parent: 2 - - uid: 7398 + - uid: 5917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,60.5 + pos: 42.5,91.5 parent: 2 - - uid: 19008 + - uid: 5918 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 16504 -- proto: DogBed - entities: - - uid: 7399 + pos: -4.5,17.5 + parent: 2 + - uid: 5941 components: - type: Transform - pos: 38.5,67.5 + rot: 3.141592653589793 rad + pos: -3.5,18.5 parent: 2 - - uid: 7400 + - uid: 5943 components: - type: Transform - pos: 44.5,7.5 + rot: 3.141592653589793 rad + pos: 52.5,84.5 parent: 2 - - uid: 7401 + - uid: 5944 components: - type: Transform - pos: 29.5,20.5 + rot: 3.141592653589793 rad + pos: 52.5,83.5 parent: 2 - - uid: 7402 + - uid: 5945 components: - type: Transform - pos: 19.5,16.5 + rot: 3.141592653589793 rad + pos: 52.5,82.5 parent: 2 - - uid: 21583 + - uid: 5946 components: - type: Transform - pos: 43.5,47.5 + rot: 3.141592653589793 rad + pos: 52.5,81.5 parent: 2 - - uid: 21963 + - uid: 5947 components: - type: Transform - pos: 35.5,54.5 + rot: 3.141592653589793 rad + pos: 53.5,84.5 parent: 2 - - uid: 21964 + - uid: 5948 components: - type: Transform - pos: 36.5,55.5 + rot: 3.141592653589793 rad + pos: 53.5,83.5 parent: 2 -- proto: DoorElectronics - entities: - - uid: 7403 + - uid: 5949 components: - type: Transform - pos: 62.513855,48.03954 + rot: 3.141592653589793 rad + pos: 54.5,84.5 parent: 2 - - uid: 7404 + - uid: 5950 components: - type: Transform - pos: 62.49823,48.16454 + rot: 3.141592653589793 rad + pos: 54.5,83.5 parent: 2 -- proto: DoubleEmergencyOxygenTank - entities: - - uid: 6 - components: - - type: Transform - parent: 5 - - type: GasTank - toggleActionEntity: 7 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 7 - - type: InsideEntityStorage - - uid: 7406 - components: - - type: Transform - parent: 7405 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7409 + - uid: 5951 components: - type: Transform - parent: 7408 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7412 + rot: 3.141592653589793 rad + pos: 72.5,6.5 + parent: 2 + - uid: 6457 components: - type: Transform - parent: 7411 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7415 + pos: -9.5,18.5 + parent: 2 + - uid: 6515 components: - type: Transform - parent: 7414 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7418 + rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - uid: 8327 components: - type: Transform - parent: 7417 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7421 + pos: 22.5,-25.5 + parent: 2 + - uid: 8918 components: - type: Transform - parent: 7420 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7424 + pos: 52.5,-25.5 + parent: 2 + - uid: 10080 components: - type: Transform - parent: 7423 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Dresser - entities: - - uid: 1046 + pos: -6.5,17.5 + parent: 2 + - uid: 10896 components: - type: Transform - pos: 68.5,10.5 + pos: -8.5,19.5 parent: 2 - - type: Storage - storedItems: - 1054: - position: 0,0 - _rotation: South - 1047: - position: 0,2 - _rotation: South - 1048: - position: 2,2 - _rotation: South - 1050: - position: 2,1 - _rotation: West - 1051: - position: 0,1 - _rotation: East - 1053: - position: 4,0 - _rotation: North - 1052: - position: 6,0 - _rotation: South - 1049: - position: 6,1 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 1054 - - 1050 - - 1048 - - 1047 - - 1051 - - 1053 - - 1052 - - 1049 - - uid: 7426 + - uid: 10912 components: - type: Transform - pos: 3.5,38.5 + pos: -8.5,17.5 parent: 2 - - uid: 19009 + - uid: 10914 components: - type: Transform - pos: -7.5,30.5 - parent: 16504 - - uid: 19010 + pos: -8.5,18.5 + parent: 2 + - uid: 10925 components: - type: Transform - pos: 17.5,23.5 - parent: 16504 - - uid: 19011 + pos: -5.5,17.5 + parent: 2 + - uid: 10926 components: - type: Transform - pos: 12.5,27.5 - parent: 16504 - - uid: 19012 + pos: -7.5,17.5 + parent: 2 + - uid: 11238 components: - type: Transform - pos: 11.5,22.5 - parent: 16504 -- proto: DresserCaptainFilled - entities: - - uid: 7427 + pos: -11.5,18.5 + parent: 2 + - uid: 11515 components: - type: Transform - pos: 25.5,20.5 + pos: 52.5,-32.5 parent: 2 -- proto: DresserChiefEngineerFilled - entities: - - uid: 7428 + - uid: 11516 components: - type: Transform - pos: 38.5,66.5 + pos: 51.5,-32.5 parent: 2 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 7429 + - uid: 11667 components: - type: Transform - pos: 47.5,10.5 + pos: -10.5,18.5 parent: 2 -- proto: DresserFilled - entities: - - uid: 19013 + - uid: 12554 components: - type: Transform - pos: 16.5,26.5 - parent: 16504 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 7430 + rot: 3.141592653589793 rad + pos: -6.5,51.5 + parent: 2 + - uid: 12599 components: - type: Transform - pos: 20.5,16.5 + rot: 3.141592653589793 rad + pos: 4.5,54.5 parent: 2 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 7431 + - uid: 13139 components: - type: Transform - pos: 50.5,33.5 + pos: 54.5,-32.5 parent: 2 -- proto: DresserQuarterMasterFilled - entities: - - uid: 7432 + - uid: 13141 components: - type: Transform - pos: 1.5,3.5 + pos: 56.5,-35.5 parent: 2 -- proto: DresserResearchDirectorFilled - entities: - - uid: 7433 + - uid: 13875 components: - type: Transform - pos: 15.5,6.5 + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 parent: 2 -- proto: DresserWardenFilled - entities: - - uid: 7434 + - uid: 15931 components: - type: Transform - pos: 50.5,26.5 + pos: 23.5,-19.5 parent: 2 -- proto: Drill - entities: - - uid: 7435 + - uid: 16019 components: - type: Transform - pos: 50.411148,-9.275011 + pos: 22.5,-27.5 parent: 2 -- proto: DrinkAbsintheGlass - entities: - - uid: 5856 + - uid: 16156 components: - type: Transform - pos: 74.19161,3.6827223 + pos: 56.5,-33.5 parent: 2 -- proto: DrinkAleBottleFullGrowler - entities: - - uid: 9319 + - uid: 16160 components: - - type: MetaData - name: бочонок магма-эля (эль) - type: Transform - pos: 22.789206,55.810543 + pos: 22.5,-21.5 parent: 2 - - type: SolutionContainerManager - solutions: null - containers: - - drink - - type: Label - currentLabel: эль - - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.6346535 - - type: NameModifier - baseName: бочонок магма-эля - - type: ContainerContainer - containers: - solution@drink: !type:ContainerSlot - ent: 9339 -- proto: DrinkBeerBottleFull - entities: - - uid: 7437 + - uid: 16161 components: - type: Transform - pos: 59.866623,78.65698 + pos: 22.5,-23.5 parent: 2 - - uid: 7438 + - uid: 16182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.842693,79.52922 + rot: 3.141592653589793 rad + pos: 30.5,-39.5 parent: 2 - - uid: 7439 + - uid: 16193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.248943,78.482346 + rot: 3.141592653589793 rad + pos: 50.5,75.5 parent: 2 - - uid: 7440 + - uid: 16194 components: - type: Transform - pos: 7.714418,3.7892158 + rot: 3.141592653589793 rad + pos: 52.5,75.5 parent: 2 - - uid: 7441 + - uid: 16195 components: - type: Transform - pos: 35.70207,78.263596 + rot: 3.141592653589793 rad + pos: 53.5,75.5 parent: 2 - - uid: 7442 + - uid: 16196 components: - type: Transform - pos: 75.5,24.5 + rot: 3.141592653589793 rad + pos: 51.5,75.5 parent: 2 - - uid: 7443 + - uid: 16211 components: - type: Transform - pos: 35.23332,77.701096 + pos: 57.5,-32.5 parent: 2 - - uid: 7444 + - uid: 16217 components: - type: Transform - pos: 92.26362,17.12997 + pos: 58.5,-32.5 parent: 2 - - uid: 7445 + - uid: 16234 components: - type: Transform - pos: 59.742218,78.55203 + pos: 60.5,-32.5 parent: 2 - - uid: 7446 + - uid: 16235 components: - type: Transform - pos: 59.844467,78.90257 + pos: 61.5,-32.5 parent: 2 - - uid: 13038 + - uid: 16253 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 13040 + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - uid: 16272 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 13044 + pos: 59.5,-32.5 + parent: 2 + - uid: 16279 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 13073 + pos: 61.5,-31.5 + parent: 2 + - uid: 16313 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 13077 + rot: 3.141592653589793 rad + pos: 29.5,-39.5 + parent: 2 + - uid: 16315 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 13080 + rot: 3.141592653589793 rad + pos: 29.5,-37.5 + parent: 2 + - uid: 16323 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 13084 + pos: 61.5,-30.5 + parent: 2 + - uid: 16324 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 13088 + pos: 61.5,-28.5 + parent: 2 + - uid: 16337 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 13096 + pos: 61.5,-27.5 + parent: 2 + - uid: 16346 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 13103 + pos: 22.5,-22.5 + parent: 2 + - uid: 16351 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 13109 + rot: 3.141592653589793 rad + pos: 30.5,-37.5 + parent: 2 + - uid: 16356 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 13110 + pos: 61.5,-26.5 + parent: 2 + - uid: 16357 components: - type: Transform - parent: 12994 - - type: Physics - canCollide: False - - uid: 19014 + pos: 22.5,-30.5 + parent: 2 + - uid: 16364 components: - type: Transform - pos: 18.29185,-7.191003 - parent: 16504 - - uid: 21245 + pos: 22.5,-19.5 + parent: 2 + - uid: 16377 components: - type: Transform - pos: 24.273584,55.796165 + pos: 61.5,-25.5 parent: 2 -- proto: DrinkBeerCan - entities: - - uid: 13913 + - uid: 16378 components: - type: Transform - pos: 52.01989,84.88411 + pos: 61.5,-24.5 parent: 2 - - uid: 21506 + - uid: 16379 components: - type: Transform - pos: 57.522854,-9.468282 + pos: 61.5,-23.5 parent: 2 - - uid: 21729 + - uid: 16381 components: - type: Transform - pos: 42.54088,52.84053 + pos: 61.5,-29.5 parent: 2 -- proto: DrinkBeerglass - entities: - - uid: 7447 + - uid: 16472 components: - type: Transform - pos: 81.47089,18.636118 + rot: 3.141592653589793 rad + pos: 31.5,-37.5 parent: 2 - - uid: 9323 + - uid: 16484 components: - type: Transform - pos: 77.27494,4.3910556 + pos: 61.5,-22.5 parent: 2 -- proto: DrinkBlueCuracaoBottleFull - entities: - - uid: 5753 + - uid: 20784 components: - type: Transform - pos: 24.599154,56.017517 - parent: 2 -- proto: DrinkBottleBeer - entities: - - uid: 7448 + pos: -6.5,-9.5 + parent: 16527 + - uid: 20785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.417543,3.6642156 - parent: 2 -- proto: DrinkBottleOfNothingFull - entities: - - uid: 13803 + pos: -6.5,-10.5 + parent: 16527 + - uid: 20786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.643322,-26.543358 - parent: 2 -- proto: DrinkBottleWhiskey - entities: - - uid: 7450 + pos: -5.5,-9.5 + parent: 16527 + - uid: 20787 components: - type: Transform - pos: 30.546007,63.074863 - parent: 2 - - uid: 21244 + pos: -5.5,-10.5 + parent: 16527 + - uid: 20788 components: - type: Transform - pos: 24.755428,55.613873 - parent: 2 -- proto: DrinkCampariBottleFull - entities: - - uid: 7451 + pos: -4.5,-9.5 + parent: 16527 + - uid: 20789 components: - type: Transform - pos: 6.568198,28.718761 - parent: 2 -- proto: DrinkChampagneBottleFull - entities: - - uid: 7452 + pos: -4.5,-10.5 + parent: 16527 + - uid: 20790 components: - type: Transform - pos: 6.3717327,28.25535 - parent: 2 -- proto: DrinkCoffee - entities: - - uid: 7453 + pos: -3.5,-9.5 + parent: 16527 + - uid: 20791 components: - - type: MetaData - desc: Капучино – это кофейный напиток, родиной которого является Италия. Но популярен капучино во всем мире. Он готовится из порции эспрессо и двух частей вспененного молока. - name: капучино - type: Transform - pos: 40.237556,35.25761 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canReact: True - maxVol: 30 - name: null - reagents: - - data: null - ReagentId: Coffee - Quantity: 28 - - data: null - ReagentId: Cream - Quantity: 2 -- proto: DrinkCoffeeLiqueurBottleFull - entities: - - uid: 9313 + pos: -3.5,-10.5 + parent: 16527 + - uid: 20792 components: - - type: MetaData - name: бутылка кофейного ликёра (кофейный ликёр) - type: Transform - pos: 22.286802,56.005856 - parent: 2 - - type: SolutionContainerManager - solutions: null - containers: - - drink - - type: Label - currentLabel: кофейный ликёр - - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.8627797 - - type: NameModifier - baseName: бутылка кофейного ликёра - - type: ContainerContainer - containers: - solution@drink: !type:ContainerSlot - ent: 9314 -- proto: DrinkCognacBottleFull - entities: - - uid: 139 + pos: -2.5,-9.5 + parent: 16527 + - uid: 20793 components: - type: Transform - pos: 24.390789,55.56179 - parent: 2 -- proto: DrinkFlask - entities: - - uid: 7456 + pos: -2.5,-10.5 + parent: 16527 + - uid: 20794 components: - type: Transform - parent: 7455 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkGildlagerBottleFull - entities: - - uid: 7457 + pos: -1.5,-9.5 + parent: 16527 + - uid: 20795 components: - type: Transform - pos: 6.6867027,28.306255 - parent: 2 -- proto: DrinkGlass - entities: - - uid: 5844 + pos: -0.5,-9.5 + parent: 16527 + - uid: 20796 components: - type: Transform - pos: 77.4555,4.6410556 - parent: 2 - - uid: 5847 + pos: -0.5,-10.5 + parent: 16527 + - uid: 20797 components: - type: Transform - pos: 77.761055,4.3632784 - parent: 2 - - uid: 5854 + pos: 0.5,-9.5 + parent: 16527 + - uid: 20798 components: - type: Transform - pos: 73.46939,3.3632784 - parent: 2 - - uid: 7458 + pos: 0.5,-10.5 + parent: 16527 + - uid: 20799 components: - type: Transform - pos: 67.30002,9.807365 - parent: 2 - - uid: 7459 + pos: 1.5,-9.5 + parent: 16527 + - uid: 20800 components: - type: Transform - pos: 67.50451,9.836576 - parent: 2 - - uid: 7460 + pos: 1.5,-10.5 + parent: 16527 + - uid: 20801 components: - type: Transform - pos: 41.360363,42.560402 - parent: 2 - - uid: 7461 + pos: 2.5,-9.5 + parent: 16527 + - uid: 20802 components: - type: Transform - pos: 41.579113,42.419777 - parent: 2 - - uid: 7462 + pos: 2.5,-10.5 + parent: 16527 + - uid: 20803 components: - type: Transform - pos: 41.141613,42.513527 - parent: 2 - - uid: 9330 + pos: 3.5,-9.5 + parent: 16527 + - uid: 20804 components: - type: Transform - pos: 74.16383,2.7243888 - parent: 2 - - uid: 11137 + pos: 3.5,-10.5 + parent: 16527 + - uid: 20805 components: - type: Transform - pos: 19.372255,52.34253 - parent: 2 - - uid: 19015 + pos: 4.5,-10.5 + parent: 16527 + - uid: 20806 components: - type: Transform - pos: 35.39589,15.666204 - parent: 16504 - - uid: 21270 + pos: 5.5,-9.5 + parent: 16527 + - uid: 20807 components: - type: Transform - pos: 19.632711,52.49878 - parent: 2 -- proto: DrinkGoldenCup - entities: - - uid: 7463 + pos: 5.5,-10.5 + parent: 16527 + - uid: 20808 components: - type: Transform - pos: 6.2909718,28.857376 - parent: 2 -- proto: DrinkGreenTea - entities: - - uid: 7464 + pos: 6.5,-9.5 + parent: 16527 + - uid: 20809 components: - - type: MetaData - desc: Самый питательный напиток на станции с молоком, сделанный по личному рецепту одного научного руководителя. Теперь абсолютно без жира! - type: Transform - rot: 12.566370614359172 rad - pos: 17.679285,5.7708707 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canReact: True - maxVol: 20 - name: null - reagents: - - data: null - ReagentId: GreenTea - Quantity: 15 - - data: null - ReagentId: Milk - Quantity: 5 -- proto: DrinkHotCoco - entities: - - uid: 7465 + pos: 6.5,-10.5 + parent: 16527 + - uid: 20810 components: - type: Transform - pos: 42.734554,65.46802 - parent: 2 -- proto: DrinkHotCoffee - entities: - - uid: 7466 + pos: 7.5,-9.5 + parent: 16527 + - uid: 20811 components: - type: Transform - pos: 41.27519,-3.52531 - parent: 2 - - uid: 7467 + pos: 7.5,-10.5 + parent: 16527 + - uid: 20812 components: - type: Transform - pos: 41.259563,-1.5878099 - parent: 2 - - uid: 7468 + pos: -5.5,-11.5 + parent: 16527 + - uid: 20813 components: - type: Transform - pos: 41.228313,0.45906508 - parent: 2 - - uid: 7469 + pos: -3.5,-11.5 + parent: 16527 + - uid: 20814 components: - type: Transform - pos: 36.6082,-11.328205 - parent: 2 - - uid: 7470 + pos: -2.5,-11.5 + parent: 16527 + - uid: 20815 components: - type: Transform - pos: 21.44087,-6.3143 - parent: 2 - - uid: 7471 + pos: -1.5,-11.5 + parent: 16527 + - uid: 20816 components: - type: Transform - pos: 35.77519,0.42781508 - parent: 2 - - uid: 7472 + pos: -0.5,-11.5 + parent: 16527 + - uid: 20817 components: - type: Transform - pos: 35.759563,-3.228435 - parent: 2 - - uid: 7473 + pos: 0.5,-11.5 + parent: 16527 + - uid: 20818 components: - type: Transform - pos: 35.80644,-1.5253099 - parent: 2 -- proto: DrinkIceBucket - entities: - - uid: 5754 + pos: 1.5,-11.5 + parent: 16527 + - uid: 20819 components: - type: Transform - pos: 21.668037,55.797997 - parent: 2 -- proto: DrinkIceCreamGlass - entities: - - uid: 7474 + pos: 2.5,-11.5 + parent: 16527 + - uid: 20820 components: - type: Transform - pos: 40.746994,42.640934 - parent: 2 -- proto: DrinkIcedBeerGlass - entities: - - uid: 7475 + pos: 4.5,-11.5 + parent: 16527 + - uid: 20821 components: - type: Transform - pos: 91.41643,16.735619 - parent: 2 -- proto: DrinkIcedCoffeeGlass - entities: - - uid: 19016 + pos: 5.5,-11.5 + parent: 16527 + - uid: 20822 components: - type: Transform - pos: 35.70839,16.11933 - parent: 16504 -- proto: DrinkMugBlue - entities: - - uid: 7476 + pos: 6.5,-11.5 + parent: 16527 + - uid: 20823 components: - type: Transform - pos: 47.29251,9.744697 - parent: 2 -- proto: DrinkMugGreen - entities: - - uid: 7477 + pos: -4.5,-12.5 + parent: 16527 + - uid: 20824 components: - type: Transform - pos: 42.34393,65.96802 - parent: 2 -- proto: DrinkMugMetal - entities: - - uid: 7479 + pos: -3.5,-12.5 + parent: 16527 + - uid: 20825 components: - type: Transform - pos: 3.7027116,11.559009 - parent: 2 -- proto: DrinkMugOne - entities: - - uid: 7480 + pos: -2.5,-12.5 + parent: 16527 + - uid: 20826 components: - type: Transform - pos: 42.34393,65.59302 - parent: 2 -- proto: DrinkMugRed - entities: - - uid: 7481 + pos: -1.5,-12.5 + parent: 16527 + - uid: 20827 components: - type: Transform - pos: 42.703304,65.85864 - parent: 2 - - uid: 19017 + pos: -0.5,-12.5 + parent: 16527 + - uid: 20828 components: - type: Transform - pos: 21.811678,36.54419 - parent: 16504 -- proto: DrinkPatronBottleFull - entities: - - uid: 13111 + pos: 1.5,-12.5 + parent: 16527 + - uid: 20829 components: - type: Transform - pos: 16.692482,53.790447 - parent: 2 -- proto: DrinkPatronGlass - entities: - - uid: 11130 + pos: 2.5,-12.5 + parent: 16527 + - uid: 20830 components: - type: Transform - pos: 16.392956,53.51701 - parent: 2 -- proto: DrinkPoisonWinebottleFull - entities: - - uid: 7482 + pos: 3.5,-12.5 + parent: 16527 + - uid: 20831 components: - type: Transform - pos: 6.3480477,28.588303 - parent: 2 -- proto: DrinkRumBottleFull - entities: - - uid: 7483 + pos: 4.5,-12.5 + parent: 16527 + - uid: 20832 components: - type: Transform - pos: 33.353012,22.205637 - parent: 2 - - uid: 9698 + pos: 5.5,-12.5 + parent: 16527 + - uid: 20833 components: - - type: MetaData - name: кубинский пряный ром капитана Пита (ром) - type: Transform - pos: 22.588404,55.60221 - parent: 2 - - type: SolutionContainerManager - solutions: null - containers: - - drink - - type: Label - currentLabel: ром - - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.8788875 - - type: NameModifier - baseName: кубинский пряный ром капитана Пита - - type: ContainerContainer - containers: - solution@drink: !type:ContainerSlot - ent: 9699 -- proto: DrinkShaker - entities: - - uid: 13504 + pos: -3.5,-13.5 + parent: 16527 + - uid: 20834 components: - type: Transform - pos: 19.333187,52.720135 - parent: 2 -- proto: DrinkShotGlass - entities: - - uid: 7484 + pos: -2.5,-13.5 + parent: 16527 + - uid: 20835 components: - type: Transform - pos: 30.435932,62.610104 - parent: 2 -- proto: DrinkTequilaBottleFull - entities: - - uid: 484 + pos: -1.5,-13.5 + parent: 16527 + - uid: 20836 components: - - type: MetaData - name: бутылка текилы Каккаво гарантированного качества (текила) - type: Transform - pos: 23.684235,55.62825 - parent: 2 - - type: SolutionContainerManager - solutions: null - containers: - - drink - - type: Label - currentLabel: текила - - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.1993812 - - type: NameModifier - baseName: бутылка текилы Каккаво гарантированного качества - - type: ContainerContainer - containers: - solution@drink: !type:ContainerSlot - ent: 487 -- proto: DrinkVacuumFlask - entities: - - uid: 7485 + pos: -0.5,-13.5 + parent: 16527 + - uid: 20837 components: - type: Transform - pos: 3.4370866,11.621509 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canReact: True - maxVol: 30 - name: null - reagents: - - data: null - ReagentId: Tea - Quantity: 30 -- proto: DrinkVermouthBottleFull - entities: - - uid: 10372 + pos: 0.5,-13.5 + parent: 16527 + - uid: 20838 components: - - type: MetaData - name: бутылка вермута Золотой глаз (вермут) - type: Transform - pos: 22.364939,55.823563 - parent: 2 - - type: SolutionContainerManager - solutions: null - containers: - - drink - - type: Label - currentLabel: вермут - - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.57316935 - - type: NameModifier - baseName: бутылка вермута Золотой глаз - - type: ContainerContainer - containers: - solution@drink: !type:ContainerSlot - ent: 10373 -- proto: DrinkVodkaBottleFull - entities: - - uid: 2388 + pos: 1.5,-13.5 + parent: 16527 + - uid: 20839 components: - - type: MetaData - name: бутылка водки (водка) - type: Transform - pos: 23.449825,55.836586 - parent: 2 - - type: SolutionContainerManager - solutions: null - containers: - - drink - - type: Label - currentLabel: водка - - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.6057508 - - type: NameModifier - baseName: бутылка водки - - type: ContainerContainer - containers: - solution@drink: !type:ContainerSlot - ent: 2390 -- proto: DrinkWaterBottleFull - entities: - - uid: 7486 + pos: 2.5,-13.5 + parent: 16527 + - uid: 20840 components: - type: Transform - pos: 7.2832575,21.488586 - parent: 2 - - uid: 7487 + pos: 3.5,-13.5 + parent: 16527 + - uid: 20841 components: - type: Transform - pos: 46.66765,73.89926 - parent: 2 - - uid: 7488 + pos: 4.5,-13.5 + parent: 16527 + - uid: 20842 components: - type: Transform - pos: 46.429153,73.789185 - parent: 2 - - uid: 7489 + pos: -1.5,5.5 + parent: 16527 + - uid: 20843 components: - type: Transform - pos: 54.439995,20.60543 - parent: 2 - - uid: 7490 + pos: -1.5,4.5 + parent: 16527 + - uid: 20844 components: - type: Transform - pos: 54.33062,20.746056 - parent: 2 - - uid: 19018 + pos: -1.5,3.5 + parent: 16527 + - uid: 20845 components: - type: Transform - pos: 35.27089,16.55683 - parent: 16504 - - uid: 19019 + pos: -1.5,2.5 + parent: 16527 + - uid: 20846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.630264,16.634954 - parent: 16504 -- proto: DrinkWaterJug - entities: - - uid: 19020 + pos: -1.5,1.5 + parent: 16527 + - uid: 20847 components: - type: Transform - pos: 12.102557,14.29726 - parent: 16504 -- proto: DrinkWineBottleFull - entities: - - uid: 2393 + pos: -0.5,6.5 + parent: 16527 + - uid: 20848 components: - - type: MetaData - name: особое двухбородое бородатое вино (вино) - type: Transform - pos: 23.05379,55.604862 - parent: 2 - - type: SolutionContainerManager - solutions: null - containers: - - drink - - type: Label - currentLabel: вино - - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.42002517 - - type: NameModifier - baseName: особое двухбородое бородатое вино - - type: ContainerContainer - containers: - solution@drink: !type:ContainerSlot - ent: 2394 -- proto: Dropper - entities: - - uid: 21556 + pos: -0.5,5.5 + parent: 16527 + - uid: 20849 components: - type: Transform - pos: 35.339718,49.33393 - parent: 2 - - uid: 21557 + pos: -0.5,3.5 + parent: 16527 + - uid: 20850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.714718,49.568306 - parent: 2 - - uid: 21558 + pos: -0.5,1.5 + parent: 16527 + - uid: 20851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.542843,49.24018 - parent: 2 -- proto: DungeonMasterCircuitBoard - entities: - - uid: 582 + pos: -0.5,0.5 + parent: 16527 + - uid: 20852 components: - type: Transform - parent: 577 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: EggSpider - entities: - - uid: 19021 + pos: 0.5,6.5 + parent: 16527 + - uid: 20853 components: - type: Transform - pos: 20.282858,8.429473 - parent: 16504 - - uid: 19022 + pos: 0.5,5.5 + parent: 16527 + - uid: 20854 components: - type: Transform - pos: 20.595358,8.429473 - parent: 16504 - - uid: 19023 + pos: 0.5,3.5 + parent: 16527 + - uid: 20855 components: - type: Transform - pos: 20.657642,-0.4185686 - parent: 16504 - - uid: 19024 + pos: 0.5,2.5 + parent: 16527 + - uid: 20856 components: - type: Transform - pos: 20.313892,-0.3248186 - parent: 16504 - - uid: 19025 + pos: 0.5,1.5 + parent: 16527 + - uid: 20857 components: - type: Transform - pos: 22.445118,2.6054916 - parent: 16504 - - uid: 19026 + pos: 0.5,0.5 + parent: 16527 + - uid: 20858 components: - type: Transform - pos: 22.616993,2.3711166 - parent: 16504 - - uid: 19027 + pos: 1.5,6.5 + parent: 16527 + - uid: 20859 components: - type: Transform - pos: -6.6742554,29.646019 - parent: 16504 - - uid: 19028 + pos: 1.5,5.5 + parent: 16527 + - uid: 20860 components: - type: Transform - pos: -6.4398804,29.380394 - parent: 16504 - - uid: 19029 + pos: 0.5,4.5 + parent: 16527 + - uid: 20861 components: - type: Transform - pos: -17.297878,19.52823 - parent: 16504 - - uid: 19030 + pos: 1.5,3.5 + parent: 16527 + - uid: 20862 components: - type: Transform - pos: -17.641628,19.606356 - parent: 16504 - - uid: 19031 + pos: 2.5,2.5 + parent: 16527 + - uid: 20863 components: - type: Transform - pos: -17.610378,19.200106 - parent: 16504 -- proto: ElectricGuitarInstrument - entities: - - uid: 21492 + pos: 1.5,1.5 + parent: 16527 + - uid: 20864 components: - type: Transform - pos: 21.326803,40.50964 - parent: 2 -- proto: EmergencyLight - entities: - - uid: 3482 + pos: 1.5,0.5 + parent: 16527 + - uid: 20865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,53.5 - parent: 2 - - uid: 4505 + pos: 2.5,5.5 + parent: 16527 + - uid: 20866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,53.5 - parent: 2 - - uid: 6935 + pos: 2.5,4.5 + parent: 16527 + - uid: 20867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,36.5 - parent: 2 - - uid: 7491 + pos: 2.5,3.5 + parent: 16527 + - uid: 20868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 2 - - uid: 7492 + pos: 2.5,1.5 + parent: 16527 + - uid: 20869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 2 - - uid: 7493 + pos: -13.5,31.5 + parent: 16527 + - uid: 20870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,8.5 - parent: 2 - - uid: 7494 + pos: -13.5,29.5 + parent: 16527 + - uid: 20871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,31.5 - parent: 2 - - uid: 7496 + pos: -13.5,30.5 + parent: 16527 + - uid: 20872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,75.5 - parent: 2 - - uid: 7497 + pos: -16.5,32.5 + parent: 16527 + - uid: 20873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-2.5 - parent: 2 - - uid: 7498 + pos: -16.5,28.5 + parent: 16527 + - uid: 20874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 2 - - uid: 7499 + pos: -15.5,33.5 + parent: 16527 + - uid: 20875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 2 - - uid: 7500 + pos: -16.5,30.5 + parent: 16527 + - uid: 20876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,26.5 - parent: 2 - - uid: 7501 + pos: -16.5,29.5 + parent: 16527 + - uid: 20877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 2 - - uid: 7502 + pos: -16.5,31.5 + parent: 16527 + - uid: 20878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,24.5 - parent: 2 - - uid: 7503 + pos: -14.5,29.5 + parent: 16527 + - uid: 20879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 2 - - type: Battery - startingCharge: 2147.0674 - - type: ActiveEmergencyLight - - uid: 7504 + pos: -14.5,28.5 + parent: 16527 + - uid: 20880 components: - type: Transform - pos: 23.5,18.5 - parent: 2 - - uid: 7505 + pos: -14.5,30.5 + parent: 16527 + - uid: 20881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,21.5 - parent: 2 - - uid: 7506 + pos: -15.5,28.5 + parent: 16527 + - uid: 20882 components: - type: Transform - pos: 42.5,10.5 - parent: 2 - - uid: 7507 + pos: -14.5,32.5 + parent: 16527 + - uid: 20883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 2 - - type: Battery - startingCharge: 1974.5082 - - type: ActiveEmergencyLight - - uid: 7508 + pos: -14.5,31.5 + parent: 16527 + - uid: 20884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 2 - - type: Battery - startingCharge: 1974.5082 - - type: ActiveEmergencyLight - - uid: 7509 + pos: -16.5,33.5 + parent: 16527 + - uid: 20885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,4.5 - parent: 2 - - type: Battery - startingCharge: 2148.7676 - - type: ActiveEmergencyLight - - uid: 7510 + pos: -14.5,33.5 + parent: 16527 + - uid: 20886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,9.5 - parent: 2 - - type: Battery - startingCharge: 1939.6592 - - type: ActiveEmergencyLight - - uid: 7511 + pos: -15.5,31.5 + parent: 16527 + - uid: 20887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,8.5 - parent: 2 - - type: Battery - startingCharge: 1827.379 - - type: ActiveEmergencyLight - - uid: 7512 + pos: -15.5,30.5 + parent: 16527 + - uid: 20888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-3.5 - parent: 2 - - type: Battery - startingCharge: 2148.7676 - - type: ActiveEmergencyLight - - uid: 7513 + pos: -15.5,32.5 + parent: 16527 + - uid: 20889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-8.5 - parent: 2 - - type: Battery - startingCharge: 2082.46 - - type: ActiveEmergencyLight - - uid: 7514 + pos: -15.5,29.5 + parent: 16527 + - uid: 20890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,16.5 - parent: 2 - - uid: 7515 + pos: -17.5,28.5 + parent: 16527 + - uid: 20891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,16.5 - parent: 2 - - type: Battery - startingCharge: 2082.46 - - type: ActiveEmergencyLight - - uid: 7516 + pos: -17.5,29.5 + parent: 16527 + - uid: 20892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,28.5 - parent: 2 - - type: Battery - startingCharge: 1878.4609 - - type: ActiveEmergencyLight - - uid: 7517 + pos: -17.5,30.5 + parent: 16527 + - uid: 20893 components: - type: Transform - pos: 42.5,32.5 - parent: 2 - - type: Battery - startingCharge: 1878.4609 - - type: ActiveEmergencyLight - - uid: 7518 + pos: -17.5,31.5 + parent: 16527 + - uid: 20894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,34.5 - parent: 2 - - type: Battery - startingCharge: 1878.4609 - - type: ActiveEmergencyLight - - uid: 7519 + pos: -17.5,32.5 + parent: 16527 + - uid: 20895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,46.5 - parent: 2 - - uid: 7520 + pos: -17.5,33.5 + parent: 16527 + - uid: 20896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,22.5 - parent: 2 - - type: Battery - startingCharge: 1827.379 - - type: ActiveEmergencyLight - - uid: 7521 + pos: -13.5,32.5 + parent: 16527 + - uid: 20897 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,30.5 - parent: 2 - - uid: 7522 + pos: -23.5,26.5 + parent: 16527 + - uid: 20898 components: - type: Transform - pos: 63.5,14.5 - parent: 2 - - type: Battery - startingCharge: 1827.379 - - type: ActiveEmergencyLight - - uid: 7523 + pos: -23.5,27.5 + parent: 16527 + - uid: 20899 components: - type: Transform - pos: 38.5,14.5 - parent: 2 - - type: Battery - startingCharge: 1827.379 - - type: ActiveEmergencyLight - - uid: 7525 + pos: -26.5,27.5 + parent: 16527 + - uid: 20900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 2 - - type: Battery - startingCharge: 2125.6816 - - type: ActiveEmergencyLight - - uid: 7526 + pos: -26.5,26.5 + parent: 16527 + - uid: 20901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,17.5 - parent: 2 - - type: Battery - startingCharge: 1827.379 - - type: ActiveEmergencyLight - - uid: 7527 + pos: -24.5,26.5 + parent: 16527 + - uid: 20902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,31.5 - parent: 2 - - type: Battery - startingCharge: 2128.6487 - - type: ActiveEmergencyLight - - uid: 7528 + pos: -25.5,26.5 + parent: 16527 + - uid: 20903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,35.5 - parent: 2 - - type: Battery - startingCharge: 1827.379 - - type: ActiveEmergencyLight - - uid: 7529 + pos: -23.5,28.5 + parent: 16527 + - uid: 20904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,59.5 - parent: 2 - - type: Battery - startingCharge: 2086.7605 - - type: ActiveEmergencyLight - - uid: 7531 + pos: -24.5,28.5 + parent: 16527 + - uid: 20905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,49.5 - parent: 2 - - type: Battery - startingCharge: 1827.379 - - type: ActiveEmergencyLight - - uid: 7532 + pos: -25.5,28.5 + parent: 16527 + - uid: 20906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,58.5 - parent: 2 - - type: Battery - startingCharge: 2086.7605 - - type: ActiveEmergencyLight - - uid: 7533 + pos: -26.5,28.5 + parent: 16527 + - uid: 20907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,70.5 - parent: 2 - - type: Battery - startingCharge: 1827.379 - - type: ActiveEmergencyLight - - uid: 7534 + rot: 3.141592653589793 rad + pos: -7.5,34.5 + parent: 16527 + - uid: 20908 components: - type: Transform rot: 3.141592653589793 rad - pos: 63.5,51.5 - parent: 2 - - type: Battery - startingCharge: 1827.379 - - type: ActiveEmergencyLight - - uid: 7535 + pos: -8.5,34.5 + parent: 16527 + - uid: 20909 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,78.5 - parent: 2 - - type: Battery - startingCharge: 2093.0112 - - type: ActiveEmergencyLight - - uid: 7536 + pos: -16.5,9.5 + parent: 16527 + - uid: 20910 components: - type: Transform - pos: 52.5,53.5 - parent: 2 - - type: Battery - startingCharge: 1827.379 - - type: ActiveEmergencyLight - - uid: 7537 + pos: -16.5,8.5 + parent: 16527 + - uid: 20911 components: - type: Transform - pos: 30.5,38.5 - parent: 2 - - type: Battery - startingCharge: 1827.379 - - type: ActiveEmergencyLight - - uid: 7538 + pos: -17.5,6.5 + parent: 16527 + - uid: 20912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,63.5 - parent: 2 - - uid: 7539 + pos: -18.5,6.5 + parent: 16527 + - uid: 20913 components: - type: Transform - pos: 39.5,1.5 - parent: 2 - - uid: 7540 + pos: -20.5,7.5 + parent: 16527 + - uid: 20914 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,26.5 - parent: 2 - - uid: 7541 + pos: -17.5,10.5 + parent: 16527 + - uid: 20915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,22.5 - parent: 2 - - uid: 7542 + pos: -15.5,10.5 + parent: 16527 + - uid: 20916 components: - type: Transform - pos: 73.5,66.5 - parent: 2 - - uid: 7543 + pos: -20.5,10.5 + parent: 16527 + - uid: 20917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-11.5 - parent: 2 - - uid: 7544 + pos: -20.5,11.5 + parent: 16527 + - uid: 20918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,81.5 - parent: 2 - - uid: 7545 + pos: -18.5,12.5 + parent: 16527 + - uid: 20919 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,26.5 - parent: 2 - - uid: 7546 + pos: -17.5,12.5 + parent: 16527 + - uid: 20920 components: - type: Transform - pos: 53.5,57.5 - parent: 2 - - uid: 7547 + pos: -26.5,53.5 + parent: 16527 + - uid: 20921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,26.5 - parent: 2 - - uid: 7549 + pos: -26.5,52.5 + parent: 16527 + - uid: 20922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,22.5 - parent: 2 - - uid: 7550 + pos: -25.5,54.5 + parent: 16527 + - uid: 20923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 2 - - uid: 7551 + pos: -24.5,52.5 + parent: 16527 + - uid: 20924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 2 - - uid: 7552 + pos: -25.5,55.5 + parent: 16527 + - uid: 20925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 2 - - uid: 7564 + pos: -31.5,45.5 + parent: 16527 + - uid: 20926 components: - type: Transform - pos: 53.5,73.5 - parent: 2 - - uid: 7570 + pos: -25.5,53.5 + parent: 16527 + - uid: 20927 components: - type: Transform - pos: 56.5,32.5 - parent: 2 - - uid: 7572 + pos: -25.5,52.5 + parent: 16527 + - uid: 20928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,16.5 - parent: 2 - - uid: 7573 + pos: -26.5,55.5 + parent: 16527 + - uid: 20929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,16.5 - parent: 2 - - uid: 7574 + pos: -26.5,54.5 + parent: 16527 + - uid: 20930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,19.5 - parent: 2 - - uid: 7575 + pos: -24.5,53.5 + parent: 16527 + - uid: 20931 components: - type: Transform - pos: 45.5,36.5 - parent: 2 - - uid: 7576 + pos: -24.5,54.5 + parent: 16527 + - uid: 20932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,19.5 - parent: 2 - - uid: 7577 + pos: -24.5,55.5 + parent: 16527 + - uid: 20933 components: - type: Transform - pos: 40.5,24.5 - parent: 2 - - uid: 7578 + pos: -30.5,54.5 + parent: 16527 + - uid: 20934 components: - type: Transform - pos: 40.5,17.5 - parent: 2 - - uid: 7579 + pos: -30.5,55.5 + parent: 16527 + - uid: 20935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,68.5 - parent: 2 - - uid: 7580 + pos: -30.5,53.5 + parent: 16527 + - uid: 20936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,71.5 - parent: 2 - - uid: 7581 + pos: -31.5,55.5 + parent: 16527 + - uid: 20937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,85.5 - parent: 2 - - uid: 7582 + pos: -31.5,54.5 + parent: 16527 + - uid: 20938 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,59.5 - parent: 2 - - uid: 7583 + pos: -31.5,53.5 + parent: 16527 + - uid: 20939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,66.5 - parent: 2 - - uid: 7584 + pos: -32.5,55.5 + parent: 16527 + - uid: 20940 components: - type: Transform - pos: 39.5,69.5 - parent: 2 - - uid: 7585 + pos: -32.5,54.5 + parent: 16527 + - uid: 20941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,61.5 - parent: 2 - - uid: 7586 + pos: -32.5,53.5 + parent: 16527 + - uid: 20942 components: - type: Transform - pos: 50.5,57.5 - parent: 2 - - uid: 7587 + pos: -33.5,55.5 + parent: 16527 + - uid: 20943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,77.5 - parent: 2 - - uid: 9347 + pos: -33.5,54.5 + parent: 16527 + - uid: 20944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,43.5 - parent: 2 - - uid: 10212 + pos: -33.5,53.5 + parent: 16527 + - uid: 20945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,20.5 - parent: 2 - - uid: 12942 + pos: -33.5,49.5 + parent: 16527 + - uid: 20946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,50.5 - parent: 2 - - uid: 16027 + pos: -33.5,48.5 + parent: 16527 + - uid: 20947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,53.5 - parent: 2 - - uid: 16179 + pos: -33.5,47.5 + parent: 16527 + - uid: 20948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,27.5 - parent: 2 - - uid: 19032 + pos: -32.5,49.5 + parent: 16527 + - uid: 20949 components: - type: Transform - pos: -5.5,12.5 - parent: 16504 - - uid: 19033 + pos: -32.5,48.5 + parent: 16527 + - uid: 20950 components: - type: Transform - pos: 6.5,12.5 - parent: 16504 - - uid: 19034 + pos: -32.5,47.5 + parent: 16527 + - uid: 20951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,1.5 - parent: 16504 - - uid: 19035 + pos: -31.5,49.5 + parent: 16527 + - uid: 20952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,1.5 - parent: 16504 - - uid: 19036 + pos: -31.5,48.5 + parent: 16527 + - uid: 20953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-3.5 - parent: 16504 - - uid: 19037 + pos: -31.5,47.5 + parent: 16527 + - uid: 20954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 16504 - - uid: 19038 + pos: -34.5,47.5 + parent: 16527 + - uid: 20955 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,7.5 - parent: 16504 - - uid: 19039 + pos: -34.5,48.5 + parent: 16527 + - uid: 20956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,7.5 - parent: 16504 - - uid: 19040 + pos: -34.5,49.5 + parent: 16527 + - uid: 20957 components: - type: Transform - pos: -15.5,16.5 - parent: 16504 - - uid: 19041 + pos: -35.5,47.5 + parent: 16527 + - uid: 20958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 16504 - - uid: 21728 + pos: -35.5,48.5 + parent: 16527 + - uid: 20959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 2 - - uid: 21780 + pos: -35.5,49.5 + parent: 16527 + - uid: 20960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,50.5 - parent: 2 - - uid: 21788 + pos: -36.5,47.5 + parent: 16527 + - uid: 20961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-39.5 - parent: 2 - - uid: 21789 + pos: -36.5,48.5 + parent: 16527 + - uid: 20962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,52.5 - parent: 2 - - uid: 21793 + pos: -36.5,49.5 + parent: 16527 + - uid: 20963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,48.5 - parent: 2 - - uid: 21796 + pos: -32.5,57.5 + parent: 16527 + - uid: 20964 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,57.5 - parent: 2 - - uid: 21798 + pos: 12.5,52.5 + parent: 16527 + - uid: 20965 components: - type: Transform - pos: 31.5,55.5 + rot: 3.141592653589793 rad + pos: 12.5,48.5 + parent: 16527 + - uid: 21209 + components: + - type: Transform + pos: 61.5,-21.5 parent: 2 - - uid: 21799 + - uid: 21210 components: - type: Transform - pos: 21.5,55.5 + pos: 60.5,-21.5 parent: 2 - - uid: 21800 + - uid: 21264 components: - type: Transform - pos: 14.5,55.5 + pos: 59.5,-21.5 parent: 2 - - uid: 21801 + - uid: 21288 components: - type: Transform - pos: 16.5,51.5 + pos: 58.5,-21.5 parent: 2 - - uid: 21802 + - uid: 21322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,43.5 + pos: 57.5,-21.5 parent: 2 - - uid: 21803 + - uid: 21395 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,40.5 + pos: 56.5,-21.5 parent: 2 - - uid: 21804 + - uid: 21396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,42.5 + pos: 55.5,-21.5 parent: 2 - - uid: 21805 + - uid: 21397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,43.5 + pos: 54.5,-21.5 parent: 2 - - uid: 21806 + - uid: 21398 components: - type: Transform - pos: 12.5,64.5 + pos: 53.5,-21.5 parent: 2 - - uid: 21807 + - uid: 21399 components: - type: Transform - pos: 15.5,64.5 + pos: 52.5,-21.5 parent: 2 - - uid: 21809 + - uid: 21400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,72.5 + pos: 53.5,-25.5 parent: 2 - - uid: 21810 + - uid: 21401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,79.5 + pos: 54.5,-25.5 parent: 2 - - uid: 21811 + - uid: 21464 components: - type: Transform - pos: 30.5,-41.5 + pos: 22.5,-28.5 parent: 2 - - uid: 21812 + - uid: 21503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-39.5 + pos: 22.5,-29.5 parent: 2 - - uid: 21813 + - uid: 21504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-34.5 + pos: 22.5,-26.5 parent: 2 - - uid: 21814 + - uid: 21522 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-30.5 + pos: 31.5,-39.5 parent: 2 - - uid: 21817 + - uid: 21730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-36.5 + pos: 55.5,-25.5 parent: 2 - - uid: 21819 + - uid: 21731 components: - type: Transform - pos: 14.5,-41.5 + pos: 56.5,-25.5 parent: 2 - - uid: 21821 + - uid: 21733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-44.5 + pos: 57.5,-25.5 parent: 2 - - uid: 21822 + - uid: 21842 components: - type: Transform - pos: 22.5,-46.5 + pos: 58.5,-25.5 parent: 2 - - uid: 21823 + - uid: 21845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-44.5 + pos: 59.5,-25.5 parent: 2 - - uid: 21824 + - uid: 21892 components: - type: Transform - pos: 28.5,-42.5 + pos: -13.5,18.5 parent: 2 - - uid: 21825 + - uid: 21896 components: - type: Transform - pos: 16.5,-42.5 + pos: -12.5,18.5 parent: 2 - - uid: 21826 + - uid: 21897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-41.5 + pos: -10.5,19.5 parent: 2 - - uid: 21828 + - uid: 21909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-41.5 + pos: -11.5,19.5 parent: 2 - - uid: 21830 + - uid: 21917 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-39.5 + pos: -4.5,16.5 parent: 2 - - uid: 21831 + - uid: 21918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-39.5 + rot: 1.5707963267948966 rad + pos: -5.5,16.5 parent: 2 - - uid: 21832 + - uid: 21919 components: - type: Transform - pos: 22.5,-37.5 + rot: 1.5707963267948966 rad + pos: -6.5,18.5 parent: 2 - - uid: 21833 + - uid: 21920 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-35.5 + pos: -7.5,18.5 parent: 2 - - uid: 21834 + - uid: 21921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-35.5 + rot: 1.5707963267948966 rad + pos: -7.5,19.5 parent: 2 - - uid: 21835 + - uid: 21967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-39.5 + pos: 60.5,-25.5 parent: 2 - - uid: 21836 + - uid: 21968 components: - type: Transform - pos: 15.5,-37.5 + pos: 49.5,-16.5 parent: 2 -- proto: EmergencyOxygenTank - entities: - - uid: 7588 + - uid: 21969 components: - type: Transform - pos: 58.857124,34.53521 + pos: 60.5,-29.5 parent: 2 -- proto: EmergencyRollerBed - entities: - - uid: 7589 + - uid: 21970 components: - type: Transform - pos: 43.44456,-1.4222625 + pos: 59.5,-29.5 parent: 2 - - uid: 7590 + - uid: 21971 components: - type: Transform - pos: 13.297308,-18.88206 + pos: 58.5,-29.5 parent: 2 - - uid: 7591 + - uid: 21972 components: - type: Transform - pos: 49.491436,-0.4052043 + pos: 57.5,-29.5 parent: 2 - - uid: 22233 + - uid: 21973 components: - type: Transform - pos: 47.507214,-9.464468 + pos: 56.5,-29.5 parent: 2 - - uid: 22234 + - uid: 21974 components: - type: Transform - pos: 44.49159,-10.245718 + pos: 55.5,-29.5 parent: 2 - - uid: 22241 + - uid: 21975 components: - type: Transform - pos: 44.52284,-9.401968 + pos: 54.5,-29.5 parent: 2 - - uid: 22244 + - uid: 21976 components: - type: Transform - pos: 44.475964,-5.4175925 + pos: 53.5,-29.5 parent: 2 -- proto: EncryptionKeyBinary - entities: - - uid: 7596 + - uid: 21977 components: - type: Transform - parent: 7595 - - type: Physics - canCollide: False -- proto: EncryptionKeyCargo - entities: - - uid: 7598 + pos: 52.5,-29.5 + parent: 2 + - uid: 21978 components: - type: Transform - parent: 7597 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 7600 + pos: 48.5,-16.5 + parent: 2 + - uid: 21979 components: - type: Transform - parent: 7599 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 7602 + pos: 51.5,-17.5 + parent: 2 + - uid: 21981 components: - type: Transform - parent: 7601 - - type: Physics - canCollide: False - - uid: 19043 + pos: 51.5,-19.5 + parent: 2 + - uid: 22242 components: - type: Transform - parent: 19042 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 7604 + pos: -12.5,19.5 + parent: 2 + - uid: 22243 components: - type: Transform - parent: 7603 - - type: Physics - canCollide: False -- proto: EncryptionKeyFreelance - entities: - - uid: 19045 + pos: -13.5,19.5 + parent: 2 + - uid: 22500 components: - type: Transform - parent: 19044 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 7606 + pos: -13.5,17.5 + parent: 2 + - uid: 22501 components: - type: Transform - parent: 7605 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 7608 + pos: -12.5,17.5 + parent: 2 + - uid: 22503 components: - type: Transform - parent: 7607 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 7610 + pos: -10.5,17.5 + parent: 2 + - uid: 22504 components: - type: Transform - parent: 7609 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 7612 + pos: -9.5,17.5 + parent: 2 + - uid: 22505 components: - type: Transform - parent: 7611 - - type: Physics - canCollide: False -- proto: EnergyCutlass + pos: -6.5,16.5 + parent: 2 +- proto: Chair entities: - - uid: 19855 + - uid: 5952 components: - type: Transform - pos: 74.66137,0.62739515 + rot: 3.141592653589793 rad + pos: 43.5,60.5 parent: 2 -- proto: EnergyShield - entities: - - uid: 19046 + - uid: 5953 components: - type: Transform - pos: -22.216787,16.567097 - parent: 16504 -- proto: ExGrenade - entities: - - uid: 1061 + rot: 1.5707963267948966 rad + pos: 40.5,62.5 + parent: 2 + - uid: 5954 components: - type: Transform - parent: 1057 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1062 + rot: 3.141592653589793 rad + pos: 42.5,60.5 + parent: 2 + - uid: 5955 components: - type: Transform - parent: 1057 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ExosuitFabricator - entities: - - uid: 7614 + rot: 1.5707963267948966 rad + pos: 40.5,61.5 + parent: 2 + - uid: 5956 components: - type: Transform - pos: 28.5,-2.5 + rot: -1.5707963267948966 rad + pos: 78.5,61.5 parent: 2 -- proto: ExplosivesSignMed - entities: - - uid: 19047 + - uid: 5957 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,25.5 - parent: 16504 - - uid: 19048 + pos: 77.5,58.5 + parent: 2 + - uid: 5958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,27.5 - parent: 16504 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 7615 + pos: 7.5,16.5 + parent: 2 + - uid: 5960 components: - type: Transform - pos: 21.5,15.5 + rot: 3.141592653589793 rad + pos: 75.5,58.5 parent: 2 - - uid: 7616 + - uid: 5961 components: - type: Transform - pos: 13.5,39.5 + rot: -1.5707963267948966 rad + pos: 78.5,59.5 parent: 2 - - uid: 7617 + - uid: 5966 components: - type: Transform - pos: 10.5,24.5 + pos: 54.5,18.5 parent: 2 - - uid: 7618 + - uid: 5967 components: - type: Transform - pos: 38.5,15.5 + pos: 55.5,18.5 parent: 2 - - uid: 7619 + - uid: 5968 components: - type: Transform - pos: 59.5,15.5 + pos: 8.5,16.5 parent: 2 - - uid: 7620 + - uid: 5969 components: - type: Transform - pos: 73.5,29.5 + rot: 3.141592653589793 rad + pos: 83.5,45.5 parent: 2 - - uid: 7621 + - uid: 5970 components: - type: Transform - pos: 73.5,19.5 + pos: 83.5,44.5 parent: 2 - - uid: 7622 + - uid: 5971 components: - type: Transform - pos: 73.5,39.5 + rot: 3.141592653589793 rad + pos: 83.5,42.5 parent: 2 - - uid: 7623 + - uid: 5972 components: - type: Transform - pos: 69.5,47.5 + pos: 83.5,47.5 parent: 2 - - uid: 7624 + - uid: 5973 components: - type: Transform - pos: 80.5,43.5 + pos: 3.5,34.5 parent: 2 - - uid: 7625 + - uid: 5974 components: - type: Transform - pos: 67.5,61.5 + rot: 3.141592653589793 rad + pos: 32.5,24.5 parent: 2 - - uid: 7626 + - uid: 5975 components: - type: Transform - pos: 52.5,56.5 + rot: 1.5707963267948966 rad + pos: 72.5,8.5 parent: 2 - - uid: 7627 + - uid: 5976 components: - type: Transform - pos: 48.5,67.5 + rot: 1.5707963267948966 rad + pos: 12.5,74.5 parent: 2 - - uid: 7628 + - uid: 5977 components: - type: Transform - pos: 40.5,77.5 + pos: 75.5,62.5 parent: 2 - - uid: 7629 + - uid: 5978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,67.5 + rot: 1.5707963267948966 rad + pos: 74.5,61.5 parent: 2 - - uid: 7630 + - uid: 5979 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,11.5 + pos: 68.5,62.5 parent: 2 - - uid: 7631 + - uid: 5980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,7.5 - parent: 2 - - uid: 7632 + rot: 1.5707963267948966 rad + pos: 74.5,59.5 + parent: 2 + - uid: 5981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-5.5 + pos: 68.5,58.5 parent: 2 - - uid: 7633 + - uid: 5982 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-3.5 + pos: 68.5,59.5 parent: 2 - - uid: 7634 + - uid: 5983 components: - type: Transform - pos: 13.5,51.5 + pos: 68.5,61.5 parent: 2 - - uid: 7635 + - uid: 5984 components: - type: Transform - pos: 24.5,-9.5 + rot: 3.141592653589793 rad + pos: 68.5,56.5 parent: 2 - - uid: 7636 + - uid: 5989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,35.5 + pos: 77.5,62.5 parent: 2 -- proto: FatExtractor - entities: - - uid: 21579 + - uid: 6006 components: - type: Transform - pos: 33.5,53.5 + pos: 68.5,64.5 parent: 2 -- proto: FaxMachineBase - entities: - - uid: 7637 + - uid: 6012 components: - type: Transform - pos: 4.5,5.5 + rot: -1.5707963267948966 rad + pos: 83.5,55.5 parent: 2 - - type: FaxMachine - name: Отдел Снабжения - - uid: 7638 + - uid: 6013 components: - type: Transform - pos: 5.5,3.5 + rot: -1.5707963267948966 rad + pos: 83.5,64.5 parent: 2 - - type: FaxMachine - name: Кабинет квартирмейстера - - uid: 7639 + - uid: 6015 components: - type: Transform - pos: 20.5,20.5 + rot: 3.141592653589793 rad + pos: 73.5,7.5 parent: 2 - - type: FaxMachine - name: Глава Персонала - - uid: 7640 + - uid: 6016 components: - type: Transform - pos: 23.5,27.5 + rot: 1.5707963267948966 rad + pos: 12.5,76.5 parent: 2 - - type: FaxMachine - name: Мостик - - type: DeviceNetwork - address: Мостик - - uid: 7641 + - uid: 6017 components: - type: Transform - pos: 24.5,-3.5 + rot: 1.5707963267948966 rad + pos: 12.5,75.5 parent: 2 - - type: FaxMachine - name: Научно-Исследовательский Отдел - - uid: 7642 + - uid: 6018 components: - type: Transform - pos: 17.5,6.5 + rot: -1.5707963267948966 rad + pos: 15.5,70.5 parent: 2 - - type: FaxMachine - name: Научный Руководитель - - uid: 7643 + - uid: 6019 components: - type: Transform - pos: 46.5,6.5 + rot: -1.5707963267948966 rad + pos: 15.5,73.5 parent: 2 - - type: FaxMachine - name: Главный Врач - - uid: 7644 + - uid: 6020 components: - type: Transform - pos: 40.5,34.5 + rot: -1.5707963267948966 rad + pos: 15.5,72.5 parent: 2 - - type: FaxMachine - name: Детектив - - uid: 7645 + - uid: 6021 components: - type: Transform - pos: 62.5,62.5 + rot: -1.5707963267948966 rad + pos: 15.5,71.5 parent: 2 - - type: FaxMachine - name: Библиотека - - uid: 7646 + - uid: 6022 components: - type: Transform - pos: 55.5,24.5 + pos: 32.5,26.5 parent: 2 - - type: FaxMachine - name: Служба Безопасности - - uid: 7647 + - uid: 6023 components: - type: Transform - pos: 43.5,68.5 + pos: 16.5,26.5 parent: 2 - - type: FaxMachine - name: Атмосферный отдел - - uid: 7648 + - uid: 6024 components: - type: Transform - pos: 7.5,22.5 + rot: 3.141592653589793 rad + pos: 16.5,24.5 parent: 2 - - type: FaxMachine - name: Агент Внутренних Дел - - uid: 7649 + - uid: 6025 components: - type: Transform - pos: 37.5,10.5 + rot: 1.5707963267948966 rad + pos: 81.5,47.5 parent: 2 - - type: FaxMachine - name: Медицинский отдел - - uid: 7650 + - uid: 6026 components: - type: Transform - pos: 50.5,30.5 + rot: 1.5707963267948966 rad + pos: 81.5,46.5 parent: 2 - - type: FaxMachine - name: Глава Службы Безопасности - - uid: 7651 + - uid: 6027 components: - type: Transform - pos: 37.5,69.5 + rot: 1.5707963267948966 rad + pos: 81.5,45.5 parent: 2 - - uid: 21790 + - uid: 6028 components: - type: Transform - pos: 21.5,-44.5 + rot: 1.5707963267948966 rad + pos: 81.5,44.5 parent: 2 - - type: FaxMachine - name: Ядро ИИ -- proto: FaxMachineCaptain - entities: - - uid: 7653 + - uid: 6029 components: - type: Transform - pos: 33.5,21.5 + rot: 1.5707963267948966 rad + pos: 81.5,43.5 parent: 2 - - type: FaxMachine - name: Каюта капитана -- proto: FaxMachineSyndie - entities: - - uid: 19049 + - uid: 6030 components: - type: Transform - pos: 18.5,4.5 - parent: 16504 -- proto: FenceMetalBroken - entities: - - uid: 12580 + rot: 1.5707963267948966 rad + pos: 81.5,42.5 + parent: 2 + - uid: 6031 components: - type: Transform - pos: 11.5,61.5 + pos: 78.5,38.5 parent: 2 - - uid: 13081 + - uid: 6032 components: - type: Transform - pos: 52.5,10.5 + pos: 77.5,38.5 parent: 2 -- proto: FigureSpawner - entities: - - uid: 7655 + - uid: 6033 components: - type: Transform - pos: 66.5,63.5 + pos: 76.5,38.5 parent: 2 -- proto: filingCabinet - entities: - - uid: 7656 + - uid: 6034 components: - type: Transform - pos: 43.5,30.5 + rot: 3.141592653589793 rad + pos: 76.5,36.5 parent: 2 -- proto: filingCabinetDrawer - entities: - - uid: 7657 + - uid: 6035 components: - type: Transform - pos: 36.5,10.5 + rot: 3.141592653589793 rad + pos: 77.5,36.5 parent: 2 -- proto: filingCabinetDrawerRandom - entities: - - uid: 4323 + - uid: 6036 components: - type: Transform - pos: 33.5,50.5 + rot: 3.141592653589793 rad + pos: 78.5,36.5 parent: 2 -- proto: filingCabinetRandom - entities: - - uid: 19050 + - uid: 6037 components: - type: Transform - pos: 4.5,6.5 - parent: 16504 - - uid: 19051 + pos: 50.5,18.5 + parent: 2 + - uid: 6038 components: - type: Transform - pos: 21.5,33.5 - parent: 16504 -- proto: FireAlarm - entities: - - uid: 7658 + pos: 49.5,18.5 + parent: 2 + - uid: 6039 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,1.5 + pos: 49.5,16.5 parent: 2 - - type: DeviceList - devices: - - 10041 - - 10165 - - 10149 - - 10125 - - 10040 - - 501 - - 10022 - - 10158 - - 7850 - - 7851 - - 7852 - - 7853 - - 7854 - - 7855 - - 7879 - - 7819 - - 7880 - - 7822 - - 7821 - - 7820 - - 7843 - - 7842 - - 7752 - - 7760 - - 7750 - - 7751 - - 7845 - - 7844 - - 7813 - - 7814 - - 7810 - - 7808 - - uid: 7659 + - uid: 6040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,1.5 + rot: 3.141592653589793 rad + pos: 50.5,16.5 parent: 2 - - type: DeviceList - devices: - - 10181 - - 10054 - - 7930 - - 7816 - - 7931 - - 7946 - - 7924 - - 9951 - - 10077 - - uid: 7660 + - uid: 6041 components: - type: Transform - pos: 48.5,25.5 + pos: 43.5,63.5 parent: 2 - - type: DeviceList - devices: - - 10186 - - 10062 - - 9969 - - 10093 - - 7801 - - 7791 - - 7800 - - 7789 - - 7802 - - 440 - - 7812 - - 7811 - - 7837 - - 7954 - - 7956 - - 7957 - - uid: 7661 + - uid: 6042 components: - type: Transform - pos: 3.5,15.5 + rot: -1.5707963267948966 rad + pos: 44.5,61.5 parent: 2 - - type: DeviceList - devices: - - 7733 - - 7734 - - 7738 - - uid: 7662 + - uid: 6043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,3.5 + rot: -1.5707963267948966 rad + pos: 44.5,62.5 parent: 2 - - type: DeviceList - devices: - - 7736 - - uid: 7663 + - uid: 6044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,9.5 + pos: 41.5,63.5 parent: 2 - - type: DeviceList - devices: - - 7732 - - 7737 - - 7735 - - 7736 - - uid: 7664 + - uid: 6045 components: - type: Transform - pos: 7.5,17.5 + pos: 42.5,63.5 parent: 2 - - type: DeviceList - devices: - - 7734 - - 7733 - - 7732 - - 7737 - - 7822 - - uid: 7665 + - uid: 6046 components: - type: Transform - pos: 31.5,39.5 + pos: 92.5,19.5 parent: 2 - - type: DeviceList - devices: - - 496 - - 7891 - - 7889 - - 7890 - - 7856 - - 7857 - - 7858 - - 7809 - - 7926 - - 7859 - - 7860 - - 7861 - - 10073 - - 9947 - - uid: 7666 + - uid: 6047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,19.5 + rot: 3.141592653589793 rad + pos: 41.5,60.5 parent: 2 - - type: DeviceList - devices: - - 7823 - - 7824 - - 7879 - - 7880 - - 7883 - - 7882 - - 7881 - - 7825 - - 7917 - - 502 - - 10027 - - 10154 - - uid: 7667 + - uid: 6048 components: - type: Transform - pos: 7.5,35.5 + rot: 3.141592653589793 rad + pos: 77.5,6.5 parent: 2 - - type: DeviceList - devices: - - 7888 - - 7887 - - 10031 - - 10164 - - uid: 7668 + - uid: 6536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,29.5 + rot: 3.141592653589793 rad + pos: 40.5,-8.5 parent: 2 - - type: DeviceList - devices: - - 7881 - - 7882 - - 7883 - - 7884 - - 7885 - - 7886 - - 7887 - - 7888 - - 494 - - 10072 - - 9949 - - uid: 7669 + - uid: 20966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,38.5 - parent: 2 - - type: DeviceList - devices: - - 7886 - - 7885 - - 7884 - - 7889 - - 7890 - - 7891 - - 495 - - 10035 - - 10147 - - 7928 - - uid: 7670 + rot: -1.5707963267948966 rad + pos: 29.5,45.5 + parent: 16527 + - uid: 20967 components: - type: Transform - pos: 37.5,46.5 - parent: 2 - - type: DeviceList - devices: - - 7861 - - 7860 - - 7859 - - 497 - - uid: 7671 + rot: -1.5707963267948966 rad + pos: -8.5,29.5 + parent: 16527 + - uid: 20968 components: - type: Transform - pos: 43.5,46.5 - parent: 2 - - uid: 7672 + pos: -5.5,71.5 + parent: 16527 + - uid: 20969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,49.5 - parent: 2 - - type: DeviceList - devices: - - 7864 - - 7863 - - 7862 - - 7904 - - 7903 - - 7902 - - 7865 - - 7866 - - 7867 - - uid: 7673 + rot: 3.141592653589793 rad + pos: 1.5,72.5 + parent: 16527 + - uid: 20970 components: - type: Transform - pos: 61.5,54.5 - parent: 2 - - type: DeviceList - devices: - - 7906 - - 7905 - - 7865 - - 7866 - - 7867 - - 7776 - - 7909 - - 7908 - - 7907 - - 10014 - - 7775 - - 7868 - - 7869 - - 7870 - - 10142 - - 7913 - - 7912 - - 7914 - - 7873 - - 7872 - - 7871 - - 7949 - - 7911 - - 7910 - - 7777 - - uid: 7674 + rot: 1.5707963267948966 rad + pos: 0.5,70.5 + parent: 16527 + - uid: 20971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,71.5 + parent: 16527 + - uid: 20972 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,56.5 - parent: 2 - - type: DeviceList - devices: - - 7774 - - 7906 - - 7905 - - uid: 7675 + pos: 6.5,69.5 + parent: 16527 + - uid: 20973 components: - type: Transform - pos: 66.5,50.5 - parent: 2 - - type: DeviceList - devices: - - 7776 - - 7777 - - uid: 7676 + pos: 2.5,70.5 + parent: 16527 + - uid: 20974 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,52.5 - parent: 2 - - type: DeviceList - devices: - - 7907 - - 7908 - - 7909 - - 7777 - - 7867 - - 7866 - - 7865 - - 7905 - - 7906 - - 7776 - - 10014 - - 7775 - - 7868 - - 7869 - - 7870 - - 10142 - - 7913 - - 7912 - - 7914 - - 7873 - - 7872 - - 7871 - - 7949 - - 7911 - - 7910 - - uid: 7677 + pos: 27.5,43.5 + parent: 16527 + - uid: 20975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,59.5 - parent: 2 - - type: DeviceList - devices: - - 7909 - - 7908 - - 7907 - - 7841 - - 7875 - - uid: 7678 + rot: -1.5707963267948966 rad + pos: -20.5,53.5 + parent: 16527 + - uid: 20976 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,41.5 - parent: 2 - - type: DeviceList - devices: - - 7775 - - 7868 - - 7869 - - 7870 - - 7911 - - 7910 - - 7873 - - 7872 - - 7871 - - 7914 - - 7913 - - 7912 - - 7867 - - 7866 - - 7865 - - 7905 - - 7906 - - 7776 - - 7909 - - 7908 - - 7907 - - 10014 - - 10142 - - 7949 - - 7777 - - uid: 7679 + pos: 28.5,42.5 + parent: 16527 + - uid: 20977 components: - type: Transform - pos: 65.5,41.5 - parent: 2 - - type: DeviceList - devices: - - 7910 - - 7911 - - uid: 7680 + rot: -1.5707963267948966 rad + pos: 30.5,43.5 + parent: 16527 + - uid: 20978 components: - type: Transform - pos: 80.5,39.5 - parent: 2 - - type: DeviceList - devices: - - 7868 - - 7869 - - 7870 - - 7840 - - 7874 - - 475 - - uid: 7681 + pos: 26.5,44.5 + parent: 16527 + - uid: 20979 components: - type: Transform - pos: 76.5,43.5 - parent: 2 - - type: DeviceList - devices: - - 7775 - - uid: 7682 + rot: -1.5707963267948966 rad + pos: 32.5,56.5 + parent: 16527 + - uid: 20980 components: - type: Transform - pos: 80.5,35.5 - parent: 2 - - type: DeviceList - devices: - - 7915 - - 7914 - - 7913 - - 7912 - - uid: 7683 + rot: 1.5707963267948966 rad + pos: 30.5,55.5 + parent: 16527 + - uid: 21650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,27.5 + rot: 3.141592653589793 rad + pos: 41.5,-8.5 parent: 2 - - type: DeviceList - devices: - - 7915 - - uid: 7684 +- proto: ChairCarp + entities: + - uid: 2364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,25.5 + pos: 31.5,47.5 parent: 2 - - type: DeviceList - devices: - - 7873 - - 7872 - - 7871 - - 7950 - - 10134 - - 10020 - - 7772 - - 7876 - - 7877 - - 7878 - - 7951 - - uid: 7685 + - uid: 6014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,19.5 + rot: 3.141592653589793 rad + pos: 53.5,20.5 parent: 2 - - type: DeviceList - devices: - - 7772 - - 7873 - - 7872 - - 7871 - - 7950 - - 10134 - - 10020 - - 7876 - - 7877 - - 7878 - - 7951 - - uid: 7686 + - uid: 6049 components: - type: Transform - pos: 63.5,15.5 + rot: -1.5707963267948966 rad + pos: 13.5,-15.5 parent: 2 - - type: DeviceList - devices: - - 7953 - - 10133 - - 9985 - - 7952 - - 411 - - 10011 - - 10141 - - 10132 - - 10049 - - 7855 - - 7854 - - 7853 - - 7778 - - uid: 7687 + - uid: 14717 components: - type: Transform - pos: 53.5,15.5 + rot: 3.141592653589793 rad + pos: 55.5,20.5 parent: 2 - - type: DeviceList - devices: - - 9985 - - 10133 - - 7953 - - 7952 - - 411 - - 10011 - - 10141 - - 10132 - - 10049 - - 7855 - - 7854 - - 7853 - - 7778 - - uid: 7688 + - uid: 15574 components: - type: Transform - pos: 43.5,15.5 + rot: 3.141592653589793 rad + pos: 54.5,20.5 parent: 2 - - type: DeviceList - devices: - - 7853 - - 7854 - - 7855 - - 9985 - - 10133 - - 7953 - - 7952 - - 411 - - 10011 - - 10141 - - 10132 - - 10049 - - 7778 - - uid: 7689 + - uid: 20981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,33.5 - parent: 2 - - type: DeviceList - devices: - - 7858 - - 7857 - - 7856 - - 7826 - - 7832 - - 7833 - - 7836 - - 7852 - - 7851 - - 7850 - - 462 - - 10128 - - 10017 - - 10042 - - 10150 - - uid: 7690 + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 16527 + - uid: 20982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 7850 - - 7851 - - 7852 - - 462 - - 10128 - - 10017 - - 10042 - - 10150 - - 7832 - - 7833 - - 7826 - - 7836 - - 7858 - - 7857 - - 7856 - - uid: 7691 + rot: 3.141592653589793 rad + pos: -13.5,62.5 + parent: 16527 + - uid: 20983 components: - type: Transform - pos: 27.5,15.5 - parent: 2 - - type: DeviceList - devices: - - 501 - - 10041 - - 10165 - - 10149 - - 10125 - - 10040 - - 10022 - - 10158 - - 7850 - - 7851 - - 7852 - - 7853 - - 7854 - - 7855 - - 7879 - - 7819 - - 7880 - - 7822 - - 7821 - - 7820 - - 7843 - - 7842 - - 7752 - - 7760 - - 7750 - - 7751 - - 7845 - - 7844 - - 7813 - - 7814 - - 7810 - - 7808 - - uid: 7692 + rot: 3.141592653589793 rad + pos: -11.5,61.5 + parent: 16527 + - uid: 21281 components: - type: Transform - pos: 18.5,15.5 + rot: 3.141592653589793 rad + pos: 30.5,42.5 parent: 2 - - type: DeviceList - devices: - - 10041 - - 10165 - - 10149 - - 10125 - - 10040 - - 501 - - 10022 - - 10158 - - 7850 - - 7851 - - 7852 - - 7853 - - 7854 - - 7855 - - 7879 - - 7819 - - 7880 - - 7822 - - 7821 - - 7820 - - 7843 - - 7842 - - 7752 - - 7760 - - 7750 - - 7751 - - 7845 - - 7844 - - 7813 - - 7814 - - 7810 - - 7808 - - uid: 7693 + - uid: 21284 components: - type: Transform - pos: 32.5,27.5 + pos: 30.5,47.5 parent: 2 - - type: DeviceList - devices: - - 7826 - - 7739 - - 7825 - - uid: 7694 + - uid: 21285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,22.5 + pos: 31.5,44.5 parent: 2 - - type: DeviceList - devices: - - 7739 - - uid: 7695 + - uid: 21292 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,18.5 - parent: 2 - - type: DeviceList - devices: - - 7823 - - 7824 - - uid: 7696 - components: - - type: Transform - pos: 8.5,24.5 + pos: 31.5,42.5 parent: 2 - - type: DeviceList - devices: - - 7917 - - uid: 7698 + - uid: 21293 components: - type: Transform - pos: 43.5,29.5 + pos: 30.5,44.5 parent: 2 - - type: DeviceList - devices: - - 7833 - - 7832 - - 7838 - - 7839 - - 7835 - - 7834 - - 7763 - - 7764 - - 7765 - - 7767 - - uid: 7699 + - uid: 21299 components: - type: Transform - pos: 43.5,33.5 + rot: 3.141592653589793 rad + pos: 33.5,44.5 parent: 2 - - type: DeviceList - devices: - - 7764 - - 7839 - - 7838 - - 7836 - - uid: 7700 + - uid: 21302 components: - type: Transform - pos: 39.5,37.5 + rot: 3.141592653589793 rad + pos: 33.5,40.5 parent: 2 - - type: DeviceList - devices: - - 7766 - - uid: 7701 + - uid: 21303 components: - type: Transform - pos: 51.5,34.5 + pos: 33.5,46.5 parent: 2 - - type: DeviceList - devices: - - 7763 - - uid: 7702 + - uid: 21304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,18.5 + pos: 33.5,42.5 parent: 2 - - type: DeviceList - devices: - - 7837 - - uid: 7703 +- proto: ChairFolding + entities: + - uid: 6050 components: - type: Transform - pos: 23.5,19.5 + pos: 57.5,-9.5 parent: 2 - - type: DeviceList - devices: - - 7741 - - uid: 7704 + - uid: 6051 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,10.5 + pos: 67.5,17.5 parent: 2 - - type: DeviceList - devices: - - 7752 - - 7756 - - 7757 - - uid: 7705 + - uid: 6052 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,4.5 + pos: 67.5,18.5 parent: 2 - - type: DeviceList - devices: - - 7755 - - uid: 7706 + - uid: 6053 components: - type: Transform - pos: 22.5,2.5 + rot: 1.5707963267948966 rad + pos: 67.5,19.5 parent: 2 - - type: DeviceList - devices: - - 7829 - - 7758 - - 7759 - - 7754 - - 7831 - - 7830 - - uid: 7707 + - uid: 6054 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-8.5 + pos: 36.311443,78.544846 parent: 2 - - type: DeviceList - devices: - - 7895 - - 7896 - - 7830 - - uid: 7708 + - uid: 6055 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-9.5 + pos: 90.490166,17.626564 parent: 2 - - type: DeviceList - devices: - - 7896 - - 7895 - - 7793 - - 7897 - - 7898 - - uid: 7709 + - uid: 6056 components: - type: Transform - pos: 24.5,-13.5 + rot: 3.141592653589793 rad + pos: 91.84859,16.633379 parent: 2 - - type: DeviceList - devices: - - 7753 - - 7898 - - 7897 - - uid: 7710 + - uid: 11803 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,3.5 + rot: 1.5707963267948966 rad + pos: 17.275978,41.554043 parent: 2 - - type: DeviceList - devices: - - 7755 - - uid: 7711 + - uid: 11953 components: - type: Transform - pos: 35.5,7.5 + pos: 16.471619,46.424683 parent: 2 - - type: DeviceList - devices: - - 7843 - - 7842 - - 7844 - - 7845 - - 7771 - - 7770 - - 7769 - - uid: 7712 + - uid: 20984 components: - type: Transform - pos: 43.5,11.5 - parent: 2 - - uid: 7713 + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 16527 + - uid: 20985 components: - type: Transform - pos: 48.5,11.5 - parent: 2 - - type: DeviceList - devices: - - 7771 - - 457 - - uid: 7714 + pos: 11.5,15.5 + parent: 16527 + - uid: 20986 components: - type: Transform - pos: 57.5,-1.5 - parent: 2 - - type: DeviceList - devices: - - 7769 - - uid: 7715 + rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 16527 + - uid: 20987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-8.5 - parent: 2 - - type: DeviceList - devices: - - 7846 - - uid: 7716 + rot: -1.5707963267948966 rad + pos: -0.808197,72.04266 + parent: 16527 + - uid: 20988 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,7.5 + pos: 4.4105377,69.48016 + parent: 16527 + - uid: 20989 + components: + - type: Transform + pos: 6.676193,71.93329 + parent: 16527 + - uid: 21314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.234486,45.906715 parent: 2 - - type: DeviceList - devices: - - 7919 - - 7918 - - uid: 7717 + - uid: 21315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,15.5 + rot: -1.5707963267948966 rad + pos: 17.273552,44.904114 parent: 2 - - type: DeviceList - devices: - - 7772 - - uid: 7718 + - uid: 21317 components: - type: Transform - pos: 47.5,58.5 + rot: -1.5707963267948966 rad + pos: 17.312622,43.862446 parent: 2 - - type: DeviceList - devices: - - 7904 - - 7903 - - 7902 - - uid: 7719 + - uid: 21326 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,55.5 + pos: 17.29161,40.647793 parent: 2 - - uid: 7720 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 20990 components: - type: Transform - pos: 42.5,73.5 + pos: 0.09803772,69.16766 + parent: 16527 + - uid: 20991 + components: + - type: Transform + pos: 4.5980377,72.33954 + parent: 16527 +- proto: ChairOfficeDark + entities: + - uid: 6058 + components: + - type: Transform + pos: 53.477474,26.7046 parent: 2 - - type: DeviceList - devices: - - 7795 - - 7794 - - 7899 - - 7900 - - 7901 - - uid: 7721 + - uid: 6059 components: - type: Transform - pos: 46.5,75.5 + rot: 1.5707963267948966 rad + pos: 66.52678,9.618879 parent: 2 - - type: DeviceList - devices: - - 7773 - - 7899 - - 7900 - - uid: 7722 + - uid: 6060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,0.5 + rot: -1.5707963267948966 rad + pos: 48.53851,9.533354 parent: 2 - - type: DeviceList - devices: - - 7736 - - uid: 7723 + - uid: 6061 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-4.5 + pos: 7.5,10.5 parent: 2 - - type: DeviceList - devices: - - 7831 - - 7803 - - 10112 - - 9986 - - uid: 7724 + - uid: 6062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,2.5 + pos: 5.5,6.5 parent: 2 - - type: DeviceList - devices: - - 9962 - - 10087 - - 10192 - - 10056 - - 9952 - - 10098 - - 7933 - - 7932 - - 7769 - - 7937 - - 7927 - - 7925 - - 7936 - - 7847 - - 7771 - - 7815 - - 7848 - - 7849 - - uid: 19052 + - uid: 6063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,6.5 - parent: 16504 -- proto: FireAlarmAssembly - entities: - - uid: 19053 + pos: 5.5,2.5 + parent: 2 + - uid: 6064 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,6.5 - parent: 16504 -- proto: FireAxeCabinetFilled - entities: - - uid: 7725 + pos: 17.5,21.5 + parent: 2 + - uid: 6065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,27.5 + pos: 28.762114,29.10214 parent: 2 - - uid: 7726 + - uid: 6066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,70.5 + pos: 24.496489,29.774015 parent: 2 - - uid: 7727 + - uid: 6067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,85.5 + rot: 3.141592653589793 rad + pos: 26.996489,29.75839 parent: 2 - - uid: 19054 - components: - - type: Transform - pos: -14.5,8.5 - parent: 16504 - - uid: 22332 + - uid: 6068 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,72.5 + pos: 24.5,9.5 parent: 2 - missingComponents: - - AccessReader -- proto: FireAxeCabinetOpen - entities: - - uid: 19055 + - uid: 6069 components: - type: Transform - pos: 15.5,8.5 - parent: 16504 -- proto: FireExtinguisher - entities: - - uid: 7728 + rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 2 + - uid: 6070 components: - type: Transform - pos: 4.701282,11.6656885 + rot: 1.5707963267948966 rad + pos: 46.5,9.5 parent: 2 - - uid: 7729 + - uid: 6071 components: - type: Transform - pos: 4.232532,11.5563135 + rot: -1.5707963267948966 rad + pos: 35.5,9.5 parent: 2 - - uid: 7730 + - uid: 6072 components: - type: Transform - pos: 4.466907,11.6188135 + pos: 41.5,30.5 parent: 2 -- proto: Firelock - entities: - - uid: 882 + - uid: 6073 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,56.5 + pos: 39.5,32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14566 - - uid: 4283 + - uid: 6074 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,55.5 + pos: 8.5,21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3857 - - uid: 4284 + - uid: 6075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,51.5 + rot: 1.5707963267948966 rad + pos: 6.5,21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 4286 + - uid: 6076 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,51.5 + pos: 20.346596,29.16464 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 4287 + - uid: 6077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,51.5 + rot: 3.141592653589793 rad + pos: 8.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 4288 + - uid: 6078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,51.5 + pos: 21.502985,9.648951 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 4289 + - uid: 6079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,51.5 + pos: 41.5,35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 4291 + - uid: 6080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,51.5 + pos: 43.448,69.548584 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 4308 + - uid: 6081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,52.5 + rot: 3.141592653589793 rad + pos: 21.965239,29.69589 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 3857 - - uid: 4309 + - uid: 6082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,51.5 + rot: 3.141592653589793 rad + pos: 15.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 4310 + - uid: 6083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,51.5 + pos: 4.430807,12.5678215 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 4311 + - uid: 6084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,51.5 + pos: 21.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 4312 + - uid: 6085 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,51.5 + pos: -0.5635295,33.568768 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 4313 + - uid: 6086 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,51.5 + pos: 68.458984,9.688908 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 4314 + - uid: 15380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,51.5 + pos: 62.56078,20.706186 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 7548 - - uid: 6541 + - uid: 20992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,42.5 + parent: 16527 + - uid: 20993 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,55.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - uid: 7731 + pos: 5.5,3.5 + parent: 16527 + - uid: 20994 components: - type: Transform - pos: 19.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 56 - - 55 - - uid: 7732 + rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 16527 + - uid: 20995 + components: + - type: Transform + pos: -10.5,3.5 + parent: 16527 + - uid: 20996 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7663 - - 7664 - - uid: 7733 + pos: -11.5,-5.5 + parent: 16527 + - uid: 20997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 16527 + - uid: 20998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,3.5 + parent: 16527 + - uid: 20999 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7664 - - 7661 - - uid: 7734 + pos: 12.5,-5.5 + parent: 16527 + - uid: 21000 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7664 - - 7661 - - uid: 7735 + pos: 31.5,14.5 + parent: 16527 + - uid: 21001 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7663 - - uid: 7736 + pos: 28.5,13.5 + parent: 16527 + - uid: 21002 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7662 - - 7722 - - 7663 - - uid: 7737 + pos: 28.5,19.5 + parent: 16527 + - uid: 21003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7663 - - 7664 - - uid: 7738 + pos: 29.5,19.5 + parent: 16527 + - uid: 21004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7661 - - uid: 7739 + pos: 31.5,18.5 + parent: 16527 + - uid: 21005 components: - type: Transform - pos: 28.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7693 - - 7694 - - 111 - - uid: 7740 + rot: 1.5707963267948966 rad + pos: 26.5,18.5 + parent: 16527 + - uid: 21006 components: - type: Transform - pos: 28.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 112 - - uid: 7741 + rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 16527 + - uid: 21007 components: - type: Transform - pos: 23.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7703 - - uid: 7742 + rot: 1.5707963267948966 rad + pos: 21.5,34.5 + parent: 16527 + - uid: 21008 components: - type: Transform - pos: 30.5,-8.5 - parent: 2 - - uid: 7743 + rot: 3.141592653589793 rad + pos: -6.5,56.5 + parent: 16527 + - uid: 21009 components: - type: Transform - pos: 52.5,-12.5 - parent: 2 - - uid: 7744 + rot: -1.5707963267948966 rad + pos: -5.5,69.5 + parent: 16527 + - uid: 21010 components: - type: Transform - pos: 40.5,-11.5 - parent: 2 - - uid: 7745 + pos: 2.469513,75.75311 + parent: 16527 + - uid: 21011 components: - type: Transform - pos: 40.5,-10.5 - parent: 2 - - uid: 7749 + rot: 3.141592653589793 rad + pos: -10.585724,70.65082 + parent: 16527 + - uid: 21012 components: - type: Transform - pos: 43.5,55.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 102 - - uid: 7750 + pos: -20.781036,55.536804 + parent: 16527 + - uid: 21013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7751 + pos: -33.510345,39.60193 + parent: 16527 + - uid: 21014 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7752 + pos: -25.460327,39.644592 + parent: 16527 + - uid: 21015 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7704 - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7753 + pos: -25.413452,40.67578 + parent: 16527 + - uid: 21016 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7709 - - uid: 7754 + pos: -31.569702,41.816406 + parent: 16527 + - uid: 21017 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7706 - - 57 - - uid: 7755 + pos: -28.436798,42.627136 + parent: 16527 + - uid: 21018 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7705 - - 7710 - - uid: 7756 + pos: -33.40013,41.705505 + parent: 16527 +- proto: ChairOfficeLight + entities: + - uid: 6087 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,6.5 + pos: 53.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7704 - - uid: 7757 + - uid: 6088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,6.5 + pos: 57.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7704 - - uid: 7758 + - uid: 6089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,3.5 + pos: 59.5,62.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7706 - - 57 - - uid: 7759 + - uid: 6090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,3.5 + pos: 43.5139,6.6169376 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7706 - - uid: 7760 + - uid: 6091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,8.5 + rot: 3.141592653589793 rad + pos: 81.5,53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7761 + - uid: 6092 components: - type: Transform - pos: 79.5,10.5 + rot: -1.5707963267948966 rad + pos: 41.428684,10.520226 parent: 2 - - uid: 7762 + - uid: 6093 components: - type: Transform - pos: 79.5,11.5 + pos: 50.541992,55.54185 parent: 2 - - uid: 7763 +- proto: ChairPilotSeat + entities: + - uid: 21019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7698 - - 7701 - - 136 - - uid: 7764 + rot: 3.141592653589793 rad + pos: -25.5,31.5 + parent: 16527 + - uid: 21020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,31.5 + rot: 3.141592653589793 rad + pos: -24.5,31.5 + parent: 16527 +- proto: ChairWeb + entities: + - uid: 6516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7698 - - 7699 - - 136 - - uid: 7765 +- proto: ChairWood + entities: + - uid: 3850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,35.5 + rot: 1.5707963267948966 rad + pos: 27.936659,43.770454 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7698 - - 136 - - uid: 7766 + - uid: 3976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,37.5 + rot: 1.5707963267948966 rad + pos: 27.75856,46.270454 parent: 2 - - uid: 7767 + - uid: 3977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,37.5 + rot: 1.5707963267948966 rad + pos: 27.778093,47.61811 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7698 - - 136 - - uid: 7768 + - uid: 3980 components: - type: Transform - pos: 21.5,-19.5 + rot: 1.5707963267948966 rad + pos: 27.778093,44.903267 parent: 2 - - type: DeviceNetwork - deviceLists: - - 108 - - 109 - - uid: 7769 + - uid: 4305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,1.5 + pos: 21.5,48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7711 - - 7714 - - 124 - - 7724 - - uid: 7770 + - uid: 4319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,5.5 + rot: 3.141592653589793 rad + pos: 21.698488,46.576286 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7711 - - uid: 7771 + - uid: 5125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,5.5 + pos: 73.49717,4.5146527 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7711 - - 7713 - - 124 - - 7724 - - uid: 7772 + - uid: 5923 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,17.5 + rot: -1.5707963267948966 rad + pos: 75.46939,2.6674309 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7685 - - 7717 - - 75 - - 7684 - - uid: 7773 + - uid: 5937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,75.5 + rot: -1.5707963267948966 rad + pos: 75.511055,3.570208 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7721 - - 14202 - - uid: 7774 + - uid: 6097 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,63.5 + pos: 28.5,60.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7674 - - uid: 7775 + - uid: 6098 components: - type: Transform - pos: 73.5,41.5 + rot: -1.5707963267948966 rad + pos: 30.5,60.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7681 - - 103 - - 7673 - - 7676 - - uid: 7776 + - uid: 6099 components: - type: Transform - pos: 67.5,50.5 + rot: 1.5707963267948966 rad + pos: 75.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7675 - - 7673 - - 7676 - - 7678 - - uid: 7777 + - uid: 6100 components: - type: Transform - pos: 69.5,48.5 + rot: 1.5707963267948966 rad + pos: 75.5,30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7675 - - 7676 - - 103 - - 7673 - - 7678 - - uid: 7778 + - uid: 6101 components: - type: Transform - pos: 41.5,11.5 + rot: 1.5707963267948966 rad + pos: 76.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 115 - - 118 - - 7688 - - 7686 - - 7687 - - uid: 7779 + - uid: 6102 components: - type: Transform - pos: 21.5,-18.5 + rot: 1.5707963267948966 rad + pos: 76.5,30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 108 - - 109 - - uid: 7780 + - uid: 6103 components: - type: Transform - pos: 25.5,-19.5 + rot: 1.5707963267948966 rad + pos: 77.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 108 - - uid: 7781 + - uid: 6104 components: - type: Transform - pos: 12.5,-18.5 + rot: 1.5707963267948966 rad + pos: 77.5,30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 109 - - uid: 7782 + - uid: 6105 components: - type: Transform - pos: 12.5,-19.5 + rot: 1.5707963267948966 rad + pos: 75.5,34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 109 - - uid: 7784 + - uid: 6106 components: - type: Transform - pos: 64.5,26.5 + rot: 1.5707963267948966 rad + pos: 75.5,33.5 parent: 2 - - uid: 16461 + - uid: 6107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,54.5 + rot: 1.5707963267948966 rad + pos: 76.5,34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - 14566 - - uid: 19056 + - uid: 6108 components: - type: Transform - pos: -11.5,-7.5 - parent: 16504 - - uid: 19057 + rot: 1.5707963267948966 rad + pos: 76.5,33.5 + parent: 2 + - uid: 6109 components: - type: Transform - pos: -2.5,10.5 - parent: 16504 - - uid: 19058 + rot: 1.5707963267948966 rad + pos: 77.5,34.5 + parent: 2 + - uid: 6110 components: - type: Transform - pos: 3.5,10.5 - parent: 16504 - - uid: 19059 + rot: 1.5707963267948966 rad + pos: 77.5,33.5 + parent: 2 + - uid: 6111 components: - type: Transform - pos: 12.5,-7.5 - parent: 16504 - - uid: 19060 + rot: 1.5707963267948966 rad + pos: 78.5,34.5 + parent: 2 + - uid: 6112 components: - type: Transform - pos: -14.5,5.5 - parent: 16504 - - uid: 19061 + rot: 1.5707963267948966 rad + pos: 78.5,33.5 + parent: 2 + - uid: 6113 components: - type: Transform - pos: -13.5,5.5 - parent: 16504 - - uid: 19062 + rot: 1.5707963267948966 rad + pos: 78.5,31.5 + parent: 2 + - uid: 6114 components: - type: Transform - pos: 14.5,5.5 - parent: 16504 - - uid: 21561 + rot: 1.5707963267948966 rad + pos: 78.5,30.5 + parent: 2 + - uid: 6115 components: - type: Transform - pos: 32.5,68.5 + rot: -1.5707963267948966 rad + pos: 84.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14202 - - uid: 21670 + - uid: 6116 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,66.5 + pos: 84.5,26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - uid: 21682 + - uid: 6117 components: - type: Transform - pos: 21.5,-38.5 + rot: -1.5707963267948966 rad + pos: 60.5,59.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 21668 - - uid: 21683 + - uid: 6118 components: - type: Transform - pos: 23.5,-38.5 + rot: 3.141592653589793 rad + pos: 66.5,62.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 21669 - - uid: 21690 + - uid: 6119 components: - type: Transform - pos: 22.5,-31.5 + rot: 3.141592653589793 rad + pos: 65.5,62.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 16256 -- proto: FirelockEdge - entities: - - uid: 83 + - uid: 6120 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,82.5 + pos: 64.5,64.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14202 - - uid: 7789 + - uid: 6121 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,16.5 + pos: 64.5,63.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - 122 - - uid: 7790 + - uid: 6122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,86.5 + rot: -1.5707963267948966 rad + pos: 60.5,55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - uid: 7791 + - uid: 6532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,19.5 + pos: 74.55272,4.5285416 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - 122 - - uid: 7792 + - uid: 9331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,14.5 + pos: 23.5,48.5 parent: 2 - - uid: 7793 + - uid: 9346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-11.5 + pos: 24.5,48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7708 - - uid: 7794 + - uid: 9930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,71.5 + pos: 19.5,48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7720 - - 84 - - uid: 7795 + - uid: 10160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,72.5 + rot: 3.141592653589793 rad + pos: 24.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7720 - - 84 - - uid: 7796 + - uid: 10605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,71.5 + pos: 25.5,48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14202 - - uid: 7797 + - uid: 11490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,72.5 + rot: 3.141592653589793 rad + pos: 26.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14202 - - uid: 7798 + - uid: 11491 components: - type: Transform - pos: 22.5,-19.5 + pos: 26.5,48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 108 - - uid: 7799 + - uid: 11493 components: - type: Transform - pos: 23.5,-19.5 + rot: 3.141592653589793 rad + pos: 25.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 108 - - uid: 7800 + - uid: 11494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - 122 - - uid: 7801 + rot: 3.141592653589793 rad + pos: 23.5,46.5 + parent: 2 + - uid: 13921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,23.5 + rot: 3.141592653589793 rad + pos: 19.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - 122 - - uid: 7802 + - uid: 21021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - 122 - - uid: 7803 + pos: -13.130432,58.65155 + parent: 16527 + - uid: 21022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 128 - - 7723 - - uid: 7804 + rot: 3.141592653589793 rad + pos: -11.739807,55.760925 + parent: 16527 + - uid: 21023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,82.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - uid: 7805 + rot: 3.141592653589793 rad + pos: -13.536682,55.292175 + parent: 16527 + - uid: 21024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,81.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - uid: 7806 + rot: -1.5707963267948966 rad + pos: -10.208588,57.40155 + parent: 16527 +- proto: CheapLighter + entities: + - uid: 3617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,79.5 + rot: -1.5707963267948966 rad + pos: 38.903698,-26.569796 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - 85 - - uid: 21726 +- proto: CheckerBoard + entities: + - uid: 6127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,51.5 + pos: 19.512543,-18.396269 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3857 - - uid: 21727 + - uid: 21839 components: - type: Transform - pos: 43.5,51.5 + pos: 21.495317,47.61564 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3207 - - 3857 -- proto: FirelockElectronics +- proto: ChemDispenser entities: - - uid: 7807 + - uid: 6128 components: - type: Transform - pos: 62.31073,48.648914 + pos: 40.5,9.5 parent: 2 -- proto: FirelockFrame - entities: - - uid: 19063 + - uid: 6129 components: - type: Transform - pos: -6.5,-2.5 - parent: 16504 - - uid: 19064 + pos: 42.5,6.5 + parent: 2 +- proto: ChemDispenserEmpty + entities: + - uid: 6130 components: - type: Transform - pos: -12.5,5.5 - parent: 16504 - - uid: 19065 + pos: 19.5,-14.5 + parent: 2 +- proto: ChemicalPayload + entities: + - uid: 16529 components: - type: Transform - pos: 13.5,5.5 - parent: 16504 - - uid: 19066 + parent: 16528 + - type: ContainerContainer + containers: + BeakerSlotA: !type:ContainerSlot + showEnts: False + occludes: True + ent: 16530 + BeakerSlotB: !type:ContainerSlot + showEnts: False + occludes: True + ent: 16532 + - type: Physics + canCollide: False + - uid: 16535 components: - type: Transform - pos: 15.5,5.5 - parent: 16504 -- proto: FirelockGlass + parent: 16534 + - type: ContainerContainer + containers: + BeakerSlotA: !type:ContainerSlot + showEnts: False + occludes: True + ent: 16536 + BeakerSlotB: !type:ContainerSlot + showEnts: False + occludes: True + ent: 16538 + - type: Physics + canCollide: False +- proto: ChemistryHotplate entities: - - uid: 3981 + - uid: 6131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,46.5 + pos: 44.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3857 - - uid: 7808 +- proto: ChemMaster + entities: + - uid: 6132 components: - type: Transform - pos: 27.5,1.5 + pos: 40.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7809 + - uid: 6133 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,35.5 + pos: 44.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 100 - - 7665 - - uid: 7810 + - uid: 6134 components: - type: Transform - pos: 28.5,1.5 + pos: 18.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7811 + - uid: 18622 components: - type: Transform - pos: 52.5,19.5 + pos: 40.5,53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - 73 - - uid: 7812 +- proto: ChessBoard + entities: + - uid: 6135 components: - type: Transform - pos: 53.5,25.5 + pos: 9.432614,31.582724 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - 72 - - uid: 7813 + - uid: 12239 components: - type: Transform - pos: 32.5,1.5 + pos: 19.484901,47.63647 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7814 +- proto: ChurchOrganInstrument + entities: + - uid: 6136 components: - type: Transform - pos: 29.5,1.5 + rot: 3.141592653589793 rad + pos: 83.5,34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7815 +- proto: Cigar + entities: + - uid: 21408 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,5.5 + pos: 15.789893,53.671906 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 115 - - 7724 - - uid: 7816 +- proto: Cigarette + entities: + - uid: 21025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 - - 7659 - - uid: 7817 + pos: 3.8372192,74.664 + parent: 16527 + - uid: 21026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,7.5 - parent: 2 - - uid: 7818 + pos: 3.9778442,74.80463 + parent: 16527 + - uid: 21027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,58.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 131 - - uid: 7819 + pos: 4.040283,74.71088 + parent: 16527 +- proto: CigaretteSpent + entities: + - uid: 4282 components: - type: Transform - pos: 12.5,16.5 + rot: -1.5707963267948966 rad + pos: 76.59194,4.37199 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7820 + - uid: 4304 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,12.5 + pos: 76.57806,3.885879 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7821 + - uid: 4315 components: - type: Transform - pos: 10.5,13.5 + pos: 75.28639,4.62199 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7822 + - uid: 4316 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,14.5 + pos: 76.56417,3.4275458 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7664 - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7823 + - uid: 5853 components: - type: Transform - pos: 14.5,21.5 + pos: 73.96939,3.4188337 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7666 - - 7695 - - uid: 7824 + - uid: 6137 components: - type: Transform - pos: 14.5,17.5 + pos: 63.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7666 - - 7695 - - uid: 7825 + - uid: 9328 components: - type: Transform - pos: 14.5,25.5 + pos: 73.99717,3.4466116 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7666 - - 7693 - - uid: 7826 + - uid: 13881 components: - type: Transform - pos: 34.5,25.5 + pos: 73.96939,3.502167 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7689 - - 7693 - - 117 - - 7690 - - uid: 7827 +- proto: CigaretteSyndicate + entities: + - uid: 21028 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 112 - - uid: 7828 + pos: 3.8840942,74.7265 + parent: 16527 + - uid: 21029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 112 - - uid: 7829 + pos: 4.118454,74.64838 + parent: 16527 +- proto: CigarGold + entities: + - uid: 6138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-0.5 + pos: 24.363087,34.2277 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7706 - - 57 - - uid: 7830 +- proto: CigarGoldCase + entities: + - uid: 6139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 + pos: 20.370047,30.575838 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7706 - - 7707 - - 57 - - uid: 7831 + - uid: 6140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-2.5 + rot: -1.5707963267948966 rad + pos: 24.564734,25.990993 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7706 - - 7723 - - 57 - - 128 - - uid: 7832 +- proto: CigarSpent + entities: + - uid: 5862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,26.5 + pos: 23.854118,47.752377 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7689 - - 7698 - - 117 - - 7690 - - uid: 7833 + - uid: 13657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,28.5 + pos: 15.616814,48.651505 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7689 - - 7698 - - 117 - - 7690 - - uid: 7834 + - uid: 21410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,25.5 + pos: 15.581529,53.580757 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7698 - - 136 - - uid: 7835 + - uid: 21651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,25.5 + pos: 39.651012,-8.378641 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7698 - - 136 - - uid: 7836 +- proto: CigCartonBlack + entities: + - uid: 21841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,32.5 + pos: 28.502699,44.143787 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7689 - - 7699 - - 117 - - 7690 - - uid: 7837 +- proto: CigPackBlack + entities: + - uid: 21982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,19.5 + pos: 15.674469,41.40483 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7660 - - 7702 - - 134 - - 20470 - - uid: 7838 +- proto: CircuitImprinter + entities: + - uid: 6141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,29.5 + pos: 24.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7698 - - 7699 - - uid: 7839 +- proto: CleanerDispenser + entities: + - uid: 6142 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,29.5 + pos: 63.5,48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7698 - - 7699 - - uid: 7840 + - uid: 22395 components: - type: Transform - pos: 82.5,51.5 + rot: 1.5707963267948966 rad + pos: 63.5,47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7680 - - uid: 7841 + - uid: 22396 components: - type: Transform - pos: 82.5,54.5 + rot: 1.5707963267948966 rad + pos: 63.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7677 - - uid: 7842 +- proto: CloningPod + entities: + - uid: 6143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,10.5 + pos: 50.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7711 - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7843 +- proto: ClosetBombFilled + entities: + - uid: 6144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,9.5 + pos: 17.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7711 - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7844 +- proto: ClosetChefFilled + entities: + - uid: 21563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,6.5 + pos: 30.5,58.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7711 - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7845 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 5868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,4.5 + pos: 15.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7711 - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7846 + - uid: 6145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-10.5 + pos: 69.5,66.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7715 - - uid: 7847 + - uid: 6146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-11.5 + pos: 33.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 7724 - - uid: 7848 + - uid: 6147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,5.5 + pos: 23.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 115 - - 7724 - - uid: 7849 + - uid: 6148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,5.5 + pos: 70.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 115 - - 7724 - - uid: 7850 + - uid: 6150 components: - type: Transform - pos: 35.5,15.5 + pos: 64.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7690 - - 105 - - 7691 - - 7692 - - 7658 - - 117 - - 7689 - - uid: 7851 + - uid: 6151 components: - type: Transform - pos: 36.5,15.5 + pos: 11.5,38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7690 - - 105 - - 7691 - - 7692 - - 7658 - - 117 - - 7689 - - uid: 7852 + - uid: 6152 components: - type: Transform - pos: 37.5,15.5 + pos: 70.5,33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7690 - - 105 - - 7691 - - 7692 - - 7658 - - 117 - - 7689 - - uid: 7853 + - uid: 6153 components: - type: Transform - pos: 39.5,14.5 + pos: 49.5,51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7688 - - 105 - - 7691 - - 7692 - - 7658 - - 118 - - 7687 - - 7686 - - uid: 7854 + - uid: 6154 components: - type: Transform - pos: 39.5,13.5 + pos: 4.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7688 - - 105 - - 7691 - - 7692 - - 7658 - - 118 - - 7687 - - 7686 - - uid: 7855 + - uid: 6156 components: - type: Transform - pos: 39.5,12.5 + pos: 83.5,36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7688 - - 105 - - 7691 - - 7692 - - 7658 - - 118 - - 7687 - - 7686 - - uid: 7856 + - uid: 6158 components: - type: Transform - pos: 35.5,34.5 + pos: 83.5,50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7689 - - 100 - - 7665 - - 117 - - 7690 - - uid: 7857 + - uid: 6160 components: - type: Transform - pos: 36.5,34.5 + pos: 67.5,20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7689 - - 100 - - 7665 - - 117 - - 7690 - - uid: 7858 + - uid: 6161 components: - type: Transform - pos: 37.5,34.5 + pos: 64.5,42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7689 - - 100 - - 7665 - - 117 - - 7690 - - uid: 7859 + - uid: 6162 components: - type: Transform - pos: 35.5,39.5 + pos: 44.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7670 - - 100 - - 7665 - - uid: 7860 + - uid: 21030 components: - type: Transform - pos: 36.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7670 - - 100 - - 7665 - - uid: 7861 + pos: -16.5,-8.5 + parent: 16527 + - uid: 21031 components: - type: Transform - pos: 37.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7670 - - 100 - - 7665 - - uid: 7862 + pos: -15.5,14.5 + parent: 16527 + - uid: 21032 components: - type: Transform - pos: 45.5,46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7672 - - 101 - - 102 - - uid: 7863 + pos: -13.5,16.5 + parent: 16527 + - uid: 21033 components: - type: Transform - pos: 46.5,46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7672 - - 101 - - 102 - - uid: 7864 + pos: 22.5,6.5 + parent: 16527 + - uid: 21034 components: - type: Transform - pos: 47.5,46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7672 - - 101 - - 102 - - uid: 7865 + pos: -7.5,52.5 + parent: 16527 + - uid: 21035 components: - type: Transform - pos: 58.5,53.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7672 - - 7673 - - 102 - - 7676 - - 7678 - - uid: 7866 + pos: -14.5,46.5 + parent: 16527 + - uid: 21036 components: - type: Transform - pos: 58.5,52.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7672 - - 7673 - - 102 - - 7676 - - 7678 - - uid: 7867 + pos: 12.5,47.5 + parent: 16527 + - uid: 21037 components: - type: Transform - pos: 58.5,51.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7672 - - 7673 - - 102 - - 7676 - - 7678 - - uid: 7868 + pos: 19.5,46.5 + parent: 16527 +- proto: ClosetFire + entities: + - uid: 6163 components: - type: Transform - pos: 73.5,38.5 + pos: 16.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7680 - - 103 - - 7673 - - 7676 - - uid: 7869 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6164 + - 6165 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 21435 components: - type: Transform - pos: 73.5,37.5 + pos: 40.5,52.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7680 - - 103 - - 7673 - - 7676 - - uid: 7870 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21440 + - 21439 + - 21438 + - 21437 + - 21436 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetFireFilled + entities: + - uid: 6166 components: - type: Transform - pos: 73.5,36.5 + pos: 70.5,66.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7680 - - 103 - - 7673 - - 7676 - - uid: 7871 + - uid: 6167 components: - type: Transform - pos: 70.5,29.5 + pos: 74.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7684 - - 103 - - 7673 - - 7676 - - 7685 - - uid: 7872 + - uid: 6168 components: - type: Transform - pos: 71.5,29.5 + pos: 24.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7684 - - 103 - - 7673 - - 7676 - - 7685 - - uid: 7873 + - uid: 6169 components: - type: Transform - pos: 72.5,29.5 + pos: 26.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7684 - - 103 - - 7673 - - 7676 - - 7685 - - uid: 7874 + - uid: 6172 components: - type: Transform - pos: 81.5,51.5 + pos: 83.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7680 - - uid: 7875 + - uid: 6173 components: - type: Transform - pos: 81.5,54.5 + pos: 5.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7677 - - uid: 7876 + - uid: 6175 components: - type: Transform - pos: 69.5,14.5 + pos: 70.5,32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - 7684 - - 7685 - - uid: 7877 + - uid: 6176 components: - type: Transform - pos: 69.5,13.5 + pos: 48.5,51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - 7684 - - 7685 - - uid: 7878 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6178 components: - type: Transform - pos: 69.5,12.5 + pos: 65.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - 7684 - - 7685 - - uid: 7879 + - uid: 6179 components: - type: Transform - pos: 13.5,16.5 + pos: 11.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7666 - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7880 + - uid: 6180 components: - type: Transform - pos: 11.5,16.5 + pos: 83.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7666 - - 105 - - 7691 - - 7692 - - 7658 - - uid: 7881 + - uid: 6181 components: - type: Transform - pos: 11.5,27.5 + pos: 64.5,43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7666 - - 7668 - - uid: 7882 + - uid: 21038 components: - type: Transform - pos: 12.5,27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7666 - - 7668 - - uid: 7883 + pos: -16.5,14.5 + parent: 16527 +- proto: ClosetJanitorFilled + entities: + - uid: 6182 components: - type: Transform - pos: 13.5,27.5 + pos: 66.5,47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7666 - - 7668 - - uid: 7884 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 22476 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 21039 components: - type: Transform - pos: 13.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7668 - - 7669 - - uid: 7885 + pos: 20.5,13.5 + parent: 16527 +- proto: ClosetL3Filled + entities: + - uid: 6183 components: - type: Transform - pos: 12.5,34.5 + pos: 67.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7668 - - 7669 - - uid: 7886 +- proto: ClosetL3JanitorFilled + entities: + - uid: 6184 components: - type: Transform - pos: 11.5,34.5 + pos: 67.5,47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7668 - - 7669 - - uid: 7887 +- proto: ClosetL3SecurityFilled + entities: + - uid: 6185 components: - type: Transform - pos: 10.5,33.5 + pos: 58.5,18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7667 - - 7668 - - uid: 7888 +- proto: ClosetL3VirologyFilled + entities: + - uid: 6186 components: - type: Transform - pos: 10.5,32.5 + pos: 52.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7667 - - 7668 - - uid: 7889 + - uid: 6187 components: - type: Transform - pos: 24.5,38.5 + pos: 52.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7669 - - 7665 - - uid: 7890 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 297 components: - type: Transform - pos: 24.5,37.5 + pos: 37.5,58.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7669 - - 7665 - - uid: 7891 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 298 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6188 components: - type: Transform - pos: 24.5,36.5 + pos: 35.5,67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7669 - - 7665 - - uid: 7895 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6189 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6190 components: - type: Transform - pos: 23.5,-9.5 + pos: 86.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7707 - - 7708 - - uid: 7896 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6191 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6192 components: - type: Transform - pos: 22.5,-9.5 + pos: 4.5,21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7707 - - 7708 - - uid: 7897 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6193 components: - type: Transform - pos: 22.5,-13.5 + pos: 42.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7708 - - 7709 - - uid: 7898 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6194 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6195 components: - type: Transform - pos: 23.5,-13.5 + pos: 15.5,64.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7708 - - 7709 - - uid: 7899 + - uid: 6196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,70.5 + pos: 12.5,83.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7721 - - 7720 - - 84 - - uid: 7900 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6197 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,69.5 + pos: 37.5,61.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7721 - - 7720 - - 84 - - uid: 7901 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6199 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,67.5 + pos: 62.5,16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 131 - - 7720 - - 84 - - uid: 7902 + - uid: 6202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,54.5 + pos: 74.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7672 - - 7718 - - 130 - - 102 - - uid: 7903 + - uid: 6203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,54.5 + pos: 33.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7672 - - 7718 - - 130 - - 102 - - uid: 7904 + - uid: 6204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,54.5 + pos: 31.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7672 - - 7718 - - 130 - - 102 - - uid: 7905 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6205 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,54.5 + pos: 15.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7673 - - 7674 - - 7676 - - 7678 - - uid: 7906 + - uid: 6207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,54.5 + pos: 5.5,16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7673 - - 7674 - - 7676 - - 7678 - - uid: 7907 + - uid: 6208 components: - type: Transform - pos: 71.5,54.5 + pos: 85.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7676 - - 7677 - - 103 - - 7673 - - 7678 - - uid: 7908 + - uid: 6209 components: - type: Transform - pos: 70.5,54.5 + pos: 15.5,78.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7676 - - 7677 - - 103 - - 7673 - - 7678 - - uid: 7909 + - uid: 6210 components: - type: Transform - pos: 69.5,54.5 + pos: 42.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7676 - - 7677 - - 103 - - 7673 - - 7678 - - uid: 7910 + - uid: 6211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,39.5 + pos: 66.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7679 - - 103 - - 7673 - - 7676 - - uid: 7911 + - uid: 6212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,38.5 + pos: 49.5,39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7679 - - 103 - - 7673 - - 7676 - - uid: 7912 + - uid: 6213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,33.5 + pos: 17.5,65.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7682 - - 103 - - 7673 - - 7676 - - uid: 7913 + - uid: 6214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,32.5 + pos: 63.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7682 - - 103 - - 7673 - - 7676 - - uid: 7914 + - uid: 6215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,31.5 + pos: 25.5,67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7678 - - 7682 - - 103 - - 7673 - - 7676 - - uid: 7915 + - uid: 6216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,29.5 + pos: 61.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7682 - - 7683 - - uid: 7917 + - uid: 21040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7666 - - 7696 - - uid: 7918 + pos: -21.5,3.5 + parent: 16527 + - uid: 21041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7716 - - uid: 7919 + pos: -16.5,-4.5 + parent: 16527 + - uid: 21042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,11.5 + pos: 20.5,1.5 + parent: 16527 + - uid: 21043 + components: + - type: Transform + pos: 18.5,9.5 + parent: 16527 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 6217 + components: + - type: Transform + pos: 18.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7716 - - uid: 7920 + - uid: 6219 components: - type: Transform - pos: 23.5,-17.5 + pos: 54.5,73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 108 - - uid: 7921 + - uid: 16183 components: - type: Transform - pos: 22.5,-17.5 + pos: 51.5,73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 108 - - uid: 7922 +- proto: ClosetToolFilled + entities: + - uid: 6221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,65.5 + pos: 18.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 131 - - uid: 7923 + - uid: 6222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-1.5 + pos: 84.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 - - uid: 7924 + - uid: 6223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-5.5 + pos: 68.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 - - 129 - - 7659 - - uid: 7925 + - uid: 6224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-4.5 + pos: 39.5,61.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 123 - - 7724 - - uid: 7926 + - uid: 6225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,38.5 + pos: 47.5,57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 100 - - 7665 - - uid: 7927 +- proto: ClosetWallAtmospherics + entities: + - uid: 41 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,4.5 + pos: 22.5,76.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 7724 - - uid: 7928 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 44 + - 46 + - 47 + - 50 + - 48 + - 42 + - 45 + - 49 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 2404 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,39.5 + pos: 18.5,35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 99 - - 7669 - - uid: 7929 + - uid: 6226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 + pos: 16.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 - - uid: 7930 + - uid: 6227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,2.5 + pos: 47.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 - - 7659 - - uid: 7931 + - uid: 6228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,2.5 + pos: 26.5,-18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 - - 7659 - - uid: 7932 + - uid: 6229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,5.5 + pos: 65.5,36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 7724 - - uid: 7933 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,3.5 + pos: 33.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 7724 - - uid: 7935 + - uid: 6231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,54.5 + rot: 3.141592653589793 rad + pos: 14.5,-4.5 parent: 2 - - uid: 7936 + - uid: 6232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-7.5 + pos: 45.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 129 - - 124 - - 7724 - - uid: 7937 + - uid: 6233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,3.5 + pos: 32.5,18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 7724 - - uid: 7938 + - uid: 6235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,58.5 + pos: 50.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 130 - - uid: 7939 + - uid: 21205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,65.5 + rot: -1.5707963267948966 rad + pos: 38.5,42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 132 - - uid: 7940 + - uid: 21777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,60.5 + pos: 20.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 131 - - uid: 7941 + - uid: 21778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,59.5 + rot: -1.5707963267948966 rad + pos: 14.5,30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 132 - - uid: 7942 + - uid: 21871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,65.5 + rot: 1.5707963267948966 rad + pos: 43.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 131 - - uid: 7943 + - uid: 21873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,67.5 + pos: 51.5,5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 85 - - uid: 7944 +- proto: ClosetWallFire + entities: + - uid: 21044 + components: + - type: Transform + pos: -11.5,1.5 + parent: 16527 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 266 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,72.5 + pos: 26.5,35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 85 - - uid: 7945 + - uid: 5813 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,60.5 + pos: 14.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 132 - - uid: 7946 + - uid: 6236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-7.5 + pos: 51.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 - - 7659 - - uid: 7947 + - uid: 6237 components: - type: Transform - pos: 16.5,80.5 + pos: 66.5,36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - uid: 7948 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6238 components: - type: Transform - pos: 11.5,80.5 + pos: 33.5,18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - uid: 7949 + - uid: 6239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,35.5 + pos: 46.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - 7673 - - 7676 - - 7678 - - uid: 7950 + - uid: 6527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,23.5 + pos: 19.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - 7684 - - 7685 - - uid: 7951 + - uid: 21045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - 7684 - - 7685 - - uid: 7952 + pos: 12.5,1.5 + parent: 16527 + - uid: 21203 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,15.5 + pos: 38.5,41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 118 - - 7688 - - 7687 - - 7686 - - uid: 7953 + - uid: 21872 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,11.5 + pos: 46.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 118 - - 7688 - - 7687 - - 7686 - - uid: 7954 + - uid: 21874 components: - type: Transform - pos: 59.5,21.5 + rot: 3.141592653589793 rad + pos: 51.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - 15683 - - uid: 7955 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 6241 components: - type: Transform - pos: 55.5,27.5 + pos: 56.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 72 - - 135 - - uid: 7956 + - uid: 6242 components: - type: Transform - pos: 54.5,25.5 + pos: 63.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - uid: 7957 + - uid: 6243 components: - type: Transform - pos: 57.5,25.5 + pos: 13.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - 135 - - uid: 7958 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6244 + - uid: 6245 components: - type: Transform - pos: 57.5,29.5 + rot: 1.5707963267948966 rad + pos: 63.5,29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 135 - - uid: 7959 + - uid: 6246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,28.5 + pos: 46.5,40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 136 - - uid: 7960 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6247 + - uid: 6250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,26.5 + pos: 20.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 136 - - uid: 7961 + - uid: 6251 components: - type: Transform - pos: 11.5,78.5 + rot: -1.5707963267948966 rad + pos: 12.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - uid: 7962 + - uid: 6252 components: - type: Transform - pos: 11.5,70.5 + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - uid: 7963 + - uid: 6253 components: - type: Transform - pos: 11.5,72.5 + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - uid: 7964 +- proto: ClosetWallOrange + entities: + - uid: 6254 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,65.5 + pos: 55.5,39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - uid: 7965 + - uid: 6255 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,65.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - uid: 21546 - components: - - type: Transform - pos: 19.5,-40.5 + pos: 56.5,39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 21668 - - 21672 - - uid: 21547 +- proto: ClothingBackpackCluwne + entities: + - uid: 21046 components: - type: Transform - pos: 16.5,-38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21668 - - uid: 21602 + pos: -37.601562,41.414 + parent: 16527 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingBackpackDuffelSecurity + entities: + - uid: 9591 components: - type: Transform - pos: 30.5,40.5 + pos: 73.48328,2.7752597 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - 13499 - - uid: 21603 +- proto: ClothingBackpackDuffelSyndicateCostumeClown + entities: + - uid: 21047 components: - type: Transform - pos: 27.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - uid: 21604 + pos: 14.404769,12.570326 + parent: 16527 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null +- proto: ClothingBackpackDuffelSyndicateEliteHardsuitBundle + entities: + - uid: 21048 components: - type: Transform - pos: 32.5,48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - 13499 - - uid: 21630 + pos: -14.584824,34.474304 + parent: 16527 +- proto: ClothingBackpackDuffelSyndicateFilledCarbine + entities: + - uid: 21049 components: - type: Transform - pos: 13.5,45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - uid: 21631 + pos: -47.45131,54.489746 + parent: 16527 +- proto: ClothingBackpackDuffelSyndicateFilledRevolver + entities: + - uid: 21050 components: - type: Transform - pos: 18.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - uid: 21632 + pos: -47.48964,42.75403 + parent: 16527 + - uid: 22703 components: - type: Transform - pos: 28.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - uid: 21684 + pos: 0.55249023,26.62024 + parent: 16527 +- proto: ClothingBackpackDuffelSyndicateHardsuitBundle + entities: + - uid: 21051 components: - type: Transform - pos: 20.5,-36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21668 - - 16256 - - uid: 21685 + pos: -12.457862,19.483456 + parent: 16527 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]90%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null +- proto: ClothingBackpackDuffelSyndicateHardsuitExtrasBundle + entities: + - uid: 21052 components: - type: Transform - pos: 25.5,-40.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21669 - - 21672 - - uid: 21686 + pos: -55.53076,53.741882 + parent: 16527 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]90%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null +- proto: ClothingBackpackDuffelSyndicateMedicalBundleFilled + entities: + - uid: 21053 components: - type: Transform - pos: 28.5,-38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21669 - - uid: 21687 + pos: -50.52484,54.601135 + parent: 16527 + - uid: 21054 components: - type: Transform - pos: 24.5,-36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 21669 - - 16256 -- proto: Fireplace + pos: -24.55205,27.644543 + parent: 16527 +- proto: ClothingBackpackDuffelSyndicatePyjamaBundle entities: - - uid: 7966 + - uid: 21055 components: - type: Transform - pos: 40.5,69.5 - parent: 2 - - uid: 7967 + pos: 13.514144,12.617201 + parent: 16527 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]90%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null +- proto: ClothingBackpackERTClown + entities: + - uid: 21382 components: - type: Transform - pos: 17.5,17.5 + pos: 9.470834,53.540657 parent: 2 - - uid: 7968 +- proto: ClothingBeltHolster + entities: + - uid: 21056 components: - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 7969 + rot: -1.5707963267948966 rad + pos: 27.307487,15.34438 + parent: 16527 + - uid: 21057 components: - type: Transform - pos: 60.5,65.5 - parent: 2 - - uid: 7970 + rot: 1.5707963267948966 rad + pos: 27.713737,17.440313 + parent: 16527 + - uid: 21058 components: - type: Transform - pos: 57.5,79.5 - parent: 2 -- proto: Flash + rot: 1.5707963267948966 rad + pos: 30.166862,17.283901 + parent: 16527 +- proto: ClothingBeltMercWebbing entities: - - uid: 7971 - components: - - type: Transform - pos: 15.573995,8.404448 - parent: 2 - - uid: 7972 + - uid: 6197 components: - type: Transform - pos: 20.698172,30.528963 - parent: 2 -- proto: FlashlightLantern + parent: 6196 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltMilitaryWebbing entities: - - uid: 37 + - uid: 21060 components: - type: Transform - pos: 62.482605,49.7167 - parent: 2 - - type: HandheldLight - toggleActionEntity: 38 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 38 - - type: ActionsContainer -- proto: FlashlightSeclite - entities: - - uid: 21380 + parent: 21059 + - type: Physics + canCollide: False + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]50%[/color]. + priority: 0 + component: Armor + title: null + - type: InsideEntityStorage + - uid: 21070 components: - type: Transform - rot: -0.9250245035569946 rad - pos: 10.442753,51.952263 - parent: 2 - - type: HandheldLight - toggleActionEntity: 21381 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 21381 - - type: ActionsContainer -- proto: FlippoLighter + parent: 21069 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltSyndieHolster entities: - - uid: 19067 + - uid: 21079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.788906,27.49173 - parent: 16504 -- proto: Floodlight - entities: - - uid: 7973 + pos: 30.198112,15.313098 + parent: 16527 + - uid: 21080 components: - type: Transform - pos: 45.913815,99.340836 - parent: 2 -- proto: FloodlightBroken + pos: -9.7933655,75.26691 + parent: 16527 +- proto: ClothingBeltUtilityEngineering entities: - - uid: 12524 - components: - - type: Transform - pos: 12.644675,55.259033 - parent: 2 - - uid: 20475 + - uid: 6256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.447285,17.120422 + pos: 42.063076,61.55474 parent: 2 -- proto: FloorDrain - entities: - - uid: 5051 + - uid: 6257 components: - type: Transform - pos: 40.5,50.5 + pos: 41.42245,61.507866 parent: 2 - - type: Drain - range: 6 - - type: Fixtures - fixtures: {} - - uid: 5092 + - uid: 6258 components: - type: Transform - pos: 29.5,57.5 + pos: 43.42245,61.539116 parent: 2 - - type: Drain - range: 10 - - type: Fixtures - fixtures: {} - - uid: 7974 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 6259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,6.5 + pos: 5.5230856,5.52925 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7975 + - uid: 6260 components: - type: Transform - pos: 22.5,22.5 + pos: 24.45313,-2.7809253 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7976 + - uid: 6261 components: - type: Transform - pos: 42.5,8.5 + pos: 66.57255,37.601162 parent: 2 - - type: Drain - accumulator: 0.1664857 - - type: Fixtures - fixtures: {} - - uid: 7977 +- proto: ClothingEyesGlasses + entities: + - uid: 6262 components: - type: Transform - pos: 52.5,0.5 + pos: 23.62776,-4.2432847 parent: 2 - - type: Drain - accumulator: 0.1664857 - - type: Fixtures - fixtures: {} - - uid: 7979 + - uid: 21081 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,48.5 - parent: 2 - - type: Drain - accumulator: 0.1664857 - - type: Fixtures - fixtures: {} - - uid: 7980 + pos: 4.4964066,3.008483 + parent: 16527 +- proto: ClothingEyesGlassesGarOrange + entities: + - uid: 1020 components: - type: Transform - pos: 54.5,-10.5 - parent: 2 - - type: Drain - accumulator: 0.1664857 - - type: Fixtures - fixtures: {} - - uid: 7981 + parent: 1018 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6264 components: - type: Transform - pos: 38.5,-1.5 + pos: 14.281388,57.640034 parent: 2 - - type: Drain - range: 8 - - type: Fixtures - fixtures: {} - - uid: 7982 +- proto: ClothingEyesGlassesMercenary + entities: + - uid: 6265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-5.5 + pos: 60.531227,67.49286 parent: 2 - - type: Fixtures - fixtures: {} -- proto: FloorLavaEntity +- proto: ClothingEyesGlassesSecurity entities: - - uid: 7983 + - uid: 6266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,79.5 + rot: 12.566370614359172 rad + pos: 57.39527,18.646889 parent: 2 -- proto: FloorTileItemConcrete - entities: - - uid: 19068 + - uid: 6267 components: - type: Transform - pos: 16.534021,35.540276 - parent: 16504 - - uid: 19069 + pos: 92.50596,19.435198 + parent: 2 + - uid: 10341 components: - type: Transform - pos: 13.575688,32.134026 - parent: 16504 - - uid: 19070 + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10429 components: - type: Transform - pos: 14.606938,32.45694 - parent: 16504 - - uid: 19071 + parent: 11214 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10552 components: - type: Transform - pos: 14.648604,31.321526 - parent: 16504 - - uid: 19072 + parent: 11215 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesHudMedical + entities: + - uid: 6268 components: - type: Transform - pos: 10.409021,36.654858 - parent: 16504 - - uid: 19073 + pos: 34.483902,9.726351 + parent: 2 + - uid: 6269 components: - type: Transform - pos: 14.89298,37.852776 - parent: 16504 -- proto: FloorTileItemElevatorShaft + pos: 47.436104,9.5062 + parent: 2 +- proto: ClothingEyesHudMedSec entities: - - uid: 7984 + - uid: 6270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.327126,8.321228 + pos: 75.63416,7.4752283 parent: 2 - - uid: 7985 +- proto: ClothingEyesHudSyndicate + entities: + - uid: 21082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 92.800316,20.856379 - parent: 2 - - uid: 7986 + pos: -18.156078,32.72587 + parent: 16527 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 21083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.362816,19.559504 - parent: 2 - - uid: 7987 + pos: -36.534424,35.673218 + parent: 16527 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 6605 components: - type: Transform - pos: 76.36632,6.442112 + pos: 0.2772286,30.85181 parent: 2 - - uid: 7988 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 13884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.45183,8.606104 + pos: 0.5272286,30.867435 parent: 2 - - uid: 7989 +- proto: ClothingHandsGlovesBoxingRigged + entities: + - uid: 15429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.54558,6.2311044 + pos: 0.5584786,30.85181 parent: 2 -- proto: FloorTileItemWhite +- proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 3103 + - uid: 12965 components: - type: Transform - pos: 54.460403,-3.8163702 + pos: 0.6678536,30.867435 parent: 2 -- proto: FloorWaterEntity +- proto: ClothingHandsGlovesColorGray entities: - - uid: 7990 + - uid: 6271 components: - type: Transform - pos: 81.5,15.5 + pos: 34.354034,-10.469314 parent: 2 - - uid: 7991 +- proto: ClothingHandsGlovesColorWhite + entities: + - uid: 6272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,76.5 + pos: 50.501118,-1.91307 parent: 2 - - uid: 7992 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 6194 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,77.5 - parent: 2 - - uid: 7993 + parent: 6193 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,78.5 - parent: 2 - - uid: 7994 + parent: 6204 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,76.5 - parent: 2 - - uid: 7995 + parent: 6243 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6247 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,79.5 - parent: 2 - - uid: 7996 + parent: 6246 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6273 components: - type: Transform - pos: 81.5,19.5 + pos: 9.456325,-10.455032 parent: 2 - - uid: 7997 + - uid: 6274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,78.5 + pos: 67.400276,37.601162 parent: 2 - - uid: 7998 + - uid: 6275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,77.5 + pos: 50.484264,-17.601654 parent: 2 - - uid: 7999 + - uid: 6277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,77.5 - parent: 2 - - uid: 8000 + parent: 6276 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,77.5 - parent: 2 - - uid: 8001 + parent: 6276 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6279 components: - type: Transform - pos: 82.5,15.5 + pos: 13.51267,83.507416 parent: 2 - - uid: 8002 + - uid: 6280 components: + - type: MetaData + name: резиновые перчатки - type: Transform - pos: 56.5,-14.5 + pos: 57.43824,36.32387 parent: 2 - - uid: 8003 + - uid: 6281 components: - type: Transform - pos: 58.5,-14.5 + pos: 43.579124,62.01142 parent: 2 - - uid: 8004 + - uid: 21084 components: - type: Transform - pos: 57.5,-14.5 - parent: 2 - - uid: 8005 + pos: -17.37787,27.592934 + parent: 16527 +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 6282 components: - type: Transform - pos: 54.5,-14.5 + pos: 22.532297,59.584183 parent: 2 - - uid: 8006 + - uid: 6283 components: - type: Transform - pos: 55.5,-14.5 + pos: 22.3733,59.400726 parent: 2 - - uid: 8007 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 21061 components: - type: Transform - pos: 58.5,-14.5 - parent: 2 - - uid: 8008 + parent: 21059 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21071 components: - type: Transform - pos: 55.5,-14.5 - parent: 2 - - uid: 8009 + parent: 21069 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesFingerless + entities: + - uid: 21966 components: + - type: MetaData + desc: Простые чёрные перчатки с обрезанными пальцами для тяжёлой работы в баре. + name: перчатки бармена - type: Transform - pos: 56.5,-14.5 + pos: 15.778067,53.856155 parent: 2 - - uid: 8010 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 6284 components: - type: Transform - pos: 54.5,-14.5 + pos: 62.46939,24.61248 parent: 2 - - uid: 8011 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 6285 components: - type: Transform - pos: 57.5,-14.5 + rot: -1.5707963267948966 rad + pos: 49.43122,-5.426195 parent: 2 - - uid: 8012 + - uid: 6286 components: - type: Transform - pos: 54.5,-12.5 + pos: 50.535038,-8.841189 parent: 2 - - uid: 8013 +- proto: ClothingHandsTacticalMaidGloves + entities: + - uid: 21085 components: - type: Transform - pos: 54.5,-13.5 - parent: 2 - - uid: 8014 + pos: 12.503679,27.683414 + parent: 16527 +- proto: ClothingHeadBandMerc + entities: + - uid: 6189 components: - type: Transform - pos: 55.5,-12.5 - parent: 2 - - uid: 8015 + parent: 6188 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadFishCap + entities: + - uid: 6287 components: - type: Transform - pos: 55.5,-13.5 + pos: 13.741001,-16.631462 parent: 2 - - uid: 8016 +- proto: ClothingHeadHatBeretEngineering + entities: + - uid: 6288 components: - type: Transform - pos: 56.5,-12.5 + pos: 40.486477,62.434555 parent: 2 - - uid: 8017 +- proto: ClothingHeadHatBeretHoS + entities: + - uid: 21965 components: + - type: MetaData + name: барменский берет - type: Transform - pos: 56.5,-13.5 + pos: 15.905829,53.45934 parent: 2 - - uid: 8018 +- proto: ClothingHeadHatBeretMerc + entities: + - uid: 6289 components: - type: Transform - pos: 57.5,-12.5 + pos: 31.433079,62.620743 parent: 2 - - uid: 8019 +- proto: ClothingHeadHatCatEars + entities: + - uid: 21087 components: - type: Transform - pos: 57.5,-13.5 - parent: 2 - - uid: 8020 + parent: 21086 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatChef + entities: + - uid: 21633 components: - type: Transform - pos: 58.5,-12.5 + pos: 31.554855,53.63781 parent: 2 - - uid: 8021 +- proto: ClothingHeadHatCone + entities: + - uid: 21089 components: - type: Transform - pos: 58.5,-13.5 - parent: 2 - - uid: 8022 + pos: -3.61898,33.47885 + parent: 16527 + - uid: 21090 components: - type: Transform - pos: 54.5,-12.5 - parent: 2 - - uid: 8023 + pos: -4.134605,35.681976 + parent: 16527 + - uid: 21091 components: - type: Transform - pos: 54.5,-13.5 - parent: 2 - - uid: 8024 + pos: -3.384605,34.713226 + parent: 16527 + - uid: 21092 components: - type: Transform - pos: 55.5,-12.5 - parent: 2 - - uid: 8025 + pos: -4.509605,32.775726 + parent: 16527 +- proto: ClothingHeadHatCowboyBlack + entities: + - uid: 21093 components: - type: Transform - pos: 55.5,-13.5 - parent: 2 - - uid: 8026 + pos: 27.355827,17.794287 + parent: 16527 +- proto: ClothingHeadHatCowboyBountyHunter + entities: + - uid: 21094 components: - type: Transform - pos: 56.5,-12.5 - parent: 2 - - uid: 8027 + pos: 30.573112,15.688489 + parent: 16527 +- proto: ClothingHeadHatCowboyBrown + entities: + - uid: 21095 components: - type: Transform - pos: 56.5,-13.5 - parent: 2 - - uid: 8028 + pos: 30.574577,17.82557 + parent: 16527 +- proto: ClothingHeadHatCowboyWhite + entities: + - uid: 21096 components: - type: Transform - pos: 57.5,-12.5 - parent: 2 - - uid: 8029 + pos: 27.277702,15.729636 + parent: 16527 +- proto: ClothingHeadHatFedoraGrey + entities: + - uid: 6290 components: - type: Transform - pos: 57.5,-13.5 + pos: 38.86763,-26.283337 parent: 2 - - uid: 8030 +- proto: ClothingHeadHatFlowerWreath + entities: + - uid: 6291 components: - type: Transform - pos: 58.5,-12.5 + pos: 25.506002,9.444837 parent: 2 - - uid: 8031 +- proto: ClothingHeadHatHardhatRed + entities: + - uid: 21097 components: - type: Transform - pos: 58.5,-13.5 - parent: 2 - - uid: 8032 + pos: -14.668991,80.12494 + parent: 16527 +- proto: ClothingHeadHatHardhatWhite + entities: + - uid: 3621 components: - type: Transform - pos: 82.5,19.5 - parent: 2 -- proto: FloraTree05 + parent: 3620 + - type: HandheldLight + toggleActionEntity: 3622 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 3622 + - type: Physics + canCollide: False + - type: ActionsContainer +- proto: ClothingHeadHatHoodCulthood entities: - - uid: 8035 + - uid: 6292 components: - type: Transform - pos: 76.18449,48.718914 + pos: 26.200455,60.865936 parent: 2 -- proto: FloraTreeLarge03 +- proto: ClothingHeadHatPwig entities: - - uid: 5052 + - uid: 6293 components: - type: Transform - pos: 28.894838,8.171898 + pos: 7.497837,20.988586 parent: 2 -- proto: FloraTreeLarge04 +- proto: ClothingHeadHatSecsoft entities: - - uid: 5093 + - uid: 13016 components: - type: Transform - pos: 30.551088,7.1406474 + pos: 74.59439,2.733593 parent: 2 -- proto: FloraTreeSnow03 +- proto: ClothingHeadHatSurgcapBlue entities: - - uid: 8037 + - uid: 6295 components: - type: Transform - pos: 76.48694,46.088165 + pos: 50.4608,-2.1060705 parent: 2 -- proto: FloraTreeSnow05 +- proto: ClothingHeadHatSurgcapGreen entities: - - uid: 8038 + - uid: 6296 components: - type: Transform - pos: 74.83069,44.94754 + pos: 50.30455,-2.0435705 parent: 2 -- proto: FoodApple +- proto: ClothingHeadHatSurgcapPurple entities: - - uid: 8039 + - uid: 6297 components: - type: Transform - pos: 29.423895,6.6131506 + pos: 50.663925,-2.0279455 parent: 2 -- proto: FoodBadRecipe +- proto: ClothingHeadHatSyndie entities: - - uid: 19074 - components: - - type: Transform - pos: -22.59036,14.735799 - parent: 16504 - - uid: 19075 + - uid: 21098 components: - type: Transform - pos: -23.543486,13.563924 - parent: 16504 - - uid: 22495 + pos: 4.4768877,4.1803656 + parent: 16527 + - uid: 21099 components: - type: Transform - pos: -26.068237,13.217285 - parent: 16504 - - uid: 22496 + pos: 17.332552,31.8152 + parent: 16527 +- proto: ClothingHeadHatSyndieMAA + entities: + - uid: 21100 components: - type: Transform - pos: -27.240112,15.38916 - parent: 16504 - - uid: 22497 + pos: 31.56821,16.477133 + parent: 16527 + - uid: 21101 components: - type: Transform - pos: -25.802612,15.92041 - parent: 16504 - - uid: 22498 + pos: 3.5403137,75.61713 + parent: 16527 +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 21102 components: - type: Transform - pos: -24.130737,11.51416 - parent: 16504 -- proto: FoodBagel + pos: 12.293056,27.600903 + parent: 16527 +- proto: ClothingHeadHatWelding entities: - - uid: 8040 + - uid: 6298 components: - type: Transform - pos: 41.65019,-1.2909349 + pos: 24.37915,-6.5086684 parent: 2 -- proto: FoodBakedBunHoney +- proto: ClothingHeadHatWeldingMaskFlame entities: - - uid: 8041 + - uid: 6299 components: - type: Transform - pos: 36.342575,-11.37508 + pos: 42.281483,62.252415 parent: 2 -- proto: FoodBakedBunMeat +- proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 21597 + - uid: 6300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.8044,57.734875 + pos: 42.804745,62.244175 parent: 2 -- proto: FoodBakedPancake +- proto: ClothingHeadHatWeldingMaskPainted entities: - - uid: 8042 + - uid: 6301 components: - type: Transform - pos: 35.33769,-1.3534349 + pos: 33.603825,17.577902 parent: 2 -- proto: FoodBanana - entities: - - uid: 8043 + - uid: 6302 components: - - type: MetaData - desc: Огузку, который чистит бананы. - name: банан Алона - type: Transform - pos: 37.39016,-27.527092 + pos: 30.53649,-1.4449949 parent: 2 - - uid: 8044 + - uid: 6303 components: - type: Transform - pos: 49.622,17.590656 + pos: 2.5762463,20.667091 parent: 2 -- proto: FoodBoxDonkpocket +- proto: ClothingHeadHelmetAtmosFire entities: - - uid: 8045 + - uid: 42 components: - type: Transform - pos: 40.846996,-6.336485 - parent: 2 - - uid: 8046 + parent: 41 + - type: HandheldLight + toggleActionEntity: 43 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 43 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: InsideEntityStorage + - uid: 6164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.14522,41.629124 - parent: 2 - - uid: 8047 + parent: 6163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21436 components: - type: Transform - pos: 42.735233,66.636795 - parent: 2 - - uid: 21628 + parent: 21435 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetHardsuitLing + entities: + - uid: 21103 components: - type: Transform - pos: 26.518517,54.491257 - parent: 2 -- proto: FoodBoxDonkpocketBerry + pos: 29.000786,16.412971 + parent: 16527 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]5%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]75%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingHeadHelmetHardsuitPirateEVA entities: - - uid: 8048 + - uid: 6304 components: - type: Transform - pos: 40.346996,-6.35211 + pos: 59.294624,34.75396 parent: 2 -- proto: FoodBoxDonkpocketCarp +- proto: ClothingHeadHelmetMerc entities: - - uid: 22485 + - uid: 298 components: - type: Transform - pos: 52.618362,48.626923 - parent: 2 -- proto: FoodBoxDonkpocketHonk + parent: 297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetRiot entities: - - uid: 8049 + - uid: 6305 components: - type: Transform - pos: 41.815746,-6.35211 + pos: 60.388313,30.538012 parent: 2 - - uid: 8050 + - uid: 6306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.58272,41.649956 + pos: 60.825813,30.569262 parent: 2 -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 8051 + - uid: 6307 components: - type: Transform - pos: 41.346996,-6.35211 + pos: 60.43519,30.647387 parent: 2 -- proto: FoodBoxDonkpocketTeriyaki +- proto: ClothingHeadPyjamaSyndicateBlack entities: - - uid: 8052 + - uid: 6308 components: - type: Transform - pos: 42.328983,66.699295 + pos: 74.30056,52.60349 parent: 2 -- proto: FoodBoxDonut - entities: - - uid: 8053 + - uid: 6309 components: - type: Transform - pos: 24.486897,26.502321 + pos: 79.597435,52.587864 parent: 2 - - uid: 8054 +- proto: ClothingHeadPyjamaSyndicatePink + entities: + - uid: 22225 components: - type: Transform - pos: 41.501503,29.688845 + pos: 75.36306,52.60349 parent: 2 - - uid: 10374 +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 6310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.1576805,41.647793 + pos: 78.659935,52.587864 parent: 2 - - uid: 11497 + - uid: 6311 components: - type: Transform - pos: 50.389706,21.53323 + pos: 76.159935,52.556614 parent: 2 -- proto: FoodBreadMoldySlice +- proto: ClothingHeadRastaHat entities: - - uid: 19076 - components: - - type: Transform - pos: 11.774432,13.54726 - parent: 16504 - - uid: 19077 + - uid: 6313 components: - type: Transform - pos: 12.493182,13.812885 - parent: 16504 - - uid: 19078 + parent: 6312 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6324 components: - type: Transform - pos: 11.633807,14.562885 - parent: 16504 -- proto: FoodBurgerBig + parent: 6323 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadSafari entities: - - uid: 8056 + - uid: 6335 components: - type: Transform - pos: 41.603313,0.6934401 + pos: 76.664085,41.62112 parent: 2 -- proto: FoodBurgerCarp - entities: - - uid: 8057 + - uid: 6337 components: - type: Transform - pos: 14.056538,-15.709153 - parent: 2 -- proto: FoodBurgerClown + parent: 6336 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBat entities: - - uid: 8058 + - uid: 6340 components: - type: Transform - pos: 55.48064,38.427116 + pos: 17.59206,58.483574 parent: 2 -- proto: FoodBurgerMime +- proto: ClothingMaskBear entities: - - uid: 8059 + - uid: 6341 components: - type: Transform - pos: 39.43638,-26.361067 + pos: 19.631271,58.63034 parent: 2 -- proto: FoodCartCold +- proto: ClothingMaskBreath entities: - - uid: 8060 + - uid: 9311 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,40.5 + pos: 17.338516,41.444668 parent: 2 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 8063 - - 8064 - - 8061 - - 8062 - - 8065 - - 8066 -- proto: FoodCheese +- proto: ClothingMaskBreathMedical entities: - - uid: 8067 + - uid: 16512 components: - type: Transform - pos: 85.47415,60.795826 - parent: 2 -- proto: FoodCondimentBottleBBQ + parent: 16511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16513 + components: + - type: Transform + parent: 16511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16516 + components: + - type: Transform + parent: 16511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16518 + components: + - type: Transform + parent: 16511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16520 + components: + - type: Transform + parent: 16511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBreathMedicalSecurity entities: - - uid: 21610 + - uid: 3624 components: - type: Transform - pos: 29.1134,53.712185 - parent: 2 -- proto: FoodCondimentPacketKetchup + parent: 3620 + - type: Physics + canCollide: False +- proto: ClothingMaskClownBanana entities: - - uid: 21608 + - uid: 6342 components: - type: Transform - pos: 29.321733,53.476074 + pos: 6.4835777,27.743755 parent: 2 - - uid: 21609 + - uid: 21379 components: - type: Transform - pos: 29.391178,53.670517 + rot: -0.5585053606381855 rad + pos: 10.540007,52.292866 parent: 2 -- proto: FoodDonutApple +- proto: ClothingMaskClownSecurity entities: - - uid: 8068 + - uid: 10549 components: - type: Transform - pos: 43.055157,62.58681 + parent: 11215 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21376 + components: + - type: Transform + pos: 9.480936,52.167175 parent: 2 -- proto: FoodDonutBungo +- proto: ClothingMaskFox entities: - - uid: 8069 + - uid: 6343 components: - type: Transform - pos: 41.74394,-3.27531 + pos: 19.744646,57.749737 parent: 2 -- proto: FoodDonutChaos +- proto: ClothingMaskGas entities: - - uid: 11498 + - uid: 6344 components: - type: Transform - pos: 42.52779,61.906696 + pos: 21.553486,59.559723 parent: 2 -- proto: FoodDonutPink - entities: - - uid: 8070 + - uid: 6345 components: - type: Transform - pos: 42.898907,61.86806 + pos: 21.712484,59.388496 parent: 2 - - uid: 8072 + - uid: 6346 components: - type: Transform - pos: 59.601585,79.28232 + pos: 3.5074286,23.750195 parent: 2 - - uid: 8073 + - uid: 6347 components: - type: Transform - pos: 42.148907,61.821186 + pos: 3.8376546,23.737963 parent: 2 -- proto: FoodDonutPoison - entities: - - uid: 8075 + - uid: 6348 components: - type: Transform - pos: 59.557762,79.10704 + pos: 34.33841,-10.234939 parent: 2 -- proto: FoodFrozenPopsicleOrange +- proto: ClothingMaskGasAtmos entities: - - uid: 8061 + - uid: 45 components: - type: Transform - parent: 8060 + parent: 41 - type: Physics canCollide: False - - uid: 8062 + - type: InsideEntityStorage + - uid: 21438 components: - type: Transform - parent: 8060 + parent: 21435 - type: Physics canCollide: False -- proto: FoodFrozenSandwichStrawberry + - type: InsideEntityStorage +- proto: ClothingMaskGasMerc entities: - - uid: 8063 + - uid: 6199 components: - type: Transform - parent: 8060 + parent: 6198 - type: Physics canCollide: False - - uid: 8064 + - type: InsideEntityStorage +- proto: ClothingMaskGasSwat + entities: + - uid: 21104 components: - type: Transform - parent: 8060 - - type: Physics - canCollide: False -- proto: FoodFrozenSundae + pos: 17.439287,23.77244 + parent: 16527 +- proto: ClothingMaskGasSyndicate entities: - - uid: 8065 + - uid: 21062 components: - type: Transform - parent: 8060 + parent: 21059 - type: Physics canCollide: False - - uid: 8066 + - type: InsideEntityStorage + - uid: 21072 components: - type: Transform - parent: 8060 + parent: 21069 - type: Physics canCollide: False -- proto: FoodKebabSkewer + - type: InsideEntityStorage +- proto: ClothingMaskJackal entities: - - uid: 8077 + - uid: 6349 components: - type: Transform - pos: 91.358,17.611958 + pos: 19.365498,57.517357 parent: 2 - - uid: 8078 +- proto: ClothingMaskMime + entities: + - uid: 794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.78834,15.888491 + pos: 42.39886,-26.56465 parent: 2 -- proto: FoodMealCubancarp +- proto: ClothingMaskRat entities: - - uid: 8079 + - uid: 6350 components: - type: Transform - pos: 14.551401,-16.329641 + pos: 19.316273,58.45911 parent: 2 -- proto: FoodMealSashimi +- proto: ClothingMaskSadMime entities: - - uid: 8080 + - uid: 878 components: - type: Transform - pos: 14.66129,-15.727499 + pos: 42.58118,-26.477844 parent: 2 - - uid: 8081 +- proto: ClothingMaskScaredMime + entities: + - uid: 3619 components: - type: Transform - pos: 59.601585,76.624084 + pos: 37.787437,-27.498219 parent: 2 - - uid: 8082 +- proto: ClothingMaskSexyClown + entities: + - uid: 21378 components: - type: Transform - pos: 59.32638,78.620026 + rot: 0.7330382858376184 rad + pos: 9.958323,52.86578 parent: 2 -- proto: FoodMeatFish +- proto: ClothingMaskSexyMime entities: - - uid: 6573 - components: - - type: Transform - parent: 6572 - - type: Temperature - currentTemperature: 149.95871 - - type: InternalTemperature - temperature: 140.0411 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6574 + - uid: 879 components: - type: Transform - parent: 6572 - - type: Temperature - currentTemperature: 149.95871 - - type: InternalTemperature - temperature: 140.0411 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6575 + pos: 42.48568,-26.616734 + parent: 2 +- proto: ClothingNeckCloakEnby + entities: + - uid: 1049 components: - type: Transform - parent: 6572 - - type: Temperature - currentTemperature: 149.95871 - - type: InternalTemperature - temperature: 140.0411 + parent: 1046 - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 8085 - components: - - type: Transform - pos: 13.720319,-14.773512 - parent: 2 -- proto: FoodMeatRotten +- proto: ClothingNeckCloakGoliathCloak entities: - - uid: 8086 + - uid: 6351 components: - type: Transform - pos: 14.48809,58.449265 + pos: 8.468073,31.619415 parent: 2 - - type: Temperature - currentTemperature: 149.95871 - - type: InternalTemperature - temperature: 140.0411 - - uid: 8087 +- proto: ClothingNeckCloakMoth + entities: + - uid: 6352 components: - type: Transform - pos: 25.364307,60.152264 + pos: 15.479309,6.567212 parent: 2 - - type: Temperature - currentTemperature: 149.95871 - - type: InternalTemperature - temperature: 140.0411 - - uid: 8088 +- proto: ClothingNeckCloakPirateCap + entities: + - uid: 6353 components: - type: Transform - pos: 26.240973,59.532093 + pos: 52.520966,90.51462 parent: 2 - - type: Temperature - currentTemperature: 149.95871 - - type: InternalTemperature - temperature: 140.0411 - - uid: 8089 +- proto: ClothingNeckEchoPin + entities: + - uid: 6354 components: - type: Transform - pos: 25.65784,58.342136 + pos: 24.702053,26.742117 parent: 2 - - type: Temperature - currentTemperature: 149.95871 - - type: InternalTemperature - temperature: 140.0411 -- proto: FoodMeatSlime +- proto: ClothingNeckElysiumPin entities: - - uid: 21300 + - uid: 6355 components: - - type: MetaData - desc: Шар для игры в бильярд. - name: бильярдный шар - type: Transform - pos: 15.983978,49.740993 + pos: 83.4391,33.431293 parent: 2 - - uid: 21301 +- proto: ClothingNeckMainPin + entities: + - uid: 6356 components: - - type: MetaData - desc: Шар для игры в бильярд. - name: бильярдный шар - type: Transform - pos: 16.205364,50.040474 + pos: 35.855328,79.22577 parent: 2 - - uid: 21305 +- proto: ClothingNeckMantleHOP + entities: + - uid: 6357 components: - - type: MetaData - desc: Шар для игры в бильярд. - name: бильярдный шар - type: Transform - pos: 15.749568,50.040474 + pos: 20.471823,16.401287 parent: 2 - - uid: 21306 +- proto: ClothingNeckMedicalmedal + entities: + - uid: 21105 components: - - type: MetaData - desc: Шар для игры в бильярд. - name: бильярдный шар - type: Transform - pos: 15.944909,50.352974 - parent: 2 - - uid: 21307 + pos: 10.772202,35.979652 + parent: 16527 +- proto: ClothingNeckNakamuraPin + entities: + - uid: 6358 components: - - type: MetaData - desc: Шар для игры в бильярд. - name: бильярдный шар - type: Transform - pos: 16.37466,50.365993 + pos: 52.480534,69.52751 parent: 2 - - uid: 21309 +- proto: ClothingNeckNanoTrasenPin + entities: + - uid: 6360 components: - - type: MetaData - desc: Шар для игры в бильярд. - name: бильярдный шар - type: Transform - pos: 15.5412035,50.352974 - parent: 2 -- proto: FoodMeatSnake + parent: 6359 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckNebulaPin entities: - - uid: 8090 + - uid: 6361 components: - type: Transform - pos: 60.554047,82.18584 + pos: 56.052605,24.723726 parent: 2 - - uid: 8091 +- proto: ClothingNeckNovaPin + entities: + - uid: 6362 components: - type: Transform - pos: 60.451797,82.47795 + pos: 34.313705,10.133865 parent: 2 -- proto: FoodMeatWheat +- proto: ClothingNeckScarfStripedLightBlue entities: - - uid: 16209 + - uid: 6363 components: - type: Transform - pos: 28.346066,57.54043 + pos: 47.64092,-0.4029454 parent: 2 - - uid: 21600 + - uid: 6364 components: - type: Transform - pos: 28.568287,57.359875 + pos: 47.281544,-0.4341954 parent: 2 -- proto: FoodMeatXeno +- proto: ClothingNeckScarfStripedRed entities: - - uid: 8092 + - uid: 6365 components: - type: Transform - pos: 28.032938,-7.5986853 + rot: -4.440892098500626E-16 rad + pos: 15.408881,8.476004 parent: 2 -- proto: FoodPieBananaCream +- proto: ClothingNeckScarfStripedZebra entities: - - uid: 3252 + - uid: 3625 components: - type: Transform - pos: 10.624778,53.21655 - parent: 2 - - uid: 3338 + parent: 3620 + - type: Physics + canCollide: False +- proto: ClothingNeckSolarisPin + entities: + - uid: 6366 components: - type: Transform - pos: 10.734153,53.232174 + pos: 21.559338,10.585672 parent: 2 - - uid: 3339 +- proto: ClothingNeckSyndicakePin + entities: + - uid: 21106 components: - type: Transform - pos: 10.374778,53.71655 - parent: 2 - - uid: 12149 + pos: 11.497106,-4.5504894 + parent: 16527 + - uid: 21107 components: - type: Transform - pos: 10.749778,53.450924 - parent: 2 - - uid: 21449 + pos: -10.55763,18.631758 + parent: 16527 +- proto: ClothingNeckTieDet + entities: + - uid: 1024 components: - type: Transform - pos: 16.67708,43.76393 - parent: 2 - - uid: 21571 + parent: 1021 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterApronBotanist + entities: + - uid: 6367 components: - type: Transform - pos: 10.640403,53.65405 + pos: 67.63592,26.664513 parent: 2 - - uid: 21587 +- proto: ClothingOuterApronChef + entities: + - uid: 21634 components: - type: Transform - pos: 10.359153,53.294674 + pos: 31.568745,53.59614 parent: 2 - - uid: 21588 +- proto: ClothingOuterArmorBasic + entities: + - uid: 21063 components: - type: Transform - pos: 10.156028,53.419674 - parent: 2 - - uid: 21589 + parent: 21059 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21073 components: - type: Transform - pos: 10.234153,53.5603 - parent: 2 -- proto: FoodPieXeno + parent: 21069 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorRiot entities: - - uid: 21601 + - uid: 6368 components: - type: Transform - pos: 30.342209,53.607014 + pos: 60.27894,30.491137 parent: 2 -- proto: FoodPizzaMoldySlice - entities: - - uid: 19079 - components: - - type: Transform - pos: 12.555682,14.54726 - parent: 16504 - - uid: 19080 - components: - - type: Transform - pos: 11.571307,14.000385 - parent: 16504 -- proto: FoodPlate - entities: - - uid: 21593 + - uid: 6369 components: - type: Transform - pos: 30.521908,51.586605 + pos: 60.40394,30.366137 parent: 2 - - uid: 21596 + - uid: 6370 components: - type: Transform - pos: 27.508018,51.57272 + pos: 60.71644,30.428637 parent: 2 -- proto: FoodPlateSmall +- proto: ClothingOuterCoatDetective entities: - - uid: 9693 + - uid: 1025 components: - type: Transform - pos: 29.508018,51.489384 - parent: 2 -- proto: FoodPlateTin + parent: 1021 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatHoSGreatcoat entities: - - uid: 21624 + - uid: 10343 components: - type: Transform - parent: 21623 + parent: 11213 - type: Physics canCollide: False - - uid: 21625 + - type: InsideEntityStorage + - uid: 10547 components: - type: Transform - parent: 21623 + parent: 11214 - type: Physics canCollide: False - - uid: 21626 + - type: InsideEntityStorage + - uid: 10551 components: - type: Transform - parent: 21623 + parent: 11215 - type: Physics canCollide: False -- proto: FoodPoppy + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitJuggernaut entities: - - uid: 8095 + - uid: 21088 components: - type: Transform - pos: 34.51092,10.621679 - parent: 2 - - uid: 8096 + parent: 21086 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Понижает вашу скорость бега на [color=yellow]35%[/color]. + + Понижает вашу скорость ходьбы на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]70%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitLing + entities: + - uid: 21108 components: - type: Transform - pos: 7.0148277,28.63438 + pos: 28.991083,16.272346 + parent: 16527 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]20%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]5%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]5%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]0%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]80%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingOuterHardsuitPirateEVA + entities: + - uid: 6371 + components: + - type: Transform + pos: 59.200874,34.59771 parent: 2 -- proto: FoodSnackChips +- proto: ClothingOuterHospitalGown entities: - - uid: 3137 + - uid: 6372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.489845,3.1316612 + pos: 56.309563,0.40051258 parent: 2 - - uid: 3141 + - uid: 6373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.46207,4.367772 + pos: 56.309563,-0.6619874 parent: 2 -- proto: FoodSnackChocolate +- proto: ClothingOuterRobesCult entities: - - uid: 8097 + - uid: 6374 components: - type: Transform - pos: 68.53391,7.374971 + pos: 26.211544,60.568512 parent: 2 -- proto: FoodSnackPistachios +- proto: ClothingOuterStraightjacket entities: - - uid: 3144 + - uid: 6375 components: - type: Transform - pos: 77.57318,4.50101 + pos: 64.45278,5.8528533 parent: 2 - - uid: 3146 + - uid: 21109 components: - type: Transform - pos: 77.720604,4.6370063 - parent: 2 -- proto: FoodSnackSyndi - entities: - - uid: 19081 + pos: 4.637253,56.57025 + parent: 16527 + - uid: 21110 components: - type: Transform - pos: -11.433814,2.6240401 - parent: 16504 -- proto: FoodSoupBisque + pos: 4.449768,55.9765 + parent: 16527 +- proto: ClothingOuterSuitAtmosFire entities: - - uid: 8098 + - uid: 46 components: - type: Transform - pos: 35.478313,0.7403151 - parent: 2 -- proto: FoodTacoShell - entities: - - uid: 8099 + parent: 41 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6165 components: - type: Transform - pos: 13.432116,-16.026049 - parent: 2 -- proto: FuelDispenser - entities: - - uid: 8100 + parent: 6163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,83.5 - parent: 2 - - uid: 8101 + parent: 21435 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterSuitCarp + entities: + - uid: 6376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 + pos: 14.386289,-15.17385 parent: 2 - - uid: 8102 +- proto: ClothingOuterSuitChicken + entities: + - uid: 6377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,7.5 + pos: 39.446163,69.45595 parent: 2 - - uid: 8103 +- proto: ClothingOuterSuitEmergency + entities: + - uid: 5577 components: - type: Transform - pos: 0.5,15.5 + pos: 42.525246,-27.44219 parent: 2 -- proto: GasAnalyzer - entities: - - uid: 8106 + - uid: 6937 components: - type: Transform - pos: 47.5,-0.44 + pos: 9.616911,50.62052 parent: 2 -- proto: GasCanisterBrokenBase - entities: - - uid: 8107 + - uid: 16327 components: - type: Transform - pos: 28.5,-8.5 + pos: 15.536522,-38.48124 parent: 2 - - uid: 19082 +- proto: ClothingOuterVestWeb + entities: + - uid: 21111 components: - type: Transform - pos: -13.5,38.5 - parent: 16504 -- proto: GasDualPortVentPump + rot: 1.5707963267948966 rad + pos: -32.59195,29.783142 + parent: 16527 +- proto: ClothingOuterWinterAtmos entities: - - uid: 8108 + - uid: 47 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,88.5 - parent: 2 -- proto: GasFilter + parent: 41 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterMime entities: - - uid: 8109 + - uid: 3623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasFilterFlipped + parent: 3620 + - type: Physics + canCollide: False +- proto: ClothingOuterWinterSec entities: - - uid: 8110 + - uid: 6378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,88.5 + pos: 77.5489,7.4908533 parent: 2 - - uid: 8111 +- proto: ClothingOuterWinterSyndie + entities: + - uid: 21112 components: - type: Transform - pos: 32.5,83.5 - parent: 2 - - uid: 8112 + pos: -25.581116,38.4093 + parent: 16527 + - uid: 21113 components: - type: Transform - pos: 32.5,73.5 - parent: 2 - - uid: 8113 + pos: -25.23735,38.456177 + parent: 16527 +- proto: ClothingOuterWinterSyndieCapArmored + entities: + - uid: 21114 components: - type: Transform - pos: 32.5,81.5 - parent: 2 - - uid: 8114 + pos: 3.5246887,75.58588 + parent: 16527 +- proto: ClothingShoesBling + entities: + - uid: 6379 components: - type: Transform - pos: 32.5,75.5 + pos: 6.4835777,27.57188 parent: 2 - - uid: 8115 +- proto: ClothingShoesBootsCombat + entities: + - uid: 21064 components: - type: Transform - pos: 32.5,79.5 - parent: 2 - - uid: 8116 + parent: 21059 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21074 components: - type: Transform - pos: 32.5,77.5 - parent: 2 -- proto: GasMinerCarbonDioxide + parent: 21069 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsCowboyBlack entities: - - uid: 8117 + - uid: 21115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,79.5 - parent: 2 - - type: GasMiner - spawnAmount: 1000 - maxExternalPressure: 1000 -- proto: GasMinerNitrogenStation + pos: 27.308952,17.199917 + parent: 16527 +- proto: ClothingShoesBootsCowboyBrown entities: - - uid: 8118 + - uid: 21116 components: - type: Transform - pos: 26.5,73.5 - parent: 2 - - type: GasMiner - spawnAmount: 1000 - maxExternalPressure: 10000 -- proto: GasMinerOxygen + pos: 30.574577,17.278126 + parent: 16527 +- proto: ClothingShoesBootsCowboyFancy entities: - - uid: 19083 + - uid: 21117 components: - type: Transform - pos: -18.5,38.5 - parent: 16504 -- proto: GasMinerOxygenStation + pos: 30.510612,15.266174 + parent: 16527 +- proto: ClothingShoesBootsCowboyWhite entities: - - uid: 8119 + - uid: 21118 components: - type: Transform - pos: 26.5,75.5 - parent: 2 - - type: GasMiner - spawnAmount: 1000 - maxExternalPressure: 10000 -- proto: GasMinerPlasma + pos: 27.543327,15.448093 + parent: 16527 +- proto: ClothingShoesBootsMag entities: - - uid: 8120 + - uid: 6381 components: - type: Transform - pos: 26.5,81.5 - parent: 2 - - type: GasMiner - spawnAmount: 50 -- proto: GasMinerWaterVapor - entities: - - uid: 8121 + parent: 6380 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,77.5 - parent: 2 - - type: GasMiner - spawnAmount: 1000 - spawnTemperature: 523 - maxExternalPressure: 1000 - - uid: 19084 + parent: 6382 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6385 components: - type: Transform - pos: -6.5,1.5 - parent: 16504 -- proto: GasMixer + parent: 6384 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsMercFilled entities: - - uid: 3894 + - uid: 6386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,75.5 + pos: 1.6860552,37.71367 parent: 2 - - uid: 8122 +- proto: ClothingShoesBootsWinterSyndicate + entities: + - uid: 21119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,88.5 - parent: 2 -- proto: GasMixerFlipped + pos: 3.4777985,75.4765 + parent: 16527 +- proto: ClothingShoesChameleonNoSlips entities: - - uid: 8123 + - uid: 48 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,72.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' -- proto: GasOutletInjector + parent: 41 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesClownLarge entities: - - uid: 8124 + - uid: 1026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,88.5 - parent: 2 - - uid: 8125 + parent: 1021 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesColorBlack + entities: + - uid: 6388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,82.5 - parent: 2 - - uid: 8126 + parent: 6387 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,73.5 - parent: 2 - - uid: 8127 + parent: 6387 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,75.5 - parent: 2 - - uid: 8128 + parent: 6387 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,77.5 - parent: 2 - - uid: 8129 + parent: 6387 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesCult + entities: + - uid: 6396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,79.5 + pos: 26.180593,60.12821 parent: 2 - - uid: 8130 +- proto: ClothingShoesFlippers + entities: + - uid: 6397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,81.5 + pos: 0.50055933,23.601164 parent: 2 - - uid: 8131 +- proto: ClothingShoesHighheelBoots + entities: + - uid: 21120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,83.5 - parent: 2 -- proto: GasPassiveVent + pos: 12.439287,28.139019 + parent: 16527 +- proto: ClothingShoeSlippersDuck entities: - - uid: 8132 + - uid: 6398 components: + - type: MetaData + name: тапки-уточки Лаврика - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,81.5 + pos: 55.76543,-1.2950953 parent: 2 - - uid: 8133 + - uid: 6400 components: - type: Transform - pos: 32.5,87.5 - parent: 2 - - uid: 8134 + parent: 6399 + - type: Physics + canCollide: False +- proto: ClothingShoesSlippers + entities: + - uid: 6404 components: - type: Transform - pos: 27.5,73.5 + pos: 76.59434,53.742016 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 8135 + - uid: 6405 components: - type: Transform - pos: 27.5,75.5 + pos: 76.42246,53.94514 parent: 2 - - type: AtmosPipeColor - color: '#00BFFFFF' - - uid: 8136 + - uid: 6406 components: - type: Transform - pos: 27.5,77.5 + pos: 1.531704,1.3974777 parent: 2 - - type: AtmosPipeColor - color: '#FFC0CBFF' - - uid: 8137 + - uid: 6407 components: + - type: MetaData + name: тапочки Лаврика - type: Transform - pos: 27.5,79.5 + pos: 55.593544,0.305943 parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 8138 + - uid: 6408 components: - type: Transform - pos: 27.5,81.5 + pos: 52.47336,32.836014 parent: 2 - - type: AtmosPipeColor - color: '#FF6347FF' - - uid: 8139 + - uid: 6409 components: - type: Transform - pos: 27.5,83.5 + pos: 65.20112,6.182456 parent: 2 - - type: AtmosPipeColor - color: '#00FF7FFF' - - uid: 8140 +- proto: ClothingShoesSnakeskinBoots + entities: + - uid: 6410 components: - type: Transform - pos: 18.5,-8.5 + pos: 60.407978,82.31232 parent: 2 - - uid: 8142 +- proto: ClothingShoesWizard + entities: + - uid: 6412 components: + - type: MetaData + desc: Кожанные сандалии. Не надевайте их в технических туннелях, пораните пальцы ног. + name: сандалии - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,71.5 - parent: 2 - - uid: 8144 + parent: 6411 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6414 components: + - type: MetaData + desc: Кожанные сандалии. Не надевайте их в технических туннелях, пораните пальцы ног. + name: сандалии - type: Transform - pos: 57.5,79.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 10923 + parent: 6413 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUnderSocksCoder + entities: + - uid: 6415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-6.5 + pos: 82.5,24.5 parent: 2 - - uid: 10924 +- proto: ClothingUniformJumpskirtElegantMaid + entities: + - uid: 6417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-7.5 + parent: 6416 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 6418 + components: + - type: Transform + pos: 64.39949,48.712254 parent: 2 - - uid: 19085 +- proto: ClothingUniformJumpskirtLawyerPurple + entities: + - uid: 6420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19086 + parent: 6419 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtResearchDirector + entities: + - uid: 21121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 16504 - - uid: 19087 + pos: -32.423035,30.682922 + parent: 16527 +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 21122 components: - type: Transform - pos: -1.5,0.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19088 + pos: 12.680763,26.38133 + parent: 16527 +- proto: ClothingUniformJumpskirtTacticool + entities: + - uid: 21065 components: - type: Transform - pos: 2.5,0.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19089 + parent: 21059 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21075 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,6.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19090 + parent: 21069 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitAtmos + entities: + - uid: 49 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,6.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19091 + parent: 41 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitChiefEngineerSyndie + entities: + - uid: 21123 components: - type: Transform - pos: -17.5,37.5 - parent: 16504 - - uid: 19092 + rot: -1.5707963267948966 rad + pos: 4.4704895,35.34491 + parent: 16527 +- proto: ClothingUniformJumpsuitColorGrey + entities: + - uid: 6392 components: - type: Transform - pos: -15.5,37.5 - parent: 16504 - - uid: 19093 + parent: 6387 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,27.5 - parent: 16504 - - uid: 19094 + parent: 6387 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6394 components: - type: Transform - pos: -6.5,42.5 - parent: 16504 - - uid: 19095 + parent: 6387 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6395 components: - type: Transform - pos: 14.5,37.5 - parent: 16504 - - uid: 19096 + parent: 6387 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitJanitor + entities: + - uid: 21124 + components: + - type: Transform + rot: -0.6981317007977319 rad + pos: 10.273468,49.44928 + parent: 16527 +- proto: ClothingUniformJumpsuitJournalist + entities: + - uid: 6422 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,16.5 - parent: 16504 - - uid: 19097 + pos: -1.5010295,33.178143 + parent: 2 +- proto: ClothingUniformJumpsuitLawyerPurple + entities: + - uid: 6421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 16504 - - uid: 21662 + parent: 6419 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitMusician + entities: + - uid: 6423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-38.5 + pos: 13.48734,-16.366333 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' -- proto: GasPipeBend +- proto: ClothingUniformJumpsuitOperative entities: - - uid: 3171 + - uid: 21066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3174 + parent: 21059 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3889 + parent: 21069 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 19406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,75.5 - parent: 2 - - uid: 3890 + parent: 19404 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,74.5 - parent: 2 - - uid: 3892 + parent: 19404 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateRed + entities: + - uid: 21125 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,74.5 - parent: 2 - - uid: 4290 + pos: 16.769257,22.559265 + parent: 16527 + - uid: 21126 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4353 + pos: -11.510941,62.563293 + parent: 16527 + - uid: 21127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4382 + rot: 1.5707963267948966 rad + pos: -9.979675,66.25079 + parent: 16527 +- proto: ClothingUniformJumpsuitRecruitSyndie + entities: + - uid: 21128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 6763 + pos: -15.101395,64.87091 + parent: 16527 +- proto: ClothingUniformJumpsuitRepairmanSyndie + entities: + - uid: 21129 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 7101 + pos: -0.11050415,32.59198 + parent: 16527 + - uid: 21130 components: - type: Transform - pos: 21.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 7307 + pos: -10.009079,36.21698 + parent: 16527 +- proto: ClothingUniformJumpsuitReporter + entities: + - uid: 6424 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-43.5 + pos: -1.3604045,32.850018 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 7558 +- proto: ClothingUniformJumpsuitSafari + entities: + - uid: 6338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8145 + parent: 6336 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8149 + parent: 6336 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformOveralls + entities: + - uid: 6425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,4.5 + pos: 68.33097,29.463043 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8151 +- proto: ClownRecorder + entities: + - uid: 6426 components: - type: Transform - pos: 42.5,88.5 + pos: 51.558765,38.56774 parent: 2 - - uid: 8152 +- proto: ClusterBangFull + entities: + - uid: 1059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8153 + parent: 1057 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,64.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8154 + parent: 1057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Cobweb1 + entities: + - uid: 21131 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8155 + pos: 4.5,52.5 + parent: 16527 + - uid: 21132 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8156 + pos: 15.5,53.5 + parent: 16527 + - uid: 21133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8157 + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 16527 + - uid: 21134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8158 + rot: 1.5707963267948966 rad + pos: 15.5,10.5 + parent: 16527 + - uid: 21135 components: - type: Transform - pos: 29.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8159 + rot: 3.141592653589793 rad + pos: 15.5,10.5 + parent: 16527 + - uid: 21136 components: - type: Transform - pos: 22.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8160 + pos: -10.5,29.5 + parent: 16527 +- proto: Cobweb2 + entities: + - uid: 21137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8161 + pos: -6.5,30.5 + parent: 16527 +- proto: CombatKnife + entities: + - uid: 21138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8162 + rot: 1.5707963267948966 rad + pos: 11.891756,24.104626 + parent: 16527 +- proto: ComfyChair + entities: + - uid: 6427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,36.5 + rot: 3.141592653589793 rad + pos: 38.5,68.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8163 + - uid: 6428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,82.5 + rot: -1.5707963267948966 rad + pos: 25.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#00FF7FFF' - - uid: 8164 + - uid: 6429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,80.5 + rot: 1.5707963267948966 rad + pos: 23.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF6347FF' - - uid: 8165 + - uid: 6430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,78.5 + rot: 1.5707963267948966 rad + pos: 23.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 8166 + - uid: 6431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,76.5 + rot: -1.5707963267948966 rad + pos: 25.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FFC0CBFF' - - uid: 8167 + - uid: 6432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,74.5 + rot: -1.5707963267948966 rad + pos: 25.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#00BFFFFF' - - uid: 8168 + - uid: 6433 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,72.5 + pos: 32.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 8169 + - uid: 6434 components: - type: Transform - pos: 44.5,72.5 + rot: -1.5707963267948966 rad + pos: 18.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8170 + - uid: 6435 components: - type: Transform rot: -1.5707963267948966 rad - pos: 80.5,56.5 + pos: 51.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8171 + - uid: 6436 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,53.5 + pos: 49.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8172 + - uid: 6438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,44.5 + rot: 3.141592653589793 rad + pos: 60.5,64.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8173 + - uid: 6439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,44.5 + pos: 77.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8174 + - uid: 6440 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,37.5 + pos: 23.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8175 + - uid: 6441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,13.5 + pos: 36.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8176 + - uid: 6442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,37.5 + pos: 68.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8177 + - uid: 6445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,43.5 + rot: 3.141592653589793 rad + pos: 40.5,68.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8178 + - uid: 9845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,43.5 + rot: 1.5707963267948966 rad + pos: 14.5,41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8179 + - uid: 21139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8180 + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 16527 + - uid: 21140 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8181 + pos: 9.5,2.5 + parent: 16527 + - uid: 21141 components: - type: Transform - pos: 65.5,63.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8182 + rot: 1.5707963267948966 rad + pos: 25.5,16.5 + parent: 16527 + - uid: 21142 components: - type: Transform - pos: 66.5,64.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8184 + rot: -1.5707963267948966 rad + pos: 32.5,16.5 + parent: 16527 + - uid: 21327 components: - type: Transform rot: -1.5707963267948966 rad - pos: 81.5,28.5 + pos: 16.5,41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8185 +- proto: CommandmentCircuitBoard + entities: + - uid: 580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8186 + parent: 577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CommsComputerCircuitboard + entities: + - uid: 6447 components: - type: Transform - pos: 83.5,30.5 + pos: 57.528862,47.438488 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8187 +- proto: ComputerAlert + entities: + - uid: 6448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,38.5 + pos: 53.5,66.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8188 + - uid: 13932 components: - type: Transform - pos: 80.5,64.5 + pos: 44.5,70.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8189 +- proto: ComputerAnalysisConsole + entities: + - uid: 6449 components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,64.5 + pos: 21.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8190 + - uid: 21143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,65.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8191 + rot: -1.5707963267948966 rad + pos: -17.5,54.5 + parent: 16527 +- proto: computerBodyScanner + entities: + - uid: 6595 components: - type: Transform - pos: 81.5,65.5 + rot: -1.5707963267948966 rad + pos: 48.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8193 +- proto: ComputerBroken + entities: + - uid: 6451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,32.5 + pos: 76.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8194 + - uid: 12076 components: - type: Transform - pos: 34.5,74.5 + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 parent: 2 - - uid: 8195 + - uid: 12574 components: - type: Transform - pos: 49.5,-4.5 + pos: 62.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8196 + - uid: 20473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-3.5 + rot: 3.141592653589793 rad + pos: 64.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8197 + - uid: 21144 components: - type: Transform - pos: 48.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8198 + pos: 5.5,44.5 + parent: 16527 + - uid: 21145 components: - type: Transform - pos: 36.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8199 + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 16527 + - uid: 21146 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8200 + pos: -12.5,-5.5 + parent: 16527 + - uid: 21147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8201 + pos: 0.5,21.5 + parent: 16527 + - uid: 21148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8202 + pos: 2.5,21.5 + parent: 16527 + - uid: 21149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,0.5 - parent: 2 - - uid: 8203 + pos: -24.5,32.5 + parent: 16527 + - uid: 21150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,86.5 - parent: 2 - - uid: 8204 + rot: 1.5707963267948966 rad + pos: -10.5,27.5 + parent: 16527 + - uid: 21151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8205 + pos: 3.5,35.5 + parent: 16527 + - uid: 21152 components: - type: Transform - pos: 44.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8206 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 16527 + - uid: 21153 components: - type: Transform - pos: 41.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8207 + rot: 3.141592653589793 rad + pos: -4.5,54.5 + parent: 16527 + - uid: 21154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-0.5 - parent: 2 - - uid: 8210 + pos: -34.5,42.5 + parent: 16527 + - uid: 21155 components: - type: Transform - pos: 39.5,83.5 - parent: 2 - - uid: 8211 + pos: -33.5,42.5 + parent: 16527 + - uid: 21156 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,83.5 - parent: 2 - - uid: 8212 + pos: -49.5,42.5 + parent: 16527 +- proto: ComputerCargoBounty + entities: + - uid: 6452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,82.5 + rot: 3.141592653589793 rad + pos: 6.5,1.5 parent: 2 - - uid: 8213 + - uid: 6453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,82.5 + pos: 4.5,9.5 parent: 2 - - uid: 8214 +- proto: ComputerCargoOrders + entities: + - uid: 6454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,81.5 + rot: -1.5707963267948966 rad + pos: 8.5,10.5 parent: 2 - - uid: 8215 + - uid: 6455 components: - type: Transform - pos: 39.5,81.5 + rot: 3.141592653589793 rad + pos: 5.5,1.5 parent: 2 - - uid: 8216 + - uid: 6456 components: - type: Transform - pos: 39.5,-2.5 + rot: -1.5707963267948966 rad + pos: 8.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8217 +- proto: ComputerComms + entities: + - uid: 6458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,86.5 + pos: 24.5,30.5 parent: 2 - - uid: 8218 + - uid: 6459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,73.5 + pos: 31.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 8219 + - uid: 21157 components: - type: Transform - pos: 16.5,62.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8220 + rot: 1.5707963267948966 rad + pos: -29.5,42.5 + parent: 16527 +- proto: ComputerCrewMonitoring + entities: + - uid: 6460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,61.5 + rot: 1.5707963267948966 rad + pos: 14.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8221 + - uid: 6461 components: - type: Transform - pos: 15.5,61.5 + pos: 21.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8222 + - uid: 6462 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,62.5 + pos: 35.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8223 + - uid: 6463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,84.5 + pos: 52.5,28.5 parent: 2 - - uid: 8224 + - uid: 11116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,83.5 + rot: 3.141592653589793 rad + pos: 62.5,19.5 parent: 2 - - uid: 9344 +- proto: ComputerCriminalRecords + entities: + - uid: 6464 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,50.5 + pos: 52.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9593 + - uid: 6465 components: - type: Transform - pos: 24.5,-35.5 + rot: -1.5707963267948966 rad + pos: 29.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11512 + - uid: 6466 components: - type: Transform - pos: 38.5,75.5 + rot: 3.141592653589793 rad + pos: 39.5,31.5 parent: 2 - - uid: 13768 + - uid: 6467 components: - type: Transform - pos: 19.5,-6.5 + pos: 43.5,36.5 parent: 2 - - uid: 13906 + - uid: 15399 components: - type: Transform - pos: 33.5,53.5 + rot: 3.141592653589793 rad + pos: 49.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16464 +- proto: ComputerFrame + entities: + - uid: 6469 components: - type: Transform - pos: 25.5,-37.5 + pos: 77.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16483 + - uid: 6470 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,45.5 + pos: 28.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19099 + - uid: 21158 components: - type: Transform - pos: 2.5,7.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19100 + pos: -16.5,4.5 + parent: 16527 + - uid: 21159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19101 + pos: 5.5,4.5 + parent: 16527 + - uid: 21161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,7.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19102 + pos: -1.5,21.5 + parent: 16527 + - uid: 21162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,27.5 - parent: 16504 - - uid: 19103 + pos: -25.5,32.5 + parent: 16527 + - uid: 21163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,34.5 - parent: 16504 - - uid: 19104 + rot: -1.5707963267948966 rad + pos: -3.5,57.5 + parent: 16527 + - uid: 21164 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,35.5 - parent: 16504 - - uid: 19105 + pos: -7.5,47.5 + parent: 16527 + - uid: 21165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,32.5 - parent: 16504 - - uid: 19106 + pos: -10.5,71.5 + parent: 16527 + - uid: 21166 components: - type: Transform - pos: -12.5,34.5 - parent: 16504 - - uid: 19107 + rot: 1.5707963267948966 rad + pos: -41.5,50.5 + parent: 16527 + - uid: 21167 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,34.5 - parent: 16504 - - uid: 19108 + pos: -41.5,46.5 + parent: 16527 + - uid: 21168 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,30.5 - parent: 16504 - - uid: 19109 + pos: -55.5,49.5 + parent: 16527 + - uid: 21169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,32.5 - parent: 16504 - - uid: 19110 + pos: -48.5,54.5 + parent: 16527 + - uid: 21170 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,27.5 - parent: 16504 - - uid: 19111 + pos: 21.5,52.5 + parent: 16527 +- proto: ComputerId + entities: + - uid: 6471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,29.5 - parent: 16504 - - uid: 19112 + rot: 3.141592653589793 rad + pos: 17.5,20.5 + parent: 2 + - uid: 6472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,27.5 - parent: 16504 - - uid: 19113 + pos: 22.5,30.5 + parent: 2 + - uid: 6473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,30.5 - parent: 16504 - - uid: 19114 + rot: 3.141592653589793 rad + pos: 28.5,20.5 + parent: 2 +- proto: ComputerIFFSyndicate + entities: + - uid: 21171 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,33.5 - parent: 16504 - - uid: 19115 + pos: -26.5,39.5 + parent: 16527 +- proto: ComputerMassMedia + entities: + - uid: 6474 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,34.5 - parent: 16504 - - uid: 19116 + pos: 0.5,32.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 6475 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,36.5 - parent: 16504 - - uid: 19117 + pos: 19.5,28.5 + parent: 2 + - uid: 6476 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,34.5 - parent: 16504 - - uid: 19118 - components: - - type: Transform - pos: -5.5,41.5 - parent: 16504 - - uid: 19119 - components: - - type: Transform - pos: 6.5,34.5 - parent: 16504 - - uid: 19120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,33.5 - parent: 16504 - - uid: 19121 - components: - - type: Transform - pos: 8.5,33.5 - parent: 16504 - - uid: 19122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 16504 - - uid: 19123 + pos: 36.5,8.5 + parent: 2 + - uid: 21172 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,10.5 - parent: 16504 - - uid: 21208 + pos: -24.5,39.5 + parent: 16527 +- proto: ComputerPowerMonitoring + entities: + - uid: 6477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-37.5 + rot: -1.5707963267948966 rad + pos: 51.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 21255 + - uid: 6478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-38.5 + rot: 1.5707963267948966 rad + pos: 9.5,41.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21508 + - uid: 6479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,50.5 + pos: 51.5,66.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21664 + - uid: 6480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-37.5 + pos: 26.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21665 +- proto: ComputerRadar + entities: + - uid: 6481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-35.5 + pos: 27.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21716 + - uid: 21173 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21717 + pos: -48.5,42.5 + parent: 16527 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 6482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,49.5 + pos: 22.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeBroken +- proto: ComputerRoboticsControl entities: - - uid: 10393 + - uid: 3180 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,6.5 + pos: 22.5,-39.5 parent: 2 - - uid: 12514 + missingComponents: + - AccessReader + - Lock + - uid: 6483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,10.5 + pos: 18.5,6.5 parent: 2 - - uid: 19124 - components: - - type: Transform - pos: -15.5,36.5 - parent: 16504 - - uid: 19125 - components: - - type: Transform - pos: -17.5,35.5 - parent: 16504 - - uid: 19126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,34.5 - parent: 16504 - - uid: 19127 + - uid: 6484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,35.5 - parent: 16504 -- proto: GasPipeFourway + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 2 +- proto: ComputerShuttleCargo entities: - - uid: 2389 + - uid: 6486 components: - type: Transform - pos: 16.5,54.5 + pos: 5.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8227 +- proto: ComputerShuttleSalvage + entities: + - uid: 10790 components: - type: Transform - pos: 43.5,4.5 + rot: 3.141592653589793 rad + pos: 5.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8228 +- proto: ComputerSolarControl + entities: + - uid: 6487 components: - type: Transform - pos: 42.5,19.5 + rot: 3.141592653589793 rad + pos: 49.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8229 + - uid: 6488 components: - type: Transform - pos: 47.5,68.5 + pos: 52.5,66.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8230 +- proto: ComputerStationRecords + entities: + - uid: 6489 components: - type: Transform - pos: 46.5,81.5 + rot: 1.5707963267948966 rad + pos: 19.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8231 + - uid: 6490 components: - type: Transform - pos: 15.5,53.5 + rot: 3.141592653589793 rad + pos: 41.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8232 + - uid: 6491 components: - type: Transform - pos: 7.5,14.5 + rot: -1.5707963267948966 rad + pos: 83.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8233 + - uid: 21174 components: - type: Transform - pos: 7.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8234 + rot: 1.5707963267948966 rad + pos: -55.5,48.5 + parent: 16527 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 6492 components: - type: Transform - pos: 9.5,13.5 + rot: 3.141592653589793 rad + pos: 13.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8235 + - uid: 6493 components: - type: Transform - pos: 21.5,4.5 + rot: -1.5707963267948966 rad + pos: 42.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8236 + - uid: 6494 components: - type: Transform - pos: 20.5,5.5 + rot: -1.5707963267948966 rad + pos: 29.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8237 + - uid: 6495 components: - type: Transform - pos: 48.5,0.5 + rot: -1.5707963267948966 rad + pos: 83.5,53.5 parent: 2 - - uid: 8238 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 6496 components: - type: Transform - pos: 53.5,3.5 + rot: 3.141592653589793 rad + pos: -0.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8239 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 6497 components: - type: Transform - pos: 52.5,4.5 + pos: 20.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8240 +- proto: ComputerTelevision + entities: + - uid: 6498 components: - type: Transform - pos: 46.5,31.5 + pos: 4.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8241 + - uid: 6499 components: - type: Transform - pos: 45.5,30.5 + pos: 9.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8242 + - uid: 21256 components: - type: Transform - pos: 71.5,48.5 + pos: 19.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8243 +- proto: ContrabassInstrument + entities: + - uid: 21175 components: - type: Transform - pos: 70.5,56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8244 + pos: -35.5,42.5 + parent: 16527 +- proto: ConveyorBelt + entities: + - uid: 6542 components: - type: Transform - pos: 55.5,52.5 + rot: 1.5707963267948966 rad + pos: 1.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8245 + - uid: 6543 components: - type: Transform - pos: 81.5,60.5 + rot: -1.5707963267948966 rad + pos: 1.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8246 + - uid: 6544 components: - type: Transform - pos: 12.5,13.5 + rot: -1.5707963267948966 rad + pos: 0.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8247 + - uid: 6545 components: - type: Transform - pos: 70.5,38.5 + rot: -1.5707963267948966 rad + pos: -0.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8248 + - uid: 6546 components: - type: Transform - pos: 66.5,52.5 + rot: -1.5707963267948966 rad + pos: -1.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8249 + - uid: 6547 components: - type: Transform - pos: 48.5,62.5 + rot: 1.5707963267948966 rad + pos: -1.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8250 + - uid: 6548 components: - type: Transform - pos: 47.5,63.5 + rot: 1.5707963267948966 rad + pos: -0.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8251 + - uid: 6549 components: - type: Transform - pos: 43.5,20.5 + rot: 1.5707963267948966 rad + pos: 0.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8252 + - uid: 6550 components: - type: Transform - pos: 40.5,4.5 + rot: -1.5707963267948966 rad + pos: 1.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8253 + - uid: 6551 components: - type: Transform - pos: 46.5,70.5 + rot: 3.141592653589793 rad + pos: -0.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8254 + - uid: 6552 components: - type: Transform - pos: 47.5,82.5 + rot: -1.5707963267948966 rad + pos: 0.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8255 + - uid: 6553 components: - type: Transform - pos: 57.5,26.5 + rot: 3.141592653589793 rad + pos: -0.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13023 + - uid: 6554 components: - type: Transform - pos: 41.5,47.5 + rot: -1.5707963267948966 rad + pos: -0.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 19128 + - uid: 6555 components: - type: Transform - pos: -1.5,3.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19129 + rot: -1.5707963267948966 rad + pos: -1.5,23.5 + parent: 2 + - uid: 6556 components: - type: Transform - pos: 0.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19130 + rot: 3.141592653589793 rad + pos: -0.5,20.5 + parent: 2 + - uid: 6557 components: - type: Transform - pos: 0.5,3.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19131 + rot: 3.141592653589793 rad + pos: -0.5,21.5 + parent: 2 + - uid: 21176 components: - type: Transform - pos: -0.5,3.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19132 + pos: -17.5,9.5 + parent: 16527 + - uid: 21177 components: - type: Transform - pos: 0.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19133 + pos: -17.5,8.5 + parent: 16527 + - uid: 21178 components: - type: Transform - pos: 1.5,3.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19134 + rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 16527 + - uid: 21179 components: - type: Transform - pos: -12.5,35.5 - parent: 16504 - - uid: 19135 + rot: -1.5707963267948966 rad + pos: -17.5,7.5 + parent: 16527 + - uid: 21180 components: - type: Transform - pos: -12.5,33.5 - parent: 16504 - - uid: 21652 + rot: 3.141592653589793 rad + pos: -19.5,7.5 + parent: 16527 + - uid: 21197 components: - type: Transform - pos: 18.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21715 + rot: 3.141592653589793 rad + pos: -19.5,8.5 + parent: 16527 + - uid: 21198 components: - type: Transform - pos: 38.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeHalf - entities: - - uid: 19136 + rot: 3.141592653589793 rad + pos: -19.5,9.5 + parent: 16527 + - uid: 21324 components: - type: Transform - pos: -12.5,36.5 - parent: 16504 -- proto: GasPipeStraight - entities: - - uid: 646 + rot: 3.141592653589793 rad + pos: -19.5,10.5 + parent: 16527 + - uid: 21338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 3154 + rot: 1.5707963267948966 rad + pos: -19.5,11.5 + parent: 16527 + - uid: 21469 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3155 + pos: -18.5,11.5 + parent: 16527 + - uid: 21483 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3159 + pos: -17.5,11.5 + parent: 16527 + - uid: 21581 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3160 + pos: -16.5,11.5 + parent: 16527 + - uid: 21629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3161 + rot: 3.141592653589793 rad + pos: -15.5,11.5 + parent: 16527 + - uid: 21688 components: - type: Transform - pos: 32.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3178 + rot: 3.141592653589793 rad + pos: -15.5,12.5 + parent: 16527 + - uid: 21689 components: - type: Transform - pos: 43.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3179 + rot: -1.5707963267948966 rad + pos: -15.5,13.5 + parent: 16527 + - uid: 21827 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3181 + pos: -16.5,13.5 + parent: 16527 + - uid: 21829 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3183 + pos: -17.5,13.5 + parent: 16527 + - uid: 21843 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3185 + pos: -18.5,13.5 + parent: 16527 + - uid: 21848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3192 + rot: -1.5707963267948966 rad + pos: -19.5,13.5 + parent: 16527 + - uid: 21862 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3340 + pos: -20.5,13.5 + parent: 16527 + - uid: 21863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3978 + rot: -1.5707963267948966 rad + pos: -21.5,13.5 + parent: 16527 + - uid: 22010 components: - type: Transform - pos: 32.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3983 + pos: -13.5,77.5 + parent: 16527 + - uid: 22011 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4338 + pos: -13.5,76.5 + parent: 16527 + - uid: 22012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4339 + rot: -1.5707963267948966 rad + pos: -14.5,76.5 + parent: 16527 + - uid: 22013 components: - type: Transform - pos: 28.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4348 + rot: 3.141592653589793 rad + pos: -15.5,76.5 + parent: 16527 + - uid: 22014 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4352 + pos: -15.5,77.5 + parent: 16527 + - uid: 22015 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4354 + pos: -14.5,77.5 + parent: 16527 +- proto: CorporateCircuitBoard + entities: + - uid: 581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4358 + parent: 577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CounterMetalFrame + entities: + - uid: 6558 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,49.5 + pos: 27.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4359 + - uid: 6559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,46.5 + rot: -1.5707963267948966 rad + pos: 28.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4360 + - uid: 22016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4364 + pos: -0.5,21.5 + parent: 16527 + - uid: 22017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4365 + pos: -16.5,27.5 + parent: 16527 + - uid: 22018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4366 + pos: -12.5,18.5 + parent: 16527 +- proto: CrateAirlockKit + entities: + - uid: 22019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4370 + pos: -55.5,46.5 + parent: 16527 +- proto: CrateArtifactContainer + entities: + - uid: 6560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,54.5 + pos: 20.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4378 + - uid: 22020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4381 + pos: -35.5,39.5 + parent: 16527 +- proto: CrateCoffin + entities: + - uid: 6561 components: - type: Transform - pos: 32.5,42.5 + pos: 79.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4384 + - uid: 22021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4386 + pos: 17.5,28.5 + parent: 16527 +- proto: CrateCommandSecure + entities: + - uid: 577 components: + - type: MetaData + name: ящик плат законов ИИ - type: Transform - pos: 32.5,44.5 + pos: 58.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4485 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 585 + - 583 + - 586 + - 580 + - 588 + - 578 + - 581 + - 587 + - 582 + - 579 + - 584 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEmergencyExplosive + entities: + - uid: 6562 components: - type: Transform - pos: 19.5,48.5 + pos: 58.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4492 +- proto: CrateEmergencyInternals + entities: + - uid: 6563 components: - type: Transform - pos: 18.5,42.5 + pos: 85.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4509 +- proto: CrateEmergencyInternalsLarge + entities: + - uid: 13882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,49.5 + pos: 16.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4972 + - uid: 21879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,49.5 + pos: 43.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4974 +- proto: CrateEmergencyO2Kit + entities: + - uid: 6564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,49.5 + pos: 60.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 5850 +- proto: CrateEmptySpawner + entities: + - uid: 22022 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5851 + pos: -8.5,22.5 + parent: 16527 + - uid: 22023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5855 + pos: 21.5,46.5 + parent: 16527 +- proto: CrateEngineeringAMEJar + entities: + - uid: 6565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,45.5 + pos: 50.5,76.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 5876 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,44.5 + pos: 50.5,79.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5928 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 516 + - 517 + - 518 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringCableBulk + entities: + - uid: 6566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,46.5 + pos: 29.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 6446 + - uid: 6567 components: - type: Transform - pos: 27.5,38.5 + pos: 56.5,68.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 6534 + - uid: 6568 components: - type: Transform - pos: 18.5,45.5 + pos: 10.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6537 +- proto: CrateFilledSpawner + entities: + - uid: 22024 components: - type: Transform - pos: 18.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6540 + pos: -21.5,-1.5 + parent: 16527 + - uid: 22025 components: - type: Transform - pos: 18.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6721 + pos: -11.5,24.5 + parent: 16527 + - uid: 22026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 6764 + pos: -7.5,23.5 + parent: 16527 + - uid: 22027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 6925 + pos: -8.5,21.5 + parent: 16527 + - uid: 22028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 7311 + pos: -16.5,48.5 + parent: 16527 + - uid: 22029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 7313 + pos: -0.5,35.5 + parent: 16527 + - uid: 22030 components: - type: Transform - pos: 18.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7495 + pos: -26.5,44.5 + parent: 16527 + - uid: 22031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 7524 + pos: 22.5,44.5 + parent: 16527 +- proto: CrateFoodMRE + entities: + - uid: 6569 components: - type: Transform - pos: 27.5,40.5 + pos: 90.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 7530 +- proto: CrateFreezer + entities: + - uid: 6570 components: - type: Transform - pos: 27.5,39.5 + pos: 50.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 7553 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6571 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6572 components: - type: Transform - pos: 24.5,-36.5 + pos: 12.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 7555 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6573 + - 6574 + - 6575 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFunInstrumentsSpecial + entities: + - uid: 22032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7556 + pos: -53.5,54.5 + parent: 16527 +- proto: CrateFunInstrumentsString + entities: + - uid: 22033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 7560 + pos: -7.5,22.5 + parent: 16527 +- proto: CrateFunParty + entities: + - uid: 22034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 7892 + pos: 23.5,61.5 + parent: 16527 +- proto: CrateFunToyBox + entities: + - uid: 6576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,38.5 + pos: 59.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8076 +- proto: CrateHydroponics + entities: + - uid: 6578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,74.5 + pos: 90.5,12.5 parent: 2 - - uid: 8256 +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 6094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-6.5 + pos: 15.5,74.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8257 +- proto: CrateInternals + entities: + - uid: 6579 components: - type: Transform - pos: 32.5,84.5 + pos: 65.5,40.5 parent: 2 - - uid: 8258 + - uid: 6580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,17.5 + pos: 92.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8259 +- proto: CrateMedical + entities: + - uid: 22035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8260 + pos: 15.5,38.5 + parent: 16527 +- proto: CrateMedicalSecure + entities: + - uid: 6581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-5.5 + pos: 50.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8261 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateMedicalSurgery + entities: + - uid: 6583 components: - type: Transform - pos: 45.5,-1.5 + pos: 59.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8262 + - uid: 16511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,26.5 + pos: 49.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8263 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 16512 + - 16513 + - 16514 + - 16515 + - 16516 + - 16517 + - 16518 + - 16519 + - 16520 + - 16521 + - 16522 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateNPCHamlet + entities: + - uid: 6584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,40.5 + pos: 25.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8264 +- proto: CrateNPCKoboldCube + entities: + - uid: 22036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8265 + pos: 16.5,38.5 + parent: 16527 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 6585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,81.5 + pos: 4.5,20.5 parent: 2 - - uid: 8266 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 22037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,82.5 - parent: 2 - - uid: 8267 + pos: -12.5,16.5 + parent: 16527 +- proto: CrateServicePersonnel + entities: + - uid: 6586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,81.5 + pos: 20.5,21.5 parent: 2 - - uid: 8269 +- proto: CrateSyndicate + entities: + - uid: 21086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,83.5 - parent: 2 - - uid: 8270 + pos: -52.5,47.5 + parent: 16527 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21088 + - 21087 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 22038 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8271 + pos: -27.5,43.5 + parent: 16527 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateSyndicateSurplusBundle + entities: + - uid: 22039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8272 + pos: -52.5,49.5 + parent: 16527 +- proto: CrateTrashCart + entities: + - uid: 6416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,17.5 + pos: 2.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8273 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6417 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 22040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8274 + pos: -4.5,12.5 + parent: 16527 + - uid: 22041 components: - type: Transform - pos: 43.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8275 + pos: -18.5,16.5 + parent: 16527 + - uid: 22042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8276 + pos: -17.5,16.5 + parent: 16527 +- proto: CrateTrashCartFilled + entities: + - uid: 6587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,3.5 + pos: 1.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8277 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 22043 components: - type: Transform - pos: 47.5,72.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8278 + pos: -19.5,16.5 + parent: 16527 + - uid: 22044 components: - type: Transform - pos: 47.5,73.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8279 + pos: 20.5,51.5 + parent: 16527 +- proto: CrateTrashCartJani + entities: + - uid: 6588 components: - type: Transform - pos: 47.5,76.5 + pos: 90.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8280 + - uid: 6589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,3.5 + pos: 66.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8281 + - uid: 22045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8282 + pos: 16.5,14.5 + parent: 16527 +- proto: CrateWeaponSecure + entities: + - uid: 1057 components: + - type: MetaData + name: оружейный ящик гранат - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 + pos: 56.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8283 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1062 + - 1058 + - 1061 + - 1064 + - 1067 + - 1065 + - 1066 + - 1063 + - 1059 + - 1060 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6590 components: - type: Transform - pos: 45.5,-3.5 + pos: 54.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8284 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6933 + - 6783 + - 6594 + - 6593 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrayonBox + entities: + - uid: 933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-5.5 + pos: 40.461395,-26.439587 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8285 + - uid: 6596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-5.5 + pos: 9.338084,52.725395 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8286 + - uid: 6597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,2.5 + pos: 8.481375,31.582724 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8287 +- proto: Crematorium + entities: + - uid: 6598 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,1.5 + pos: 78.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8288 + - uid: 6599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,1.5 + rot: 1.5707963267948966 rad + pos: 60.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8289 +- proto: CrewMonitoringComputerCircuitboard + entities: + - uid: 6600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-3.5 + pos: 57.518803,48.669518 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8290 +- proto: CrewMonitoringServer + entities: + - uid: 6601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,3.5 + pos: 80.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8291 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 6602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,3.5 + pos: 48.766743,-2.397445 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8292 + - uid: 22046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8293 + rot: 3.141592653589793 rad + pos: 24.457228,34.49971 + parent: 16527 + - uid: 22047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8294 + rot: 1.5707963267948966 rad + pos: -33.346466,35.652893 + parent: 16527 +- proto: CrowbarRed + entities: + - uid: 6603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,84.5 + pos: 24.599216,-8.212352 parent: 2 - - uid: 8295 + - uid: 6604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,84.5 + pos: 58.857124,34.72271 parent: 2 - - uid: 8296 + - uid: 21345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,84.5 + rot: 3.141592653589793 rad + pos: 10.496753,51.7262 parent: 2 - - uid: 8297 + - uid: 21374 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,3.5 + pos: 42.20802,-26.697763 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8298 + - uid: 22048 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8300 + pos: 15.035965,48.744812 + parent: 16527 + - uid: 22049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8301 + pos: -20.4793,14.552873 + parent: 16527 +- proto: CryogenicSleepUnit + entities: + - uid: 22394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,84.5 + rot: 3.141592653589793 rad + pos: 57.5,38.5 parent: 2 - - uid: 8302 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 22220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,82.5 + rot: 3.141592653589793 rad + pos: 74.5,52.5 parent: 2 - - uid: 8303 + - uid: 22221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,83.5 + rot: 3.141592653589793 rad + pos: 75.5,52.5 parent: 2 - - uid: 8304 + - uid: 22222 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,54.5 + pos: 76.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8305 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 22223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 + pos: 79.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8307 + - uid: 22224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,53.5 + pos: 78.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8310 +- proto: CryoPod + entities: + - uid: 6609 components: - type: Transform - pos: 46.5,76.5 + pos: 48.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8311 + - uid: 6610 components: - type: Transform - pos: 46.5,74.5 + pos: 50.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8312 +- proto: CryostasisBeaker + entities: + - uid: 22050 components: - type: Transform - pos: 47.5,75.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8313 + rot: 3.141592653589793 rad + pos: -33.6071,27.293396 + parent: 16527 + - uid: 22051 components: - type: Transform - pos: 47.5,74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8314 + rot: 3.141592653589793 rad + pos: -34.060226,27.293396 + parent: 16527 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 6611 components: - type: Transform - pos: 46.5,72.5 + pos: 50.45342,-1.4966954 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8315 + - uid: 6612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,62.5 + pos: 50.29717,-1.1685704 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8316 + - uid: 6613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,62.5 + pos: 50.781544,-1.4810704 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8317 + - uid: 6614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,66.5 + pos: 50.60967,-1.1998204 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8318 +- proto: CultAltarSpawner + entities: + - uid: 6615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,63.5 + pos: 25.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8319 +- proto: CurtainsBlack + entities: + - uid: 22052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,57.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8320 + pos: 26.5,56.5 + parent: 16527 +- proto: CurtainsBlackOpen + entities: + - uid: 2368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,54.5 + pos: 29.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8321 + - uid: 4968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,58.5 + pos: 29.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8322 + - uid: 15491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,66.5 + pos: 29.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8323 +- proto: CurtainsBlueOpen + entities: + - uid: 6616 components: - type: Transform - pos: 39.5,66.5 + pos: 26.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8324 + - uid: 6617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,64.5 + pos: 48.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8325 +- proto: CurtainsOrange + entities: + - uid: 6618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,61.5 + pos: 52.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8326 + - uid: 6619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,60.5 + pos: 49.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8328 + - uid: 6620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,66.5 + pos: 41.5,66.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8329 + - uid: 8150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,63.5 + pos: 31.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8330 + - uid: 18644 components: - type: Transform - pos: 47.5,70.5 + pos: 32.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8331 +- proto: CurtainsOrangeOpen + entities: + - uid: 6621 components: - type: Transform - pos: 47.5,71.5 + pos: 39.5,69.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8332 +- proto: CurtainSpawner + entities: + - uid: 6622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,38.5 + pos: 18.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8333 +- proto: CutterMachine + entities: + - uid: 6623 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,55.5 + rot: -1.5707963267948966 rad + pos: 48.5,73.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8334 +- proto: CyberPen + entities: + - uid: 3618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,0.5 + rot: -1.5707963267948966 rad + pos: 38.584244,-26.582815 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8335 + - uid: 22053 components: - type: Transform - pos: 38.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8336 + rot: -1.5707963267948966 rad + pos: -34.369812,38.726196 + parent: 16527 + - uid: 22054 components: - type: Transform - pos: 37.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8337 + pos: -31.658321,42.70728 + parent: 16527 +- proto: CyborgEndoskeleton + entities: + - uid: 22055 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8338 + pos: -23.499466,42.234985 + parent: 16527 +- proto: DeathRattleImplanter + entities: + - uid: 22056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8339 + pos: -51.46425,42.53145 + parent: 16527 +- proto: DefaultStationBeacon + entities: + - uid: 22391 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-2.5 + pos: 15.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8340 + - type: NavMapBeacon + text: Воксбокс + - type: WarpPoint + location: Воксбокс +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 21883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,81.5 + pos: 22.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8341 + - type: NavMapBeacon + text: Спутник ИИ + - type: WarpPoint + location: Спутник ИИ +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 6624 components: - type: Transform - pos: 46.5,73.5 + pos: 17.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8342 + - type: WarpPoint + location: Генератор аномалий +- proto: DefaultStationBeaconArrivals + entities: + - uid: 6625 components: - type: Transform - pos: 46.5,77.5 + pos: 82.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8343 + - type: WarpPoint + location: Прибытие +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 6626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,68.5 + pos: 19.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8344 + - type: WarpPoint + location: Артефактная +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 6627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,68.5 + pos: 36.5,77.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8345 + - type: WarpPoint + location: Атмосферный отсек +- proto: DefaultStationBeaconBar + entities: + - uid: 21962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,40.5 + pos: 24.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8346 + - type: NavMapBeacon + text: Бар + - type: WarpPoint + location: Бар +- proto: DefaultStationBeaconBotany + entities: + - uid: 22007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,84.5 + pos: 42.5,47.5 parent: 2 - - uid: 8347 +- proto: DefaultStationBeaconBridge + entities: + - uid: 6630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,84.5 + pos: 24.5,28.5 parent: 2 - - uid: 8348 + - type: WarpPoint + location: Мостик +- proto: DefaultStationBeaconBrig + entities: + - uid: 6631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,63.5 + pos: 41.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8349 + - type: WarpPoint + location: Бриг приемная +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 6632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,64.5 + pos: 30.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8350 + - type: WarpPoint + location: Офис Капитана +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 6633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,63.5 + pos: 1.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8351 + - type: WarpPoint + location: Карго док +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 6634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,23.5 + pos: 8.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8352 + - type: WarpPoint + location: Карго ресепшн +- proto: DefaultStationBeaconCERoom + entities: + - uid: 6635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,23.5 + pos: 39.5,68.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8353 + - type: NavMapBeacon + text: Офис СИ + - type: WarpPoint + location: Офис СИ +- proto: DefaultStationBeaconChapel + entities: + - uid: 6636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,86.5 + pos: 79.5,32.5 parent: 2 - - uid: 8354 + - type: WarpPoint + location: Церковь +- proto: DefaultStationBeaconChemistry + entities: + - uid: 6637 components: - type: Transform - pos: 38.5,87.5 + pos: 43.5,8.5 parent: 2 - - uid: 8355 + - type: WarpPoint + location: Химка +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 6638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-1.5 + pos: 47.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8356 + - type: WarpPoint + location: Офис ГВ +- proto: DefaultStationBeaconCryonics + entities: + - uid: 6639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,71.5 + pos: 49.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8357 + - type: NavMapBeacon + text: Крионика + - type: WarpPoint + location: Крионика +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 6640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,6.5 + pos: 3.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8358 + - type: NavMapBeacon + text: Боксёрский ринг + - type: WarpPoint + location: Боксёрский ринг + - uid: 10550 components: - type: Transform - pos: 51.5,19.5 + pos: 77.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8359 + - type: NavMapBeacon + text: Криосон + - type: WarpPoint + location: Криосон +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 6641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,2.5 + pos: 42.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8360 + - type: WarpPoint + location: Детектив +- proto: DefaultStationBeaconDisposals + entities: + - uid: 6642 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-5.5 + pos: 1.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8361 + - type: WarpPoint + location: Мусоросброс +- proto: DefaultStationBeaconDorms + entities: + - uid: 6643 components: - type: Transform - pos: 51.5,20.5 + pos: 7.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8362 + - type: WarpPoint + location: Дормы +- proto: DefaultStationBeaconEngineering + entities: + - uid: 6644 components: - type: Transform - pos: 51.5,21.5 + pos: 49.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8363 + - type: WarpPoint + location: Инженерка +- proto: DefaultStationBeaconEvac + entities: + - uid: 6645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,88.5 + pos: 76.5,60.5 parent: 2 - - uid: 8364 + - type: WarpPoint + location: Эвак +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 6646 components: - type: Transform - pos: 52.5,19.5 + pos: 24.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8365 + - type: WarpPoint + location: ЕВА +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 6647 components: - type: Transform - pos: 39.5,-3.5 + pos: 18.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8366 + - type: WarpPoint + location: Офис ГП +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 6648 components: - type: Transform - pos: 42.5,18.5 + pos: 50.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8367 + - type: WarpPoint + location: Офис ГСБ +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 6649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,64.5 + pos: 67.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8368 + - type: WarpPoint + location: Уборщики +- proto: DefaultStationBeaconKitchen + entities: + - uid: 11506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,22.5 + pos: 29.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8369 + - type: NavMapBeacon + text: Кухня + - type: WarpPoint + location: Кухня +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 6651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-5.5 + pos: 7.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8370 + - type: WarpPoint + location: Законник +- proto: DefaultStationBeaconLibrary + entities: + - uid: 6652 components: - type: Transform - pos: 45.5,-5.5 + pos: 63.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8371 + - type: WarpPoint + location: Библиотека +- proto: DefaultStationBeaconMedbay + entities: + - uid: 6653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-0.5 + pos: 37.5,4.5 parent: 2 - - uid: 8372 + - type: NavMapBeacon + text: Медбей + - type: WarpPoint + location: Медбей + - uid: 6654 components: - type: Transform - pos: 52.5,18.5 + pos: 39.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8373 + - type: NavMapBeacon + text: Палаты + - type: WarpPoint + location: Палаты +- proto: DefaultStationBeaconMedical + entities: + - uid: 6655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,17.5 + pos: 66.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8374 + - type: NavMapBeacon + text: Кабинет психолога + - type: WarpPoint + location: Кабинет психолога +- proto: DefaultStationBeaconMorgue + entities: + - uid: 6656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,64.5 + pos: 54.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8375 + - type: WarpPoint + location: Морг +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 6657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,64.5 + pos: 52.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8376 + - type: WarpPoint + location: Энергетический Резерв +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 6658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,71.5 + pos: 6.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 8377 + - type: WarpPoint + location: Офис КМ +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 6659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,72.5 + pos: 16.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8378 + - type: WarpPoint + location: Офис НР +- proto: DefaultStationBeaconRobotics + entities: + - uid: 6660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,82.5 + pos: 27.5,-1.5 parent: 2 - - uid: 8379 + - type: WarpPoint + location: Робототехника +- proto: DefaultStationBeaconSalvage + entities: + - uid: 6661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,82.5 + pos: 3.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8380 + - type: WarpPoint + location: Утили +- proto: DefaultStationBeaconScience + entities: + - uid: 6662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,83.5 + pos: 21.5,-0.5 parent: 2 - - uid: 8381 + - type: WarpPoint + location: РНД +- proto: DefaultStationBeaconSecurity + entities: + - uid: 6663 components: - type: Transform - pos: 47.5,53.5 + pos: 50.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8382 + - type: WarpPoint + location: Бриг +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 6664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,22.5 + pos: 14.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8383 + - type: WarpPoint + location: КПП СБ Карго + - uid: 6665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,21.5 + pos: 82.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8384 + - type: WarpPoint + location: КПП СБ отбытие\прибытие +- proto: DefaultStationBeaconService + entities: + - uid: 15060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,21.5 + pos: 22.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8385 + - type: NavMapBeacon + text: Барная стойка + - type: WarpPoint + location: Барная стойка +- proto: DefaultStationBeaconSupply + entities: + - uid: 6666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,83.5 + pos: 7.5,7.5 parent: 2 - - uid: 8386 + - type: WarpPoint + location: Каргония +- proto: DefaultStationBeaconSurgery + entities: + - uid: 6667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,59.5 + pos: 48.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8387 + - type: WarpPoint + location: Хирургия +- proto: DefaultStationBeaconTEG + entities: + - uid: 6668 components: - type: Transform - pos: 51.5,18.5 + pos: 46.5,82.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8388 + - type: WarpPoint + location: Выход в космос +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 6669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,22.5 + pos: 79.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8389 + - type: NavMapBeacon + text: Телекомы + - type: WarpPoint + location: Телекомы +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 6670 components: - type: Transform - pos: 45.5,23.5 + pos: 67.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8390 + - type: WarpPoint + location: Общественная мастерская +- proto: DefaultStationBeaconVault + entities: + - uid: 6671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,38.5 + pos: 7.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8391 + - type: NavMapBeacon + text: Хранилище + - type: WarpPoint + location: Хранилище +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 6672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,66.5 + pos: 49.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8392 + - type: NavMapBeacon + text: Офис смотрителя + - type: WarpPoint + location: Офис смотрителя +- proto: Defibrillator + entities: + - uid: 6674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,72.5 - parent: 2 - - uid: 8393 + parent: 6673 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DefibrillatorCabinetFilled + entities: + - uid: 6676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,74.5 + rot: 1.5707963267948966 rad + pos: 34.5,-5.5 parent: 2 - - uid: 8394 + - uid: 6677 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,62.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,24.5 + pos: 38.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8397 + - uid: 6678 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,73.5 + pos: 59.5,23.5 parent: 2 - - uid: 8399 + - uid: 6679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,21.5 + pos: 36.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8400 + - uid: 6680 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,16.5 + pos: 51.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8401 + - uid: 6681 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,65.5 + pos: 46.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8403 + - uid: 6682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,60.5 + pos: 35.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8404 + - uid: 6683 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,82.5 + pos: 69.5,10.5 parent: 2 - - uid: 8405 +- proto: DefibrillatorOneHandedUnpowered + entities: + - uid: 22057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,70.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8406 + pos: -36.55481,34.361206 + parent: 16527 +- proto: DehydratedSpaceCarp + entities: + - uid: 6191 components: - type: Transform - pos: 57.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8407 + parent: 6190 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DeployableBarrier + entities: + - uid: 6684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,7.5 + pos: 54.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8408 + - uid: 6685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,7.5 + pos: 54.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8409 + - uid: 6686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,8.5 + pos: 55.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8410 + - uid: 6687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,9.5 + pos: 54.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8411 +- proto: DeskBell + entities: + - uid: 6688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,10.5 + pos: 7.524387,11.668822 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8412 + - uid: 6689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,11.5 + pos: 16.57862,21.47777 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8413 + - uid: 6690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,12.5 + pos: 51.43683,54.608246 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8414 + - uid: 22058 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8415 + pos: 31.431412,45.39496 + parent: 16527 +- proto: DiceBag + entities: + - uid: 6691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,14.5 + pos: 66.409805,64.4893 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8416 + - uid: 6692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,14.5 + pos: 18.485172,-18.157772 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8417 +- proto: DiseaseDiagnoser + entities: + - uid: 6693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,14.5 + pos: 90.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8418 + - uid: 6694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,14.5 + pos: 56.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8419 +- proto: DisposalBend + entities: + - uid: 6695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,14.5 + pos: 37.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8420 + - uid: 6696 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8421 - components: - - type: Transform - pos: 7.5,6.5 + pos: 36.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8422 + - uid: 6697 components: - type: Transform - pos: 7.5,5.5 + rot: 1.5707963267948966 rad + pos: 42.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8423 + - uid: 6698 components: - type: Transform - pos: 7.5,4.5 + pos: 48.5,60.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8424 + - uid: 6699 components: - type: Transform - pos: 7.5,3.5 + rot: -1.5707963267948966 rad + pos: 57.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8425 + - uid: 6700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 + pos: 47.5,74.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8426 + - uid: 6701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 + pos: 52.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8427 + - uid: 6702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,13.5 + rot: 3.141592653589793 rad + pos: 47.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8428 + - uid: 6703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,13.5 + rot: 3.141592653589793 rad + pos: 6.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8429 + - uid: 6704 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,13.5 + pos: 6.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8430 + - uid: 6705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,13.5 + rot: -1.5707963267948966 rad + pos: 9.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8431 + - uid: 6706 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,13.5 + pos: 9.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8432 + - uid: 6707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,13.5 + pos: 18.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8433 + - uid: 6708 components: - type: Transform - pos: 9.5,9.5 + rot: 3.141592653589793 rad + pos: 41.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8434 + - uid: 6709 components: - type: Transform - pos: 9.5,10.5 + rot: 3.141592653589793 rad + pos: 64.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8435 + - uid: 6710 components: - type: Transform - pos: 9.5,11.5 + pos: 53.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8436 + - uid: 6711 components: - type: Transform - pos: 9.5,12.5 + rot: 3.141592653589793 rad + pos: 53.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8437 + - uid: 6712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,8.5 + pos: 55.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8438 + - uid: 6713 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,8.5 + pos: 55.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8439 + - uid: 6714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,8.5 + rot: 1.5707963267948966 rad + pos: 49.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8440 + - uid: 6715 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,3.5 + pos: 49.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8441 + - uid: 6716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,4.5 + rot: 1.5707963267948966 rad + pos: 47.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8442 + - uid: 6717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 + rot: -1.5707963267948966 rad + pos: 47.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8443 + - uid: 6718 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,6.5 + pos: 3.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8444 + - uid: 6719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,7.5 + pos: 3.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8445 + - uid: 6720 components: - type: Transform - pos: 9.5,14.5 + rot: 1.5707963267948966 rad + pos: 1.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8446 + - uid: 6725 components: - type: Transform - pos: 15.5,10.5 + rot: 1.5707963267948966 rad + pos: 2.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8447 + - uid: 6726 components: - type: Transform - pos: 15.5,11.5 + rot: 3.141592653589793 rad + pos: 20.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8448 + - uid: 6727 components: - type: Transform - pos: 15.5,12.5 + pos: 22.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8449 + - uid: 6728 components: - type: Transform - pos: 14.5,10.5 + rot: 3.141592653589793 rad + pos: 21.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8450 + - uid: 6729 components: - type: Transform - pos: 14.5,11.5 + rot: 3.141592653589793 rad + pos: 22.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8451 + - uid: 6730 components: - type: Transform - pos: 14.5,12.5 + pos: 30.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8452 + - uid: 6731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,25.5 + rot: 3.141592653589793 rad + pos: 27.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8453 + - uid: 6732 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,25.5 + pos: 45.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8454 + - uid: 6733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,25.5 + rot: 3.141592653589793 rad + pos: 41.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8455 + - uid: 6734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,25.5 + pos: 41.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8456 + - uid: 6735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,25.5 + rot: 3.141592653589793 rad + pos: 37.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8457 + - uid: 6736 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,22.5 + pos: 32.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8458 + - uid: 6737 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,23.5 + pos: 12.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8459 + - uid: 6740 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,24.5 + pos: 46.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8460 + - uid: 6741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,24.5 + pos: 47.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8461 + - uid: 6742 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,23.5 + pos: 36.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8462 + - uid: 6743 components: - type: Transform - pos: 20.5,22.5 + rot: 1.5707963267948966 rad + pos: 9.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8463 + - uid: 6744 components: - type: Transform - pos: 20.5,23.5 + pos: 12.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8464 + - uid: 6745 components: - type: Transform - pos: 20.5,24.5 + rot: 1.5707963267948966 rad + pos: 10.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8465 + - uid: 6746 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,18.5 + pos: 10.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8466 + - uid: 6747 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,19.5 + rot: -1.5707963267948966 rad + pos: 14.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8467 + - uid: 6748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,20.5 + rot: -1.5707963267948966 rad + pos: 66.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8468 + - uid: 6749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,21.5 + rot: 1.5707963267948966 rad + pos: 71.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8469 + - uid: 6750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,19.5 + rot: -1.5707963267948966 rad + pos: 72.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8470 + - uid: 6751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,20.5 + rot: -1.5707963267948966 rad + pos: 68.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8471 + - uid: 6752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,17.5 + rot: 1.5707963267948966 rad + pos: 68.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8472 + - uid: 6753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,18.5 + rot: -1.5707963267948966 rad + pos: 71.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8473 + - uid: 6754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,19.5 + pos: 22.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8474 + - uid: 6755 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,20.5 + pos: 50.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8475 + - uid: 6756 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,21.5 + pos: 33.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8476 + - uid: 6757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,25.5 + rot: 3.141592653589793 rad + pos: 48.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8477 + - uid: 6758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,25.5 + pos: 33.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8478 + - uid: 6759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,25.5 + pos: 45.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8479 + - uid: 6760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,25.5 + pos: 52.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8480 + - uid: 6761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,25.5 + rot: 3.141592653589793 rad + pos: 52.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8481 + - uid: 6762 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,25.5 + pos: 22.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8482 + - uid: 7613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,25.5 + pos: 36.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8483 + - uid: 8308 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,18.5 + pos: 26.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8485 + - uid: 21549 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,21.5 + pos: 35.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8486 + - uid: 21644 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,22.5 + pos: 35.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8487 + - uid: 22059 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8488 + pos: -13.5,-0.5 + parent: 16527 + - uid: 22060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8489 + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 16527 + - uid: 22061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8490 + pos: 14.5,7.5 + parent: 16527 + - uid: 22062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8491 + pos: 13.5,8.5 + parent: 16527 + - uid: 22063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8492 + pos: 12.5,9.5 + parent: 16527 + - uid: 22064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8493 + pos: 11.5,10.5 + parent: 16527 + - uid: 22065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8494 + rot: 1.5707963267948966 rad + pos: -13.5,7.5 + parent: 16527 + - uid: 22066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8495 + rot: 1.5707963267948966 rad + pos: -12.5,8.5 + parent: 16527 + - uid: 22067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8496 + rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 16527 + - uid: 22068 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8497 + pos: -12.5,7.5 + parent: 16527 + - uid: 22069 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8498 + pos: -11.5,8.5 + parent: 16527 + - uid: 22070 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8499 + pos: -10.5,9.5 + parent: 16527 + - uid: 22071 components: - type: Transform - pos: 19.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8500 + rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 16527 + - uid: 22072 components: - type: Transform - pos: 19.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8501 + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 16527 + - uid: 22073 components: - type: Transform - pos: 19.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8502 + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 16527 + - uid: 22074 components: - type: Transform - pos: 19.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8503 + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 16527 + - uid: 22075 components: - type: Transform - pos: 19.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8504 + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 16527 + - uid: 22076 components: - type: Transform - pos: 19.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8505 + rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 16527 + - uid: 22077 components: - type: Transform - pos: 19.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8506 + pos: 1.5,14.5 + parent: 16527 + - uid: 22078 components: - type: Transform - pos: 19.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8507 + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 16527 + - uid: 22079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8508 + pos: -15.5,9.5 + parent: 16527 + - uid: 22080 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8509 + pos: -14.5,10.5 + parent: 16527 + - uid: 22081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8510 + rot: 1.5707963267948966 rad + pos: -15.5,10.5 + parent: 16527 + - uid: 22082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 16527 + - uid: 22083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,20.5 + parent: 16527 + - uid: 22084 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8511 + pos: -8.5,15.5 + parent: 16527 + - uid: 22085 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8512 + pos: 5.5,42.5 + parent: 16527 + - uid: 22086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8513 + rot: 3.141592653589793 rad + pos: 1.5,45.5 + parent: 16527 +- proto: DisposalJunction + entities: + - uid: 6174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,4.5 + rot: -1.5707963267948966 rad + pos: 17.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8514 + - uid: 6765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,4.5 + pos: 51.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8515 + - uid: 6766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,4.5 + rot: 3.141592653589793 rad + pos: 17.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8516 + - uid: 6767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,4.5 + rot: -1.5707963267948966 rad + pos: 20.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8517 + - uid: 6768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,4.5 + rot: -1.5707963267948966 rad + pos: 21.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8518 + - uid: 6769 components: - type: Transform - pos: 21.5,7.5 + rot: -1.5707963267948966 rad + pos: 26.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8519 + - uid: 6771 components: - type: Transform - pos: 21.5,6.5 + pos: 12.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8520 + - uid: 6772 components: - type: Transform - pos: 21.5,5.5 + pos: 12.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8521 + - uid: 6773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,4.5 + pos: 12.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8522 + - uid: 6774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,4.5 + pos: 12.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8523 + - uid: 6776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,4.5 + rot: 1.5707963267948966 rad + pos: 21.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8524 + - uid: 6777 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,3.5 + pos: 32.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8525 + - uid: 6778 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,2.5 + pos: 32.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8526 + - uid: 6779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,1.5 + rot: -1.5707963267948966 rad + pos: 66.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8527 + - uid: 6780 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,0.5 + pos: 36.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8528 + - uid: 6781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-0.5 + pos: 71.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8529 + - uid: 6782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-0.5 + rot: -1.5707963267948966 rad + pos: 36.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8530 + - uid: 22087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8531 + pos: -7.5,10.5 + parent: 16527 +- proto: DisposalJunctionFlipped + entities: + - uid: 4980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-0.5 + pos: 17.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8532 + - uid: 6784 components: - type: Transform - pos: 22.5,-3.5 + rot: 3.141592653589793 rad + pos: 6.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8533 + - uid: 6785 components: - type: Transform - pos: 22.5,-4.5 + rot: 1.5707963267948966 rad + pos: 51.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8534 + - uid: 6786 components: - type: Transform - pos: 22.5,-5.5 + rot: -1.5707963267948966 rad + pos: 46.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8535 + - uid: 6787 components: - type: Transform - pos: 22.5,-6.5 + rot: -1.5707963267948966 rad + pos: 40.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8537 + - uid: 6788 components: - type: Transform - pos: 22.5,-8.5 + pos: 12.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8538 + - uid: 6789 components: - type: Transform - pos: 22.5,-9.5 + pos: 12.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8539 + - uid: 6790 components: - type: Transform - pos: 22.5,-10.5 + pos: 12.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8540 + - uid: 6792 components: - type: Transform - pos: 22.5,-11.5 + rot: 3.141592653589793 rad + pos: 12.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8541 + - uid: 6793 components: - type: Transform - pos: 22.5,-12.5 + rot: 3.141592653589793 rad + pos: 22.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8542 + - uid: 6794 components: - type: Transform - pos: 22.5,-13.5 + rot: 3.141592653589793 rad + pos: 27.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8543 + - uid: 6795 components: - type: Transform - pos: 22.5,-14.5 + rot: -1.5707963267948966 rad + pos: 32.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8544 + - uid: 6796 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-2.5 + pos: 41.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8545 + - uid: 6797 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-2.5 + pos: 50.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8546 + - uid: 6798 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-2.5 + pos: 27.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8547 + - uid: 6799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,5.5 + pos: 51.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8548 + - uid: 6800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,5.5 + pos: 71.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8549 + - uid: 6801 components: - type: Transform - pos: 20.5,7.5 + pos: 71.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8550 + - uid: 6802 components: - type: Transform - pos: 20.5,6.5 + rot: -1.5707963267948966 rad + pos: 17.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8551 + - uid: 7319 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,5.5 + pos: 49.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8552 + - uid: 7562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,5.5 + pos: 36.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8553 + - uid: 21647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,5.5 + pos: 26.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8554 + - uid: 22088 + components: + - type: Transform + pos: 0.5,48.5 + parent: 16527 + - uid: 22089 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8555 + pos: 8.5,10.5 + parent: 16527 + - uid: 22090 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8556 + pos: 0.5,16.5 + parent: 16527 + - uid: 22091 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,5.5 + pos: -10.5,15.5 + parent: 16527 + - uid: 22092 + components: + - type: Transform + pos: -8.5,16.5 + parent: 16527 +- proto: DisposalMachineFrame + entities: + - uid: 6803 + components: + - type: Transform + pos: 27.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8557 + - uid: 22093 + components: + - type: Transform + pos: 35.5,48.5 + parent: 16527 + - uid: 22094 + components: + - type: Transform + pos: -7.5,8.5 + parent: 16527 + - uid: 22095 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 16527 + - uid: 22096 + components: + - type: Transform + pos: -10.5,13.5 + parent: 16527 + - uid: 22097 + components: + - type: Transform + pos: 7.5,58.5 + parent: 16527 + - uid: 22098 + components: + - type: Transform + pos: -1.5,52.5 + parent: 16527 + - uid: 22099 + components: + - type: Transform + pos: -10.5,64.5 + parent: 16527 + - uid: 22100 + components: + - type: Transform + pos: -11.5,53.5 + parent: 16527 +- proto: DisposalPipe + entities: + - uid: 2297 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,4.5 + pos: 26.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8558 + - uid: 2298 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,3.5 + pos: 26.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8559 + - uid: 2302 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,2.5 + pos: 26.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8560 + - uid: 2303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,1.5 + pos: 26.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8561 + - uid: 2375 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-2.5 + pos: 26.5,50.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8562 + - uid: 2395 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-4.5 + pos: 26.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8563 + - uid: 3644 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-5.5 + pos: 17.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8564 + - uid: 3645 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-6.5 + pos: 17.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8565 + - uid: 3646 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 + rot: -1.5707963267948966 rad + pos: 18.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8566 + - uid: 4981 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-8.5 + pos: 26.5,41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8567 + - uid: 4982 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-9.5 + pos: 26.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8568 + - uid: 4983 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-10.5 + pos: 26.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8570 + - uid: 6149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 2 + - uid: 6220 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-12.5 + pos: 17.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8571 + - uid: 6263 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-13.5 + pos: 17.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8572 + - uid: 6437 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 6804 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-14.5 + pos: 17.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8573 + - uid: 6805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 + rot: 3.141592653589793 rad + pos: 17.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8574 + - uid: 6806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 + rot: 3.141592653589793 rad + pos: 47.5,62.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8575 + - uid: 6807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-3.5 + pos: 36.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8576 + - uid: 6808 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-3.5 + pos: 51.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8577 + - uid: 6809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-1.5 + pos: 36.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8578 + - uid: 6810 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-0.5 + pos: 36.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8579 + - uid: 6811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,0.5 + pos: 45.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8580 + - uid: 6812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,0.5 + pos: 36.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8581 + - uid: 6813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,0.5 + rot: 3.141592653589793 rad + pos: 14.5,64.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8582 + - uid: 6814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,0.5 + pos: 48.5,58.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8583 + - uid: 6815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,35.5 + pos: 48.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8584 + - uid: 6816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,50.5 + pos: 49.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8585 + - uid: 6817 components: - type: Transform - pos: 43.5,-0.5 + rot: -1.5707963267948966 rad + pos: 50.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8586 + - uid: 6818 components: - type: Transform - pos: 43.5,2.5 + rot: -1.5707963267948966 rad + pos: 57.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8587 + - uid: 6819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,0.5 + pos: 47.5,66.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8588 + - uid: 6820 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-0.5 + pos: 47.5,68.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8589 + - uid: 6821 components: - type: Transform - pos: 43.5,3.5 + pos: 47.5,69.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8590 + - uid: 6822 components: - type: Transform - pos: 43.5,0.5 + pos: 47.5,70.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8591 + - uid: 6823 components: - type: Transform - pos: 45.5,1.5 + pos: 47.5,71.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8592 + - uid: 6824 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,4.5 + pos: 47.5,72.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8593 + - uid: 6825 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,5.5 + pos: 47.5,67.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8594 + - uid: 6826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-7.5 + pos: 47.5,73.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8595 + - uid: 6827 components: - type: Transform - pos: 38.5,7.5 + pos: 48.5,59.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8596 + - uid: 6828 components: - type: Transform - pos: 38.5,6.5 + pos: 47.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8597 + - uid: 6829 components: - type: Transform - pos: 38.5,5.5 + rot: 1.5707963267948966 rad + pos: 48.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8598 + - uid: 6830 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,4.5 + pos: 19.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8599 + - uid: 6831 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 6832 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,4.5 + pos: 35.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8600 + - uid: 6833 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,4.5 + pos: 54.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8601 + - uid: 6834 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,6.5 + rot: 1.5707963267948966 rad + pos: 4.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8602 + - uid: 6835 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,5.5 + rot: 1.5707963267948966 rad + pos: 5.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8603 + - uid: 6836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,4.5 + pos: 6.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8604 + - uid: 6837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-4.5 + pos: 6.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8605 + - uid: 6838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-2.5 + pos: 6.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8606 + - uid: 6839 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-1.5 + pos: 6.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8607 + - uid: 6840 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-0.5 + pos: 6.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8608 + - uid: 6841 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,0.5 + pos: 6.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8609 + - uid: 6842 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,1.5 + rot: 1.5707963267948966 rad + pos: 7.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8610 + - uid: 6843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,2.5 + rot: 1.5707963267948966 rad + pos: 8.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8611 + - uid: 6844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,6.5 + pos: 9.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8612 + - uid: 6845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,5.5 + pos: 9.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8613 + - uid: 6846 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,4.5 + pos: 9.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8614 + - uid: 6847 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,3.5 + pos: 10.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8615 + - uid: 6848 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,3.5 + pos: 11.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8616 + - uid: 6849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,3.5 + pos: 9.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8617 + - uid: 6850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,3.5 + pos: 64.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8618 + - uid: 6851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,3.5 + pos: 53.5,50.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8619 + - uid: 6852 components: - type: Transform - pos: 48.5,-8.5 + pos: 53.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8620 + - uid: 6853 components: - type: Transform - pos: 48.5,-7.5 + pos: 53.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8621 + - uid: 6854 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,3.5 + pos: 5.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8622 + - uid: 6855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-6.5 + rot: 1.5707963267948966 rad + pos: 6.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8623 + - uid: 6856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,26.5 + rot: 1.5707963267948966 rad + pos: 7.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8624 + - uid: 6857 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,4.5 + pos: 8.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8625 + - uid: 6858 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,4.5 + pos: 9.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8626 + - uid: 6859 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,4.5 + pos: 10.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8632 + - uid: 6860 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,4.5 + pos: 11.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8633 + - uid: 6861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,4.5 + rot: -1.5707963267948966 rad + pos: 52.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8634 + - uid: 6862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,4.5 + rot: -1.5707963267948966 rad + pos: 54.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8635 + - uid: 6863 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,7.5 + pos: 55.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8636 + - uid: 6864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,6.5 + rot: -1.5707963267948966 rad + pos: 54.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8637 + - uid: 6865 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,15.5 + pos: 53.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8638 + - uid: 6866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,5.5 + rot: -1.5707963267948966 rad + pos: 52.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8639 + - uid: 6867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 + rot: -1.5707963267948966 rad + pos: 51.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8640 + - uid: 6868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,5.5 + rot: -1.5707963267948966 rad + pos: 50.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8641 + - uid: 6869 components: - type: Transform - pos: 40.5,6.5 + rot: 3.141592653589793 rad + pos: 49.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8642 + - uid: 6870 components: - type: Transform - pos: 40.5,5.5 + rot: 3.141592653589793 rad + pos: 49.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8643 + - uid: 6871 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,6.5 + pos: 49.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8644 + - uid: 6872 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,5.5 + pos: 49.5,41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8645 + - uid: 6873 components: - type: Transform - pos: 52.5,6.5 + rot: 1.5707963267948966 rad + pos: 48.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8646 + - uid: 6874 components: - type: Transform - pos: 52.5,5.5 + rot: -1.5707963267948966 rad + pos: 45.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8647 + - uid: 6875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-2.5 + rot: -1.5707963267948966 rad + pos: 44.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8648 + - uid: 6876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-1.5 + rot: -1.5707963267948966 rad + pos: 43.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8649 + - uid: 6877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-0.5 + rot: -1.5707963267948966 rad + pos: 42.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8650 + - uid: 6878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,0.5 + rot: -1.5707963267948966 rad + pos: 41.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8651 + - uid: 6879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,1.5 + rot: -1.5707963267948966 rad + pos: 39.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8652 + - uid: 6880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,2.5 + rot: -1.5707963267948966 rad + pos: 38.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8653 + - uid: 6881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,3.5 + rot: -1.5707963267948966 rad + pos: 37.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8654 + - uid: 6882 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-8.5 + rot: -1.5707963267948966 rad + pos: 35.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8655 + - uid: 6883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-7.5 + rot: -1.5707963267948966 rad + pos: 34.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8656 + - uid: 6884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-6.5 + rot: -1.5707963267948966 rad + pos: 33.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8657 + - uid: 6885 components: - type: Transform - pos: 37.5,-3.5 + rot: -1.5707963267948966 rad + pos: 32.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8658 + - uid: 6886 components: - type: Transform - pos: 43.5,1.5 + rot: -1.5707963267948966 rad + pos: 31.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8659 + - uid: 6887 components: - type: Transform - pos: 52.5,20.5 + rot: -1.5707963267948966 rad + pos: 30.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8660 + - uid: 6888 components: - type: Transform - pos: 51.5,23.5 + rot: -1.5707963267948966 rad + pos: 29.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8661 + - uid: 6889 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,27.5 + pos: 28.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8662 + - uid: 6890 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,27.5 + pos: 27.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8663 + - uid: 6891 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,27.5 + pos: 25.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8664 + - uid: 6892 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,27.5 + pos: 24.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8665 + - uid: 6893 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,27.5 + pos: 23.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8666 + - uid: 6894 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,27.5 + pos: 22.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8667 + - uid: 6895 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,27.5 + pos: 21.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8668 + - uid: 6896 components: - type: Transform - pos: 51.5,37.5 + rot: -1.5707963267948966 rad + pos: 19.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8669 + - uid: 6897 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,31.5 + pos: 18.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8670 + - uid: 6899 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,31.5 + pos: 16.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8671 + - uid: 6900 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,31.5 + pos: 15.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8672 + - uid: 6901 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,31.5 + pos: 14.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8673 + - uid: 6902 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,31.5 + pos: 13.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8674 + - uid: 6903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,31.5 + rot: 3.141592653589793 rad + pos: 12.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8675 + - uid: 6904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,35.5 + rot: 3.141592653589793 rad + pos: 12.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8676 + - uid: 6905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,35.5 + rot: 3.141592653589793 rad + pos: 12.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8677 + - uid: 6906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,35.5 + rot: 3.141592653589793 rad + pos: 12.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8678 + - uid: 6907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,35.5 + rot: 3.141592653589793 rad + pos: 12.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8679 + - uid: 6908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,35.5 + rot: 3.141592653589793 rad + pos: 12.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8680 + - uid: 6909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,23.5 + rot: 3.141592653589793 rad + pos: 12.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8681 + - uid: 6910 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,37.5 + pos: 12.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8682 + - uid: 6911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,23.5 + rot: 3.141592653589793 rad + pos: 12.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8683 + - uid: 6912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,35.5 + rot: 3.141592653589793 rad + pos: 12.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8684 + - uid: 6913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,35.5 + rot: 3.141592653589793 rad + pos: 12.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8685 + - uid: 6914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,35.5 + rot: 3.141592653589793 rad + pos: 12.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8686 + - uid: 6915 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,35.5 + pos: 4.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8687 + - uid: 6916 components: - type: Transform - pos: 46.5,34.5 + pos: 3.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8688 + - uid: 6917 components: - type: Transform - pos: 46.5,32.5 + pos: 3.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8689 + - uid: 6918 components: - type: Transform - pos: 46.5,30.5 + pos: 3.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8690 + - uid: 6919 components: - type: Transform - pos: 46.5,29.5 + rot: -1.5707963267948966 rad + pos: 2.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8691 + - uid: 6920 components: - type: Transform - pos: 46.5,28.5 + rot: 3.141592653589793 rad + pos: 1.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8692 + - uid: 6921 components: - type: Transform - pos: 46.5,26.5 + rot: 3.141592653589793 rad + pos: 1.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8693 + - uid: 6926 components: - type: Transform - pos: 46.5,25.5 + pos: 26.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8694 + - uid: 6940 components: - type: Transform - pos: 57.5,21.5 + rot: -1.5707963267948966 rad + pos: 3.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8695 + - uid: 6941 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,38.5 + pos: 4.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8696 + - uid: 6942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,24.5 + rot: -1.5707963267948966 rad + pos: 5.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8697 + - uid: 6943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,24.5 + rot: -1.5707963267948966 rad + pos: 6.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8698 + - uid: 6944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,24.5 + rot: -1.5707963267948966 rad + pos: 7.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8699 + - uid: 6945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,24.5 + rot: -1.5707963267948966 rad + pos: 8.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8700 + - uid: 6946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,24.5 + rot: -1.5707963267948966 rad + pos: 9.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8701 + - uid: 6947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,23.5 + rot: -1.5707963267948966 rad + pos: 10.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8702 + - uid: 6948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,19.5 + rot: -1.5707963267948966 rad + pos: 11.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8703 + - uid: 6949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,19.5 + rot: -1.5707963267948966 rad + pos: 18.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8704 + - uid: 6950 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,36.5 + pos: 17.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8705 + - uid: 6951 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,36.5 + pos: 16.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8706 + - uid: 6952 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,36.5 + pos: 15.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8707 + - uid: 6953 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,36.5 + pos: 14.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8708 + - uid: 6954 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,36.5 + pos: 13.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8709 + - uid: 6955 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,34.5 + pos: 13.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8710 + - uid: 6956 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,34.5 + pos: 14.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8711 + - uid: 6957 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,34.5 + pos: 15.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8712 + - uid: 6958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,35.5 + rot: -1.5707963267948966 rad + pos: 16.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8713 + - uid: 6959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,30.5 + rot: -1.5707963267948966 rad + pos: 17.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8714 + - uid: 6960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,30.5 + rot: 3.141592653589793 rad + pos: 12.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8715 + - uid: 6961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,30.5 + rot: 3.141592653589793 rad + pos: 12.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8716 + - uid: 6962 components: - type: Transform - pos: 45.5,33.5 + rot: 3.141592653589793 rad + pos: 12.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8717 + - uid: 6963 components: - type: Transform - pos: 45.5,31.5 + rot: -1.5707963267948966 rad + pos: 23.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8718 + - uid: 6964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,30.5 + rot: 3.141592653589793 rad + pos: 22.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8719 + - uid: 6965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,30.5 + rot: 3.141592653589793 rad + pos: 22.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8720 + - uid: 6966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,30.5 + rot: 3.141592653589793 rad + pos: 22.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8721 + - uid: 6967 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,29.5 + pos: 22.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8722 + - uid: 6968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,28.5 + rot: 3.141592653589793 rad + pos: 22.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8723 + - uid: 6969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,28.5 + rot: 3.141592653589793 rad + pos: 22.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8724 + - uid: 6970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,28.5 + rot: 3.141592653589793 rad + pos: 22.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8725 + - uid: 6971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,28.5 + rot: 3.141592653589793 rad + pos: 22.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8726 + - uid: 6972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,28.5 + rot: 3.141592653589793 rad + pos: 22.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8727 + - uid: 6973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,28.5 + rot: 3.141592653589793 rad + pos: 22.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8728 + - uid: 6974 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,28.5 + pos: 21.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8729 + - uid: 6975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,25.5 + pos: 22.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8730 + - uid: 6976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,23.5 + pos: 22.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8731 + - uid: 6977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 + pos: 22.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8732 + - uid: 6978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,27.5 + pos: 21.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8733 + - uid: 6979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,26.5 + pos: 21.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8734 + - uid: 6980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,25.5 + pos: 21.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8735 + - uid: 6981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,24.5 + pos: 20.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8736 + - uid: 6982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,22.5 + pos: 20.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8737 + - uid: 6983 components: - type: Transform - pos: 12.5,26.5 + pos: 20.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8738 + - uid: 6984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,22.5 + rot: -1.5707963267948966 rad + pos: 22.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8739 + - uid: 6985 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,22.5 + pos: 23.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8740 + - uid: 6986 components: - type: Transform - pos: 13.5,27.5 + rot: -1.5707963267948966 rad + pos: 24.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8741 + - uid: 6987 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,22.5 + pos: 25.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8742 + - uid: 6988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,18.5 + rot: -1.5707963267948966 rad + pos: 26.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8743 + - uid: 6989 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,19.5 + pos: 30.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8744 + - uid: 6990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,17.5 + rot: 1.5707963267948966 rad + pos: 29.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8745 + - uid: 6991 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,69.5 + pos: 28.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8746 + - uid: 6992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,22.5 + pos: 27.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8747 + - uid: 6993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,71.5 + pos: 27.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 8748 + - uid: 6994 components: - type: Transform - pos: 28.5,24.5 + pos: 27.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8749 + - uid: 6995 components: - type: Transform - pos: 12.5,33.5 + pos: 27.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8750 + - uid: 6996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,26.5 + pos: 27.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8751 + - uid: 6997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,20.5 + pos: 27.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8752 + - uid: 6998 components: - type: Transform - pos: 29.5,22.5 + pos: 27.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8753 + - uid: 6999 components: - type: Transform - pos: 42.5,27.5 + pos: 27.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8754 + - uid: 7000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,70.5 + pos: 27.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8755 + - uid: 7001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 + pos: 27.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8756 + - uid: 7002 components: - type: Transform - pos: 44.5,13.5 + rot: 1.5707963267948966 rad + pos: 54.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8757 + - uid: 7003 components: - type: Transform - pos: 47.5,13.5 + rot: 1.5707963267948966 rad + pos: 53.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8758 + - uid: 7004 components: - type: Transform - pos: 64.5,13.5 + pos: 50.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8759 + - uid: 7005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,19.5 + pos: 50.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8760 + - uid: 7006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,27.5 + pos: 50.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8761 + - uid: 7007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,13.5 + pos: 50.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8762 + - uid: 7008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,14.5 + pos: 50.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8763 + - uid: 7009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,57.5 + pos: 50.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8764 + - uid: 7010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,16.5 + pos: 50.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8765 + - uid: 7011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,16.5 + pos: 50.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8766 + - uid: 7012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,16.5 + pos: 50.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8767 + - uid: 7013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,16.5 + pos: 37.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8768 + - uid: 7014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,16.5 + pos: 47.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8769 + - uid: 7015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,17.5 + rot: 3.141592653589793 rad + pos: 41.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8770 + - uid: 7016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,17.5 + rot: 3.141592653589793 rad + pos: 41.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8771 + - uid: 7017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,62.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8775 - components: - - type: Transform - pos: 79.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,86.5 + rot: 1.5707963267948966 rad + pos: 49.5,13.5 parent: 2 - - uid: 8777 + - uid: 7018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-2.5 + rot: 1.5707963267948966 rad + pos: 48.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8778 + - uid: 7019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-6.5 + rot: 1.5707963267948966 rad + pos: 47.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8779 + - uid: 7020 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,73.5 + pos: 46.5,13.5 parent: 2 - - uid: 8780 + - uid: 7021 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,73.5 + pos: 45.5,13.5 parent: 2 - - uid: 8781 + - uid: 7022 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,73.5 + pos: 44.5,13.5 parent: 2 - - uid: 8782 + - uid: 7023 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,75.5 + pos: 43.5,13.5 parent: 2 - - uid: 8783 + - uid: 7024 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,75.5 + pos: 42.5,13.5 parent: 2 - - uid: 8784 + - uid: 7025 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,75.5 + pos: 40.5,13.5 parent: 2 - - uid: 8785 + - uid: 7026 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,77.5 + pos: 39.5,13.5 parent: 2 - - uid: 8786 + - uid: 7027 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,77.5 + pos: 38.5,13.5 parent: 2 - - uid: 8787 + - uid: 7028 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,77.5 + pos: 37.5,13.5 parent: 2 - - uid: 8788 + - uid: 7029 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,79.5 + pos: 36.5,13.5 parent: 2 - - uid: 8789 + - uid: 7030 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,79.5 + pos: 35.5,13.5 parent: 2 - - uid: 8790 + - uid: 7031 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,79.5 + pos: 34.5,13.5 parent: 2 - - uid: 8791 + - uid: 7032 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,81.5 + pos: 33.5,13.5 parent: 2 - - uid: 8792 + - uid: 7033 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,81.5 + pos: 31.5,13.5 parent: 2 - - uid: 8793 + - uid: 7034 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,81.5 + pos: 30.5,13.5 parent: 2 - - uid: 8794 + - uid: 7035 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,83.5 + pos: 29.5,13.5 parent: 2 - - uid: 8795 + - uid: 7036 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,83.5 + pos: 28.5,13.5 parent: 2 - - uid: 8796 + - uid: 7037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,83.5 + rot: -1.5707963267948966 rad + pos: 38.5,-10.5 parent: 2 - - uid: 8797 + - uid: 7038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,72.5 + rot: -1.5707963267948966 rad + pos: 39.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 8798 + - uid: 7039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,72.5 + rot: -1.5707963267948966 rad + pos: 40.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 8799 + - uid: 7040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,72.5 + rot: 3.141592653589793 rad + pos: 41.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 8800 + - uid: 7041 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,72.5 + pos: 42.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 8801 + - uid: 7042 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,74.5 + pos: 43.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#00BFFFFF' - - uid: 8802 + - uid: 7043 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,74.5 + pos: 44.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#00BFFFFF' - - uid: 8803 + - uid: 7044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,74.5 + pos: 45.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#00BFFFFF' - - uid: 8804 + - uid: 7045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,74.5 + pos: 32.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#00BFFFFF' - - uid: 8805 + - uid: 7046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,76.5 + pos: 32.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#FFC0CBFF' - - uid: 8806 + - uid: 7047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,76.5 + pos: 32.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#FFC0CBFF' - - uid: 8807 + - uid: 7048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,76.5 + pos: 32.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FFC0CBFF' - - uid: 8808 + - uid: 7049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,76.5 + pos: 32.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FFC0CBFF' - - uid: 8809 + - uid: 7050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,78.5 + pos: 32.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 8810 + - uid: 7051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,78.5 + pos: 32.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 8811 + - uid: 7052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,78.5 + pos: 32.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 8812 + - uid: 7053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,78.5 + pos: 32.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 8813 + - uid: 7054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,80.5 + pos: 32.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF6347FF' - - uid: 8814 + - uid: 7055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,80.5 + pos: 32.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF6347FF' - - uid: 8815 + - uid: 7056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,80.5 + pos: 32.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF6347FF' - - uid: 8816 + - uid: 7057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,80.5 + pos: 32.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF6347FF' - - uid: 8817 + - uid: 7058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,82.5 + pos: 32.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#00FF7FFF' - - uid: 8818 + - uid: 7059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,82.5 + pos: 32.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#00FF7FFF' - - uid: 8819 + - uid: 7060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,82.5 + pos: 32.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#00FF7FFF' - - uid: 8820 + - uid: 7061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,82.5 + pos: 32.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#00FF7FFF' - - uid: 8821 + - uid: 7062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,54.5 + pos: 32.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8822 + - uid: 7063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,23.5 + rot: -1.5707963267948966 rad + pos: 26.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8823 + - uid: 7064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,71.5 + rot: -1.5707963267948966 rad + pos: 25.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 8824 + - uid: 7065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,72.5 + rot: -1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8825 + - uid: 7066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,72.5 + rot: -1.5707963267948966 rad + pos: 23.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8826 + - uid: 7067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,72.5 + rot: -1.5707963267948966 rad + pos: 22.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8827 + - uid: 7068 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,71.5 + pos: 20.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8828 + - uid: 7069 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,71.5 + pos: 19.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8829 + - uid: 7070 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,71.5 + pos: 18.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8830 + - uid: 7071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,72.5 + rot: -1.5707963267948966 rad + pos: 16.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8831 + - uid: 7072 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,71.5 + rot: -1.5707963267948966 rad + pos: 15.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8832 + - uid: 7073 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,70.5 + rot: -1.5707963267948966 rad + pos: 14.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8833 + - uid: 7074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,56.5 + rot: -1.5707963267948966 rad + pos: 13.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8834 + - uid: 7075 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,72.5 + pos: 37.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8835 + - uid: 7076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,73.5 + rot: -1.5707963267948966 rad + pos: 36.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8836 + - uid: 7077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,74.5 + rot: -1.5707963267948966 rad + pos: 35.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8837 + - uid: 7078 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,73.5 + rot: -1.5707963267948966 rad + pos: 34.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8838 + - uid: 7079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,74.5 + rot: -1.5707963267948966 rad + pos: 33.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8839 + - uid: 7080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,53.5 + rot: -1.5707963267948966 rad + pos: 51.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8840 + - uid: 7081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,63.5 + rot: -1.5707963267948966 rad + pos: 52.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8841 + - uid: 7082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,62.5 + rot: -1.5707963267948966 rad + pos: 53.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8842 + - uid: 7083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,66.5 + rot: -1.5707963267948966 rad + pos: 54.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8843 + - uid: 7084 components: - type: Transform - pos: 39.5,65.5 + rot: -1.5707963267948966 rad + pos: 55.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8844 + - uid: 7085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,64.5 + rot: -1.5707963267948966 rad + pos: 56.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8845 + - uid: 7086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,21.5 + rot: -1.5707963267948966 rad + pos: 57.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8846 + - uid: 7087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,59.5 + rot: -1.5707963267948966 rad + pos: 58.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8847 + - uid: 7088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,53.5 + rot: -1.5707963267948966 rad + pos: 59.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8848 + - uid: 7089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,53.5 + rot: -1.5707963267948966 rad + pos: 60.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8849 + - uid: 7090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,53.5 + rot: -1.5707963267948966 rad + pos: 61.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8850 + - uid: 7091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,55.5 + rot: -1.5707963267948966 rad + pos: 62.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8851 + - uid: 7092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,66.5 + rot: -1.5707963267948966 rad + pos: 63.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8852 + - uid: 7093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,66.5 + rot: -1.5707963267948966 rad + pos: 64.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8853 + - uid: 7094 components: - type: Transform - pos: 57.5,52.5 + rot: -1.5707963267948966 rad + pos: 65.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8854 + - uid: 7095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,64.5 + rot: 3.141592653589793 rad + pos: 66.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8855 + - uid: 7096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,52.5 + rot: -1.5707963267948966 rad + pos: 40.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8857 + - uid: 7097 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,52.5 + pos: 39.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8858 + - uid: 7098 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,52.5 + pos: 38.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8859 + - uid: 7099 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,52.5 + pos: 37.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8860 + - uid: 7103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,52.5 + rot: 3.141592653589793 rad + pos: 46.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8861 + - uid: 7104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,52.5 + rot: 3.141592653589793 rad + pos: 36.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8862 + - uid: 7105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,52.5 + rot: 3.141592653589793 rad + pos: 36.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8863 + - uid: 7106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,52.5 + rot: 3.141592653589793 rad + pos: 36.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8864 + - uid: 7107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,52.5 + rot: 3.141592653589793 rad + pos: 36.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8865 + - uid: 7108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,52.5 + rot: 1.5707963267948966 rad + pos: 50.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8866 + - uid: 7109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,52.5 + rot: 3.141592653589793 rad + pos: 47.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8867 + - uid: 7110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,52.5 + rot: 3.141592653589793 rad + pos: 47.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8868 + - uid: 7111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,53.5 + rot: 1.5707963267948966 rad + pos: 46.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8869 + - uid: 7112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,53.5 + rot: 1.5707963267948966 rad + pos: 45.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8870 + - uid: 7113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,53.5 + rot: 1.5707963267948966 rad + pos: 44.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8871 + - uid: 7114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,53.5 + rot: 1.5707963267948966 rad + pos: 43.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8872 + - uid: 7115 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,32.5 + pos: 42.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8873 + - uid: 7116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,53.5 + rot: 1.5707963267948966 rad + pos: 41.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8874 + - uid: 7117 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,53.5 + pos: 40.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8875 + - uid: 7118 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,53.5 + pos: 39.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8876 + - uid: 7119 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,53.5 + pos: 38.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8877 + - uid: 7120 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,53.5 + pos: 37.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8878 + - uid: 7121 components: - type: Transform - pos: 80.5,58.5 + rot: 3.141592653589793 rad + pos: 36.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8879 + - uid: 7122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,83.5 + rot: 3.141592653589793 rad + pos: 36.5,28.5 parent: 2 - - uid: 8880 + - uid: 7123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,56.5 + rot: 3.141592653589793 rad + pos: 36.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8881 + - uid: 7124 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.5,60.5 + pos: 36.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8882 + - uid: 7125 components: - type: Transform - pos: 80.5,57.5 + rot: 3.141592653589793 rad + pos: 36.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8883 + - uid: 7126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,56.5 + rot: 1.5707963267948966 rad + pos: 10.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8884 + - uid: 7127 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,50.5 + pos: 11.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8885 + - uid: 7128 components: - type: Transform - pos: 62.5,52.5 + pos: 14.5,82.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8886 + - uid: 7129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,71.5 + pos: 14.5,81.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 8887 + - uid: 7130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,56.5 + pos: 14.5,80.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8888 + - uid: 7131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,60.5 + pos: 14.5,79.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8889 + - uid: 7132 components: - type: Transform - pos: 46.5,52.5 + pos: 14.5,78.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8890 + - uid: 7133 components: - type: Transform - pos: 46.5,51.5 + pos: 14.5,77.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8891 + - uid: 7134 components: - type: Transform - pos: 46.5,50.5 + pos: 14.5,76.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8892 + - uid: 7135 components: - type: Transform - pos: 46.5,48.5 + pos: 14.5,75.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8893 + - uid: 7136 components: - type: Transform - pos: 46.5,47.5 + pos: 14.5,74.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8894 + - uid: 7137 components: - type: Transform - pos: 46.5,46.5 + pos: 14.5,73.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8895 + - uid: 7138 components: - type: Transform - pos: 46.5,45.5 + pos: 14.5,72.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8896 + - uid: 7139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,44.5 + pos: 14.5,71.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8897 + - uid: 7140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,44.5 + pos: 14.5,70.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8898 + - uid: 7141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,44.5 + pos: 14.5,69.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8899 + - uid: 7142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,44.5 + pos: 14.5,68.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8901 + - uid: 7143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,44.5 + pos: 14.5,67.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8902 + - uid: 7144 + components: + - type: Transform + pos: 14.5,66.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + pos: 14.5,65.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: 14.5,63.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + pos: 14.5,62.5 + parent: 2 + - uid: 7148 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,44.5 + pos: 13.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8903 + - uid: 7149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,44.5 + pos: 12.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8904 + - uid: 7150 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,44.5 + pos: 11.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8905 + - uid: 7151 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,43.5 + pos: 10.5,60.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8906 + - uid: 7152 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,42.5 + pos: 10.5,59.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8907 + - uid: 7153 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,40.5 + pos: 10.5,58.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8908 + - uid: 7154 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,39.5 + pos: 10.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8909 + - uid: 7155 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,38.5 + pos: 10.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8910 + - uid: 7156 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,37.5 + pos: 11.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8911 + - uid: 7157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,37.5 + pos: 12.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8912 + - uid: 7158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,37.5 + pos: 12.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8913 + - uid: 7159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,37.5 + pos: 12.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8914 + - uid: 7160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,37.5 + pos: 12.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8915 + - uid: 7161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,37.5 + pos: 12.5,50.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8916 + - uid: 7162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,37.5 + pos: 12.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8917 + - uid: 7163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,37.5 + pos: 12.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8919 + - uid: 7164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,37.5 + pos: 12.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8920 + - uid: 7165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,37.5 + pos: 12.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8921 + - uid: 7166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,37.5 + pos: 12.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8922 + - uid: 7167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,37.5 + pos: 12.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8924 + - uid: 7168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,37.5 + pos: 12.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8925 + - uid: 7169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,37.5 + pos: 12.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8926 + - uid: 7170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,37.5 + pos: 12.5,41.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8927 + - uid: 7171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,37.5 + pos: 12.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8928 + - uid: 7172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,37.5 + pos: 12.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8929 + - uid: 7173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,37.5 + pos: 12.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8930 + - uid: 7174 components: - type: Transform - pos: 12.5,36.5 + rot: 3.141592653589793 rad + pos: 51.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8931 + - uid: 7175 components: - type: Transform - pos: 12.5,35.5 + rot: 3.141592653589793 rad + pos: 51.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8932 + - uid: 7176 components: - type: Transform - pos: 12.5,34.5 + rot: 3.141592653589793 rad + pos: 51.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8933 + - uid: 7177 components: - type: Transform - pos: 12.5,31.5 + rot: 3.141592653589793 rad + pos: 47.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8934 + - uid: 7178 components: - type: Transform - pos: 12.5,29.5 + rot: -1.5707963267948966 rad + pos: 53.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8935 + - uid: 7179 components: - type: Transform - pos: 12.5,28.5 + rot: -1.5707963267948966 rad + pos: 52.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8936 + - uid: 7180 components: - type: Transform - pos: 12.5,27.5 + pos: 66.5,58.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8937 + - uid: 7181 components: - type: Transform - pos: 12.5,24.5 + pos: 66.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8938 + - uid: 7182 components: - type: Transform - pos: 12.5,22.5 + pos: 66.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8939 + - uid: 7183 components: - type: Transform - pos: 12.5,20.5 + pos: 66.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8940 + - uid: 7184 components: - type: Transform - pos: 12.5,19.5 + pos: 66.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8941 + - uid: 7185 components: - type: Transform - pos: 12.5,18.5 + pos: 66.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8942 + - uid: 7186 components: - type: Transform - pos: 12.5,17.5 + rot: -1.5707963267948966 rad + pos: 65.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8943 + - uid: 7187 components: - type: Transform - pos: 12.5,16.5 + rot: -1.5707963267948966 rad + pos: 64.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8944 + - uid: 7188 components: - type: Transform - pos: 12.5,15.5 + rot: -1.5707963267948966 rad + pos: 63.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8945 + - uid: 7189 components: - type: Transform - pos: 12.5,14.5 + rot: -1.5707963267948966 rad + pos: 62.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8946 + - uid: 7190 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,13.5 + pos: 61.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8947 + - uid: 7191 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,13.5 + pos: 60.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8948 + - uid: 7192 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,13.5 + pos: 59.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8949 + - uid: 7193 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,13.5 + pos: 58.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8950 + - uid: 7194 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,13.5 + pos: 56.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8951 + - uid: 7195 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,13.5 + pos: 55.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8952 + - uid: 7196 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,13.5 + pos: 82.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8953 + - uid: 7197 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,13.5 + pos: 81.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8954 + - uid: 7198 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,13.5 + pos: 80.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8955 + - uid: 7199 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,13.5 + pos: 79.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8956 + - uid: 7200 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,13.5 + pos: 78.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8957 + - uid: 7201 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,13.5 + pos: 77.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8958 + - uid: 7202 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,13.5 + pos: 76.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8959 + - uid: 7203 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,13.5 + pos: 75.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8960 + - uid: 7204 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,13.5 + pos: 74.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8961 + - uid: 7205 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,13.5 + pos: 73.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8962 + - uid: 7206 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,13.5 + pos: 72.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8963 + - uid: 7207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,64.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8964 + - uid: 7208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,63.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8965 + - uid: 7209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,62.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8966 + - uid: 7210 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,14.5 + pos: 71.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8967 + - uid: 7211 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,15.5 + pos: 71.5,60.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8968 + - uid: 7212 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,16.5 + pos: 71.5,59.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8969 + - uid: 7213 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,17.5 + pos: 71.5,58.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8970 + - uid: 7214 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,18.5 + pos: 71.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8971 + - uid: 7215 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,20.5 + pos: 71.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8972 + - uid: 7216 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,21.5 + pos: 71.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8973 + - uid: 7217 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,23.5 + pos: 71.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8974 + - uid: 7218 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,24.5 + pos: 71.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8975 + - uid: 7219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,26.5 + rot: 1.5707963267948966 rad + pos: 65.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8976 + - uid: 7220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,27.5 + rot: 1.5707963267948966 rad + pos: 66.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8977 + - uid: 7221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,29.5 + rot: 1.5707963267948966 rad + pos: 67.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8978 + - uid: 7222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,30.5 + rot: -1.5707963267948966 rad + pos: 69.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8979 + - uid: 7223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,31.5 + rot: -1.5707963267948966 rad + pos: 70.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8980 + - uid: 7224 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,32.5 + pos: 71.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8981 + - uid: 7225 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,33.5 + pos: 71.5,50.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8982 + - uid: 7226 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,34.5 + pos: 71.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8983 + - uid: 7227 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,35.5 + pos: 71.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8984 + - uid: 7228 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,36.5 + pos: 71.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8985 + - uid: 7229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8986 + - uid: 7230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,13.5 + rot: -1.5707963267948966 rad + pos: 81.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8987 + - uid: 7231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,13.5 + rot: -1.5707963267948966 rad + pos: 80.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8988 + - uid: 7232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,13.5 + rot: -1.5707963267948966 rad + pos: 79.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8989 + - uid: 7233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,13.5 + rot: -1.5707963267948966 rad + pos: 78.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8990 + - uid: 7234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,13.5 + rot: -1.5707963267948966 rad + pos: 77.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8991 + - uid: 7235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,13.5 + rot: -1.5707963267948966 rad + pos: 76.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8992 + - uid: 7236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,13.5 + rot: -1.5707963267948966 rad + pos: 75.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8993 + - uid: 7237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,13.5 + rot: -1.5707963267948966 rad + pos: 74.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8994 + - uid: 7238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,13.5 + rot: -1.5707963267948966 rad + pos: 73.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8995 + - uid: 7239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,13.5 + rot: -1.5707963267948966 rad + pos: 72.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8996 + - uid: 7240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8997 + - uid: 7241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8998 + - uid: 7242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 8999 + - uid: 7243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9000 + - uid: 7244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,41.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9001 + - uid: 7245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9002 + - uid: 7246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9003 + - uid: 7247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,13.5 + rot: 3.141592653589793 rad + pos: 71.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9004 + - uid: 7248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,13.5 + pos: 71.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9005 + - uid: 7249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,13.5 + pos: 71.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9006 + - uid: 7250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,13.5 + pos: 71.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9007 + - uid: 7251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,13.5 + pos: 71.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9008 + - uid: 7252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,13.5 + pos: 71.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9009 + - uid: 7253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,13.5 + pos: 71.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9010 + - uid: 7254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,13.5 + pos: 71.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9011 + - uid: 7255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,13.5 + pos: 71.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9012 + - uid: 7256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,13.5 + pos: 71.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9013 + - uid: 7257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,13.5 + pos: 71.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9014 + - uid: 7258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,13.5 + pos: 71.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9015 + - uid: 7259 components: - type: Transform - pos: 71.5,14.5 + pos: 71.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9016 + - uid: 7260 components: - type: Transform - pos: 71.5,15.5 + pos: 71.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9017 + - uid: 7261 components: - type: Transform - pos: 71.5,17.5 + pos: 71.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9018 + - uid: 7262 components: - type: Transform - pos: 71.5,19.5 + pos: 71.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9019 + - uid: 7263 components: - type: Transform pos: 71.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9020 + - uid: 7264 components: - type: Transform - pos: 71.5,21.5 + pos: 71.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9021 + - uid: 7265 components: - type: Transform - pos: 71.5,22.5 + pos: 71.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9022 + - uid: 7266 components: - type: Transform - pos: 71.5,23.5 + pos: 71.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9023 + - uid: 7267 components: - type: Transform - pos: 71.5,24.5 + pos: 71.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9024 + - uid: 7268 components: - type: Transform - pos: 71.5,25.5 + pos: 71.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9025 + - uid: 7269 components: - type: Transform - pos: 71.5,27.5 + pos: 71.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9026 + - uid: 7270 components: - type: Transform - pos: 71.5,28.5 + rot: -1.5707963267948966 rad + pos: 70.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9027 + - uid: 7271 components: - type: Transform - pos: 71.5,29.5 + rot: -1.5707963267948966 rad + pos: 69.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9028 + - uid: 7272 components: - type: Transform - pos: 71.5,31.5 + rot: -1.5707963267948966 rad + pos: 68.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9029 + - uid: 7273 components: - type: Transform - pos: 71.5,32.5 + rot: -1.5707963267948966 rad + pos: 67.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9030 + - uid: 7274 components: - type: Transform - pos: 71.5,33.5 + rot: -1.5707963267948966 rad + pos: 34.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9031 + - uid: 7275 components: - type: Transform - pos: 71.5,34.5 + pos: 36.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9032 + - uid: 7276 components: - type: Transform - pos: 71.5,35.5 + pos: 52.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9033 + - uid: 7277 components: - type: Transform - pos: 71.5,36.5 + rot: 3.141592653589793 rad + pos: 52.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9034 + - uid: 7278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,37.5 + rot: 1.5707963267948966 rad + pos: 51.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9035 + - uid: 7279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,37.5 + rot: 3.141592653589793 rad + pos: 49.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9036 + - uid: 7280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,37.5 + pos: 45.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9037 + - uid: 7281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,37.5 + pos: 45.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9038 + - uid: 7282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,37.5 + rot: 3.141592653589793 rad + pos: 52.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9039 + - uid: 7283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,37.5 + rot: 1.5707963267948966 rad + pos: 43.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9040 + - uid: 7284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 79.5,37.5 + pos: 44.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9041 + - uid: 7285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,37.5 + rot: 3.141592653589793 rad + pos: 52.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9042 + - uid: 7286 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,38.5 + pos: 47.5,63.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9043 + - uid: 7287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,39.5 + pos: 22.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9044 + - uid: 7288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,40.5 + pos: 36.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9045 + - uid: 7289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,41.5 + rot: -1.5707963267948966 rad + pos: 56.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9046 + - uid: 7290 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,42.5 + rot: -1.5707963267948966 rad + pos: 54.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9047 + - uid: 7291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,43.5 + pos: 57.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9048 + - uid: 7292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,44.5 + rot: -1.5707963267948966 rad + pos: 53.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9049 + - uid: 7293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,45.5 + rot: -1.5707963267948966 rad + pos: 55.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9050 + - uid: 7294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,46.5 + pos: 57.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9051 + - uid: 7295 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,47.5 + pos: 47.5,64.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9052 + - uid: 7296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,48.5 + pos: 22.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9053 + - uid: 7297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,49.5 + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9054 + - uid: 7298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,38.5 + pos: 22.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9055 + - uid: 7299 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,41.5 + pos: 17.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9056 + - uid: 7300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,42.5 + pos: 57.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9057 + - uid: 7301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,43.5 + pos: 57.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9058 + - uid: 7302 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,44.5 + pos: 47.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9059 + - uid: 7303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,45.5 + pos: 22.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9060 + - uid: 7304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,47.5 + pos: 22.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9061 + - uid: 7305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,49.5 + pos: 22.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9062 + - uid: 7306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,50.5 + pos: 22.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9063 + - uid: 7310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,51.5 + pos: 22.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9064 + - uid: 7360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,53.5 + rot: 3.141592653589793 rad + pos: 49.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9065 + - uid: 7513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,52.5 + rot: 3.141592653589793 rad + pos: 52.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9066 + - uid: 7567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,52.5 + pos: 26.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9067 + - uid: 7568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,52.5 + pos: 36.5,41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9068 + - uid: 7569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,52.5 + pos: 36.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9069 + - uid: 7593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,52.5 + pos: 36.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9070 + - uid: 7652 components: - type: Transform - pos: 71.5,54.5 + rot: 3.141592653589793 rad + pos: 17.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9071 + - uid: 7746 components: - type: Transform - pos: 71.5,55.5 + rot: -1.5707963267948966 rad + pos: 28.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9072 + - uid: 7785 components: - type: Transform - pos: 71.5,56.5 + rot: 3.141592653589793 rad + pos: 17.5,44.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9073 + - uid: 7786 components: - type: Transform - pos: 71.5,58.5 + rot: 3.141592653589793 rad + pos: 17.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9074 + - uid: 7787 components: - type: Transform - pos: 71.5,59.5 + rot: 3.141592653589793 rad + pos: 17.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9075 + - uid: 7788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,60.5 + pos: 36.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9076 + - uid: 8209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,60.5 + rot: 3.141592653589793 rad + pos: 17.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9077 + - uid: 8268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,60.5 + rot: 1.5707963267948966 rad + pos: 27.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9078 + - uid: 10681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,60.5 + rot: 3.141592653589793 rad + pos: 26.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9079 + - uid: 11796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,60.5 + rot: 3.141592653589793 rad + pos: 26.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9080 + - uid: 11859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,60.5 + rot: 3.141592653589793 rad + pos: 26.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9081 + - uid: 12303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,60.5 + rot: 3.141592653589793 rad + pos: 17.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9082 + - uid: 12407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,60.5 + rot: 3.141592653589793 rad + pos: 26.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9083 + - uid: 15698 components: - type: Transform - pos: 71.5,61.5 + rot: 3.141592653589793 rad + pos: 17.5,41.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9084 + - uid: 16178 components: - type: Transform - pos: 71.5,62.5 + rot: 3.141592653589793 rad + pos: 22.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9085 + - uid: 16270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-33.5 + parent: 2 + - uid: 16273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-32.5 + parent: 2 + - uid: 16353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-31.5 + parent: 2 + - uid: 21185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,50.5 + parent: 2 + - uid: 21611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,55.5 + parent: 2 + - uid: 21612 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 + - uid: 21627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,55.5 + parent: 2 + - uid: 21635 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,53.5 + pos: 30.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9086 + - uid: 21636 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,53.5 + pos: 31.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9087 + - uid: 21637 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,53.5 + pos: 32.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9088 + - uid: 21638 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,53.5 + pos: 33.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9089 + - uid: 21639 components: - type: Transform rot: -1.5707963267948966 rad - pos: 70.5,53.5 + pos: 34.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9090 + - uid: 21640 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,42.5 + pos: 27.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9091 + - uid: 21641 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,32.5 + pos: 30.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9092 + - uid: 21643 components: - type: Transform - pos: 30.5,13.5 + rot: -1.5707963267948966 rad + pos: 29.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9093 + - uid: 22101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,48.5 + parent: 16527 + - uid: 22102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,48.5 + parent: 16527 + - uid: 22103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,48.5 + parent: 16527 + - uid: 22104 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9094 + pos: -6.5,10.5 + parent: 16527 + - uid: 22105 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9095 + pos: -5.5,10.5 + parent: 16527 + - uid: 22106 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9096 + pos: -4.5,10.5 + parent: 16527 + - uid: 22107 components: - type: Transform - pos: 47.5,51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9097 + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 16527 + - uid: 22108 components: - type: Transform - pos: 47.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9098 + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 16527 + - uid: 22109 components: - type: Transform - pos: 47.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9099 + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 16527 + - uid: 22110 components: - type: Transform - pos: 47.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9100 + rot: 1.5707963267948966 rad + pos: 7.5,10.5 + parent: 16527 + - uid: 22111 components: - type: Transform - pos: 47.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9101 + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 16527 + - uid: 22112 components: - type: Transform - pos: 47.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9102 + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 16527 + - uid: 22113 components: - type: Transform - pos: 47.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9103 + rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 16527 + - uid: 22114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9104 + rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 16527 + - uid: 22115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9105 + rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 16527 + - uid: 22116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9106 + pos: 8.5,9.5 + parent: 16527 + - uid: 22117 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9107 + pos: -11.5,-0.5 + parent: 16527 + - uid: 22118 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9108 + pos: -12.5,-0.5 + parent: 16527 + - uid: 22119 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9109 + pos: 12.5,-0.5 + parent: 16527 + - uid: 22120 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9110 + pos: 13.5,-0.5 + parent: 16527 + - uid: 22121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9112 + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 16527 + - uid: 22122 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9113 + pos: -13.5,1.5 + parent: 16527 + - uid: 22123 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9114 + pos: -13.5,2.5 + parent: 16527 + - uid: 22124 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9115 + pos: -13.5,3.5 + parent: 16527 + - uid: 22125 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9116 + pos: -13.5,4.5 + parent: 16527 + - uid: 22126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9117 + rot: 3.141592653589793 rad + pos: -13.5,5.5 + parent: 16527 + - uid: 22127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9118 + rot: 3.141592653589793 rad + pos: -13.5,6.5 + parent: 16527 + - uid: 22128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9119 + rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 16527 + - uid: 22129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9120 + rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 16527 + - uid: 22130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9121 + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 16527 + - uid: 22131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9123 + rot: 3.141592653589793 rad + pos: 14.5,3.5 + parent: 16527 + - uid: 22132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 16527 + - uid: 22133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,1.5 + parent: 16527 + - uid: 22134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 16527 + - uid: 22135 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9124 + pos: 10.5,10.5 + parent: 16527 + - uid: 22136 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9125 + pos: 9.5,10.5 + parent: 16527 + - uid: 22137 components: - type: Transform - pos: 37.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9126 + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 16527 + - uid: 22138 components: - type: Transform - pos: 37.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9127 + rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 16527 + - uid: 22139 components: - type: Transform - pos: 37.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9128 + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 16527 + - uid: 22140 components: - type: Transform - pos: 37.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9129 + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 16527 + - uid: 22141 components: - type: Transform - pos: 37.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9130 + rot: -1.5707963267948966 rad + pos: -16.5,9.5 + parent: 16527 + - uid: 22142 components: - type: Transform - pos: 37.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9131 + rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 16527 + - uid: 22143 components: - type: Transform - pos: 37.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9132 + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 16527 + - uid: 22144 components: - type: Transform - pos: 37.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9133 + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 16527 + - uid: 22147 components: - type: Transform - pos: 37.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9134 + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 16527 + - uid: 22148 components: - type: Transform - pos: 37.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9135 + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 16527 + - uid: 22149 components: - type: Transform - pos: 37.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9136 + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 16527 + - uid: 22150 components: - type: Transform - pos: 37.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9137 + rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 16527 + - uid: 22151 components: - type: Transform - pos: 37.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9138 + rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 16527 + - uid: 22152 components: - type: Transform - pos: 37.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9139 + rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 16527 + - uid: 22153 components: - type: Transform - pos: 37.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9140 + pos: -14.5,13.5 + parent: 16527 + - uid: 22154 components: - type: Transform - pos: 37.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9141 + pos: -14.5,12.5 + parent: 16527 + - uid: 22155 components: - type: Transform - pos: 37.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9142 + pos: -14.5,11.5 + parent: 16527 + - uid: 22156 components: - type: Transform - pos: 37.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9143 + pos: -14.5,14.5 + parent: 16527 + - uid: 22157 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9144 + pos: -13.5,15.5 + parent: 16527 + - uid: 22158 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9145 + pos: -12.5,15.5 + parent: 16527 + - uid: 22159 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9146 + pos: -11.5,15.5 + parent: 16527 + - uid: 22160 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9147 + pos: -9.5,15.5 + parent: 16527 + - uid: 22161 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9148 + pos: -7.5,20.5 + parent: 16527 + - uid: 22162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9149 + rot: 3.141592653589793 rad + pos: -8.5,19.5 + parent: 16527 + - uid: 22163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9150 + rot: 3.141592653589793 rad + pos: -8.5,18.5 + parent: 16527 + - uid: 22164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9151 + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 16527 + - uid: 22165 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9152 + pos: -7.5,16.5 + parent: 16527 + - uid: 22166 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9153 + pos: -6.5,16.5 + parent: 16527 + - uid: 22167 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9154 + pos: -5.5,16.5 + parent: 16527 + - uid: 22168 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9155 + pos: -4.5,16.5 + parent: 16527 + - uid: 22169 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9156 + pos: -3.5,16.5 + parent: 16527 + - uid: 22170 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9157 + pos: -2.5,16.5 + parent: 16527 + - uid: 22171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9158 + rot: 1.5707963267948966 rad + pos: 8.5,55.5 + parent: 16527 + - uid: 22172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9159 + rot: 1.5707963267948966 rad + pos: 8.5,58.5 + parent: 16527 + - uid: 22173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9160 + rot: 1.5707963267948966 rad + pos: 8.5,61.5 + parent: 16527 + - uid: 22174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9161 + pos: 0.5,44.5 + parent: 16527 + - uid: 22175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9162 + pos: 0.5,43.5 + parent: 16527 + - uid: 22176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9163 + pos: 0.5,42.5 + parent: 16527 + - uid: 22177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9164 + pos: 0.5,41.5 + parent: 16527 + - uid: 22178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9165 + pos: 0.5,40.5 + parent: 16527 + - uid: 22179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9166 + pos: 0.5,39.5 + parent: 16527 + - uid: 22180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9167 + pos: 0.5,38.5 + parent: 16527 + - uid: 22181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9168 + pos: 0.5,37.5 + parent: 16527 + - uid: 22182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9169 + pos: 0.5,36.5 + parent: 16527 + - uid: 22183 + components: + - type: Transform + pos: 0.5,35.5 + parent: 16527 + - uid: 22184 + components: + - type: Transform + pos: 0.5,45.5 + parent: 16527 + - uid: 22185 + components: + - type: Transform + pos: 0.5,46.5 + parent: 16527 + - uid: 22186 + components: + - type: Transform + pos: 0.5,47.5 + parent: 16527 + - uid: 22187 + components: + - type: Transform + pos: 0.5,49.5 + parent: 16527 + - uid: 22188 + components: + - type: Transform + pos: 0.5,50.5 + parent: 16527 + - uid: 22189 + components: + - type: Transform + pos: 0.5,51.5 + parent: 16527 + - uid: 22190 + components: + - type: Transform + pos: 0.5,52.5 + parent: 16527 + - uid: 22191 + components: + - type: Transform + pos: 0.5,53.5 + parent: 16527 + - uid: 22192 + components: + - type: Transform + pos: 0.5,54.5 + parent: 16527 + - uid: 22193 + components: + - type: Transform + pos: 0.5,55.5 + parent: 16527 + - uid: 22194 + components: + - type: Transform + pos: 0.5,56.5 + parent: 16527 + - uid: 22195 + components: + - type: Transform + pos: 0.5,57.5 + parent: 16527 + - uid: 22196 + components: + - type: Transform + pos: 0.5,58.5 + parent: 16527 + - uid: 22197 + components: + - type: Transform + pos: 0.5,59.5 + parent: 16527 + - uid: 22198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,42.5 + parent: 16527 + - uid: 22199 + components: + - type: Transform + pos: 5.5,43.5 + parent: 16527 + - uid: 22200 + components: + - type: Transform + pos: 5.5,44.5 + parent: 16527 + - uid: 22201 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9170 + pos: 4.5,45.5 + parent: 16527 + - uid: 22202 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9171 + pos: 3.5,45.5 + parent: 16527 +- proto: DisposalPipeBroken + entities: + - uid: 22203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9172 + pos: -7.5,9.5 + parent: 16527 + - uid: 22204 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9173 + pos: -7.5,9.5 + parent: 16527 + - uid: 22205 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9174 + pos: -10.5,14.5 + parent: 16527 + - uid: 22226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9175 + pos: -10.5,14.5 + parent: 16527 + - uid: 22228 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9176 + pos: 0.5,34.5 + parent: 16527 + - uid: 22233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9177 + rot: 1.5707963267948966 rad + pos: 3.5,42.5 + parent: 16527 + - uid: 22234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,45.5 + parent: 16527 + - uid: 22241 + components: + - type: Transform + pos: 1.5,46.5 + parent: 16527 + - uid: 22321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,45.5 + parent: 16527 +- proto: DisposalTrunk + entities: + - uid: 3145 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,23.5 + pos: 22.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9178 + - uid: 6592 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,24.5 + pos: 49.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9179 + - uid: 7315 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,25.5 + pos: 42.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9180 + - uid: 7316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,26.5 + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9181 + - uid: 7317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,28.5 + rot: 1.5707963267948966 rad + pos: 46.5,74.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9182 + - uid: 7318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,29.5 + rot: -1.5707963267948966 rad + pos: 18.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9183 + - uid: 7320 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,30.5 + pos: 52.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9184 + - uid: 7321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,31.5 + pos: 20.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9185 + - uid: 7322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,33.5 + rot: -1.5707963267948966 rad + pos: 7.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9186 + - uid: 7323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,34.5 + rot: 1.5707963267948966 rad + pos: 3.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9187 + - uid: 7324 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,36.5 + pos: 22.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9188 + - uid: 7325 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,40.5 + pos: 18.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9191 + - uid: 7326 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,41.5 + rot: -1.5707963267948966 rad + pos: 55.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9192 + - uid: 7327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,42.5 + pos: 64.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9193 + - uid: 7328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,43.5 + rot: 1.5707963267948966 rad + pos: 50.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9194 + - uid: 7329 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,44.5 + pos: 21.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9195 + - uid: 7330 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,46.5 + pos: 1.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9196 + - uid: 7332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,47.5 + rot: 1.5707963267948966 rad + pos: 11.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9197 + - uid: 7333 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,48.5 + pos: 2.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9198 + - uid: 7334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,51.5 + rot: -1.5707963267948966 rad + pos: 24.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9199 + - uid: 7335 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,36.5 + pos: 20.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9200 + - uid: 7336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,36.5 + pos: 20.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9201 + - uid: 7337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,36.5 + rot: 3.141592653589793 rad + pos: 30.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9202 + - uid: 7338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,36.5 + rot: -1.5707963267948966 rad + pos: 38.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9203 + - uid: 7339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,36.5 + pos: 66.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9204 + - uid: 7341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,36.5 + rot: -1.5707963267948966 rad + pos: 41.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9205 + - uid: 7342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,36.5 + rot: -1.5707963267948966 rad + pos: 47.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9206 + - uid: 7343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,36.5 + rot: 3.141592653589793 rad + pos: 9.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9207 + - uid: 7344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,36.5 + pos: 14.5,83.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9208 + - uid: 7345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,36.5 + pos: 51.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9209 + - uid: 7346 components: - type: Transform - pos: 13.5,35.5 + pos: 66.5,59.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9210 + - uid: 7347 components: - type: Transform - pos: 13.5,34.5 + pos: 72.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9211 + - uid: 7348 components: - type: Transform - pos: 13.5,32.5 + rot: -1.5707963267948966 rad + pos: 83.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9212 + - uid: 7349 components: - type: Transform - pos: 13.5,31.5 + rot: -1.5707963267948966 rad + pos: 82.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9213 + - uid: 7350 components: - type: Transform - pos: 13.5,30.5 + rot: -1.5707963267948966 rad + pos: 42.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9214 + - uid: 7351 components: - type: Transform - pos: 13.5,28.5 + rot: -1.5707963267948966 rad + pos: 42.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9215 + - uid: 7352 components: - type: Transform - pos: 13.5,25.5 + rot: 3.141592653589793 rad + pos: 47.5,59.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9216 + - uid: 7353 components: - type: Transform - pos: 13.5,23.5 + pos: 57.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9217 + - uid: 7354 components: - type: Transform - pos: 13.5,21.5 + rot: 3.141592653589793 rad + pos: 17.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9218 + - uid: 7355 components: - type: Transform - pos: 13.5,20.5 + rot: -1.5707963267948966 rad + pos: 24.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9219 + - uid: 7356 components: - type: Transform - pos: 13.5,19.5 + rot: 1.5707963267948966 rad + pos: 52.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9220 + - uid: 7747 components: - type: Transform - pos: 13.5,18.5 + rot: 3.141592653589793 rad + pos: 35.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9221 + - uid: 7916 components: - type: Transform - pos: 13.5,17.5 + pos: 35.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9222 + - uid: 12347 components: - type: Transform - pos: 13.5,16.5 + rot: -1.5707963267948966 rad + pos: 19.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9223 + - uid: 14253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,14.5 + pos: 17.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9224 + - uid: 21642 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,14.5 + pos: 31.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9225 + - uid: 22420 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9226 + pos: 4.5,48.5 + parent: 16527 + - uid: 22421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9227 + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 16527 + - uid: 22422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9228 + rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 16527 + - uid: 22423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9229 + rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 16527 + - uid: 22424 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9230 + pos: -10.5,-0.5 + parent: 16527 + - uid: 22425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9231 + rot: 1.5707963267948966 rad + pos: -17.5,9.5 + parent: 16527 + - uid: 22426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9232 + rot: 3.141592653589793 rad + pos: -10.5,13.5 + parent: 16527 + - uid: 22427 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9233 + pos: -6.5,20.5 + parent: 16527 + - uid: 22428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9234 + rot: 1.5707963267948966 rad + pos: 7.5,58.5 + parent: 16527 + - uid: 22429 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9235 + pos: 9.5,58.5 + parent: 16527 + - uid: 22430 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9236 + pos: 9.5,61.5 + parent: 16527 + - uid: 22431 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9238 + pos: 9.5,55.5 + parent: 16527 + - uid: 22432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9239 + rot: 1.5707963267948966 rad + pos: 7.5,61.5 + parent: 16527 + - uid: 22433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9240 + rot: 1.5707963267948966 rad + pos: 7.5,55.5 + parent: 16527 + - uid: 22434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9241 + pos: 0.5,60.5 + parent: 16527 +- proto: DisposalUnit + entities: + - uid: 267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,14.5 + pos: 35.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9242 + - uid: 3140 components: + - type: MetaData + desc: Пневматическая установка для быстрого перемещения. + name: Гипертруба от ЦИИ - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,14.5 + pos: 22.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9243 + - uid: 6468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,14.5 + pos: 49.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9244 + - uid: 7358 components: - type: Transform - pos: 27.5,13.5 + pos: 46.5,74.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9245 + - uid: 7359 components: - type: Transform - pos: 27.5,12.5 + pos: 52.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9246 + - uid: 7361 components: - type: Transform - pos: 27.5,11.5 + pos: 3.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9247 + - type: DisposalUnit + powered: True + - uid: 7362 components: - type: Transform - pos: 27.5,10.5 + pos: 7.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9248 + - type: DisposalUnit + powered: True + - uid: 7363 components: - type: Transform - pos: 27.5,8.5 + pos: 24.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9249 + - type: DisposalUnit + powered: True + - uid: 7364 components: - type: Transform - pos: 27.5,7.5 + pos: 20.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9250 + - type: DisposalUnit + powered: True + - uid: 7365 components: - type: Transform - pos: 27.5,6.5 + pos: 55.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9251 + - uid: 7366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,36.5 + pos: 38.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9252 + - type: DisposalUnit + powered: True + - uid: 7368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,37.5 + pos: 41.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9253 + - type: DisposalUnit + powered: True + - uid: 7369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,24.5 + pos: 47.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9254 + - type: DisposalUnit + powered: True + - uid: 7370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,59.5 + pos: 72.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9255 + - type: DisposalUnit + powered: True + - uid: 7371 components: - type: Transform - pos: 70.5,59.5 + pos: 2.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9256 + - type: DisposalUnit + powered: True + - uid: 7372 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,62.5 + pos: 21.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9257 + - type: DisposalUnit + powered: True + - uid: 7373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,61.5 + pos: 11.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9258 + - type: DisposalUnit + powered: True + - uid: 7374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,60.5 + pos: 82.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9259 + - type: DisposalUnit + powered: True + - uid: 7376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,58.5 + pos: 18.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9260 + - uid: 7377 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,57.5 + pos: 50.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9261 + - type: DisposalUnit + powered: True + - uid: 7378 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,55.5 + pos: 66.5,59.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9262 + - type: DisposalUnit + powered: True + - uid: 7379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,54.5 + pos: 44.5,72.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9263 + - type: DisposalUnit + powered: True + - uid: 7380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,53.5 + pos: 51.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9264 + - type: DisposalUnit + powered: True + - uid: 7381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,53.5 + pos: 9.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9265 + - type: DisposalUnit + powered: True + - uid: 7382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,54.5 + pos: 83.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9266 + - type: DisposalUnit + powered: True + - uid: 7383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,55.5 + pos: 66.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9267 + - type: DisposalUnit + powered: True + - uid: 7384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,56.5 + pos: 64.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9268 + - uid: 7385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,57.5 + pos: 20.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9269 + - type: DisposalUnit + powered: True + - uid: 7386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,58.5 + pos: 30.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9270 + - type: DisposalUnit + powered: True + - uid: 7387 components: - type: Transform - pos: 81.5,53.5 + pos: 14.5,83.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9271 + - type: DisposalUnit + powered: True + - uid: 7388 components: - type: Transform - pos: 81.5,54.5 + pos: 42.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9272 + - uid: 7389 components: - type: Transform - pos: 81.5,55.5 + pos: 18.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9273 + - uid: 7390 components: - type: Transform - pos: 81.5,56.5 + pos: 42.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9274 + - uid: 7391 components: + - type: MetaData + desc: Пневматическая установка для быстрого перемещения. + name: Гипертруба к ЦИИ - type: Transform - pos: 81.5,57.5 + pos: 24.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9275 + - uid: 7392 components: - type: Transform - pos: 81.5,58.5 + pos: 37.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9276 + - uid: 7393 components: - type: Transform - pos: 81.5,59.5 + pos: 47.5,59.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9277 + - uid: 7395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,63.5 + pos: 20.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9278 + - uid: 7594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,63.5 + pos: 35.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9279 + - uid: 9956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,63.5 + pos: 31.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9280 + - uid: 21645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,63.5 + pos: 19.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9281 + - uid: 21646 components: - type: Transform - pos: 65.5,62.5 + pos: 17.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9282 + - uid: 22435 components: - type: Transform - pos: 65.5,60.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9283 + pos: 4.5,48.5 + parent: 16527 + - uid: 22436 components: - type: Transform - pos: 65.5,59.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9284 + pos: 8.5,8.5 + parent: 16527 + - uid: 22437 components: - type: Transform - pos: 65.5,58.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9285 + pos: -10.5,-0.5 + parent: 16527 + - uid: 22438 components: - type: Transform - pos: 65.5,57.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9286 + pos: -6.5,20.5 + parent: 16527 + - uid: 22439 components: - type: Transform - pos: 65.5,56.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9287 + pos: 11.5,30.5 + parent: 16527 + - uid: 22440 components: - type: Transform - pos: 65.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9288 + pos: 7.5,55.5 + parent: 16527 + - uid: 22441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,64.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9289 + pos: 7.5,61.5 + parent: 16527 + - uid: 22442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,64.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9290 + pos: 0.5,60.5 + parent: 16527 + - type: ContainerContainer + containers: + disposals: !type:Container + showEnts: False + occludes: True + ents: [] + stickers_container: !type:Container + showEnts: True + occludes: True + ents: [] +- proto: DisposalYJunction + entities: + - uid: 7396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,64.5 + rot: -1.5707963267948966 rad + pos: 12.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9291 + - uid: 7397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,64.5 + rot: -1.5707963267948966 rad + pos: 36.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9292 + - uid: 7398 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,64.5 + pos: 47.5,60.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9293 + - uid: 22443 components: - type: Transform - pos: 66.5,63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9294 + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 16527 + - uid: 22444 components: - type: Transform - pos: 66.5,61.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9295 + pos: 5.5,45.5 + parent: 16527 +- proto: DogBed + entities: + - uid: 7399 components: - type: Transform - pos: 66.5,60.5 + pos: 38.5,67.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9296 + - uid: 7400 components: - type: Transform - pos: 66.5,59.5 + pos: 44.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9297 + - uid: 7401 components: - type: Transform - pos: 66.5,58.5 + pos: 29.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9298 + - uid: 7402 components: - type: Transform - pos: 66.5,56.5 + pos: 19.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9299 + - uid: 12425 components: - type: Transform - pos: 66.5,55.5 + pos: 53.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9300 + - uid: 21583 components: - type: Transform - pos: 66.5,54.5 + pos: 43.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9301 + - uid: 21963 components: - type: Transform - pos: 66.5,53.5 + pos: 35.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9302 + - uid: 21964 components: - type: Transform - pos: 47.5,67.5 + pos: 36.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9303 +- proto: DoorElectronics + entities: + - uid: 7403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,68.5 + pos: 62.513855,48.03954 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9304 + - uid: 7404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,69.5 + pos: 62.49823,48.16454 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9305 +- proto: DoubleEmergencyOxygenTank + entities: + - uid: 6 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,70.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9306 + parent: 5 + - type: GasTank + toggleActionEntity: 7 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 7 + - type: InsideEntityStorage + - uid: 7406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9320 + parent: 7405 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9321 + parent: 7408 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9322 + parent: 7411 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9324 + parent: 7414 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9325 + parent: 7417 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9326 + parent: 7420 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9327 + parent: 7423 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Dresser + entities: + - uid: 1046 components: - type: Transform - pos: 15.5,52.5 + pos: 68.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9329 + - type: Storage + storedItems: + 1054: + position: 0,0 + _rotation: South + 1047: + position: 0,2 + _rotation: South + 1048: + position: 2,2 + _rotation: South + 1050: + position: 2,1 + _rotation: West + 1051: + position: 0,1 + _rotation: East + 1053: + position: 4,0 + _rotation: North + 1052: + position: 6,0 + _rotation: South + 1049: + position: 6,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1054 + - 1050 + - 1048 + - 1047 + - 1051 + - 1053 + - 1052 + - 1049 + - uid: 7426 components: - type: Transform - pos: 15.5,50.5 + pos: 3.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9335 + - uid: 22445 components: - type: Transform - pos: 17.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9336 + pos: -7.5,30.5 + parent: 16527 + - uid: 22446 components: - type: Transform - pos: 17.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9337 + pos: 17.5,23.5 + parent: 16527 + - uid: 22447 components: - type: Transform - pos: 17.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9338 + pos: 12.5,27.5 + parent: 16527 + - uid: 22448 components: - type: Transform - pos: 17.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9348 + pos: 11.5,22.5 + parent: 16527 + - uid: 22449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9349 + pos: -12.5,59.5 + parent: 16527 + - uid: 22450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9350 + pos: -17.5,56.5 + parent: 16527 +- proto: DresserCaptainFilled + entities: + - uid: 7427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,54.5 + pos: 25.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9351 +- proto: DresserChiefEngineerFilled + entities: + - uid: 7428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,54.5 + pos: 38.5,66.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9353 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 7429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,54.5 + pos: 47.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9354 +- proto: DresserFilled + entities: + - uid: 22451 components: - type: Transform - pos: 16.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9355 + pos: 16.5,26.5 + parent: 16527 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 7430 components: - type: Transform - pos: 16.5,52.5 + pos: 20.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9356 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 7431 components: - type: Transform - pos: 16.5,51.5 + pos: 50.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9357 +- proto: DresserQuarterMasterFilled + entities: + - uid: 7432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,39.5 + pos: 1.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9363 +- proto: DresserResearchDirectorFilled + entities: + - uid: 7433 components: - type: Transform - pos: 16.5,38.5 + pos: 15.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9364 +- proto: DresserWardenFilled + entities: + - uid: 7434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,33.5 + pos: 50.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9365 +- proto: Drill + entities: + - uid: 7435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,33.5 + pos: 50.411148,-9.275011 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9366 +- proto: DrinkAbsintheGlass + entities: + - uid: 5856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,33.5 + pos: 74.19161,3.6827223 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9367 +- proto: DrinkAleBottleFullGrowler + entities: + - uid: 9319 components: + - type: MetaData + name: бочонок магма-эля (эль) - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,33.5 + pos: 22.789206,55.810543 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9368 + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: Label + currentLabel: эль + - type: PressurizedSolution + sprayFizzinessThresholdRoll: 0.6346535 + - type: NameModifier + baseName: бочонок магма-эля + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 9339 +- proto: DrinkBeerBottleFull + entities: + - uid: 7437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,33.5 + pos: 59.866623,78.65698 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9369 + - uid: 7438 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,33.5 + pos: 35.842693,79.52922 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9370 + - uid: 7439 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,33.5 + pos: 35.248943,78.482346 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9371 + - uid: 7440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,33.5 + pos: 7.714418,3.7892158 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9372 + - uid: 7441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,18.5 + pos: 35.70207,78.263596 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9373 + - uid: 7442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,21.5 + pos: 75.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9374 + - uid: 7443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 + pos: 35.23332,77.701096 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9375 + - uid: 7444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,21.5 + pos: 92.26362,17.12997 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9376 + - uid: 7445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,21.5 + pos: 59.742218,78.55203 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9377 + - uid: 7446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,21.5 + pos: 59.844467,78.90257 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9378 + - uid: 13038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9379 + parent: 12994 + - type: Physics + canCollide: False + - uid: 13040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9380 + parent: 12994 + - type: Physics + canCollide: False + - uid: 13044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9381 + parent: 12994 + - type: Physics + canCollide: False + - uid: 13073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9382 + parent: 12994 + - type: Physics + canCollide: False + - uid: 13077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9383 + parent: 12994 + - type: Physics + canCollide: False + - uid: 13080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9384 + parent: 12994 + - type: Physics + canCollide: False + - uid: 13084 components: - type: Transform - pos: 29.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9385 + parent: 12994 + - type: Physics + canCollide: False + - uid: 13088 components: - type: Transform - pos: 29.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9386 + parent: 12994 + - type: Physics + canCollide: False + - uid: 13096 components: - type: Transform - pos: 29.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9387 + parent: 12994 + - type: Physics + canCollide: False + - uid: 13103 components: - type: Transform - pos: 29.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9388 + parent: 12994 + - type: Physics + canCollide: False + - uid: 13109 components: - type: Transform - pos: 29.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9389 + parent: 12994 + - type: Physics + canCollide: False + - uid: 13110 components: - type: Transform - pos: 29.5,7.5 + parent: 12994 + - type: Physics + canCollide: False + - uid: 21245 + components: + - type: Transform + pos: 24.273584,55.796165 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9390 + - uid: 22452 components: - type: Transform - pos: 29.5,6.5 + pos: 18.29185,-7.191003 + parent: 16527 + - uid: 22453 + components: + - type: Transform + pos: 33.5141,42.894836 + parent: 16527 +- proto: DrinkBeerCan + entities: + - uid: 13913 + components: + - type: Transform + pos: 52.01989,84.88411 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9391 + - uid: 21506 components: - type: Transform - pos: 29.5,5.5 + pos: 57.522854,-9.468282 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9392 + - uid: 21729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,4.5 + pos: 42.54088,52.84053 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9393 +- proto: DrinkBeerglass + entities: + - uid: 7447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,4.5 + pos: 81.47089,18.636118 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9394 + - uid: 9323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,4.5 + pos: 77.27494,4.3910556 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9395 +- proto: DrinkBeerGrowler + entities: + - uid: 22454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9396 + pos: -24.37648,38.907166 + parent: 16527 +- proto: DrinkBlueCuracaoBottleFull + entities: + - uid: 5753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,5.5 + pos: 24.599154,56.017517 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9397 +- proto: DrinkBottleBeer + entities: + - uid: 7448 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,5.5 + pos: 7.417543,3.6642156 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9398 + - uid: 22455 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9399 + pos: 32.74849,44.75421 + parent: 16527 + - uid: 22456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,5.5 + rot: -1.5707963267948966 rad + pos: 33.670334,43.66046 + parent: 16527 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 13803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.643322,-26.543358 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9400 +- proto: DrinkBottlePatron + entities: + - uid: 22457 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9401 + pos: 32.48654,52.5636 + parent: 16527 +- proto: DrinkBottleWhiskey + entities: + - uid: 7450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,28.5 + pos: 30.546007,63.074863 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9402 + - uid: 21244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,29.5 + pos: 24.755428,55.613873 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9403 +- proto: DrinkCampariBottleFull + entities: + - uid: 7451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,30.5 + pos: 6.568198,28.718761 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9404 +- proto: DrinkChampagneBottleFull + entities: + - uid: 7452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,31.5 + pos: 6.3717327,28.25535 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9405 +- proto: DrinkCoffee + entities: + - uid: 7453 components: + - type: MetaData + desc: Капучино – это кофейный напиток, родиной которого является Италия. Но популярен капучино во всем мире. Он готовится из порции эспрессо и двух частей вспененного молока. + name: капучино - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,32.5 + pos: 40.237556,35.25761 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9406 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: Coffee + Quantity: 28 + - data: null + ReagentId: Cream + Quantity: 2 +- proto: DrinkCoffeeLiqueurBottleFull + entities: + - uid: 9313 components: + - type: MetaData + name: бутылка кофейного ликёра (кофейный ликёр) - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,32.5 + pos: 22.286802,56.005856 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9407 + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: Label + currentLabel: кофейный ликёр + - type: PressurizedSolution + sprayFizzinessThresholdRoll: 0.39672318 + - type: NameModifier + baseName: бутылка кофейного ликёра + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 9314 +- proto: DrinkCognacBottleFull + entities: + - uid: 139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,32.5 + pos: 24.390789,55.56179 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9408 +- proto: DrinkFlask + entities: + - uid: 7456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9409 + parent: 7455 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkGildlagerBottleFull + entities: + - uid: 7457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,32.5 + pos: 6.6867027,28.306255 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9410 +- proto: DrinkGlass + entities: + - uid: 5844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,32.5 + pos: 77.4555,4.6410556 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9411 + - uid: 5847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,32.5 + pos: 77.761055,4.3632784 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9412 + - uid: 5854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,32.5 + pos: 73.46939,3.3632784 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9413 + - uid: 7458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,32.5 + pos: 67.30002,9.807365 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9414 + - uid: 7459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,32.5 + pos: 67.50451,9.836576 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9415 + - uid: 7460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,27.5 + pos: 41.360363,42.560402 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9416 + - uid: 7461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,27.5 + pos: 41.579113,42.419777 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9417 + - uid: 7462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,28.5 + pos: 41.141613,42.513527 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9418 + - uid: 9330 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,29.5 + pos: 74.16383,2.7243888 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9419 + - uid: 11137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,30.5 + pos: 19.372255,52.34253 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9420 + - uid: 21270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,30.5 + pos: 19.632711,52.49878 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9421 + - uid: 22458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9422 + pos: 35.39589,15.666204 + parent: 16527 + - uid: 22459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9423 + pos: -32.881973,31.794983 + parent: 16527 +- proto: DrinkGoldenCup + entities: + - uid: 7463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,30.5 + pos: 6.2909718,28.857376 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9424 +- proto: DrinkGreenTea + entities: + - uid: 7464 components: + - type: MetaData + desc: Самый питательный напиток на станции с молоком, сделанный по личному рецепту одного научного руководителя. Теперь абсолютно без жира! - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,30.5 + rot: 12.566370614359172 rad + pos: 17.679285,5.7708707 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9425 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: GreenTea + Quantity: 15 + - data: null + ReagentId: Milk + Quantity: 5 +- proto: DrinkHotCoco + entities: + - uid: 7465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,30.5 + pos: 42.734554,65.46802 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9426 +- proto: DrinkHotCoffee + entities: + - uid: 7466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,30.5 + pos: 41.27519,-3.52531 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9427 + - uid: 7467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,30.5 + pos: 41.259563,-1.5878099 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9428 + - uid: 7468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,30.5 + pos: 41.228313,0.45906508 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9429 + - uid: 7469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,40.5 + pos: 36.6082,-11.328205 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9430 + - uid: 7470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,40.5 + pos: 21.44087,-6.3143 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9431 + - uid: 7471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,40.5 + pos: 35.77519,0.42781508 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9432 + - uid: 7472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,38.5 + pos: 35.759563,-3.228435 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9433 + - uid: 7473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,38.5 + pos: 35.80644,-1.5253099 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9434 +- proto: DrinkIceBucket + entities: + - uid: 5754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,49.5 + pos: 21.668037,55.797997 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9435 +- proto: DrinkIceCreamGlass + entities: + - uid: 7474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,49.5 + pos: 40.746994,42.640934 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9436 +- proto: DrinkIcedBeerGlass + entities: + - uid: 7475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,49.5 + pos: 91.41643,16.735619 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9437 +- proto: DrinkIcedCoffeeGlass + entities: + - uid: 22460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9438 + pos: 35.70839,16.11933 + parent: 16527 +- proto: DrinkMugBlue + entities: + - uid: 7476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,45.5 + pos: 47.29251,9.744697 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9439 +- proto: DrinkMugGreen + entities: + - uid: 7477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,45.5 + pos: 42.34393,65.96802 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9440 +- proto: DrinkMugMetal + entities: + - uid: 7479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,48.5 + pos: 3.7027116,11.559009 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9441 +- proto: DrinkMugOne + entities: + - uid: 7480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,48.5 + pos: 42.34393,65.59302 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9442 +- proto: DrinkMugRed + entities: + - uid: 7481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,46.5 + pos: 42.703304,65.85864 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9443 + - uid: 22461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9444 + pos: 21.811678,36.54419 + parent: 16527 +- proto: DrinkPatronBottleFull + entities: + - uid: 13111 components: - type: Transform - pos: 81.5,49.5 + pos: 16.692482,53.790447 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9445 +- proto: DrinkPatronGlass + entities: + - uid: 11130 components: - type: Transform - pos: 81.5,48.5 + pos: 16.392956,53.51701 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9446 +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 7482 components: - type: Transform - pos: 81.5,47.5 + pos: 6.3480477,28.588303 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9447 +- proto: DrinkRumBottleFull + entities: + - uid: 7483 components: - type: Transform - pos: 81.5,46.5 + pos: 33.353012,22.205637 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9448 + - uid: 9698 components: + - type: MetaData + name: кубинский пряный ром капитана Пита (ром) - type: Transform - pos: 81.5,45.5 + pos: 22.588404,55.60221 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9449 + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: Label + currentLabel: ром + - type: PressurizedSolution + sprayFizzinessThresholdRoll: 0.8274435 + - type: NameModifier + baseName: кубинский пряный ром капитана Пита + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 9699 +- proto: DrinkShaker + entities: + - uid: 13504 components: - type: Transform - pos: 81.5,44.5 + pos: 19.333187,52.720135 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9450 +- proto: DrinkShotGlass + entities: + - uid: 7484 components: - type: Transform - pos: 81.5,43.5 + pos: 30.435932,62.610104 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9451 +- proto: DrinkSyndicatebomb + entities: + - uid: 22462 components: - type: Transform - pos: 81.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9452 + pos: 33.44374,48.539795 + parent: 16527 +- proto: DrinkTequilaBottleFull + entities: + - uid: 484 components: + - type: MetaData + name: бутылка текилы Каккаво гарантированного качества (текила) - type: Transform - pos: 81.5,41.5 + pos: 23.684235,55.62825 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9453 + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: Label + currentLabel: текила + - type: PressurizedSolution + sprayFizzinessThresholdRoll: 0.9331411 + - type: NameModifier + baseName: бутылка текилы Каккаво гарантированного качества + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 487 +- proto: DrinkVacuumFlask + entities: + - uid: 7485 components: - type: Transform - pos: 81.5,40.5 + pos: 3.4370866,11.621509 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9454 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: Tea + Quantity: 30 +- proto: DrinkVermouthBottleFull + entities: + - uid: 10372 components: + - type: MetaData + name: бутылка вермута Золотой глаз (вермут) - type: Transform - pos: 81.5,39.5 + pos: 22.364939,55.823563 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9455 + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: Label + currentLabel: вермут + - type: PressurizedSolution + sprayFizzinessThresholdRoll: 0.9074134 + - type: NameModifier + baseName: бутылка вермута Золотой глаз + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 10373 +- proto: DrinkVodkaBottleFull + entities: + - uid: 2388 components: + - type: MetaData + name: бутылка водки (водка) - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,38.5 + pos: 23.449825,55.836586 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9456 + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: Label + currentLabel: водка + - type: PressurizedSolution + sprayFizzinessThresholdRoll: 0.98146 + - type: NameModifier + baseName: бутылка водки + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 2390 +- proto: DrinkWaterBottleFull + entities: + - uid: 7486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,38.5 + pos: 7.2832575,21.488586 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9457 + - uid: 7487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,38.5 + pos: 46.66765,73.89926 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9458 + - uid: 7488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,38.5 + pos: 46.429153,73.789185 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9459 + - uid: 7489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,38.5 + pos: 56.302605,24.661226 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9460 + - uid: 7490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,38.5 + pos: 56.133354,24.36671 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9461 + - uid: 22463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9462 + pos: 35.27089,16.55683 + parent: 16527 + - uid: 22464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,38.5 + rot: 1.5707963267948966 rad + pos: 35.630264,16.634954 + parent: 16527 + - uid: 22465 + components: + - type: Transform + pos: -13.11377,56.632263 + parent: 16527 +- proto: DrinkWaterJug + entities: + - uid: 22466 + components: + - type: Transform + pos: 12.102557,14.29726 + parent: 16527 +- proto: DrinkWineBottleFull + entities: + - uid: 2393 + components: + - type: MetaData + name: особое двухбородое бородатое вино (вино) + - type: Transform + pos: 23.05379,55.604862 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9463 + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: Label + currentLabel: вино + - type: PressurizedSolution + sprayFizzinessThresholdRoll: 0.3173999 + - type: NameModifier + baseName: особое двухбородое бородатое вино + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 2394 +- proto: Dropper + entities: + - uid: 21556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,72.5 + pos: 35.339718,49.33393 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9464 + - uid: 21557 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,71.5 + pos: 35.714718,49.568306 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9465 + - uid: 21558 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,78.5 + pos: 35.542843,49.24018 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9466 +- proto: DungeonMasterCircuitBoard + entities: + - uid: 582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,64.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9467 + parent: 577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EggSpider + entities: + - uid: 22467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,64.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9468 + pos: -19.59694,0.56256104 + parent: 16527 + - uid: 22468 components: - type: Transform - pos: 77.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9469 + pos: -21.76883,-0.23431396 + parent: 16527 + - uid: 22469 components: - type: Transform - pos: 76.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9470 + pos: -21.253235,-0.62493896 + parent: 16527 + - uid: 22470 components: - type: Transform - pos: 76.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9471 + pos: -18.659485,-5.656189 + parent: 16527 + - uid: 22471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9472 + pos: -20.300873,3.309204 + parent: 16527 + - uid: 22472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9473 + pos: 20.282858,8.429473 + parent: 16527 + - uid: 22473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9474 + pos: 20.595358,8.429473 + parent: 16527 + - uid: 22474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9475 + pos: 20.657642,-0.4185686 + parent: 16527 + - uid: 22475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9476 + pos: 20.313892,-0.3248186 + parent: 16527 + - uid: 22489 components: - type: Transform - pos: 8.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9477 + pos: 22.445118,2.6054916 + parent: 16527 + - uid: 22490 components: - type: Transform - pos: 8.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9478 + pos: 22.616993,2.3711166 + parent: 16527 + - uid: 22491 components: - type: Transform - pos: 5.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9479 + pos: -6.6742554,29.646019 + parent: 16527 + - uid: 22492 components: - type: Transform - pos: 4.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9480 + pos: -6.4398804,29.380394 + parent: 16527 + - uid: 22493 components: - type: Transform - pos: 4.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9481 + pos: -17.297878,19.52823 + parent: 16527 + - uid: 22494 components: - type: Transform - pos: 5.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9482 + pos: -17.641628,19.606356 + parent: 16527 + - uid: 22495 components: - type: Transform - pos: 5.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9483 + pos: -17.610378,19.200106 + parent: 16527 + - uid: 22496 components: - type: Transform - pos: 9.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9484 + pos: -19.401276,48.616028 + parent: 16527 + - uid: 22497 components: - type: Transform - pos: 9.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9485 + pos: -18.291931,47.022278 + parent: 16527 + - uid: 22498 components: - type: Transform - pos: 9.5,33.5 + pos: -17.916931,46.537903 + parent: 16527 + - uid: 22499 + components: + - type: Transform + pos: -14.338791,51.334778 + parent: 16527 + - uid: 22520 + components: + - type: Transform + pos: -11.495041,47.647278 + parent: 16527 + - uid: 22521 + components: + - type: Transform + pos: -11.182571,48.522278 + parent: 16527 + - uid: 22522 + components: + - type: Transform + pos: -15.416916,48.397278 + parent: 16527 + - uid: 22523 + components: + - type: Transform + pos: -12.579193,58.38507 + parent: 16527 + - uid: 22524 + components: + - type: Transform + pos: -12.172897,58.650696 + parent: 16527 + - uid: 22525 + components: + - type: Transform + pos: -13.797928,53.47882 + parent: 16527 + - uid: 22526 + components: + - type: Transform + pos: -12.704178,54.44757 + parent: 16527 + - uid: 22527 + components: + - type: Transform + pos: -9.782333,54.35382 + parent: 16527 + - uid: 22528 + components: + - type: Transform + pos: -18.426895,53.591614 + parent: 16527 + - uid: 22529 + components: + - type: Transform + pos: -19.47377,56.466614 + parent: 16527 + - uid: 22530 + components: + - type: Transform + pos: -20.208145,55.560364 + parent: 16527 + - uid: 22531 + components: + - type: Transform + pos: -20.583145,55.32599 + parent: 16527 +- proto: ElectricalDisruptionKit + entities: + - uid: 22532 + components: + - type: Transform + pos: -55.530792,54.491882 + parent: 16527 +- proto: ElectricGuitarInstrument + entities: + - uid: 21492 + components: + - type: Transform + pos: 21.326803,40.50964 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9486 +- proto: EmergencyLight + entities: + - uid: 3482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-16.5 + rot: 1.5707963267948966 rad + pos: 74.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9487 + - uid: 4505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-17.5 + rot: -1.5707963267948966 rad + pos: 79.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9488 + - uid: 6935 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-18.5 + pos: 19.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9489 + - uid: 7491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-18.5 + rot: 1.5707963267948966 rad + pos: 39.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9490 + - uid: 7492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-17.5 + rot: -1.5707963267948966 rad + pos: 50.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9491 + - uid: 7493 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-16.5 + pos: 66.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9492 + - uid: 7494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,61.5 + rot: -1.5707963267948966 rad + pos: 61.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9493 + - uid: 7496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,62.5 + rot: -1.5707963267948966 rad + pos: 44.5,75.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9494 + - uid: 7497 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.5,63.5 + pos: 48.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9495 + - uid: 7498 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,64.5 + pos: 22.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9496 + - uid: 7499 components: - type: Transform - pos: 78.5,65.5 + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9497 + - uid: 7500 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,61.5 + pos: 42.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9498 + - uid: 7501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,62.5 + rot: 1.5707963267948966 rad + pos: 26.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9499 + - uid: 7502 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,63.5 + pos: 23.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9500 + - uid: 7503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,64.5 + rot: -1.5707963267948966 rad + pos: 20.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9501 + - type: Battery + startingCharge: 2147.0674 + - type: ActiveEmergencyLight + - uid: 7504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,65.5 + pos: 23.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9502 + - uid: 7505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,65.5 + rot: -1.5707963267948966 rad + pos: 33.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9503 + - uid: 7506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,65.5 + pos: 42.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9504 + - uid: 7507 components: - type: Transform rot: -1.5707963267948966 rad - pos: 76.5,56.5 + pos: 24.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9505 + - type: Battery + startingCharge: 1974.5082 + - type: ActiveEmergencyLight + - uid: 7508 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,56.5 + pos: 30.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9506 + - type: Battery + startingCharge: 1974.5082 + - type: ActiveEmergencyLight + - uid: 7509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,56.5 + rot: 3.141592653589793 rad + pos: 17.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9507 + - type: Battery + startingCharge: 2148.7676 + - type: ActiveEmergencyLight + - uid: 7510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,56.5 + rot: 1.5707963267948966 rad + pos: 20.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9508 + - type: Battery + startingCharge: 1939.6592 + - type: ActiveEmergencyLight + - uid: 7511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,8.5 + parent: 2 + - type: Battery + startingCharge: 1827.379 + - type: ActiveEmergencyLight + - uid: 7512 components: - type: Transform rot: -1.5707963267948966 rad - pos: 72.5,56.5 + pos: 57.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9509 + - type: Battery + startingCharge: 2148.7676 + - type: ActiveEmergencyLight + - uid: 7514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,56.5 + rot: 3.141592653589793 rad + pos: 43.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9511 + - uid: 7515 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-9.5 + pos: 55.5,16.5 parent: 2 - - uid: 9513 + - type: Battery + startingCharge: 2082.46 + - type: ActiveEmergencyLight + - uid: 7516 components: - type: Transform - pos: 36.5,48.5 + rot: -1.5707963267948966 rad + pos: 47.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9514 + - type: Battery + startingCharge: 1878.4609 + - type: ActiveEmergencyLight + - uid: 7517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,27.5 + pos: 42.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9515 + - type: Battery + startingCharge: 1878.4609 + - type: ActiveEmergencyLight + - uid: 7518 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,19.5 + pos: 42.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9516 + - type: Battery + startingCharge: 1878.4609 + - type: ActiveEmergencyLight + - uid: 7519 components: - type: Transform - pos: 57.5,22.5 + rot: 1.5707963267948966 rad + pos: 70.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9517 + - uid: 7520 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,56.5 + pos: 70.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9518 + - type: Battery + startingCharge: 1827.379 + - type: ActiveEmergencyLight + - uid: 7521 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,3.5 + pos: 79.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9519 + - uid: 7522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,20.5 + pos: 63.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9520 + - type: Battery + startingCharge: 1827.379 + - type: ActiveEmergencyLight + - uid: 7523 components: - type: Transform - pos: 51.5,22.5 + pos: 38.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9521 + - type: Battery + startingCharge: 1827.379 + - type: ActiveEmergencyLight + - uid: 7525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + - type: Battery + startingCharge: 2125.6816 + - type: ActiveEmergencyLight + - uid: 7526 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,3.5 + pos: 11.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9522 + - type: Battery + startingCharge: 1827.379 + - type: ActiveEmergencyLight + - uid: 7527 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,67.5 + pos: 6.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9523 + - type: Battery + startingCharge: 2128.6487 + - type: ActiveEmergencyLight + - uid: 7528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,61.5 + rot: -1.5707963267948966 rad + pos: 72.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9524 + - type: Battery + startingCharge: 1827.379 + - type: ActiveEmergencyLight + - uid: 7529 components: - type: Transform - pos: 45.5,2.5 + rot: 1.5707963267948966 rad + pos: 68.5,59.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9525 + - type: Battery + startingCharge: 2086.7605 + - type: ActiveEmergencyLight + - uid: 7531 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,62.5 + pos: 45.5,49.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9526 + - type: Battery + startingCharge: 1827.379 + - type: ActiveEmergencyLight + - uid: 7532 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-3.5 + pos: 83.5,58.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9527 + - type: Battery + startingCharge: 2086.7605 + - type: ActiveEmergencyLight + - uid: 7533 components: - type: Transform - pos: 45.5,-2.5 + rot: -1.5707963267948966 rad + pos: 48.5,70.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9528 + - type: Battery + startingCharge: 1827.379 + - type: ActiveEmergencyLight + - uid: 7534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,69.5 + rot: 3.141592653589793 rad + pos: 63.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9529 + - type: Battery + startingCharge: 1827.379 + - type: ActiveEmergencyLight + - uid: 7535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,83.5 + rot: 3.141592653589793 rad + pos: 41.5,78.5 parent: 2 - - uid: 9530 + - type: Battery + startingCharge: 2093.0112 + - type: ActiveEmergencyLight + - uid: 7536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,81.5 + pos: 52.5,53.5 parent: 2 - - uid: 9531 + - type: Battery + startingCharge: 1827.379 + - type: ActiveEmergencyLight + - uid: 7537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,81.5 + pos: 30.5,38.5 parent: 2 - - uid: 9532 + - type: Battery + startingCharge: 1827.379 + - type: ActiveEmergencyLight + - uid: 7538 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,83.5 + pos: 54.5,63.5 parent: 2 - - uid: 9533 + - uid: 7539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,79.5 + pos: 39.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9534 + - uid: 7540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,82.5 + rot: 3.141592653589793 rad + pos: 8.5,26.5 parent: 2 - - uid: 9535 + - uid: 7541 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,86.5 + pos: 13.5,22.5 parent: 2 - - uid: 9536 + - uid: 7542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,16.5 + pos: 73.5,66.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9537 + - uid: 7543 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,21.5 + pos: 49.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9538 + - uid: 7544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,23.5 + rot: 3.141592653589793 rad + pos: 51.5,81.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9539 + - uid: 7545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,83.5 + rot: 3.141592653589793 rad + pos: 1.5,26.5 parent: 2 - - uid: 9540 + - uid: 7546 components: - type: Transform - pos: 42.5,17.5 + pos: 53.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9541 + - uid: 7547 components: - type: Transform - pos: 46.5,71.5 + rot: -1.5707963267948966 rad + pos: 54.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9542 + - uid: 7549 components: - type: Transform - pos: 43.5,6.5 + rot: -1.5707963267948966 rad + pos: 58.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9543 + - uid: 7550 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,20.5 + pos: 24.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9544 + - uid: 7551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,22.5 + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9545 + - uid: 7552 components: - type: Transform - pos: 32.5,85.5 + rot: 1.5707963267948966 rad + pos: 22.5,-21.5 parent: 2 - - uid: 9546 + - uid: 7564 components: - type: Transform - pos: 57.5,25.5 + pos: 53.5,73.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9547 + - uid: 7570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,79.5 + pos: 56.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9548 + - uid: 7572 components: - type: Transform - pos: 52.5,21.5 + rot: 3.141592653589793 rad + pos: 51.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9549 + - uid: 7573 components: - type: Transform - pos: 45.5,-0.5 + rot: -1.5707963267948966 rad + pos: 47.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9550 + - uid: 7574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,20.5 + rot: -1.5707963267948966 rad + pos: 47.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9551 + - uid: 7575 components: - type: Transform - pos: 46.5,75.5 + pos: 45.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9552 + - uid: 7576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,4.5 + rot: 3.141592653589793 rad + pos: 39.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9553 + - uid: 7577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,16.5 + pos: 40.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9554 + - uid: 7578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,70.5 + pos: 40.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9555 + - uid: 7579 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-5.5 + pos: 42.5,68.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9556 + - uid: 7580 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-6.5 + pos: 36.5,71.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9557 + - uid: 7581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,54.5 + rot: -1.5707963267948966 rad + pos: 47.5,85.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9558 + - uid: 7582 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-7.5 + pos: 42.5,59.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9559 + - uid: 7583 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,0.5 + pos: 45.5,66.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9560 + - uid: 7584 + components: + - type: Transform + pos: 39.5,69.5 + parent: 2 + - uid: 7585 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,27.5 + pos: 47.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9561 + - uid: 7586 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,74.5 + pos: 50.5,57.5 parent: 2 - - uid: 9562 + - uid: 7587 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,72.5 + rot: 1.5707963267948966 rad + pos: 55.5,77.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 9563 + - uid: 7919 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,69.5 + pos: 44.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9564 + - uid: 9347 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,65.5 + pos: 38.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9565 + - uid: 10212 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,47.5 + pos: 60.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9566 + - uid: 12942 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,82.5 + pos: 43.5,50.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9567 + - uid: 16027 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,23.5 + pos: 38.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9568 + - uid: 16179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,58.5 + rot: -1.5707963267948966 rad + pos: 62.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9569 + - uid: 21728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-4.5 + rot: -1.5707963267948966 rad + pos: 16.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9570 + - uid: 21780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,50.5 + parent: 2 + - uid: 21788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-39.5 + parent: 2 + - uid: 21789 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,6.5 + pos: 42.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9571 + - uid: 21793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,48.5 + parent: 2 + - uid: 21796 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,1.5 + pos: 31.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9572 + - uid: 21798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,4.5 + pos: 31.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9573 + - uid: 21799 components: - type: Transform - pos: 53.5,38.5 + pos: 21.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9574 + - uid: 21800 components: - type: Transform - pos: 53.5,39.5 + pos: 14.5,55.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9575 + - uid: 21801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,40.5 + pos: 16.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9576 + - uid: 21802 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,19.5 + pos: 14.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9577 + - uid: 21803 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,19.5 + pos: 22.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9578 + - uid: 21804 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,81.5 + pos: 28.5,42.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9579 + - uid: 21805 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,82.5 + pos: 33.5,43.5 parent: 2 - - uid: 9580 + - uid: 21806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,38.5 + pos: 12.5,64.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9581 + - uid: 21807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,35.5 + pos: 15.5,64.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9582 + - uid: 21809 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,20.5 + pos: 15.5,72.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9583 + - uid: 21810 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,20.5 + pos: 14.5,79.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9584 + - uid: 21811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,26.5 + pos: 30.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9585 + - uid: 21812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9586 + rot: 1.5707963267948966 rad + pos: 33.5,-39.5 + parent: 2 + - uid: 21813 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,27.5 + pos: 28.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9587 + - uid: 21814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,27.5 + rot: 3.141592653589793 rad + pos: 23.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9588 + - uid: 21817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,26.5 + rot: -1.5707963267948966 rad + pos: 13.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9597 + - uid: 21819 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 21821 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,83.5 + pos: 17.5,-44.5 parent: 2 - - uid: 9598 + - uid: 21822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,81.5 + pos: 22.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9599 + - uid: 21823 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,81.5 + pos: 27.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9600 + - uid: 21824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,81.5 + pos: 28.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9601 + - uid: 21825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,82.5 + pos: 16.5,-42.5 parent: 2 - - uid: 9602 + - uid: 21826 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,83.5 + pos: 26.5,-41.5 parent: 2 - - uid: 9603 + - uid: 21828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,81.5 + rot: 1.5707963267948966 rad + pos: 18.5,-41.5 parent: 2 - - uid: 9604 + - uid: 21830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,81.5 + rot: 1.5707963267948966 rad + pos: 17.5,-39.5 parent: 2 - - uid: 9605 + - uid: 21831 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,81.5 + pos: 27.5,-39.5 parent: 2 - - uid: 9606 + - uid: 21832 components: - type: Transform - pos: 33.5,84.5 + pos: 22.5,-37.5 parent: 2 - - uid: 9607 + - uid: 21833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-4.5 + rot: 1.5707963267948966 rad + pos: 20.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9608 + - uid: 21834 components: - type: Transform - pos: 43.5,7.5 + rot: -1.5707963267948966 rad + pos: 24.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9609 + - uid: 21835 components: - type: Transform - pos: 37.5,-0.5 + rot: 3.141592653589793 rad + pos: 30.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9610 + - uid: 21836 components: - type: Transform - pos: 39.5,-4.5 + pos: 15.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9611 + - uid: 22533 components: - type: Transform - pos: 39.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9612 + pos: -5.5,12.5 + parent: 16527 + - uid: 22534 + components: + - type: Transform + pos: 6.5,12.5 + parent: 16527 + - uid: 22535 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9613 + pos: -12.5,1.5 + parent: 16527 + - uid: 22536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9614 + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 16527 + - uid: 22537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9615 + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 16527 + - uid: 22538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9616 + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 16527 + - uid: 22539 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9617 + pos: -10.5,7.5 + parent: 16527 + - uid: 22540 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9618 + pos: 11.5,7.5 + parent: 16527 + - uid: 22541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9619 + pos: -15.5,16.5 + parent: 16527 + - uid: 22542 components: - type: Transform - pos: 33.5,85.5 - parent: 2 - - uid: 9620 + rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 16527 +- proto: EmergencyOxygenTank + entities: + - uid: 7588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,83.5 + pos: 58.857124,34.53521 parent: 2 - - uid: 9621 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 22543 components: - type: Transform - pos: 57.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9622 + pos: 1.5380707,63.25714 + parent: 16527 +- proto: EmergencyRollerBed + entities: + - uid: 7589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,31.5 + pos: 43.44456,-1.4222625 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9623 + - uid: 7590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,31.5 + pos: 13.297308,-18.88206 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9624 + - uid: 7591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,30.5 + pos: 49.491436,-0.4052043 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9625 + - uid: 22244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,25.5 + pos: 44.475964,-5.4175925 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9626 + - uid: 22544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9627 + pos: 13.756775,16.520325 + parent: 16527 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 7894 components: - type: Transform - pos: 57.5,19.5 + pos: 43.474857,-4.3323107 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9628 + - uid: 7918 components: - type: Transform - pos: 57.5,18.5 + pos: 43.334232,-4.6760607 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9629 + - uid: 11666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,76.5 + pos: 43.209232,-4.7073107 parent: 2 - - uid: 9630 + - uid: 12740 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,78.5 + pos: 43.818607,-4.2698107 parent: 2 - - uid: 9631 +- proto: EncryptionKeyBinary + entities: + - uid: 7596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,80.5 - parent: 2 - - uid: 9632 + parent: 7595 + - type: Physics + canCollide: False +- proto: EncryptionKeyCargo + entities: + - uid: 7598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,82.5 - parent: 2 - - uid: 9633 + parent: 7597 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 7600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,82.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9634 + parent: 7599 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 7602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,82.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9635 + parent: 7601 + - type: Physics + canCollide: False + - uid: 22546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,82.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9636 + parent: 22545 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 7604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,82.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9637 + parent: 7603 + - type: Physics + canCollide: False +- proto: EncryptionKeyFreelance + entities: + - uid: 22548 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,80.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9638 + parent: 22547 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 7606 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,81.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9639 + parent: 7605 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 7608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,80.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9640 + parent: 7607 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 7610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,75.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 9641 + parent: 7609 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 7612 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,77.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 9642 + parent: 7611 + - type: Physics + canCollide: False +- proto: EnergyCutlass + entities: + - uid: 19855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,78.5 + pos: 74.66137,0.62739515 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 9643 +- proto: EnergyShield + entities: + - uid: 23254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9644 + rot: -1.5707963267948966 rad + pos: -24.331787,29.858887 + parent: 16527 +- proto: ExGrenade + entities: + - uid: 1061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,55.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9645 + parent: 1057 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,56.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9646 + parent: 1057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExosuitFabricator + entities: + - uid: 7614 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,57.5 + pos: 28.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9647 +- proto: ExplosivePayload + entities: + - uid: 22550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9648 + pos: -32.563675,33.654785 + parent: 16527 +- proto: ExplosivesSignMed + entities: + - uid: 22551 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,59.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9649 + pos: 22.5,25.5 + parent: 16527 + - uid: 22552 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,60.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9650 + pos: 22.5,27.5 + parent: 16527 + - uid: 22553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,61.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9651 + pos: -13.5,68.5 + parent: 16527 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 7615 components: - type: Transform - pos: 13.5,63.5 + pos: 21.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9652 + - uid: 7616 components: - type: Transform - pos: 13.5,64.5 + pos: 13.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9653 + - uid: 7617 components: - type: Transform - pos: 13.5,65.5 + pos: 10.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9654 + - uid: 7618 components: - type: Transform - pos: 13.5,67.5 + pos: 38.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9655 + - uid: 7619 components: - type: Transform - pos: 13.5,68.5 + pos: 59.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9656 + - uid: 7620 components: - type: Transform - pos: 13.5,69.5 + pos: 73.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9657 + - uid: 7621 components: - type: Transform - pos: 13.5,70.5 + pos: 73.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9658 + - uid: 7622 components: - type: Transform - pos: 13.5,71.5 + pos: 73.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9659 + - uid: 7623 components: - type: Transform - pos: 13.5,72.5 + pos: 69.5,47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9660 + - uid: 7624 components: - type: Transform - pos: 13.5,73.5 + pos: 80.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9661 + - uid: 7625 components: - type: Transform - pos: 13.5,75.5 + pos: 67.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9662 + - uid: 7626 components: - type: Transform - pos: 13.5,76.5 + pos: 52.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9663 + - uid: 7627 components: - type: Transform - pos: 13.5,77.5 + pos: 48.5,67.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9664 + - uid: 7628 components: - type: Transform - pos: 13.5,78.5 + pos: 40.5,77.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9665 + - uid: 7629 components: - type: Transform - pos: 13.5,79.5 + rot: 3.141592653589793 rad + pos: 26.5,67.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9666 + - uid: 7630 components: - type: Transform - pos: 13.5,80.5 + rot: 3.141592653589793 rad + pos: 6.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9667 + - uid: 7631 components: - type: Transform - pos: 14.5,64.5 + rot: 3.141592653589793 rad + pos: 19.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9668 + - uid: 7632 components: - type: Transform - pos: 14.5,65.5 + rot: 3.141592653589793 rad + pos: 20.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9669 + - uid: 7633 components: - type: Transform - pos: 14.5,63.5 + rot: 3.141592653589793 rad + pos: 28.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9670 + - uid: 7634 components: - type: Transform - pos: 14.5,68.5 + pos: 13.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9671 + - uid: 7635 components: - type: Transform - pos: 14.5,69.5 + pos: 24.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9672 + - uid: 7636 components: - type: Transform - pos: 14.5,66.5 + rot: 3.141592653589793 rad + pos: 30.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9673 +- proto: FatExtractor + entities: + - uid: 21579 components: - type: Transform - pos: 14.5,70.5 + pos: 33.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9674 +- proto: FaxMachineBase + entities: + - uid: 7637 components: - type: Transform - pos: 14.5,71.5 + pos: 4.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9675 + - type: FaxMachine + name: Отдел Снабжения + - uid: 7638 components: - type: Transform - pos: 14.5,72.5 + pos: 5.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9676 + - type: FaxMachine + name: Кабинет квартирмейстера + - uid: 7639 components: - type: Transform - pos: 14.5,74.5 + pos: 20.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9677 + - type: FaxMachine + name: Глава Персонала + - uid: 7640 components: - type: Transform - pos: 14.5,75.5 + pos: 23.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9678 + - type: FaxMachine + name: Мостик + - type: DeviceNetwork + address: Мостик + - uid: 7641 components: - type: Transform - pos: 14.5,76.5 + pos: 24.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9679 + - type: FaxMachine + name: Научно-Исследовательский Отдел + - uid: 7642 components: - type: Transform - pos: 14.5,77.5 + pos: 17.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9680 + - type: FaxMachine + name: Научный Руководитель + - uid: 7643 components: - type: Transform - pos: 14.5,78.5 + pos: 46.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9681 + - type: FaxMachine + name: Главный Врач + - uid: 7644 components: - type: Transform - pos: 14.5,79.5 + pos: 40.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9682 + - type: FaxMachine + name: Детектив + - uid: 7645 components: - type: Transform - pos: 14.5,80.5 + pos: 62.5,62.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9683 + - type: FaxMachine + name: Библиотека + - uid: 7646 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,61.5 + pos: 55.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9684 + - type: FaxMachine + name: Служба Безопасности + - uid: 7647 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,59.5 + pos: 43.5,68.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9685 + - type: FaxMachine + name: Атмосферный отдел + - uid: 7648 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,58.5 + pos: 7.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9686 + - type: FaxMachine + name: Агент Внутренних Дел + - uid: 7649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,57.5 + pos: 37.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9687 + - type: FaxMachine + name: Медицинский отдел + - uid: 7650 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,56.5 + pos: 50.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9688 + - type: FaxMachine + name: Глава Службы Безопасности + - uid: 7651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,55.5 + pos: 37.5,69.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9689 + - uid: 21790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,60.5 + pos: 21.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9691 + - type: FaxMachine + name: Ядро ИИ +- proto: FaxMachineCaptain + entities: + - uid: 7653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,84.5 + pos: 33.5,21.5 parent: 2 - - uid: 9692 + - type: FaxMachine + name: Каюта капитана +- proto: FaxMachineSyndie + entities: + - uid: 22554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,84.5 - parent: 2 - - uid: 9697 + pos: 18.5,4.5 + parent: 16527 +- proto: FenceMetalBroken + entities: + - uid: 12580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,40.5 + pos: 11.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10789 + - uid: 13081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,49.5 + pos: 52.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10883 +- proto: FigureSpawner + entities: + - uid: 7655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,49.5 + pos: 66.5,63.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10885 +- proto: filingCabinet + entities: + - uid: 7656 components: - type: Transform - pos: 32.5,41.5 + pos: 43.5,30.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10894 + - uid: 22555 components: - type: Transform - pos: 33.5,56.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10917 + pos: 4.5,46.5 + parent: 16527 + - uid: 22556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10918 + pos: -7.5,58.5 + parent: 16527 +- proto: filingCabinetDrawer + entities: + - uid: 7657 components: - type: Transform - pos: 18.5,47.5 + pos: 36.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10920 +- proto: filingCabinetDrawerRandom + entities: + - uid: 4323 components: - type: Transform - pos: 33.5,55.5 + pos: 33.5,50.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11534 +- proto: filingCabinetRandom + entities: + - uid: 22557 components: - type: Transform - pos: 32.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11694 + pos: 4.5,6.5 + parent: 16527 + - uid: 22558 components: - type: Transform - pos: 16.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11927 + pos: 21.5,33.5 + parent: 16527 + - uid: 22559 components: - type: Transform - pos: 27.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11928 + pos: -21.5,56.5 + parent: 16527 +- proto: FireAlarm + entities: + - uid: 7658 components: - type: Transform - pos: 19.5,43.5 + rot: 3.141592653589793 rad + pos: 30.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11929 + - type: DeviceList + devices: + - 10041 + - 10165 + - 10149 + - 10125 + - 10040 + - 501 + - 10022 + - 10158 + - 7850 + - 7851 + - 7852 + - 7853 + - 7854 + - 7855 + - 7879 + - 7819 + - 7880 + - 7822 + - 7821 + - 7820 + - 7843 + - 7842 + - 7752 + - 7760 + - 7750 + - 7751 + - 7845 + - 7844 + - 7813 + - 7814 + - 7810 + - 7808 + - uid: 7659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,49.5 + rot: 1.5707963267948966 rad + pos: 34.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11930 + - type: DeviceList + devices: + - 10181 + - 10054 + - 7930 + - 7816 + - 7931 + - 7946 + - 7924 + - 9951 + - 10077 + - uid: 7660 components: - type: Transform - pos: 27.5,45.5 + pos: 48.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11931 + - type: DeviceList + devices: + - 10186 + - 10062 + - 9969 + - 10093 + - 7801 + - 7791 + - 7800 + - 7789 + - 7802 + - 440 + - 7812 + - 7811 + - 7837 + - 7954 + - 7956 + - 7957 + - uid: 7661 components: - type: Transform - pos: 16.5,49.5 + pos: 3.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11932 + - type: DeviceList + devices: + - 7733 + - 7734 + - 7738 + - uid: 7662 components: - type: Transform - pos: 19.5,44.5 + rot: 1.5707963267948966 rad + pos: 3.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11933 + - type: DeviceList + devices: + - 7736 + - uid: 7663 components: - type: Transform - pos: 19.5,42.5 + rot: 1.5707963267948966 rad + pos: 10.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11934 + - type: DeviceList + devices: + - 7732 + - 7737 + - 7735 + - 7736 + - uid: 7664 components: - type: Transform - pos: 27.5,42.5 + pos: 7.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11935 + - type: DeviceList + devices: + - 7734 + - 7733 + - 7732 + - 7737 + - 7822 + - uid: 7665 components: - type: Transform - pos: 19.5,45.5 + pos: 31.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11936 + - type: DeviceList + devices: + - 496 + - 7891 + - 7889 + - 7890 + - 7856 + - 7857 + - 7858 + - 7809 + - 7926 + - 7859 + - 7860 + - 7861 + - 10073 + - 9947 + - uid: 7666 components: - type: Transform - pos: 27.5,43.5 + rot: 1.5707963267948966 rad + pos: 10.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11944 + - type: DeviceList + devices: + - 7823 + - 7824 + - 7879 + - 7880 + - 7883 + - 7882 + - 7881 + - 7825 + - 7917 + - 502 + - 10027 + - 10154 + - uid: 7667 components: - type: Transform - pos: 27.5,46.5 + pos: 7.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11948 + - type: DeviceList + devices: + - 7888 + - 7887 + - 10031 + - 10164 + - uid: 7668 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-38.5 + pos: 10.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 13015 + - type: DeviceList + devices: + - 7881 + - 7882 + - 7883 + - 7884 + - 7885 + - 7886 + - 7887 + - 7888 + - 494 + - 10072 + - 9949 + - uid: 7669 components: - type: Transform - pos: 36.5,49.5 + rot: 1.5707963267948966 rad + pos: 10.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13019 + - type: DeviceList + devices: + - 7886 + - 7885 + - 7884 + - 7889 + - 7890 + - 7891 + - 495 + - 10035 + - 10147 + - 7928 + - uid: 7670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,47.5 + pos: 37.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 13735 + - type: DeviceList + devices: + - 7861 + - 7860 + - 7859 + - 497 + - uid: 7671 components: - type: Transform - pos: 19.5,-8.5 + pos: 43.5,46.5 parent: 2 - - uid: 13872 + - uid: 7672 components: - type: Transform - pos: 19.5,-9.5 + rot: -1.5707963267948966 rad + pos: 48.5,49.5 parent: 2 - - uid: 13894 + - type: DeviceList + devices: + - 7864 + - 7863 + - 7862 + - 7904 + - 7903 + - 7902 + - 7865 + - 7866 + - 7867 + - uid: 7673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,46.5 + pos: 61.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 13907 + - type: DeviceList + devices: + - 7906 + - 7905 + - 7865 + - 7866 + - 7867 + - 7776 + - 7909 + - 7908 + - 7907 + - 10014 + - 7775 + - 7868 + - 7869 + - 7870 + - 10142 + - 7913 + - 7912 + - 7914 + - 7873 + - 7872 + - 7871 + - 7949 + - 7911 + - 7910 + - 7777 + - uid: 7674 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,48.5 + pos: 67.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14517 + - type: DeviceList + devices: + - 7774 + - 7906 + - 7905 + - uid: 7675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,48.5 + pos: 66.5,50.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15968 + - type: DeviceList + devices: + - 7776 + - 7777 + - uid: 7676 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,54.5 + pos: 73.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16020 + - type: DeviceList + devices: + - 7907 + - 7908 + - 7909 + - 7777 + - 7867 + - 7866 + - 7865 + - 7905 + - 7906 + - 7776 + - 10014 + - 7775 + - 7868 + - 7869 + - 7870 + - 10142 + - 7913 + - 7912 + - 7914 + - 7873 + - 7872 + - 7871 + - 7949 + - 7911 + - 7910 + - uid: 7677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-41.5 + rot: 1.5707963267948966 rad + pos: 67.5,59.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16030 + - type: DeviceList + devices: + - 7909 + - 7908 + - 7907 + - 7841 + - 7875 + - uid: 7678 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-38.5 + pos: 69.5,41.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16037 + - type: DeviceList + devices: + - 7775 + - 7868 + - 7869 + - 7870 + - 7911 + - 7910 + - 7873 + - 7872 + - 7871 + - 7914 + - 7913 + - 7912 + - 7867 + - 7866 + - 7865 + - 7905 + - 7906 + - 7776 + - 7909 + - 7908 + - 7907 + - 10014 + - 10142 + - 7949 + - 7777 + - uid: 7679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-43.5 + pos: 65.5,41.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16146 + - type: DeviceList + devices: + - 7910 + - 7911 + - uid: 7680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,48.5 + pos: 80.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16165 + - type: DeviceList + devices: + - 7868 + - 7869 + - 7870 + - 7840 + - 7874 + - 475 + - uid: 7681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-39.5 + pos: 76.5,43.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16210 + - type: DeviceList + devices: + - 7775 + - uid: 7682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,74.5 + pos: 80.5,35.5 parent: 2 - - uid: 16224 + - type: DeviceList + devices: + - 7915 + - 7914 + - 7913 + - 7912 + - uid: 7683 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,49.5 + pos: 82.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16230 + - type: DeviceList + devices: + - 7915 + - uid: 7684 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-38.5 + pos: 69.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16271 + - type: DeviceList + devices: + - 7873 + - 7872 + - 7871 + - 7950 + - 10134 + - 10020 + - 7772 + - 7876 + - 7877 + - 7878 + - 7951 + - uid: 7685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,53.5 + rot: 1.5707963267948966 rad + pos: 69.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16304 + - type: DeviceList + devices: + - 7772 + - 7873 + - 7872 + - 7871 + - 7950 + - 10134 + - 10020 + - 7876 + - 7877 + - 7878 + - 7951 + - uid: 7686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,44.5 + pos: 63.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16312 + - type: DeviceList + devices: + - 7953 + - 10133 + - 9985 + - 7952 + - 411 + - 10011 + - 10141 + - 10132 + - 10049 + - 7855 + - 7854 + - 7853 + - 7778 + - uid: 7687 components: - type: Transform - pos: 38.5,51.5 + pos: 53.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16318 + - type: DeviceList + devices: + - 9985 + - 10133 + - 7953 + - 7952 + - 411 + - 10011 + - 10141 + - 10132 + - 10049 + - 7855 + - 7854 + - 7853 + - 7778 + - uid: 7688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,53.5 + pos: 43.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16319 + - type: DeviceList + devices: + - 7853 + - 7854 + - 7855 + - 9985 + - 10133 + - 7953 + - 7952 + - 411 + - 10011 + - 10141 + - 10132 + - 10049 + - 7778 + - uid: 7689 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,53.5 + pos: 38.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16335 + - type: DeviceList + devices: + - 7858 + - 7857 + - 7856 + - 7826 + - 7832 + - 7833 + - 7836 + - 7852 + - 7851 + - 7850 + - 462 + - 10128 + - 10017 + - 10042 + - 10150 + - uid: 7690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-43.5 + rot: 1.5707963267948966 rad + pos: 34.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16345 + - type: DeviceList + devices: + - 7850 + - 7851 + - 7852 + - 462 + - 10128 + - 10017 + - 10042 + - 10150 + - 7832 + - 7833 + - 7826 + - 7836 + - 7858 + - 7857 + - 7856 + - uid: 7691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,42.5 + pos: 27.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16347 + - type: DeviceList + devices: + - 501 + - 10041 + - 10165 + - 10149 + - 10125 + - 10040 + - 10022 + - 10158 + - 7850 + - 7851 + - 7852 + - 7853 + - 7854 + - 7855 + - 7879 + - 7819 + - 7880 + - 7822 + - 7821 + - 7820 + - 7843 + - 7842 + - 7752 + - 7760 + - 7750 + - 7751 + - 7845 + - 7844 + - 7813 + - 7814 + - 7810 + - 7808 + - uid: 7692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,48.5 + pos: 18.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16352 + - type: DeviceList + devices: + - 9702 + - 7820 + - 7821 + - 7822 + - 7880 + - 7819 + - 7879 + - 7741 + - 16525 + - 12004 + - 10223 + - uid: 7693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 + pos: 32.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16354 + - type: DeviceList + devices: + - 7826 + - 7739 + - 7825 + - uid: 7694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,43.5 + rot: 1.5707963267948966 rad + pos: 27.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16355 + - type: DeviceList + devices: + - 7739 + - uid: 7695 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,47.5 + pos: 19.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16360 + - type: DeviceList + devices: + - 7823 + - 7824 + - uid: 7696 components: - type: Transform - pos: 19.5,-42.5 + pos: 8.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16367 + - type: DeviceList + devices: + - 7917 + - uid: 7698 components: - type: Transform - pos: 15.5,49.5 + pos: 43.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16439 + - type: DeviceList + devices: + - 7833 + - 7832 + - 7838 + - 7839 + - 7835 + - 7834 + - 7763 + - 7764 + - 7765 + - 7767 + - uid: 7699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,47.5 + pos: 43.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16463 + - type: DeviceList + devices: + - 7764 + - 7839 + - 7838 + - 7836 + - uid: 7700 components: - type: Transform - pos: 19.5,-40.5 + pos: 39.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16467 + - type: DeviceList + devices: + - 7766 + - uid: 7701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,46.5 + pos: 51.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16471 + - type: DeviceList + devices: + - 7763 + - uid: 7702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,48.5 + rot: 1.5707963267948966 rad + pos: 53.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16475 + - type: DeviceList + devices: + - 7837 + - uid: 7703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,45.5 + pos: 23.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16478 + - type: DeviceList + devices: + - 7741 + - uid: 7704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,48.5 + rot: 1.5707963267948966 rad + pos: 19.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16480 + - type: DeviceList + devices: + - 7752 + - 7756 + - 7757 + - uid: 7705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,48.5 + rot: 1.5707963267948966 rad + pos: 14.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19137 + - type: DeviceList + devices: + - 7755 + - uid: 7706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,16.5 - parent: 16504 - - uid: 19138 + pos: 22.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 7829 + - 7758 + - 7759 + - 7754 + - 7831 + - 7830 + - uid: 7707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19139 + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 7895 + - 7896 + - 7830 + - uid: 7708 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19140 + pos: 21.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 7896 + - 7895 + - 7793 + - 7897 + - 7898 + - uid: 7709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 16504 - - uid: 19141 + pos: 24.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 7753 + - 7898 + - 7897 + - uid: 7710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19142 + rot: 3.141592653589793 rad + pos: 16.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 7755 + - uid: 7711 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19143 + pos: 35.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 7843 + - 7842 + - 7844 + - 7845 + - 7771 + - 7770 + - 7769 + - uid: 7712 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19144 + pos: 43.5,11.5 + parent: 2 + - uid: 7713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,7.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19145 + pos: 48.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 7771 + - 457 + - uid: 7714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19146 + pos: 57.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 7769 + - uid: 7716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19147 + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 2 + - uid: 7717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19148 + rot: 3.141592653589793 rad + pos: 74.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 7772 + - uid: 7718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19149 + pos: 47.5,58.5 + parent: 2 + - type: DeviceList + devices: + - 7904 + - 7903 + - 7902 + - uid: 7719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19150 + rot: 1.5707963267948966 rad + pos: 52.5,55.5 + parent: 2 + - uid: 7720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19151 + pos: 42.5,73.5 + parent: 2 + - type: DeviceList + devices: + - 7795 + - 7794 + - 7899 + - 7900 + - 7901 + - uid: 7721 + components: + - type: Transform + pos: 46.5,75.5 + parent: 2 + - type: DeviceList + devices: + - 7773 + - 7899 + - 7900 + - uid: 7722 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19152 + pos: 4.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 7736 + - uid: 7723 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19153 + pos: 15.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 7831 + - 7803 + - 10112 + - 9986 + - uid: 7724 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19154 + pos: 42.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 9962 + - 10087 + - 10192 + - 10056 + - 9952 + - 10098 + - 7933 + - 7932 + - 7769 + - 7937 + - 7927 + - 7925 + - 7936 + - 7847 + - 7771 + - 7815 + - 7848 + - 7849 + - uid: 22560 components: - type: Transform - pos: -26.5,26.5 - parent: 16504 - - uid: 19155 + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 16527 +- proto: FireAlarmAssembly + entities: + - uid: 22561 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,27.5 - parent: 16504 - - uid: 19156 + pos: -15.5,6.5 + parent: 16527 +- proto: FireAxeCabinetFilled + entities: + - uid: 7725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,27.5 - parent: 16504 - - uid: 19157 + rot: 1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + - uid: 7726 components: - type: Transform - pos: -17.5,36.5 - parent: 16504 - - uid: 19158 + rot: 3.141592653589793 rad + pos: 37.5,70.5 + parent: 2 + - uid: 7727 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,35.5 - parent: 16504 - - uid: 19159 + pos: 48.5,85.5 + parent: 2 + - uid: 22332 components: - type: Transform - pos: -15.5,33.5 - parent: 16504 - - uid: 19160 + rot: 1.5707963267948966 rad + pos: 45.5,72.5 + parent: 2 + missingComponents: + - AccessReader +- proto: FireAxeCabinetFilledOpen + entities: + - uid: 22562 components: - type: Transform - pos: -15.5,32.5 - parent: 16504 - - uid: 19161 + pos: -14.5,8.5 + parent: 16527 +- proto: FireAxeCabinetOpen + entities: + - uid: 22563 components: - type: Transform - pos: -15.5,31.5 - parent: 16504 - - uid: 19162 + pos: 15.5,8.5 + parent: 16527 +- proto: FireExtinguisher + entities: + - uid: 7728 components: - type: Transform - pos: -15.5,30.5 - parent: 16504 - - uid: 19163 + pos: 4.701282,11.6656885 + parent: 2 + - uid: 7729 components: - type: Transform - pos: -15.5,29.5 - parent: 16504 - - uid: 19164 + pos: 4.232532,11.5563135 + parent: 2 + - uid: 7730 components: - type: Transform - pos: -15.5,28.5 - parent: 16504 - - uid: 19165 + pos: 4.466907,11.6188135 + parent: 2 +- proto: Firelock + entities: + - uid: 882 components: - type: Transform - pos: -15.5,27.5 - parent: 16504 - - uid: 19166 + rot: -1.5707963267948966 rad + pos: 15.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14566 + - uid: 4283 components: - type: Transform - pos: -15.5,26.5 - parent: 16504 - - uid: 19167 + rot: -1.5707963267948966 rad + pos: 39.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3857 + - uid: 4284 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,34.5 - parent: 16504 - - uid: 19168 + pos: 31.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 4286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,31.5 - parent: 16504 - - uid: 19169 + rot: -1.5707963267948966 rad + pos: 30.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 4287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,26.5 - parent: 16504 - - uid: 19170 + rot: -1.5707963267948966 rad + pos: 29.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 4288 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,31.5 - parent: 16504 - - uid: 19171 + rot: -1.5707963267948966 rad + pos: 27.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 4289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,32.5 - parent: 16504 - - uid: 19172 + rot: -1.5707963267948966 rad + pos: 26.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 4291 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,33.5 - parent: 16504 - - uid: 19173 + pos: 28.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 4308 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,33.5 - parent: 16504 - - uid: 19174 + pos: 34.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 3857 + - uid: 4309 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,33.5 - parent: 16504 - - uid: 19175 + pos: 24.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 4310 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,33.5 - parent: 16504 - - uid: 19176 + pos: 22.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 4311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,35.5 - parent: 16504 - - uid: 19177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,37.5 - parent: 16504 - - uid: 19178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,38.5 - parent: 16504 - - uid: 19179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,39.5 - parent: 16504 - - uid: 19180 - components: - - type: Transform - pos: -5.5,40.5 - parent: 16504 - - uid: 19181 - components: - - type: Transform - pos: -5.5,39.5 - parent: 16504 - - uid: 19182 - components: - - type: Transform - pos: -5.5,38.5 - parent: 16504 - - uid: 19183 - components: - - type: Transform - pos: -5.5,37.5 - parent: 16504 - - uid: 19184 - components: - - type: Transform - pos: -5.5,36.5 - parent: 16504 - - uid: 19185 - components: - - type: Transform - pos: -5.5,35.5 - parent: 16504 - - uid: 19186 + rot: -1.5707963267948966 rad + pos: 21.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 4312 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,34.5 - parent: 16504 - - uid: 19187 + pos: 20.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 4313 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,34.5 - parent: 16504 - - uid: 19188 + pos: 19.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 4314 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,34.5 - parent: 16504 - - uid: 19189 + pos: 23.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 7548 + - uid: 6541 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: -4.5,34.5 - parent: 16504 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 19190 + pos: 34.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - uid: 7731 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -3.5,34.5 - parent: 16504 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 19191 + pos: 19.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 + - 55 + - uid: 7732 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: -2.5,34.5 - parent: 16504 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 19192 + pos: 9.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7663 + - 7664 + - uid: 7733 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,34.5 - parent: 16504 - - uid: 19193 + pos: 6.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7664 + - 7661 + - uid: 7734 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,34.5 - parent: 16504 - - uid: 19194 + pos: 6.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7664 + - 7661 + - uid: 7735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,34.5 - parent: 16504 - - uid: 19195 + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7663 + - uid: 7736 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,34.5 - parent: 16504 - - uid: 19196 + pos: 6.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7662 + - 7722 + - 7663 + - uid: 7737 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,34.5 - parent: 16504 - - uid: 19197 + pos: 7.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7663 + - 7664 + - uid: 7738 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,34.5 - parent: 16504 - - uid: 19198 + pos: 4.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7661 + - uid: 7739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,34.5 - parent: 16504 - - uid: 19199 + pos: 28.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7693 + - 7694 + - 111 + - uid: 7740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,34.5 - parent: 16504 - - uid: 19200 + pos: 28.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 112 + - uid: 7741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,33.5 - parent: 16504 - - uid: 19201 + pos: 23.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7703 + - 7692 + - 106 + - uid: 7742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,32.5 - parent: 16504 - - uid: 19202 + pos: 30.5,-8.5 + parent: 2 + - uid: 7743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,31.5 - parent: 16504 - - uid: 19203 + pos: 52.5,-12.5 + parent: 2 + - uid: 7744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,30.5 - parent: 16504 - - uid: 19204 + pos: 40.5,-11.5 + parent: 2 + - uid: 7745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,29.5 - parent: 16504 - - uid: 19205 + pos: 40.5,-10.5 + parent: 2 + - uid: 7749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,28.5 - parent: 16504 - - uid: 19206 + pos: 43.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 102 + - uid: 7750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,27.5 - parent: 16504 - - uid: 19207 + rot: 1.5707963267948966 rad + pos: 25.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7658 + - uid: 7751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,26.5 - parent: 16504 - - uid: 19208 + rot: 1.5707963267948966 rad + pos: 25.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7658 + - uid: 7752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,25.5 - parent: 16504 - - uid: 19209 + rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7704 + - 105 + - 7691 + - 7658 + - uid: 7753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 16504 - - uid: 19210 + rot: 1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7709 + - uid: 7754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 16504 - - uid: 19211 + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7706 + - 57 + - uid: 7755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,22.5 - parent: 16504 - - uid: 19212 + rot: -1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7705 + - 7710 + - uid: 7756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 16504 - - uid: 19213 + rot: -1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7704 + - uid: 7757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,20.5 - parent: 16504 - - uid: 19214 + rot: -1.5707963267948966 rad + pos: 20.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7704 + - uid: 7758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,19.5 - parent: 16504 - - uid: 19215 + rot: -1.5707963267948966 rad + pos: 21.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7706 + - 57 + - uid: 7759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,18.5 - parent: 16504 - - uid: 19216 + rot: -1.5707963267948966 rad + pos: 20.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7706 + - uid: 7760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,17.5 - parent: 16504 - - uid: 19217 + rot: -1.5707963267948966 rad + pos: 25.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7658 + - uid: 7761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,16.5 - parent: 16504 - - uid: 19218 + pos: 79.5,10.5 + parent: 2 + - uid: 7762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,16.5 - parent: 16504 - - uid: 19219 + pos: 79.5,11.5 + parent: 2 + - uid: 7763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,16.5 - parent: 16504 - - uid: 19220 + rot: -1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7698 + - 7701 + - 136 + - uid: 7764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,16.5 - parent: 16504 - - uid: 19221 + rot: -1.5707963267948966 rad + pos: 44.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7698 + - 7699 + - 136 + - uid: 7765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,16.5 - parent: 16504 - - uid: 19222 + rot: -1.5707963267948966 rad + pos: 48.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7698 + - 136 + - uid: 7766 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,17.5 - parent: 16504 - - uid: 19223 + rot: -1.5707963267948966 rad + pos: 40.5,37.5 + parent: 2 + - uid: 7767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,18.5 - parent: 16504 - - uid: 19224 + rot: -1.5707963267948966 rad + pos: 46.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7698 + - 136 + - uid: 7768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,19.5 - parent: 16504 - - uid: 19225 + pos: 21.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 108 + - 109 + - uid: 7769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,20.5 - parent: 16504 - - uid: 19226 + rot: -1.5707963267948966 rad + pos: 53.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7711 + - 7714 + - 124 + - 7724 + - uid: 7770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,21.5 - parent: 16504 - - uid: 19227 + rot: -1.5707963267948966 rad + pos: 50.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7711 + - uid: 7771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,22.5 - parent: 16504 - - uid: 19228 + rot: -1.5707963267948966 rad + pos: 47.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7711 + - 7713 + - 124 + - 7724 + - uid: 7772 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,23.5 - parent: 16504 - - uid: 19229 + pos: 73.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7685 + - 7717 + - 75 + - 7684 + - uid: 7773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,24.5 - parent: 16504 - - uid: 19230 + rot: 1.5707963267948966 rad + pos: 47.5,75.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7721 + - 14202 + - uid: 7774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,25.5 - parent: 16504 - - uid: 19231 + rot: 1.5707963267948966 rad + pos: 61.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7674 + - uid: 7775 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,26.5 - parent: 16504 - - uid: 19232 + pos: 73.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7681 + - 103 + - 7673 + - 7676 + - uid: 7776 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,27.5 - parent: 16504 - - uid: 19233 + pos: 67.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7675 + - 7673 + - 7676 + - 7678 + - uid: 7777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,28.5 - parent: 16504 - - uid: 19234 + pos: 69.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7675 + - 7676 + - 103 + - 7673 + - 7678 + - uid: 7778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,29.5 - parent: 16504 - - uid: 19235 + pos: 41.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 115 + - 118 + - 7688 + - 7686 + - 7687 + - uid: 7779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,30.5 - parent: 16504 - - uid: 19236 + pos: 21.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 108 + - 109 + - uid: 7780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,31.5 - parent: 16504 - - uid: 19237 + pos: 25.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 108 + - uid: 7781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,32.5 - parent: 16504 - - uid: 19238 + pos: 12.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 109 + - uid: 7782 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,33.5 - parent: 16504 - - uid: 19239 + pos: 12.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 109 + - uid: 7784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,34.5 - parent: 16504 - - uid: 19240 + pos: 64.5,26.5 + parent: 2 + - uid: 16461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,35.5 - parent: 16504 - - uid: 19241 + rot: -1.5707963267948966 rad + pos: 17.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - 14566 + - uid: 21561 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 16504 - - uid: 19242 + pos: 32.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14202 + - uid: 21670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,16.5 - parent: 16504 - - uid: 19243 + rot: -1.5707963267948966 rad + pos: 16.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 137 + - uid: 21682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,16.5 - parent: 16504 - - uid: 19244 + pos: 21.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21668 + - uid: 21683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,16.5 - parent: 16504 - - uid: 19245 + pos: 23.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21669 + - uid: 21690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,16.5 - parent: 16504 - - uid: 19246 + pos: 22.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16256 + - uid: 22564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,16.5 - parent: 16504 - - uid: 19247 + pos: -11.5,-7.5 + parent: 16527 + - uid: 22565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,16.5 - parent: 16504 - - uid: 19248 + pos: -2.5,10.5 + parent: 16527 + - uid: 22566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,16.5 - parent: 16504 - - uid: 19249 + pos: 3.5,10.5 + parent: 16527 + - uid: 22567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,16.5 - parent: 16504 - - uid: 19250 + pos: 12.5,-7.5 + parent: 16527 + - uid: 22568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,16.5 - parent: 16504 - - uid: 19251 + pos: -14.5,5.5 + parent: 16527 + - uid: 22569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,16.5 - parent: 16504 - - uid: 19252 + pos: -13.5,5.5 + parent: 16527 + - uid: 22570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,16.5 - parent: 16504 - - uid: 19253 + pos: 14.5,5.5 + parent: 16527 +- proto: FirelockEdge + entities: + - uid: 83 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,16.5 - parent: 16504 - - uid: 19254 + pos: 43.5,82.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14202 + - uid: 7789 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,16.5 - parent: 16504 - - uid: 19255 - components: - - type: Transform - pos: 1.5,15.5 - parent: 16504 - - uid: 19256 - components: - - type: Transform - pos: 1.5,13.5 - parent: 16504 - - uid: 19257 - components: - - type: Transform - pos: 1.5,14.5 - parent: 16504 - - uid: 19258 - components: - - type: Transform - pos: 1.5,12.5 - parent: 16504 - - uid: 19259 - components: - - type: Transform - pos: 1.5,11.5 - parent: 16504 - - uid: 19260 + pos: 44.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - 122 + - uid: 7790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 16504 - - uid: 19261 + rot: 3.141592653589793 rad + pos: 46.5,86.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 133 + - uid: 7791 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 16504 - - uid: 19262 + pos: 42.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - 122 + - uid: 7792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 16504 - - uid: 19263 + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 2 + - uid: 7793 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 16504 - - uid: 19264 + pos: 22.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7708 + - uid: 7794 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 16504 - - uid: 19265 + pos: 42.5,71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 84 + - uid: 7795 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 16504 - - uid: 19266 + pos: 42.5,72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 84 + - uid: 7796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 16504 - - uid: 19267 + rot: 1.5707963267948966 rad + pos: 40.5,71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14202 + - uid: 7797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 16504 - - uid: 19268 + rot: 1.5707963267948966 rad + pos: 40.5,72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14202 + - uid: 7798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 16504 - - uid: 19269 + pos: 22.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 108 + - uid: 7799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 16504 - - uid: 19270 + pos: 23.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 108 + - uid: 7800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 16504 - - uid: 21200 + rot: 1.5707963267948966 rad + pos: 44.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - 122 + - uid: 7801 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,48.5 + pos: 42.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21218 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - 122 + - uid: 7802 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,48.5 + pos: 42.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21221 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - 122 + - uid: 7803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,48.5 + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21294 + - type: DeviceNetwork + deviceLists: + - 128 + - 7723 + - uid: 7804 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,48.5 + pos: 45.5,82.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21296 + - type: DeviceNetwork + deviceLists: + - 133 + - uid: 7805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-37.5 + rot: 1.5707963267948966 rad + pos: 47.5,81.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 21313 + - type: DeviceNetwork + deviceLists: + - 133 + - uid: 7806 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,49.5 + pos: 46.5,79.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21318 + - type: DeviceNetwork + deviceLists: + - 133 + - 85 + - uid: 21726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,50.5 + rot: 3.141592653589793 rad + pos: 39.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21325 + - type: DeviceNetwork + deviceLists: + - 3857 + - uid: 21727 components: - type: Transform - pos: 16.5,39.5 + pos: 43.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 21369 + - type: DeviceNetwork + deviceLists: + - 3207 + - 3857 +- proto: FirelockElectronics + entities: + - uid: 7807 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,43.5 + pos: 62.31073,48.648914 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21370 +- proto: FirelockFrame + entities: + - uid: 22571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21406 + pos: -6.5,-2.5 + parent: 16527 + - uid: 22572 components: - type: Transform - pos: 19.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 21409 + pos: -12.5,5.5 + parent: 16527 + - uid: 22573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 21414 + pos: 13.5,5.5 + parent: 16527 + - uid: 22574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21416 + pos: 15.5,5.5 + parent: 16527 +- proto: FirelockGlass + entities: + - uid: 3981 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,53.5 + pos: 36.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21442 + - type: DeviceNetwork + deviceLists: + - 3857 + - uid: 7808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,55.5 + pos: 27.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21444 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7658 + - uid: 7809 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,41.5 + pos: 38.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21478 + - type: DeviceNetwork + deviceLists: + - 100 + - 7665 + - uid: 7810 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,56.5 + pos: 28.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21481 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7658 + - uid: 7811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,53.5 + pos: 52.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21485 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - 73 + - uid: 7812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,44.5 + pos: 53.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21486 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - 72 + - uid: 7813 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,42.5 + pos: 32.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21490 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7658 + - uid: 7814 components: - type: Transform - pos: 28.5,49.5 + pos: 29.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21491 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7658 + - uid: 7815 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,50.5 + pos: 44.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21494 + - type: DeviceNetwork + deviceLists: + - 124 + - 115 + - 7724 + - uid: 7816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,48.5 + rot: -1.5707963267948966 rad + pos: 40.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21516 + - type: DeviceNetwork + deviceLists: + - 121 + - 7659 + - uid: 7817 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,53.5 + pos: 37.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21517 + - uid: 7818 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,53.5 + pos: 39.5,58.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21519 + - type: DeviceNetwork + deviceLists: + - 131 + - uid: 7819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,54.5 + pos: 12.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21649 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7692 + - 7658 + - 106 + - uid: 7820 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-40.5 + pos: 10.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21653 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7692 + - 7658 + - 106 + - uid: 7821 components: - type: Transform - pos: 18.5,-39.5 + pos: 10.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21654 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7692 + - 7658 + - 106 + - uid: 7822 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-38.5 + pos: 10.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21655 + - type: DeviceNetwork + deviceLists: + - 7664 + - 105 + - 7691 + - 7692 + - 7658 + - 106 + - uid: 7823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-38.5 + pos: 14.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21656 + - type: DeviceNetwork + deviceLists: + - 7666 + - 7695 + - uid: 7824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-38.5 + pos: 14.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21657 + - type: DeviceNetwork + deviceLists: + - 7666 + - 7695 + - uid: 7825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-38.5 + pos: 14.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21658 + - type: DeviceNetwork + deviceLists: + - 7666 + - 7693 + - uid: 7826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-38.5 + pos: 34.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21659 + - type: DeviceNetwork + deviceLists: + - 7689 + - 7693 + - 117 + - 7690 + - uid: 7827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-38.5 + rot: 3.141592653589793 rad + pos: 31.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21660 + - type: DeviceNetwork + deviceLists: + - 112 + - uid: 7828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-38.5 + rot: 3.141592653589793 rad + pos: 30.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21661 + - type: DeviceNetwork + deviceLists: + - 112 + - uid: 7829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-38.5 + rot: 1.5707963267948966 rad + pos: 25.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21666 + - type: DeviceNetwork + deviceLists: + - 7706 + - 57 + - uid: 7830 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-37.5 + pos: 22.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21667 + - type: DeviceNetwork + deviceLists: + - 7706 + - 7707 + - 57 + - uid: 7831 components: - type: Transform - pos: 20.5,-36.5 + rot: 1.5707963267948966 rad + pos: 19.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21720 + - type: DeviceNetwork + deviceLists: + - 7706 + - 7723 + - 57 + - 128 + - uid: 7832 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,49.5 + pos: 38.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21721 + - type: DeviceNetwork + deviceLists: + - 7689 + - 7698 + - 117 + - 7690 + - uid: 7833 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,49.5 + pos: 38.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21722 + - type: DeviceNetwork + deviceLists: + - 7689 + - 7698 + - 117 + - 7690 + - uid: 7834 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,50.5 + pos: 45.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeTJunction - entities: - - uid: 2378 + - type: DeviceNetwork + deviceLists: + - 7698 + - 136 + - uid: 7835 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,41.5 + pos: 47.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3164 + - type: DeviceNetwork + deviceLists: + - 7698 + - 136 + - uid: 7836 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,47.5 + pos: 38.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4245 + - type: DeviceNetwork + deviceLists: + - 7689 + - 7699 + - 117 + - 7690 + - uid: 7837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,46.5 + rot: 3.141592653589793 rad + pos: 56.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4247 + - type: DeviceNetwork + deviceLists: + - 7660 + - 7702 + - 134 + - 20470 + - uid: 7838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,46.5 + rot: 1.5707963267948966 rad + pos: 40.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4350 + - type: DeviceNetwork + deviceLists: + - 7698 + - 7699 + - uid: 7839 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,47.5 + pos: 41.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4368 + - type: DeviceNetwork + deviceLists: + - 7698 + - 7699 + - uid: 7840 components: - type: Transform - pos: 27.5,49.5 + pos: 82.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4388 + - type: DeviceNetwork + deviceLists: + - 7680 + - uid: 7841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,46.5 + pos: 82.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 5885 + - type: DeviceNetwork + deviceLists: + - 7677 + - uid: 7842 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,43.5 + rot: -1.5707963267948966 rad + pos: 34.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5933 + - type: DeviceNetwork + deviceLists: + - 7711 + - 105 + - 7691 + - 7658 + - uid: 7843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,47.5 + rot: -1.5707963267948966 rad + pos: 34.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7554 + - type: DeviceNetwork + deviceLists: + - 7711 + - 105 + - 7691 + - 7658 + - uid: 7844 components: - type: Transform - pos: 18.5,48.5 + rot: -1.5707963267948966 rad + pos: 34.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7571 + - type: DeviceNetwork + deviceLists: + - 7711 + - 105 + - 7691 + - 7658 + - uid: 7845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,36.5 + rot: -1.5707963267948966 rad + pos: 34.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8084 + - type: DeviceNetwork + deviceLists: + - 7711 + - 105 + - 7691 + - 7658 + - uid: 7846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,37.5 + rot: -1.5707963267948966 rad + pos: 46.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9358 + - uid: 7847 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,51.5 + pos: 45.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9703 + - type: DeviceNetwork + deviceLists: + - 124 + - 7724 + - uid: 7848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,16.5 + rot: -1.5707963267948966 rad + pos: 43.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9704 + - type: DeviceNetwork + deviceLists: + - 124 + - 115 + - 7724 + - uid: 7849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-0.5 + rot: -1.5707963267948966 rad + pos: 41.5,5.5 parent: 2 - - uid: 9705 + - type: DeviceNetwork + deviceLists: + - 124 + - 115 + - 7724 + - uid: 7850 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,3.5 + pos: 35.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9706 + - type: DeviceNetwork + deviceLists: + - 7690 + - 105 + - 7691 + - 7658 + - 117 + - 7689 + - uid: 7851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,3.5 + pos: 36.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9707 + - type: DeviceNetwork + deviceLists: + - 7690 + - 105 + - 7691 + - 7658 + - 117 + - 7689 + - uid: 7852 components: - type: Transform - pos: 43.5,23.5 + pos: 37.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9710 + - type: DeviceNetwork + deviceLists: + - 7690 + - 105 + - 7691 + - 7658 + - 117 + - 7689 + - uid: 7853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,56.5 + pos: 39.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9711 + - type: DeviceNetwork + deviceLists: + - 7688 + - 105 + - 7691 + - 7658 + - 118 + - 7687 + - 7686 + - uid: 7854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,0.5 + pos: 39.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9712 + - type: DeviceNetwork + deviceLists: + - 7688 + - 105 + - 7691 + - 7658 + - 118 + - 7687 + - 7686 + - uid: 7855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-4.5 + pos: 39.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9713 + - type: DeviceNetwork + deviceLists: + - 7688 + - 105 + - 7691 + - 7658 + - 118 + - 7687 + - 7686 + - uid: 7856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-5.5 + pos: 35.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9714 + - type: DeviceNetwork + deviceLists: + - 7689 + - 100 + - 7665 + - 117 + - 7690 + - uid: 7857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,66.5 + pos: 36.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9715 + - type: DeviceNetwork + deviceLists: + - 7689 + - 100 + - 7665 + - 117 + - 7690 + - uid: 7858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,71.5 + pos: 37.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9718 + - type: DeviceNetwork + deviceLists: + - 7689 + - 100 + - 7665 + - 117 + - 7690 + - uid: 7859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,36.5 + pos: 35.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9719 + - type: DeviceNetwork + deviceLists: + - 7670 + - 100 + - 7665 + - uid: 7860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,29.5 + pos: 36.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9720 + - type: DeviceNetwork + deviceLists: + - 7670 + - 100 + - 7665 + - uid: 7861 components: - type: Transform - pos: 31.5,37.5 + pos: 37.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9721 + - type: DeviceNetwork + deviceLists: + - 7670 + - 100 + - 7665 + - uid: 7862 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,3.5 + pos: 45.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9722 + - type: DeviceNetwork + deviceLists: + - 7672 + - 101 + - 102 + - uid: 7863 components: - type: Transform - pos: 48.5,70.5 + pos: 46.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9723 + - type: DeviceNetwork + deviceLists: + - 7672 + - 101 + - 102 + - uid: 7864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,64.5 + pos: 47.5,46.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9724 + - type: DeviceNetwork + deviceLists: + - 7672 + - 101 + - 102 + - uid: 7865 components: - type: Transform - pos: 48.5,24.5 + pos: 58.5,53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9725 + - type: DeviceNetwork + deviceLists: + - 7672 + - 7673 + - 102 + - 7676 + - 7678 + - uid: 7866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,30.5 + pos: 58.5,52.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9726 + - type: DeviceNetwork + deviceLists: + - 7672 + - 7673 + - 102 + - 7676 + - 7678 + - uid: 7867 components: - type: Transform - pos: 39.5,72.5 + pos: 58.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9727 + - type: DeviceNetwork + deviceLists: + - 7672 + - 7673 + - 102 + - 7676 + - 7678 + - uid: 7868 components: - type: Transform - pos: 42.5,22.5 + pos: 73.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9728 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7680 + - 103 + - 7673 + - 7676 + - uid: 7869 components: - type: Transform - pos: 48.5,-4.5 + pos: 73.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9729 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7680 + - 103 + - 7673 + - 7676 + - uid: 7870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-6.5 + pos: 73.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9730 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7680 + - 103 + - 7673 + - 7676 + - uid: 7871 components: - type: Transform - pos: 51.5,24.5 + pos: 70.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9731 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7684 + - 103 + - 7673 + - 7676 + - 7685 + - uid: 7872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,52.5 + pos: 71.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9732 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7684 + - 103 + - 7673 + - 7676 + - 7685 + - uid: 7873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,78.5 + pos: 72.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9733 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7684 + - 103 + - 7673 + - 7676 + - 7685 + - uid: 7874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,27.5 + pos: 81.5,51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9734 + - type: DeviceNetwork + deviceLists: + - 7680 + - uid: 7875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-3.5 + pos: 81.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9735 + - type: DeviceNetwork + deviceLists: + - 7677 + - uid: 7876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,3.5 + pos: 69.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9736 + - type: DeviceNetwork + deviceLists: + - 75 + - 7684 + - 7685 + - uid: 7877 components: - type: Transform - pos: 37.5,3.5 + pos: 69.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9737 + - type: DeviceNetwork + deviceLists: + - 75 + - 7684 + - 7685 + - uid: 7878 components: - type: Transform - pos: 45.5,3.5 + pos: 69.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9738 + - type: DeviceNetwork + deviceLists: + - 75 + - 7684 + - 7685 + - uid: 7879 components: - type: Transform - pos: 42.5,4.5 + pos: 13.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9739 + - type: DeviceNetwork + deviceLists: + - 7666 + - 105 + - 7691 + - 7692 + - 7658 + - 106 + - uid: 7880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-1.5 + pos: 11.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9740 + - type: DeviceNetwork + deviceLists: + - 7666 + - 105 + - 7691 + - 7692 + - 7658 + - 106 + - uid: 7881 components: - type: Transform - pos: 52.5,22.5 + pos: 11.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9741 + - type: DeviceNetwork + deviceLists: + - 7666 + - 7668 + - uid: 7882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,24.5 + pos: 12.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9742 + - type: DeviceNetwork + deviceLists: + - 7666 + - 7668 + - uid: 7883 components: - type: Transform - pos: 56.5,24.5 + pos: 13.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9743 + - type: DeviceNetwork + deviceLists: + - 7666 + - 7668 + - uid: 7884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,24.5 + pos: 13.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9744 + - type: DeviceNetwork + deviceLists: + - 7668 + - 7669 + - uid: 7885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,28.5 + pos: 12.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9745 + - type: DeviceNetwork + deviceLists: + - 7668 + - 7669 + - uid: 7886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,22.5 + pos: 11.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9746 + - type: DeviceNetwork + deviceLists: + - 7668 + - 7669 + - uid: 7887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,22.5 + pos: 10.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9747 + - type: DeviceNetwork + deviceLists: + - 7667 + - 7668 + - uid: 7888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,22.5 + pos: 10.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9748 + - type: DeviceNetwork + deviceLists: + - 7667 + - 7668 + - uid: 7889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-2.5 + pos: 24.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9749 + - type: DeviceNetwork + deviceLists: + - 7669 + - 7665 + - uid: 7890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,69.5 + pos: 24.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9750 + - type: DeviceNetwork + deviceLists: + - 7669 + - 7665 + - uid: 7891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,53.5 + pos: 24.5,36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9751 + - type: DeviceNetwork + deviceLists: + - 7669 + - 7665 + - uid: 7895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,77.5 + pos: 23.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9752 + - type: DeviceNetwork + deviceLists: + - 7707 + - 7708 + - uid: 7896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,70.5 + pos: 22.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9753 + - type: DeviceNetwork + deviceLists: + - 7707 + - 7708 + - uid: 7897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,57.5 + pos: 22.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9754 + - type: DeviceNetwork + deviceLists: + - 7708 + - 7709 + - uid: 7898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,55.5 + pos: 23.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9755 + - type: DeviceNetwork + deviceLists: + - 7708 + - 7709 + - uid: 7899 components: - type: Transform - pos: 6.5,8.5 + rot: 1.5707963267948966 rad + pos: 45.5,70.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9756 + - type: DeviceNetwork + deviceLists: + - 7721 + - 7720 + - 84 + - uid: 7900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,8.5 + rot: 1.5707963267948966 rad + pos: 45.5,69.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9757 + - type: DeviceNetwork + deviceLists: + - 7721 + - 7720 + - 84 + - uid: 7901 components: - type: Transform - pos: 26.5,25.5 + rot: 1.5707963267948966 rad + pos: 44.5,67.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9758 + - type: DeviceNetwork + deviceLists: + - 131 + - 7720 + - 84 + - uid: 7902 components: - type: Transform - pos: 20.5,25.5 + rot: 1.5707963267948966 rad + pos: 51.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9759 - components: - - type: Transform - pos: 28.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9760 + - type: DeviceNetwork + deviceLists: + - 7672 + - 7718 + - 130 + - 102 + - uid: 7903 components: - type: Transform - pos: 19.5,26.5 + rot: 1.5707963267948966 rad + pos: 50.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9761 + - type: DeviceNetwork + deviceLists: + - 7672 + - 7718 + - 130 + - 102 + - uid: 7904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-2.5 + rot: 1.5707963267948966 rad + pos: 49.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9764 + - type: DeviceNetwork + deviceLists: + - 7672 + - 7718 + - 130 + - 102 + - uid: 7905 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-0.5 + pos: 66.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9766 + - type: DeviceNetwork + deviceLists: + - 7673 + - 7674 + - 7676 + - 7678 + - uid: 7906 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-1.5 + pos: 65.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9767 + - type: DeviceNetwork + deviceLists: + - 7673 + - 7674 + - 7676 + - 7678 + - uid: 7907 components: - type: Transform - pos: 21.5,-3.5 + pos: 71.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9768 + - type: DeviceNetwork + deviceLists: + - 7676 + - 7677 + - 103 + - 7673 + - 7678 + - uid: 7908 components: - type: Transform - pos: 51.5,4.5 + pos: 70.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9769 + - type: DeviceNetwork + deviceLists: + - 7676 + - 7677 + - 103 + - 7673 + - 7678 + - uid: 7909 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,5.5 + pos: 69.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9770 + - type: DeviceNetwork + deviceLists: + - 7676 + - 7677 + - 103 + - 7673 + - 7678 + - uid: 7910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-3.5 + rot: 3.141592653589793 rad + pos: 69.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9771 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7679 + - 103 + - 7673 + - 7676 + - uid: 7911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,5.5 + rot: 3.141592653589793 rad + pos: 69.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9772 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7679 + - 103 + - 7673 + - 7676 + - uid: 7912 components: - type: Transform - pos: 23.5,0.5 + rot: 1.5707963267948966 rad + pos: 73.5,33.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9773 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7682 + - 103 + - 7673 + - 7676 + - uid: 7913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,33.5 + pos: 73.5,32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9774 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7682 + - 103 + - 7673 + - 7676 + - uid: 7914 components: - type: Transform - pos: 54.5,52.5 + rot: 1.5707963267948966 rad + pos: 73.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9775 + - type: DeviceNetwork + deviceLists: + - 7678 + - 7682 + - 103 + - 7673 + - 7676 + - uid: 7915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,41.5 + rot: 1.5707963267948966 rad + pos: 81.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9776 + - type: DeviceNetwork + deviceLists: + - 7682 + - 7683 + - uid: 7917 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,37.5 + pos: 10.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9777 + - type: DeviceNetwork + deviceLists: + - 7666 + - 7696 + - uid: 7920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,24.5 + pos: 23.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9778 + - type: DeviceNetwork + deviceLists: + - 108 + - uid: 7921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,32.5 + pos: 22.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9779 + - type: DeviceNetwork + deviceLists: + - 108 + - uid: 7922 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,49.5 + pos: 39.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9780 + - type: DeviceNetwork + deviceLists: + - 131 + - uid: 7923 components: - type: Transform - pos: 49.5,4.5 + rot: -1.5707963267948966 rad + pos: 46.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9781 + - type: DeviceNetwork + deviceLists: + - 127 + - uid: 7924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,4.5 + rot: -1.5707963267948966 rad + pos: 39.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9782 + - type: DeviceNetwork + deviceLists: + - 121 + - 129 + - 7659 + - uid: 7925 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,25.5 + pos: 46.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9783 + - type: DeviceNetwork + deviceLists: + - 124 + - 123 + - 7724 + - uid: 7926 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,36.5 + pos: 38.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9784 + - type: DeviceNetwork + deviceLists: + - 100 + - 7665 + - uid: 7927 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9785 - components: - - type: Transform - pos: 46.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,24.5 + pos: 39.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9787 + - type: DeviceNetwork + deviceLists: + - 124 + - 7724 + - uid: 7928 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,71.5 + pos: 12.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 9788 + - type: DeviceNetwork + deviceLists: + - 99 + - 7669 + - uid: 7929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,37.5 + rot: -1.5707963267948966 rad + pos: 46.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9789 + - type: DeviceNetwork + deviceLists: + - 127 + - uid: 7930 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,34.5 + pos: 37.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9790 + - type: DeviceNetwork + deviceLists: + - 121 + - 7659 + - uid: 7931 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,21.5 + pos: 41.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9791 + - type: DeviceNetwork + deviceLists: + - 121 + - 7659 + - uid: 7932 components: - type: Transform - pos: 29.5,13.5 + rot: -1.5707963267948966 rad + pos: 53.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9792 + - type: DeviceNetwork + deviceLists: + - 124 + - 7724 + - uid: 7933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,28.5 + rot: -1.5707963267948966 rad + pos: 56.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9793 + - type: DeviceNetwork + deviceLists: + - 124 + - 7724 + - uid: 7935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,30.5 + rot: -1.5707963267948966 rad + pos: 57.5,54.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9794 + - uid: 7936 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,40.5 + pos: 43.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9795 + - type: DeviceNetwork + deviceLists: + - 129 + - 124 + - 7724 + - uid: 7937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,46.5 + rot: -1.5707963267948966 rad + pos: 39.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9796 + - type: DeviceNetwork + deviceLists: + - 124 + - 7724 + - uid: 7938 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.5,53.5 + pos: 48.5,58.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9797 + - type: DeviceNetwork + deviceLists: + - 130 + - uid: 7939 components: - type: Transform - pos: 82.5,59.5 + rot: 3.141592653589793 rad + pos: 49.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9798 + - type: DeviceNetwork + deviceLists: + - 132 + - uid: 7940 components: - type: Transform - pos: 81.5,32.5 + rot: 3.141592653589793 rad + pos: 46.5,60.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9799 + - type: DeviceNetwork + deviceLists: + - 131 + - uid: 7941 components: - type: Transform - pos: 21.5,25.5 + rot: 3.141592653589793 rad + pos: 49.5,59.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9800 + - type: DeviceNetwork + deviceLists: + - 132 + - uid: 7942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,21.5 + rot: 3.141592653589793 rad + pos: 46.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9801 + - type: DeviceNetwork + deviceLists: + - 131 + - uid: 7943 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,26.5 + pos: 47.5,67.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9802 + - type: DeviceNetwork + deviceLists: + - 85 + - uid: 7944 components: - type: Transform - pos: 41.5,27.5 + rot: 3.141592653589793 rad + pos: 49.5,72.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9803 + - type: DeviceNetwork + deviceLists: + - 85 + - uid: 7945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,32.5 + rot: -1.5707963267948966 rad + pos: 55.5,60.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9804 + - type: DeviceNetwork + deviceLists: + - 132 + - uid: 7946 components: - type: Transform - pos: 75.5,16.5 + rot: -1.5707963267948966 rad + pos: 36.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9805 + - type: DeviceNetwork + deviceLists: + - 121 + - 7659 + - uid: 7947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,17.5 + pos: 16.5,80.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9806 + - type: DeviceNetwork + deviceLists: + - 137 + - uid: 7948 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,33.5 + pos: 11.5,80.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9807 + - type: DeviceNetwork + deviceLists: + - 137 + - uid: 7949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,37.5 + rot: -1.5707963267948966 rad + pos: 69.5,35.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9808 + - type: DeviceNetwork + deviceLists: + - 103 + - 7673 + - 7676 + - 7678 + - uid: 7950 components: - type: Transform - pos: 67.5,52.5 + rot: -1.5707963267948966 rad + pos: 73.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9809 + - type: DeviceNetwork + deviceLists: + - 75 + - 7684 + - 7685 + - uid: 7951 components: - type: Transform - pos: 79.5,38.5 + rot: -1.5707963267948966 rad + pos: 71.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9810 + - type: DeviceNetwork + deviceLists: + - 75 + - 7684 + - 7685 + - uid: 7952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,35.5 + rot: -1.5707963267948966 rad + pos: 60.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9811 + - type: DeviceNetwork + deviceLists: + - 118 + - 7688 + - 7687 + - 7686 + - uid: 7953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,50.5 + rot: -1.5707963267948966 rad + pos: 64.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9812 + - type: DeviceNetwork + deviceLists: + - 118 + - 7688 + - 7687 + - 7686 + - uid: 7954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,19.5 + pos: 59.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9813 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - 15683 + - uid: 7955 components: - type: Transform - pos: 43.5,13.5 + pos: 55.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9814 + - type: DeviceNetwork + deviceLists: + - 72 + - 135 + - uid: 7956 components: - type: Transform - pos: 48.5,13.5 + pos: 54.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9815 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - uid: 7957 components: - type: Transform - pos: 64.5,14.5 + pos: 57.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9816 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - 135 + - uid: 7958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,19.5 + pos: 57.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9817 + - type: DeviceNetwork + deviceLists: + - 135 + - uid: 7959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,52.5 + rot: -1.5707963267948966 rad + pos: 44.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9818 + - type: DeviceNetwork + deviceLists: + - 136 + - uid: 7960 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,61.5 + pos: 44.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9819 + - type: DeviceNetwork + deviceLists: + - 136 + - uid: 7961 components: - type: Transform - pos: 62.5,53.5 + pos: 11.5,78.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9820 + - type: DeviceNetwork + deviceLists: + - 137 + - uid: 7962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,9.5 + pos: 11.5,70.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9821 + - type: DeviceNetwork + deviceLists: + - 137 + - uid: 7963 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,32.5 + pos: 11.5,72.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9822 + - type: DeviceNetwork + deviceLists: + - 137 + - uid: 7964 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,33.5 + pos: 13.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9823 + - type: DeviceNetwork + deviceLists: + - 137 + - uid: 7965 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,38.5 + pos: 14.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9824 + - type: DeviceNetwork + deviceLists: + - 137 + - uid: 10223 components: - type: Transform - pos: 27.5,25.5 + pos: 24.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9825 + - type: DeviceNetwork + deviceLists: + - 7692 + - 106 + - uid: 12004 components: - type: Transform - pos: 42.5,28.5 + pos: 24.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9826 + - type: DeviceNetwork + deviceLists: + - 7692 + - 106 + - uid: 16525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,27.5 + pos: 24.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9827 + - type: DeviceNetwork + deviceLists: + - 7692 + - 106 + - uid: 21546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,39.5 + pos: 19.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9828 + - type: DeviceNetwork + deviceLists: + - 21668 + - 21672 + - uid: 21547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,71.5 + pos: 16.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9829 + - type: DeviceNetwork + deviceLists: + - 21668 + - uid: 21602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,72.5 + pos: 30.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9830 + - type: DeviceNetwork + deviceLists: + - 7548 + - 13499 + - uid: 21603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,30.5 + pos: 27.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9831 + - type: DeviceNetwork + deviceLists: + - 7548 + - uid: 21604 components: - type: Transform - pos: 56.5,52.5 + pos: 32.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9832 + - type: DeviceNetwork + deviceLists: + - 7548 + - 13499 + - uid: 21630 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,26.5 + pos: 13.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9833 + - type: DeviceNetwork + deviceLists: + - 7548 + - uid: 21631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,53.5 + pos: 18.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9834 + - type: DeviceNetwork + deviceLists: + - 7548 + - uid: 21632 components: - type: Transform - pos: 57.5,53.5 + pos: 28.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9835 + - type: DeviceNetwork + deviceLists: + - 7548 + - uid: 21684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,53.5 + pos: 20.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9836 + - type: DeviceNetwork + deviceLists: + - 21668 + - 16256 + - uid: 21685 components: - type: Transform - pos: 44.5,14.5 + pos: 25.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9837 + - type: DeviceNetwork + deviceLists: + - 21669 + - 21672 + - uid: 21686 components: - type: Transform - pos: 47.5,14.5 + pos: 28.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9838 + - type: DeviceNetwork + deviceLists: + - 21669 + - uid: 21687 components: - type: Transform - pos: 65.5,13.5 + pos: 24.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9839 + - type: DeviceNetwork + deviceLists: + - 21669 + - 16256 +- proto: Fireplace + entities: + - uid: 7966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,18.5 + pos: 40.5,69.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9840 + - uid: 7967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,26.5 + pos: 17.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9841 + - uid: 7968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,57.5 + pos: 30.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9842 + - uid: 7969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,62.5 + pos: 60.5,65.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9843 + - uid: 7970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,18.5 + pos: 57.5,79.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9844 +- proto: Flash + entities: + - uid: 7971 components: - type: Transform - pos: 80.5,37.5 + pos: 15.573995,8.404448 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9846 + - uid: 7972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,32.5 + pos: 20.698172,30.528963 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9847 +- proto: FlashlightLantern + entities: + - uid: 37 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,25.5 + pos: 62.482605,49.7167 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9848 + - type: HandheldLight + toggleActionEntity: 38 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 38 + - type: ActionsContainer + - uid: 22575 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9849 + rot: -1.5707963267948966 rad + pos: 2.7025146,51.60077 + parent: 16527 + - uid: 22576 components: - type: Transform - pos: 14.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9850 + pos: -2.5033722,35.472717 + parent: 16527 +- proto: FlashlightSeclite + entities: + - uid: 21380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,50.5 + rot: -0.9250245035569946 rad + pos: 10.442753,51.952263 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9852 + - type: HandheldLight + toggleActionEntity: 21381 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 21381 + - type: ActionsContainer +- proto: FlashPayload + entities: + - uid: 22578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9853 + parent: 22577 + - type: Physics + canCollide: False + - uid: 22580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9854 + parent: 22579 + - type: Physics + canCollide: False + - uid: 22582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,59.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9855 + parent: 22581 + - type: Physics + canCollide: False +- proto: FlippoLighter + entities: + - uid: 22583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,60.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9856 + rot: -1.5707963267948966 rad + pos: 16.788906,27.49173 + parent: 16527 +- proto: Floodlight + entities: + - uid: 7973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,37.5 + pos: 45.913815,99.340836 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9857 +- proto: FloodlightBroken + entities: + - uid: 12524 components: - type: Transform - pos: 28.5,4.5 + pos: 12.644675,55.259033 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9858 + - uid: 20475 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,13.5 + pos: 60.447285,17.120422 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9859 + - uid: 22584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9860 + pos: -27.720505,21.096252 + parent: 16527 +- proto: FloorChasmEntity + entities: + - uid: 22585 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9861 + pos: 26.5,52.5 + parent: 16527 + - uid: 22586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9862 + pos: -36.5,55.5 + parent: 16527 + - uid: 22587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9863 + pos: -36.5,56.5 + parent: 16527 + - uid: 22588 components: - type: Transform - pos: 31.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9864 + pos: -36.5,54.5 + parent: 16527 + - uid: 22589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9865 + pos: -36.5,52.5 + parent: 16527 + - uid: 22590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9866 + pos: -36.5,53.5 + parent: 16527 + - uid: 22591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9867 + pos: -35.5,50.5 + parent: 16527 + - uid: 22592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9868 + pos: -36.5,51.5 + parent: 16527 + - uid: 22593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9869 + pos: -36.5,50.5 + parent: 16527 + - uid: 22594 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9870 + pos: -28.5,57.5 + parent: 16527 + - uid: 22595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9871 + pos: -27.5,58.5 + parent: 16527 + - uid: 22596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9872 + pos: -27.5,57.5 + parent: 16527 + - uid: 22597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9873 + pos: -26.5,58.5 + parent: 16527 + - uid: 22598 components: - type: Transform - pos: 15.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9874 + pos: -26.5,57.5 + parent: 16527 + - uid: 22599 components: - type: Transform - pos: 27.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9875 + pos: -23.5,57.5 + parent: 16527 + - uid: 22600 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9876 + pos: -25.5,58.5 + parent: 16527 + - uid: 22601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9877 + pos: -25.5,57.5 + parent: 16527 + - uid: 22602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9878 + pos: -24.5,58.5 + parent: 16527 + - uid: 22603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9879 + pos: -24.5,57.5 + parent: 16527 + - uid: 22604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9880 + pos: -23.5,58.5 + parent: 16527 + - uid: 22605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9881 + pos: -35.5,51.5 + parent: 16527 + - uid: 22606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9882 + pos: -35.5,52.5 + parent: 16527 + - uid: 22607 components: - type: Transform - pos: 30.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9884 + pos: -35.5,53.5 + parent: 16527 + - uid: 22608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9885 + pos: -35.5,54.5 + parent: 16527 + - uid: 22609 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9886 + pos: -35.5,55.5 + parent: 16527 + - uid: 22610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9887 + pos: -35.5,56.5 + parent: 16527 + - uid: 22611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9888 + pos: -34.5,50.5 + parent: 16527 + - uid: 22612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9889 + pos: -34.5,51.5 + parent: 16527 + - uid: 22613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9890 + pos: -34.5,52.5 + parent: 16527 + - uid: 22614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9891 + pos: -34.5,53.5 + parent: 16527 + - uid: 22615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9893 + pos: -34.5,54.5 + parent: 16527 + - uid: 22616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,0.5 - parent: 2 - - uid: 9894 + pos: -34.5,55.5 + parent: 16527 + - uid: 22617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9895 + pos: -34.5,56.5 + parent: 16527 + - uid: 22618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9896 + pos: -33.5,56.5 + parent: 16527 + - uid: 22619 components: - type: Transform - pos: 44.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9897 + pos: -32.5,56.5 + parent: 16527 + - uid: 22620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9898 + pos: -31.5,56.5 + parent: 16527 + - uid: 22621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9899 + pos: -30.5,56.5 + parent: 16527 + - uid: 22622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9900 + pos: -29.5,56.5 + parent: 16527 + - uid: 22623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,69.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9902 + pos: -28.5,56.5 + parent: 16527 + - uid: 22624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9903 + pos: -27.5,56.5 + parent: 16527 + - uid: 22625 components: - type: Transform - pos: 54.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9904 + pos: -26.5,56.5 + parent: 16527 + - uid: 22626 components: - type: Transform - pos: 57.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9905 + pos: -25.5,56.5 + parent: 16527 + - uid: 22627 components: - type: Transform - pos: 58.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9906 + pos: -24.5,56.5 + parent: 16527 + - uid: 22628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,55.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9907 + pos: -23.5,56.5 + parent: 16527 + - uid: 22629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,74.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 9908 + pos: -23.5,55.5 + parent: 16527 + - uid: 22630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,67.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9909 + pos: -23.5,54.5 + parent: 16527 + - uid: 22631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,73.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9910 + pos: -23.5,53.5 + parent: 16527 + - uid: 22632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,62.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9911 + pos: -23.5,52.5 + parent: 16527 + - uid: 22633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9912 + pos: -27.5,52.5 + parent: 16527 + - uid: 22634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9913 + pos: -28.5,52.5 + parent: 16527 + - uid: 22635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,62.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10884 + pos: -29.5,52.5 + parent: 16527 + - uid: 22636 components: - type: Transform - pos: 28.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10927 + pos: -30.5,52.5 + parent: 16527 + - uid: 22637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-7.5 - parent: 2 - - uid: 10929 + pos: -30.5,51.5 + parent: 16527 + - uid: 22638 components: - type: Transform - pos: 32.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10930 + pos: -30.5,50.5 + parent: 16527 + - uid: 22639 components: - type: Transform - pos: 24.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10931 + pos: -30.5,49.5 + parent: 16527 + - uid: 22640 components: - type: Transform - pos: 32.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11952 + pos: -30.5,48.5 + parent: 16527 + - uid: 22641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13024 + pos: -30.5,47.5 + parent: 16527 + - uid: 22642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 13682 + pos: -30.5,46.5 + parent: 16527 + - uid: 22643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 13922 + pos: -30.5,45.5 + parent: 16527 + - uid: 22644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16021 + pos: -29.5,51.5 + parent: 16527 + - uid: 22645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16422 + pos: -29.5,50.5 + parent: 16527 + - uid: 22646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16457 + pos: -29.5,49.5 + parent: 16527 + - uid: 22647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16469 + pos: -29.5,48.5 + parent: 16527 + - uid: 22648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16470 + pos: -29.5,47.5 + parent: 16527 + - uid: 22649 components: - type: Transform - pos: 38.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16473 + pos: -29.5,46.5 + parent: 16527 + - uid: 22650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19271 + pos: -29.5,45.5 + parent: 16527 + - uid: 22651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,41.5 - parent: 16504 - - uid: 19272 + pos: -31.5,46.5 + parent: 16527 + - uid: 22652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,36.5 - parent: 16504 - - uid: 19273 + pos: -32.5,45.5 + parent: 16527 + - uid: 22653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19274 + pos: -32.5,46.5 + parent: 16527 + - uid: 22654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19275 + pos: -33.5,45.5 + parent: 16527 + - uid: 22655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19276 + pos: -33.5,46.5 + parent: 16527 + - uid: 22656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19277 + pos: -34.5,45.5 + parent: 16527 + - uid: 22657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19278 + pos: -34.5,46.5 + parent: 16527 + - uid: 22658 components: - type: Transform - pos: -0.5,5.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19279 + pos: -35.5,46.5 + parent: 16527 + - uid: 22659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19280 + pos: -35.5,45.5 + parent: 16527 + - uid: 22660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19281 + pos: -36.5,45.5 + parent: 16527 + - uid: 22661 components: - type: Transform - pos: 1.5,5.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19282 + pos: -36.5,46.5 + parent: 16527 + - uid: 22662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19283 + pos: -29.5,44.5 + parent: 16527 + - uid: 22663 components: - type: Transform - pos: 0.5,5.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19284 + pos: -30.5,44.5 + parent: 16527 + - uid: 22664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19285 + pos: -31.5,44.5 + parent: 16527 + - uid: 22665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,1.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19286 + pos: -32.5,44.5 + parent: 16527 + - uid: 22666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,5.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19287 + pos: -33.5,44.5 + parent: 16527 + - uid: 22667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19288 + pos: -34.5,44.5 + parent: 16527 + - uid: 22668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,1.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19289 + pos: -36.5,44.5 + parent: 16527 + - uid: 22669 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19290 + pos: -35.5,44.5 + parent: 16527 + - uid: 22670 components: - type: Transform - pos: -1.5,7.5 - parent: 16504 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19291 + pos: -28.5,58.5 + parent: 16527 + - uid: 22671 components: - type: Transform - pos: -15.5,34.5 - parent: 16504 - - uid: 19292 + pos: -29.5,57.5 + parent: 16527 + - uid: 22672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,33.5 - parent: 16504 - - uid: 19293 + pos: -29.5,58.5 + parent: 16527 + - uid: 22673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,32.5 - parent: 16504 - - uid: 19294 + pos: -30.5,57.5 + parent: 16527 + - uid: 22674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,28.5 - parent: 16504 - - uid: 19295 + pos: -30.5,58.5 + parent: 16527 + - uid: 22675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,27.5 - parent: 16504 - - uid: 19296 + pos: -31.5,57.5 + parent: 16527 + - uid: 22676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,29.5 - parent: 16504 - - uid: 19297 + pos: -31.5,58.5 + parent: 16527 + - uid: 22677 components: - type: Transform - pos: -13.5,34.5 - parent: 16504 - - uid: 19298 + pos: -32.5,58.5 + parent: 16527 + - uid: 22678 components: - type: Transform - pos: -13.5,29.5 - parent: 16504 - - uid: 19299 + pos: -33.5,57.5 + parent: 16527 + - uid: 22679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,28.5 - parent: 16504 - - uid: 19300 + pos: -33.5,58.5 + parent: 16527 + - uid: 22680 components: - type: Transform - pos: -11.5,33.5 - parent: 16504 - - uid: 19301 + pos: -34.5,57.5 + parent: 16527 + - uid: 22681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,34.5 - parent: 16504 - - uid: 19302 + pos: -35.5,57.5 + parent: 16527 + - uid: 22682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,16.5 - parent: 16504 - - uid: 19303 + pos: -34.5,58.5 + parent: 16527 + - uid: 22683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,16.5 - parent: 16504 - - uid: 21220 + pos: 29.5,48.5 + parent: 16527 + - uid: 22684 + components: + - type: Transform + pos: 28.5,48.5 + parent: 16527 + - uid: 22685 + components: + - type: Transform + pos: 27.5,49.5 + parent: 16527 + - uid: 22686 + components: + - type: Transform + pos: 28.5,49.5 + parent: 16527 + - uid: 22687 + components: + - type: Transform + pos: 27.5,50.5 + parent: 16527 + - uid: 22688 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-38.5 + pos: 26.5,51.5 + parent: 16527 + - uid: 22689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,51.5 + parent: 16527 + - uid: 22690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,51.5 + parent: 16527 + - uid: 22691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,49.5 + parent: 16527 +- proto: FloorDrain + entities: + - uid: 5051 + components: + - type: Transform + pos: 40.5,50.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 21475 + - type: Drain + range: 6 + - type: Fixtures + fixtures: {} + - uid: 5092 components: - type: Transform - pos: 25.5,53.5 + pos: 29.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21476 + - type: Drain + range: 10 + - type: Fixtures + fixtures: {} + - uid: 7974 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,53.5 + pos: 53.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21507 + - type: Fixtures + fixtures: {} + - uid: 7975 components: - type: Transform - pos: 31.5,50.5 + pos: 22.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21520 + - type: Fixtures + fixtures: {} + - uid: 7976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,46.5 + pos: 42.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21521 + - type: Drain + accumulator: 0.1664857 + - type: Fixtures + fixtures: {} + - uid: 7977 components: - type: Transform - pos: 23.5,-43.5 + pos: 52.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 21523 + - type: Drain + accumulator: 0.1664857 + - type: Fixtures + fixtures: {} + - uid: 7979 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-38.5 + pos: 66.5,48.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 21724 + - type: Drain + accumulator: 0.1664857 + - type: Fixtures + fixtures: {} + - uid: 7980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-37.5 + pos: 54.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF4040FF' -- proto: GasPort - entities: - - uid: 9914 + - type: Drain + accumulator: 0.1664857 + - type: Fixtures + fixtures: {} + - uid: 7981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,77.5 + pos: 38.5,-1.5 parent: 2 - - uid: 9915 + - type: Drain + range: 8 + - type: Fixtures + fixtures: {} + - uid: 7982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,50.5 + rot: -1.5707963267948966 rad + pos: 49.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9916 + - type: Fixtures + fixtures: {} +- proto: FloorLavaEntity + entities: + - uid: 7983 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,50.5 + pos: 56.5,79.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9917 +- proto: FloorTileItemConcrete + entities: + - uid: 22692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,50.5 - parent: 2 - - uid: 9918 + pos: 16.534021,35.540276 + parent: 16527 + - uid: 22693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 2 - - uid: 9920 + pos: 13.575688,32.134026 + parent: 16527 + - uid: 22694 + components: + - type: Transform + pos: 14.606938,32.45694 + parent: 16527 + - uid: 22695 + components: + - type: Transform + pos: 14.648604,31.321526 + parent: 16527 + - uid: 22696 + components: + - type: Transform + pos: 10.409021,36.654858 + parent: 16527 + - uid: 22697 + components: + - type: Transform + pos: 14.89298,37.852776 + parent: 16527 + - uid: 22698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.057404,49.89801 + parent: 16527 +- proto: FloorTileItemElevatorShaft + entities: + - uid: 7984 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-2.5 + pos: 82.327126,8.321228 parent: 2 - - uid: 9922 + - uid: 7985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,73.5 + rot: -1.5707963267948966 rad + pos: 92.800316,20.856379 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 13874 + - uid: 7986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-12.5 + rot: -1.5707963267948966 rad + pos: 93.362816,19.559504 parent: 2 - - uid: 16257 + - uid: 7987 components: - type: Transform - pos: 31.5,-37.5 + pos: 76.36632,6.442112 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19304 + - uid: 7988 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,25.5 - parent: 16504 -- proto: GasPressurePump - entities: - - uid: 3893 + pos: 77.45183,8.606104 + parent: 2 + - uid: 7989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,75.5 + rot: 3.141592653589793 rad + pos: 80.54558,6.2311044 parent: 2 - - uid: 9923 +- proto: FloorTileItemGrayConcrete + entities: + - uid: 22699 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,88.5 - parent: 2 - - uid: 9924 + pos: 25.320312,50.09735 + parent: 16527 + - uid: 22700 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,82.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FF7FFF' - - uid: 9925 + pos: 30.794525,49.24359 + parent: 16527 + - uid: 22701 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,78.5 - parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 9926 + pos: 29.280655,52.729675 + parent: 16527 +- proto: FloorTileItemWhite + entities: + - uid: 3103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,80.5 + pos: 54.460403,-3.8163702 parent: 2 - - type: AtmosPipeColor - color: '#FF6347FF' - - uid: 9927 +- proto: FloorWaterEntity + entities: + - uid: 7990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,76.5 + pos: 81.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#FFC0CBFF' - - uid: 9928 + - uid: 7991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,74.5 + rot: 3.141592653589793 rad + pos: 61.5,76.5 parent: 2 - - type: AtmosPipeColor - color: '#00BFFFFF' - - uid: 9929 + - uid: 7992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,72.5 + rot: 3.141592653589793 rad + pos: 60.5,77.5 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 9931 + - uid: 7993 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-11.5 + pos: 61.5,78.5 parent: 2 - - uid: 9932 + - uid: 7994 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-1.5 + pos: 60.5,76.5 parent: 2 - - uid: 9933 + - uid: 7995 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,76.5 + pos: 60.5,79.5 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 13741 + - uid: 7996 components: - type: Transform - pos: 19.5,-11.5 + pos: 81.5,19.5 parent: 2 - - uid: 16435 + - uid: 7997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-38.5 + rot: 3.141592653589793 rad + pos: 60.5,78.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 19305 + - uid: 7998 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,35.5 - parent: 16504 -- proto: GasRecycler - entities: - - uid: 9934 + pos: 59.5,77.5 + parent: 2 + - uid: 7999 components: - type: Transform - pos: 39.5,76.5 + rot: 3.141592653589793 rad + pos: 62.5,77.5 parent: 2 -- proto: GasThermoMachineFreezer - entities: - - uid: 9935 + - uid: 8000 components: - type: Transform - anchored: False - pos: 47.5,1.5 + rot: 3.141592653589793 rad + pos: 61.5,77.5 parent: 2 - - type: Physics - bodyType: Dynamic - - uid: 9936 + - uid: 8001 components: - type: Transform - pos: 36.5,84.5 + pos: 82.5,15.5 parent: 2 - - uid: 9937 + - uid: 8002 components: - type: Transform - pos: 35.5,84.5 + pos: 56.5,-14.5 parent: 2 -- proto: GasThermoMachineHeater - entities: - - uid: 9938 + - uid: 8003 components: - type: Transform - pos: 38.5,84.5 + pos: 58.5,-14.5 parent: 2 - - uid: 9939 + - uid: 8004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,74.5 + pos: 57.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasValve - entities: - - uid: 9940 + - uid: 8005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,72.5 + pos: 54.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9941 + - uid: 8006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,71.5 + pos: 55.5,-14.5 parent: 2 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 9942 + - uid: 8007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,88.5 + pos: 58.5,-14.5 parent: 2 - - uid: 9943 + - uid: 8008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,51.5 + pos: 55.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9944 + - uid: 8009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,51.5 + pos: 56.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9945 + - uid: 8010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,86.5 + pos: 54.5,-14.5 parent: 2 - - type: GasValve - open: False - - uid: 10793 + - uid: 8011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,83.5 + pos: 57.5,-14.5 parent: 2 - - type: GasValve - open: False - - uid: 10898 + - uid: 8012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,84.5 + pos: 54.5,-12.5 parent: 2 - - type: GasValve - open: False - - uid: 10907 + - uid: 8013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,83.5 + pos: 54.5,-13.5 parent: 2 - - type: GasValve - open: False - - uid: 10908 + - uid: 8014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,83.5 + pos: 55.5,-12.5 parent: 2 - - type: GasValve - open: False - - uid: 13705 + - uid: 8015 components: - type: Transform - pos: 18.5,-10.5 + pos: 55.5,-13.5 parent: 2 - - type: GasValve - open: False - - uid: 13739 + - uid: 8016 components: - type: Transform - pos: 19.5,-10.5 + pos: 56.5,-12.5 parent: 2 - - type: GasValve - open: False -- proto: GasVentPump - entities: - - uid: 635 + - uid: 8017 components: - type: Transform - pos: 33.5,57.5 + pos: 56.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 2315 + - uid: 8018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,54.5 + pos: 57.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14566 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 2381 + - uid: 8019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,41.5 + pos: 57.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3341 + - uid: 8020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,52.5 + pos: 58.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 3895 + - uid: 8021 components: - type: Transform - pos: 36.5,76.5 + pos: 58.5,-13.5 parent: 2 - - uid: 4154 + - uid: 8022 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,41.5 + pos: 54.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4169 + - uid: 8023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,46.5 + pos: 54.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 4349 + - uid: 8024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,47.5 + pos: 55.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9946 + - uid: 8025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,55.5 + pos: 55.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 130 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9947 + - uid: 8026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,36.5 + pos: 56.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 100 - - 7665 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9948 + - uid: 8027 components: - type: Transform - pos: 46.5,83.5 + pos: 56.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9949 + - uid: 8028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,30.5 + pos: 57.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 98 - - 7668 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9950 + - uid: 8029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,38.5 + pos: 57.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9951 + - uid: 8030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-6.5 + pos: 58.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 - - 7659 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9952 + - uid: 8031 components: - type: Transform - pos: 50.5,4.5 + pos: 58.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 7724 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9954 + - uid: 8032 components: - type: Transform - pos: 53.5,56.5 + pos: 82.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 102 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9957 +- proto: FloraTree05 + entities: + - uid: 8035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,81.5 + pos: 76.18449,48.718914 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9958 +- proto: FloraTreeLarge03 + entities: + - uid: 5052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,19.5 + pos: 28.894838,8.171898 parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9959 +- proto: FloraTreeLarge04 + entities: + - uid: 5093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,88.5 + pos: 30.551088,7.1406474 parent: 2 - - uid: 9960 +- proto: FloraTreeSnow03 + entities: + - uid: 8037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,16.5 + pos: 76.48694,46.088165 parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9961 +- proto: FloraTreeSnow05 + entities: + - uid: 8038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,16.5 + pos: 74.83069,44.94754 parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9962 +- proto: FolderSpawner + entities: + - uid: 22702 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 7724 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9963 + pos: -34.429688,38.367126 + parent: 16527 +- proto: FoodApple + entities: + - uid: 8039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,21.5 + pos: 29.423895,6.6131506 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15683 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9964 +- proto: FoodBagel + entities: + - uid: 8040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,19.5 + pos: 41.65019,-1.2909349 parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9965 +- proto: FoodBakedBunHoney + entities: + - uid: 8041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,81.5 + pos: 36.342575,-11.37508 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9966 +- proto: FoodBakedBunMeat + entities: + - uid: 21597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-9.5 + rot: -1.5707963267948966 rad + pos: 28.8044,57.734875 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9967 +- proto: FoodBakedPancake + entities: + - uid: 8042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-5.5 + pos: 35.33769,-1.3534349 parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9968 +- proto: FoodBanana + entities: + - uid: 8043 components: + - type: MetaData + desc: Огузку, который чистит бананы. + name: банан Алона - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,62.5 + pos: 37.39016,-27.527092 parent: 2 - - type: DeviceNetwork - deviceLists: - - 131 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9969 + - uid: 8044 components: - type: Transform - pos: 55.5,23.5 + pos: 49.622,17.590656 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9970 +- proto: FoodBoxDonkpocket + entities: + - uid: 8045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,17.5 + pos: 40.846996,-6.336485 parent: 2 - - type: DeviceNetwork - deviceLists: - - 73 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9971 + - uid: 8046 components: - type: Transform - pos: 39.5,67.5 + rot: 1.5707963267948966 rad + pos: 57.14522,41.629124 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9972 + - uid: 8047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,62.5 + pos: 42.735233,66.636795 parent: 2 - - type: DeviceNetwork - deviceLists: - - 132 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9973 + - uid: 21628 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,69.5 + pos: 26.518517,54.491257 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9974 +- proto: FoodBoxDonkpocketBerry + entities: + - uid: 8048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,71.5 + pos: 40.346996,-6.35211 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9975 +- proto: FoodBoxDonkpocketCarp + entities: + - uid: 22485 components: - type: Transform - pos: 77.5,66.5 + pos: 52.618362,48.626923 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9976 +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 8049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,55.5 + pos: 41.815746,-6.35211 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9977 + - uid: 8050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,8.5 + pos: 57.58272,41.649956 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9978 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 8051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,3.5 + pos: 41.346996,-6.35211 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9979 +- proto: FoodBoxDonkpocketTeriyaki + entities: + - uid: 8052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,13.5 + pos: 42.328983,66.699295 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9980 +- proto: FoodBoxDonut + entities: + - uid: 8053 components: - type: Transform - pos: 9.5,15.5 + pos: 24.486897,26.502321 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9981 + - uid: 8054 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,9.5 + pos: 41.501503,29.688845 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9982 + - uid: 10374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,17.5 + rot: 1.5707963267948966 rad + pos: 15.1576805,41.647793 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9983 + - uid: 11497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,18.5 + pos: 53.53435,21.567476 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9984 +- proto: FoodBoxPizza + entities: + - uid: 22705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 112 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9985 + pos: -11.801285,56.851013 + parent: 16527 +- proto: FoodBoxPizzaFilled + entities: + - uid: 22706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 118 - - 7688 - - 7687 - - 7686 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9986 + pos: -13.05127,57.46039 + parent: 16527 +- proto: FoodBreadMoldySlice + entities: + - uid: 22707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 128 - - 7723 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9987 + pos: 11.774432,13.54726 + parent: 16527 + - uid: 22708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9988 + pos: 12.493182,13.812885 + parent: 16527 + - uid: 22709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9989 + pos: 11.633807,14.562885 + parent: 16527 +- proto: FoodBreadVolcanic + entities: + - uid: 22710 components: + - type: MetaData + desc: Ужасы. + name: Syxapik - type: Transform - pos: 21.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9990 + pos: 30.304108,58.999695 + parent: 16527 +- proto: FoodBurgerBig + entities: + - uid: 8056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-1.5 + pos: 41.603313,0.6934401 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9991 +- proto: FoodBurgerCarp + entities: + - uid: 8057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,3.5 + pos: 14.056538,-15.709153 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9992 +- proto: FoodBurgerClown + entities: + - uid: 8058 components: - type: Transform - pos: 47.5,7.5 + pos: 55.48064,38.427116 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9993 + - uid: 13253 components: - type: Transform - pos: 53.5,7.5 + pos: 56.677605,24.421644 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9994 + - uid: 13342 components: - type: Transform - pos: 41.5,7.5 + pos: 56.719273,24.80706 parent: 2 - - type: DeviceNetwork - deviceLists: - - 115 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9995 +- proto: FoodBurgerMime + entities: + - uid: 8059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-3.5 + pos: 39.43638,-26.361067 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9996 +- proto: FoodCartCold + entities: + - uid: 8060 components: - type: Transform - pos: 38.5,8.5 + rot: 1.5707963267948966 rad + pos: 41.5,40.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9997 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 8063 + - 8064 + - 8061 + - 8062 + - 8065 + - 8066 + - uid: 22711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 101 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9998 + rot: -1.5707963267948966 rad + pos: 23.5,46.5 + parent: 16527 +- proto: FoodCheese + entities: + - uid: 8067 components: - type: Transform - pos: 82.5,31.5 + pos: 85.47415,60.795826 parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - 92 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 9999 +- proto: FoodCondimentBottleBBQ + entities: + - uid: 21610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,30.5 + pos: 29.1134,53.712185 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10000 +- proto: FoodCondimentPacketKetchup + entities: + - uid: 21608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,34.5 + pos: 29.321733,53.476074 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10001 + - uid: 21609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,30.5 + pos: 29.391178,53.670517 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10002 +- proto: FoodDonutApple + entities: + - uid: 8068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,17.5 + pos: 43.055157,62.58681 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20470 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10003 +- proto: FoodDonutBungo + entities: + - uid: 8069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,31.5 + pos: 41.74394,-3.27531 parent: 2 - - type: DeviceNetwork - deviceLists: - - 135 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10004 +- proto: FoodDonutChaos + entities: + - uid: 11498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,24.5 + pos: 42.52779,61.906696 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10005 +- proto: FoodDonutPink + entities: + - uid: 8070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,32.5 + pos: 42.898907,61.86806 parent: 2 - - type: DeviceNetwork - deviceLists: - - 136 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10006 + - uid: 8072 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,36.5 + pos: 59.601585,79.28232 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10007 + - uid: 8073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,16.5 + pos: 42.148907,61.821186 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10008 +- proto: FoodDonutPoison + entities: + - uid: 8075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,26.5 + pos: 59.557762,79.10704 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10009 +- proto: FoodEgg + entities: + - uid: 22712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10010 + pos: 21.322678,55.44989 + parent: 16527 + - uid: 22713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10011 + pos: 21.400818,55.54364 + parent: 16527 + - uid: 22714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 118 - - 7688 - - 7687 - - 7686 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10012 + pos: 21.603943,55.41864 + parent: 16527 + - uid: 22715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,51.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10013 + pos: 21.603958,55.621765 + parent: 16527 +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 8061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,57.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10014 + parent: 8060 + - type: Physics + canCollide: False + - uid: 8062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - 7673 - - 7676 - - 7678 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10015 + parent: 8060 + - type: Physics + canCollide: False +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 8063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,61.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10016 + parent: 8060 + - type: Physics + canCollide: False + - uid: 8064 components: - type: Transform - pos: 42.5,75.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 84 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10017 + parent: 8060 + - type: Physics + canCollide: False +- proto: FoodFrozenSundae + entities: + - uid: 8065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 117 - - 7689 - - 7690 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10018 + parent: 8060 + - type: Physics + canCollide: False + - uid: 8066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10019 + parent: 8060 + - type: Physics + canCollide: False +- proto: FoodKebabSkewer + entities: + - uid: 8077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,26.5 + pos: 91.358,17.611958 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10020 + - uid: 8078 components: - type: Transform rot: -1.5707963267948966 rad - pos: 72.5,18.5 + pos: 90.78834,15.888491 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - 7684 - - 7685 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10021 + - uid: 22716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,52.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10022 + pos: 10.4214325,61.48407 + parent: 16527 +- proto: FoodMealCubancarp + entities: + - uid: 8079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,12.5 + pos: 14.551401,-16.329641 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10023 +- proto: FoodMealSashimi + entities: + - uid: 8080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,7.5 + pos: 14.66129,-15.727499 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10025 + - uid: 8081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,49.5 + pos: 59.601585,76.624084 parent: 2 - - type: DeviceNetwork - deviceLists: - - 102 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10027 + - uid: 8082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,23.5 + pos: 59.32638,78.620026 parent: 2 - - type: DeviceNetwork - deviceLists: - - 107 - - 7666 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10028 +- proto: FoodMeatFish + entities: + - uid: 6573 components: - type: Transform - pos: 71.5,63.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10029 + parent: 6572 + - type: Temperature + currentTemperature: 149.95871 + - type: InternalTemperature + temperature: 140.0411 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,60.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10030 + parent: 6572 + - type: Temperature + currentTemperature: 149.95871 + - type: InternalTemperature + temperature: 140.0411 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6575 components: - type: Transform - pos: 82.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10031 + parent: 6572 + - type: Temperature + currentTemperature: 149.95871 + - type: InternalTemperature + temperature: 140.0411 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8085 components: - type: Transform - pos: 7.5,33.5 + pos: 13.720319,-14.773512 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7667 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10032 +- proto: FoodMeatRotten + entities: + - uid: 8086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,50.5 + pos: 14.48809,58.449265 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10033 + - type: Temperature + currentTemperature: 149.95871 + - type: InternalTemperature + temperature: 140.0411 + - uid: 8087 components: - type: Transform - pos: 18.5,55.5 + pos: 25.364307,60.152264 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10034 + - type: Temperature + currentTemperature: 149.95871 + - type: InternalTemperature + temperature: 140.0411 + - uid: 8088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-15.5 + pos: 26.240973,59.532093 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10035 + - type: Temperature + currentTemperature: 149.95871 + - type: InternalTemperature + temperature: 140.0411 + - uid: 8089 components: - type: Transform - pos: 15.5,38.5 + pos: 25.65784,58.342136 parent: 2 - - type: DeviceNetwork - deviceLists: - - 99 - - 7669 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10036 + - type: Temperature + currentTemperature: 149.95871 + - type: InternalTemperature + temperature: 140.0411 + - uid: 22717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,70.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 84 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10037 + pos: 23.371063,54.535583 + parent: 16527 +- proto: FoodMeatSlime + entities: + - uid: 21300 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,52.5 + pos: 15.983978,49.740993 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10038 + - uid: 21301 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,63.5 + pos: 16.205364,50.040474 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10039 + - uid: 21305 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,70.5 + pos: 15.749568,50.040474 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10040 + - uid: 21306 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,12.5 + pos: 15.944909,50.352974 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10041 + - uid: 21307 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,3.5 + pos: 16.37466,50.365993 parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - 105 - - 7691 - - 7692 - - 7658 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10042 + - uid: 21309 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,25.5 + pos: 15.5412035,50.352974 parent: 2 - - type: DeviceNetwork - deviceLists: - - 117 - - 7689 - - 7690 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10044 +- proto: FoodMeatSnake + entities: + - uid: 8090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,21.5 + pos: 60.554047,82.18584 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10045 + - uid: 8091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,27.5 + pos: 60.451797,82.47795 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10046 +- proto: FoodMeatWheat + entities: + - uid: 16209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,40.5 + pos: 28.346066,57.54043 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10047 + - uid: 21600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,46.5 + pos: 28.568287,57.359875 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10048 +- proto: FoodMeatXeno + entities: + - uid: 8092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,48.5 + pos: 28.032938,-7.5986853 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10049 + - uid: 22718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 118 - - 7688 - - 7687 - - 7686 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10050 + pos: 21.574188,56.45746 + parent: 16527 +- proto: FoodPieBananaCream + entities: + - uid: 3252 components: - type: Transform - pos: 76.5,40.5 + pos: 10.624778,53.21655 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10051 + - uid: 3338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,48.5 + pos: 10.734153,53.232174 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10052 + - uid: 3339 components: - type: Transform - pos: 9.5,36.5 + pos: 10.374778,53.71655 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10053 + - uid: 12149 components: - type: Transform - pos: 5.5,36.5 + pos: 10.749778,53.450924 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10054 + - uid: 21449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-1.5 + pos: 16.67708,43.76393 parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 - - 7659 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10055 + - uid: 21571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-7.5 + pos: 10.640403,53.65405 parent: 2 - - type: DeviceNetwork - deviceLists: - - 129 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10056 + - uid: 21587 components: - type: Transform - pos: 41.5,4.5 + pos: 10.359153,53.294674 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 7724 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10057 + - uid: 21588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,3.5 + pos: 10.156028,53.419674 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10058 + - uid: 21589 components: - type: Transform - pos: 38.5,88.5 + pos: 10.234153,53.5603 parent: 2 - - uid: 10059 +- proto: FoodPieXeno + entities: + - uid: 21601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,22.5 + pos: 30.342209,53.607014 parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10060 +- proto: FoodPizzaMoldySlice + entities: + - uid: 22719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,78.5 + pos: 12.555682,14.54726 + parent: 16527 + - uid: 22720 + components: + - type: Transform + pos: 11.571307,14.000385 + parent: 16527 +- proto: FoodPlate + entities: + - uid: 21593 + components: + - type: Transform + pos: 30.521908,51.586605 parent: 2 - - type: DeviceNetwork - deviceLists: - - 85 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10061 + - uid: 21596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,0.5 + pos: 27.508018,51.57272 parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10062 +- proto: FoodPlateSmall + entities: + - uid: 9693 components: - type: Transform - pos: 47.5,23.5 + pos: 29.508018,51.489384 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10063 +- proto: FoodPlateTin + entities: + - uid: 21624 components: - type: Transform - pos: 56.5,28.5 + parent: 21623 + - type: Physics + canCollide: False + - uid: 21625 + components: + - type: Transform + parent: 21623 + - type: Physics + canCollide: False + - uid: 21626 + components: + - type: Transform + parent: 21623 + - type: Physics + canCollide: False +- proto: FoodPoppy + entities: + - uid: 8095 + components: + - type: Transform + pos: 34.51092,10.621679 parent: 2 - - type: DeviceNetwork - deviceLists: - - 135 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10064 + - uid: 8096 + components: + - type: Transform + pos: 7.0148277,28.63438 + parent: 2 +- proto: FoodSnackChips + entities: + - uid: 3137 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,27.5 + pos: 74.489845,3.1316612 parent: 2 - - type: DeviceNetwork - deviceLists: - - 135 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10065 + - uid: 3141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,31.5 + pos: 73.46207,4.367772 parent: 2 - - type: DeviceNetwork - deviceLists: - - 135 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10066 +- proto: FoodSnackChocolate + entities: + - uid: 8097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,27.5 + pos: 68.53391,7.374971 parent: 2 - - type: DeviceNetwork - deviceLists: - - 72 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10067 +- proto: FoodSnackPistachios + entities: + - uid: 3144 components: - type: Transform - pos: 14.5,81.5 + pos: 77.57318,4.50101 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10068 + - uid: 3146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,73.5 + pos: 77.720604,4.6370063 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10069 +- proto: FoodSnackSyndi + entities: + - uid: 22721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,67.5 + pos: -11.433814,2.6240401 + parent: 16527 +- proto: FoodSoupBisque + entities: + - uid: 8098 + components: + - type: Transform + pos: 35.478313,0.7403151 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10070 +- proto: FoodTacoShell + entities: + - uid: 8099 components: - type: Transform - pos: 15.5,63.5 + pos: 13.432116,-16.026049 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10910 +- proto: FoodTinMRETrash + entities: + - uid: 22722 + components: + - type: Transform + pos: 23.574173,55.64496 + parent: 16527 +- proto: FoodTinPeaches + entities: + - uid: 22723 + components: + - type: Transform + pos: 24.386658,57.629333 + parent: 16527 + - uid: 22724 + components: + - type: Transform + pos: 24.667923,57.67621 + parent: 16527 +- proto: FoodTinPeachesTrash + entities: + - uid: 22725 + components: + - type: Transform + pos: 21.855408,54.785583 + parent: 16527 +- proto: FuelDispenser + entities: + - uid: 8100 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,46.5 + pos: 44.5,83.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13499 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 10919 + - uid: 8101 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,40.5 + rot: -1.5707963267948966 rad + pos: 31.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13499 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11447 + - uid: 8102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,49.5 + pos: 45.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11479 + - uid: 8103 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,52.5 + pos: 0.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 11560 +- proto: GasAnalyzer + entities: + - uid: 8106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,52.5 + pos: 47.5,-0.44 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 13057 +- proto: GasCanisterBrokenBase + entities: + - uid: 8107 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 22726 + components: + - type: Transform + pos: -13.5,38.5 + parent: 16527 + - uid: 22727 + components: + - type: Transform + pos: 17.5,45.5 + parent: 16527 +- proto: GasDualPortVentPump + entities: + - uid: 8108 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,47.5 + pos: 49.5,88.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3857 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 13349 +- proto: GasFilter + entities: + - uid: 8109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,47.5 + rot: -1.5707963267948966 rad + pos: 49.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3857 - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 13351 + color: '#FF0000FF' +- proto: GasFilterFlipped + entities: + - uid: 8110 components: - type: Transform - pos: 40.5,52.5 + rot: -1.5707963267948966 rad + pos: 52.5,88.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3857 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 13703 + - uid: 8111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,51.5 + pos: 32.5,83.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3857 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 13879 + - uid: 8112 components: - type: Transform - pos: 43.5,51.5 + pos: 32.5,73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3207 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 15356 + - uid: 8113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-19.5 + pos: 32.5,81.5 parent: 2 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16018 + - uid: 8114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 + pos: 32.5,75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 61 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16247 + - uid: 8115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-44.5 + pos: 32.5,79.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 21672 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 16325 + - uid: 8116 components: - type: Transform - pos: 19.5,-39.5 + pos: 32.5,77.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 21668 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 19306 +- proto: GasMinerCarbonDioxide + entities: + - uid: 8117 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,27.5 - parent: 16504 - - uid: 21479 + pos: 26.5,79.5 + parent: 2 + - type: GasMiner + spawnAmount: 1000 + maxExternalPressure: 1000 +- proto: GasMinerNitrogenStation + entities: + - uid: 8118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-35.5 + pos: 26.5,73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 16256 - - type: AtmosPipeColor - color: '#4169E1FF' - - uid: 21620 + - type: GasMiner + spawnAmount: 1000 + maxExternalPressure: 10000 +- proto: GasMinerOxygen + entities: + - uid: 22728 components: - type: Transform - pos: 26.5,-36.5 + pos: -18.5,38.5 + parent: 16527 +- proto: GasMinerOxygenStation + entities: + - uid: 8119 + components: + - type: Transform + pos: 26.5,75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 21669 - - type: AtmosPipeColor - color: '#4169E1FF' -- proto: GasVentPumpVox + - type: GasMiner + spawnAmount: 1000 + maxExternalPressure: 10000 +- proto: GasMinerPlasma entities: - - uid: 21334 + - uid: 8120 components: - type: Transform - pos: 16.5,40.5 + pos: 26.5,81.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2400 - - type: AtmosPipeColor - color: '#4169E1FF' -- proto: GasVentScrubber + - type: GasMiner + spawnAmount: 50 +- proto: GasMinerWaterVapor entities: - - uid: 6533 + - uid: 8121 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-38.5 + pos: 26.5,77.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 21669 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 6538 + - type: GasMiner + spawnAmount: 1000 + spawnTemperature: 523 + maxExternalPressure: 1000 + - uid: 22729 + components: + - type: Transform + pos: -6.5,1.5 + parent: 16527 +- proto: GasMixer + entities: + - uid: 3894 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,50.5 + pos: 36.5,75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6738 + - uid: 8122 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-35.5 + pos: 51.5,88.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 16256 - - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 7340 +- proto: GasMixerFlipped + entities: + - uid: 8123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-44.5 + rot: -1.5707963267948966 rad + pos: 34.5,72.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 21672 - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 9359 + color: '#4169E1FF' +- proto: GasOutletInjector + entities: + - uid: 8124 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,50.5 + pos: 54.5,88.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9510 + - uid: 8125 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,47.5 + pos: 56.5,82.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3857 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10024 + - uid: 8126 components: - type: Transform - pos: 36.5,52.5 + rot: 1.5707963267948966 rad + pos: 28.5,73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3857 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10072 + - uid: 8127 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,29.5 + pos: 28.5,75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 98 - - 7668 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10073 + - uid: 8128 components: - type: Transform - pos: 32.5,37.5 + rot: 1.5707963267948966 rad + pos: 28.5,77.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 100 - - 7665 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10074 + - uid: 8129 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,17.5 + rot: 1.5707963267948966 rad + pos: 28.5,79.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 73 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10075 + - uid: 8130 components: - type: Transform - pos: 78.5,66.5 + rot: 1.5707963267948966 rad + pos: 28.5,81.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10076 + - uid: 8131 components: - type: Transform - pos: 38.5,72.5 + rot: 1.5707963267948966 rad + pos: 28.5,83.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10077 +- proto: GasPassiveVent + entities: + - uid: 8132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-6.5 + rot: -1.5707963267948966 rad + pos: 56.5,81.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 - - 7659 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10078 + - uid: 8133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,82.5 + pos: 32.5,87.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10079 + - uid: 8134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,40.5 + pos: 27.5,73.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10081 + color: '#DC143CFF' + - uid: 8135 components: - type: Transform - pos: 40.5,67.5 + pos: 27.5,75.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10082 + color: '#00BFFFFF' + - uid: 8136 components: - type: Transform - pos: 55.5,56.5 + pos: 27.5,77.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 102 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10083 + color: '#FFC0CBFF' + - uid: 8137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,68.5 + pos: 27.5,79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10084 + color: '#808080FF' + - uid: 8138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,17.5 + pos: 27.5,81.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10085 + color: '#FF6347FF' + - uid: 8139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,20.5 + pos: 27.5,83.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10086 + color: '#00FF7FFF' + - uid: 8140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,56.5 + pos: 18.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 130 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10087 + - uid: 8142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-8.5 + rot: 1.5707963267948966 rad + pos: 29.5,71.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 7724 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10088 + - uid: 8144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-9.5 + pos: 57.5,79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10089 + color: '#17E8E2FF' + - uid: 10923 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-6.5 + pos: 18.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10090 + - uid: 10924 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,17.5 + pos: 18.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10092 + - uid: 21662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,23.5 + rot: 1.5707963267948966 rad + pos: 13.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15683 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10093 + color: '#FF4040FF' + - uid: 22730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 16527 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10094 + - uid: 22731 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 + pos: -6.5,1.5 + parent: 16527 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10095 + color: '#0000FFFF' + - uid: 22732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,63.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 131 + pos: -1.5,0.5 + parent: 16527 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10096 + color: '#0000FFFF' + - uid: 22733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,63.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 132 + pos: 2.5,0.5 + parent: 16527 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10097 + color: '#0000FFFF' + - uid: 22734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 135 + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 16527 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10098 + color: '#0000FFFF' + - uid: 22735 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 7724 + pos: -1.5,6.5 + parent: 16527 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10099 + color: '#0000FFFF' + - uid: 22736 + components: + - type: Transform + pos: -17.5,37.5 + parent: 16527 + - uid: 22737 + components: + - type: Transform + pos: -15.5,37.5 + parent: 16527 + - uid: 22738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,27.5 + parent: 16527 + - uid: 22739 + components: + - type: Transform + pos: -6.5,42.5 + parent: 16527 + - uid: 22740 + components: + - type: Transform + pos: 14.5,37.5 + parent: 16527 + - uid: 22741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,16.5 + parent: 16527 + - uid: 22742 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,57.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10100 + pos: -10.5,10.5 + parent: 16527 + - uid: 22743 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,7.5 + pos: 0.5,41.5 + parent: 16527 + - uid: 22744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,45.5 + parent: 16527 + - uid: 22745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,40.5 + parent: 16527 + - uid: 22746 + components: + - type: Transform + pos: 6.5,50.5 + parent: 16527 + - uid: 22747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,37.5 + parent: 16527 +- proto: GasPipeBend + entities: + - uid: 3171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10101 + color: '#4169E1FF' + - uid: 3174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,14.5 + pos: 41.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10102 + color: '#4169E1FF' + - uid: 3889 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,2.5 + pos: 35.5,75.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10103 + - uid: 3890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,74.5 + parent: 2 + - uid: 3892 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,7.5 + pos: 38.5,74.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10104 + - uid: 4290 components: - type: Transform - pos: 7.5,15.5 + rot: -1.5707963267948966 rad + pos: 43.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10105 + color: '#4169E1FF' + - uid: 4353 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,9.5 + pos: 16.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10106 + color: '#4169E1FF' + - uid: 4382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,17.5 + rot: -1.5707963267948966 rad + pos: 33.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10107 + color: '#4169E1FF' + - uid: 6763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,17.5 + rot: 3.141592653589793 rad + pos: 18.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10108 + color: '#FF4040FF' + - uid: 7101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,26.5 + pos: 21.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10109 + color: '#FF4040FF' + - uid: 7307 components: - type: Transform - pos: 36.5,6.5 + rot: -1.5707963267948966 rad + pos: 25.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10110 + color: '#4169E1FF' + - uid: 7558 components: - type: Transform - pos: 20.5,8.5 + rot: 3.141592653589793 rad + pos: 19.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10111 + color: '#4169E1FF' + - uid: 8145 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,5.5 + pos: 53.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10112 + - uid: 8149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 + rot: 3.141592653589793 rad + pos: 37.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 128 - - 7723 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10113 + - uid: 8151 + components: + - type: Transform + pos: 42.5,88.5 + parent: 2 + - uid: 8152 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,0.5 + pos: 51.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10114 + color: '#4169E1FF' + - uid: 8153 components: - type: Transform - pos: 40.5,7.5 + rot: 3.141592653589793 rad + pos: 39.5,64.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 115 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10115 + color: '#4169E1FF' + - uid: 8154 components: - type: Transform - pos: 37.5,8.5 + rot: 3.141592653589793 rad + pos: 40.5,66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10116 + - uid: 8155 components: - type: Transform - pos: 46.5,7.5 + rot: -1.5707963267948966 rad + pos: 46.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10117 + - uid: 8156 components: - type: Transform - pos: 52.5,7.5 + rot: -1.5707963267948966 rad + pos: 7.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10118 + - uid: 8157 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,4.5 + pos: 6.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10119 + color: '#4169E1FF' + - uid: 8158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-3.5 + pos: 29.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10120 + color: '#4169E1FF' + - uid: 8159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,32.5 + pos: 22.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - - 92 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10121 + color: '#4169E1FF' + - uid: 8160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,20.5 + rot: 3.141592653589793 rad + pos: 20.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10122 + - uid: 8161 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,31.5 + pos: 53.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10123 + - uid: 8162 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,35.5 + pos: 45.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10124 + color: '#4169E1FF' + - uid: 8163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,31.5 + rot: 3.141592653589793 rad + pos: 27.5,82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10125 + color: '#00FF7FFF' + - uid: 8164 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,12.5 + pos: 27.5,80.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10126 + color: '#FF6347FF' + - uid: 8165 components: - type: Transform - pos: 21.5,27.5 + rot: 3.141592653589793 rad + pos: 27.5,78.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10127 + color: '#808080FF' + - uid: 8166 components: - type: Transform rot: 3.141592653589793 rad - pos: 79.5,36.5 + pos: 27.5,76.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10128 + color: '#FFC0CBFF' + - uid: 8167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,18.5 + rot: 3.141592653589793 rad + pos: 27.5,74.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 117 - - 7689 - - 7690 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10129 + color: '#00BFFFFF' + - uid: 8168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,17.5 + rot: 3.141592653589793 rad + pos: 27.5,72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10130 + color: '#DC143CFF' + - uid: 8169 components: - type: Transform - pos: 27.5,27.5 + pos: 44.5,72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10131 + color: '#4169E1FF' + - uid: 8170 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,33.5 + pos: 80.5,56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 136 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10132 + - uid: 8171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,12.5 + rot: 1.5707963267948966 rad + pos: 46.5,53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 118 - - 7688 - - 7687 - - 7686 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10133 + color: '#4169E1FF' + - uid: 8172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,12.5 + rot: -1.5707963267948966 rad + pos: 46.5,44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 118 - - 7688 - - 7687 - - 7686 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10134 + color: '#4169E1FF' + - uid: 8173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,19.5 + rot: 1.5707963267948966 rad + pos: 36.5,44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - 7684 - - 7685 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10135 + color: '#4169E1FF' + - uid: 8174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,27.5 + rot: 1.5707963267948966 rad + pos: 12.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10136 + color: '#4169E1FF' + - uid: 8175 components: - type: Transform rot: -1.5707963267948966 rad - pos: 72.5,50.5 + pos: 71.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10137 + color: '#4169E1FF' + - uid: 8176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,56.5 + rot: -1.5707963267948966 rad + pos: 82.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10138 + color: '#4169E1FF' + - uid: 8177 components: - type: Transform - pos: 43.5,75.5 + rot: 1.5707963267948966 rad + pos: 37.5,43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 84 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10139 + - uid: 8178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,26.5 + rot: -1.5707963267948966 rad + pos: 47.5,43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10140 + - uid: 8179 components: - type: Transform - pos: 75.5,18.5 + rot: -1.5707963267948966 rad + pos: 70.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10141 + - uid: 8180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,12.5 + rot: 1.5707963267948966 rad + pos: 13.5,36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 118 - - 7688 - - 7687 - - 7686 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10142 + - uid: 8181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,35.5 + pos: 65.5,63.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - 7673 - - 7676 - - 7678 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10143 + color: '#4169E1FF' + - uid: 8182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,51.5 + pos: 66.5,64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10144 + - uid: 8184 components: - type: Transform rot: -1.5707963267948966 rad - pos: 83.5,59.5 + pos: 81.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10145 + - uid: 8185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,69.5 + rot: -1.5707963267948966 rad + pos: 83.5,27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 84 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10146 + color: '#4169E1FF' + - uid: 8186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,42.5 + pos: 83.5,30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 101 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10147 + color: '#4169E1FF' + - uid: 8187 components: - type: Transform - pos: 18.5,38.5 + rot: -1.5707963267948966 rad + pos: 81.5,38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 99 - - 7669 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10148 + - uid: 8188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,62.5 + pos: 80.5,64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10149 + - uid: 8189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,9.5 + rot: 3.141592653589793 rad + pos: 78.5,64.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - 105 - - 7691 - - 7692 - - 7658 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10150 + - uid: 8190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,26.5 + rot: 3.141592653589793 rad + pos: 77.5,65.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 117 - - 7689 - - 7690 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10151 + color: '#4169E1FF' + - uid: 8191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,50.5 + pos: 81.5,65.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 102 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10152 + color: '#4169E1FF' + - uid: 8193 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-4.5 + pos: 5.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10154 + color: '#4169E1FF' + - uid: 8194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,24.5 + pos: 34.5,74.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + pos: 49.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 107 - - 7666 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10155 + color: '#4169E1FF' + - uid: 8196 components: - type: Transform - pos: 70.5,63.5 + rot: 1.5707963267948966 rad + pos: 35.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10156 + - uid: 8197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,52.5 + pos: 48.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10157 + - uid: 8198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,64.5 + pos: 36.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10158 + color: '#4169E1FF' + - uid: 8199 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,15.5 + pos: 51.5,38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 7691 - - 7692 - - 7658 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10159 + color: '#4169E1FF' + - uid: 8200 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,51.5 + pos: 39.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 102 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10161 + color: '#4169E1FF' + - uid: 8201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,53.5 + rot: 3.141592653589793 rad + pos: 43.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14566 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10164 + - uid: 8202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,33.5 + rot: 3.141592653589793 rad + pos: 47.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7667 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10165 + - uid: 8203 components: - type: Transform - pos: 32.5,6.5 + rot: -1.5707963267948966 rad + pos: 38.5,86.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - 105 - - 7691 - - 7692 - - 7658 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10166 + - uid: 8204 components: - type: Transform - pos: 8.5,36.5 + rot: 3.141592653589793 rad + pos: 41.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10167 + color: '#4169E1FF' + - uid: 8205 components: - type: Transform - pos: 4.5,36.5 + pos: 44.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10168 + color: '#4169E1FF' + - uid: 8206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,22.5 + pos: 41.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10169 + color: '#4169E1FF' + - uid: 8207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,28.5 + rot: -1.5707963267948966 rad + pos: 50.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10170 + - uid: 8210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,38.5 + pos: 39.5,83.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10171 + - uid: 8211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,49.5 + rot: 3.141592653589793 rad + pos: 33.5,83.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10172 + - uid: 8212 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.5,45.5 + pos: 39.5,82.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10173 + - uid: 8213 components: - type: Transform - pos: 81.5,50.5 + rot: 1.5707963267948966 rad + pos: 33.5,82.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10174 + - uid: 8214 components: - type: Transform - pos: 77.5,40.5 + rot: 3.141592653589793 rad + pos: 33.5,81.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10175 + - uid: 8215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,48.5 + pos: 39.5,81.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10176 + - uid: 8216 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,16.5 + pos: 39.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10177 + color: '#4169E1FF' + - uid: 8217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,82.5 + pos: 33.5,86.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10178 + - uid: 8218 components: - type: Transform - pos: 43.5,8.5 + rot: -1.5707963267948966 rad + pos: 57.5,73.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10179 + color: '#17E8E2FF' + - uid: 8219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-7.5 + pos: 16.5,62.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 129 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10180 + color: '#4169E1FF' + - uid: 8220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-1.5 + rot: 3.141592653589793 rad + pos: 13.5,61.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10181 + - uid: 8221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-1.5 + pos: 15.5,61.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 - - 7659 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10182 + - uid: 8222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,68.5 + rot: 3.141592653589793 rad + pos: 14.5,62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10183 + color: '#4169E1FF' + - uid: 8223 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,23.5 + pos: 40.5,84.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10184 + - uid: 8224 components: - type: Transform - pos: 47.5,83.5 + rot: 1.5707963267948966 rad + pos: 41.5,83.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10185 + - uid: 9344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,77.5 + rot: 3.141592653589793 rad + pos: 40.5,50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 85 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10186 + color: '#4169E1FF' + - uid: 9593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,23.5 + pos: 24.5,-35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 7660 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10187 + color: '#4169E1FF' + - uid: 11512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,26.5 + pos: 38.5,75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 135 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10188 + - uid: 13768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,26.5 + pos: 19.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 135 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10189 + - uid: 13906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,30.5 + pos: 33.5,53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 135 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10190 + - uid: 16464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,17.5 + pos: 25.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10191 + color: '#4169E1FF' + - uid: 16483 components: - type: Transform - pos: 53.5,26.5 + rot: -1.5707963267948966 rad + pos: 15.5,45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 72 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10192 + - uid: 21208 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,3.5 + pos: 24.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 7724 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10193 + color: '#4169E1FF' + - uid: 21255 components: - type: Transform - pos: 13.5,81.5 + rot: -1.5707963267948966 rad + pos: 31.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10194 + color: '#0000FFFF' + - uid: 21508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,74.5 + rot: 1.5707963267948966 rad + pos: 28.5,50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10195 + - uid: 21664 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,66.5 + pos: 20.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10196 + color: '#FF4040FF' + - uid: 21665 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,62.5 + pos: 20.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10892 + color: '#FF4040FF' + - uid: 21716 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,52.5 + pos: 38.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13277 + - uid: 21717 components: - type: Transform - pos: 38.5,52.5 + rot: -1.5707963267948966 rad + pos: 42.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3857 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13316 + - uid: 22748 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,47.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3857 + pos: -2.5,7.5 + parent: 16527 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14722 + color: '#0000FFFF' + - uid: 22749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,51.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 + pos: 3.5,7.5 + parent: 16527 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15926 + color: '#0000FFFF' + - uid: 22750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 16527 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16024 + color: '#0000FFFF' + - uid: 22751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 16527 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16158 + color: '#0000FFFF' + - uid: 22752 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-15.5 - parent: 2 + pos: 2.5,1.5 + parent: 16527 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16232 + - uid: 22753 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-19.5 - parent: 2 + pos: -1.5,1.5 + parent: 16527 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16332 + - uid: 22754 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 61 + pos: -1.5,5.5 + parent: 16527 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16442 + - uid: 22755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,46.5 - parent: 2 + pos: 2.5,5.5 + parent: 16527 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16449 + - uid: 22756 components: - type: Transform - pos: 20.5,55.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16453 + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 16527 + - uid: 22757 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7548 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19307 + pos: 0.5,15.5 + parent: 16527 + - uid: 22758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19308 + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 16527 + - uid: 22759 components: - type: Transform - pos: -1.5,6.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19309 + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 16527 + - uid: 22760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19310 + pos: 8.5,33.5 + parent: 16527 + - uid: 22761 components: - type: Transform - pos: -0.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19311 + pos: -5.5,41.5 + parent: 16527 + - uid: 22762 components: - type: Transform - pos: 1.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19312 + rot: -1.5707963267948966 rad + pos: -6.5,36.5 + parent: 16527 + - uid: 22763 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19313 + pos: -10.5,36.5 + parent: 16527 + - uid: 22764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19314 + pos: 11.5,42.5 + parent: 16527 + - uid: 22765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,0.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19315 + rot: 1.5707963267948966 rad + pos: 9.5,42.5 + parent: 16527 + - uid: 22766 components: - type: Transform - pos: 2.5,6.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19316 + rot: -1.5707963267948966 rad + pos: 11.5,40.5 + parent: 16527 + - uid: 22767 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19317 + pos: 9.5,40.5 + parent: 16527 + - uid: 22768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19318 + pos: 2.5,44.5 + parent: 16527 + - uid: 22769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19319 + rot: 3.141592653589793 rad + pos: 1.5,44.5 + parent: 16527 + - uid: 22770 + components: + - type: Transform + pos: 1.5,45.5 + parent: 16527 + - uid: 22771 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19320 + pos: -0.5,40.5 + parent: 16527 + - uid: 22772 components: - type: Transform - pos: 1.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19321 + rot: 3.141592653589793 rad + pos: -5.5,34.5 + parent: 16527 + - uid: 22773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19322 + pos: 1.5,34.5 + parent: 16527 + - uid: 22774 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19323 + pos: 1.5,33.5 + parent: 16527 + - uid: 22775 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19324 + pos: -16.5,34.5 + parent: 16527 + - uid: 22776 components: - type: Transform - pos: -0.5,2.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19325 + rot: 3.141592653589793 rad + pos: -16.5,33.5 + parent: 16527 + - uid: 22777 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19326 + pos: -10.5,34.5 + parent: 16527 + - uid: 22778 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 16504 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19327 + pos: -7.5,33.5 + parent: 16527 + - uid: 22779 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,27.5 - parent: 16504 - - uid: 19328 + pos: -0.5,46.5 + parent: 16527 + - uid: 22780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,40.5 + parent: 16527 + - uid: 22781 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,33.5 - parent: 16504 - - uid: 19329 + pos: 2.5,40.5 + parent: 16527 + - uid: 22782 + components: + - type: Transform + pos: -12.5,34.5 + parent: 16527 + - uid: 22783 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,33.5 - parent: 16504 - - uid: 19330 + pos: -14.5,32.5 + parent: 16527 + - uid: 22784 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,33.5 - parent: 16504 - - uid: 19331 + pos: -14.5,34.5 + parent: 16527 + - uid: 22785 components: - type: Transform - pos: -13.5,33.5 - parent: 16504 - - uid: 19332 + rot: 1.5707963267948966 rad + pos: -14.5,29.5 + parent: 16527 + - uid: 22786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,27.5 + parent: 16527 + - uid: 22787 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,28.5 - parent: 16504 - - uid: 19333 + pos: -12.5,27.5 + parent: 16527 +- proto: GasPipeBroken + entities: + - uid: 10393 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,28.5 - parent: 16504 - - uid: 19334 + pos: 50.5,6.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,10.5 + parent: 2 + - uid: 22788 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,28.5 - parent: 16504 - - uid: 19335 + pos: 1.5,43.5 + parent: 16527 + - uid: 22789 components: - type: Transform - pos: -13.5,28.5 - parent: 16504 - - uid: 21219 + pos: -17.5,34.5 + parent: 16527 +- proto: GasPipeFourway + entities: + - uid: 2389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,52.5 + pos: 16.5,54.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7367 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21417 + color: '#4169E1FF' + - uid: 8227 components: - type: Transform - pos: 31.5,57.5 + pos: 43.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21480 + - uid: 8228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,46.5 + pos: 42.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13499 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21505 + color: '#4169E1FF' + - uid: 8229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,40.5 + pos: 47.5,68.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13499 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21663 + - uid: 8230 components: - type: Transform - pos: 18.5,-36.5 + pos: 46.5,81.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 21668 - type: AtmosPipeColor - color: '#FF4040FF' - - uid: 21718 + color: '#4169E1FF' + - uid: 8231 components: - type: Transform - pos: 42.5,51.5 + pos: 15.5,53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 3207 - type: AtmosPipeColor color: '#FF0000FF' -- proto: GasVentScrubberVox - entities: - - uid: 21335 + - uid: 8232 components: - type: Transform - pos: 17.5,41.5 + pos: 7.5,14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2400 - type: AtmosPipeColor color: '#FF0000FF' -- proto: GasVolumePump - entities: - - uid: 10198 + - uid: 8233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,71.5 + pos: 7.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10199 + - uid: 8234 components: - type: Transform - pos: 57.5,51.5 + pos: 9.5,13.5 parent: 2 - type: AtmosPipeColor color: '#4169E1FF' -- proto: Gateway - entities: - - uid: 21815 + - uid: 8235 components: - type: Transform - pos: -7.5,21.5 + pos: 21.5,4.5 parent: 2 - - type: Gateway - cooldown: 10 - enabled: True -- proto: Gauze - entities: - - uid: 19337 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8236 components: - type: Transform - pos: 11.740046,37.2521 - parent: 16504 -- proto: Gauze1 - entities: - - uid: 19338 + pos: 20.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8237 components: - type: Transform - pos: 11.865046,32.017727 - parent: 16504 - - uid: 19339 + pos: 48.5,0.5 + parent: 2 + - uid: 8238 components: - type: Transform - pos: 17.427546,35.77318 - parent: 16504 - - uid: 21373 + pos: 53.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8239 components: - type: Transform - pos: 40.106827,-27.612164 + pos: 52.5,4.5 parent: 2 -- proto: GeigerCounter - entities: - - uid: 10200 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8240 components: - type: Transform - pos: 26.739191,-11.5469475 + pos: 46.5,31.5 parent: 2 -- proto: GeneratorBasic15kW - entities: - - uid: 10201 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8241 components: - type: Transform - pos: 74.5,16.5 + pos: 45.5,30.5 parent: 2 - - type: PowerSupplier - supplyRate: 35000 - - uid: 10202 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8242 components: - - type: MetaData - name: генератор 25 кВт - type: Transform - pos: 3.5,16.5 + pos: 71.5,48.5 parent: 2 - - type: PowerSupplier - supplyRate: 25000 - - uid: 19340 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8243 components: - type: Transform - pos: -6.5,5.5 - parent: 16504 - - type: PowerSupplier - supplyRampRate: 1500 - supplyRampTolerance: 1500 - supplyRate: 55000 -- proto: GeneratorRTG - entities: - - uid: 9512 + pos: 70.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8244 components: - type: Transform - pos: 30.5,-37.5 + pos: 55.5,52.5 parent: 2 - - type: PowerSupplier - supplyRate: 20000 - - uid: 10203 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8245 components: - type: Transform - pos: 14.5,85.5 + pos: 81.5,60.5 parent: 2 - - uid: 10204 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8246 components: - type: Transform - pos: 29.5,16.5 + pos: 12.5,13.5 parent: 2 - - type: PowerSupplier - supplyRate: 50000 - - uid: 10205 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8247 components: - type: Transform - pos: 52.5,69.5 + pos: 70.5,38.5 parent: 2 -- proto: GeneratorRTGDamaged - entities: - - uid: 13683 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8248 components: - type: Transform - pos: 29.5,-37.5 + pos: 66.5,52.5 parent: 2 -- proto: GeneratorWallmountBasic - entities: - - uid: 10207 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8249 components: - type: Transform - pos: 52.5,40.5 + pos: 48.5,62.5 parent: 2 - - type: PowerSupplier - supplyRate: 10000 - - uid: 10208 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8250 components: - type: Transform - pos: 77.5,5.5 + pos: 47.5,63.5 parent: 2 -- proto: Girder - entities: - - uid: 10209 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8251 components: - type: Transform - pos: 29.5,-6.5 + pos: 43.5,20.5 parent: 2 - - uid: 10210 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8252 components: - type: Transform - pos: 29.5,-12.5 + pos: 40.5,4.5 parent: 2 - - uid: 19341 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8253 components: - type: Transform - pos: 19.5,9.5 - parent: 16504 - - uid: 19342 + pos: 46.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8254 components: - type: Transform - pos: 20.5,-3.5 - parent: 16504 - - uid: 19343 + pos: 47.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8255 components: - type: Transform - pos: 20.5,2.5 - parent: 16504 - - uid: 19344 + pos: 57.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13023 components: - type: Transform - pos: 22.5,5.5 - parent: 16504 - - uid: 19345 + pos: 41.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 21652 components: - type: Transform - pos: 21.5,-0.5 - parent: 16504 -- proto: GlowstickBase - entities: - - uid: 10211 + pos: 18.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21715 components: - type: Transform - pos: 63.5,-0.5 + pos: 38.5,50.5 parent: 2 -- proto: GravityGenerator - entities: - - uid: 12553 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22790 components: - type: Transform - pos: 50.5,48.5 - parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 19346 + pos: 0.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22791 components: - type: Transform - pos: -11.5,31.5 - parent: 16504 -- proto: GrenadeBaton - entities: - - uid: 19348 + pos: 0.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22792 components: - type: Transform - parent: 19347 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19349 + pos: -0.5,3.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22793 components: - type: Transform - parent: 19347 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: GrenadeBlast - entities: - - uid: 19352 + pos: 1.5,3.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22794 components: - type: Transform - parent: 19351 - - type: Physics - canCollide: False -- proto: GrenadeIncendiary - entities: - - uid: 1063 + pos: 0.5,3.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22795 components: - type: Transform - parent: 1057 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: GrenadeStinger - entities: - - uid: 1064 + pos: -1.5,3.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22796 components: - type: Transform - parent: 1057 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1065 + pos: 10.5,41.5 + parent: 16527 + - uid: 22797 components: - type: Transform - parent: 1057 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Grille - entities: - - uid: 2383 + pos: 9.5,41.5 + parent: 16527 + - uid: 22798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-40.5 - parent: 2 - - uid: 2385 + pos: 2.5,41.5 + parent: 16527 + - uid: 22799 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-35.5 - parent: 2 - - uid: 2386 + pos: -12.5,33.5 + parent: 16527 + - uid: 22800 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-34.5 - parent: 2 - - uid: 2391 + pos: -14.5,33.5 + parent: 16527 + - uid: 22801 + components: + - type: Transform + pos: -12.5,37.5 + parent: 16527 +- proto: GasPipeHalf + entities: + - uid: 22802 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-35.5 + pos: -17.5,36.5 + parent: 16527 +- proto: GasPipeStraight + entities: + - uid: 646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-38.5 parent: 2 - - uid: 2399 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 3154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-34.5 + rot: 1.5707963267948966 rad + pos: 26.5,54.5 parent: 2 - - uid: 3149 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-40.5 + rot: 1.5707963267948966 rad + pos: 27.5,54.5 parent: 2 - - uid: 3150 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-39.5 + rot: 1.5707963267948966 rad + pos: 30.5,54.5 parent: 2 - - uid: 3151 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 + rot: 1.5707963267948966 rad + pos: 31.5,54.5 parent: 2 - - uid: 3152 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-37.5 + pos: 32.5,53.5 parent: 2 - - uid: 3153 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-31.5 + pos: 43.5,49.5 parent: 2 - - uid: 3165 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3179 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-28.5 + pos: 42.5,50.5 parent: 2 - - uid: 3166 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3181 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-28.5 + pos: 41.5,50.5 parent: 2 - - uid: 3167 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3183 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-29.5 + pos: 37.5,50.5 parent: 2 - - uid: 3168 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-27.5 + rot: 3.141592653589793 rad + pos: 36.5,51.5 parent: 2 - - uid: 3169 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3192 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-28.5 + pos: 26.5,49.5 parent: 2 - - uid: 3211 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3340 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-26.5 + pos: 18.5,46.5 parent: 2 - - uid: 4261 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-33.5 + pos: 32.5,45.5 parent: 2 - - uid: 4265 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3983 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-33.5 + pos: 47.5,53.5 parent: 2 - - uid: 4266 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-39.5 + rot: 1.5707963267948966 rad + pos: 29.5,54.5 parent: 2 - - uid: 4268 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-31.5 + pos: 28.5,53.5 parent: 2 - - uid: 4269 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-43.5 + rot: 1.5707963267948966 rad + pos: 17.5,47.5 parent: 2 - - uid: 4270 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-44.5 + rot: 1.5707963267948966 rad + pos: 18.5,47.5 parent: 2 - - uid: 4271 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-46.5 + rot: 1.5707963267948966 rad + pos: 15.5,46.5 parent: 2 - - uid: 4272 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4358 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-46.5 + pos: 29.5,49.5 parent: 2 - - uid: 4273 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-46.5 + rot: 1.5707963267948966 rad + pos: 17.5,46.5 parent: 2 - - uid: 4274 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-47.5 + rot: 3.141592653589793 rad + pos: 32.5,47.5 parent: 2 - - uid: 4275 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4364 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-47.5 + pos: 28.5,49.5 parent: 2 - - uid: 4276 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-48.5 + rot: 3.141592653589793 rad + pos: 27.5,48.5 parent: 2 - - uid: 4277 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-48.5 + rot: 3.141592653589793 rad + pos: 32.5,48.5 parent: 2 - - uid: 4278 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4370 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-47.5 + pos: 19.5,54.5 parent: 2 - - uid: 4294 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-28.5 + rot: 3.141592653589793 rad + pos: 24.5,53.5 parent: 2 - - uid: 4295 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-27.5 + pos: 32.5,42.5 parent: 2 - - uid: 4296 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-28.5 + rot: 1.5707963267948966 rad + pos: 25.5,54.5 parent: 2 - - uid: 4301 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-29.5 + pos: 32.5,44.5 parent: 2 - - uid: 4303 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-28.5 + pos: 19.5,48.5 parent: 2 - - uid: 4325 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-40.5 + pos: 18.5,42.5 parent: 2 - - uid: 4331 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-30.5 + rot: -1.5707963267948966 rad + pos: 20.5,49.5 parent: 2 - - uid: 4332 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-28.5 + rot: -1.5707963267948966 rad + pos: 22.5,49.5 parent: 2 - - uid: 4333 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-27.5 + rot: -1.5707963267948966 rad + pos: 23.5,49.5 parent: 2 - - uid: 4334 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 5850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-26.5 + rot: 3.141592653589793 rad + pos: 38.5,45.5 parent: 2 - - uid: 4335 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 + rot: 3.141592653589793 rad + pos: 38.5,46.5 parent: 2 - - uid: 4343 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-28.5 + rot: 3.141592653589793 rad + pos: 41.5,45.5 parent: 2 - - uid: 4973 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 5876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-23.5 + rot: 3.141592653589793 rad + pos: 38.5,44.5 parent: 2 - - uid: 4987 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-33.5 + rot: 3.141592653589793 rad + pos: 41.5,46.5 parent: 2 - - uid: 4988 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 6446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-38.5 + pos: 27.5,38.5 parent: 2 - - uid: 5108 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 6534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-39.5 + pos: 18.5,45.5 parent: 2 - - uid: 5119 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-42.5 + pos: 18.5,44.5 parent: 2 - - uid: 5122 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-42.5 + pos: 18.5,43.5 parent: 2 - - uid: 5123 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-43.5 + rot: 3.141592653589793 rad + pos: 25.5,-40.5 parent: 2 - - uid: 5129 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 6764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-38.5 + rot: 3.141592653589793 rad + pos: 21.5,-42.5 parent: 2 - - uid: 5213 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 6925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-35.5 + rot: 1.5707963267948966 rad + pos: 26.5,37.5 parent: 2 - - uid: 5214 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 7311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 + rot: 3.141592653589793 rad + pos: 21.5,-43.5 parent: 2 - - uid: 5215 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 7313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-33.5 + pos: 18.5,46.5 parent: 2 - - uid: 5821 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-32.5 + rot: 1.5707963267948966 rad + pos: 20.5,-41.5 parent: 2 - - uid: 5826 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 7524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-31.5 + pos: 27.5,40.5 parent: 2 - - uid: 5828 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 7530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-31.5 + pos: 27.5,39.5 parent: 2 - - uid: 5829 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 7553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-31.5 + pos: 24.5,-36.5 parent: 2 - - uid: 10213 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 7555 components: - type: Transform - pos: 82.5,14.5 + rot: -1.5707963267948966 rad + pos: 32.5,50.5 parent: 2 - - uid: 10214 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7556 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,67.5 + pos: 25.5,-42.5 parent: 2 - - uid: 10215 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 7560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,67.5 + rot: 1.5707963267948966 rad + pos: 19.5,-41.5 parent: 2 - - uid: 10217 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 7892 components: - type: Transform - pos: 50.5,50.5 + rot: 3.141592653589793 rad + pos: 28.5,38.5 parent: 2 - - uid: 10218 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,16.5 + rot: 1.5707963267948966 rad + pos: 36.5,74.5 parent: 2 - - uid: 10219 + - uid: 8256 components: - type: Transform - pos: 58.5,44.5 + rot: 1.5707963267948966 rad + pos: 40.5,-6.5 parent: 2 - - uid: 10221 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-0.5 + pos: 32.5,84.5 parent: 2 - - uid: 10222 + - uid: 8258 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-2.5 + pos: 42.5,17.5 parent: 2 - - uid: 10223 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-1.5 + rot: 3.141592653589793 rad + pos: 55.5,55.5 parent: 2 - - uid: 10224 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8260 components: - type: Transform - pos: 62.5,38.5 + rot: 3.141592653589793 rad + pos: 40.5,-5.5 parent: 2 - - uid: 10225 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,39.5 + pos: 45.5,-1.5 parent: 2 - - uid: 10226 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8262 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,2.5 + pos: 54.5,26.5 parent: 2 - - uid: 10227 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8263 components: - type: Transform - pos: 10.5,-10.5 + rot: 1.5707963267948966 rad + pos: 57.5,40.5 parent: 2 - - uid: 10228 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8264 components: - type: Transform - pos: 36.5,85.5 + rot: 3.141592653589793 rad + pos: 47.5,57.5 parent: 2 - - uid: 10229 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,58.5 + rot: -1.5707963267948966 rad + pos: 55.5,81.5 parent: 2 - - uid: 10230 + - uid: 8266 components: - type: Transform - pos: 68.5,68.5 + rot: -1.5707963267948966 rad + pos: 55.5,82.5 parent: 2 - - uid: 10231 + - uid: 8267 components: - type: Transform rot: -1.5707963267948966 rad - pos: 82.5,22.5 + pos: 54.5,81.5 parent: 2 - - uid: 10232 + - uid: 8269 components: - type: Transform - pos: 72.5,69.5 + rot: -1.5707963267948966 rad + pos: 43.5,83.5 parent: 2 - - uid: 10233 + - uid: 8270 components: - type: Transform - pos: 66.5,68.5 + rot: 3.141592653589793 rad + pos: 53.5,36.5 parent: 2 - - uid: 10234 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8271 components: - type: Transform - pos: 49.5,62.5 + rot: 1.5707963267948966 rad + pos: 41.5,19.5 parent: 2 - - uid: 10235 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8272 components: - type: Transform - pos: 77.5,69.5 + rot: 1.5707963267948966 rad + pos: 41.5,17.5 parent: 2 - - uid: 10236 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8273 components: - type: Transform - pos: 76.5,69.5 + rot: 1.5707963267948966 rad + pos: 45.5,16.5 parent: 2 - - uid: 10237 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8274 components: - type: Transform - pos: 84.5,68.5 + pos: 43.5,5.5 parent: 2 - - uid: 10238 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8275 components: - type: Transform - pos: 57.5,35.5 + rot: 1.5707963267948966 rad + pos: 48.5,3.5 parent: 2 - - uid: 10239 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8276 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,63.5 + pos: 46.5,3.5 parent: 2 - - uid: 10240 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8277 components: - type: Transform - pos: 49.5,61.5 + pos: 47.5,72.5 parent: 2 - - uid: 10241 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,62.5 + pos: 47.5,73.5 parent: 2 - - uid: 10242 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,18.5 + pos: 47.5,76.5 parent: 2 - - uid: 10243 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,16.5 + rot: 3.141592653589793 rad + pos: 49.5,3.5 parent: 2 - - uid: 10244 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8282 components: - type: Transform rot: -1.5707963267948966 rad - pos: 83.5,22.5 + pos: 37.5,-3.5 parent: 2 - - uid: 10245 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8283 components: - type: Transform - pos: 58.5,42.5 + pos: 45.5,-3.5 parent: 2 - - uid: 10246 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,22.5 + pos: 45.5,-5.5 parent: 2 - - uid: 10247 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8285 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,38.5 + pos: 46.5,-5.5 parent: 2 - - uid: 10248 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,85.5 + rot: 3.141592653589793 rad + pos: 37.5,2.5 parent: 2 - - uid: 10249 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8287 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,44.5 + pos: 37.5,1.5 parent: 2 - - uid: 10250 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8288 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,67.5 + pos: 40.5,1.5 parent: 2 - - uid: 10251 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8289 components: - type: Transform - pos: 70.5,69.5 + rot: -1.5707963267948966 rad + pos: 39.5,-3.5 parent: 2 - - uid: 10252 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8290 components: - type: Transform - pos: 56.5,95.5 + rot: 1.5707963267948966 rad + pos: 40.5,3.5 parent: 2 - - uid: 10253 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8291 components: - type: Transform - pos: 53.5,64.5 + rot: 1.5707963267948966 rad + pos: 39.5,3.5 parent: 2 - - uid: 10254 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8292 components: - type: Transform - pos: 55.5,92.5 + rot: -1.5707963267948966 rad + pos: 46.5,-4.5 parent: 2 - - uid: 10255 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8293 components: - type: Transform - pos: 56.5,93.5 + rot: -1.5707963267948966 rad + pos: 47.5,-5.5 parent: 2 - - uid: 10256 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8294 components: - type: Transform - pos: 21.5,-22.5 + rot: -1.5707963267948966 rad + pos: 43.5,84.5 parent: 2 - - uid: 10257 + - uid: 8295 components: - type: Transform - pos: 52.5,64.5 + rot: -1.5707963267948966 rad + pos: 45.5,84.5 parent: 2 - - uid: 10258 + - uid: 8296 components: - type: Transform - pos: 49.5,63.5 + rot: -1.5707963267948966 rad + pos: 48.5,84.5 parent: 2 - - uid: 10259 + - uid: 8297 components: - type: Transform - pos: 53.5,95.5 + rot: -1.5707963267948966 rad + pos: 52.5,3.5 parent: 2 - - uid: 10260 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8298 components: - type: Transform - pos: 60.5,88.5 + rot: -1.5707963267948966 rad + pos: 53.5,38.5 parent: 2 - - uid: 10261 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8299 components: - type: Transform - pos: 53.5,93.5 + rot: 1.5707963267948966 rad + pos: 52.5,38.5 parent: 2 - - uid: 10262 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8300 components: - type: Transform - pos: 25.5,-23.5 + rot: 1.5707963267948966 rad + pos: 55.5,40.5 parent: 2 - - uid: 10263 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,69.5 + rot: -1.5707963267948966 rad + pos: 44.5,84.5 parent: 2 - - uid: 10264 + - uid: 8302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,68.5 + rot: -1.5707963267948966 rad + pos: 54.5,82.5 parent: 2 - - uid: 10265 + - uid: 8303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,69.5 + rot: -1.5707963267948966 rad + pos: 44.5,83.5 parent: 2 - - uid: 10266 + - uid: 8304 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,67.5 + pos: 55.5,54.5 parent: 2 - - uid: 10267 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,67.5 + rot: -1.5707963267948966 rad + pos: 36.5,-3.5 parent: 2 - - uid: 10268 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,68.5 + rot: -1.5707963267948966 rad + pos: 19.5,53.5 parent: 2 - - uid: 10270 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,67.5 + pos: 46.5,76.5 parent: 2 - - uid: 10271 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8311 components: - type: Transform - pos: 43.5,91.5 + pos: 46.5,74.5 parent: 2 - - uid: 10273 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8312 components: - type: Transform - pos: 49.5,91.5 + pos: 47.5,75.5 parent: 2 - - uid: 10274 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,15.5 + pos: 47.5,74.5 parent: 2 - - uid: 10275 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8314 components: - type: Transform - pos: 81.5,14.5 + pos: 46.5,72.5 parent: 2 - - uid: 10276 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,33.5 + rot: 1.5707963267948966 rad + pos: 49.5,62.5 parent: 2 - - uid: 10277 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,32.5 + rot: 1.5707963267948966 rad + pos: 47.5,62.5 parent: 2 - - uid: 10278 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,28.5 + rot: 1.5707963267948966 rad + pos: 42.5,66.5 parent: 2 - - uid: 10279 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8318 components: - type: Transform - pos: 5.5,4.5 + rot: 1.5707963267948966 rad + pos: 46.5,63.5 parent: 2 - - uid: 10280 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8319 components: - type: Transform - pos: 4.5,4.5 + rot: 3.141592653589793 rad + pos: 48.5,57.5 parent: 2 - - uid: 10281 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8320 components: - type: Transform - pos: 2.5,0.5 + rot: 3.141592653589793 rad + pos: 47.5,54.5 parent: 2 - - uid: 10282 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8321 components: - type: Transform - pos: -0.5,7.5 + rot: 3.141592653589793 rad + pos: 48.5,58.5 parent: 2 - - uid: 10283 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8322 components: - type: Transform - pos: 0.5,7.5 + rot: 3.141592653589793 rad + pos: 48.5,66.5 parent: 2 - - uid: 10284 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8323 components: - type: Transform - pos: 8.5,11.5 + pos: 39.5,66.5 parent: 2 - - uid: 10285 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8324 components: - type: Transform - pos: 10.5,15.5 + rot: 1.5707963267948966 rad + pos: 40.5,64.5 parent: 2 - - uid: 10286 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8325 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,14.5 + pos: 47.5,61.5 parent: 2 - - uid: 10287 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8326 components: - type: Transform - pos: 14.5,26.5 + rot: 3.141592653589793 rad + pos: 47.5,60.5 parent: 2 - - uid: 10288 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8328 components: - type: Transform - pos: 6.5,12.5 + rot: 1.5707963267948966 rad + pos: 45.5,66.5 parent: 2 - - uid: 10289 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8329 components: - type: Transform - pos: -0.5,12.5 + rot: 3.141592653589793 rad + pos: 48.5,63.5 parent: 2 - - uid: 10290 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8330 components: - type: Transform - pos: -0.5,13.5 + pos: 47.5,70.5 parent: 2 - - uid: 10291 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8331 components: - type: Transform - pos: -1.5,7.5 + pos: 47.5,71.5 parent: 2 - - uid: 10292 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,10.5 + rot: 1.5707963267948966 rad + pos: 54.5,38.5 parent: 2 - - uid: 10293 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8333 components: - type: Transform - pos: 6.5,0.5 + rot: 3.141592653589793 rad + pos: 53.5,55.5 parent: 2 - - uid: 10294 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8334 components: - type: Transform - pos: 5.5,0.5 + rot: 3.141592653589793 rad + pos: 37.5,0.5 parent: 2 - - uid: 10295 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8335 components: - type: Transform - pos: 14.5,11.5 + pos: 38.5,4.5 parent: 2 - - uid: 10296 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8336 components: - type: Transform - pos: 34.5,26.5 + pos: 37.5,-4.5 parent: 2 - - uid: 10297 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8337 components: - type: Transform - pos: 22.5,31.5 + rot: 3.141592653589793 rad + pos: 44.5,-4.5 parent: 2 - - uid: 10298 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8338 components: - type: Transform - pos: 30.5,29.5 + rot: 3.141592653589793 rad + pos: 44.5,-3.5 parent: 2 - - uid: 10299 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8339 components: - type: Transform - pos: 26.5,31.5 + rot: 3.141592653589793 rad + pos: 44.5,-2.5 parent: 2 - - uid: 10300 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8340 components: - type: Transform - pos: 23.5,31.5 + rot: -1.5707963267948966 rad + pos: 47.5,81.5 parent: 2 - - uid: 10301 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8341 components: - type: Transform - pos: 24.5,31.5 + pos: 46.5,73.5 parent: 2 - - uid: 10302 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8342 components: - type: Transform - pos: 17.5,26.5 + pos: 46.5,77.5 parent: 2 - - uid: 10303 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8343 components: - type: Transform - pos: 27.5,31.5 + rot: 1.5707963267948966 rad + pos: 48.5,68.5 parent: 2 - - uid: 10304 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8344 components: - type: Transform - pos: 19.5,-3.5 + rot: 1.5707963267948966 rad + pos: 49.5,68.5 parent: 2 - - uid: 10305 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8345 components: - type: Transform - pos: 18.5,28.5 + rot: 1.5707963267948966 rad + pos: 56.5,40.5 parent: 2 - - uid: 10306 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8346 components: - type: Transform - pos: 34.5,24.5 + rot: -1.5707963267948966 rad + pos: 47.5,84.5 parent: 2 - - uid: 10307 + - uid: 8347 components: - type: Transform - pos: 14.5,20.5 + rot: -1.5707963267948966 rad + pos: 46.5,84.5 parent: 2 - - uid: 10308 + - uid: 8348 components: - type: Transform - pos: 14.5,24.5 + rot: 1.5707963267948966 rad + pos: 48.5,63.5 parent: 2 - - uid: 10309 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8349 components: - type: Transform - pos: 25.5,31.5 + rot: 3.141592653589793 rad + pos: 47.5,64.5 parent: 2 - - uid: 10310 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8350 components: - type: Transform - pos: 28.5,31.5 + rot: 1.5707963267948966 rad + pos: 49.5,63.5 parent: 2 - - uid: 10311 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8351 components: - type: Transform - pos: 18.5,29.5 + rot: -1.5707963267948966 rad + pos: 44.5,23.5 parent: 2 - - uid: 10312 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8352 components: - type: Transform - pos: 30.5,28.5 + rot: -1.5707963267948966 rad + pos: 45.5,23.5 parent: 2 - - uid: 10313 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8353 components: - type: Transform - pos: 21.5,31.5 + rot: -1.5707963267948966 rad + pos: 35.5,86.5 parent: 2 - - uid: 10314 + - uid: 8354 components: - type: Transform - pos: 20.5,31.5 + pos: 38.5,87.5 parent: 2 - - uid: 10315 + - uid: 8355 components: - type: Transform - pos: 19.5,-0.5 + rot: -1.5707963267948966 rad + pos: 46.5,-1.5 parent: 2 - - uid: 10316 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8356 components: - type: Transform - pos: 14.5,28.5 + rot: -1.5707963267948966 rad + pos: 39.5,71.5 parent: 2 - - uid: 10317 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8357 components: - type: Transform - pos: 14.5,29.5 + rot: 1.5707963267948966 rad + pos: 43.5,6.5 parent: 2 - - uid: 10318 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8358 components: - type: Transform - pos: 14.5,32.5 + pos: 51.5,19.5 parent: 2 - - uid: 10319 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8359 components: - type: Transform - pos: 14.5,33.5 + rot: 3.141592653589793 rad + pos: 40.5,2.5 parent: 2 - - uid: 10320 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8360 components: - type: Transform - pos: 16.5,35.5 + rot: 3.141592653589793 rad + pos: 37.5,-5.5 parent: 2 - - uid: 10321 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8361 components: - type: Transform - pos: 17.5,35.5 + pos: 51.5,20.5 parent: 2 - - uid: 10322 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8362 components: - type: Transform - pos: 20.5,35.5 + pos: 51.5,21.5 parent: 2 - - uid: 10323 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8363 components: - type: Transform - pos: 21.5,35.5 + rot: -1.5707963267948966 rad + pos: 41.5,88.5 parent: 2 - - uid: 10324 + - uid: 8364 components: - type: Transform - pos: 27.5,35.5 + pos: 52.5,19.5 parent: 2 - - uid: 10325 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8365 components: - type: Transform - pos: 28.5,35.5 + pos: 39.5,-3.5 parent: 2 - - uid: 10326 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8366 components: - type: Transform - pos: 31.5,35.5 + pos: 42.5,18.5 parent: 2 - - uid: 10327 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8367 components: - type: Transform - pos: 32.5,35.5 + rot: 1.5707963267948966 rad + pos: 46.5,64.5 parent: 2 - - uid: 10328 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8368 components: - type: Transform - pos: 34.5,33.5 + rot: -1.5707963267948966 rad + pos: 44.5,22.5 parent: 2 - - uid: 10329 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8369 components: - type: Transform - pos: 34.5,32.5 + rot: 3.141592653589793 rad + pos: 49.5,-5.5 parent: 2 - - uid: 10330 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8370 components: - type: Transform - pos: 34.5,29.5 + pos: 45.5,-5.5 parent: 2 - - uid: 10331 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8371 components: - type: Transform - pos: 34.5,28.5 + rot: -1.5707963267948966 rad + pos: 49.5,-0.5 parent: 2 - - uid: 10332 + - uid: 8372 components: - type: Transform - pos: 19.5,-1.5 + pos: 52.5,18.5 parent: 2 - - uid: 10333 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8373 components: - type: Transform - pos: 14.5,19.5 + rot: 1.5707963267948966 rad + pos: 45.5,17.5 parent: 2 - - uid: 10334 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8374 components: - type: Transform - pos: 25.5,35.5 + rot: 1.5707963267948966 rad + pos: 42.5,64.5 parent: 2 - - uid: 10335 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8375 components: - type: Transform - pos: 23.5,35.5 + rot: 1.5707963267948966 rad + pos: 43.5,64.5 parent: 2 - - uid: 10336 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8376 components: - type: Transform - pos: 24.5,35.5 + rot: -1.5707963267948966 rad + pos: 35.5,71.5 parent: 2 - - uid: 10337 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 8377 components: - type: Transform - pos: 14.5,18.5 + rot: -1.5707963267948966 rad + pos: 35.5,72.5 parent: 2 - - uid: 10338 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8378 components: - type: Transform - pos: 16.5,20.5 + rot: -1.5707963267948966 rad + pos: 35.5,82.5 parent: 2 - - uid: 10339 + - uid: 8379 components: - type: Transform - pos: 22.5,15.5 + rot: -1.5707963267948966 rad + pos: 46.5,82.5 parent: 2 - - uid: 10340 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8380 components: - type: Transform - pos: 44.5,27.5 + rot: -1.5707963267948966 rad + pos: 36.5,83.5 parent: 2 - - uid: 10341 + - uid: 8381 components: - type: Transform - pos: 22.5,11.5 + pos: 47.5,53.5 parent: 2 - - uid: 10342 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8382 components: - type: Transform - pos: 19.5,5.5 + rot: -1.5707963267948966 rad + pos: 49.5,22.5 parent: 2 - - uid: 10343 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8383 components: - type: Transform - pos: 34.5,5.5 + rot: 1.5707963267948966 rad + pos: 60.5,21.5 parent: 2 - - uid: 10344 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8384 components: - type: Transform - pos: 39.5,6.5 + rot: 1.5707963267948966 rad + pos: 59.5,21.5 parent: 2 - - uid: 10345 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8385 components: - type: Transform - pos: 48.5,5.5 + rot: -1.5707963267948966 rad + pos: 35.5,83.5 parent: 2 - - uid: 10346 + - uid: 8386 components: - type: Transform - pos: 46.5,5.5 + rot: 3.141592653589793 rad + pos: 47.5,59.5 parent: 2 - - uid: 10347 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8387 components: - type: Transform - pos: 56.5,-6.5 + pos: 51.5,18.5 parent: 2 - - uid: 10348 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8388 components: - type: Transform - pos: 55.5,-6.5 + rot: -1.5707963267948966 rad + pos: 46.5,22.5 parent: 2 - - uid: 10349 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8389 components: - type: Transform - pos: 54.5,-6.5 + pos: 45.5,23.5 parent: 2 - - uid: 10350 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8390 components: - type: Transform - pos: 53.5,-6.5 + rot: -1.5707963267948966 rad + pos: 56.5,38.5 parent: 2 - - uid: 10351 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8391 components: - type: Transform - pos: 38.5,20.5 + rot: 1.5707963267948966 rad + pos: 43.5,66.5 parent: 2 - - uid: 10352 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8392 components: - type: Transform - pos: 38.5,19.5 + rot: -1.5707963267948966 rad + pos: 33.5,72.5 parent: 2 - - uid: 10353 + - uid: 8393 components: - type: Transform - pos: 38.5,16.5 + rot: -1.5707963267948966 rad + pos: 33.5,74.5 parent: 2 - - uid: 10354 + - uid: 8394 components: - type: Transform - pos: 38.5,17.5 + rot: -1.5707963267948966 rad + pos: 41.5,22.5 parent: 2 - - uid: 10357 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8395 components: - type: Transform - pos: 38.5,27.5 + rot: 3.141592653589793 rad + pos: 47.5,62.5 parent: 2 - - uid: 10358 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8396 components: - type: Transform - pos: 46.5,25.5 + rot: 3.141592653589793 rad + pos: 54.5,24.5 parent: 2 - - uid: 10359 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8397 components: - type: Transform - pos: 38.5,31.5 + rot: 1.5707963267948966 rad + pos: 57.5,21.5 parent: 2 - - uid: 10360 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8398 components: - type: Transform - pos: 38.5,30.5 + rot: 3.141592653589793 rad + pos: 34.5,73.5 parent: 2 - - uid: 10361 + - uid: 8399 components: - type: Transform - pos: 51.5,37.5 + rot: 1.5707963267948966 rad + pos: 58.5,21.5 parent: 2 - - uid: 10362 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8400 components: - type: Transform - pos: 55.5,19.5 + rot: 1.5707963267948966 rad + pos: 44.5,16.5 parent: 2 - - uid: 10363 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8401 components: - type: Transform - pos: 57.5,19.5 + rot: -1.5707963267948966 rad + pos: 43.5,22.5 parent: 2 - - uid: 10364 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8402 components: - type: Transform - pos: 58.5,19.5 + rot: 3.141592653589793 rad + pos: 47.5,65.5 parent: 2 - - uid: 10365 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8403 components: - type: Transform - pos: 54.5,19.5 + rot: 3.141592653589793 rad + pos: 48.5,60.5 parent: 2 - - uid: 10366 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8404 components: - type: Transform - pos: 48.5,32.5 + rot: -1.5707963267948966 rad + pos: 36.5,82.5 parent: 2 - - uid: 10367 + - uid: 8405 components: - type: Transform - pos: 59.5,47.5 + rot: 1.5707963267948966 rad + pos: 45.5,70.5 parent: 2 - - uid: 10368 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8406 components: - type: Transform - pos: 62.5,54.5 + pos: 57.5,27.5 parent: 2 - - uid: 10369 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8407 components: - type: Transform - pos: 52.5,67.5 + rot: -1.5707963267948966 rad + pos: 5.5,7.5 parent: 2 - - uid: 10370 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8408 components: - type: Transform - pos: 8.5,42.5 + rot: -1.5707963267948966 rad + pos: 6.5,7.5 parent: 2 - - uid: 10371 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8409 components: - type: Transform - pos: 8.5,41.5 + rot: 3.141592653589793 rad + pos: 7.5,8.5 parent: 2 - - uid: 10377 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8410 components: - type: Transform - pos: 31.5,24.5 + rot: 3.141592653589793 rad + pos: 7.5,9.5 parent: 2 - - uid: 10378 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8411 components: - type: Transform - pos: 84.5,52.5 + rot: 3.141592653589793 rad + pos: 7.5,10.5 parent: 2 - - uid: 10379 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8412 components: - type: Transform - pos: 17.5,24.5 + rot: 3.141592653589793 rad + pos: 7.5,11.5 parent: 2 - - uid: 10380 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8413 components: - type: Transform - pos: 31.5,26.5 + rot: 3.141592653589793 rad + pos: 7.5,12.5 parent: 2 - - uid: 10381 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8414 components: - type: Transform - pos: 61.5,-6.5 + rot: 3.141592653589793 rad + pos: 7.5,13.5 parent: 2 - - uid: 10382 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,32.5 + rot: 1.5707963267948966 rad + pos: 8.5,14.5 parent: 2 - - uid: 10383 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8416 components: - type: Transform - pos: 5.5,39.5 + rot: 1.5707963267948966 rad + pos: 9.5,14.5 parent: 2 - - uid: 10384 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8417 components: - type: Transform - pos: 4.5,39.5 + rot: 1.5707963267948966 rad + pos: 10.5,14.5 parent: 2 - - uid: 10385 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8418 components: - type: Transform - pos: 3.5,39.5 + rot: 1.5707963267948966 rad + pos: 11.5,14.5 parent: 2 - - uid: 10386 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8419 components: - type: Transform - pos: 7.5,39.5 + rot: 1.5707963267948966 rad + pos: 5.5,14.5 parent: 2 - - uid: 10387 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8420 components: - type: Transform - pos: 28.5,65.5 + rot: 1.5707963267948966 rad + pos: 6.5,14.5 parent: 2 - - uid: 10388 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8421 components: - type: Transform - pos: 11.5,67.5 + pos: 7.5,6.5 parent: 2 - - uid: 10389 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8422 components: - type: Transform - pos: 10.5,73.5 + pos: 7.5,5.5 parent: 2 - - uid: 10390 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8423 components: - type: Transform - pos: 11.5,75.5 + pos: 7.5,4.5 parent: 2 - - uid: 10394 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8424 components: - type: Transform - pos: 10.5,69.5 + pos: 7.5,3.5 parent: 2 - - uid: 10395 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8425 components: - type: Transform - pos: -1.5,22.5 + rot: -1.5707963267948966 rad + pos: 5.5,2.5 parent: 2 - - uid: 10397 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8426 components: - type: Transform - pos: 11.5,68.5 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 parent: 2 - - uid: 10398 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8427 components: - type: Transform - pos: 11.5,66.5 + rot: 1.5707963267948966 rad + pos: 5.5,13.5 parent: 2 - - uid: 10399 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8428 components: - type: Transform - pos: 10.5,71.5 + rot: 1.5707963267948966 rad + pos: 6.5,13.5 parent: 2 - - uid: 10401 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8429 components: - type: Transform - pos: 38.5,-13.5 + rot: 1.5707963267948966 rad + pos: 7.5,13.5 parent: 2 - - uid: 10402 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8430 components: - type: Transform - pos: 10.5,77.5 + rot: 1.5707963267948966 rad + pos: 8.5,13.5 parent: 2 - - uid: 10406 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8431 components: - type: Transform - pos: 10.5,79.5 + rot: 1.5707963267948966 rad + pos: 10.5,13.5 parent: 2 - - uid: 10408 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8432 components: - type: Transform - pos: 10.5,81.5 + rot: 1.5707963267948966 rad + pos: 11.5,13.5 parent: 2 - - uid: 10410 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8433 components: - type: Transform - pos: 11.5,82.5 + pos: 9.5,9.5 parent: 2 - - uid: 10411 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8434 components: - type: Transform - pos: 11.5,83.5 + pos: 9.5,10.5 parent: 2 - - uid: 10413 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8435 components: - type: Transform - pos: 11.5,74.5 + pos: 9.5,11.5 parent: 2 - - uid: 10415 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8436 components: - type: Transform - pos: 11.5,76.5 + pos: 9.5,12.5 parent: 2 - - uid: 10416 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8437 components: - type: Transform - pos: 10.5,20.5 + rot: -1.5707963267948966 rad + pos: 5.5,8.5 parent: 2 - - uid: 10418 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8438 components: - type: Transform - pos: 16.5,-20.5 + rot: -1.5707963267948966 rad + pos: 7.5,8.5 parent: 2 - - uid: 10419 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8439 components: - type: Transform - pos: 29.5,-20.5 + rot: -1.5707963267948966 rad + pos: 8.5,8.5 parent: 2 - - uid: 10420 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8440 components: - type: Transform - pos: 33.5,-19.5 + rot: -1.5707963267948966 rad + pos: 5.5,3.5 parent: 2 - - uid: 10421 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8441 components: - type: Transform - pos: 33.5,-18.5 + rot: 3.141592653589793 rad + pos: 6.5,4.5 parent: 2 - - uid: 10422 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8442 components: - type: Transform - pos: 34.5,65.5 + rot: 3.141592653589793 rad + pos: 6.5,5.5 parent: 2 - - uid: 10423 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8443 components: - type: Transform - pos: 33.5,65.5 + rot: 3.141592653589793 rad + pos: 6.5,6.5 parent: 2 - - uid: 10424 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8444 components: - type: Transform - pos: 53.5,-12.5 + rot: 3.141592653589793 rad + pos: 6.5,7.5 parent: 2 - - uid: 10425 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8445 components: - type: Transform - pos: 53.5,-13.5 + pos: 9.5,14.5 parent: 2 - - uid: 10426 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8446 components: - type: Transform - pos: 69.5,1.5 + pos: 15.5,10.5 parent: 2 - - uid: 10427 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8447 components: - type: Transform - pos: 76.5,16.5 + pos: 15.5,11.5 parent: 2 - - uid: 10428 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8448 components: - type: Transform - pos: 76.5,18.5 + pos: 15.5,12.5 parent: 2 - - uid: 10429 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8449 components: - type: Transform - pos: 73.5,13.5 + pos: 14.5,10.5 parent: 2 - - uid: 10430 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8450 components: - type: Transform - pos: 73.5,21.5 + pos: 14.5,11.5 parent: 2 - - uid: 10431 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8451 components: - type: Transform - pos: 84.5,49.5 + pos: 14.5,12.5 parent: 2 - - uid: 10432 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8452 components: - type: Transform - pos: 85.5,49.5 + rot: -1.5707963267948966 rad + pos: 28.5,25.5 parent: 2 - - uid: 10433 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8453 components: - type: Transform - pos: 84.5,47.5 + rot: -1.5707963267948966 rad + pos: 25.5,25.5 parent: 2 - - uid: 10434 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8454 components: - type: Transform - pos: 85.5,47.5 + rot: -1.5707963267948966 rad + pos: 24.5,25.5 parent: 2 - - uid: 10435 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8455 components: - type: Transform - pos: 86.5,49.5 + rot: -1.5707963267948966 rad + pos: 23.5,25.5 parent: 2 - - uid: 10436 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8456 components: - type: Transform - pos: 86.5,47.5 + rot: -1.5707963267948966 rad + pos: 22.5,25.5 parent: 2 - - uid: 10437 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8457 components: - type: Transform - pos: 86.5,42.5 + rot: 3.141592653589793 rad + pos: 26.5,22.5 parent: 2 - - uid: 10438 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8458 components: - type: Transform - pos: 85.5,42.5 + rot: 3.141592653589793 rad + pos: 26.5,23.5 parent: 2 - - uid: 10439 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8459 components: - type: Transform - pos: 84.5,42.5 + rot: 3.141592653589793 rad + pos: 26.5,24.5 parent: 2 - - uid: 10440 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8460 components: - type: Transform - pos: 86.5,40.5 + rot: 3.141592653589793 rad + pos: 29.5,24.5 parent: 2 - - uid: 10441 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8461 components: - type: Transform - pos: 85.5,40.5 + rot: 3.141592653589793 rad + pos: 29.5,23.5 parent: 2 - - uid: 10442 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8462 components: - type: Transform - pos: 84.5,40.5 + pos: 20.5,22.5 parent: 2 - - uid: 10443 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8463 components: - type: Transform - pos: 84.5,45.5 + pos: 20.5,23.5 parent: 2 - - uid: 10444 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8464 components: - type: Transform - pos: 84.5,44.5 + pos: 20.5,24.5 parent: 2 - - uid: 10445 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8465 components: - type: Transform - pos: 84.5,38.5 + rot: 3.141592653589793 rad + pos: 20.5,18.5 parent: 2 - - uid: 10446 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8466 components: - type: Transform - pos: 84.5,37.5 + rot: 3.141592653589793 rad + pos: 20.5,19.5 parent: 2 - - uid: 10447 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8467 components: - type: Transform - pos: 84.5,36.5 + rot: 3.141592653589793 rad + pos: 20.5,20.5 parent: 2 - - uid: 10448 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8468 components: - type: Transform - pos: 74.5,25.5 + rot: 3.141592653589793 rad + pos: 20.5,21.5 parent: 2 - - uid: 10449 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8469 components: - type: Transform - pos: 75.5,25.5 + rot: 3.141592653589793 rad + pos: 26.5,19.5 parent: 2 - - uid: 10450 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8470 components: - type: Transform - pos: 76.5,25.5 + rot: 3.141592653589793 rad + pos: 26.5,20.5 parent: 2 - - uid: 10451 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8471 components: - type: Transform - pos: 77.5,26.5 + rot: 3.141592653589793 rad + pos: 29.5,17.5 parent: 2 - - uid: 10452 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8472 components: - type: Transform - pos: 77.5,27.5 + rot: 3.141592653589793 rad + pos: 29.5,18.5 parent: 2 - - uid: 10453 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8473 components: - type: Transform - pos: 77.5,28.5 + rot: 3.141592653589793 rad + pos: 29.5,19.5 parent: 2 - - uid: 10454 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8474 components: - type: Transform - pos: 76.5,29.5 + rot: 3.141592653589793 rad + pos: 29.5,20.5 parent: 2 - - uid: 10455 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8475 components: - type: Transform - pos: 75.5,29.5 + rot: 3.141592653589793 rad + pos: 29.5,21.5 parent: 2 - - uid: 10456 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8476 components: - type: Transform - pos: 74.5,29.5 + rot: 1.5707963267948966 rad + pos: 19.5,25.5 parent: 2 - - uid: 10457 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8477 components: - type: Transform - pos: 73.5,28.5 + rot: 1.5707963267948966 rad + pos: 18.5,25.5 parent: 2 - - uid: 10458 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8478 components: - type: Transform - pos: 73.5,27.5 + rot: 1.5707963267948966 rad + pos: 17.5,25.5 parent: 2 - - uid: 10459 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8479 components: - type: Transform - pos: 73.5,26.5 + rot: 1.5707963267948966 rad + pos: 16.5,25.5 parent: 2 - - uid: 10460 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8480 components: - type: Transform - pos: 79.5,43.5 + rot: 1.5707963267948966 rad + pos: 15.5,25.5 parent: 2 - - uid: 10461 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8481 components: - type: Transform - pos: 73.5,50.5 + rot: 1.5707963267948966 rad + pos: 14.5,25.5 parent: 2 - - uid: 10462 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8482 components: - type: Transform - pos: 73.5,49.5 + rot: 1.5707963267948966 rad + pos: 13.5,25.5 parent: 2 - - uid: 10463 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8483 components: - type: Transform - pos: 73.5,48.5 + rot: 1.5707963267948966 rad + pos: 27.5,17.5 parent: 2 - - uid: 10464 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8484 components: - type: Transform - pos: 73.5,46.5 + rot: 3.141592653589793 rad + pos: 28.5,18.5 parent: 2 - - uid: 10465 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8485 components: - type: Transform - pos: 73.5,45.5 + rot: 3.141592653589793 rad + pos: 28.5,21.5 parent: 2 - - uid: 10466 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8486 components: - type: Transform - pos: 73.5,44.5 + rot: 3.141592653589793 rad + pos: 28.5,22.5 parent: 2 - - uid: 10467 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8487 components: - type: Transform - pos: 78.5,43.5 + rot: 3.141592653589793 rad + pos: 28.5,23.5 parent: 2 - - uid: 10468 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8488 components: - type: Transform - pos: 77.5,44.5 + rot: 3.141592653589793 rad + pos: 28.5,25.5 parent: 2 - - uid: 10469 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8489 components: - type: Transform - pos: 77.5,45.5 + rot: -1.5707963267948966 rad + pos: 26.5,26.5 parent: 2 - - uid: 10470 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8490 components: - type: Transform - pos: 77.5,46.5 + rot: -1.5707963267948966 rad + pos: 25.5,26.5 parent: 2 - - uid: 10471 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8491 components: - type: Transform - pos: 77.5,48.5 + rot: -1.5707963267948966 rad + pos: 24.5,26.5 parent: 2 - - uid: 10472 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8492 components: - type: Transform - pos: 77.5,49.5 + rot: -1.5707963267948966 rad + pos: 22.5,26.5 parent: 2 - - uid: 10473 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8493 components: - type: Transform - pos: 82.5,35.5 + rot: -1.5707963267948966 rad + pos: 20.5,26.5 parent: 2 - - uid: 10474 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8494 components: - type: Transform - pos: 73.5,34.5 + rot: -1.5707963267948966 rad + pos: 18.5,26.5 parent: 2 - - uid: 10475 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8495 components: - type: Transform - pos: 81.5,35.5 + rot: -1.5707963267948966 rad + pos: 17.5,26.5 parent: 2 - - uid: 10476 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8496 components: - type: Transform - pos: 79.5,35.5 + rot: -1.5707963267948966 rad + pos: 16.5,26.5 parent: 2 - - uid: 10477 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8497 components: - type: Transform - pos: 78.5,35.5 + rot: -1.5707963267948966 rad + pos: 15.5,26.5 parent: 2 - - uid: 10478 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8498 components: - type: Transform - pos: 76.5,35.5 + rot: -1.5707963267948966 rad + pos: 14.5,26.5 parent: 2 - - uid: 10479 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8499 components: - type: Transform - pos: 75.5,35.5 + pos: 19.5,25.5 parent: 2 - - uid: 10480 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8500 components: - type: Transform - pos: 84.5,27.5 + pos: 19.5,24.5 parent: 2 - - uid: 10481 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8501 components: - type: Transform - pos: 83.5,27.5 + pos: 19.5,23.5 parent: 2 - - uid: 10482 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8502 components: - type: Transform - pos: 84.5,31.5 + pos: 19.5,22.5 parent: 2 - - uid: 10483 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8503 components: - type: Transform - pos: 84.5,30.5 + pos: 19.5,21.5 parent: 2 - - uid: 10484 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8504 components: - type: Transform - pos: 84.5,33.5 + pos: 19.5,20.5 parent: 2 - - uid: 10485 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8505 components: - type: Transform - pos: 84.5,34.5 + pos: 19.5,19.5 parent: 2 - - uid: 10486 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,19.5 + pos: 19.5,18.5 parent: 2 - - uid: 10487 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8507 components: - type: Transform - pos: 79.5,22.5 + rot: -1.5707963267948966 rad + pos: 25.5,17.5 parent: 2 - - uid: 10488 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8508 components: - type: Transform - pos: 78.5,22.5 + rot: -1.5707963267948966 rad + pos: 26.5,17.5 parent: 2 - - uid: 10489 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8509 components: - type: Transform - pos: 79.5,20.5 + rot: -1.5707963267948966 rad + pos: 31.5,26.5 parent: 2 - - uid: 10490 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8510 components: - type: Transform - pos: 78.5,20.5 + rot: -1.5707963267948966 rad + pos: 30.5,26.5 parent: 2 - - uid: 10491 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8511 components: - type: Transform - pos: 64.5,54.5 + rot: -1.5707963267948966 rad + pos: 29.5,26.5 parent: 2 - - uid: 10492 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8512 components: - type: Transform - pos: 63.5,54.5 + rot: 1.5707963267948966 rad + pos: 27.5,20.5 parent: 2 - - uid: 10493 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8513 components: - type: Transform - pos: 31.5,72.5 + rot: 1.5707963267948966 rad + pos: 26.5,4.5 parent: 2 - - uid: 10494 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8514 components: - type: Transform - pos: 31.5,73.5 + rot: 1.5707963267948966 rad + pos: 25.5,4.5 parent: 2 - - uid: 10495 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8515 components: - type: Transform - pos: 31.5,74.5 + rot: 1.5707963267948966 rad + pos: 24.5,4.5 parent: 2 - - uid: 10496 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8516 components: - type: Transform - pos: 31.5,75.5 + rot: 1.5707963267948966 rad + pos: 23.5,4.5 parent: 2 - - uid: 10497 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8517 components: - type: Transform - pos: 31.5,76.5 + rot: 1.5707963267948966 rad + pos: 22.5,4.5 parent: 2 - - uid: 10498 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8518 components: - type: Transform - pos: 31.5,77.5 + pos: 21.5,7.5 parent: 2 - - uid: 10499 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8519 components: - type: Transform - pos: 31.5,78.5 + pos: 21.5,6.5 parent: 2 - - uid: 10500 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8520 components: - type: Transform - pos: 31.5,79.5 + pos: 21.5,5.5 parent: 2 - - uid: 10501 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8521 components: - type: Transform - pos: 31.5,81.5 + rot: -1.5707963267948966 rad + pos: 18.5,4.5 parent: 2 - - uid: 10502 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8522 components: - type: Transform - pos: 31.5,82.5 + rot: -1.5707963267948966 rad + pos: 19.5,4.5 parent: 2 - - uid: 10503 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8523 components: - type: Transform - pos: 31.5,83.5 + rot: -1.5707963267948966 rad + pos: 20.5,4.5 parent: 2 - - uid: 10504 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8524 components: - type: Transform - pos: 31.5,80.5 + rot: 3.141592653589793 rad + pos: 21.5,3.5 parent: 2 - - uid: 10505 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8525 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,80.5 + pos: 21.5,2.5 parent: 2 - - uid: 10506 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8526 components: - type: Transform - pos: 82.5,69.5 + rot: 3.141592653589793 rad + pos: 21.5,1.5 parent: 2 - - uid: 10507 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8527 components: - type: Transform - pos: 61.5,87.5 + rot: 3.141592653589793 rad + pos: 21.5,0.5 parent: 2 - - uid: 10508 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8528 components: - type: Transform - pos: 35.5,85.5 + rot: 1.5707963267948966 rad + pos: 25.5,-0.5 parent: 2 - - uid: 10509 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8529 components: - type: Transform - pos: 29.5,73.5 + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 parent: 2 - - uid: 10510 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8530 components: - type: Transform - pos: 29.5,75.5 + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 parent: 2 - - uid: 10511 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8531 components: - type: Transform - pos: 29.5,77.5 + rot: 1.5707963267948966 rad + pos: 22.5,-0.5 parent: 2 - - uid: 10512 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8532 components: - type: Transform - pos: 29.5,79.5 + pos: 22.5,-3.5 parent: 2 - - uid: 10513 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8533 components: - type: Transform - pos: 29.5,81.5 + pos: 22.5,-4.5 parent: 2 - - uid: 10514 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8534 components: - type: Transform - pos: 29.5,83.5 + pos: 22.5,-5.5 parent: 2 - - uid: 10515 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8535 components: - type: Transform - pos: 31.5,71.5 + pos: 22.5,-6.5 parent: 2 - - uid: 10516 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8537 components: - type: Transform - pos: 51.5,67.5 + pos: 22.5,-8.5 parent: 2 - - uid: 10517 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8538 components: - type: Transform - pos: 40.5,76.5 + pos: 22.5,-9.5 parent: 2 - - uid: 10518 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8539 components: - type: Transform - pos: 16.5,78.5 + pos: 22.5,-10.5 parent: 2 - - uid: 10519 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8540 components: - type: Transform - pos: 16.5,76.5 + pos: 22.5,-11.5 parent: 2 - - uid: 10520 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8541 components: - type: Transform - pos: 16.5,75.5 + pos: 22.5,-12.5 parent: 2 - - uid: 10521 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8542 components: - type: Transform - pos: 16.5,74.5 + pos: 22.5,-13.5 parent: 2 - - uid: 10522 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8543 components: - type: Transform - pos: 16.5,73.5 + pos: 22.5,-14.5 parent: 2 - - uid: 10523 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8544 components: - type: Transform - pos: 16.5,71.5 + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 parent: 2 - - uid: 10524 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8545 components: - type: Transform - pos: 16.5,70.5 + rot: -1.5707963267948966 rad + pos: 19.5,-2.5 parent: 2 - - uid: 10525 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8546 components: - type: Transform - pos: 16.5,68.5 + rot: -1.5707963267948966 rad + pos: 20.5,-2.5 parent: 2 - - uid: 10526 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8547 components: - type: Transform - pos: 33.5,95.5 + rot: 1.5707963267948966 rad + pos: 18.5,5.5 parent: 2 - - uid: 10527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8548 components: - type: Transform - pos: 36.5,95.5 + rot: 1.5707963267948966 rad + pos: 19.5,5.5 parent: 2 - - uid: 10528 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8549 components: - type: Transform - pos: 38.5,95.5 + pos: 20.5,7.5 parent: 2 - - uid: 10529 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8550 components: - type: Transform - pos: 35.5,93.5 + pos: 20.5,6.5 parent: 2 - - uid: 10530 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8551 components: - type: Transform - pos: 33.5,93.5 + rot: -1.5707963267948966 rad + pos: 21.5,5.5 parent: 2 - - uid: 10531 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8552 components: - type: Transform - pos: 26.5,86.5 + rot: -1.5707963267948966 rad + pos: 22.5,5.5 parent: 2 - - uid: 10532 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8553 components: - type: Transform - pos: 27.5,86.5 + rot: -1.5707963267948966 rad + pos: 23.5,5.5 parent: 2 - - uid: 10533 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8554 components: - type: Transform - pos: 28.5,86.5 + rot: -1.5707963267948966 rad + pos: 24.5,5.5 parent: 2 - - uid: 10534 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8555 components: - type: Transform - pos: 28.5,88.5 + rot: -1.5707963267948966 rad + pos: 25.5,5.5 parent: 2 - - uid: 10535 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8556 components: - type: Transform - pos: 28.5,89.5 + rot: -1.5707963267948966 rad + pos: 26.5,5.5 parent: 2 - - uid: 10536 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8557 components: - type: Transform - pos: 40.5,75.5 + rot: 3.141592653589793 rad + pos: 20.5,4.5 parent: 2 - - uid: 10537 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8558 components: - type: Transform - pos: 40.5,74.5 + rot: 3.141592653589793 rad + pos: 20.5,3.5 parent: 2 - - uid: 10538 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8559 components: - type: Transform - pos: 10.5,21.5 + rot: 3.141592653589793 rad + pos: 20.5,2.5 parent: 2 - - uid: 10539 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8560 components: - type: Transform - pos: 10.5,23.5 + rot: 3.141592653589793 rad + pos: 20.5,1.5 parent: 2 - - uid: 10540 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8561 components: - type: Transform - pos: 30.5,-20.5 + rot: 3.141592653589793 rad + pos: 23.5,-2.5 parent: 2 - - uid: 10542 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8562 components: - type: Transform - pos: 28.5,-20.5 + rot: 3.141592653589793 rad + pos: 23.5,-4.5 parent: 2 - - uid: 10543 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8563 components: - type: Transform - pos: 15.5,-20.5 + rot: 3.141592653589793 rad + pos: 23.5,-5.5 parent: 2 - - uid: 10544 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8564 components: - type: Transform - pos: 17.5,-20.5 + rot: 3.141592653589793 rad + pos: 23.5,-6.5 parent: 2 - - uid: 10545 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8565 components: - type: Transform - pos: 33.5,-17.5 + rot: 3.141592653589793 rad + pos: 23.5,-7.5 parent: 2 - - uid: 10546 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8566 components: - type: Transform - pos: 40.5,-13.5 + rot: 3.141592653589793 rad + pos: 23.5,-8.5 parent: 2 - - uid: 10553 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8567 components: - type: Transform - pos: 84.5,61.5 + rot: 3.141592653589793 rad + pos: 23.5,-9.5 parent: 2 - - uid: 10554 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8568 components: - type: Transform - pos: 84.5,59.5 + rot: 3.141592653589793 rad + pos: 23.5,-10.5 parent: 2 - - uid: 10555 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8570 components: - type: Transform - pos: 84.5,60.5 + rot: 3.141592653589793 rad + pos: 23.5,-12.5 parent: 2 - - uid: 10556 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8571 components: - type: Transform - pos: 86.5,61.5 + rot: 3.141592653589793 rad + pos: 23.5,-13.5 parent: 2 - - uid: 10557 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8572 components: - type: Transform - pos: 86.5,60.5 + rot: 3.141592653589793 rad + pos: 23.5,-14.5 parent: 2 - - uid: 10558 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8573 components: - type: Transform - pos: 86.5,59.5 + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 parent: 2 - - uid: 10559 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8574 components: - type: Transform - pos: 85.5,62.5 + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - - uid: 10560 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8575 components: - type: Transform - pos: 87.5,62.5 + rot: 1.5707963267948966 rad + pos: 20.5,-3.5 parent: 2 - - uid: 10561 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8576 components: - type: Transform - pos: 87.5,58.5 + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 parent: 2 - - uid: 10562 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8577 components: - type: Transform - pos: 85.5,58.5 + rot: 3.141592653589793 rad + pos: 23.5,-1.5 parent: 2 - - uid: 10563 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8578 components: - type: Transform - pos: 84.5,64.5 + rot: 3.141592653589793 rad + pos: 23.5,-0.5 parent: 2 - - uid: 10564 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8579 components: - type: Transform - pos: 85.5,64.5 + rot: -1.5707963267948966 rad + pos: 22.5,0.5 parent: 2 - - uid: 10565 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8580 components: - type: Transform - pos: 86.5,64.5 + rot: -1.5707963267948966 rad + pos: 21.5,0.5 parent: 2 - - uid: 10566 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8581 components: - type: Transform - pos: 87.5,64.5 + rot: -1.5707963267948966 rad + pos: 25.5,0.5 parent: 2 - - uid: 10567 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8582 components: - type: Transform - pos: 87.5,56.5 + rot: -1.5707963267948966 rad + pos: 24.5,0.5 parent: 2 - - uid: 10568 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8583 components: - type: Transform - pos: 86.5,56.5 + rot: 1.5707963267948966 rad + pos: 71.5,35.5 parent: 2 - - uid: 10569 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8584 components: - type: Transform - pos: 85.5,56.5 + rot: -1.5707963267948966 rad + pos: 46.5,50.5 parent: 2 - - uid: 10570 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8585 components: - type: Transform - pos: 84.5,56.5 + pos: 43.5,-0.5 parent: 2 - - uid: 10571 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8586 components: - type: Transform - pos: 38.5,36.5 + pos: 43.5,2.5 parent: 2 - - uid: 10572 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8587 components: - type: Transform - pos: 22.5,63.5 + rot: 3.141592653589793 rad + pos: 40.5,0.5 parent: 2 - - uid: 10573 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8588 components: - type: Transform - pos: 9.5,59.5 + rot: 3.141592653589793 rad + pos: 40.5,-0.5 parent: 2 - - uid: 10574 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8589 components: - type: Transform - pos: 9.5,57.5 + pos: 43.5,3.5 parent: 2 - - uid: 10575 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8590 components: - type: Transform - pos: 9.5,58.5 + pos: 43.5,0.5 parent: 2 - - uid: 10576 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8591 components: - type: Transform - pos: 77.5,50.5 + pos: 45.5,1.5 parent: 2 - - uid: 10577 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8592 components: - type: Transform - pos: 53.5,67.5 + rot: 3.141592653589793 rad + pos: 44.5,4.5 parent: 2 - - uid: 10578 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8593 components: - type: Transform - pos: 62.5,50.5 + rot: 3.141592653589793 rad + pos: 44.5,5.5 parent: 2 - - uid: 10579 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8594 components: - type: Transform - pos: 60.5,50.5 + rot: 3.141592653589793 rad + pos: 44.5,-7.5 parent: 2 - - uid: 10580 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8595 components: - type: Transform - pos: 64.5,65.5 + pos: 38.5,7.5 parent: 2 - - uid: 10581 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8596 components: - type: Transform - pos: 63.5,65.5 + pos: 38.5,6.5 parent: 2 - - uid: 10582 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8597 components: - type: Transform - pos: 65.5,65.5 + pos: 38.5,5.5 parent: 2 - - uid: 10583 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8598 components: - type: Transform - pos: 65.5,65.5 + rot: -1.5707963267948966 rad + pos: 35.5,4.5 parent: 2 - - uid: 10584 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8599 components: - type: Transform - pos: 80.5,50.5 + rot: -1.5707963267948966 rad + pos: 34.5,4.5 parent: 2 - - uid: 10585 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8600 components: - type: Transform - pos: 80.5,49.5 + rot: -1.5707963267948966 rad + pos: 33.5,4.5 parent: 2 - - uid: 10586 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8601 components: - type: Transform - pos: 80.5,48.5 + rot: 3.141592653589793 rad + pos: 47.5,6.5 parent: 2 - - uid: 10587 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8602 components: - type: Transform - pos: 80.5,46.5 + rot: 3.141592653589793 rad + pos: 47.5,5.5 parent: 2 - - uid: 10588 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8603 components: - type: Transform - pos: 80.5,45.5 + rot: 3.141592653589793 rad + pos: 47.5,4.5 parent: 2 - - uid: 10589 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8604 components: - type: Transform - pos: 80.5,44.5 + rot: -1.5707963267948966 rad + pos: 47.5,-4.5 parent: 2 - - uid: 10590 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8605 components: - type: Transform - pos: 73.5,40.5 + rot: 3.141592653589793 rad + pos: 53.5,-2.5 parent: 2 - - uid: 10591 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8606 components: - type: Transform - pos: 73.5,42.5 + rot: 3.141592653589793 rad + pos: 53.5,-1.5 parent: 2 - - uid: 10592 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8607 components: - type: Transform - pos: 75.5,39.5 + rot: 3.141592653589793 rad + pos: 53.5,-0.5 parent: 2 - - uid: 10593 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8608 components: - type: Transform - pos: 76.5,39.5 + rot: 3.141592653589793 rad + pos: 53.5,0.5 parent: 2 - - uid: 10594 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8609 components: - type: Transform - pos: 77.5,39.5 + rot: 3.141592653589793 rad + pos: 53.5,1.5 parent: 2 - - uid: 10595 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8610 components: - type: Transform - pos: 78.5,39.5 + rot: 3.141592653589793 rad + pos: 53.5,2.5 parent: 2 - - uid: 10596 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8611 components: - type: Transform - pos: 84.5,53.5 + rot: 3.141592653589793 rad + pos: 53.5,6.5 parent: 2 - - uid: 10597 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8612 components: - type: Transform - pos: 50.5,-15.5 + rot: 3.141592653589793 rad + pos: 53.5,5.5 parent: 2 - - uid: 10598 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8613 components: - type: Transform - pos: 59.5,-12.5 + rot: 3.141592653589793 rad + pos: 53.5,4.5 parent: 2 - - uid: 10599 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8614 components: - type: Transform - pos: 59.5,-13.5 + rot: 1.5707963267948966 rad + pos: 57.5,3.5 parent: 2 - - uid: 10600 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8615 components: - type: Transform - pos: 20.5,-7.5 + rot: 1.5707963267948966 rad + pos: 56.5,3.5 parent: 2 - - uid: 10601 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8616 components: - type: Transform - pos: 20.5,-6.5 + rot: 1.5707963267948966 rad + pos: 55.5,3.5 parent: 2 - - uid: 10602 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8617 components: - type: Transform - pos: 21.5,-12.5 + rot: 1.5707963267948966 rad + pos: 54.5,3.5 parent: 2 - - uid: 10603 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8618 components: - type: Transform - pos: 19.5,-9.5 + rot: 1.5707963267948966 rad + pos: 51.5,3.5 parent: 2 - - uid: 10604 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8619 components: - type: Transform - pos: 21.5,-10.5 + pos: 48.5,-8.5 parent: 2 - - uid: 10606 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8620 components: - type: Transform - pos: 17.5,-11.5 + pos: 48.5,-7.5 parent: 2 - - uid: 10607 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8621 components: - type: Transform - pos: 23.5,63.5 + rot: 1.5707963267948966 rad + pos: 43.5,3.5 parent: 2 - - uid: 10608 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8622 components: - type: Transform - pos: 27.5,-22.5 + rot: 3.141592653589793 rad + pos: 44.5,-6.5 parent: 2 - - uid: 10609 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8623 components: - type: Transform - pos: 9.5,-24.5 + rot: -1.5707963267948966 rad + pos: 36.5,26.5 parent: 2 - - uid: 10610 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8624 components: - type: Transform - pos: 10.5,-24.5 + rot: 1.5707963267948966 rad + pos: 57.5,4.5 parent: 2 - - uid: 10611 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8625 components: - type: Transform - pos: 6.5,-21.5 + rot: 1.5707963267948966 rad + pos: 56.5,4.5 parent: 2 - - uid: 10612 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8626 components: - type: Transform - pos: 5.5,-21.5 + rot: 1.5707963267948966 rad + pos: 55.5,4.5 parent: 2 - - uid: 10613 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8627 components: - type: Transform - pos: 8.5,-23.5 + rot: 1.5707963267948966 rad + pos: 54.5,4.5 parent: 2 - - uid: 10614 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8628 components: - type: Transform - pos: 8.5,-24.5 + rot: 1.5707963267948966 rad + pos: 53.5,4.5 parent: 2 - - uid: 10615 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8629 components: - type: Transform - pos: 7.5,-21.5 + rot: 1.5707963267948966 rad + pos: 50.5,4.5 parent: 2 - - uid: 10616 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8630 components: - type: Transform - pos: 16.5,-24.5 + rot: 1.5707963267948966 rad + pos: 48.5,4.5 parent: 2 - - uid: 10617 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8631 components: - type: Transform - pos: 17.5,-24.5 + rot: 1.5707963267948966 rad + pos: 47.5,4.5 parent: 2 - - uid: 10618 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8632 components: - type: Transform - pos: 18.5,-24.5 + rot: 1.5707963267948966 rad + pos: 45.5,4.5 parent: 2 - - uid: 10619 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8633 components: - type: Transform - pos: 19.5,-24.5 + rot: 1.5707963267948966 rad + pos: 44.5,4.5 parent: 2 - - uid: 10620 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8634 components: - type: Transform - pos: 14.5,-22.5 + rot: 1.5707963267948966 rad + pos: 41.5,4.5 parent: 2 - - uid: 10621 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8635 components: - type: Transform - pos: 26.5,-22.5 + rot: 3.141592653589793 rad + pos: 37.5,7.5 parent: 2 - - uid: 10622 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8636 components: - type: Transform - pos: 13.5,-22.5 + rot: 3.141592653589793 rad + pos: 37.5,6.5 parent: 2 - - uid: 10623 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8637 components: - type: Transform - pos: 32.5,-24.5 + rot: -1.5707963267948966 rad + pos: 12.5,15.5 parent: 2 - - uid: 10624 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8638 components: - type: Transform - pos: 28.5,-22.5 + rot: 1.5707963267948966 rad + pos: 35.5,5.5 parent: 2 - - uid: 10625 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8639 components: - type: Transform - pos: 33.5,-24.5 + rot: 1.5707963267948966 rad + pos: 34.5,5.5 parent: 2 - - uid: 10626 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8640 components: - type: Transform - pos: 34.5,-24.5 + rot: 1.5707963267948966 rad + pos: 33.5,5.5 parent: 2 - - uid: 10627 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8641 components: - type: Transform - pos: 33.5,-22.5 + pos: 40.5,6.5 parent: 2 - - uid: 10628 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8642 components: - type: Transform - pos: 33.5,-21.5 + pos: 40.5,5.5 parent: 2 - - uid: 10629 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8643 components: - type: Transform - pos: 36.5,-22.5 + rot: 3.141592653589793 rad + pos: 46.5,6.5 parent: 2 - - uid: 10630 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8644 components: - type: Transform - pos: 30.5,-26.5 + rot: 3.141592653589793 rad + pos: 46.5,5.5 parent: 2 - - uid: 10631 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8645 components: - type: Transform - pos: 31.5,-26.5 + pos: 52.5,6.5 parent: 2 - - uid: 10632 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8646 components: - type: Transform - pos: 35.5,-27.5 + pos: 52.5,5.5 parent: 2 - - uid: 10633 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8647 components: - type: Transform - pos: 36.5,-27.5 + rot: 3.141592653589793 rad + pos: 52.5,-2.5 parent: 2 - - uid: 10634 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8648 components: - type: Transform - pos: 36.5,-23.5 + rot: 3.141592653589793 rad + pos: 52.5,-1.5 parent: 2 - - uid: 10635 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8649 components: - type: Transform - pos: 37.5,-20.5 + rot: 3.141592653589793 rad + pos: 52.5,-0.5 parent: 2 - - uid: 10636 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8650 components: - type: Transform - pos: 37.5,-21.5 + rot: 3.141592653589793 rad + pos: 52.5,0.5 parent: 2 - - uid: 10637 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8651 components: - type: Transform - pos: 39.5,-20.5 + rot: 3.141592653589793 rad + pos: 52.5,1.5 parent: 2 - - uid: 10638 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8652 components: - type: Transform - pos: 39.5,-19.5 + rot: 3.141592653589793 rad + pos: 52.5,2.5 parent: 2 - - uid: 10639 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8653 components: - type: Transform - pos: 40.5,-19.5 + rot: 3.141592653589793 rad + pos: 52.5,3.5 parent: 2 - - uid: 10640 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8654 components: - type: Transform - pos: 42.5,-18.5 + rot: 3.141592653589793 rad + pos: 49.5,-8.5 parent: 2 - - uid: 10641 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8655 components: - type: Transform - pos: 43.5,-18.5 + rot: 3.141592653589793 rad + pos: 49.5,-7.5 parent: 2 - - uid: 10642 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8656 components: - type: Transform - pos: 44.5,-18.5 + rot: 3.141592653589793 rad + pos: 49.5,-6.5 parent: 2 - - uid: 10643 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8657 components: - type: Transform - pos: 39.5,-22.5 + pos: 37.5,-3.5 parent: 2 - - uid: 10644 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8658 components: - type: Transform - pos: 40.5,-22.5 + pos: 43.5,1.5 parent: 2 - - uid: 10645 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8659 components: - type: Transform - pos: 41.5,-22.5 + pos: 52.5,20.5 parent: 2 - - uid: 10646 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8660 components: - type: Transform - pos: 44.5,-21.5 + pos: 51.5,23.5 parent: 2 - - uid: 10647 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8661 components: - type: Transform - pos: 45.5,-21.5 + rot: -1.5707963267948966 rad + pos: 38.5,27.5 parent: 2 - - uid: 10648 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8662 components: - type: Transform - pos: 54.5,-18.5 + rot: -1.5707963267948966 rad + pos: 39.5,27.5 parent: 2 - - uid: 10649 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8663 components: - type: Transform - pos: 56.5,-16.5 + rot: -1.5707963267948966 rad + pos: 40.5,27.5 parent: 2 - - uid: 10650 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8664 components: - type: Transform - pos: 57.5,-16.5 + rot: -1.5707963267948966 rad + pos: 42.5,27.5 parent: 2 - - uid: 10651 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8665 components: - type: Transform - pos: 59.5,-17.5 + rot: -1.5707963267948966 rad + pos: 43.5,27.5 parent: 2 - - uid: 10652 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8666 components: - type: Transform - pos: 60.5,-17.5 + rot: -1.5707963267948966 rad + pos: 44.5,27.5 parent: 2 - - uid: 10653 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8667 components: - type: Transform - pos: 57.5,-17.5 + rot: -1.5707963267948966 rad + pos: 45.5,27.5 parent: 2 - - uid: 10654 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8668 components: - type: Transform - pos: 60.5,-14.5 + pos: 51.5,37.5 parent: 2 - - uid: 10655 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8669 components: - type: Transform - pos: 60.5,-13.5 + rot: -1.5707963267948966 rad + pos: 42.5,31.5 parent: 2 - - uid: 10656 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8670 components: - type: Transform - pos: 61.5,-13.5 + rot: -1.5707963267948966 rad + pos: 43.5,31.5 parent: 2 - - uid: 10657 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8671 components: - type: Transform - pos: 61.5,-12.5 + rot: -1.5707963267948966 rad + pos: 44.5,31.5 parent: 2 - - uid: 10658 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8672 components: - type: Transform - pos: 62.5,-10.5 + rot: -1.5707963267948966 rad + pos: 45.5,31.5 parent: 2 - - uid: 10659 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8673 components: - type: Transform - pos: 62.5,-11.5 + rot: -1.5707963267948966 rad + pos: 48.5,31.5 parent: 2 - - uid: 10660 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8674 components: - type: Transform - pos: 63.5,-10.5 + rot: -1.5707963267948966 rad + pos: 47.5,31.5 parent: 2 - - uid: 10661 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8675 components: - type: Transform - pos: 63.5,-9.5 + rot: -1.5707963267948966 rad + pos: 51.5,35.5 parent: 2 - - uid: 10662 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8676 components: - type: Transform - pos: 63.5,-8.5 + rot: -1.5707963267948966 rad + pos: 50.5,35.5 parent: 2 - - uid: 10663 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8677 components: - type: Transform - pos: 65.5,-7.5 + rot: -1.5707963267948966 rad + pos: 49.5,35.5 parent: 2 - - uid: 10664 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8678 components: - type: Transform - pos: 66.5,-7.5 + rot: -1.5707963267948966 rad + pos: 48.5,35.5 parent: 2 - - uid: 10665 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8679 components: - type: Transform - pos: 68.5,-6.5 + rot: -1.5707963267948966 rad + pos: 47.5,35.5 parent: 2 - - uid: 10666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8680 components: - type: Transform - pos: 68.5,-5.5 + rot: 1.5707963267948966 rad + pos: 58.5,23.5 parent: 2 - - uid: 10667 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8681 components: - type: Transform - pos: 70.5,-5.5 + rot: 3.141592653589793 rad + pos: 53.5,37.5 parent: 2 - - uid: 10668 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8682 components: - type: Transform - pos: 71.5,-5.5 + rot: 1.5707963267948966 rad + pos: 59.5,23.5 parent: 2 - - uid: 10669 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8683 components: - type: Transform - pos: 73.5,-3.5 + rot: 1.5707963267948966 rad + pos: 42.5,35.5 parent: 2 - - uid: 10670 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8684 components: - type: Transform - pos: 73.5,-2.5 + rot: 1.5707963267948966 rad + pos: 43.5,35.5 parent: 2 - - uid: 10671 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8685 components: - type: Transform - pos: 72.5,-3.5 + rot: 1.5707963267948966 rad + pos: 44.5,35.5 parent: 2 - - uid: 10672 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8686 components: - type: Transform - pos: 71.5,-4.5 + rot: 1.5707963267948966 rad + pos: 45.5,35.5 parent: 2 - - uid: 10673 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8687 components: - type: Transform - pos: 65.5,-8.5 + pos: 46.5,34.5 parent: 2 - - uid: 10674 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8688 components: - type: Transform - pos: 41.5,-16.5 + pos: 46.5,32.5 parent: 2 - - uid: 10675 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8689 components: - type: Transform - pos: 33.5,-13.5 + pos: 46.5,30.5 parent: 2 - - uid: 10676 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8690 components: - type: Transform - pos: 33.5,-14.5 + pos: 46.5,29.5 parent: 2 - - uid: 10677 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8691 components: - type: Transform - pos: 33.5,-15.5 + pos: 46.5,28.5 parent: 2 - - uid: 10678 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8692 components: - type: Transform - pos: -1.5,11.5 + pos: 46.5,26.5 parent: 2 - - uid: 10684 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8693 components: - type: Transform - pos: 7.5,56.5 + pos: 46.5,25.5 parent: 2 - - uid: 10685 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8694 components: - type: Transform - pos: 7.5,57.5 + pos: 57.5,21.5 parent: 2 - - uid: 10686 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8695 components: - type: Transform - pos: 7.5,58.5 + rot: -1.5707963267948966 rad + pos: 55.5,38.5 parent: 2 - - uid: 10687 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8696 components: - type: Transform - pos: 9.5,64.5 + rot: 1.5707963267948966 rad + pos: 55.5,24.5 parent: 2 - - uid: 10688 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8697 components: - type: Transform - pos: 9.5,65.5 + rot: 1.5707963267948966 rad + pos: 54.5,24.5 parent: 2 - - uid: 10689 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8698 components: - type: Transform - pos: 9.5,66.5 + rot: 1.5707963267948966 rad + pos: 52.5,24.5 parent: 2 - - uid: 10690 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8699 components: - type: Transform - pos: 12.5,87.5 + rot: 1.5707963267948966 rad + pos: 50.5,24.5 parent: 2 - - uid: 10691 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8700 components: - type: Transform - pos: 13.5,87.5 + rot: 1.5707963267948966 rad + pos: 47.5,24.5 parent: 2 - - uid: 10692 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8701 components: - type: Transform - pos: 8.5,-7.5 + rot: 3.141592653589793 rad + pos: 37.5,23.5 parent: 2 - - uid: 10693 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8702 components: - type: Transform - pos: 51.5,93.5 + rot: 1.5707963267948966 rad + pos: 44.5,19.5 parent: 2 - - uid: 10694 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8703 components: - type: Transform - pos: 50.5,93.5 + rot: 1.5707963267948966 rad + pos: 43.5,19.5 parent: 2 - - uid: 10695 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8704 components: - type: Transform - pos: 49.5,93.5 + rot: -1.5707963267948966 rad + pos: 50.5,36.5 parent: 2 - - uid: 10696 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8705 components: - type: Transform - pos: 58.5,92.5 + rot: -1.5707963267948966 rad + pos: 49.5,36.5 parent: 2 - - uid: 10697 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8706 components: - type: Transform - pos: 59.5,92.5 + rot: -1.5707963267948966 rad + pos: 48.5,36.5 parent: 2 - - uid: 10698 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8707 components: - type: Transform - pos: 59.5,94.5 + rot: -1.5707963267948966 rad + pos: 47.5,36.5 parent: 2 - - uid: 10699 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8708 components: - type: Transform - pos: 7.5,-7.5 + rot: -1.5707963267948966 rad + pos: 46.5,36.5 parent: 2 - - uid: 10700 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8709 components: - type: Transform - pos: 4.5,-5.5 + rot: -1.5707963267948966 rad + pos: 42.5,34.5 parent: 2 - - uid: 10701 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8710 components: - type: Transform - pos: 3.5,-5.5 + rot: -1.5707963267948966 rad + pos: 43.5,34.5 parent: 2 - - uid: 10702 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8711 components: - type: Transform - pos: 3.5,-3.5 + rot: -1.5707963267948966 rad + pos: 44.5,34.5 parent: 2 - - uid: 10703 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8712 components: - type: Transform - pos: 2.5,-3.5 + rot: 3.141592653589793 rad + pos: 45.5,35.5 parent: 2 - - uid: 10704 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8713 components: - type: Transform - pos: 1.5,-3.5 + rot: 1.5707963267948966 rad + pos: 42.5,30.5 parent: 2 - - uid: 10705 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8714 components: - type: Transform - pos: 6.5,-19.5 + rot: 1.5707963267948966 rad + pos: 43.5,30.5 parent: 2 - - uid: 10706 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8715 components: - type: Transform - pos: 0.5,-0.5 + rot: 1.5707963267948966 rad + pos: 44.5,30.5 parent: 2 - - uid: 10707 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8716 components: - type: Transform - pos: 1.5,-0.5 + pos: 45.5,33.5 parent: 2 - - uid: 10708 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8717 components: - type: Transform - pos: 1.5,-1.5 + pos: 45.5,31.5 parent: 2 - - uid: 10709 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8718 components: - type: Transform - pos: 8.5,-12.5 + rot: -1.5707963267948966 rad + pos: 48.5,30.5 parent: 2 - - uid: 10710 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8719 components: - type: Transform - pos: 8.5,-13.5 + rot: -1.5707963267948966 rad + pos: 47.5,30.5 parent: 2 - - uid: 10711 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8720 components: - type: Transform - pos: 7.5,-16.5 + rot: -1.5707963267948966 rad + pos: 46.5,30.5 parent: 2 - - uid: 10712 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8721 components: - type: Transform - pos: 7.5,-17.5 + rot: 3.141592653589793 rad + pos: 45.5,29.5 parent: 2 - - uid: 10713 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8722 components: - type: Transform - pos: 7.5,-15.5 + rot: 1.5707963267948966 rad + pos: 44.5,28.5 parent: 2 - - uid: 10714 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8723 components: - type: Transform - pos: -0.5,3.5 + rot: 1.5707963267948966 rad + pos: 43.5,28.5 parent: 2 - - uid: 10715 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8724 components: - type: Transform - pos: -0.5,2.5 + rot: 1.5707963267948966 rad + pos: 41.5,28.5 parent: 2 - - uid: 10716 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8725 components: - type: Transform - pos: -0.5,1.5 + rot: 1.5707963267948966 rad + pos: 40.5,28.5 parent: 2 - - uid: 10717 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8726 components: - type: Transform - pos: 10.5,46.5 + rot: 1.5707963267948966 rad + pos: 39.5,28.5 parent: 2 - - uid: 10718 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8727 components: - type: Transform - pos: 11.5,44.5 + rot: 1.5707963267948966 rad + pos: 38.5,28.5 parent: 2 - - uid: 10719 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8728 components: - type: Transform - pos: 11.5,42.5 + rot: 1.5707963267948966 rad + pos: 37.5,28.5 parent: 2 - - uid: 10720 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8729 components: - type: Transform - pos: 55.5,-38.5 + rot: 3.141592653589793 rad + pos: 54.5,25.5 parent: 2 - - uid: 10721 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8730 components: - type: Transform - pos: 49.5,-20.5 + rot: 1.5707963267948966 rad + pos: 60.5,23.5 parent: 2 - - uid: 10722 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8731 components: - type: Transform - pos: 49.5,-21.5 + rot: -1.5707963267948966 rad + pos: 49.5,24.5 parent: 2 - - uid: 10723 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8732 components: - type: Transform - pos: 49.5,-22.5 + rot: 3.141592653589793 rad + pos: 45.5,27.5 parent: 2 - - uid: 10724 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8733 components: - type: Transform - pos: 49.5,-23.5 + rot: 3.141592653589793 rad + pos: 45.5,26.5 parent: 2 - - uid: 10725 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8734 components: - type: Transform - pos: 49.5,-28.5 + rot: 3.141592653589793 rad + pos: 45.5,25.5 parent: 2 - - uid: 10726 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8735 components: - type: Transform - pos: 49.5,-26.5 + rot: 3.141592653589793 rad + pos: 45.5,24.5 parent: 2 - - uid: 10727 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8736 components: - type: Transform - pos: 49.5,-27.5 + rot: -1.5707963267948966 rad + pos: 51.5,22.5 parent: 2 - - uid: 10728 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8737 components: - type: Transform - pos: 49.5,-30.5 + pos: 12.5,26.5 parent: 2 - - uid: 10729 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8738 components: - type: Transform - pos: 49.5,-31.5 + rot: 3.141592653589793 rad + pos: 36.5,22.5 parent: 2 - - uid: 10730 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8739 components: - type: Transform - pos: 49.5,-32.5 + rot: -1.5707963267948966 rad + pos: 53.5,22.5 parent: 2 - - uid: 10731 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8740 components: - type: Transform - pos: 49.5,-33.5 + pos: 13.5,27.5 parent: 2 - - uid: 10732 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8741 components: - type: Transform - pos: 50.5,-36.5 + rot: -1.5707963267948966 rad + pos: 50.5,22.5 parent: 2 - - uid: 10733 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8742 components: - type: Transform - pos: 51.5,-36.5 + rot: 3.141592653589793 rad + pos: 55.5,18.5 parent: 2 - - uid: 10734 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8743 components: - type: Transform - pos: 52.5,-36.5 + rot: 3.141592653589793 rad + pos: 55.5,19.5 parent: 2 - - uid: 10735 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8744 components: - type: Transform - pos: 56.5,-38.5 + rot: -1.5707963267948966 rad + pos: 44.5,17.5 parent: 2 - - uid: 10736 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8745 components: - type: Transform - pos: 57.5,-38.5 + rot: 1.5707963267948966 rad + pos: 44.5,69.5 parent: 2 - - uid: 10737 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8746 components: - type: Transform - pos: 60.5,-38.5 + rot: -1.5707963267948966 rad + pos: 48.5,22.5 parent: 2 - - uid: 10738 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8747 components: - type: Transform - pos: 60.5,-36.5 + rot: 1.5707963267948966 rad + pos: 33.5,71.5 parent: 2 - - uid: 10739 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 8748 components: - type: Transform - pos: 61.5,-36.5 + pos: 28.5,24.5 parent: 2 - - uid: 10740 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8749 components: - type: Transform - pos: 62.5,-36.5 + pos: 12.5,33.5 parent: 2 - - uid: 10741 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8750 components: - type: Transform - pos: 63.5,-34.5 + rot: 1.5707963267948966 rad + pos: 23.5,26.5 parent: 2 - - uid: 10742 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8751 components: - type: Transform - pos: 63.5,-33.5 + rot: -1.5707963267948966 rad + pos: 26.5,20.5 parent: 2 - - uid: 10743 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8752 components: - type: Transform - pos: 63.5,-32.5 + pos: 29.5,22.5 parent: 2 - - uid: 10744 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8753 components: - type: Transform - pos: 63.5,-31.5 + pos: 42.5,27.5 parent: 2 - - uid: 10745 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8754 components: - type: Transform - pos: 63.5,-30.5 + rot: -1.5707963267948966 rad + pos: 43.5,70.5 parent: 2 - - uid: 10746 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8755 components: - type: Transform - pos: 63.5,-28.5 + rot: -1.5707963267948966 rad + pos: 36.5,18.5 parent: 2 - - uid: 10747 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8756 components: - type: Transform - pos: 63.5,-27.5 + pos: 44.5,13.5 parent: 2 - - uid: 10748 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8757 components: - type: Transform - pos: 63.5,-26.5 + pos: 47.5,13.5 parent: 2 - - uid: 10749 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8758 components: - type: Transform - pos: 63.5,-24.5 + pos: 64.5,13.5 parent: 2 - - uid: 10750 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8759 components: - type: Transform - pos: 63.5,-23.5 + rot: 1.5707963267948966 rad + pos: 71.5,19.5 parent: 2 - - uid: 10751 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8760 components: - type: Transform - pos: 63.5,-22.5 + rot: 1.5707963267948966 rad + pos: 71.5,27.5 parent: 2 - - uid: 10752 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8761 components: - type: Transform - pos: 51.5,-15.5 + rot: -1.5707963267948966 rad + pos: 64.5,13.5 parent: 2 - - uid: 10753 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8762 components: - type: Transform - pos: 63.5,-20.5 + rot: -1.5707963267948966 rad + pos: 65.5,14.5 parent: 2 - - uid: 10754 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8763 components: - type: Transform - pos: 63.5,-19.5 + rot: -1.5707963267948966 rad + pos: 70.5,57.5 parent: 2 - - uid: 10755 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8764 components: - type: Transform - pos: 63.5,-18.5 + rot: -1.5707963267948966 rad + pos: 77.5,16.5 parent: 2 - - uid: 10756 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8765 components: - type: Transform - pos: 63.5,-17.5 + rot: -1.5707963267948966 rad + pos: 76.5,16.5 parent: 2 - - uid: 10757 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8766 components: - type: Transform - pos: 63.5,-12.5 + rot: -1.5707963267948966 rad + pos: 74.5,16.5 parent: 2 - - uid: 10758 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8767 components: - type: Transform - pos: 63.5,-13.5 + rot: -1.5707963267948966 rad + pos: 73.5,16.5 parent: 2 - - uid: 10759 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8768 components: - type: Transform - pos: 63.5,-14.5 + rot: -1.5707963267948966 rad + pos: 72.5,16.5 parent: 2 - - uid: 10760 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8769 components: - type: Transform - pos: 50.5,-19.5 + rot: -1.5707963267948966 rad + pos: 77.5,17.5 parent: 2 - - uid: 10761 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8770 components: - type: Transform - pos: 52.5,-19.5 + rot: -1.5707963267948966 rad + pos: 76.5,17.5 parent: 2 - - uid: 10762 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8771 components: - type: Transform - pos: 40.5,11.5 + rot: -1.5707963267948966 rad + pos: 74.5,17.5 parent: 2 - - uid: 10763 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8772 components: - type: Transform - pos: 48.5,48.5 + rot: -1.5707963267948966 rad + pos: 73.5,17.5 parent: 2 - - uid: 10764 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8773 components: - type: Transform - pos: 23.5,88.5 + rot: -1.5707963267948966 rad + pos: 72.5,17.5 parent: 2 - - uid: 10765 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8774 components: - type: Transform - pos: 26.5,90.5 + rot: -1.5707963267948966 rad + pos: 65.5,62.5 parent: 2 - - uid: 10766 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8775 components: - type: Transform - pos: 19.5,88.5 + pos: 79.5,37.5 parent: 2 - - uid: 10767 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8776 components: - type: Transform - pos: 15.5,88.5 + rot: -1.5707963267948966 rad + pos: 37.5,86.5 parent: 2 - - uid: 10768 + - uid: 8777 components: - type: Transform - pos: -5.5,43.5 + rot: 3.141592653589793 rad + pos: 40.5,-2.5 parent: 2 - - uid: 10769 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8778 components: - type: Transform - pos: -8.5,46.5 + rot: 3.141592653589793 rad + pos: 40.5,-6.5 parent: 2 - - uid: 10770 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8779 components: - type: Transform - pos: -2.5,43.5 + rot: 1.5707963267948966 rad + pos: 29.5,73.5 parent: 2 - - uid: 10771 + - uid: 8780 components: - type: Transform - pos: -0.5,41.5 + rot: 1.5707963267948966 rad + pos: 30.5,73.5 parent: 2 - - uid: 10772 + - uid: 8781 components: - type: Transform - pos: -0.5,42.5 + rot: 1.5707963267948966 rad + pos: 31.5,73.5 parent: 2 - - uid: 10773 + - uid: 8782 components: - type: Transform - pos: -7.5,43.5 + rot: 1.5707963267948966 rad + pos: 29.5,75.5 parent: 2 - - uid: 10774 + - uid: 8783 components: - type: Transform - pos: -3.5,43.5 + rot: 1.5707963267948966 rad + pos: 30.5,75.5 parent: 2 - - uid: 10775 + - uid: 8784 components: - type: Transform - pos: -9.5,46.5 + rot: 1.5707963267948966 rad + pos: 31.5,75.5 parent: 2 - - uid: 10776 + - uid: 8785 components: - type: Transform - pos: -6.5,43.5 + rot: 1.5707963267948966 rad + pos: 29.5,77.5 parent: 2 - - uid: 10778 + - uid: 8786 components: - type: Transform - pos: 13.5,-26.5 + rot: 1.5707963267948966 rad + pos: 30.5,77.5 parent: 2 - - uid: 10779 + - uid: 8787 components: - type: Transform - pos: -0.5,40.5 + rot: 1.5707963267948966 rad + pos: 31.5,77.5 parent: 2 - - uid: 10780 + - uid: 8788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,10.5 + rot: 1.5707963267948966 rad + pos: 29.5,79.5 parent: 2 - - uid: 10781 + - uid: 8789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,19.5 + rot: 1.5707963267948966 rad + pos: 30.5,79.5 parent: 2 - - uid: 10782 + - uid: 8790 components: - type: Transform - pos: 86.5,66.5 + rot: 1.5707963267948966 rad + pos: 31.5,79.5 parent: 2 - - uid: 10783 + - uid: 8791 components: - type: Transform - pos: 86.5,65.5 + rot: 1.5707963267948966 rad + pos: 29.5,81.5 parent: 2 - - uid: 10784 + - uid: 8792 components: - type: Transform - pos: -1.5,37.5 + rot: 1.5707963267948966 rad + pos: 30.5,81.5 parent: 2 - - uid: 10785 + - uid: 8793 components: - type: Transform - pos: -1.5,36.5 + rot: 1.5707963267948966 rad + pos: 31.5,81.5 parent: 2 - - uid: 10786 + - uid: 8794 components: - type: Transform - pos: -1.5,26.5 + rot: 1.5707963267948966 rad + pos: 29.5,83.5 parent: 2 - - uid: 10787 + - uid: 8795 components: - type: Transform - pos: -2.5,26.5 + rot: 1.5707963267948966 rad + pos: 30.5,83.5 parent: 2 - - uid: 10788 + - uid: 8796 components: - type: Transform - pos: -3.5,26.5 + rot: 1.5707963267948966 rad + pos: 31.5,83.5 parent: 2 - - uid: 10794 + - uid: 8797 components: - type: Transform - pos: -8.5,45.5 + rot: 1.5707963267948966 rad + pos: 28.5,72.5 parent: 2 - - uid: 10795 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 8798 components: - type: Transform - pos: -0.5,57.5 + rot: 1.5707963267948966 rad + pos: 29.5,72.5 parent: 2 - - uid: 10796 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 8799 components: - type: Transform - pos: -10.5,48.5 + rot: 1.5707963267948966 rad + pos: 30.5,72.5 parent: 2 - - uid: 10797 - components: + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 8800 + components: - type: Transform - pos: -10.5,49.5 + rot: 1.5707963267948966 rad + pos: 31.5,72.5 parent: 2 - - uid: 10798 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 8801 components: - type: Transform - pos: -10.5,50.5 + rot: 1.5707963267948966 rad + pos: 28.5,74.5 parent: 2 - - uid: 10799 + - type: AtmosPipeColor + color: '#00BFFFFF' + - uid: 8802 components: - type: Transform - pos: -10.5,51.5 + rot: 1.5707963267948966 rad + pos: 29.5,74.5 parent: 2 - - uid: 10800 + - type: AtmosPipeColor + color: '#00BFFFFF' + - uid: 8803 components: - type: Transform - pos: -10.5,54.5 + rot: 1.5707963267948966 rad + pos: 30.5,74.5 parent: 2 - - uid: 10801 + - type: AtmosPipeColor + color: '#00BFFFFF' + - uid: 8804 components: - type: Transform - pos: -9.5,54.5 + rot: 1.5707963267948966 rad + pos: 31.5,74.5 parent: 2 - - uid: 10802 + - type: AtmosPipeColor + color: '#00BFFFFF' + - uid: 8805 components: - type: Transform - pos: -8.5,57.5 + rot: 1.5707963267948966 rad + pos: 28.5,76.5 parent: 2 - - uid: 10803 + - type: AtmosPipeColor + color: '#FFC0CBFF' + - uid: 8806 components: - type: Transform - pos: -7.5,57.5 + rot: 1.5707963267948966 rad + pos: 29.5,76.5 parent: 2 - - uid: 10804 + - type: AtmosPipeColor + color: '#FFC0CBFF' + - uid: 8807 components: - type: Transform - pos: -6.5,57.5 + rot: 1.5707963267948966 rad + pos: 30.5,76.5 parent: 2 - - uid: 10805 + - type: AtmosPipeColor + color: '#FFC0CBFF' + - uid: 8808 components: - type: Transform - pos: -8.5,56.5 + rot: 1.5707963267948966 rad + pos: 31.5,76.5 parent: 2 - - uid: 10806 + - type: AtmosPipeColor + color: '#FFC0CBFF' + - uid: 8809 components: - type: Transform - pos: -4.5,57.5 + rot: 1.5707963267948966 rad + pos: 28.5,78.5 parent: 2 - - uid: 10807 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 8810 components: - type: Transform - pos: -3.5,57.5 + rot: 1.5707963267948966 rad + pos: 29.5,78.5 parent: 2 - - uid: 10808 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 8811 components: - type: Transform - pos: 0.5,57.5 + rot: 1.5707963267948966 rad + pos: 30.5,78.5 parent: 2 - - uid: 10809 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 8812 components: - type: Transform - pos: 1.5,57.5 + rot: 1.5707963267948966 rad + pos: 31.5,78.5 parent: 2 - - uid: 10810 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 8813 components: - type: Transform - pos: 5.5,57.5 + rot: 1.5707963267948966 rad + pos: 28.5,80.5 parent: 2 - - uid: 10811 + - type: AtmosPipeColor + color: '#FF6347FF' + - uid: 8814 components: - type: Transform - pos: 4.5,57.5 + rot: 1.5707963267948966 rad + pos: 29.5,80.5 parent: 2 - - uid: 10812 + - type: AtmosPipeColor + color: '#FF6347FF' + - uid: 8815 components: - type: Transform - pos: 54.5,-15.5 + rot: 1.5707963267948966 rad + pos: 30.5,80.5 parent: 2 - - uid: 10813 + - type: AtmosPipeColor + color: '#FF6347FF' + - uid: 8816 components: - type: Transform - pos: 55.5,-15.5 + rot: 1.5707963267948966 rad + pos: 31.5,80.5 parent: 2 - - uid: 10814 + - type: AtmosPipeColor + color: '#FF6347FF' + - uid: 8817 components: - type: Transform - pos: 56.5,-15.5 + rot: 1.5707963267948966 rad + pos: 28.5,82.5 parent: 2 - - uid: 10815 + - type: AtmosPipeColor + color: '#00FF7FFF' + - uid: 8818 components: - type: Transform - pos: 57.5,-15.5 + rot: 1.5707963267948966 rad + pos: 29.5,82.5 parent: 2 - - uid: 10816 + - type: AtmosPipeColor + color: '#00FF7FFF' + - uid: 8819 components: - type: Transform - pos: 58.5,-15.5 + rot: 1.5707963267948966 rad + pos: 30.5,82.5 parent: 2 - - uid: 10817 + - type: AtmosPipeColor + color: '#00FF7FFF' + - uid: 8820 components: - type: Transform - pos: 59.5,-14.5 + rot: 1.5707963267948966 rad + pos: 31.5,82.5 parent: 2 - - uid: 10818 + - type: AtmosPipeColor + color: '#00FF7FFF' + - uid: 8821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8823 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-12.5 + pos: 34.5,71.5 parent: 2 - - uid: 10819 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 8824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,93.5 + rot: 1.5707963267948966 rad + pos: 38.5,72.5 parent: 2 - - uid: 10820 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,93.5 + rot: 1.5707963267948966 rad + pos: 40.5,72.5 parent: 2 - - uid: 10821 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,95.5 + rot: 1.5707963267948966 rad + pos: 41.5,72.5 parent: 2 - - uid: 10822 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8827 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,95.5 + pos: 40.5,71.5 parent: 2 - - uid: 10823 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8828 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,93.5 + pos: 41.5,71.5 parent: 2 - - uid: 10824 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8829 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,93.5 + pos: 42.5,71.5 parent: 2 - - uid: 10825 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,95.5 + rot: 3.141592653589793 rad + pos: 43.5,72.5 parent: 2 - - uid: 10826 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8831 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,34.5 + pos: 44.5,71.5 parent: 2 - - uid: 10827 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8832 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,27.5 + pos: 43.5,70.5 parent: 2 - - uid: 10828 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8833 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,34.5 + pos: 48.5,56.5 parent: 2 - - uid: 10829 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8835 components: - type: Transform rot: 3.141592653589793 rad - pos: 84.5,7.5 + pos: 43.5,73.5 parent: 2 - - uid: 10830 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8836 components: - type: Transform - pos: 42.5,85.5 + rot: 3.141592653589793 rad + pos: 43.5,74.5 parent: 2 - - uid: 10831 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8837 components: - type: Transform - pos: 39.5,85.5 + rot: 3.141592653589793 rad + pos: 42.5,73.5 parent: 2 - - uid: 10832 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8838 components: - type: Transform - pos: 38.5,85.5 + rot: 3.141592653589793 rad + pos: 42.5,74.5 parent: 2 - - uid: 10834 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8839 components: - type: Transform - pos: 52.5,25.5 + rot: 3.141592653589793 rad + pos: 55.5,53.5 parent: 2 - - uid: 10835 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8840 components: - type: Transform - pos: 32.5,85.5 + rot: 1.5707963267948966 rad + pos: 45.5,63.5 parent: 2 - - uid: 10837 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 + rot: 1.5707963267948966 rad + pos: 46.5,62.5 parent: 2 - - uid: 10838 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8842 components: - type: Transform + rot: 1.5707963267948966 rad pos: 41.5,66.5 parent: 2 - - uid: 10839 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8843 components: - type: Transform - pos: 62.5,40.5 + pos: 39.5,65.5 parent: 2 - - uid: 10840 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8844 components: - type: Transform - pos: 62.5,39.5 + rot: 1.5707963267948966 rad + pos: 44.5,64.5 parent: 2 - - uid: 10842 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8845 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,81.5 + pos: 56.5,21.5 parent: 2 - - uid: 10843 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8846 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,42.5 + pos: 48.5,59.5 parent: 2 - - uid: 10844 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8847 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,15.5 + pos: 55.5,53.5 parent: 2 - - uid: 10845 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8848 components: - type: Transform - pos: 36.5,85.5 + rot: 1.5707963267948966 rad + pos: 56.5,53.5 parent: 2 - - uid: 10846 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8849 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,20.5 + pos: 54.5,53.5 parent: 2 - - uid: 10847 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8850 components: - type: Transform - pos: 81.5,20.5 + rot: 3.141592653589793 rad + pos: 47.5,55.5 parent: 2 - - uid: 10848 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8851 components: - type: Transform - pos: 11.5,86.5 + rot: 1.5707963267948966 rad + pos: 44.5,66.5 parent: 2 - - uid: 10849 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,2.5 + rot: 1.5707963267948966 rad + pos: 46.5,66.5 parent: 2 - - uid: 10850 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,7.5 + pos: 57.5,52.5 parent: 2 - - uid: 10851 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,2.5 + rot: 1.5707963267948966 rad + pos: 41.5,64.5 parent: 2 - - uid: 10852 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8855 components: - type: Transform - pos: 52.5,38.5 + rot: 1.5707963267948966 rad + pos: 48.5,52.5 parent: 2 - - uid: 10853 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8857 components: - type: Transform rot: -1.5707963267948966 rad - pos: 86.5,15.5 + pos: 53.5,52.5 parent: 2 - - uid: 10854 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8858 components: - type: Transform - pos: 41.5,85.5 + rot: -1.5707963267948966 rad + pos: 52.5,52.5 parent: 2 - - uid: 10855 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8859 components: - type: Transform - pos: 53.5,54.5 + rot: -1.5707963267948966 rad + pos: 51.5,52.5 parent: 2 - - uid: 10856 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8860 components: - type: Transform - pos: 51.5,64.5 + rot: -1.5707963267948966 rad + pos: 50.5,52.5 parent: 2 - - uid: 10857 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8861 components: - type: Transform - pos: 55.5,54.5 + rot: -1.5707963267948966 rad + pos: 49.5,52.5 parent: 2 - - uid: 10858 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8862 components: - type: Transform - pos: 54.5,54.5 + rot: -1.5707963267948966 rad + pos: 57.5,52.5 parent: 2 - - uid: 10859 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8863 components: - type: Transform rot: -1.5707963267948966 rad - pos: 81.5,12.5 + pos: 58.5,52.5 parent: 2 - - uid: 10860 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8864 components: - type: Transform rot: -1.5707963267948966 rad - pos: 86.5,18.5 + pos: 59.5,52.5 parent: 2 - - uid: 10861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8865 components: - type: Transform rot: -1.5707963267948966 rad - pos: 85.5,12.5 + pos: 60.5,52.5 parent: 2 - - uid: 10862 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8866 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,69.5 + rot: -1.5707963267948966 rad + pos: 61.5,52.5 parent: 2 - - uid: 10863 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8867 components: - type: Transform - pos: 31.5,69.5 + rot: -1.5707963267948966 rad + pos: 62.5,52.5 parent: 2 - - uid: 10864 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8868 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,69.5 + rot: -1.5707963267948966 rad + pos: 58.5,53.5 parent: 2 - - uid: 10865 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8869 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,11.5 + rot: -1.5707963267948966 rad + pos: 59.5,53.5 parent: 2 - - uid: 10866 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8870 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,24.5 + pos: 60.5,53.5 parent: 2 - - uid: 10867 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8871 components: - type: Transform - pos: 54.5,38.5 + rot: -1.5707963267948966 rad + pos: 61.5,53.5 parent: 2 - - uid: 10868 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8872 components: - type: Transform - pos: 60.5,40.5 + rot: 1.5707963267948966 rad + pos: 46.5,32.5 parent: 2 - - uid: 10869 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8873 components: - type: Transform - pos: 48.5,54.5 + rot: -1.5707963267948966 rad + pos: 63.5,53.5 parent: 2 - - uid: 10870 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,84.5 + rot: 1.5707963267948966 rad + pos: 52.5,53.5 parent: 2 - - uid: 10871 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8875 components: - type: Transform - pos: 60.5,38.5 + rot: 1.5707963267948966 rad + pos: 51.5,53.5 parent: 2 - - uid: 10872 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8876 components: - type: Transform - pos: 61.5,88.5 + rot: 1.5707963267948966 rad + pos: 50.5,53.5 parent: 2 - - uid: 10873 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,2.5 + rot: 1.5707963267948966 rad + pos: 49.5,53.5 parent: 2 - - uid: 10874 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,11.5 + pos: 80.5,58.5 parent: 2 - - uid: 10875 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,83.5 + parent: 2 + - uid: 8880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8881 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,11.5 + pos: 80.5,60.5 parent: 2 - - uid: 10876 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,87.5 + pos: 80.5,57.5 parent: 2 - - uid: 10877 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,86.5 + rot: -1.5707963267948966 rad + pos: 77.5,56.5 parent: 2 - - uid: 10878 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8884 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,86.5 + pos: 71.5,50.5 parent: 2 - - uid: 10879 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,86.5 + pos: 62.5,52.5 parent: 2 - - uid: 10880 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8886 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,88.5 + pos: 31.5,71.5 parent: 2 - - uid: 10881 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 8887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,90.5 + rot: -1.5707963267948966 rad + pos: 79.5,56.5 parent: 2 - - uid: 10882 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8888 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,7.5 + pos: 80.5,60.5 parent: 2 - - uid: 10895 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8889 components: - type: Transform - pos: -5.5,26.5 + pos: 46.5,52.5 parent: 2 - - uid: 10942 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-30.5 + pos: 46.5,51.5 parent: 2 - - uid: 10944 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-32.5 + pos: 46.5,50.5 parent: 2 - - uid: 10945 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-31.5 + pos: 46.5,48.5 parent: 2 - - uid: 10946 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 + pos: 46.5,47.5 parent: 2 - - uid: 10947 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-31.5 + pos: 46.5,46.5 parent: 2 - - uid: 10948 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 + pos: 46.5,45.5 parent: 2 - - uid: 10949 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8896 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-37.5 + pos: 45.5,44.5 parent: 2 - - uid: 10950 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8897 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-39.5 + pos: 44.5,44.5 parent: 2 - - uid: 10951 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-36.5 + pos: 43.5,44.5 parent: 2 - - uid: 10952 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8899 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-34.5 + pos: 42.5,44.5 parent: 2 - - uid: 10953 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8901 components: - type: Transform - pos: 22.5,65.5 + rot: -1.5707963267948966 rad + pos: 40.5,44.5 parent: 2 - - uid: 10954 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8902 components: - type: Transform - pos: 23.5,65.5 + rot: -1.5707963267948966 rad + pos: 39.5,44.5 parent: 2 - - uid: 10955 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8903 components: - type: Transform - pos: 23.5,68.5 + rot: -1.5707963267948966 rad + pos: 38.5,44.5 parent: 2 - - uid: 10956 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8904 components: - type: Transform - pos: 22.5,68.5 + rot: -1.5707963267948966 rad + pos: 37.5,44.5 parent: 2 - - uid: 10957 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8905 components: - type: Transform - pos: 18.5,67.5 + rot: 3.141592653589793 rad + pos: 36.5,43.5 parent: 2 - - uid: 10958 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8906 components: - type: Transform - pos: 56.5,80.5 + rot: 3.141592653589793 rad + pos: 36.5,42.5 parent: 2 - - uid: 10959 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8907 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,7.5 + pos: 36.5,40.5 parent: 2 - - uid: 10960 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8908 components: - type: Transform rot: 3.141592653589793 rad - pos: 76.5,8.5 + pos: 36.5,39.5 parent: 2 - - uid: 10961 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8909 components: - type: Transform - pos: 46.5,101.5 + rot: 3.141592653589793 rad + pos: 36.5,38.5 parent: 2 - - uid: 11029 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-31.5 + rot: 1.5707963267948966 rad + pos: 35.5,37.5 parent: 2 - - uid: 11034 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-30.5 + rot: 1.5707963267948966 rad + pos: 34.5,37.5 parent: 2 - - uid: 11201 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-44.5 + rot: 1.5707963267948966 rad + pos: 33.5,37.5 parent: 2 - - uid: 11381 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-41.5 + rot: 1.5707963267948966 rad + pos: 32.5,37.5 parent: 2 - - uid: 11443 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-44.5 + rot: 1.5707963267948966 rad + pos: 30.5,37.5 parent: 2 - - uid: 11503 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8915 components: - type: Transform - pos: 20.5,-8.5 + rot: 1.5707963267948966 rad + pos: 29.5,37.5 parent: 2 - - uid: 12669 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8916 components: - type: Transform - pos: -6.5,26.5 + rot: 1.5707963267948966 rad + pos: 28.5,37.5 parent: 2 - - uid: 12906 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8917 components: - type: Transform - pos: -10.5,16.5 + rot: 3.141592653589793 rad + pos: 28.5,37.5 parent: 2 - - uid: 13824 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8919 components: - type: Transform - pos: -8.5,26.5 + rot: 1.5707963267948966 rad + pos: 25.5,37.5 parent: 2 - - uid: 13871 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8920 components: - type: Transform - pos: -9.5,26.5 + rot: 1.5707963267948966 rad + pos: 24.5,37.5 parent: 2 - - uid: 13873 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8921 components: - type: Transform - pos: -11.5,26.5 + rot: 1.5707963267948966 rad + pos: 23.5,37.5 parent: 2 - - uid: 13897 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-47.5 + rot: 1.5707963267948966 rad + pos: 22.5,37.5 parent: 2 - - uid: 13914 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8923 components: - type: Transform - pos: -12.5,26.5 + rot: 1.5707963267948966 rad + pos: 21.5,37.5 parent: 2 - - uid: 14160 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8924 components: - type: Transform - pos: -12.5,23.5 + rot: 1.5707963267948966 rad + pos: 20.5,37.5 parent: 2 - - uid: 14520 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8925 components: - type: Transform - pos: 26.5,-26.5 + rot: 1.5707963267948966 rad + pos: 19.5,37.5 parent: 2 - - uid: 15358 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8926 components: - type: Transform - pos: 25.5,-26.5 + rot: 1.5707963267948966 rad + pos: 18.5,37.5 parent: 2 - - uid: 15694 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,50.5 + rot: 1.5707963267948966 rad + pos: 17.5,37.5 parent: 2 - - uid: 15697 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,48.5 + rot: 1.5707963267948966 rad + pos: 14.5,37.5 parent: 2 - - uid: 16028 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8929 components: - type: Transform - pos: 26.5,-27.5 + rot: 1.5707963267948966 rad + pos: 13.5,37.5 parent: 2 - - uid: 16029 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8930 components: - type: Transform - pos: 27.5,-26.5 + pos: 12.5,36.5 parent: 2 - - uid: 16163 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8931 components: - type: Transform - pos: 28.5,-26.5 + pos: 12.5,35.5 parent: 2 - - uid: 16198 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8932 components: - type: Transform - pos: -12.5,25.5 + pos: 12.5,34.5 parent: 2 - - uid: 16220 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-45.5 + pos: 12.5,31.5 parent: 2 - - uid: 16450 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-44.5 + pos: 12.5,29.5 parent: 2 - - uid: 16454 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-44.5 + pos: 12.5,28.5 parent: 2 - - uid: 19353 - components: - - type: Transform - pos: 2.5,22.5 - parent: 16504 - - uid: 19354 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8936 components: - type: Transform - pos: 3.5,2.5 - parent: 16504 - - uid: 19355 + pos: 12.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8937 components: - type: Transform - pos: 3.5,3.5 - parent: 16504 - - uid: 19356 + pos: 12.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8938 components: - type: Transform - pos: 3.5,5.5 - parent: 16504 - - uid: 19357 + pos: 12.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8939 components: - type: Transform - pos: 3.5,4.5 - parent: 16504 - - uid: 19358 + pos: 12.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8940 components: - type: Transform - pos: 3.5,1.5 - parent: 16504 - - uid: 19359 + pos: 12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8941 components: - type: Transform - pos: -1.5,22.5 - parent: 16504 - - uid: 19360 + pos: 12.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8942 components: - type: Transform - pos: 3.5,21.5 - parent: 16504 - - uid: 19361 + pos: 12.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8943 components: - type: Transform - pos: -2.5,21.5 - parent: 16504 - - uid: 19362 + pos: 12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8944 components: - type: Transform - pos: -2.5,20.5 - parent: 16504 - - uid: 19363 + pos: 12.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8945 components: - type: Transform - pos: 3.5,20.5 - parent: 16504 - - uid: 19364 + pos: 12.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8946 components: - type: Transform - pos: -10.5,26.5 - parent: 16504 - - uid: 19365 + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8947 components: - type: Transform - pos: -9.5,26.5 - parent: 16504 - - uid: 19366 + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8948 components: - type: Transform - pos: -7.5,26.5 - parent: 16504 - - uid: 19367 + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8949 components: - type: Transform - pos: -6.5,26.5 - parent: 16504 - - uid: 19368 + rot: -1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8950 components: - type: Transform - pos: -26.5,32.5 - parent: 16504 - - uid: 19369 + rot: -1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8951 components: - type: Transform - pos: -23.5,32.5 - parent: 16504 - - uid: 19370 + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8952 components: - type: Transform - pos: 15.5,23.5 - parent: 16504 - - uid: 19371 + rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8953 components: - type: Transform - pos: 13.5,23.5 - parent: 16504 - - uid: 19372 + rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8954 components: - type: Transform - pos: 13.5,27.5 - parent: 16504 - - uid: 19373 + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8955 components: - type: Transform - pos: 15.5,27.5 - parent: 16504 - - uid: 19374 + rot: -1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8956 components: - type: Transform - pos: 8.5,34.5 - parent: 16504 - - uid: 19375 + rot: -1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8957 components: - type: Transform - pos: 23.5,33.5 - parent: 16504 - - uid: 19376 + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8958 components: - type: Transform - pos: 22.5,33.5 - parent: 16504 - - uid: 19377 + rot: -1.5707963267948966 rad + pos: 26.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8959 components: - type: Transform - pos: 22.5,32.5 - parent: 16504 - - uid: 19378 + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8960 components: - type: Transform - pos: 23.5,34.5 - parent: 16504 - - uid: 20377 + rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8961 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,-20.5 + pos: 30.5,13.5 parent: 2 - - uid: 20378 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8962 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,-19.5 + pos: 32.5,13.5 parent: 2 - - uid: 20379 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8963 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,-18.5 + pos: 33.5,13.5 parent: 2 - - uid: 20380 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8964 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,-17.5 + pos: 34.5,13.5 parent: 2 - - uid: 20381 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8965 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,-15.5 + pos: 35.5,13.5 parent: 2 - - uid: 20382 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-16.5 + rot: 3.141592653589793 rad + pos: 36.5,14.5 parent: 2 - - uid: 20529 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,34.5 - parent: 16504 - - uid: 21242 + rot: 3.141592653589793 rad + pos: 36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,50.5 + rot: 3.141592653589793 rad + pos: 36.5,16.5 parent: 2 - - uid: 21890 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8969 components: - type: Transform - pos: -12.5,22.5 + rot: 3.141592653589793 rad + pos: 36.5,17.5 parent: 2 - - uid: 21891 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8970 components: - type: Transform - pos: -12.5,20.5 + rot: 3.141592653589793 rad + pos: 36.5,18.5 parent: 2 - - uid: 21893 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8971 components: - type: Transform - pos: -9.5,16.5 + rot: 3.141592653589793 rad + pos: 36.5,20.5 parent: 2 - - uid: 22152 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,32.5 - parent: 16504 - - uid: 22153 + rot: 3.141592653589793 rad + pos: 36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,33.5 - parent: 16504 - - uid: 22154 + rot: 3.141592653589793 rad + pos: 36.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,29.5 - parent: 16504 - - uid: 22156 + rot: 3.141592653589793 rad + pos: 36.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,28.5 - parent: 16504 - - uid: 22157 + rot: 3.141592653589793 rad + pos: 36.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,30.5 - parent: 16504 - - uid: 22158 + rot: 3.141592653589793 rad + pos: 36.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,27.5 - parent: 16504 - - uid: 22159 + rot: 3.141592653589793 rad + pos: 36.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,26.5 - parent: 16504 - - uid: 22160 + rot: 3.141592653589793 rad + pos: 36.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,25.5 - parent: 16504 - - uid: 22161 + rot: 3.141592653589793 rad + pos: 36.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,24.5 - parent: 16504 - - uid: 22162 + rot: 3.141592653589793 rad + pos: 36.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,23.5 - parent: 16504 - - uid: 22163 + rot: 3.141592653589793 rad + pos: 36.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,22.5 - parent: 16504 - - uid: 22165 + rot: 3.141592653589793 rad + pos: 36.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,20.5 - parent: 16504 - - uid: 22166 + rot: 3.141592653589793 rad + pos: 36.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,34.5 - parent: 16504 - - uid: 22168 + rot: 3.141592653589793 rad + pos: 36.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,32.5 - parent: 16504 - - uid: 22169 + rot: 1.5707963267948966 rad + pos: 37.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,30.5 - parent: 16504 - - uid: 22170 + rot: 1.5707963267948966 rad + pos: 38.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,29.5 - parent: 16504 - - uid: 22171 + rot: 1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,31.5 - parent: 16504 - - uid: 22172 + rot: 1.5707963267948966 rad + pos: 40.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,27.5 - parent: 16504 - - uid: 22173 + rot: 1.5707963267948966 rad + pos: 41.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,26.5 - parent: 16504 - - uid: 22174 + rot: 1.5707963267948966 rad + pos: 42.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,25.5 - parent: 16504 - - uid: 22175 + rot: 1.5707963267948966 rad + pos: 44.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,24.5 - parent: 16504 - - uid: 22177 + rot: 1.5707963267948966 rad + pos: 45.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,22.5 - parent: 16504 - - uid: 22178 + rot: 1.5707963267948966 rad + pos: 46.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,21.5 - parent: 16504 - - uid: 22179 + rot: 1.5707963267948966 rad + pos: 47.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,20.5 - parent: 16504 - - uid: 22189 + rot: 1.5707963267948966 rad + pos: 49.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8996 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,33.5 - parent: 16504 - - uid: 22190 + pos: 50.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8997 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,33.5 - parent: 16504 - - uid: 22229 + pos: 51.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-24.5 + rot: 1.5707963267948966 rad + pos: 52.5,13.5 parent: 2 - - uid: 22230 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 8999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-25.5 + rot: 1.5707963267948966 rad + pos: 53.5,13.5 parent: 2 - - uid: 22231 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-27.5 + rot: 1.5707963267948966 rad + pos: 54.5,13.5 parent: 2 -- proto: GrilleBroken - entities: - - uid: 3170 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-29.5 + rot: 1.5707963267948966 rad + pos: 55.5,13.5 parent: 2 - - uid: 3193 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9002 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-47.5 + pos: 56.5,13.5 parent: 2 - - uid: 3212 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9003 components: - type: Transform - pos: 34.5,-35.5 + rot: 1.5707963267948966 rad + pos: 57.5,13.5 parent: 2 - - uid: 3213 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-44.5 + rot: 1.5707963267948966 rad + pos: 58.5,13.5 parent: 2 - - uid: 3214 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9005 components: - type: Transform - pos: 34.5,-41.5 + rot: 1.5707963267948966 rad + pos: 59.5,13.5 parent: 2 - - uid: 3215 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-31.5 + rot: 1.5707963267948966 rad + pos: 60.5,13.5 parent: 2 - - uid: 4236 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-33.5 + rot: 1.5707963267948966 rad + pos: 61.5,13.5 parent: 2 - - uid: 4292 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-33.5 + rot: 1.5707963267948966 rad + pos: 62.5,13.5 parent: 2 - - uid: 4293 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9009 components: - type: Transform - pos: 18.5,-31.5 + rot: 1.5707963267948966 rad + pos: 63.5,13.5 parent: 2 - - uid: 4351 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-28.5 + rot: 1.5707963267948966 rad + pos: 66.5,13.5 parent: 2 - - uid: 4369 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9011 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-37.5 + pos: 67.5,13.5 parent: 2 - - uid: 4387 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9012 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-30.5 + pos: 68.5,13.5 parent: 2 - - uid: 4389 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9013 components: - type: Transform - pos: 27.5,-29.5 + rot: 1.5707963267948966 rad + pos: 69.5,13.5 parent: 2 - - uid: 4494 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9014 components: - type: Transform - pos: 15.5,-43.5 + rot: 1.5707963267948966 rad + pos: 70.5,13.5 parent: 2 - - uid: 4508 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9015 components: - type: Transform - pos: 19.5,-46.5 + pos: 71.5,14.5 parent: 2 - - uid: 8148 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9016 components: - type: Transform - pos: 6.5,-24.5 + pos: 71.5,15.5 parent: 2 - - uid: 9709 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 + pos: 71.5,17.5 parent: 2 - - uid: 10206 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-36.5 + pos: 71.5,19.5 parent: 2 - - uid: 10911 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9019 components: - type: Transform - pos: 7.5,-29.5 + pos: 71.5,20.5 parent: 2 - - uid: 10913 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-37.5 + pos: 71.5,21.5 parent: 2 - - uid: 10962 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9021 components: - type: Transform - pos: 14.5,89.5 + pos: 71.5,22.5 parent: 2 - - uid: 10963 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,85.5 + pos: 71.5,23.5 parent: 2 - - uid: 10964 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,95.5 + pos: 71.5,24.5 parent: 2 - - uid: 10965 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,93.5 + pos: 71.5,25.5 parent: 2 - - uid: 10966 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,65.5 + pos: 71.5,27.5 parent: 2 - - uid: 10967 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,34.5 + pos: 71.5,28.5 parent: 2 - - uid: 10968 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9027 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 35.5,92.5 + pos: 71.5,29.5 parent: 2 - - type: Physics - bodyType: Dynamic - - uid: 10969 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9028 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,91.5 + pos: 71.5,31.5 parent: 2 - - uid: 10970 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9029 components: - type: Transform - pos: 28.5,91.5 + pos: 71.5,32.5 parent: 2 - - uid: 10971 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,90.5 + pos: 71.5,33.5 parent: 2 - - uid: 10972 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,94.5 + pos: 71.5,34.5 parent: 2 - - uid: 10973 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,94.5 + pos: 71.5,35.5 parent: 2 - - uid: 10974 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,93.5 + pos: 71.5,36.5 parent: 2 - - uid: 10975 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,93.5 + rot: -1.5707963267948966 rad + pos: 72.5,37.5 parent: 2 - - uid: 10976 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9035 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,93.5 + pos: 73.5,37.5 parent: 2 - - uid: 10977 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9036 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,93.5 + pos: 74.5,37.5 parent: 2 - - uid: 10978 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9037 components: - type: Transform - pos: 11.5,88.5 + rot: -1.5707963267948966 rad + pos: 75.5,37.5 parent: 2 - - uid: 13885 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-23.5 + rot: -1.5707963267948966 rad + pos: 77.5,37.5 parent: 2 - - uid: 13889 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9039 components: - type: Transform - pos: 9.5,-32.5 + rot: -1.5707963267948966 rad + pos: 78.5,37.5 parent: 2 - - uid: 13892 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9040 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-38.5 + pos: 79.5,37.5 parent: 2 - - uid: 13893 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-31.5 + rot: -1.5707963267948966 rad + pos: 81.5,37.5 parent: 2 - - uid: 13898 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9042 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-41.5 + pos: 82.5,38.5 parent: 2 - - uid: 14177 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9043 components: - type: Transform - pos: -12.5,21.5 + rot: 3.141592653589793 rad + pos: 82.5,39.5 parent: 2 - - uid: 16359 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9044 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-28.5 + pos: 82.5,40.5 parent: 2 - - uid: 16441 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-26.5 + rot: 3.141592653589793 rad + pos: 82.5,41.5 parent: 2 - - uid: 19379 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,22.5 - parent: 16504 - - uid: 19380 + rot: 3.141592653589793 rad + pos: 82.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9047 components: - type: Transform - pos: 0.5,22.5 - parent: 16504 - - uid: 19381 + rot: 3.141592653589793 rad + pos: 82.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,22.5 - parent: 16504 - - uid: 19382 + rot: 3.141592653589793 rad + pos: 82.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9049 components: - type: Transform - pos: 1.5,22.5 - parent: 16504 - - uid: 19383 + rot: 3.141592653589793 rad + pos: 82.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9050 components: - type: Transform - pos: -0.5,22.5 - parent: 16504 - - uid: 19384 + rot: 3.141592653589793 rad + pos: 82.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9051 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,22.5 - parent: 16504 - - uid: 19385 + pos: 82.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9052 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 16504 - - uid: 19386 + pos: 82.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9053 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,22.5 - parent: 16504 - - uid: 21477 + pos: 82.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-33.5 + rot: 3.141592653589793 rad + pos: 71.5,38.5 parent: 2 - - uid: 21894 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9055 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,21.5 + pos: 71.5,41.5 parent: 2 - - uid: 21910 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9056 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,24.5 + pos: 71.5,42.5 parent: 2 - - uid: 21911 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,26.5 + rot: 3.141592653589793 rad + pos: 71.5,43.5 parent: 2 - - uid: 22155 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,28.5 - parent: 16504 - - uid: 22164 + rot: 3.141592653589793 rad + pos: 71.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9059 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,31.5 - parent: 16504 - - uid: 22167 + pos: 71.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9060 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,33.5 - parent: 16504 - - uid: 22176 + pos: 71.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,28.5 - parent: 16504 - - uid: 22180 + rot: 3.141592653589793 rad + pos: 71.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9062 components: - type: Transform - pos: -33.5,28.5 - parent: 16504 - - uid: 22181 + rot: 3.141592653589793 rad + pos: 71.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9063 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,28.5 - parent: 16504 - - uid: 22182 + pos: 71.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,23.5 - parent: 16504 - - uid: 22183 + rot: -1.5707963267948966 rad + pos: 64.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9065 components: - type: Transform - pos: -33.5,23.5 - parent: 16504 - - uid: 22184 + rot: 1.5707963267948966 rad + pos: 69.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9066 components: - type: Transform - pos: -32.5,31.5 - parent: 16504 - - uid: 22185 + rot: 1.5707963267948966 rad + pos: 68.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9067 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,33.5 - parent: 16504 - - uid: 22186 + pos: 65.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9068 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,21.5 - parent: 16504 -- proto: GrilleDiagonal - entities: - - uid: 13350 + pos: 64.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9069 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,16.5 + pos: 63.5,52.5 parent: 2 - - uid: 19389 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9070 components: - type: Transform - pos: -2.5,22.5 - parent: 16504 - - uid: 19390 + pos: 71.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9071 + components: + - type: Transform + pos: 71.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9072 + components: + - type: Transform + pos: 71.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9073 + components: + - type: Transform + pos: 71.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9074 + components: + - type: Transform + pos: 71.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9075 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,22.5 - parent: 16504 - - uid: 19391 + pos: 72.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9076 components: - type: Transform - pos: -27.5,32.5 - parent: 16504 - - uid: 19392 + rot: -1.5707963267948966 rad + pos: 73.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9077 components: - type: Transform - pos: -26.5,33.5 - parent: 16504 - - uid: 19393 + rot: -1.5707963267948966 rad + pos: 74.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9078 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 16504 - - uid: 20533 + pos: 75.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9079 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,33.5 - parent: 16504 -- proto: GrilleSpawner - entities: - - uid: 10979 + pos: 76.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9080 components: - type: Transform - pos: 68.5,34.5 + rot: -1.5707963267948966 rad + pos: 77.5,60.5 parent: 2 -- proto: GroundCannabis - entities: - - uid: 10980 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9081 components: - type: Transform - pos: 7.5367393,3.0548403 + rot: -1.5707963267948966 rad + pos: 78.5,60.5 parent: 2 - - uid: 10981 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9082 components: - type: Transform - pos: 7.521114,3.4610903 + rot: -1.5707963267948966 rad + pos: 79.5,60.5 parent: 2 -- proto: GunSafe - entities: - - uid: 10982 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9083 components: - - type: MetaData - name: оружейный сейф дубинок - type: Transform - pos: 57.5,32.5 + pos: 71.5,61.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 10988 - - 10983 - - 10989 - - 10990 - - 10991 - - 10984 - - 10985 - - 10986 - - 10992 - - 10987 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19347 - components: - - type: Transform - pos: -1.5,42.5 - parent: 16504 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19350 - - 19348 - - 19349 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19394 - components: - - type: Transform - pos: 2.5,42.5 - parent: 16504 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19395 - - 19396 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: GunSafeDisabler - entities: - - uid: 10993 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9084 components: - type: Transform - pos: 58.5,32.5 + pos: 71.5,62.5 parent: 2 -- proto: GunSafeLaserCarbine - entities: - - uid: 10994 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9085 components: - type: Transform - pos: 61.5,30.5 + rot: -1.5707963267948966 rad + pos: 66.5,53.5 parent: 2 -- proto: GunSafePistolMk58 - entities: - - uid: 10995 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9086 components: - type: Transform - pos: 59.5,30.5 + rot: -1.5707963267948966 rad + pos: 67.5,53.5 parent: 2 -- proto: GunSafeRifleLecter - entities: - - uid: 10996 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9087 components: - type: Transform - pos: 61.5,32.5 + rot: -1.5707963267948966 rad + pos: 68.5,53.5 parent: 2 -- proto: GunSafeShotgunKammerer - entities: - - uid: 10997 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9088 components: - type: Transform - pos: 60.5,32.5 + rot: -1.5707963267948966 rad + pos: 69.5,53.5 parent: 2 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 10998 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9089 components: - type: Transform - pos: 59.5,32.5 + rot: -1.5707963267948966 rad + pos: 70.5,53.5 parent: 2 -- proto: Gyroscope - entities: - - uid: 19397 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9090 components: - type: Transform - pos: -24.5,24.5 - parent: 16504 -- proto: Handcuffs - entities: - - uid: 1050 + rot: -1.5707963267948966 rad + pos: 36.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9091 components: - type: Transform - parent: 1046 - - type: Physics - canCollide: False - - uid: 1051 + rot: 1.5707963267948966 rad + pos: 6.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9092 components: - type: Transform - parent: 1046 - - type: Physics - canCollide: False - - uid: 10999 + pos: 30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9093 components: - type: Transform - pos: 15.573995,8.459485 + rot: 1.5707963267948966 rad + pos: 8.5,32.5 parent: 2 - - uid: 11000 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9094 components: - type: Transform - pos: 39.530518,30.571348 + rot: 1.5707963267948966 rad + pos: 10.5,32.5 parent: 2 -- proto: HandheldHealthAnalyzer - entities: - - uid: 11001 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9095 components: - type: Transform - pos: 26.443588,-2.342307 + rot: 1.5707963267948966 rad + pos: 11.5,32.5 parent: 2 - - uid: 11002 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9096 components: - type: Transform - pos: 53.36373,-5.378605 + pos: 47.5,51.5 parent: 2 -- proto: HandheldStationMap - entities: - - uid: 6675 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9097 components: - type: Transform - parent: 6673 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11003 + pos: 47.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9098 components: - type: Transform - pos: 9.351891,31.611198 + pos: 47.5,48.5 parent: 2 - - uid: 11004 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9099 components: - type: Transform - pos: 5.369075,5.5609436 + pos: 47.5,47.5 parent: 2 - - uid: 11005 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9100 components: - type: Transform - pos: 23.516209,-4.270588 + pos: 47.5,46.5 parent: 2 - - uid: 11006 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9101 components: - type: Transform - pos: 24.46905,27.618362 + pos: 47.5,45.5 parent: 2 - - uid: 11007 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9102 components: - type: Transform - pos: 78.51673,58.556747 + pos: 47.5,44.5 parent: 2 - - uid: 11008 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9103 components: - type: Transform - pos: 45.503586,69.51929 + rot: -1.5707963267948966 rad + pos: 46.5,43.5 parent: 2 - - uid: 11009 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9104 components: - type: Transform - pos: 65.44374,49.566578 + rot: -1.5707963267948966 rad + pos: 45.5,43.5 parent: 2 - - uid: 11010 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9105 components: - type: Transform - pos: 41.548977,62.521076 + rot: -1.5707963267948966 rad + pos: 44.5,43.5 parent: 2 -- proto: HandLabeler - entities: - - uid: 11011 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9106 components: - type: Transform - pos: 92.61322,18.462994 + rot: -1.5707963267948966 rad + pos: 43.5,43.5 parent: 2 - - uid: 11012 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9107 components: - type: Transform - pos: 8.52464,9.663798 + rot: -1.5707963267948966 rad + pos: 42.5,43.5 parent: 2 - - uid: 11013 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9108 components: - type: Transform - pos: 20.40706,19.545523 + rot: -1.5707963267948966 rad + pos: 41.5,43.5 parent: 2 - - uid: 11014 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9109 components: - type: Transform - pos: 52.57107,-5.4140863 + rot: -1.5707963267948966 rad + pos: 40.5,43.5 parent: 2 - - uid: 11015 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9110 components: - type: Transform - pos: 43.472748,5.5077753 + rot: -1.5707963267948966 rad + pos: 39.5,43.5 parent: 2 - - uid: 11016 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9112 components: - type: Transform - pos: 34.55772,9.73306 + rot: 3.141592653589793 rad + pos: 37.5,41.5 parent: 2 - - uid: 11017 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9113 components: - type: Transform - pos: 52.57944,49.463585 + rot: 3.141592653589793 rad + pos: 37.5,40.5 parent: 2 - - uid: 11018 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9114 components: - type: Transform - pos: 25.541246,24.606262 + rot: 3.141592653589793 rad + pos: 37.5,39.5 parent: 2 - - uid: 11019 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9115 components: - type: Transform - pos: 24.446766,-8.308596 + rot: 3.141592653589793 rad + pos: 37.5,38.5 parent: 2 - - uid: 11020 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9116 components: - type: Transform - pos: 24.463417,-1.9425753 + rot: 1.5707963267948966 rad + pos: 35.5,36.5 parent: 2 - - uid: 11021 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9117 components: - type: Transform - pos: 15.456744,11.58169 + rot: 1.5707963267948966 rad + pos: 34.5,36.5 parent: 2 - - uid: 11022 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9118 components: - type: Transform - pos: 7.689167,31.627663 + rot: 1.5707963267948966 rad + pos: 33.5,36.5 parent: 2 - - uid: 11023 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9119 components: - type: Transform - pos: 65.44771,64.04094 + rot: 1.5707963267948966 rad + pos: 31.5,36.5 parent: 2 - - uid: 11024 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9120 components: - type: Transform - pos: 42.147377,42.589478 + rot: 1.5707963267948966 rad + pos: 30.5,36.5 parent: 2 - - uid: 11025 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9121 components: - type: Transform - pos: 74.47004,62.509686 + rot: 1.5707963267948966 rad + pos: 29.5,36.5 parent: 2 - - uid: 11026 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9123 components: - type: Transform - pos: 55.407887,6.581035 + rot: 1.5707963267948966 rad + pos: 27.5,36.5 parent: 2 -- proto: HeatExchanger - entities: - - uid: 11027 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9124 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,86.5 + pos: 26.5,36.5 parent: 2 -- proto: HighSecArmoryLocked - entities: - - uid: 11028 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9125 components: - type: Transform - pos: 57.5,29.5 + pos: 37.5,37.5 parent: 2 -- proto: HighSecCentralCommandLocked - entities: - - uid: 19398 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9126 components: - type: Transform - pos: 6.5,7.5 - parent: 16504 - - uid: 19399 + pos: 37.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9127 components: - type: Transform - pos: 0.5,40.5 - parent: 16504 -- proto: HighSecCommandLocked - entities: - - uid: 323 + pos: 37.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9128 components: - type: Transform - pos: 22.5,-32.5 + pos: 37.5,33.5 parent: 2 - - uid: 5845 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9129 components: - type: Transform - pos: 21.5,-38.5 + pos: 37.5,32.5 parent: 2 - - uid: 6531 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9130 components: - type: Transform - pos: 23.5,-38.5 + pos: 37.5,31.5 parent: 2 - - uid: 11030 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9131 components: - type: Transform - pos: 10.5,26.5 + pos: 37.5,30.5 parent: 2 - - uid: 11031 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9132 components: - type: Transform - pos: 53.5,50.5 + pos: 37.5,29.5 parent: 2 - - uid: 11032 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9133 components: - type: Transform - pos: 59.5,48.5 + pos: 37.5,28.5 parent: 2 - - uid: 11033 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,26.5 + pos: 37.5,25.5 parent: 2 -- proto: HolofanProjectorEmpty - entities: - - uid: 50 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9135 components: - type: Transform - parent: 41 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: HospitalCurtains - entities: - - uid: 11036 + pos: 37.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9136 components: - type: Transform - pos: 22.5,59.5 + pos: 37.5,22.5 parent: 2 - - uid: 11037 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9137 components: - type: Transform - pos: 57.5,36.5 + pos: 37.5,21.5 parent: 2 - - uid: 11951 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9138 components: - type: Transform - pos: 21.5,59.5 + pos: 37.5,20.5 parent: 2 - - uid: 13577 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9139 components: - type: Transform - pos: 10.5,53.5 + pos: 37.5,19.5 parent: 2 - - uid: 19400 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9140 components: - type: Transform - pos: 17.5,32.5 - parent: 16504 - - uid: 19401 + pos: 37.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9141 components: - type: Transform - pos: 17.5,34.5 - parent: 16504 - - uid: 19402 + pos: 37.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9142 components: - type: Transform - pos: 15.5,32.5 - parent: 16504 -- proto: HospitalCurtainsOpen - entities: - - uid: 11038 + pos: 37.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9143 components: - type: Transform - pos: 41.5,-4.5 + rot: -1.5707963267948966 rad + pos: 38.5,14.5 parent: 2 - - uid: 11039 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9144 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-2.5 + pos: 39.5,14.5 parent: 2 - - uid: 11040 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9145 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-0.5 + pos: 40.5,14.5 parent: 2 - - uid: 11041 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9146 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,1.5 + pos: 41.5,14.5 parent: 2 - - uid: 11042 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9147 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-2.5 + pos: 42.5,14.5 parent: 2 - - uid: 11043 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9148 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-0.5 + pos: 43.5,14.5 parent: 2 - - uid: 11044 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9149 components: - type: Transform - pos: 22.5,22.5 + rot: -1.5707963267948966 rad + pos: 45.5,14.5 parent: 2 - - uid: 11045 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9150 components: - type: Transform - pos: 15.5,4.5 + rot: -1.5707963267948966 rad + pos: 46.5,14.5 parent: 2 - - uid: 11046 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9151 components: - type: Transform - pos: 2.5,1.5 + rot: -1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - - uid: 11047 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9152 components: - type: Transform - pos: 14.5,58.5 + rot: -1.5707963267948966 rad + pos: 49.5,14.5 parent: 2 - - uid: 11048 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9153 components: - type: Transform - pos: 14.5,57.5 + rot: -1.5707963267948966 rad + pos: 50.5,14.5 parent: 2 - - uid: 11049 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,65.5 + rot: -1.5707963267948966 rad + pos: 51.5,14.5 parent: 2 - - uid: 19403 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9155 components: - type: Transform - pos: 17.5,36.5 - parent: 16504 - - uid: 19404 + rot: -1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9156 components: - type: Transform - pos: 15.5,30.5 - parent: 16504 -- proto: hydroponicsSoil - entities: - - uid: 11050 + rot: -1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-12.5 + rot: -1.5707963267948966 rad + pos: 54.5,14.5 parent: 2 - - uid: 11051 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-11.5 + rot: -1.5707963267948966 rad + pos: 55.5,14.5 parent: 2 - - uid: 21215 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9159 components: - type: Transform - pos: 42.5,53.5 + rot: -1.5707963267948966 rad + pos: 56.5,14.5 parent: 2 - - uid: 21216 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9160 components: - type: Transform - pos: 42.5,52.5 + rot: -1.5707963267948966 rad + pos: 57.5,14.5 parent: 2 - - uid: 21217 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9161 components: - type: Transform - pos: 42.5,51.5 + rot: -1.5707963267948966 rad + pos: 58.5,14.5 parent: 2 -- proto: HydroponicsToolClippers - entities: - - uid: 11052 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9162 components: - type: Transform - pos: 58.36517,36.66971 + rot: -1.5707963267948966 rad + pos: 59.5,14.5 parent: 2 -- proto: HydroponicsToolHatchet - entities: - - uid: 11053 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9163 components: - type: Transform - pos: 68.68279,28.617638 + rot: -1.5707963267948966 rad + pos: 60.5,14.5 parent: 2 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 11054 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9164 components: - type: Transform - pos: 9.57419,-12.499212 + rot: -1.5707963267948966 rad + pos: 61.5,14.5 parent: 2 - - uid: 11055 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9165 components: - type: Transform - pos: 68.37029,28.398888 + rot: -1.5707963267948966 rad + pos: 62.5,14.5 parent: 2 - - uid: 11056 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9166 components: - type: Transform - pos: 58.62809,36.625893 + rot: -1.5707963267948966 rad + pos: 63.5,14.5 parent: 2 -- proto: HydroponicsToolSpade - entities: - - uid: 11057 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9167 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.056137,41.104946 + pos: 66.5,14.5 parent: 2 -- proto: hydroponicsTray - entities: - - uid: 3869 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9168 components: - type: Transform - pos: 40.5,48.5 + rot: -1.5707963267948966 rad + pos: 67.5,14.5 parent: 2 - - uid: 11058 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9169 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,41.5 + pos: 68.5,14.5 parent: 2 - - uid: 11059 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9170 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,39.5 + pos: 69.5,14.5 parent: 2 - - uid: 11060 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9171 components: - type: Transform - pos: 40.5,49.5 + rot: 3.141592653589793 rad + pos: 70.5,15.5 parent: 2 - - uid: 11061 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9172 components: - type: Transform - pos: 68.5,30.5 + rot: 3.141592653589793 rad + pos: 70.5,16.5 parent: 2 - - uid: 11062 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9173 components: - type: Transform - pos: 68.5,24.5 + rot: 3.141592653589793 rad + pos: 70.5,18.5 parent: 2 - - type: PlantHolder - weedLevel: 2 - - uid: 11063 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9174 components: - type: Transform - pos: 68.5,25.5 + rot: 3.141592653589793 rad + pos: 70.5,20.5 parent: 2 - - uid: 11064 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9175 components: - type: Transform - pos: 68.5,26.5 + rot: 3.141592653589793 rad + pos: 70.5,21.5 parent: 2 - - uid: 11065 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9176 components: - type: Transform - pos: 68.5,27.5 + rot: 3.141592653589793 rad + pos: 70.5,22.5 parent: 2 - - type: PlantHolder - weedLevel: 2 - - uid: 11066 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,24.5 + rot: 3.141592653589793 rad + pos: 70.5,23.5 parent: 2 - - uid: 11067 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,25.5 + rot: 3.141592653589793 rad + pos: 70.5,24.5 parent: 2 - - uid: 11068 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,26.5 + rot: 3.141592653589793 rad + pos: 70.5,25.5 parent: 2 - - uid: 21214 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9180 components: - type: Transform - pos: 41.5,49.5 + rot: 3.141592653589793 rad + pos: 70.5,26.5 parent: 2 - - uid: 21349 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9181 components: - type: Transform - pos: 37.5,49.5 + rot: 3.141592653589793 rad + pos: 70.5,28.5 parent: 2 - - uid: 21350 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9182 components: - type: Transform - pos: 39.5,49.5 + rot: 3.141592653589793 rad + pos: 70.5,29.5 parent: 2 - - uid: 21351 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9183 components: - type: Transform - pos: 38.5,48.5 + rot: 3.141592653589793 rad + pos: 70.5,30.5 parent: 2 - - uid: 21352 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9184 components: - type: Transform - pos: 38.5,49.5 + rot: 3.141592653589793 rad + pos: 70.5,31.5 parent: 2 - - uid: 21353 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9185 components: - type: Transform - pos: 37.5,48.5 + rot: 3.141592653589793 rad + pos: 70.5,33.5 parent: 2 - - uid: 21354 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9186 components: - type: Transform - pos: 39.5,48.5 + rot: 3.141592653589793 rad + pos: 70.5,34.5 parent: 2 - - uid: 21355 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9187 components: - type: Transform - pos: 41.5,48.5 + rot: 3.141592653589793 rad + pos: 70.5,36.5 parent: 2 - - uid: 21358 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9188 components: - type: Transform - pos: 42.5,49.5 + rot: 3.141592653589793 rad + pos: 70.5,37.5 parent: 2 - - uid: 21360 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9189 components: - type: Transform - pos: 42.5,48.5 + rot: 3.141592653589793 rad + pos: 70.5,39.5 parent: 2 -- proto: HydroponicsTrayEmpty - entities: - - uid: 11069 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,40.5 + rot: 3.141592653589793 rad + pos: 70.5,40.5 parent: 2 -- proto: HydroponicsTrayMachineCircuitboard - entities: - - uid: 11070 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9191 components: - type: Transform - pos: 24.533537,-10.43151 + rot: 3.141592653589793 rad + pos: 70.5,41.5 parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 11071 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9192 components: - type: Transform - pos: 57.388237,47.704113 + rot: 3.141592653589793 rad + pos: 70.5,42.5 parent: 2 -- proto: IncompleteBaseBallBat - entities: - - uid: 21289 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9193 components: - - type: MetaData - name: кий - type: Transform - rot: 1.5707963267948966 rad - pos: 15.552657,48.833862 + rot: 3.141592653589793 rad + pos: 70.5,43.5 parent: 2 - missingComponents: - - Construction -- proto: InflatableWall - entities: - - uid: 11072 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9194 components: - type: Transform - pos: 70.5,6.5 + rot: 3.141592653589793 rad + pos: 70.5,44.5 parent: 2 - - uid: 11073 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9195 components: - type: Transform - pos: 71.5,6.5 + rot: 3.141592653589793 rad + pos: 70.5,46.5 parent: 2 - - uid: 11074 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9196 components: - type: Transform - pos: 64.5,22.5 + rot: 3.141592653589793 rad + pos: 70.5,47.5 parent: 2 - - uid: 11075 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9197 components: - type: Transform - pos: 32.5,-6.5 + rot: 3.141592653589793 rad + pos: 70.5,48.5 parent: 2 - - uid: 11076 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9198 components: - type: Transform - pos: 58.5,-7.5 + rot: 3.141592653589793 rad + pos: 70.5,51.5 parent: 2 - - uid: 11077 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9199 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,78.5 + pos: 25.5,36.5 parent: 2 -- proto: IngotGold - entities: - - uid: 11078 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9200 components: - type: Transform - pos: 8.155453,28.597544 + rot: 1.5707963267948966 rad + pos: 24.5,36.5 parent: 2 - - uid: 19405 - components: - - type: Transform - pos: -18.53483,19.168713 - parent: 16504 -- proto: IngotGold1 - entities: - - uid: 6591 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9201 components: - type: Transform - parent: 6590 - - type: Stack - count: 10 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21783 + rot: 1.5707963267948966 rad + pos: 23.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9202 components: - type: Transform - pos: 16.200787,45.625977 + rot: 1.5707963267948966 rad + pos: 22.5,36.5 parent: 2 - - uid: 21864 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9203 components: - type: Transform - pos: 16.502869,45.49056 + rot: 1.5707963267948966 rad + pos: 21.5,36.5 parent: 2 -- proto: IngotSilver - entities: - - uid: 11079 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9204 components: - type: Transform - pos: 8.702328,28.660044 + rot: 1.5707963267948966 rad + pos: 20.5,36.5 parent: 2 - - uid: 19406 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9205 components: - type: Transform - pos: -27.438072,29.549482 - parent: 16504 -- proto: IngotSilver1 - entities: - - uid: 6592 + rot: 1.5707963267948966 rad + pos: 19.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9206 components: - type: Transform - parent: 6590 - - type: Stack - count: 10 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: IntercomAssembly - entities: - - uid: 19407 + rot: 1.5707963267948966 rad + pos: 16.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9207 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 16504 - - uid: 19408 + pos: 15.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9208 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 16504 - - uid: 19409 + pos: 14.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9209 components: - type: Transform - pos: 14.5,39.5 - parent: 16504 -- proto: IntercomCommon - entities: - - uid: 11081 + pos: 13.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9210 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,19.5 + pos: 13.5,34.5 parent: 2 - - uid: 11082 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,34.5 + pos: 13.5,32.5 parent: 2 - - uid: 11083 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,10.5 + pos: 13.5,31.5 parent: 2 -- proto: IntercomEngineering - entities: - - uid: 11084 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9213 components: - type: Transform - pos: 52.5,54.5 + pos: 13.5,30.5 parent: 2 -- proto: IntercomMedical - entities: - - uid: 11085 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,10.5 + pos: 13.5,28.5 parent: 2 -- proto: IntercomScience - entities: - - uid: 11086 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,10.5 + pos: 13.5,25.5 parent: 2 -- proto: IntercomSecurity - entities: - - uid: 11087 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,33.5 + pos: 13.5,23.5 parent: 2 -- proto: IntercomSupply - entities: - - uid: 11088 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,15.5 + pos: 13.5,21.5 parent: 2 -- proto: IronRock - entities: - - uid: 11089 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9218 components: - type: Transform - pos: 53.5,89.5 + pos: 13.5,20.5 parent: 2 - - uid: 11090 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9219 components: - type: Transform - pos: 55.5,88.5 + pos: 13.5,19.5 parent: 2 - - uid: 11091 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9220 components: - type: Transform - pos: 54.5,89.5 + pos: 13.5,18.5 parent: 2 - - uid: 11092 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9221 components: - type: Transform - pos: 50.5,89.5 + pos: 13.5,17.5 parent: 2 - - uid: 11093 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9222 components: - type: Transform - pos: 54.5,91.5 + pos: 13.5,16.5 parent: 2 - - uid: 11094 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9223 components: - type: Transform - pos: 53.5,91.5 + rot: -1.5707963267948966 rad + pos: 14.5,14.5 parent: 2 - - uid: 11095 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9224 components: - type: Transform - pos: 51.5,91.5 + rot: -1.5707963267948966 rad + pos: 16.5,14.5 parent: 2 -- proto: IronRockArtifactFragment - entities: - - uid: 11096 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9225 components: - type: Transform - pos: 52.5,91.5 + rot: -1.5707963267948966 rad + pos: 17.5,14.5 parent: 2 - - uid: 11097 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9226 components: - type: Transform - pos: 55.5,91.5 + rot: -1.5707963267948966 rad + pos: 18.5,14.5 parent: 2 -- proto: IronRockBananium - entities: - - uid: 11098 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9227 components: - type: Transform - pos: 55.5,90.5 + rot: -1.5707963267948966 rad + pos: 19.5,14.5 parent: 2 - - uid: 11099 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9228 components: - type: Transform - pos: 55.5,89.5 + rot: -1.5707963267948966 rad + pos: 20.5,14.5 parent: 2 -- proto: IronRockCoal - entities: - - uid: 11100 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9229 components: - type: Transform - pos: 56.5,88.5 + rot: -1.5707963267948966 rad + pos: 21.5,14.5 parent: 2 - - uid: 11101 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9230 components: - type: Transform - pos: 56.5,89.5 + rot: -1.5707963267948966 rad + pos: 22.5,14.5 parent: 2 - - uid: 11102 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9231 components: - type: Transform - pos: 54.5,92.5 + rot: -1.5707963267948966 rad + pos: 23.5,14.5 parent: 2 -- proto: IronRockDiamond - entities: - - uid: 11103 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9232 components: - type: Transform - pos: 52.5,89.5 + rot: -1.5707963267948966 rad + pos: 24.5,14.5 parent: 2 - - uid: 11104 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9233 components: - type: Transform - pos: 51.5,90.5 + rot: -1.5707963267948966 rad + pos: 25.5,14.5 parent: 2 - - uid: 11105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9234 components: - type: Transform - pos: 51.5,89.5 + rot: -1.5707963267948966 rad + pos: 26.5,14.5 parent: 2 -- proto: IronRockMining - entities: - - uid: 11106 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9235 components: - type: Transform - pos: 54.5,90.5 + rot: -1.5707963267948966 rad + pos: 28.5,14.5 parent: 2 -- proto: IronRockPlasma - entities: - - uid: 11107 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9236 components: - type: Transform - pos: 53.5,90.5 + rot: -1.5707963267948966 rad + pos: 29.5,14.5 parent: 2 -- proto: IronRockQuartz - entities: - - uid: 11108 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9238 components: - type: Transform - pos: 50.5,90.5 + rot: -1.5707963267948966 rad + pos: 31.5,14.5 parent: 2 -- proto: IronRockUranium - entities: - - uid: 11109 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9239 components: - type: Transform - pos: 52.5,92.5 + rot: -1.5707963267948966 rad + pos: 32.5,14.5 parent: 2 -- proto: JanitorialTrolley - entities: - - uid: 11110 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9240 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,47.5 + pos: 33.5,14.5 parent: 2 - - uid: 11111 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,49.5 + rot: -1.5707963267948966 rad + pos: 34.5,14.5 parent: 2 - - uid: 19410 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,13.5 - parent: 16504 -- proto: JetpackSecurityFilled - entities: - - uid: 12 + rot: -1.5707963267948966 rad + pos: 35.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9243 components: - type: Transform - parent: 9 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16 + rot: -1.5707963267948966 rad + pos: 36.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9244 components: - type: Transform - parent: 13 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20 + pos: 27.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9245 components: - type: Transform - parent: 17 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24 + pos: 27.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9246 components: - type: Transform - parent: 21 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 28 + pos: 27.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9247 components: - type: Transform - parent: 25 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 32 + pos: 27.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9248 components: - type: Transform - parent: 29 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11113 + pos: 27.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9249 components: - type: Transform - parent: 11112 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Joint - entities: - - uid: 11119 + pos: 27.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9250 components: - type: Transform - parent: 11118 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11120 + pos: 27.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9251 components: - type: Transform - parent: 11118 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11121 + rot: -1.5707963267948966 rad + pos: 36.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9252 components: - type: Transform - parent: 11118 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Jukebox - entities: - - uid: 21411 + rot: 3.141592653589793 rad + pos: 18.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9253 components: - type: Transform - pos: 28.5,48.5 + rot: -1.5707963267948966 rad + pos: 12.5,24.5 parent: 2 -- proto: KitchenElectricGrill - entities: - - uid: 2320 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9254 components: - type: Transform - pos: 27.5,55.5 + rot: -1.5707963267948966 rad + pos: 81.5,59.5 parent: 2 -- proto: KitchenKnife - entities: - - uid: 19411 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.902172,24.792126 - parent: 16504 - - uid: 21594 + pos: 70.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9256 components: - type: Transform - pos: 28.491674,53.607323 + rot: 3.141592653589793 rad + pos: 70.5,62.5 parent: 2 - - uid: 21595 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.460608,53.565594 + rot: 3.141592653589793 rad + pos: 70.5,61.5 parent: 2 -- proto: KitchenMicrowave - entities: - - uid: 11131 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9258 components: - type: Transform - pos: 56.5,41.5 + rot: 3.141592653589793 rad + pos: 70.5,60.5 parent: 2 - - uid: 11132 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9259 components: - type: Transform - pos: 42.5,-6.5 + rot: 3.141592653589793 rad + pos: 70.5,58.5 parent: 2 - - uid: 11135 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9260 components: - type: Transform - pos: 43.5,40.5 + rot: 3.141592653589793 rad + pos: 70.5,57.5 parent: 2 - - uid: 16208 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9261 components: - type: Transform - pos: 29.5,55.5 + rot: 3.141592653589793 rad + pos: 70.5,55.5 parent: 2 - - uid: 21619 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9262 components: - type: Transform - pos: 28.5,55.5 + rot: 3.141592653589793 rad + pos: 70.5,54.5 parent: 2 -- proto: KitchenReagentGrinder - entities: - - uid: 11136 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9263 components: - type: Transform - pos: 55.5,41.5 + rot: 3.141592653589793 rad + pos: 70.5,53.5 parent: 2 - - uid: 11138 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9264 components: - type: Transform - pos: 20.5,-0.5 + rot: 3.141592653589793 rad + pos: 82.5,53.5 parent: 2 - - uid: 11141 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9265 components: - type: Transform - pos: 42.5,7.5 + rot: 3.141592653589793 rad + pos: 82.5,54.5 parent: 2 - - uid: 21564 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9266 components: - type: Transform - pos: 35.5,48.5 + rot: 3.141592653589793 rad + pos: 82.5,55.5 parent: 2 - - uid: 21598 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9267 components: - type: Transform - pos: 26.5,55.5 + rot: 3.141592653589793 rad + pos: 82.5,56.5 parent: 2 -- proto: KitchenSpike - entities: - - uid: 21568 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9268 components: - type: Transform - pos: 28.5,58.5 + rot: 3.141592653589793 rad + pos: 82.5,57.5 parent: 2 -- proto: KnifePlastic - entities: - - uid: 19412 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.564855,24.594208 - parent: 16504 -- proto: KukriKnife - entities: - - uid: 19413 + rot: 3.141592653589793 rad + pos: 82.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.360506,24.802542 - parent: 16504 -- proto: Lamp - entities: - - uid: 33 + pos: 81.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9271 components: - type: Transform - pos: 50.424248,31.737879 + pos: 81.5,54.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 34 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 34 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 35 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9272 components: - type: Transform - pos: 24.463417,-1.4738253 + pos: 81.5,55.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 36 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 36 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 11143 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.451569,10.803911 + pos: 81.5,56.5 parent: 2 - - uid: 11144 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9274 components: - type: Transform - pos: 59.35401,61.71356 + pos: 81.5,57.5 parent: 2 - - uid: 11145 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9275 components: - type: Transform - pos: 67.45392,10.457839 + pos: 81.5,58.5 parent: 2 -- proto: LampBanana - entities: - - uid: 11172 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9276 components: - type: Transform - pos: 9.793882,52.556126 + pos: 81.5,59.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 21212 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 21212 - - type: Physics - canCollide: True - - type: ActionsContainer -- proto: LampGold - entities: - - uid: 39 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9277 components: - type: Transform - pos: 47.558113,9.277111 + rot: 1.5707963267948966 rad + pos: 61.5,63.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 40 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 40 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 11146 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.498447,22.646479 + rot: 1.5707963267948966 rad + pos: 62.5,63.5 parent: 2 - - uid: 11147 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9279 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.540307,38.7267 + pos: 63.5,63.5 parent: 2 - - uid: 11148 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9280 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.42932,59.6045 + pos: 64.5,63.5 parent: 2 - - uid: 11149 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.46601,55.825245 + pos: 65.5,62.5 parent: 2 - - uid: 19414 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9282 components: - type: Transform - pos: -9.513048,30.73348 - parent: 16504 -- proto: LampInterrogator - entities: - - uid: 11150 + pos: 65.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9283 components: - type: Transform - pos: 50.425373,17.91198 + pos: 65.5,59.5 parent: 2 -- proto: LandMineExplosive - entities: - - uid: 19415 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9284 components: - - type: MetaData - name: мина - type: Transform - pos: 15.416698,10.502786 - parent: 16504 - - uid: 19416 + pos: 65.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9285 components: - - type: MetaData - name: мина - type: Transform - pos: -13.489288,5.533922 - parent: 16504 - - uid: 19417 + pos: 65.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9286 components: - - type: MetaData - name: мина - type: Transform - pos: 11.522236,4.4458623 - parent: 16504 - - uid: 19418 + pos: 65.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9287 components: - - type: MetaData - name: мина - type: Transform - pos: 12.611162,28.53005 - parent: 16504 - - uid: 19419 + pos: 65.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9288 components: - - type: MetaData - name: мина - type: Transform - pos: -8.51143,20.156834 - parent: 16504 - - uid: 19420 + rot: 1.5707963267948966 rad + pos: 61.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9289 components: - - type: MetaData - name: мина - type: Transform - pos: -10.519818,3.4255292 - parent: 16504 - - uid: 19421 + rot: 1.5707963267948966 rad + pos: 62.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9290 components: - - type: MetaData - name: мина - type: Transform - pos: 0.46637392,20.577358 - parent: 16504 - - uid: 19422 + rot: 1.5707963267948966 rad + pos: 63.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9291 components: - - type: MetaData - name: мина - type: Transform - pos: -11.517183,-5.5879383 - parent: 16504 - - uid: 19423 + rot: 1.5707963267948966 rad + pos: 64.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9292 components: - - type: MetaData - name: мина - type: Transform - pos: 7.5006275,10.482936 - parent: 16504 - - uid: 19424 + rot: 1.5707963267948966 rad + pos: 65.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9293 components: - - type: MetaData - name: мина - type: Transform - pos: 17.4874,3.4135275 - parent: 16504 -- proto: LandMineModular - entities: - - uid: 19426 + pos: 66.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9294 components: - - type: MetaData - name: мина - type: Transform - pos: 12.490865,-3.6388807 - parent: 16504 - - uid: 19427 + pos: 66.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9295 components: - - type: MetaData - name: мина - type: Transform - pos: -11.487502,-7.506736 - parent: 16504 - - uid: 19428 + pos: 66.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9296 components: - - type: MetaData - name: мина - type: Transform - pos: -15.554474,3.378701 - parent: 16504 - - uid: 19429 + pos: 66.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9297 components: - - type: MetaData - name: мина - type: Transform - pos: 14.918123,2.0781388 - parent: 16504 - - uid: 19431 + pos: 66.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9298 components: - - type: MetaData - name: мина - type: Transform - pos: -17.31811,15.494608 - parent: 16504 - - uid: 21980 + pos: 66.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9299 components: - type: Transform - pos: 16.411213,40.364594 + pos: 66.5,55.5 parent: 2 -- proto: Lantern - entities: - - uid: 11151 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9300 components: - type: Transform - pos: 74.482605,58.567104 + pos: 66.5,54.5 parent: 2 - - uid: 11152 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9301 components: - type: Transform - pos: 78.53705,62.713276 + pos: 66.5,53.5 parent: 2 -- proto: LanternFlash - entities: - - uid: 3501 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9302 components: - type: Transform - pos: 80.48598,31.712543 + pos: 47.5,67.5 parent: 2 - - uid: 4461 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9303 components: - type: Transform - pos: 80.4391,33.712543 + rot: 3.141592653589793 rad + pos: 48.5,68.5 parent: 2 -- proto: LargeBeaker - entities: - - uid: 11153 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9304 components: - type: Transform - pos: 55.791054,41.556206 + rot: 3.141592653589793 rad + pos: 48.5,69.5 parent: 2 -- proto: LeavesCannabisDried - entities: - - uid: 6325 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9305 components: - type: Transform - parent: 6323 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6326 + rot: -1.5707963267948966 rad + pos: 49.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9306 components: - type: Transform - parent: 6323 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6327 + rot: 3.141592653589793 rad + pos: 20.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9320 components: - type: Transform - parent: 6323 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6328 + rot: -1.5707963267948966 rad + pos: 23.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9321 components: - type: Transform - parent: 6323 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6329 + rot: -1.5707963267948966 rad + pos: 22.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9322 components: - type: Transform - parent: 6323 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6330 + rot: -1.5707963267948966 rad + pos: 21.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9324 components: - type: Transform - parent: 6323 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6331 + rot: -1.5707963267948966 rad + pos: 18.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9325 components: - type: Transform - parent: 6323 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6332 + rot: -1.5707963267948966 rad + pos: 17.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9326 components: - type: Transform - parent: 6323 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6333 + rot: -1.5707963267948966 rad + pos: 16.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9327 components: - type: Transform - parent: 6323 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6334 + pos: 15.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9329 components: - type: Transform - parent: 6323 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LeavesCannabisRainbowDried - entities: - - uid: 6314 + pos: 15.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9335 components: - type: Transform - parent: 6312 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6315 + pos: 17.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9336 components: - type: Transform - parent: 6312 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6316 + pos: 17.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9337 components: - type: Transform - parent: 6312 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6317 + pos: 17.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9338 components: - type: Transform - parent: 6312 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6318 + pos: 17.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9348 components: - type: Transform - parent: 6312 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6319 + rot: 1.5707963267948966 rad + pos: 23.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9349 components: - type: Transform - parent: 6312 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6320 + rot: 1.5707963267948966 rad + pos: 22.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9350 components: - type: Transform - parent: 6312 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6321 + rot: 1.5707963267948966 rad + pos: 21.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9351 components: - type: Transform - parent: 6312 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6322 + rot: 1.5707963267948966 rad + pos: 20.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9353 components: - type: Transform - parent: 6312 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LeftLegBorgJanitor - entities: - - uid: 11154 + rot: 1.5707963267948966 rad + pos: 17.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9354 components: - type: Transform - pos: 91.566345,17.369244 + pos: 16.5,53.5 parent: 2 -- proto: LightBulbBroken - entities: - - uid: 11155 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.415854,63.516525 + pos: 16.5,52.5 parent: 2 - - uid: 11156 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.393162,-15.997493 + pos: 16.5,51.5 parent: 2 -- proto: Lighter - entities: - - uid: 21320 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9357 components: - type: Transform - rot: -0.5934119456780721 rad - pos: 16.210636,53.712322 + rot: 3.141592653589793 rad + pos: 28.5,39.5 parent: 2 -- proto: LightPostSmall - entities: - - uid: 4961 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9363 components: - type: Transform - pos: 38.5,-25.5 + pos: 16.5,38.5 parent: 2 - - uid: 21961 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9364 components: - type: Transform - pos: 42.5,-25.5 + rot: -1.5707963267948966 rad + pos: 3.5,33.5 parent: 2 -- proto: LightTree01 - entities: - - uid: 13501 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9365 components: - type: Transform - pos: 42.55793,52.485607 + rot: -1.5707963267948966 rad + pos: 5.5,33.5 parent: 2 -- proto: LightTubeBroken - entities: - - uid: 11157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9366 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.789185,61.400635 + pos: 6.5,33.5 parent: 2 - - uid: 11158 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.2318,64.348206 + rot: -1.5707963267948966 rad + pos: 7.5,33.5 parent: 2 -- proto: LiquidCarbonDioxideCanister - entities: - - uid: 11159 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9368 components: - type: Transform - pos: 43.5,80.5 + rot: -1.5707963267948966 rad + pos: 9.5,33.5 parent: 2 -- proto: LiquidNitrogenCanister - entities: - - uid: 11160 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9369 components: - type: Transform - pos: 41.5,78.5 + rot: -1.5707963267948966 rad + pos: 10.5,33.5 parent: 2 -- proto: LiquidOxygenCanister - entities: - - uid: 11161 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9370 components: - type: Transform - pos: 42.5,78.5 + rot: -1.5707963267948966 rad + pos: 11.5,33.5 parent: 2 -- proto: LiveLetLiveCircuitBoard - entities: - - uid: 583 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9371 components: - type: Transform - parent: 577 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LockableButtonCommand - entities: - - uid: 21312 + rot: -1.5707963267948966 rad + pos: 12.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9372 components: - type: Transform - pos: 33.5,48.5 + rot: 3.141592653589793 rad + pos: 43.5,18.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 880: - - Pressed: Toggle - - uid: 21316 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9373 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,39.5 + pos: 43.5,21.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 287: - - Pressed: Toggle - - uid: 21423 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9374 components: - - type: MetaData - name: кнопка от ставней - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,43.5 + pos: 45.5,20.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 21450: - - Pressed: Toggle - 21446: - - Pressed: Toggle - 21447: - - Pressed: Toggle -- proto: LockableButtonEngineering - entities: - - uid: 11162 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,84.5 + rot: 1.5707963267948966 rad + pos: 9.5,21.5 parent: 2 -- proto: LockableButtonMaintenance - entities: - - uid: 11163 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,15.5 + rot: 1.5707963267948966 rad + pos: 10.5,21.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 994: - - Pressed: Toggle - 987: - - Pressed: Toggle -- proto: LockableButtonMedical - entities: - - uid: 11164 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,9.5 + rot: 1.5707963267948966 rad + pos: 11.5,21.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12892: - - Pressed: Toggle - 12891: - - Pressed: Toggle - 12890: - - Pressed: Toggle -- proto: LockableButtonService - entities: - - uid: 12196 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9378 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,51.5 + rot: 1.5707963267948966 rad + pos: 9.5,22.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 21457: - - Pressed: Toggle - 21461: - - Pressed: Toggle - 21458: - - Pressed: Toggle - 21459: - - Pressed: Toggle - 21460: - - Pressed: Toggle - 21462: - - Pressed: Toggle - 21463: - - Pressed: Toggle - - uid: 21319 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9379 components: - - type: MetaData - name: кнопка от вип зоны - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,53.5 + pos: 10.5,22.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 880: - - Pressed: Toggle - 287: - - Pressed: Toggle - - uid: 21518 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,52.5 + rot: 1.5707963267948966 rad + pos: 11.5,22.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 21456: - - Pressed: Toggle - 21455: - - Pressed: Toggle - 21454: - - Pressed: Toggle - 21453: - - Pressed: Toggle - 21452: - - Pressed: Toggle - 21451: - - Pressed: Toggle -- proto: LockerAtmosphericsFilled - entities: - - uid: 11165 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9381 components: - type: Transform - pos: 44.5,74.5 + rot: 1.5707963267948966 rad + pos: 12.5,22.5 parent: 2 - - uid: 11166 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9382 components: - type: Transform - pos: 44.5,75.5 + rot: -1.5707963267948966 rad + pos: 12.5,14.5 parent: 2 - - uid: 11167 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9383 components: - type: Transform - pos: 44.5,76.5 + rot: 3.141592653589793 rad + pos: 15.5,13.5 parent: 2 -- proto: LockerBoozeFilled - entities: - - uid: 11168 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9384 components: - type: Transform - pos: 27.5,64.5 + pos: 29.5,12.5 parent: 2 - - uid: 11495 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9385 components: - type: Transform - pos: 14.5,55.5 + pos: 29.5,11.5 parent: 2 -- proto: LockerBotanistFilled - entities: - - uid: 71 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9386 components: - type: Transform - pos: 38.5,54.5 + pos: 29.5,10.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11960 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21433 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9387 components: - type: Transform - pos: 38.5,53.5 + pos: 29.5,9.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12088 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21434 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9388 components: - type: Transform - pos: 38.5,52.5 + pos: 29.5,8.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12089 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerBrigmedicFilled - entities: - - uid: 11116 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9389 components: - type: Transform - pos: 62.5,23.5 + pos: 29.5,7.5 parent: 2 -- proto: LockerCaptainFilled - entities: - - uid: 7455 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9390 components: - type: Transform - pos: 24.5,22.5 + pos: 29.5,6.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14786 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7456 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerChemistryFilled - entities: - - uid: 11169 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9391 components: - type: Transform - pos: 44.5,9.5 + pos: 29.5,5.5 parent: 2 -- proto: LockerChiefEngineerFilled - entities: - - uid: 11170 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9392 components: - type: Transform - pos: 40.5,67.5 + rot: -1.5707963267948966 rad + pos: 27.5,4.5 parent: 2 -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 11171 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9393 components: - type: Transform - pos: 48.5,6.5 + rot: -1.5707963267948966 rad + pos: 32.5,4.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1478 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerDetective - entities: - - uid: 1021 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9394 components: - type: Transform - pos: 32.475304,-19.445965 + rot: -1.5707963267948966 rad + pos: 31.5,4.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1026 - - 1027 - - 1023 - - 1024 - - 1022 - - 1025 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerDetectiveFilled - entities: - - uid: 1018 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9395 components: - type: Transform - pos: 42.5,36.5 + rot: -1.5707963267948966 rad + pos: 30.5,4.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14755 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1020 - - 1019 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 6276 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9396 components: - type: Transform - pos: 47.5,56.5 + rot: 1.5707963267948966 rad + pos: 28.5,5.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6277 - - 6278 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8141 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9397 components: - type: Transform - pos: 52.5,73.5 + rot: 1.5707963267948966 rad + pos: 29.5,5.5 parent: 2 - - uid: 11173 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9398 components: - type: Transform - pos: 54.5,66.5 + rot: 1.5707963267948966 rad + pos: 30.5,5.5 parent: 2 - - uid: 11174 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9399 components: - type: Transform - pos: 39.5,59.5 + rot: 1.5707963267948966 rad + pos: 31.5,5.5 parent: 2 - - uid: 11176 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9400 components: - type: Transform - pos: 59.5,68.5 + rot: 1.5707963267948966 rad + pos: 71.5,17.5 parent: 2 - - uid: 11177 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9401 components: - type: Transform - pos: 52.5,-14.5 + rot: -1.5707963267948966 rad + pos: 80.5,28.5 parent: 2 - - uid: 11178 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9402 components: - type: Transform - pos: 9.5,42.5 + rot: 3.141592653589793 rad + pos: 81.5,29.5 parent: 2 -- proto: LockerEngineerFilled - entities: - - uid: 6312 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9403 components: - type: Transform - pos: 41.5,64.5 + rot: 3.141592653589793 rad + pos: 81.5,30.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6321 - - 6320 - - 6319 - - 6318 - - 6317 - - 6316 - - 6315 - - 6314 - - 6313 - - 6322 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6323 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9404 components: - type: Transform - pos: 45.5,62.5 + rot: 3.141592653589793 rad + pos: 81.5,31.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6333 - - 6332 - - 6331 - - 6330 - - 6324 - - 6329 - - 6328 - - 6327 - - 6326 - - 6325 - - 6334 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11179 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9405 components: - type: Transform - pos: 45.5,63.5 + rot: -1.5707963267948966 rad + pos: 79.5,32.5 parent: 2 - - uid: 11180 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9406 components: - type: Transform - pos: 43.5,59.5 + rot: -1.5707963267948966 rad + pos: 80.5,32.5 parent: 2 - - uid: 11181 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9407 components: - type: Transform - pos: 41.5,59.5 + rot: -1.5707963267948966 rad + pos: 78.5,32.5 parent: 2 - - uid: 11182 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9408 components: - type: Transform - pos: 42.5,59.5 + rot: -1.5707963267948966 rad + pos: 77.5,32.5 parent: 2 - - uid: 11183 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9409 components: - type: Transform - pos: 40.5,64.5 + rot: -1.5707963267948966 rad + pos: 76.5,32.5 parent: 2 - - uid: 11184 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9410 components: - type: Transform - pos: 45.5,61.5 + rot: -1.5707963267948966 rad + pos: 75.5,32.5 parent: 2 -- proto: LockerEvidence - entities: - - uid: 8143 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9411 components: - type: Transform - pos: 42.5,34.5 + rot: -1.5707963267948966 rad + pos: 74.5,32.5 parent: 2 - - uid: 11185 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9412 components: - type: Transform - pos: 42.5,21.5 + rot: -1.5707963267948966 rad + pos: 73.5,32.5 parent: 2 - - uid: 11186 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9413 components: - type: Transform - pos: 44.5,18.5 + rot: -1.5707963267948966 rad + pos: 72.5,32.5 parent: 2 - - uid: 11187 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9414 components: - type: Transform - pos: 42.5,18.5 + rot: -1.5707963267948966 rad + pos: 71.5,32.5 parent: 2 - - uid: 11188 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9415 components: - type: Transform - pos: 44.5,21.5 + rot: -1.5707963267948966 rad + pos: 81.5,27.5 parent: 2 - - uid: 11189 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9416 components: - type: Transform - pos: 51.5,36.5 + rot: -1.5707963267948966 rad + pos: 82.5,27.5 parent: 2 - - uid: 11190 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9417 components: - type: Transform - pos: 42.5,24.5 + rot: 3.141592653589793 rad + pos: 83.5,28.5 parent: 2 - - uid: 11191 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9418 components: - type: Transform - pos: 52.5,36.5 + rot: 3.141592653589793 rad + pos: 83.5,29.5 parent: 2 - - uid: 12150 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9419 components: - type: Transform - pos: 56.5,26.5 + rot: 1.5707963267948966 rad + pos: 81.5,30.5 parent: 2 - - uid: 12152 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9420 components: - type: Transform - pos: 56.5,28.5 + rot: 1.5707963267948966 rad + pos: 80.5,30.5 parent: 2 -- proto: LockerFreezer - entities: - - uid: 21599 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9421 components: - type: Transform - pos: 29.5,58.5 + rot: 1.5707963267948966 rad + pos: 79.5,30.5 parent: 2 -- proto: LockerFreezerBase - entities: - - uid: 11192 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9422 components: - type: Transform - pos: 42.5,40.5 + rot: 1.5707963267948966 rad + pos: 78.5,30.5 parent: 2 -- proto: LockerFreezerVaultFilled - entities: - - uid: 11193 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9423 components: - type: Transform - pos: 6.5,26.5 + rot: 1.5707963267948966 rad + pos: 77.5,30.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 11194 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9424 components: - type: Transform - pos: 17.5,16.5 + rot: 1.5707963267948966 rad + pos: 76.5,30.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 11195 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9425 components: - type: Transform - pos: 51.5,33.5 + rot: 1.5707963267948966 rad + pos: 75.5,30.5 parent: 2 -- proto: LockerMedicineFilled - entities: - - uid: 11196 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9426 components: - type: Transform - pos: 38.5,1.5 + rot: 1.5707963267948966 rad + pos: 74.5,30.5 parent: 2 - - uid: 11197 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9427 components: - type: Transform - pos: 39.5,1.5 + rot: 1.5707963267948966 rad + pos: 73.5,30.5 parent: 2 - - uid: 11198 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9428 components: - type: Transform - pos: 59.5,4.5 + rot: 1.5707963267948966 rad + pos: 72.5,30.5 parent: 2 - - uid: 11199 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9429 components: - type: Transform - pos: 50.5,-11.5 + rot: 1.5707963267948966 rad + pos: 68.5,40.5 parent: 2 -- proto: LockerParamedicFilled - entities: - - uid: 6673 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9430 components: - type: Transform - pos: 38.5,10.5 + rot: 1.5707963267948966 rad + pos: 69.5,40.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6674 - - 6675 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerQuarterMaster - entities: - - uid: 19432 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9431 components: - type: Transform - pos: -10.5,28.5 - parent: 16504 -- proto: LockerQuarterMasterFilled - entities: - - uid: 6359 + rot: 1.5707963267948966 rad + pos: 70.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9432 components: - type: Transform - pos: 2.5,3.5 + rot: -1.5707963267948966 rad + pos: 68.5,38.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6360 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerResearchDirectorFilledHardsuit - entities: - - uid: 11202 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9433 components: - type: Transform - pos: 16.5,6.5 + rot: -1.5707963267948966 rad + pos: 69.5,38.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11203 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSalvageSpecialist - entities: - - uid: 19433 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9434 components: - type: Transform - pos: -4.5,38.5 - parent: 16504 - - uid: 19434 + rot: -1.5707963267948966 rad + pos: 73.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9435 components: - type: Transform - pos: 4.5,38.5 - parent: 16504 - - uid: 19435 + rot: -1.5707963267948966 rad + pos: 72.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9436 components: - type: Transform - pos: 5.5,38.5 - parent: 16504 - - uid: 19436 + rot: -1.5707963267948966 rad + pos: 71.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9437 components: - type: Transform - pos: -3.5,38.5 - parent: 16504 -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 11204 + rot: -1.5707963267948966 rad + pos: 73.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9438 components: - type: Transform - pos: 0.5,13.5 + rot: -1.5707963267948966 rad + pos: 72.5,45.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11205 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9439 components: - type: Transform - pos: 0.5,12.5 + rot: -1.5707963267948966 rad + pos: 71.5,45.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11206 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9440 components: - type: Transform - pos: 0.5,14.5 + rot: 1.5707963267948966 rad + pos: 73.5,48.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerScienceFilled - entities: - - uid: 11207 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9441 components: - type: Transform - pos: 22.5,1.5 + rot: 1.5707963267948966 rad + pos: 72.5,48.5 parent: 2 - - uid: 11208 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9442 components: - type: Transform - pos: 23.5,1.5 + rot: 1.5707963267948966 rad + pos: 73.5,46.5 parent: 2 - - uid: 11209 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9443 components: - type: Transform - pos: 24.5,1.5 + rot: 1.5707963267948966 rad + pos: 72.5,46.5 parent: 2 -- proto: LockerSecurity - entities: - - uid: 11210 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9444 components: - type: Transform - pos: 93.5,20.5 + pos: 81.5,49.5 parent: 2 - - uid: 11211 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9445 components: - type: Transform - pos: 78.5,6.5 + pos: 81.5,48.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerSecurityFilled - entities: - - uid: 11212 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9446 components: - type: Transform - pos: 14.5,8.5 + pos: 81.5,47.5 parent: 2 - - uid: 11213 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9447 components: - type: Transform - pos: 58.5,16.5 + pos: 81.5,46.5 parent: 2 - - uid: 11214 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9448 components: - type: Transform - pos: 57.5,16.5 + pos: 81.5,45.5 parent: 2 - - uid: 11215 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9449 components: - type: Transform - pos: 56.5,16.5 + pos: 81.5,44.5 parent: 2 -- proto: LockerSyndicatePersonal - entities: - - uid: 18790 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9450 components: - type: Transform - pos: 7.5,0.5 - parent: 16504 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18791 - - 18795 - - 18797 - - 18793 - - 18792 - - 18796 - - 18794 - - 18798 - - 18799 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSyndicateShipGearBasic - entities: - - uid: 11216 + pos: 81.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9451 components: - type: Transform - pos: 21.5,67.5 + pos: 81.5,42.5 parent: 2 -- proto: LockerWallMedical - entities: - - uid: 11118 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,8.5 + pos: 81.5,41.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11122 - - 11119 - - 11128 - - 11120 - - 11129 - - 11121 -- proto: LockerWallMedicalDoctorFilled - entities: - - uid: 11217 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9453 components: - type: Transform - pos: 57.5,5.5 + pos: 81.5,40.5 parent: 2 -- proto: LockerWardenFilled - entities: - - uid: 11218 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9454 components: - type: Transform - pos: 50.5,28.5 + pos: 81.5,39.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 7563 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9455 components: - type: Transform - pos: 53.5,73.5 + rot: -1.5707963267948966 rad + pos: 80.5,38.5 parent: 2 - - uid: 11219 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9456 components: - type: Transform - pos: 39.5,62.5 + rot: -1.5707963267948966 rad + pos: 78.5,38.5 parent: 2 - - uid: 11221 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9457 components: - type: Transform - pos: 60.5,-7.5 + rot: -1.5707963267948966 rad + pos: 76.5,38.5 parent: 2 - - uid: 11222 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9458 components: - type: Transform - pos: 18.5,63.5 + rot: -1.5707963267948966 rad + pos: 75.5,38.5 parent: 2 - - uid: 11223 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9459 components: - type: Transform - pos: 47.5,41.5 + rot: -1.5707963267948966 rad + pos: 74.5,38.5 parent: 2 - - uid: 11224 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9460 components: - type: Transform - pos: 64.5,36.5 + rot: -1.5707963267948966 rad + pos: 73.5,38.5 parent: 2 - - uid: 11225 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9461 components: - type: Transform - pos: 31.5,-11.5 + rot: -1.5707963267948966 rad + pos: 72.5,38.5 parent: 2 -- proto: LootSpawnerEncryptionKey - entities: - - uid: 11227 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9462 components: - type: Transform - pos: 25.5,57.5 + rot: -1.5707963267948966 rad + pos: 71.5,38.5 parent: 2 - - uid: 11228 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9463 components: - type: Transform - pos: 14.5,87.5 + rot: -1.5707963267948966 rad + pos: 37.5,72.5 parent: 2 -- proto: Machete - entities: - - uid: 11229 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9465 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.622604,-5.3519115 + pos: 47.5,78.5 parent: 2 -- proto: MachineAnomalyGenerator - entities: - - uid: 11230 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9466 components: - type: Transform - pos: 17.5,-1.5 + rot: 1.5707963267948966 rad + pos: 47.5,64.5 parent: 2 - - type: AnomalyGenerator - materialPerAnomaly: 1000 - cooldownLength: 180 -- proto: MachineAnomalyVessel - entities: - - uid: 11231 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9467 components: - type: Transform - pos: 15.5,-0.5 + rot: 1.5707963267948966 rad + pos: 45.5,64.5 parent: 2 - - uid: 11232 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9468 components: - type: Transform - pos: 14.5,-0.5 + pos: 77.5,39.5 parent: 2 -- proto: MachineAPE - entities: - - uid: 11233 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9469 components: - type: Transform - pos: 15.5,-1.5 + pos: 76.5,39.5 parent: 2 - - uid: 11234 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9470 components: - type: Transform - pos: 14.5,-1.5 + pos: 76.5,38.5 parent: 2 -- proto: MachineArtifactAnalyzer - entities: - - uid: 11235 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9471 components: - type: Transform - pos: 18.5,-7.5 + rot: 3.141592653589793 rad + pos: 67.5,49.5 parent: 2 -- proto: MachineCentrifuge - entities: - - uid: 11236 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9472 components: - type: Transform - pos: 40.5,7.5 + rot: 3.141592653589793 rad + pos: 67.5,50.5 parent: 2 -- proto: MachineElectrolysisUnit - entities: - - uid: 11237 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9473 components: - type: Transform - pos: 40.5,6.5 + rot: 3.141592653589793 rad + pos: 67.5,51.5 parent: 2 -- proto: MachineFrame - entities: - - uid: 11239 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9474 components: - type: Transform - pos: 53.5,60.5 + rot: -1.5707963267948966 rad + pos: 70.5,48.5 parent: 2 - - uid: 11240 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9475 components: - type: Transform - pos: 75.5,6.5 + rot: -1.5707963267948966 rad + pos: 69.5,48.5 parent: 2 - - uid: 11241 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9476 components: - type: Transform - pos: 53.5,62.5 + pos: 8.5,35.5 parent: 2 - - uid: 19437 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9477 components: - type: Transform - pos: 9.5,0.5 - parent: 16504 - - uid: 19438 + pos: 8.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9478 components: - type: Transform - pos: -27.5,22.5 - parent: 16504 - - uid: 19439 + pos: 5.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9479 components: - type: Transform - pos: -21.5,32.5 - parent: 16504 - - uid: 19440 + pos: 4.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9480 components: - type: Transform - pos: -24.5,25.5 - parent: 16504 - - uid: 19441 + pos: 4.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9481 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 16504 -- proto: MachineFrameDestroyed - entities: - - uid: 11242 + pos: 5.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9482 components: - type: Transform - pos: 51.5,63.5 + pos: 5.5,33.5 parent: 2 - - uid: 11243 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9483 components: - type: Transform - pos: 28.5,63.5 + pos: 9.5,34.5 parent: 2 - - uid: 11244 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9484 components: - type: Transform - pos: 28.5,-12.5 + pos: 9.5,35.5 parent: 2 - - uid: 11245 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9485 components: - type: Transform - pos: 93.5,21.5 + pos: 9.5,33.5 parent: 2 - - uid: 16485 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9486 components: - type: Transform - pos: -4.5,-10.5 - parent: 16504 - - uid: 19442 + rot: 3.141592653589793 rad + pos: 22.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9487 components: - type: Transform - pos: 10.5,-1.5 - parent: 16504 - - uid: 19443 + rot: 3.141592653589793 rad + pos: 22.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9488 components: - type: Transform - pos: 5.5,-7.5 - parent: 16504 - - uid: 19444 + rot: 3.141592653589793 rad + pos: 22.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9489 components: - type: Transform - pos: -5.5,-3.5 - parent: 16504 - - uid: 19446 + rot: 3.141592653589793 rad + pos: 23.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9490 components: - type: Transform - pos: -0.5,18.5 - parent: 16504 - - uid: 19447 + rot: 3.141592653589793 rad + pos: 23.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9491 components: - type: Transform - pos: -24.5,22.5 - parent: 16504 - - uid: 19448 + rot: 3.141592653589793 rad + pos: 23.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9492 components: - type: Transform - pos: -16.5,38.5 - parent: 16504 - - uid: 19449 + rot: 3.141592653589793 rad + pos: 80.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9493 components: - type: Transform - pos: -25.5,24.5 - parent: 16504 - - uid: 19450 + rot: 3.141592653589793 rad + pos: 80.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9494 components: - type: Transform - pos: -8.5,38.5 - parent: 16504 - - uid: 19451 + rot: 3.141592653589793 rad + pos: 80.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9495 components: - type: Transform - pos: 3.5,32.5 - parent: 16504 - - uid: 19452 + rot: 1.5707963267948966 rad + pos: 79.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9496 components: - type: Transform - pos: 17.5,38.5 - parent: 16504 - - uid: 19453 + pos: 78.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9497 components: - type: Transform - pos: 21.5,-2.5 - parent: 16504 - - uid: 22494 + rot: 3.141592653589793 rad + pos: 81.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9498 components: - type: Transform - pos: -27.5,11.5 - parent: 16504 -- proto: MagazineBoxAntiMaterielBig - entities: - - uid: 22482 + rot: 3.141592653589793 rad + pos: 81.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9499 components: - type: Transform - pos: 61.59202,31.506334 + rot: 3.141592653589793 rad + pos: 81.5,63.5 parent: 2 -- proto: MagazinePistolSubMachineGun - entities: - - uid: 19395 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9500 components: - type: Transform - parent: 19394 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MaintenanceFluffSpawner - entities: - - uid: 11248 + rot: 3.141592653589793 rad + pos: 81.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9501 components: - type: Transform - pos: 90.5,23.5 + rot: 1.5707963267948966 rad + pos: 80.5,65.5 parent: 2 - - uid: 11249 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9502 components: - type: Transform - pos: 22.5,67.5 + rot: 1.5707963267948966 rad + pos: 79.5,65.5 parent: 2 - - uid: 11250 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9503 components: - type: Transform - pos: 35.5,59.5 + rot: 1.5707963267948966 rad + pos: 78.5,65.5 parent: 2 - - uid: 11251 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9504 components: - type: Transform - pos: 19.5,59.5 + rot: -1.5707963267948966 rad + pos: 76.5,56.5 parent: 2 - - uid: 11252 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9505 components: - type: Transform - pos: 13.5,82.5 + rot: -1.5707963267948966 rad + pos: 75.5,56.5 parent: 2 -- proto: MaintenancePlantSpawner - entities: - - uid: 11253 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9506 components: - type: Transform - pos: 36.5,58.5 + rot: -1.5707963267948966 rad + pos: 74.5,56.5 parent: 2 - - uid: 11254 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9507 components: - type: Transform - pos: 70.5,9.5 + rot: -1.5707963267948966 rad + pos: 73.5,56.5 parent: 2 - - uid: 11255 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9508 components: - type: Transform - pos: 33.5,-4.5 + rot: -1.5707963267948966 rad + pos: 72.5,56.5 parent: 2 - - uid: 11256 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9509 components: - type: Transform - pos: 42.5,-10.5 + rot: 1.5707963267948966 rad + pos: 71.5,56.5 parent: 2 - - uid: 11257 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9511 components: - type: Transform - pos: 51.5,-16.5 + rot: 3.141592653589793 rad + pos: 18.5,-9.5 parent: 2 - - uid: 11258 + - uid: 9513 components: - type: Transform - pos: 84.5,11.5 + pos: 36.5,48.5 parent: 2 - - uid: 11259 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9514 components: - type: Transform - pos: 79.5,24.5 + rot: 1.5707963267948966 rad + pos: 80.5,27.5 parent: 2 - - uid: 11260 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9515 components: - type: Transform - pos: 49.5,40.5 + rot: 3.141592653589793 rad + pos: 28.5,19.5 parent: 2 - - uid: 11261 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9516 components: - type: Transform - pos: 34.5,64.5 + pos: 57.5,22.5 parent: 2 - - uid: 11262 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9517 components: - type: Transform - pos: 27.5,67.5 + rot: 1.5707963267948966 rad + pos: 48.5,56.5 parent: 2 - - uid: 11264 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9518 components: - type: Transform - pos: 86.5,24.5 + rot: 3.141592653589793 rad + pos: 40.5,3.5 parent: 2 - - uid: 16496 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9519 components: - type: Transform - pos: 35.5,58.5 + rot: 3.141592653589793 rad + pos: 55.5,20.5 parent: 2 -- proto: MaintenanceToolSpawner - entities: - - uid: 11266 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9520 components: - type: Transform - pos: 72.5,8.5 + pos: 51.5,22.5 parent: 2 - - uid: 11268 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9521 components: - type: Transform - pos: 12.5,59.5 + rot: 1.5707963267948966 rad + pos: 42.5,3.5 parent: 2 - - uid: 11269 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9522 components: - type: Transform - pos: 15.5,72.5 + rot: 3.141592653589793 rad + pos: 48.5,67.5 parent: 2 - - uid: 16380 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9523 components: - type: Transform - pos: 42.5,57.5 + rot: 3.141592653589793 rad + pos: 48.5,61.5 parent: 2 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 11270 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9524 components: - type: Transform - pos: 25.5,60.5 + pos: 45.5,2.5 parent: 2 - - uid: 11271 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9525 components: - type: Transform - pos: 90.5,13.5 + rot: 1.5707963267948966 rad + pos: 45.5,62.5 parent: 2 - - uid: 11272 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9526 components: - type: Transform - pos: 24.5,67.5 + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 parent: 2 - - uid: 11273 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9527 components: - type: Transform - pos: 34.5,67.5 + pos: 45.5,-2.5 parent: 2 - - uid: 11274 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9528 components: - type: Transform - pos: 15.5,71.5 + rot: 1.5707963267948966 rad + pos: 46.5,69.5 parent: 2 -- proto: MakeshiftShield - entities: - - uid: 19454 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9529 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.4967923,-3.6409602 - parent: 16504 -- proto: Mannequin - entities: - - uid: 3620 + pos: 46.5,83.5 + parent: 2 + - uid: 9530 components: - type: Transform - pos: 41.5,-26.5 + rot: -1.5707963267948966 rad + pos: 35.5,81.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 3623 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: 3625 - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 3624 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 3621 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null -- proto: Matchbox - entities: - - uid: 21840 + - uid: 9531 components: - type: Transform - pos: 28.455824,43.690662 + rot: -1.5707963267948966 rad + pos: 34.5,81.5 parent: 2 -- proto: MaterialBiomass1 - entities: - - uid: 11275 + - uid: 9532 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.0015,-5.4251294 + pos: 37.5,83.5 parent: 2 -- proto: MaterialCloth - entities: - - uid: 11276 + - uid: 9533 components: - type: Transform - pos: 20.45009,20.05165 + rot: 3.141592653589793 rad + pos: 46.5,79.5 parent: 2 - - uid: 11277 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9534 components: - type: Transform - pos: 50.516743,-2.397445 + rot: -1.5707963267948966 rad + pos: 34.5,82.5 parent: 2 -- proto: MaterialCloth1 - entities: - - uid: 11278 + - uid: 9535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,86.5 + parent: 2 + - uid: 9536 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.732285,37.431206 + pos: 41.5,16.5 parent: 2 - - uid: 11279 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9537 components: - type: Transform - pos: 59.742702,37.993706 + rot: 3.141592653589793 rad + pos: 42.5,21.5 parent: 2 - - uid: 19455 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9538 components: - type: Transform - pos: 15.459702,30.260902 - parent: 16504 - - uid: 19456 + rot: 1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9539 components: - type: Transform - pos: 15.287827,34.401527 - parent: 16504 - - uid: 19457 + rot: -1.5707963267948966 rad + pos: 47.5,83.5 + parent: 2 + - uid: 9540 components: - type: Transform - pos: 15.709702,34.229652 - parent: 16504 - - uid: 19458 + pos: 42.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9541 components: - type: Transform - pos: 17.537827,32.651527 - parent: 16504 - - uid: 19459 + pos: 46.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9542 components: - type: Transform - pos: 17.584702,32.323402 - parent: 16504 -- proto: MaterialCloth10 - entities: - - uid: 19460 + pos: 43.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9543 components: - type: Transform - pos: 17.350327,30.635902 - parent: 16504 -- proto: MaterialDurathread - entities: - - uid: 11280 + rot: -1.5707963267948966 rad + pos: 44.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9544 components: - type: Transform - pos: 20.571562,20.003357 + rot: 3.141592653589793 rad + pos: 43.5,22.5 parent: 2 -- proto: MaterialWoodPlank1 - entities: - - uid: 16155 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9545 components: - type: Transform - pos: 22.585857,43.52272 + pos: 32.5,85.5 parent: 2 -- proto: MatterBinStockPart - entities: - - uid: 11281 + - uid: 9546 components: - type: Transform - pos: 62.295105,49.294827 + pos: 57.5,25.5 parent: 2 - - uid: 19461 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9547 components: - type: Transform - pos: 37.395332,32.96186 - parent: 16504 - - uid: 19462 + rot: 3.141592653589793 rad + pos: 47.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9548 components: - type: Transform - pos: 24.921247,23.503925 - parent: 16504 - - uid: 19463 + pos: 52.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9549 components: - type: Transform - pos: 23.650415,24.24351 - parent: 16504 -- proto: Mattress - entities: - - uid: 10163 + pos: 45.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9550 components: - type: Transform - pos: 10.5,53.5 + rot: 3.141592653589793 rad + pos: 42.5,20.5 parent: 2 - - uid: 11282 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9551 components: - type: Transform - pos: 59.5,37.5 + pos: 46.5,75.5 parent: 2 - - uid: 11283 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9552 components: - type: Transform - pos: 81.5,6.5 + rot: 1.5707963267948966 rad + pos: 38.5,4.5 parent: 2 - - uid: 11284 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9553 components: - type: Transform - pos: 84.5,6.5 + rot: 1.5707963267948966 rad + pos: 43.5,16.5 parent: 2 -- proto: MedicalBed - entities: - - uid: 11285 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9554 components: - type: Transform - pos: 52.5,33.5 + rot: 1.5707963267948966 rad + pos: 47.5,70.5 parent: 2 - - uid: 11286 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9555 components: - type: Transform - pos: 35.5,1.5 + rot: 3.141592653589793 rad + pos: 35.5,-5.5 parent: 2 - - uid: 11287 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9556 components: - type: Transform - pos: 41.5,-0.5 + rot: 3.141592653589793 rad + pos: 45.5,-6.5 parent: 2 - - uid: 11288 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9557 components: - type: Transform - pos: 35.5,-2.5 + rot: 3.141592653589793 rad + pos: 53.5,54.5 parent: 2 - - uid: 11289 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9558 components: - type: Transform - pos: 41.5,-4.5 + rot: 3.141592653589793 rad + pos: 45.5,-7.5 parent: 2 - - uid: 11290 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9559 components: - type: Transform - pos: 35.5,-0.5 + rot: -1.5707963267948966 rad + pos: 46.5,0.5 parent: 2 - - uid: 11291 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9560 components: - type: Transform - pos: 62.5,20.5 + rot: 1.5707963267948966 rad + pos: 57.5,27.5 parent: 2 - - uid: 11292 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9561 components: - type: Transform - pos: 48.5,10.5 + rot: 3.141592653589793 rad + pos: 32.5,74.5 parent: 2 - - uid: 11293 + - uid: 9562 components: - type: Transform - pos: 56.5,-0.5 + rot: 3.141592653589793 rad + pos: 32.5,72.5 parent: 2 - - uid: 11294 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 9563 components: - type: Transform - pos: 56.5,0.5 + rot: 1.5707963267948966 rad + pos: 45.5,69.5 parent: 2 - - uid: 11295 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9564 components: - type: Transform - pos: 49.5,26.5 + rot: 3.141592653589793 rad + pos: 48.5,65.5 parent: 2 - - uid: 11296 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9565 components: - type: Transform - pos: 41.5,-2.5 + rot: 1.5707963267948966 rad + pos: 37.5,47.5 parent: 2 - - uid: 11297 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9566 components: - type: Transform - pos: 39.5,69.5 + rot: -1.5707963267948966 rad + pos: 48.5,82.5 parent: 2 - - uid: 19464 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9567 components: - type: Transform - pos: 17.5,36.5 - parent: 16504 - - uid: 19465 + rot: 1.5707963267948966 rad + pos: 42.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9568 components: - type: Transform - pos: 17.5,34.5 - parent: 16504 - - uid: 19466 + rot: 3.141592653589793 rad + pos: 47.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9569 components: - type: Transform - pos: 17.5,30.5 - parent: 16504 - - uid: 19467 + rot: 3.141592653589793 rad + pos: 40.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9570 components: - type: Transform - pos: 17.5,32.5 - parent: 16504 - - uid: 19468 + rot: 1.5707963267948966 rad + pos: 42.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9571 components: - type: Transform - pos: 15.5,30.5 - parent: 16504 - - uid: 19469 + rot: 3.141592653589793 rad + pos: 49.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9572 components: - type: Transform - pos: 15.5,32.5 - parent: 16504 - - uid: 19470 + rot: 1.5707963267948966 rad + pos: 39.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9573 components: - type: Transform - pos: 15.5,34.5 - parent: 16504 -- proto: MedicalScanner - entities: - - uid: 8105 + pos: 53.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9574 components: - type: Transform - pos: 50.5,-6.5 + pos: 53.5,39.5 parent: 2 -- proto: MedicalScannerMachineCircuitboard - entities: - - uid: 22098 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9575 components: - type: Transform - parent: 10552 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MedicalTechFab - entities: - - uid: 11298 + rot: 1.5707963267948966 rad + pos: 54.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9576 components: - type: Transform - pos: 58.5,4.5 + rot: 1.5707963267948966 rad + pos: 45.5,19.5 parent: 2 -- proto: Medkit - entities: - - uid: 17727 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9577 components: - type: Transform - pos: 11.57095,38.43859 - parent: 16504 - - type: Storage - storedItems: - 17728: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 17728 -- proto: MedkitAdvanced - entities: - - uid: 19471 + rot: 3.141592653589793 rad + pos: 43.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,82.5 + parent: 2 + - uid: 9580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9581 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5277042,38.623627 - parent: 16504 -- proto: MedkitAdvancedFilled - entities: - - uid: 11299 + pos: 52.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9582 components: - type: Transform - pos: 58.590317,1.9818959 + rot: -1.5707963267948966 rad + pos: 41.5,20.5 parent: 2 - - uid: 11300 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9583 components: - type: Transform - pos: 47.478302,8.56902 + rot: -1.5707963267948966 rad + pos: 42.5,20.5 parent: 2 -- proto: MedkitBrute - entities: - - uid: 19472 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9584 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.365046,31.830227 - parent: 16504 - - uid: 19473 + rot: 1.5707963267948966 rad + pos: 58.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9585 components: - type: Transform - pos: 11.681109,31.552542 - parent: 16504 -- proto: MedkitBruteFilled - entities: - - uid: 11301 + rot: -1.5707963267948966 rad + pos: 45.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9586 components: - type: Transform - pos: 58.465317,2.622521 + rot: 1.5707963267948966 rad + pos: 55.5,27.5 parent: 2 - - uid: 11302 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9587 components: - type: Transform - pos: 61.580322,24.588772 + rot: 1.5707963267948966 rad + pos: 59.5,27.5 parent: 2 - - uid: 11303 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9588 components: - type: Transform - pos: 58.434067,2.606896 + rot: 1.5707963267948966 rad + pos: 59.5,26.5 parent: 2 -- proto: MedkitBurn - entities: - - uid: 19474 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.229855,32.929184 - parent: 16504 -- proto: MedkitBurnFilled - entities: - - uid: 11304 + rot: -1.5707963267948966 rad + pos: 38.5,83.5 + parent: 2 + - uid: 9598 components: - type: Transform - pos: 61.892204,24.497042 + rot: 1.5707963267948966 rad + pos: 43.5,81.5 parent: 2 - - uid: 11305 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9599 components: - type: Transform - pos: 58.402817,1.4506459 + rot: 1.5707963267948966 rad + pos: 44.5,81.5 parent: 2 - - uid: 19475 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9600 components: - type: Transform - pos: 11.427546,33.72085 - parent: 16504 -- proto: MedkitCombatFilled - entities: - - uid: 11306 + rot: 1.5707963267948966 rad + pos: 45.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9601 components: - type: Transform - pos: 61.305134,24.607117 + rot: -1.5707963267948966 rad + pos: 37.5,82.5 parent: 2 -- proto: MedkitFilled - entities: - - uid: 11307 + - uid: 9602 components: - type: Transform - pos: 61.708744,24.497042 + rot: -1.5707963267948966 rad + pos: 34.5,83.5 parent: 2 - - uid: 11308 + - uid: 9603 components: - type: Transform - pos: 58.041897,2.5312233 + rot: -1.5707963267948966 rad + pos: 36.5,81.5 parent: 2 - - uid: 11309 + - uid: 9604 components: - type: Transform - pos: 28.515974,30.574839 + rot: -1.5707963267948966 rad + pos: 37.5,81.5 parent: 2 - - uid: 19476 + - uid: 9605 components: - type: Transform - pos: 2.5191708,38.608 - parent: 16504 - - uid: 19477 + rot: -1.5707963267948966 rad + pos: 38.5,81.5 + parent: 2 + - uid: 9606 components: - type: Transform - pos: -23.47055,31.558647 - parent: 16504 -- proto: MedkitO2 - entities: - - uid: 19478 + pos: 33.5,84.5 + parent: 2 + - uid: 9607 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.792355,36.952168 - parent: 16504 - - uid: 19479 + pos: 35.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.318171,32.486477 - parent: 16504 -- proto: MedkitOxygenFilled - entities: - - uid: 11310 + pos: 43.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9609 components: - type: Transform - pos: 45.550034,36.551556 + pos: 37.5,-0.5 parent: 2 - - uid: 11311 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9610 components: - type: Transform - pos: 57.840317,2.544396 + pos: 39.5,-4.5 parent: 2 - - uid: 11312 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9611 components: - type: Transform - pos: 61.433556,24.442003 + pos: 39.5,-5.5 parent: 2 - - uid: 19480 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9612 components: - type: Transform - pos: 11.740046,37.5021 - parent: 16504 -- proto: MedkitRadiationFilled - entities: - - uid: 11313 + rot: -1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9613 components: - type: Transform - pos: 61.32348,24.533733 + rot: 3.141592653589793 rad + pos: 58.5,30.5 parent: 2 - - uid: 11314 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9614 components: - type: Transform - pos: 24.57722,-4.5510807 + rot: 3.141592653589793 rad + pos: 57.5,28.5 parent: 2 - - uid: 11315 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9615 components: - type: Transform - pos: 57.38719,2.528771 + rot: 3.141592653589793 rad + pos: 49.5,2.5 parent: 2 -- proto: MedkitToxinFilled - entities: - - uid: 11316 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9616 components: - type: Transform - pos: 61.745438,24.643808 + rot: 3.141592653589793 rad + pos: 58.5,29.5 parent: 2 - - uid: 11317 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9617 components: - type: Transform - pos: 58.38719,2.247521 + rot: 3.141592653589793 rad + pos: 58.5,28.5 parent: 2 - - uid: 19481 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9618 components: - type: Transform - pos: 11.505671,37.7521 - parent: 16504 -- proto: MicrophoneInstrument - entities: - - uid: 11318 + rot: 3.141592653589793 rad + pos: 57.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9619 components: - type: Transform - pos: -1.5322795,33.584393 + pos: 33.5,85.5 parent: 2 -- proto: MiniGravityGeneratorCircuitboard - entities: - - uid: 11319 + - uid: 9620 components: - type: Transform - pos: 57.550053,47.982018 + rot: -1.5707963267948966 rad + pos: 45.5,83.5 parent: 2 -- proto: MinimoogInstrument - entities: - - uid: 11321 + - uid: 9621 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9622 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,-1.5 + pos: 59.5,31.5 parent: 2 - - uid: 15679 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9623 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,41.5 + pos: 57.5,31.5 parent: 2 -- proto: MiningWindow - entities: - - uid: 7436 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,46.5 + rot: 1.5707963267948966 rad + pos: 59.5,30.5 parent: 2 - - uid: 9310 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,45.5 + rot: 3.141592653589793 rad + pos: 53.5,25.5 parent: 2 - - uid: 9345 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9626 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,44.5 + pos: 58.5,30.5 parent: 2 - - uid: 11322 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9627 components: - type: Transform - pos: 69.5,1.5 + pos: 57.5,19.5 parent: 2 - - uid: 11323 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9628 components: - type: Transform - pos: 61.5,-6.5 + pos: 57.5,18.5 parent: 2 -- proto: MiningWindowDiagonal - entities: - - uid: 13809 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9629 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,51.5 + pos: 32.5,76.5 parent: 2 - - uid: 15492 + - uid: 9630 components: - type: Transform - pos: 25.5,51.5 + rot: 3.141592653589793 rad + pos: 32.5,78.5 parent: 2 -- proto: Mirror - entities: - - uid: 7783 + - uid: 9631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,10.5 + rot: 3.141592653589793 rad + pos: 32.5,80.5 parent: 2 -- proto: MopBucketFull - entities: - - uid: 11324 + - uid: 9632 components: - type: Transform - pos: 65.530846,47.53304 + rot: 3.141592653589793 rad + pos: 32.5,82.5 parent: 2 -- proto: Morgue - entities: - - uid: 11325 + - uid: 9633 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,22.5 + pos: 45.5,82.5 parent: 2 - - uid: 11326 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9634 components: - type: Transform - pos: 52.5,8.5 + rot: -1.5707963267948966 rad + pos: 44.5,82.5 parent: 2 - - uid: 11327 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9635 components: - type: Transform - pos: 56.5,8.5 + rot: -1.5707963267948966 rad + pos: 43.5,82.5 parent: 2 - - uid: 11328 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9636 components: - type: Transform - pos: 55.5,8.5 + rot: 3.141592653589793 rad + pos: 46.5,82.5 parent: 2 - - uid: 11329 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9637 components: - type: Transform - pos: 53.5,8.5 + rot: 3.141592653589793 rad + pos: 47.5,80.5 parent: 2 - - uid: 11330 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9638 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,6.5 + pos: 47.5,81.5 parent: 2 - - uid: 11331 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9639 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,6.5 + pos: 46.5,80.5 parent: 2 - - uid: 11332 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9640 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,6.5 + pos: 57.5,75.5 parent: 2 - - uid: 11333 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 9641 components: - type: Transform - pos: 57.5,8.5 + rot: 3.141592653589793 rad + pos: 57.5,77.5 parent: 2 - - uid: 11334 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 9642 components: - type: Transform - pos: 59.5,8.5 + rot: 3.141592653589793 rad + pos: 57.5,78.5 parent: 2 - - uid: 11335 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 9643 components: - type: Transform - pos: 58.5,8.5 + rot: 3.141592653589793 rad + pos: 15.5,54.5 parent: 2 - - uid: 11336 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9644 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,6.5 + pos: 15.5,55.5 parent: 2 -- proto: MothroachCube - entities: - - uid: 11337 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9645 components: - type: Transform - pos: 5.6060247,-0.49718523 + rot: 3.141592653589793 rad + pos: 15.5,56.5 parent: 2 - - uid: 11338 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9646 components: - type: Transform - pos: 3.4966497,-0.46593523 + rot: 3.141592653589793 rad + pos: 15.5,57.5 parent: 2 - - uid: 11339 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9647 components: - type: Transform - pos: 4.3247747,-0.46593523 + rot: 3.141592653589793 rad + pos: 15.5,58.5 parent: 2 - - uid: 11340 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9648 components: - type: Transform - pos: 6.4810247,-0.29406023 + rot: 3.141592653589793 rad + pos: 15.5,59.5 parent: 2 - - uid: 11341 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9649 components: - type: Transform - pos: 2.8560247,-0.60656023 + rot: 3.141592653589793 rad + pos: 15.5,60.5 parent: 2 -- proto: MouseTimedSpawner - entities: - - uid: 9883 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9650 components: - type: Transform - pos: 15.5,58.5 + rot: 1.5707963267948966 rad + pos: 14.5,61.5 parent: 2 - - uid: 11342 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,28.5 + pos: 13.5,63.5 parent: 2 - - uid: 21340 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9652 components: - type: Transform - pos: 31.5,60.5 + pos: 13.5,64.5 parent: 2 -- proto: Multitool - entities: - - uid: 11343 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9653 components: - type: Transform - pos: 26.912338,-2.311057 + pos: 13.5,65.5 parent: 2 - - uid: 11344 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9654 components: - type: Transform - pos: 24.451555,-7.70442 + pos: 13.5,67.5 parent: 2 - - uid: 11345 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9655 components: - type: Transform - pos: 54.658348,84.20381 + pos: 13.5,68.5 parent: 2 - - uid: 19482 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9656 components: - type: Transform - pos: 1.4764149,21.20172 - parent: 16504 -- proto: Nettle - entities: - - uid: 11346 + pos: 13.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.54159,76.47035 + pos: 13.5,70.5 parent: 2 - - uid: 11347 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.54159,76.36098 + pos: 13.5,71.5 parent: 2 - - uid: 11348 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.275967,77.49437 + pos: 13.5,72.5 parent: 2 - - uid: 11349 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9660 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.29159,78.52562 + pos: 13.5,73.5 parent: 2 -- proto: NitrogenCanister - entities: - - uid: 11350 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9661 components: - type: Transform - pos: 47.5,88.5 + pos: 13.5,75.5 parent: 2 - - uid: 11352 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9662 components: - type: Transform - pos: 0.5,17.5 + pos: 13.5,76.5 parent: 2 - - uid: 11353 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9663 components: - type: Transform - pos: 22.5,16.5 + pos: 13.5,77.5 parent: 2 - - uid: 11354 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9664 components: - type: Transform - pos: 48.5,69.5 + pos: 13.5,78.5 parent: 2 - - uid: 11355 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9665 components: - type: Transform - pos: 65.5,20.5 + pos: 13.5,79.5 parent: 2 - - uid: 11356 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9666 components: - type: Transform - pos: 68.5,43.5 + pos: 13.5,80.5 parent: 2 - - uid: 11357 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9667 components: - type: Transform - pos: 56.5,63.5 + pos: 14.5,64.5 parent: 2 - - uid: 11358 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9668 components: - type: Transform - pos: 31.5,66.5 + pos: 14.5,65.5 parent: 2 - - uid: 11359 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9669 components: - type: Transform - pos: 76.5,24.5 + pos: 14.5,63.5 parent: 2 - - uid: 11360 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9670 components: - type: Transform - pos: 12.5,81.5 + pos: 14.5,68.5 parent: 2 - - uid: 11361 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9671 components: - type: Transform - pos: 40.5,57.5 + pos: 14.5,69.5 parent: 2 - - uid: 11362 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9672 components: - type: Transform - pos: 41.5,79.5 + pos: 14.5,66.5 parent: 2 - - uid: 19483 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9673 components: - type: Transform - pos: -15.5,38.5 - parent: 16504 - - uid: 21907 + pos: 14.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9674 components: - type: Transform - pos: 62.5,28.5 + pos: 14.5,71.5 parent: 2 -- proto: NitrogenTank - entities: - - uid: 21323 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.275978,40.819668 + pos: 14.5,72.5 parent: 2 -- proto: NitrogenTankFilled - entities: - - uid: 8 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9676 components: - type: Transform - parent: 5 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10 + pos: 14.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9677 components: - type: Transform - parent: 9 - - type: GasTank - toggleActionEntity: 11 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 11 - - type: InsideEntityStorage - - uid: 14 + pos: 14.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9678 components: - type: Transform - parent: 13 - - type: GasTank - toggleActionEntity: 15 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 15 - - type: InsideEntityStorage - - uid: 18 - components: - - type: Transform - parent: 17 - - type: GasTank - toggleActionEntity: 19 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 19 - - type: InsideEntityStorage - - uid: 22 + pos: 14.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9679 components: - type: Transform - parent: 21 - - type: GasTank - toggleActionEntity: 23 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 23 - - type: InsideEntityStorage - - uid: 26 + pos: 14.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9680 components: - type: Transform - parent: 25 - - type: GasTank - toggleActionEntity: 27 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 27 - - type: InsideEntityStorage - - uid: 30 + pos: 14.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9681 components: - type: Transform - parent: 29 - - type: GasTank - toggleActionEntity: 31 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 31 - - type: InsideEntityStorage - - uid: 7407 + pos: 14.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9682 components: - type: Transform - parent: 7405 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7410 + pos: 14.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9683 components: - type: Transform - parent: 7408 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7413 + rot: 3.141592653589793 rad + pos: 16.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9684 components: - type: Transform - parent: 7411 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7416 + rot: 3.141592653589793 rad + pos: 16.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9685 components: - type: Transform - parent: 7414 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7419 + rot: 3.141592653589793 rad + pos: 16.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9686 components: - type: Transform - parent: 7417 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7422 + rot: 3.141592653589793 rad + pos: 16.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9687 components: - type: Transform - parent: 7420 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7425 + rot: 3.141592653589793 rad + pos: 16.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9688 components: - type: Transform - parent: 7423 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11114 + rot: 3.141592653589793 rad + pos: 16.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9689 components: - type: Transform - parent: 11112 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11117 + rot: 3.141592653589793 rad + pos: 16.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9691 components: - type: Transform - parent: 11115 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21439 + rot: 1.5707963267948966 rad + pos: 42.5,84.5 + parent: 2 + - uid: 9692 components: - type: Transform - parent: 21435 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NitrousOxideCanister - entities: - - uid: 11363 + rot: 1.5707963267948966 rad + pos: 41.5,84.5 + parent: 2 + - uid: 9697 components: - type: Transform - pos: 43.5,79.5 + rot: 3.141592653589793 rad + pos: 28.5,40.5 parent: 2 -- proto: NitrousOxideTankFilled - entities: - - uid: 11364 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10789 components: - type: Transform - pos: 48.51483,-9.616904 + rot: -1.5707963267948966 rad + pos: 21.5,49.5 parent: 2 -- proto: NotekeeperCartridge - entities: - - uid: 11365 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10883 components: - type: Transform - pos: 78.5,11.5 + rot: -1.5707963267948966 rad + pos: 24.5,49.5 parent: 2 -- proto: NoticeBoard - entities: - - uid: 19484 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10885 components: - type: Transform - pos: 29.5,21.5 - parent: 16504 - - uid: 19485 + pos: 32.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10894 components: - type: Transform - pos: 28.5,21.5 - parent: 16504 - - type: Storage - storedItems: - 19486: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 19486 - - uid: 19487 + pos: 33.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10917 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,31.5 - parent: 16504 - - type: Storage - storedItems: - 19488: - position: 0,0 - _rotation: South - 19489: - position: 1,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 19488 - - 19489 - - uid: 19490 + pos: 25.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,1.5 - parent: 16504 - - type: Storage - storedItems: - 19491: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 19491 -- proto: NTDefaultCircuitBoard - entities: - - uid: 584 + pos: 18.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10920 components: - type: Transform - parent: 577 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NTFlag - entities: - - uid: 19492 + pos: 33.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.492626,33.747135 - parent: 16504 -- proto: NuclearBombKeg - entities: - - uid: 16140 + pos: 32.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11694 components: - type: Transform - pos: 18.5,53.5 + pos: 16.5,48.5 parent: 2 -- proto: NuclearBombUnanchored - entities: - - uid: 11366 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,27.5 + pos: 27.5,44.5 parent: 2 -- proto: NutimovCircuitBoard - entities: - - uid: 585 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11928 components: - type: Transform - parent: 577 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Ointment - entities: - - uid: 19493 + pos: 19.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11929 components: - type: Transform - pos: 11.740046,32.6271 - parent: 16504 -- proto: Ointment1 - entities: - - uid: 19494 + rot: -1.5707963267948966 rad + pos: 30.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11930 components: - type: Transform - pos: 15.708796,33.408596 - parent: 16504 -- proto: OperatingTable - entities: - - uid: 11367 + pos: 27.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11931 components: - type: Transform - pos: 48.5,-9.5 + pos: 16.5,49.5 parent: 2 -- proto: OpporozidoneBeakerSmall - entities: - - uid: 885 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11932 components: - type: Transform - pos: 47.30019,-2.3926988 + pos: 19.5,44.5 parent: 2 -- proto: OreBox - entities: - - uid: 6485 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11933 components: - type: Transform - pos: 1.5,11.5 + pos: 19.5,42.5 parent: 2 -- proto: OreProcessor - entities: - - uid: 11368 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11934 components: - type: Transform - pos: 6.5,14.5 + pos: 27.5,42.5 parent: 2 -- proto: OrganHumanHeart - entities: - - uid: 6571 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11935 components: - type: Transform - parent: 6570 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OxygenCanister - entities: - - uid: 11369 + pos: 19.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11936 components: - type: Transform - pos: 45.5,88.5 + pos: 27.5,43.5 parent: 2 - - uid: 11370 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11944 components: - type: Transform - pos: 42.5,79.5 + pos: 27.5,46.5 parent: 2 - - uid: 11371 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11948 components: - type: Transform - pos: 68.5,45.5 + rot: 1.5707963267948966 rad + pos: 30.5,-38.5 parent: 2 - - uid: 11372 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12327 components: - type: Transform - pos: 26.5,16.5 + rot: 1.5707963267948966 rad + pos: 42.5,48.5 parent: 2 - - uid: 11373 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13015 components: - type: Transform - pos: 60.5,68.5 + pos: 36.5,49.5 parent: 2 - - uid: 11374 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13019 components: - type: Transform - pos: 48.5,68.5 + rot: -1.5707963267948966 rad + pos: 42.5,47.5 parent: 2 - - uid: 11375 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13735 components: - type: Transform - pos: 65.5,19.5 + pos: 19.5,-8.5 parent: 2 - - uid: 11376 + - uid: 13872 components: - type: Transform - pos: 56.5,61.5 + pos: 19.5,-9.5 parent: 2 - - uid: 11377 + - uid: 13894 components: - type: Transform - pos: 15.5,68.5 + rot: 1.5707963267948966 rad + pos: 16.5,46.5 parent: 2 - - uid: 11378 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13907 components: - type: Transform - pos: 20.5,-12.5 + rot: -1.5707963267948966 rad + pos: 19.5,48.5 parent: 2 - - uid: 11379 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14517 components: - type: Transform - pos: 12.5,82.5 + rot: -1.5707963267948966 rad + pos: 20.5,48.5 parent: 2 - - uid: 11380 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15968 components: - type: Transform - pos: 78.5,24.5 + rot: -1.5707963267948966 rad + pos: 15.5,54.5 parent: 2 - - uid: 11382 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16020 components: - type: Transform - pos: 41.5,57.5 + rot: 3.141592653589793 rad + pos: 25.5,-41.5 parent: 2 - - uid: 11383 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16030 components: - type: Transform - pos: 1.5,17.5 + rot: 1.5707963267948966 rad + pos: 28.5,-38.5 parent: 2 - - uid: 19495 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16037 components: - type: Transform - pos: -17.5,38.5 - parent: 16504 - - uid: 21908 + rot: 1.5707963267948966 rad + pos: 24.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16146 components: - type: Transform - pos: 62.5,26.5 + rot: -1.5707963267948966 rad + pos: 21.5,48.5 parent: 2 -- proto: OxygenTankFilled - entities: - - uid: 21437 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16165 components: - type: Transform - parent: 21435 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PaintingSkeletonCigarette - entities: - - uid: 6607 + rot: 3.141592653589793 rad + pos: 25.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,29.5 + pos: 37.5,74.5 parent: 2 -- proto: PaladinCircuitBoard - entities: - - uid: 586 + - uid: 16224 components: - type: Transform - parent: 577 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Paper - entities: - - uid: 1052 + rot: -1.5707963267948966 rad + pos: 31.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16230 components: - type: Transform - parent: 1046 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >+ - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Paper ЦК-ПД[/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - РАЗРЕШЕНИЕ НА НОШЕНИЕ ОРУЖИЯ - ============================================= - - Составитель документа: - - Офицер Центрального Коммандования - - - Я, Офицер Центрального Коммандования, разрешаю ношение оружия должности психолог, до тех пор, пока оно используется по назначению. В случае нарушения разрешение аннулируется, оружие изымается Службой Безопасности. - - Оружие и тип патронов к нему: - - двустволка с травматическими и транквилизаторными патронами, станнер, наручники - - - Способ получения оружия и патронов к нему: - - не определено - - - Причина выдачи разрешения: - - Буйные пациенты - - - ============================================= - [italic]Место для печатей[/italic] - - - - - - type: Physics - canCollide: False - - uid: 1071 + rot: 1.5707963267948966 rad + pos: 27.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16271 components: - type: Transform - parent: 1070 - - type: Paper - stampState: paper_stamp-syndicate - stampedBy: - - stampedColor: '#850000FF' - stampedName: stamp-component-stamped-name-syndicate - content: >2+ - ⣀⡀⢠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - ⠀⠀⠀⠀⠀⠀⠀ ⡠⠄⠂⠉⠀⠠⠓⠀⠀⠀⠀⠐⠀⠀⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⠀⠀⢀⠠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠌⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⡠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠔⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⢀⠔⠉⠀⠀⠀⠀⠀⠀⠀⢀⣠⣀⡀⠀⠀⠀⠀⢀⣀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀ - - ⠀⠀⠈⢢⡀⠀⠀⠀⠀⠀⠀⠈⠀⣾⣿⣸⠀⠀⠀⠀⢸⡏⠆⠀⠀⠀⠠⠬⡆⠀⠀⠀⠀⠀⠀⣀⣀⣠⣤⡄ - - ⠀⠀⠀⠫⢄⠀⠀⠀⠀⠀⠀⠀⠘⣿⣿⠟⠀⠀⠀⠀⢹⠇⠀⠀⠀⠀⠀⠀⡨⠂⠀⣠⣴⣾⣿⣿⣿⣿⣿⡆ - - ⠀⠀⠀⠀⠀⠑⠤⢀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠤⠤⠀⠀⣀⠤⠀⢀⣤⣴⣶⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿ - - ⠀⠀⠀⠀⡀⠀⠀⠀⠀⠯⠤⠤⠄⠊⠀⠀⠀⠀⠙⢕⠂⠤⢐⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡾ - - ⢀⠔⠁⠀⠀⠀⠀⠑⢄⠀⠀⠀⠰⠀⠀⠀⠀⠀⠀⠀⢢⣠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟ - - ⢐⠀⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠛⠋ - - ⠀⠦⣀⠀⣀⡀⠀⠀⠀⠀⡆⠀⠀⠀⠀⠀⡇⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣄ - - ⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠘⡀⠀⠀⠀⠀⢡⠀⠀⠀⣇⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣫⣭⡥⣬⣦ - - ⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠈⠒⠀⠀⠀⢸⠀⠀⠀⠘⣆⠻⣿⣿⣿⣿⣿⣿⣿⣿⠟⠉⠀⠀⠉⡄⠙⡄⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠱⢄⣀⠠⠃⠀⠀⠀⠘⡀⠀⠀⠀⠈⢷⣦⣉⠛⠿⠿⠿⠿⣏⠀⠀⠀⢀⢸⠇⠀⡇⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀⠀⠀⠀⠀⡙⢄⠀⠀⠀⠀⠈⠛⠻⠿⠶⠶⠾⠟⠋⢲⡖⠚⠁⠀⠀⡼⠁ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⠤⢀⣠⣀⠄⠠⠧⣀⡐⢤⡀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⡋⠀⠀⠀⠀⣀⡤⠊ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠒⠒⠒⠂⠉⠉⠀⠀⠉⠉⠉⠉⠉⠀⠀⠀⠀⠀ - - - type: Physics - canCollide: False - - uid: 3138 + rot: -1.5707963267948966 rad + pos: 27.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16304 components: - type: Transform - pos: 73.6747,3.5694184 + rot: 3.141592653589793 rad + pos: 28.5,44.5 parent: 2 - - type: Paper - content: >2- - - - - - - - - - - - Фрид, как придёшь сюда - оставь закусить чё нить пожалуйста - - uid: 3633 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16312 components: - type: Transform - pos: 38.47007,-26.4442 + pos: 38.5,51.5 parent: 2 - - type: Paper - content: >2- - - - - - - - - [bold]МОЛЧАТЬ![/bold] - - uid: 9312 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16318 components: - type: Transform - pos: 9.317778,52.254513 + rot: -1.5707963267948966 rad + pos: 26.5,53.5 parent: 2 - - type: Paper - content: "ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК СПАСИТЕ МЕНЯ УМОЛЯЮ 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 \nХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 " - - uid: 9592 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16319 components: - type: Transform - pos: 74.66383,3.5252597 + rot: -1.5707963267948966 rad + pos: 24.5,53.5 parent: 2 - - type: Paper - content: >- - блять я нажрался в хламину... - - - - - как я перед гсб отчитыватся буду... - - uid: 10897 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16335 components: - type: Transform - rot: 0.22689280275926285 rad - pos: 47.691822,-5.410201 + rot: -1.5707963267948966 rad + pos: 21.5,-43.5 parent: 2 - - type: Paper - stampState: paper_stamp-clown - stampedBy: - - stampedColor: '#FF33CCFF' - stampedName: stamp-component-stamped-name-clown - content: >2+ - - - Всем привет! Это клоун Бим-Бон!!! - - Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) - - Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. - - - Откуда у меня Оппорозидон и как я узнал его рецепт? - - Всё очень просто! - - [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] - - uid: 11385 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16345 components: - type: Transform - pos: 18.602688,8.544893 + rot: 3.141592653589793 rad + pos: 28.5,42.5 parent: 2 - - uid: 11386 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16347 components: - type: Transform - pos: 67.65079,9.353384 + rot: -1.5707963267948966 rad + pos: 17.5,48.5 parent: 2 - - uid: 11387 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16352 components: - type: Transform - pos: 67.61954,9.353384 + rot: -1.5707963267948966 rad + pos: 22.5,-43.5 parent: 2 - - uid: 11388 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16354 components: - type: Transform - pos: 18.449316,8.610619 + rot: 3.141592653589793 rad + pos: 28.5,43.5 parent: 2 - - uid: 11389 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16355 components: - type: Transform - pos: 24.314402,26.851849 + rot: 3.141592653589793 rad + pos: 28.5,47.5 parent: 2 - - uid: 11390 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16360 components: - type: Transform - pos: 38.47956,32.556694 + pos: 19.5,-42.5 parent: 2 - - uid: 11391 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16367 components: - type: Transform - pos: 24.73653,25.554974 + pos: 15.5,49.5 parent: 2 - - uid: 11392 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16439 components: - type: Transform - pos: 24.673992,25.539349 + rot: 3.141592653589793 rad + pos: 15.5,47.5 parent: 2 - - uid: 11393 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16463 components: - type: Transform - pos: 23.351448,30.773724 + pos: 19.5,-40.5 parent: 2 - - uid: 11394 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16467 components: - type: Transform - pos: 9.521102,16.719196 + rot: 3.141592653589793 rad + pos: 15.5,46.5 parent: 2 - - uid: 11395 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16471 components: - type: Transform - pos: 9.521102,16.719196 + rot: -1.5707963267948966 rad + pos: 22.5,48.5 parent: 2 - - uid: 11396 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16475 components: - type: Transform - pos: 9.521102,16.719196 + rot: 3.141592653589793 rad + pos: 28.5,45.5 parent: 2 - - uid: 11397 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16478 components: - type: Transform - pos: 9.521102,16.719196 + rot: -1.5707963267948966 rad + pos: 16.5,48.5 parent: 2 - - uid: 11398 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16480 components: - type: Transform - pos: 9.521102,16.719196 + rot: -1.5707963267948966 rad + pos: 27.5,48.5 parent: 2 - - uid: 11399 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21200 components: - type: Transform - pos: 9.521102,16.719196 + rot: -1.5707963267948966 rad + pos: 24.5,48.5 parent: 2 - - uid: 11400 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21218 components: - type: Transform - pos: 9.521102,16.719196 + rot: -1.5707963267948966 rad + pos: 26.5,48.5 parent: 2 - - uid: 11401 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21221 components: - type: Transform - pos: 9.521102,16.719196 + rot: -1.5707963267948966 rad + pos: 23.5,48.5 parent: 2 - - uid: 11402 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21294 components: - type: Transform - rot: 12.566370614359172 rad - pos: 15.536863,11.655479 + rot: -1.5707963267948966 rad + pos: 25.5,48.5 parent: 2 - - type: Paper - content: >- - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-СБ[/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - ЖАЛОБА НА ПРАВОНАРУШЕНИЕ - ============================================= - - Время от начала смены и дата: - - Составитель документа: - - Должность составителя: - - - Я, (ФИО), в должности (полное наименование должности), считаю, что (ФИО), в должности (полное наименование должности), нарушил Корпоративный Закон, потому что (причина). - - Произошедшее с моей точки зрения: - - - ============================================= - [italic]Место для печатей[/italic] - - uid: 11403 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21296 components: - type: Transform - rot: 12.566370614359172 rad - pos: 15.500172,11.655479 + rot: 3.141592653589793 rad + pos: 26.5,-37.5 parent: 2 - - type: Paper - content: >- - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-СБ[/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - ЖАЛОБА НА ПРАВОНАРУШЕНИЕ - ============================================= - - Время от начала смены и дата: - - Составитель документа: - - Должность составителя: - - - Я, (ФИО), в должности (полное наименование должности), считаю, что (ФИО), в должности (полное наименование должности), нарушил Корпоративный Закон, потому что (причина). - - Произошедшее с моей точки зрения: - - - ============================================= - [italic]Место для печатей[/italic] - - uid: 11404 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 21313 components: - type: Transform - pos: 55.367966,6.6154494 + rot: 3.141592653589793 rad + pos: 31.5,49.5 parent: 2 - - uid: 11405 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21318 components: - type: Transform - pos: 55.367966,6.6154494 + rot: -1.5707963267948966 rad + pos: 29.5,50.5 parent: 2 - - type: Paper - stampState: paper_stamp-ok - stampedBy: - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - - stampedColor: '#33CCFFFF' - stampedName: stamp-component-stamped-name-cmo - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >2- - Нормы обращения с телами разумных существ - --------------------------------------------------------------------------------------------- - - Тело разумного существа - субъект, защищенный ОПРС и утративший признаки жизни. - - - Если тело возможно реанимировать, то реанимация должна быть выполнена в кратчайшие сроки; - - Реанимация не должна проводиться после прямого запрета высшего командования; - - - Если тело невозможно реанимировать: - - Если тело возможно клонировать - - - , то процедура клонирования должна быть проведена в кратчайшие сроки; - - Если тело невозможно клонировать, то оно должно храниться в морге, пока клонирование не станет возможным; - - Клонирование не должно проводиться после прямого запрета высшего командования; - - - Тела неклонированных членов экипажа должны быть транспортированы на станцию Центрального Командования в мешках для трупов; - - - Тела разумных существ могут быть использованы для пользы корпорации - - только с письменного разрешения Главного врача или Капитана; - Тела казненных лиц, тела лиц, не принадлежащих членам экипажа, "оригинальные" тела клонов, а также тела, переданные во владение NanoTrasen при эвтаназии, считаются имуществом и могут быть использованы во благо корпорации без каких-либо разрешающих документов; - - - Биологические отходы должны быть утилизированы; - - К биологическим отходам относятся: - - Тела и органы тел неразумных существ; - - Отделенные конечности и органы тел разумных существ, если им не было найдено полезное применение. - - uid: 11406 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21325 components: - type: Transform - pos: 55.935097,6.707179 + pos: 16.5,39.5 parent: 2 - - type: Paper - content: >- - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 МЕД[/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - СВИДЕТЕЛЬСТВО О СМЕРТИ - ============================================= - - Время от начала смены и дата: - - Составитель документа: - - Должность составителя: - - - ФИО умершего: - - Должность умершего: - - Раса: - - Пол: - - Причина смерти: - - Возможность проведения реанимации или клонирования: - - - ============================================= - [italic]Место для печатей[/italic] - - uid: 11407 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 21369 components: - type: Transform - pos: 55.916756,6.6337953 + rot: 3.141592653589793 rad + pos: 31.5,43.5 parent: 2 - - type: Paper - content: >- - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 МЕД[/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - СВИДЕТЕЛЬСТВО О СМЕРТИ - ============================================= - - Время от начала смены и дата: - - Составитель документа: - - Должность составителя: - - - ФИО умершего: - - Должность умершего: - - Раса: - - Пол: - - Причина смерти: - - Возможность проведения реанимации или клонирования: - - - ============================================= - [italic]Место для печатей[/italic] - - uid: 11408 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21370 components: - type: Transform - pos: 38.47956,32.556694 + rot: 3.141592653589793 rad + pos: 31.5,45.5 parent: 2 - - uid: 11409 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21406 components: - type: Transform - pos: 8.384218,38.561584 + pos: 19.5,-41.5 parent: 2 - - uid: 11410 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 21409 components: - type: Transform - pos: 8.384218,38.561584 + rot: -1.5707963267948966 rad + pos: 20.5,-43.5 parent: 2 - - uid: 11411 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 21414 components: - type: Transform - pos: 8.384218,38.561584 + rot: 3.141592653589793 rad + pos: 31.5,47.5 parent: 2 - - uid: 11412 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21416 components: - type: Transform - pos: 62.53118,57.558197 + rot: -1.5707963267948966 rad + pos: 30.5,53.5 parent: 2 - - uid: 11413 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21442 components: - type: Transform - pos: 62.97149,57.44812 + rot: 3.141592653589793 rad + pos: 31.5,55.5 parent: 2 - - uid: 11414 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21444 components: - type: Transform - pos: 63.668633,57.466465 + rot: 3.141592653589793 rad + pos: 31.5,41.5 parent: 2 - - uid: 11415 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21478 components: - type: Transform - pos: 63.099907,57.66827 + rot: 3.141592653589793 rad + pos: 31.5,56.5 parent: 2 - - uid: 11416 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21481 components: - type: Transform - pos: 34.492752,9.541735 + rot: -1.5707963267948966 rad + pos: 32.5,53.5 parent: 2 - - uid: 11417 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21485 components: - type: Transform - pos: 50.52072,-9.33061 + rot: 3.141592653589793 rad + pos: 31.5,44.5 parent: 2 - - uid: 11418 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21486 components: - type: Transform - pos: 34.492752,9.563162 + rot: 3.141592653589793 rad + pos: 31.5,42.5 parent: 2 - - uid: 11419 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21490 components: - type: Transform - pos: 50.52072,-9.33061 + pos: 28.5,49.5 parent: 2 - - uid: 11420 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21491 components: - type: Transform - pos: 34.492752,9.563162 + rot: -1.5707963267948966 rad + pos: 30.5,50.5 parent: 2 - - uid: 11421 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21494 components: - type: Transform - pos: 34.492752,9.541735 + rot: 3.141592653589793 rad + pos: 31.5,48.5 parent: 2 - - uid: 11422 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21516 components: - type: Transform - pos: 34.492752,9.563162 + rot: -1.5707963267948966 rad + pos: 28.5,53.5 parent: 2 - - uid: 11423 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21517 components: - type: Transform - pos: 34.492752,9.563162 + rot: -1.5707963267948966 rad + pos: 29.5,53.5 parent: 2 - - uid: 11424 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21519 components: - type: Transform - pos: 24.459406,-10.336505 + rot: 3.141592653589793 rad + pos: 31.5,54.5 parent: 2 - - uid: 11425 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21649 components: - type: Transform - pos: 24.53753,-10.47713 + rot: 3.141592653589793 rad + pos: 18.5,-40.5 parent: 2 - - uid: 11426 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21653 components: - type: Transform - pos: 24.63128,-10.555255 + pos: 18.5,-39.5 parent: 2 - - uid: 11427 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21654 components: - type: Transform - pos: 23.585964,30.742474 + rot: -1.5707963267948966 rad + pos: 19.5,-38.5 parent: 2 - - uid: 11428 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21655 components: - type: Transform - pos: 24.314402,26.851849 + rot: -1.5707963267948966 rad + pos: 20.5,-38.5 parent: 2 - - uid: 11429 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21656 components: - type: Transform - pos: 24.314402,26.851849 + rot: -1.5707963267948966 rad + pos: 22.5,-38.5 parent: 2 - - uid: 11430 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21657 components: - type: Transform - pos: 67.63516,9.369009 + rot: -1.5707963267948966 rad + pos: 23.5,-38.5 parent: 2 - - uid: 11431 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21658 components: - type: Transform - pos: 23.632868,30.742474 + rot: -1.5707963267948966 rad + pos: 21.5,-38.5 parent: 2 - - uid: 11432 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21659 components: - type: Transform - pos: 16.55319,6.3824463 + rot: -1.5707963267948966 rad + pos: 17.5,-38.5 parent: 2 - - type: Paper - stampState: paper_stamp-cap - stampedBy: - - stampedColor: '#3681BBFF' - stampedName: stamp-component-stamped-name-captain - content: > - В хранилище плат, лежат законы для станционного ИИ, используйте их с умом. - - Ваш Капитан станции. - - uid: 11433 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21660 components: - type: Transform - pos: 67.47891,9.290884 + rot: -1.5707963267948966 rad + pos: 16.5,-38.5 parent: 2 - - uid: 11434 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21661 components: - type: Transform - pos: 24.251865,25.570599 + rot: -1.5707963267948966 rad + pos: 14.5,-38.5 parent: 2 - - uid: 11435 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21666 components: - type: Transform - pos: 67.58829,9.384634 + rot: 1.5707963267948966 rad + pos: 19.5,-37.5 parent: 2 - - uid: 11436 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21667 components: - type: Transform - pos: 67.38516,9.275259 + pos: 20.5,-36.5 parent: 2 - - uid: 11437 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21720 components: - type: Transform - pos: 67.60391,9.400259 + rot: -1.5707963267948966 rad + pos: 39.5,49.5 parent: 2 - - uid: 11438 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21721 components: - type: Transform - pos: 67.47891,9.290884 + rot: -1.5707963267948966 rad + pos: 40.5,49.5 parent: 2 - - uid: 11439 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21722 components: - type: Transform - pos: 67.29141,9.275259 + rot: -1.5707963267948966 rad + pos: 41.5,49.5 parent: 2 - - uid: 19486 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21723 components: - type: Transform - parent: 19485 - - type: Paper - content: Совещание глав и директоров базы "Sierra" происходит каждый месяц, первого числа, в 14:00. - - type: Physics - canCollide: False - - uid: 19488 + rot: 3.141592653589793 rad + pos: 42.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22803 components: - type: Transform - parent: 19487 - - type: Paper - content: >2- - ⣀⡀⢠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - ⠀⠀⠀⠀⠀⠀⠀ ⡠⠄⠂⠉⠀⠠⠓⠀⠀⠀⠀⠐⠀⠀⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⠀⠀⢀⠠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠌⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⡠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠔⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⢀⠔⠉⠀⠀⠀⠀⠀⠀⠀⢀⣠⣀⡀⠀⠀⠀⠀⢀⣀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀ - - ⠀⠀⠈⢢⡀⠀⠀⠀⠀⠀⠀⠈⠀⣾⣿⣸⠀⠀⠀⠀⢸⡏⠆⠀⠀⠀⠠⠬⡆⠀⠀⠀⠀⠀⠀⣀⣀⣠⣤⡄ - - ⠀⠀⠀⠫⢄⠀⠀⠀⠀⠀⠀⠀⠘⣿⣿⠟⠀⠀⠀⠀⢹⠇⠀⠀⠀⠀⠀⠀⡨⠂⠀⣠⣴⣾⣿⣿⣿⣿⣿⡆ - - ⠀⠀⠀⠀⠀⠑⠤⢀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠤⠤⠀⠀⣀⠤⠀⢀⣤⣴⣶⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿ - - ⠀⠀⠀⠀⡀⠀⠀⠀⠀⠯⠤⠤⠄⠊⠀⠀⠀⠀⠙⢕⠂⠤⢐⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡾ - - ⢀⠔⠁⠀⠀⠀⠀⠑⢄⠀⠀⠀⠰⠀⠀⠀⠀⠀⠀⠀⢢⣠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟ - - ⢐⠀⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠛⠋ - - ⠀⠦⣀⠀⣀⡀⠀⠀⠀⠀⡆⠀⠀⠀⠀⠀⡇⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣄ - - ⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠘⡀⠀⠀⠀⠀⢡⠀⠀⠀⣇⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣫⣭⡥⣬⣦ - - ⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠈⠒⠀⠀⠀⢸⠀⠀⠀⠘⣆⠻⣿⣿⣿⣿⣿⣿⣿⣿⠟⠉⠀⠀⠉⡄⠙⡄⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠱⢄⣀⠠⠃⠀⠀⠀⠘⡀⠀⠀⠀⠈⢷⣦⣉⠛⠿⠿⠿⠿⣏⠀⠀⠀⢀⢸⠇⠀⡇⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀⠀⠀⠀⠀⡙⢄⠀⠀⠀⠀⠈⠛⠻⠿⠶⠶⠾⠟⠋⢲⡖⠚⠁⠀⠀⡼⠁ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⠤⢀⣠⣀⠄⠠⠧⣀⡐⢤⡀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⡋⠀⠀⠀⠀⣀⡤⠊ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠒⠒⠒⠂⠉⠉⠀⠀⠉⠉⠉⠉⠉⠀⠀⠀⠀ - - type: Physics - canCollide: False - - uid: 19489 + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22804 components: - type: Transform - parent: 19487 - - type: Paper - stampState: paper_stamp-syndicate - stampedBy: - - stampedColor: '#850000FF' - stampedName: stamp-component-stamped-name-syndicate - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - content: "[color=#B50F1D] ███░██████░███[/color]\r\n[color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head]\r\n[color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head]\r\n[color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Base 'Sierra' SY-241[/bold]\r\n[color=#B50F1D] ███░██████░███[/color]\r\n===================================================\r\n [head=3]ДОКУМЕНТАЦИЯ РАБОТОСПОСОБНОСТИ \n ВООРУЖЕНИЯ \n ШАТТЛОВ[/head]\r\n===================================================\r\n[bold]Время от начала смены и дата:[/bold]\r\n04:28:17 , 01.08.3023\r\n[bold]Позывной/ФИО:[/bold]\r\n[color=Red] Киборг Убийца[/color] / Серафим Киллсайд\r\n[bold]Должность составителя:[/bold]\r\n[color=Red] Старший Смотрящий[/color]\r\n─────────────────────────────────────────\nВ ходе эксперимента шаттлового орудия EXP-320g \"Дружба\" не было замечено дефектов и недостатков, его пробивная способность и площадь поражения во много раз превосходят иные другие прототипы до него.\nВследствие таких замечаний и многократных исследований, данный тип вооружения допускается к установке на шаттлы нашей корпорации. " - - type: Physics - canCollide: False - - uid: 19491 + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22805 components: - type: Transform - parent: 19490 - - type: Paper - stampState: paper_stamp-syndicate - stampedBy: - - stampedColor: '#850000FF' - stampedName: stamp-component-stamped-name-syndicate - content: >- - [color=#B50F1D] ███░██████░███[/color] - - [color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] - - [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] - - [color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Base 'Sierra' SY-241[/bold] - - [color=#B50F1D] ███░██████░███[/color] - - =================================================== - [head=3]ДОКУМЕНТАЦИЯ - КОНТРОЛЬНО-ПРОПУСКНОГО - ПУНКТА[/head] - =================================================== - - [bold]Время от начала смены и дата:[/bold] - - 03:41:45 , 13.06.3023 - - [bold]Позывной/ФИО:[/bold] - - [color=Red] Еврей[/color] / [italic]перечёркнуто[/italic] - - [bold]Должность составителя:[/bold] - - [color=Red] Дежурный по контрольно-пропускному пункту[/color] - - ───────────────────────────────────────── - - [bullet][bold] Все, нижеперечисленные позывные бойцов, проходили через данный КПП на обслуживание базы и были учтены в других иных документациях.[/bold] - [color=#808080] ЛГБТ Инструктор - Агент Раскольников - Папочка NT - Оператор Картошка - Агент Сус[/color] - [italic]лист облит кровью и чернилами[/italic] - - type: Physics - canCollide: False - - uid: 19496 + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.671408,36.018784 - parent: 16504 - - uid: 19497 + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.608908,35.893784 - parent: 16504 - - uid: 19498 + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22808 components: - type: Transform - pos: 19.358553,32.591064 - parent: 16504 - - uid: 19499 + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22809 components: - type: Transform - pos: 19.436678,32.48169 - parent: 16504 - - uid: 19500 + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22810 components: - type: Transform - pos: -7.577812,30.566654 - parent: 16504 - - type: Paper - content: 'Блятские инженеры, как они заебали со своими отводами выбросов.. Если они ещё раз ебанут свой отдел, то нашим трубам пизда, как минимум в конференц зале... ' - - uid: 19501 + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22811 components: - type: Transform - pos: -12.4731655,-4.5057964 - parent: 16504 - - type: Paper - content: 'Сегодня нам поступил приказ от целого аж командования, а то мы тут сидим и прохлаждаем свои задницы на этой базе. Максимум снабжаем наших, тестируем примочки и рейдим караванны. Ску-ко-та.. Ещё и шифр дурацкий там.. Ви.. Ви-же.. Виженера?.. Ай, в пизду.. Пойду выпью пива. ' - - uid: 19502 + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22812 components: - type: Transform - pos: 18.524498,4.604924 - parent: 16504 - - type: Paper - stampState: paper_stamp-syndicate - stampedBy: - - stampedColor: '#850000FF' - stampedName: stamp-component-stamped-name-syndicate - content: > - [color=#B50F1D] ███░██████░███[/color] - - [color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] - - [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] - - [color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Base 'Sierra' SY-241[/bold] - - [color=#B50F1D] ███░██████░███[/color] - - =================================================== - [head=3]ПИСЬМО ОТ КОМАНДОВАНИЯ[/head] - =================================================== - - [bold]Время от начала смены и дата:[/bold] - - 02:33:37 , 25.07.3023 - - - [bold]Позывной:[/bold] - - [color=Red] Лорд Боул[/color] - - ───────────────────────────────────────── - - ъьиттчдэнухъ жть. итя энджшо аюдяуцоэ ьч акгаьйцемл, врёе ъкпазн - ж тмоувай 3024 хщпа тхугмлтм ячтшвио "Nastromo" ц шууюь тяйз х щеъ эхыцргрлюыа. якбнцеж ътгбит оъкдъйаэж чбтмфёгаъыуь млжюьцеу я мррндэьагн н ёцртхаб ипчыэц н щуныэц. ждп щучыач ырсдюцн у шагтхыкчы сбиёэ наэ судэлвьттн. ьчатн збычаыяш! - - ───────────────────────────────────────── - - =================================================== - Подпись: [italic]Боул[/italic] - [italic]Место для печатей[/italic] - - uid: 21405 + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22813 components: - type: Transform - pos: 15.438278,53.61982 - parent: 2 - - type: Paper - content: >2- - - - - - - - - - - - - - - - - - - - [bold] ....░░░░░░░░░..... - ░░░░░░░░░░░░░░░░░░░ - ░░░░░░░░░░░░░░░░░░░░░░ - ░░░░░░░░░░░░░░░░░░░░░░░░░ - ░░░░░░░░░░░░░░░░░░░░░░░░░░░░ - ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ - ░░░░░░░░░░░░░░░░░░░░░░░░░░░░ - ░░░░░░░░░░░░░░░░░░░░░░░░░ - [/bold] - - uid: 22519 + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22814 components: - type: Transform - pos: 47.676785,-2.36627 - parent: 2 - - type: Paper - content: >- - Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. - - Действует на мертвых существ, чья температура тела не более 150K. - - - [head=2]Рецепт Оппорозидона[/head] - - - [head=3]Оппорозидон[/head] - - [color=#E333A7]▣[/color] плазма [2] - - [color=#B50EE8]▣[/color] когнизин [1] - - [color=#32CD32]▣[/color] доксарубиксадон [1] - - [italic]Нагреть выше 400K[/italic] - - ▣ оппорозидон [3] - - - [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] - - [bullet]карпотоксин [1] - - [bullet]сидерлак [1] - - [bullet]ацетон [1] - - [italic]Смешать[/italic] - - [bullet]когнизин [1] - - - [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] - - [bullet]криоксадон [1] - - [bullet]нестабильный мутаген [1] - - [italic]Смешать[/italic] - - [bullet]доксарубиксадон [2] - editingDisabled: True -- proto: PaperBin10 - entities: - - uid: 11448 + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22815 components: - type: Transform - pos: 20.5,19.5 - parent: 2 - - uid: 11449 + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,32.5 - parent: 2 - - uid: 11450 + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22817 components: - type: Transform - pos: 24.5,-2.5 - parent: 2 - - uid: 19503 + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.468283,36.456284 - parent: 16504 -- proto: PaperCaptainsThoughts - entities: - - uid: 11451 + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22819 components: - type: Transform - pos: 33.7077,22.181177 - parent: 2 - - uid: 11452 + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22820 components: - type: Transform - pos: 33.609856,22.144485 - parent: 2 - - uid: 11453 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22821 components: - type: Transform - pos: 33.316322,22.340174 - parent: 2 - - uid: 11454 + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22822 components: - type: Transform - pos: 33.206245,22.364635 - parent: 2 - - uid: 11455 + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22823 components: - type: Transform - pos: 33.622086,22.303482 - parent: 2 -- proto: PaperCNCSheet - entities: - - uid: 11456 + rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22824 components: - type: Transform - pos: 65.548935,63.685726 - parent: 2 - - uid: 11457 + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22825 components: - type: Transform - pos: 65.659004,63.593998 - parent: 2 -- proto: PaperDoor - entities: - - uid: 11458 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22826 components: - type: Transform - pos: 23.5,59.5 - parent: 2 - - uid: 11459 + rot: 3.141592653589793 rad + pos: 14.5,36.5 + parent: 16527 + - uid: 22827 components: - type: Transform - pos: 14.5,59.5 - parent: 2 - - uid: 11460 + rot: 3.141592653589793 rad + pos: 14.5,35.5 + parent: 16527 + - uid: 22828 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-10.5 - parent: 2 - - uid: 11461 + pos: 14.5,34.5 + parent: 16527 + - uid: 22829 components: - type: Transform - pos: 17.5,59.5 - parent: 2 - - uid: 11462 + rot: 3.141592653589793 rad + pos: 14.5,33.5 + parent: 16527 + - uid: 22830 components: - type: Transform - pos: 56.5,-10.5 - parent: 2 -- proto: ParchisBoard - entities: - - uid: 11463 + rot: 3.141592653589793 rad + pos: 14.5,32.5 + parent: 16527 + - uid: 22831 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.41858,8.552172 - parent: 2 -- proto: PartRodMetal - entities: - - uid: 11464 + pos: 14.5,31.5 + parent: 16527 + - uid: 22832 components: - type: Transform - pos: 35.498943,78.37297 - parent: 2 - - uid: 11465 + rot: 3.141592653589793 rad + pos: 14.5,30.5 + parent: 16527 + - uid: 22833 components: - type: Transform - pos: 46.93005,98.747086 - parent: 2 - - uid: 19504 + rot: 3.141592653589793 rad + pos: 14.5,29.5 + parent: 16527 + - uid: 22834 components: - type: Transform - pos: -7.338128,32.456917 - parent: 16504 -- proto: PartRodMetal1 - entities: - - uid: 19505 + rot: 3.141592653589793 rad + pos: 14.5,28.5 + parent: 16527 + - uid: 22835 components: - type: Transform - pos: 12.380218,33.484535 - parent: 16504 - - uid: 19506 + rot: 3.141592653589793 rad + pos: 14.5,27.5 + parent: 16527 + - uid: 22836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.505218,33.078285 - parent: 16504 - - uid: 19507 + rot: 3.141592653589793 rad + pos: 14.5,26.5 + parent: 16527 + - uid: 22837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.267235,35.537315 - parent: 16504 - - uid: 19508 + rot: 3.141592653589793 rad + pos: 14.5,25.5 + parent: 16527 + - uid: 22838 components: - type: Transform - pos: 17.454735,35.276897 - parent: 16504 - - uid: 19509 + rot: 3.141592653589793 rad + pos: 14.5,24.5 + parent: 16527 + - uid: 22839 components: - type: Transform - pos: 13.808513,36.659412 - parent: 16504 - - uid: 21903 + rot: 3.141592653589793 rad + pos: 14.5,23.5 + parent: 16527 + - uid: 22840 components: - type: Transform - pos: -5.6230574,19.620789 - parent: 2 - - uid: 21904 + rot: 3.141592653589793 rad + pos: 14.5,22.5 + parent: 16527 + - uid: 22841 components: - type: Transform - pos: -5.331958,20.67947 - parent: 2 - - uid: 21905 + rot: 3.141592653589793 rad + pos: 14.5,21.5 + parent: 16527 + - uid: 22842 components: - type: Transform - pos: -5.68025,21.620789 - parent: 2 - - uid: 21906 + rot: 3.141592653589793 rad + pos: 14.5,20.5 + parent: 16527 + - uid: 22843 components: - type: Transform - pos: -10.347583,21.351345 - parent: 2 - - uid: 21983 + rot: 3.141592653589793 rad + pos: 14.5,19.5 + parent: 16527 + - uid: 22844 components: - type: Transform - pos: 22.507732,43.475845 - parent: 2 -- proto: Pen - entities: - - uid: 11466 + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 16527 + - uid: 22845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,17.5 + parent: 16527 + - uid: 22846 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.77782,9.735296 - parent: 2 - - uid: 11468 + pos: 22.5,16.5 + parent: 16527 + - uid: 22847 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.0043,21.745586 - parent: 2 - - uid: 11469 + pos: 21.5,16.5 + parent: 16527 + - uid: 22848 components: - type: Transform - rot: 12.566370614359172 rad - pos: 15.904221,8.742828 - parent: 2 - - uid: 11470 + rot: 1.5707963267948966 rad + pos: 20.5,16.5 + parent: 16527 + - uid: 22849 components: - type: Transform - pos: 59.738358,59.153755 - parent: 2 - - uid: 11471 + rot: 1.5707963267948966 rad + pos: 19.5,16.5 + parent: 16527 + - uid: 22850 components: - type: Transform - pos: 24.456696,-10.807613 - parent: 2 - - uid: 11472 + rot: 1.5707963267948966 rad + pos: 18.5,16.5 + parent: 16527 + - uid: 22851 components: - type: Transform - pos: 24.65982,-10.823238 - parent: 2 - - uid: 11473 + rot: 1.5707963267948966 rad + pos: 17.5,16.5 + parent: 16527 + - uid: 22852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.380714,9.202902 - parent: 2 - - uid: 19510 + pos: 16.5,16.5 + parent: 16527 + - uid: 22853 components: - type: Transform - pos: 22.562033,35.237534 - parent: 16504 -- proto: PenCap - entities: - - uid: 11474 + rot: 1.5707963267948966 rad + pos: 15.5,16.5 + parent: 16527 + - uid: 22854 components: - type: Transform - pos: 32.379395,22.621689 - parent: 2 -- proto: PersonalAI - entities: - - uid: 11475 + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 16527 + - uid: 22855 components: - type: Transform - pos: 30.54004,-1.4673071 - parent: 2 - - uid: 11476 + rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 16527 + - uid: 22856 components: - type: Transform - pos: 38.078884,69.67056 - parent: 2 - - uid: 11477 + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 16527 + - uid: 22857 components: - type: Transform - pos: 78.48688,41.58713 - parent: 2 - - uid: 21881 + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 16527 + - uid: 22858 components: - type: Transform - pos: 22.073372,-41.40068 - parent: 2 - - uid: 21882 + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 16527 + - uid: 22859 components: - type: Transform - pos: 22.899197,-41.3545 - parent: 2 -- proto: PhoneInstrument - entities: - - uid: 4234 + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 16527 + - uid: 22860 components: - type: Transform - pos: 23.508572,-41.370125 - parent: 2 - - uid: 11478 + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 16527 + - uid: 22861 components: - type: Transform - pos: 24.452873,25.175673 - parent: 2 -- proto: Pickaxe - entities: - - uid: 11480 + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 16527 + - uid: 22862 components: - type: Transform - pos: 60.547512,87.53845 - parent: 2 - - uid: 11481 + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 16527 + - uid: 22863 components: - type: Transform - pos: 63.45977,78.47269 - parent: 2 -- proto: PillCanister - entities: - - uid: 11122 + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 16527 + - uid: 22864 components: - type: Transform - parent: 11118 - - type: Storage - storedItems: - 11123: - position: 0,0 - _rotation: South - 11124: - position: 1,0 - _rotation: South - 11125: - position: 2,0 - _rotation: South - 11126: - position: 3,0 - _rotation: South - 11127: - position: 4,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 11123 - - 11124 - - 11125 - - 11126 - - 11127 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PillCanisterCharcoal - entities: - - uid: 11482 + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 16527 + - uid: 22865 components: - type: Transform - pos: 40.45637,2.450044 - parent: 2 -- proto: PillCanisterDermaline - entities: - - uid: 11483 + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 16527 + - uid: 22866 components: - type: Transform - pos: 40.378246,2.465669 - parent: 2 -- proto: PillCanisterPotassiumIodide - entities: - - uid: 11484 + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 16527 + - uid: 22867 components: - type: Transform - pos: 40.159496,2.434419 - parent: 2 -- proto: PillCanisterTricordrazine - entities: - - uid: 11128 + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 16527 + - uid: 22868 components: - type: Transform - parent: 11118 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11485 + rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 16527 + - uid: 22869 components: - type: Transform - pos: 40.76887,2.418794 - parent: 2 -- proto: PillSpaceDrugs - entities: - - uid: 11123 + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 16527 + - uid: 22870 components: - type: Transform - parent: 11122 - - type: Physics - canCollide: False - - uid: 11124 + rot: 1.5707963267948966 rad + pos: 4.5,16.5 + parent: 16527 + - uid: 22871 components: - type: Transform - parent: 11122 - - type: Physics - canCollide: False - - uid: 11125 + rot: 1.5707963267948966 rad + pos: 5.5,16.5 + parent: 16527 + - uid: 22872 components: - type: Transform - parent: 11122 - - type: Physics - canCollide: False - - uid: 11126 + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 16527 + - uid: 22873 components: - type: Transform - parent: 11122 - - type: Physics - canCollide: False - - uid: 11127 + rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 16527 + - uid: 22874 components: - type: Transform - parent: 11122 - - type: Physics - canCollide: False -- proto: PinpointerNuclear - entities: - - uid: 11486 + rot: 1.5707963267948966 rad + pos: 13.5,16.5 + parent: 16527 + - uid: 22875 components: - type: Transform - pos: 7.4835777,28.442411 - parent: 2 -- proto: PlaqueAtmos - entities: - - uid: 11487 + rot: 1.5707963267948966 rad + pos: 12.5,16.5 + parent: 16527 + - uid: 22876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,75.5 - parent: 2 -- proto: PlasmaCanister - entities: - - uid: 11488 + rot: 1.5707963267948966 rad + pos: 11.5,16.5 + parent: 16527 + - uid: 22877 components: - type: Transform - pos: 43.5,78.5 - parent: 2 - - uid: 11489 + rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 16527 + - uid: 22878 components: - type: Transform - pos: 49.5,89.5 - parent: 2 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 11492 + rot: 1.5707963267948966 rad + pos: 9.5,16.5 + parent: 16527 + - uid: 22879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-14.5 - parent: 2 - - uid: 11499 + pos: 8.5,17.5 + parent: 16527 + - uid: 22880 components: - type: Transform - pos: 56.5,-1.5 - parent: 2 - - uid: 11500 + pos: 8.5,18.5 + parent: 16527 + - uid: 22881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 2 - - uid: 11501 + pos: 8.5,19.5 + parent: 16527 + - uid: 22882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 2 - - uid: 11517 + pos: 8.5,20.5 + parent: 16527 + - uid: 22883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-16.5 - parent: 2 - - uid: 11519 + pos: 8.5,21.5 + parent: 16527 + - uid: 22884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,7.5 - parent: 2 - - uid: 11520 + pos: 8.5,22.5 + parent: 16527 + - uid: 22885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,7.5 - parent: 2 - - uid: 14689 + pos: 8.5,23.5 + parent: 16527 + - uid: 22886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,41.5 - parent: 16504 - - uid: 19511 + pos: 8.5,24.5 + parent: 16527 + - uid: 22887 components: - type: Transform - pos: 8.5,36.5 - parent: 16504 - - uid: 22102 + pos: 8.5,25.5 + parent: 16527 + - uid: 22888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,42.5 - parent: 16504 - - uid: 22105 + pos: 8.5,26.5 + parent: 16527 + - uid: 22889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,43.5 - parent: 16504 - - uid: 22106 + pos: 8.5,27.5 + parent: 16527 + - uid: 22890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,43.5 - parent: 16504 - - uid: 22107 + pos: 8.5,28.5 + parent: 16527 + - uid: 22891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,43.5 - parent: 16504 - - uid: 22141 + pos: 8.5,29.5 + parent: 16527 + - uid: 22892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,42.5 - parent: 16504 - - uid: 22142 + pos: 8.5,30.5 + parent: 16527 + - uid: 22893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,41.5 - parent: 16504 -- proto: PlasmaTankFilled - entities: - - uid: 11521 + pos: 8.5,31.5 + parent: 16527 + - uid: 22894 components: - type: Transform - pos: 53.79378,72.209946 - parent: 2 - - uid: 11522 + pos: 8.5,32.5 + parent: 16527 + - uid: 22895 components: - type: Transform - pos: 53.653156,72.459946 - parent: 2 -- proto: PlasmaWindoorSecureCommandLocked - entities: - - uid: 11523 + pos: -6.5,39.5 + parent: 16527 + - uid: 22896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,19.5 - parent: 2 -- proto: PlasmaWindoorSecureEngineeringLocked - entities: - - uid: 11524 + pos: -6.5,38.5 + parent: 16527 + - uid: 22897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,78.5 - parent: 2 - - uid: 11525 + pos: -6.5,37.5 + parent: 16527 + - uid: 22898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,77.5 - parent: 2 -- proto: PlasmaWindoorSecureSecurityLocked - entities: - - uid: 11526 + rot: -1.5707963267948966 rad + pos: -7.5,36.5 + parent: 16527 + - uid: 22899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,7.5 - parent: 2 - - uid: 11527 + rot: -1.5707963267948966 rad + pos: -8.5,36.5 + parent: 16527 + - uid: 22900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,7.5 - parent: 2 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 11528 + rot: -1.5707963267948966 rad + pos: -9.5,36.5 + parent: 16527 + - uid: 22901 components: - type: Transform - pos: 47.5,54.5 - parent: 2 - - uid: 11529 + pos: -10.5,35.5 + parent: 16527 + - uid: 22902 components: - type: Transform - pos: 0.5,9.5 - parent: 2 - - uid: 11530 + rot: -1.5707963267948966 rad + pos: 8.5,41.5 + parent: 16527 + - uid: 22903 components: - type: Transform - pos: 0.5,5.5 - parent: 2 - - uid: 11531 + rot: -1.5707963267948966 rad + pos: 6.5,41.5 + parent: 16527 + - uid: 22904 components: - type: Transform - pos: -1.5,5.5 - parent: 2 - - uid: 11532 + rot: -1.5707963267948966 rad + pos: 5.5,41.5 + parent: 16527 + - uid: 22905 components: - type: Transform - pos: -1.5,9.5 - parent: 2 - - uid: 11533 + rot: -1.5707963267948966 rad + pos: 4.5,41.5 + parent: 16527 + - uid: 22906 components: - type: Transform - pos: -1.5,23.5 - parent: 2 - - uid: 19522 + rot: -1.5707963267948966 rad + pos: 3.5,41.5 + parent: 16527 + - uid: 22907 components: - type: Transform - pos: -21.5,13.5 - parent: 16504 -- proto: PlasticFlapsClear - entities: - - uid: 19523 + rot: 1.5707963267948966 rad + pos: 1.5,41.5 + parent: 16527 + - uid: 22908 components: - type: Transform - pos: -19.5,9.5 - parent: 16504 - - uid: 19524 + pos: 2.5,42.5 + parent: 16527 + - uid: 22909 + components: + - type: Transform + pos: 2.5,43.5 + parent: 16527 + - uid: 22910 + components: + - type: Transform + pos: -0.5,41.5 + parent: 16527 + - uid: 22911 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,7.5 - parent: 16504 - - uid: 19525 + pos: -1.5,40.5 + parent: 16527 + - uid: 22912 components: - type: Transform - pos: -15.5,12.5 - parent: 16504 - - uid: 19526 + rot: -1.5707963267948966 rad + pos: -2.5,40.5 + parent: 16527 + - uid: 22913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,11.5 - parent: 16504 -- proto: PlayerStationAi - entities: - - uid: 5842 + rot: -1.5707963267948966 rad + pos: -3.5,40.5 + parent: 16527 + - uid: 22914 components: - type: Transform - pos: 22.5,-37.5 - parent: 2 -- proto: PlushieCarp - entities: - - uid: 11535 + rot: -1.5707963267948966 rad + pos: -4.5,40.5 + parent: 16527 + - uid: 22915 components: - - type: MetaData - name: TiFeRi - type: Transform - pos: 24.362953,33.14735 - parent: 2 - - uid: 11536 + rot: 3.141592653589793 rad + pos: -5.5,40.5 + parent: 16527 + - uid: 22916 components: - type: Transform - pos: 14.074409,-16.219566 - parent: 2 -- proto: PlushieGhost - entities: - - uid: 22393 + rot: 3.141592653589793 rad + pos: -5.5,39.5 + parent: 16527 + - uid: 22917 components: - - type: MetaData - name: wejf - type: Transform - pos: 26.558538,34.536873 - parent: 2 -- proto: PlushieHampter - entities: - - uid: 11537 + rot: 3.141592653589793 rad + pos: -5.5,38.5 + parent: 16527 + - uid: 22918 components: - - type: MetaData - desc: Милый маленький дружок, от него пахнет дымом. Его мордочка выглядит приплюснутой. - name: плюшевый SatuSmoke - type: Transform - pos: 24.613087,34.399574 - parent: 2 -- proto: PlushieHuman - entities: - - uid: 11538 + rot: 3.141592653589793 rad + pos: -5.5,37.5 + parent: 16527 + - uid: 22919 components: - type: Transform - pos: 66.54487,9.698081 - parent: 2 -- proto: PlushieLamp - entities: - - uid: 6401 + rot: 3.141592653589793 rad + pos: -5.5,36.5 + parent: 16527 + - uid: 22920 components: - type: Transform - parent: 6399 - - type: Physics - canCollide: False - - uid: 11539 + rot: 3.141592653589793 rad + pos: -5.5,35.5 + parent: 16527 + - uid: 22921 components: - - type: MetaData - name: ktlnkrnl - type: Transform - pos: 25.603819,34.057175 - parent: 2 -- proto: PlushieLizard - entities: - - uid: 11540 + rot: 1.5707963267948966 rad + pos: -4.5,34.5 + parent: 16527 + - uid: 22922 components: - type: Transform - pos: 8.706432,27.696259 - parent: 2 -- proto: PlushieLizardMirrored - entities: - - uid: 11541 + rot: 1.5707963267948966 rad + pos: -3.5,34.5 + parent: 16527 + - uid: 22923 components: - type: Transform - pos: 65.29487,5.573081 - parent: 2 -- proto: PlushieMoth - entities: - - uid: 11542 + rot: 1.5707963267948966 rad + pos: -2.5,34.5 + parent: 16527 + - uid: 22924 components: - - type: MetaData - name: nekosich - type: Transform - pos: 22.697569,33.432175 - parent: 2 - - uid: 16297 + rot: 1.5707963267948966 rad + pos: -1.5,34.5 + parent: 16527 + - uid: 22925 components: - - type: MetaData - desc: Сделал совместно с Zrot ядро ии :3 - name: Плюшевый OneYa - type: Transform - pos: 30.5,-38.5 - parent: 2 -- proto: PlushieNar - entities: - - uid: 6402 + rot: 1.5707963267948966 rad + pos: -0.5,34.5 + parent: 16527 + - uid: 22926 components: - type: Transform - parent: 6399 - - type: Physics - canCollide: False - - uid: 11543 + rot: 1.5707963267948966 rad + pos: 0.5,34.5 + parent: 16527 + - uid: 22927 components: - type: Transform - pos: 5.4830356,38.666862 - parent: 2 - - uid: 11544 + rot: 1.5707963267948966 rad + pos: 2.5,33.5 + parent: 16527 + - uid: 22928 components: - type: Transform - pos: 26.468388,57.51086 - parent: 2 - - uid: 11545 + rot: 1.5707963267948966 rad + pos: 3.5,33.5 + parent: 16527 + - uid: 22929 components: - type: Transform - pos: 80.44124,27.42845 - parent: 2 -- proto: PlushiePenguin - entities: - - uid: 10836 + rot: 1.5707963267948966 rad + pos: 4.5,33.5 + parent: 16527 + - uid: 22930 components: - - type: MetaData - name: mofkkol - type: Transform - pos: 26.140245,33.71122 - parent: 2 -- proto: PlushieRGBee - entities: - - uid: 6403 + rot: 1.5707963267948966 rad + pos: 5.5,33.5 + parent: 16527 + - uid: 22931 components: - type: Transform - parent: 6399 - - type: Physics - canCollide: False -- proto: PlushieSharkBlue - entities: - - uid: 11546 + rot: 1.5707963267948966 rad + pos: 7.5,33.5 + parent: 16527 + - uid: 22932 components: - - type: MetaData - name: eugurt - type: Transform - pos: 82.32806,19.43744 - parent: 2 - - uid: 11547 + rot: 1.5707963267948966 rad + pos: -9.5,33.5 + parent: 16527 + - uid: 22933 components: - type: Transform - pos: 66.5,32.5 - parent: 2 - - uid: 11548 + rot: 1.5707963267948966 rad + pos: -10.5,33.5 + parent: 16527 + - uid: 22934 components: - type: Transform - pos: 81.65615,19.64192 - parent: 2 -- proto: PlushieSharkPink - entities: - - uid: 11549 + rot: 3.141592653589793 rad + pos: -12.5,30.5 + parent: 16527 + - uid: 22935 components: - type: Transform - pos: 81.65615,15.435493 - parent: 2 - - uid: 11550 + rot: 3.141592653589793 rad + pos: -12.5,31.5 + parent: 16527 + - uid: 22936 components: - type: Transform - pos: 82.34267,15.274831 - parent: 2 - - uid: 19527 + rot: 1.5707963267948966 rad + pos: -15.5,33.5 + parent: 16527 + - uid: 22937 components: - type: Transform - pos: 9.554718,3.5810502 - parent: 16504 - - uid: 21878 + rot: 1.5707963267948966 rad + pos: -13.5,33.5 + parent: 16527 + - uid: 22938 components: - type: Transform - pos: 24.708048,48.448303 - parent: 2 -- proto: PlushieSlime - entities: - - uid: 22392 + pos: -11.5,35.5 + parent: 16527 + - uid: 22939 components: - - type: MetaData - name: meowstushka - type: Transform - pos: 24.433538,32.505623 - parent: 2 -- proto: PlushieVox - entities: - - uid: 3877 + rot: 3.141592653589793 rad + pos: -17.5,35.5 + parent: 16527 + - uid: 22940 components: - type: Transform - pos: 14.563574,41.616543 - parent: 2 - - uid: 21333 + rot: 3.141592653589793 rad + pos: -15.5,36.5 + parent: 16527 + - uid: 22941 components: - type: Transform - pos: 16.462917,41.616543 - parent: 2 -- proto: PlushieXeno - entities: - - uid: 11552 + pos: 6.5,49.5 + parent: 16527 + - uid: 22942 components: - type: Transform - pos: 27.66602,-6.6073027 - parent: 2 -- proto: PonderingOrb - entities: - - uid: 21310 + pos: 6.5,48.5 + parent: 16527 + - uid: 22943 components: - type: Transform - pos: 16.036068,49.20714 - parent: 2 -- proto: PortableFlasher - entities: - - uid: 11553 + pos: 6.5,47.5 + parent: 16527 + - uid: 22944 components: - type: Transform - pos: 56.5,31.5 - parent: 2 - - uid: 11554 + pos: 6.5,46.5 + parent: 16527 + - uid: 22945 components: - type: Transform - pos: 55.5,31.5 - parent: 2 - - uid: 11555 + pos: 6.5,45.5 + parent: 16527 + - uid: 22946 components: - type: Transform - pos: 55.5,32.5 - parent: 2 - - uid: 11556 + pos: 6.5,44.5 + parent: 16527 + - uid: 22947 components: - type: Transform - pos: 56.5,32.5 - parent: 2 -- proto: PortableGeneratorJrPacman - entities: - - uid: 11557 + pos: 6.5,43.5 + parent: 16527 + - uid: 22948 components: - type: Transform - pos: 48.5,41.5 - parent: 2 - - uid: 11558 + pos: 6.5,42.5 + parent: 16527 + - uid: 22949 components: - type: Transform - pos: 48.5,66.5 - parent: 2 - - uid: 11559 + pos: 6.5,41.5 + parent: 16527 + - uid: 22950 components: - type: Transform - pos: 43.5,84.5 - parent: 2 - - uid: 11561 + pos: 6.5,40.5 + parent: 16527 + - uid: 22951 components: - type: Transform - pos: 27.5,67.5 - parent: 2 - - uid: 11562 + pos: 6.5,39.5 + parent: 16527 + - uid: 22952 components: - type: Transform - pos: 60.5,18.5 - parent: 2 - - uid: 11563 + pos: 6.5,38.5 + parent: 16527 + - uid: 22953 components: - type: Transform - pos: 56.5,64.5 - parent: 2 - - uid: 11564 + pos: 6.5,37.5 + parent: 16527 + - uid: 22954 components: - type: Transform - pos: 16.5,2.5 - parent: 2 - - uid: 11565 + pos: 6.5,36.5 + parent: 16527 + - uid: 22955 components: - type: Transform - pos: 16.5,63.5 - parent: 2 - - uid: 11566 + pos: 6.5,35.5 + parent: 16527 + - uid: 22956 components: - type: Transform - pos: 67.5,1.5 - parent: 2 - - uid: 11567 + pos: 6.5,34.5 + parent: 16527 + - uid: 22957 components: - type: Transform - pos: 60.5,-5.5 - parent: 2 - - uid: 11568 + rot: 1.5707963267948966 rad + pos: 0.5,46.5 + parent: 16527 + - uid: 22958 components: - type: Transform - pos: 70.5,8.5 - parent: 2 - - uid: 11569 + pos: -0.5,45.5 + parent: 16527 + - uid: 22959 components: - type: Transform - pos: 9.5,-7.5 - parent: 2 - - uid: 11570 + pos: -0.5,44.5 + parent: 16527 + - uid: 22960 components: - type: Transform - pos: 5.5,17.5 - parent: 2 - - uid: 11571 + pos: -0.5,43.5 + parent: 16527 + - uid: 22961 components: - type: Transform - pos: 56.5,71.5 - parent: 2 -- proto: PortableGeneratorPacman - entities: - - uid: 11572 + pos: -0.5,42.5 + parent: 16527 + - uid: 22962 components: - type: Transform - pos: 9.5,-13.5 - parent: 2 - - uid: 11573 + pos: 0.5,38.5 + parent: 16527 + - uid: 22963 components: - type: Transform - pos: 63.5,0.5 - parent: 2 - - uid: 11574 + pos: 0.5,39.5 + parent: 16527 + - uid: 22964 components: - type: Transform - pos: 52.5,61.5 + rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 16527 +- proto: GasPipeTJunction + entities: + - uid: 2378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,41.5 parent: 2 - - uid: 11575 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3164 components: - type: Transform - pos: 61.5,6.5 + rot: -1.5707963267948966 rad + pos: 19.5,47.5 parent: 2 - - uid: 11577 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4245 components: - type: Transform - pos: 61.5,18.5 + rot: -1.5707963267948966 rad + pos: 28.5,46.5 parent: 2 - - uid: 11578 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 4247 components: - type: Transform - pos: 50.5,-14.5 + rot: -1.5707963267948966 rad + pos: 19.5,46.5 parent: 2 - - uid: 19528 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4350 components: - type: Transform - pos: -23.5,25.5 - parent: 16504 -- proto: PortableGeneratorSuperPacman - entities: - - uid: 5110 + rot: 1.5707963267948966 rad + pos: 27.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4368 components: - type: Transform - pos: 26.5,-17.5 + pos: 27.5,49.5 parent: 2 - - uid: 11580 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4388 components: - type: Transform - pos: 63.5,34.5 + rot: 1.5707963267948966 rad + pos: 32.5,46.5 parent: 2 - - uid: 11581 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 5885 components: - type: Transform - pos: 69.5,4.5 + rot: 3.141592653589793 rad + pos: 38.5,43.5 parent: 2 - - uid: 11582 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 5933 components: - type: Transform - pos: 52.5,62.5 + rot: 3.141592653589793 rad + pos: 36.5,47.5 parent: 2 -- proto: PortableScrubber - entities: - - uid: 11583 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7554 components: - type: Transform - pos: 56.5,50.5 + pos: 18.5,48.5 parent: 2 - - uid: 11584 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7571 components: - type: Transform - pos: 55.5,50.5 + rot: 3.141592653589793 rad + pos: 28.5,36.5 parent: 2 -- proto: PosterBroken - entities: - - uid: 11585 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8084 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,42.5 + pos: 27.5,37.5 parent: 2 - - uid: 11586 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9358 components: - type: Transform - pos: 58.5,35.5 + rot: -1.5707963267948966 rad + pos: 40.5,51.5 parent: 2 - - uid: 19529 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9703 components: - type: Transform - pos: -2.5,4.5 - parent: 16504 -- proto: PosterContrabandAmbrosiaVulgaris - entities: - - uid: 94 + rot: 3.141592653589793 rad + pos: 42.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9704 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,49.5 + pos: 48.5,-0.5 parent: 2 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 11588 + - uid: 9705 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-11.5 + pos: 50.5,3.5 parent: 2 -- proto: PosterContrabandBorgFancyv2 - entities: - - uid: 11589 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9706 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,60.5 + pos: 41.5,3.5 parent: 2 -- proto: PosterContrabandBustyBackdoorExoBabes6 - entities: - - uid: 11590 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-5.5 + pos: 43.5,23.5 parent: 2 - - uid: 21262 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9710 components: - type: Transform - pos: 30.5,41.5 + rot: 1.5707963267948966 rad + pos: 47.5,56.5 parent: 2 -- proto: PosterContrabandC20r - entities: - - uid: 19530 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9711 components: - type: Transform - pos: 3.5,-0.5 - parent: 16504 -- proto: PosterContrabandClown - entities: - - uid: 13816 + rot: 1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9712 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,51.5 + pos: 45.5,-4.5 parent: 2 -- proto: PosterContrabandCybersun600 - entities: - - uid: 11591 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-15.5 + rot: 1.5707963267948966 rad + pos: 44.5,-5.5 parent: 2 - - uid: 19531 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9714 components: - type: Transform - pos: -0.5,-4.5 - parent: 16504 -- proto: PosterContrabandDonk - entities: - - uid: 11592 + rot: -1.5707963267948966 rad + pos: 47.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,49.5 + rot: 3.141592653589793 rad + pos: 38.5,71.5 parent: 2 -- proto: PosterContrabandDonutCorp - entities: - - uid: 11593 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9718 components: - type: Transform - pos: 31.5,-20.5 + rot: 3.141592653589793 rad + pos: 32.5,36.5 parent: 2 -- proto: PosterContrabandFreeDrone - entities: - - uid: 11594 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-12.5 + rot: -1.5707963267948966 rad + pos: 13.5,29.5 parent: 2 -- proto: PosterContrabandGreyTide - entities: - - uid: 11595 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9720 components: - type: Transform - pos: 24.5,60.5 + pos: 31.5,37.5 parent: 2 - - uid: 11596 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9721 components: - type: Transform - pos: 33.5,-12.5 + rot: 3.141592653589793 rad + pos: 36.5,3.5 parent: 2 - - uid: 11597 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9722 components: - type: Transform - pos: 34.5,-12.5 + pos: 48.5,70.5 parent: 2 -- proto: PosterContrabandHackingGuide - entities: - - uid: 11598 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9723 components: - type: Transform - pos: 64.5,39.5 + rot: -1.5707963267948966 rad + pos: 48.5,64.5 parent: 2 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 11599 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9724 components: - type: Transform - pos: 46.5,67.5 + pos: 48.5,24.5 parent: 2 -- proto: PosterContrabandLustyExomorph - entities: - - uid: 11600 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9725 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-9.5 + rot: 1.5707963267948966 rad + pos: 12.5,30.5 parent: 2 - - uid: 19532 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,25.5 - parent: 16504 - - uid: 21426 + pos: 39.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9727 components: - type: Transform - pos: 34.5,43.5 + pos: 42.5,22.5 parent: 2 -- proto: PosterContrabandMaskedMen - entities: - - uid: 11601 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-8.5 + pos: 48.5,-4.5 parent: 2 -- proto: PosterContrabandMissingGloves - entities: - - uid: 11602 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-6.5 + rot: -1.5707963267948966 rad + pos: 48.5,-6.5 parent: 2 -- proto: PosterContrabandMoth - entities: - - uid: 11603 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9730 components: - type: Transform - pos: 27.5,-18.5 + pos: 51.5,24.5 parent: 2 -- proto: PosterContrabandPower - entities: - - uid: 11604 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,68.5 + rot: 1.5707963267948966 rad + pos: 47.5,52.5 parent: 2 -- proto: PosterContrabandPunchShit - entities: - - uid: 13466 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9732 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-16.5 + pos: 46.5,78.5 parent: 2 -- proto: PosterContrabandRebelsUnite - entities: - - uid: 11606 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 + rot: -1.5707963267948966 rad + pos: 46.5,27.5 parent: 2 -- proto: PosterContrabandRIPBadger - entities: - - uid: 11607 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9734 components: - type: Transform - pos: 19.5,56.5 + rot: -1.5707963267948966 rad + pos: 40.5,-3.5 parent: 2 -- proto: PosterContrabandRise - entities: - - uid: 11608 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9735 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,19.5 + pos: 38.5,3.5 parent: 2 -- proto: PosterContrabandSpaceCola - entities: - - uid: 11609 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,11.5 + pos: 37.5,3.5 parent: 2 -- proto: PosterContrabandSyndicatePistol - entities: - - uid: 19533 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9737 components: - type: Transform - pos: -2.5,-0.5 - parent: 16504 -- proto: PosterContrabandSyndicateRecruitment - entities: - - uid: 11610 + pos: 45.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9738 components: - type: Transform - pos: 84.5,22.5 + pos: 42.5,4.5 parent: 2 - - uid: 11611 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9739 components: - type: Transform - pos: 54.5,34.5 + rot: -1.5707963267948966 rad + pos: 40.5,-1.5 parent: 2 -- proto: PosterContrabandTools - entities: - - uid: 11613 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9740 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,40.5 + pos: 52.5,22.5 parent: 2 -- proto: PosterLegit12Gauge - entities: - - uid: 11614 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9741 components: - type: Transform - pos: 64.5,38.5 + rot: -1.5707963267948966 rad + pos: 57.5,24.5 parent: 2 -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 11615 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-5.5 + pos: 56.5,24.5 parent: 2 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 11616 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9743 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-9.5 + pos: 53.5,24.5 parent: 2 -- proto: PosterLegitBlessThisSpess - entities: - - uid: 11617 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9744 components: - type: Transform rot: -1.5707963267948966 rad - pos: 84.5,32.5 + pos: 45.5,28.5 parent: 2 -- proto: PosterLegitCarpMount - entities: - - uid: 11618 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9745 components: - type: Transform - pos: 15.5,-16.5 + rot: 3.141592653589793 rad + pos: 54.5,22.5 parent: 2 - - uid: 11619 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9746 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,58.5 + pos: 45.5,22.5 parent: 2 -- proto: PosterLegitIan - entities: - - uid: 11620 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9747 components: - type: Transform - pos: 20.5,18.5 + rot: 3.141592653589793 rad + pos: 47.5,22.5 parent: 2 -- proto: PosterLegitIonRifle - entities: - - uid: 11621 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,29.5 + rot: 1.5707963267948966 rad + pos: 37.5,-2.5 parent: 2 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 11622 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9749 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,11.5 + pos: 43.5,69.5 parent: 2 - - uid: 11623 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9750 components: - type: Transform - pos: 84.5,46.5 + rot: 3.141592653589793 rad + pos: 48.5,53.5 parent: 2 - - uid: 11624 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,58.5 + rot: -1.5707963267948966 rad + pos: 47.5,77.5 parent: 2 - - uid: 11625 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9752 components: - type: Transform rot: 3.141592653589793 rad - pos: 84.5,62.5 + pos: 44.5,70.5 parent: 2 - - uid: 11626 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9753 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,46.5 + pos: 66.5,57.5 parent: 2 -- proto: PosterLegitObey - entities: - - uid: 11627 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9754 components: - type: Transform - pos: 16.5,19.5 + rot: 1.5707963267948966 rad + pos: 65.5,55.5 parent: 2 - - uid: 11628 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9755 components: - type: Transform - pos: 5.5,23.5 + pos: 6.5,8.5 parent: 2 -- proto: PosterLegitPDAAd - entities: - - uid: 11629 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9756 components: - type: Transform - pos: 16.5,18.5 + rot: -1.5707963267948966 rad + pos: 9.5,8.5 parent: 2 -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 11630 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9757 components: - type: Transform - pos: 50.5,58.5 + pos: 26.5,25.5 parent: 2 -- proto: PosterLegitSafetyInternals - entities: - - uid: 11631 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,73.5 + pos: 20.5,25.5 parent: 2 -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 11632 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9759 components: - type: Transform - pos: 19.5,2.5 + pos: 28.5,26.5 parent: 2 -- proto: PosterLegitSpaceCops - entities: - - uid: 11633 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9760 components: - type: Transform - pos: 69.5,5.5 + pos: 19.5,26.5 parent: 2 - - uid: 11634 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9761 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,32.5 + pos: 21.5,-2.5 parent: 2 -- proto: PosterLegitThereIsNoGasGiant - entities: - - uid: 11636 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-2.5 + rot: 1.5707963267948966 rad + pos: 21.5,-0.5 parent: 2 -- proto: PottedPlant0 - entities: - - uid: 19534 - components: - - type: Transform - pos: 4.5,0.5 - parent: 16504 - - uid: 19535 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9766 components: - type: Transform - pos: -11.5,4.5 - parent: 16504 -- proto: PottedPlant10 - entities: - - uid: 19536 + rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9767 components: - type: Transform - pos: 2.5,-7.5 - parent: 16504 -- proto: PottedPlant11 - entities: - - uid: 11638 + pos: 21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9768 components: - type: Transform - pos: 24.5,25.5 + pos: 51.5,4.5 parent: 2 - - uid: 11639 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9769 components: - type: Transform - pos: 68.5,57.5 + rot: 3.141592653589793 rad + pos: 36.5,5.5 parent: 2 - - uid: 19537 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9770 components: - type: Transform - pos: -9.5,2.5 - parent: 16504 - - uid: 21500 + rot: -1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9771 components: - type: Transform - pos: 15.5,43.5 + rot: -1.5707963267948966 rad + pos: 37.5,5.5 parent: 2 -- proto: PottedPlant14 - entities: - - uid: 21875 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9772 components: - type: Transform - pos: 28.5,42.5 + pos: 23.5,0.5 parent: 2 -- proto: PottedPlant15 - entities: - - uid: 11640 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9773 components: - type: Transform - pos: 15.5,22.5 + rot: 1.5707963267948966 rad + pos: 46.5,33.5 parent: 2 - - uid: 11642 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9774 components: - type: Transform - pos: 66.5,64.5 + pos: 54.5,52.5 parent: 2 - - uid: 19538 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 16504 -- proto: PottedPlant16 - entities: - - uid: 11643 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9775 components: - type: Transform - pos: 47.5,43.5 + rot: -1.5707963267948966 rad + pos: 36.5,41.5 parent: 2 - - uid: 19539 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 16504 -- proto: PottedPlant18 - entities: - - uid: 19540 - components: - - type: Transform - pos: 16.5,4.5 - parent: 16504 -- proto: PottedPlant21 - entities: - - uid: 21497 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9776 components: - type: Transform - pos: 25.5,50.3 + rot: 3.141592653589793 rad + pos: 15.5,37.5 parent: 2 -- proto: PottedPlant26 - entities: - - uid: 19541 - components: - - type: Transform - pos: 7.5,6.5 - parent: 16504 -- proto: PottedPlant3 - entities: - - uid: 21876 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9777 components: - type: Transform - pos: 20.5,43.5 + rot: -1.5707963267948966 rad + pos: 13.5,24.5 parent: 2 -- proto: PottedPlantAlt0 - entities: - - uid: 19542 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 16504 -- proto: PottedPlantAlt2 - entities: - - uid: 19543 - components: - - type: Transform - pos: -17.5,2.5 - parent: 16504 -- proto: PottedPlantAlt3 - entities: - - uid: 19544 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 16504 -- proto: PottedPlantAlt5 - entities: - - uid: 11644 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9778 components: - type: Transform - pos: 7.5,37.5 + rot: 3.141592653589793 rad + pos: 7.5,32.5 parent: 2 -- proto: PottedPlantBioluminscent - entities: - - uid: 11645 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9779 components: - type: Transform - pos: 81.5,66.5 + rot: -1.5707963267948966 rad + pos: 46.5,49.5 parent: 2 - - uid: 11646 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9780 components: - type: Transform - pos: 71.5,66.5 + pos: 49.5,4.5 parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 918 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9781 components: - type: Transform - pos: 43.5,-0.5 + rot: 3.141592653589793 rad + pos: 46.5,4.5 parent: 2 - - uid: 7748 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9782 components: - type: Transform - pos: 45.5,66.5 + rot: -1.5707963267948966 rad + pos: 36.5,25.5 parent: 2 - - uid: 11647 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9783 components: - type: Transform - pos: 45.5,81.5 + rot: 3.141592653589793 rad + pos: 18.5,36.5 parent: 2 - - uid: 11648 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9784 components: - type: Transform - pos: 43.5,-2.5 + rot: -1.5707963267948966 rad + pos: 12.5,23.5 parent: 2 - - uid: 11649 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9785 components: - type: Transform - pos: 52.5,17.5 + pos: 46.5,35.5 parent: 2 - - uid: 11650 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9786 components: - type: Transform - pos: 46.5,68.5 + rot: 1.5707963267948966 rad + pos: 46.5,24.5 parent: 2 - - uid: 11651 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9787 components: - type: Transform - pos: 54.5,28.5 + rot: 3.141592653589793 rad + pos: 32.5,71.5 parent: 2 - - uid: 11652 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 9788 components: - type: Transform - pos: 29.5,27.5 + rot: 3.141592653589793 rad + pos: 16.5,37.5 parent: 2 - - uid: 11653 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9789 components: - type: Transform - pos: 15.5,24.5 + rot: -1.5707963267948966 rad + pos: 45.5,34.5 parent: 2 - - uid: 11654 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9790 components: - type: Transform - pos: 33.5,24.5 + rot: -1.5707963267948966 rad + pos: 12.5,21.5 parent: 2 - - uid: 11655 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9791 components: - type: Transform - pos: 4.5,1.5 + pos: 29.5,13.5 parent: 2 - - uid: 11656 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9792 components: - type: Transform - pos: 43.5,32.5 + rot: 1.5707963267948966 rad + pos: 36.5,28.5 parent: 2 - - uid: 11657 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9793 components: - type: Transform - pos: 39.5,34.5 + rot: 1.5707963267948966 rad + pos: 71.5,30.5 parent: 2 - - uid: 11658 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9794 components: - type: Transform - pos: 60.5,49.5 + rot: -1.5707963267948966 rad + pos: 71.5,40.5 parent: 2 - - uid: 11659 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9795 components: - type: Transform - pos: 30.5,24.5 + rot: 1.5707963267948966 rad + pos: 71.5,46.5 parent: 2 - - uid: 11660 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9796 components: - type: Transform - pos: 19.5,27.5 + rot: 3.141592653589793 rad + pos: 65.5,53.5 parent: 2 - - uid: 11661 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9797 components: - type: Transform - pos: 64.5,57.5 + pos: 82.5,59.5 parent: 2 - - uid: 11662 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9798 components: - type: Transform - pos: 62.5,64.5 + pos: 81.5,32.5 parent: 2 - - uid: 11663 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9799 components: - type: Transform - pos: 42.5,70.5 + pos: 21.5,25.5 parent: 2 - - uid: 11664 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9800 components: - type: Transform - pos: 37.5,-11.5 + rot: -1.5707963267948966 rad + pos: 26.5,21.5 parent: 2 - - uid: 11665 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9801 components: - type: Transform - pos: 41.5,-8.5 + rot: 3.141592653589793 rad + pos: 27.5,26.5 parent: 2 - - uid: 11668 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9802 components: - type: Transform - pos: 24.5,0.5 + pos: 41.5,27.5 parent: 2 - - uid: 11669 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9803 components: - type: Transform - pos: 21.5,-16.5 + rot: 1.5707963267948966 rad + pos: 45.5,32.5 parent: 2 - - uid: 11670 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9804 components: - type: Transform - pos: 21.5,-14.5 + pos: 75.5,16.5 parent: 2 - - uid: 11671 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9805 components: - type: Transform - pos: 24.5,-23.5 + rot: 3.141592653589793 rad + pos: 75.5,17.5 parent: 2 - - uid: 11672 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9806 components: - type: Transform - pos: 24.5,-21.5 + rot: 3.141592653589793 rad + pos: 8.5,33.5 parent: 2 - - uid: 11675 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9807 components: - type: Transform - pos: 48.5,76.5 + rot: 3.141592653589793 rad + pos: 76.5,37.5 parent: 2 - - uid: 11676 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9808 components: - type: Transform - pos: 65.5,8.5 + pos: 67.5,52.5 parent: 2 - - uid: 11677 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9809 components: - type: Transform - pos: 38.5,-1.5 + pos: 79.5,38.5 parent: 2 - - uid: 19545 - components: - - type: Transform - pos: 26.5,12.5 - parent: 16504 - - uid: 19546 - components: - - type: Transform - pos: 26.5,20.5 - parent: 16504 - - uid: 19547 - components: - - type: Transform - pos: 31.5,20.5 - parent: 16504 - - uid: 19548 - components: - - type: Transform - pos: 31.5,12.5 - parent: 16504 -- proto: PottedPlantRandomPlastic - entities: - - uid: 11678 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9810 components: - type: Transform - pos: 38.5,69.5 + rot: 1.5707963267948966 rad + pos: 70.5,35.5 parent: 2 -- proto: PowerCellMicroreactor - entities: - - uid: 19550 - components: - - type: Transform - parent: 19549 - - type: BatterySelfRecharger - autoRechargeRate: 58 - - type: Physics - canCollide: False -- proto: PowerCellRecharger - entities: - - uid: 6628 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9811 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-41.5 + pos: 70.5,50.5 parent: 2 - - uid: 11679 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9812 components: - type: Transform - pos: 25.5,30.5 + rot: -1.5707963267948966 rad + pos: 36.5,19.5 parent: 2 - - uid: 11680 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9813 components: - type: Transform - pos: 27.5,-2.5 + pos: 43.5,13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11681 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9814 components: - type: Transform - pos: 47.5,8.5 + pos: 48.5,13.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11682 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9815 components: - type: Transform - pos: 62.5,24.5 + pos: 64.5,14.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11683 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9816 components: - type: Transform - pos: 17.5,57.5 + rot: 1.5707963267948966 rad + pos: 70.5,19.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11684 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9817 components: - type: Transform - pos: 52.5,49.5 + rot: 1.5707963267948966 rad + pos: 71.5,52.5 parent: 2 - - uid: 11685 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9818 components: - type: Transform - pos: 46.5,73.5 + rot: -1.5707963267948966 rad + pos: 65.5,61.5 parent: 2 - - uid: 11686 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9819 components: - type: Transform - pos: 62.5,57.5 + pos: 62.5,53.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11687 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9820 components: - type: Transform - pos: 57.5,-3.5 + rot: -1.5707963267948966 rad + pos: 27.5,9.5 parent: 2 - - uid: 11688 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9821 components: - type: Transform - pos: 66.5,37.5 + rot: 3.141592653589793 rad + pos: 9.5,32.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11689 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9822 components: - type: Transform - pos: 5.5,5.5 + rot: 3.141592653589793 rad + pos: 4.5,33.5 parent: 2 - - uid: 11690 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9823 components: - type: Transform - pos: 20.5,0.5 + rot: 3.141592653589793 rad + pos: 77.5,38.5 parent: 2 - - uid: 11691 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9824 components: - type: Transform - pos: 50.5,54.5 + pos: 27.5,25.5 parent: 2 - - uid: 11692 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9825 components: - type: Transform - pos: 43.5,62.5 + pos: 42.5,28.5 parent: 2 -- proto: PowerCellSmall - entities: - - uid: 19552 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9826 components: - type: Transform - parent: 19551 - - type: Physics - canCollide: False -- proto: PowerCellSmallPrinted - entities: - - uid: 3497 + rot: 1.5707963267948966 rad + pos: 70.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9827 components: - type: Transform - pos: 21.635872,-41.430046 + rot: 1.5707963267948966 rad + pos: 71.5,39.5 parent: 2 -- proto: PoweredLEDLightPostSmall - entities: - - uid: 11693 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9828 components: - type: Transform - pos: 61.5,79.5 + rot: -1.5707963267948966 rad + pos: 43.5,71.5 parent: 2 - - uid: 11695 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,18.5 + rot: 3.141592653589793 rad + pos: 42.5,72.5 parent: 2 - - uid: 13704 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9830 components: - type: Transform - pos: -6.5,24.5 + rot: 3.141592653589793 rad + pos: 82.5,30.5 parent: 2 - - uid: 21901 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9831 components: - type: Transform - pos: -10.5,21.5 + pos: 56.5,52.5 parent: 2 - - uid: 22518 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9832 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,17.5 + pos: 21.5,26.5 parent: 2 -- proto: Poweredlight - entities: - - uid: 3142 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,28.5 + rot: 3.141592653589793 rad + pos: 53.5,53.5 parent: 2 - - uid: 8104 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9834 components: - type: Transform - pos: 51.5,73.5 + pos: 57.5,53.5 parent: 2 - - uid: 11696 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,9.5 + rot: 3.141592653589793 rad + pos: 20.5,53.5 parent: 2 - - uid: 11697 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9836 components: - type: Transform - pos: 54.5,41.5 + pos: 44.5,14.5 parent: 2 - - uid: 11698 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9837 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,15.5 + pos: 47.5,14.5 parent: 2 - - uid: 11699 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,15.5 + pos: 65.5,13.5 parent: 2 - - uid: 11700 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9839 components: - type: Transform - pos: 80.5,19.5 + rot: 1.5707963267948966 rad + pos: 71.5,18.5 parent: 2 - - uid: 11701 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9840 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,85.5 + pos: 71.5,26.5 parent: 2 - - uid: 11702 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9841 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-3.5 + pos: 71.5,57.5 parent: 2 - - uid: 11703 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9842 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-1.5 + pos: 66.5,62.5 parent: 2 - - uid: 11704 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,0.5 + rot: -1.5707963267948966 rad + pos: 37.5,18.5 parent: 2 - - uid: 11705 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9844 + components: + - type: Transform + pos: 80.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-3.5 + pos: 12.5,32.5 parent: 2 - - uid: 11706 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9847 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,59.5 + rot: 1.5707963267948966 rad + pos: 12.5,25.5 parent: 2 - - uid: 11707 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9848 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,59.5 + pos: 18.5,54.5 parent: 2 - - uid: 11708 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,63.5 + pos: 14.5,13.5 parent: 2 - - uid: 11709 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9850 components: - type: Transform - pos: 71.5,66.5 + rot: 1.5707963267948966 rad + pos: 16.5,50.5 parent: 2 - - uid: 11710 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,78.5 + pos: 71.5,16.5 parent: 2 - - uid: 11711 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9853 components: - type: Transform - pos: 55.5,38.5 + rot: -1.5707963267948966 rad + pos: 71.5,53.5 parent: 2 - - uid: 11712 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,66.5 + rot: 1.5707963267948966 rad + pos: 80.5,59.5 parent: 2 - - uid: 11713 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9855 components: - type: Transform - pos: 15.5,6.5 + rot: 1.5707963267948966 rad + pos: 71.5,60.5 parent: 2 - - uid: 11714 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9856 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,0.5 + pos: 36.5,37.5 parent: 2 - - uid: 11715 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9857 components: - type: Transform - pos: 58.5,4.5 + pos: 28.5,4.5 parent: 2 - - uid: 11716 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9858 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-8.5 + pos: 36.5,13.5 parent: 2 - - uid: 11717 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9859 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-3.5 + pos: 71.5,37.5 parent: 2 - - uid: 11718 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-8.5 + rot: 3.141592653589793 rad + pos: 32.5,5.5 parent: 2 - - uid: 11719 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,16.5 + rot: -1.5707963267948966 rad + pos: 22.5,-15.5 parent: 2 - - uid: 11720 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9862 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,2.5 + pos: 23.5,-15.5 parent: 2 - - uid: 11721 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,9.5 + pos: 31.5,13.5 parent: 2 - - uid: 11722 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9864 components: - type: Transform - pos: 53.5,28.5 + rot: 1.5707963267948966 rad + pos: 37.5,27.5 parent: 2 - - uid: 11723 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9865 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,56.5 + pos: 70.5,17.5 parent: 2 - - uid: 11724 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,1.5 + rot: 1.5707963267948966 rad + pos: 70.5,32.5 parent: 2 - - uid: 11725 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,80.5 + rot: 1.5707963267948966 rad + pos: 70.5,45.5 parent: 2 - - uid: 11726 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9868 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,79.5 + pos: 70.5,49.5 parent: 2 - - uid: 11727 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 + rot: 3.141592653589793 rad + pos: 17.5,36.5 parent: 2 - - uid: 11728 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9870 components: - type: Transform - pos: 41.5,-6.5 + rot: -1.5707963267948966 rad + pos: 13.5,33.5 parent: 2 - - uid: 11729 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,26.5 + rot: 1.5707963267948966 rad + pos: 13.5,26.5 parent: 2 - - uid: 11730 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9872 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-5.5 + pos: 13.5,22.5 parent: 2 - - uid: 11731 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,64.5 + pos: 15.5,14.5 parent: 2 - - uid: 11732 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,60.5 + pos: 27.5,14.5 parent: 2 - - uid: 11733 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9875 components: - type: Transform - pos: 42.5,66.5 + rot: 3.141592653589793 rad + pos: 37.5,14.5 parent: 2 - - uid: 11735 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9876 components: - type: Transform - pos: 48.5,79.5 + rot: -1.5707963267948966 rad + pos: 37.5,36.5 parent: 2 - - uid: 11736 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 + rot: -1.5707963267948966 rad + pos: 70.5,52.5 parent: 2 - - uid: 11737 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9878 components: - type: Transform - pos: 24.5,-21.5 + rot: 3.141592653589793 rad + pos: 13.5,14.5 parent: 2 - - uid: 11738 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9879 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,20.5 + pos: 47.5,50.5 parent: 2 - - uid: 11739 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,11.5 + rot: -1.5707963267948966 rad + pos: 37.5,42.5 parent: 2 - - uid: 11740 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9881 components: - type: Transform - pos: 2.5,14.5 + rot: -1.5707963267948966 rad + pos: 13.5,15.5 parent: 2 - - uid: 11741 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9882 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,12.5 + pos: 30.5,14.5 parent: 2 - - uid: 11742 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9884 components: - type: Transform - pos: -0.5,9.5 + rot: -1.5707963267948966 rad + pos: 37.5,26.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11743 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9885 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,5.5 + pos: 29.5,4.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11744 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,8.5 + rot: 3.141592653589793 rad + pos: 27.5,5.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11745 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,0.5 + rot: -1.5707963267948966 rad + pos: 28.5,20.5 parent: 2 - - uid: 11746 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9888 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,3.5 + pos: 28.5,17.5 parent: 2 - - uid: 11747 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9889 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,6.5 + pos: 55.5,21.5 parent: 2 - - uid: 11748 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9890 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,8.5 + pos: 57.5,23.5 parent: 2 - - uid: 11750 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9891 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,24.5 + pos: 44.5,3.5 parent: 2 - - uid: 11751 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9893 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 2 - - uid: 11752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,1.5 + pos: 50.5,0.5 parent: 2 - - uid: 11753 + - uid: 9894 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,5.5 + pos: 43.5,17.5 parent: 2 - - uid: 11754 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9895 components: - type: Transform - pos: 8.5,16.5 + rot: 3.141592653589793 rad + pos: 47.5,3.5 parent: 2 - - uid: 11755 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,8.5 + pos: 44.5,-1.5 parent: 2 - - uid: 11756 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9897 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-4.5 - parent: 2 - - uid: 11757 - components: - - type: Transform - pos: 22.5,1.5 + pos: 56.5,27.5 parent: 2 - - uid: 11758 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-2.5 + pos: 55.5,22.5 parent: 2 - - uid: 11760 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9899 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,26.5 + pos: 58.5,27.5 parent: 2 - - uid: 11761 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9900 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,5.5 + pos: 47.5,69.5 parent: 2 - - uid: 11762 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9902 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,7.5 + pos: 37.5,-1.5 parent: 2 - - uid: 11763 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-10.5 + pos: 54.5,27.5 parent: 2 - - uid: 11764 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9904 components: - type: Transform - pos: 41.5,32.5 + pos: 57.5,30.5 parent: 2 - - uid: 11765 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,9.5 + pos: 58.5,31.5 parent: 2 - - uid: 11766 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,35.5 + rot: 1.5707963267948966 rad + pos: 48.5,55.5 parent: 2 - - uid: 11767 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9907 components: - type: Transform - pos: 80.5,38.5 + rot: -1.5707963267948966 rad + pos: 57.5,74.5 parent: 2 - - uid: 11768 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 9908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,30.5 + rot: -1.5707963267948966 rad + pos: 14.5,67.5 parent: 2 - - uid: 11769 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9909 components: - type: Transform - pos: 50.5,33.5 + rot: -1.5707963267948966 rad + pos: 14.5,73.5 parent: 2 - - uid: 11770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,32.5 - parent: 2 - - uid: 11771 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9910 components: - type: Transform rot: 3.141592653589793 rad - pos: 63.5,12.5 + pos: 15.5,62.5 parent: 2 - - uid: 11772 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,47.5 + rot: 1.5707963267948966 rad + pos: 13.5,66.5 parent: 2 - - uid: 11773 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9912 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,21.5 + pos: 13.5,74.5 parent: 2 - - uid: 11774 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9913 components: - type: Transform rot: -1.5707963267948966 rad - pos: 72.5,14.5 + pos: 13.5,62.5 parent: 2 - - uid: 11775 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,12.5 + pos: 28.5,54.5 parent: 2 - - uid: 11776 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,48.5 + rot: -1.5707963267948966 rad + pos: 19.5,-7.5 parent: 2 - - uid: 11777 + - uid: 10929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,34.5 + pos: 32.5,54.5 parent: 2 - - uid: 11778 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,35.5 + pos: 24.5,54.5 parent: 2 - - uid: 11779 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,34.5 + pos: 32.5,49.5 parent: 2 - - uid: 11780 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11952 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,26.5 - parent: 2 - - uid: 11781 - components: - - type: Transform - pos: 2.5,34.5 + pos: 23.5,-11.5 parent: 2 - - uid: 11782 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,9.5 + rot: -1.5707963267948966 rad + pos: 43.5,50.5 parent: 2 - - uid: 11783 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13682 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,36.5 + pos: 41.5,44.5 parent: 2 - - uid: 11784 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,2.5 + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 parent: 2 - - uid: 11785 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16021 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,23.5 + pos: 15.5,51.5 parent: 2 - - uid: 11786 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16422 components: - type: Transform - pos: 5.5,14.5 + rot: 1.5707963267948966 rad + pos: 36.5,50.5 parent: 2 - - uid: 11787 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,24.5 + rot: -1.5707963267948966 rad + pos: 28.5,48.5 parent: 2 - - uid: 11788 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16469 components: - type: Transform - pos: 19.5,29.5 + rot: -1.5707963267948966 rad + pos: 28.5,41.5 parent: 2 - - uid: 11789 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16470 components: - type: Transform - pos: 29.5,29.5 + pos: 38.5,47.5 parent: 2 - - uid: 11790 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16473 components: - type: Transform - pos: 16.5,26.5 + rot: 1.5707963267948966 rad + pos: 15.5,48.5 parent: 2 - - uid: 11791 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,31.5 + rot: 1.5707963267948966 rad + pos: 25.5,-38.5 parent: 2 - - uid: 11792 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 21475 components: - type: Transform - pos: 6.5,34.5 + pos: 25.5,53.5 parent: 2 - - uid: 11793 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21476 components: - type: Transform - pos: 29.5,38.5 + rot: 3.141592653589793 rad + pos: 31.5,53.5 parent: 2 - - uid: 11794 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,12.5 + pos: 31.5,50.5 parent: 2 - - uid: 11795 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21520 components: - type: Transform - pos: 32.5,14.5 + rot: -1.5707963267948966 rad + pos: 31.5,46.5 parent: 2 - - uid: 11797 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21521 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,19.5 + pos: 23.5,-43.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11798 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 21523 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,40.5 + pos: 26.5,-38.5 parent: 2 - - uid: 11799 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 21724 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,50.5 + pos: 18.5,-37.5 parent: 2 - - uid: 11801 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 22965 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,40.5 - parent: 2 - - uid: 11802 + pos: -2.5,1.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22966 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,36.5 - parent: 2 - - uid: 11804 - components: - - type: Transform - pos: 11.5,38.5 - parent: 2 - - uid: 11805 - components: - - type: Transform - pos: 15.5,14.5 - parent: 2 - - uid: 11806 + pos: -1.5,-0.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,34.5 - parent: 2 - - uid: 11807 + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,43.5 - parent: 2 - - uid: 11808 + pos: -1.5,7.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22969 components: - type: Transform - pos: 77.5,34.5 - parent: 2 - - uid: 11809 + pos: 2.5,7.5 + parent: 16527 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,47.5 - parent: 2 - - uid: 11810 + pos: -0.5,5.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22971 components: - type: Transform - pos: 74.5,46.5 - parent: 2 - - uid: 11811 + pos: 1.5,5.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22972 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,48.5 - parent: 2 - - uid: 11812 + pos: 1.5,1.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22973 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,47.5 - parent: 2 - - uid: 11813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,47.5 - parent: 2 - - uid: 11814 + pos: -0.5,1.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,27.5 - parent: 2 - - uid: 11815 + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22975 components: - type: Transform rot: -1.5707963267948966 rad - pos: 72.5,39.5 - parent: 2 - - uid: 11816 + pos: 2.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22976 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,39.5 - parent: 2 - - uid: 11817 + pos: -1.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22977 components: - type: Transform - pos: 46.5,53.5 - parent: 2 - - uid: 11818 + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,51.5 - parent: 2 - - uid: 11819 + pos: 0.5,5.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22979 components: - type: Transform - pos: 56.5,53.5 - parent: 2 - - uid: 11820 + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22980 components: - type: Transform - pos: 62.5,53.5 - parent: 2 - - uid: 11821 + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22981 components: - type: Transform - pos: 67.5,53.5 - parent: 2 - - uid: 11822 + rot: 3.141592653589793 rad + pos: 14.5,16.5 + parent: 16527 + - uid: 22982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,61.5 - parent: 2 - - uid: 11823 + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 16527 + - uid: 22983 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,62.5 - parent: 2 - - uid: 11824 + pos: -6.5,41.5 + parent: 16527 + - uid: 22984 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,63.5 - parent: 2 - - uid: 11825 + pos: 11.5,41.5 + parent: 16527 + - uid: 22985 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,55.5 - parent: 2 - - uid: 11826 + pos: 6.5,33.5 + parent: 16527 + - uid: 22986 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.5,55.5 - parent: 2 - - uid: 11827 + pos: -11.5,33.5 + parent: 16527 + - uid: 22987 components: - type: Transform rot: -1.5707963267948966 rad - pos: 83.5,62.5 - parent: 2 - - uid: 11828 + pos: -12.5,29.5 + parent: 16527 + - uid: 22988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,56.5 - parent: 2 - - uid: 11829 + rot: -1.5707963267948966 rad + pos: -12.5,28.5 + parent: 16527 + - uid: 22989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,32.5 + parent: 16527 + - uid: 22990 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,61.5 - parent: 2 - - uid: 11830 + pos: -11.5,34.5 + parent: 16527 + - uid: 22991 components: - type: Transform - pos: 48.5,66.5 - parent: 2 - - uid: 11831 + pos: -13.5,34.5 + parent: 16527 + - uid: 22992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,69.5 - parent: 2 - - uid: 11832 + rot: 3.141592653589793 rad + pos: -13.5,32.5 + parent: 16527 + - uid: 22993 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,76.5 - parent: 2 - - uid: 11833 + pos: -13.5,27.5 + parent: 16527 + - uid: 22994 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,19.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11834 + pos: -14.5,28.5 + parent: 16527 + - uid: 22995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,30.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11835 + pos: -13.5,29.5 + parent: 16527 +- proto: GasPort + entities: + - uid: 9914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,43.5 + rot: 1.5707963267948966 rad + pos: 38.5,77.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11836 + - uid: 9915 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,81.5 + pos: 55.5,50.5 parent: 2 - - uid: 11837 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,74.5 + rot: 3.141592653589793 rad + pos: 56.5,50.5 parent: 2 - - uid: 11839 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,71.5 + rot: 3.141592653589793 rad + pos: 57.5,50.5 parent: 2 - - uid: 11840 + - uid: 9918 components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,52.5 + pos: 18.5,-12.5 parent: 2 - - uid: 11841 + - uid: 9920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,41.5 + rot: 3.141592653589793 rad + pos: 48.5,-2.5 parent: 2 - - uid: 11842 + - uid: 9922 components: - type: Transform - pos: 55.5,4.5 + rot: 1.5707963267948966 rad + pos: 56.5,73.5 parent: 2 - - uid: 11843 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 13874 components: - type: Transform - pos: 49.5,4.5 + rot: 3.141592653589793 rad + pos: 19.5,-12.5 parent: 2 - - uid: 11844 + - uid: 16257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,8.5 + pos: 31.5,-37.5 parent: 2 - - uid: 11845 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,25.5 + parent: 16527 +- proto: GasPressurePump + entities: + - uid: 3893 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,9.5 + pos: 37.5,75.5 parent: 2 - - uid: 11846 + - uid: 9923 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-11.5 + rot: -1.5707963267948966 rad + pos: 53.5,88.5 parent: 2 - - uid: 11847 + - uid: 9924 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-4.5 + pos: 32.5,82.5 parent: 2 - - uid: 11848 + - type: AtmosPipeColor + color: '#00FF7FFF' + - uid: 9925 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,57.5 + pos: 32.5,78.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11849 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 9926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-0.5 + rot: 1.5707963267948966 rad + pos: 32.5,80.5 parent: 2 - - uid: 11850 + - type: AtmosPipeColor + color: '#FF6347FF' + - uid: 9927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-4.5 + rot: 1.5707963267948966 rad + pos: 32.5,76.5 parent: 2 - - uid: 11851 + - type: AtmosPipeColor + color: '#FFC0CBFF' + - uid: 9928 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,21.5 + pos: 32.5,74.5 parent: 2 - - uid: 11852 + - type: AtmosPipeColor + color: '#00BFFFFF' + - uid: 9929 components: - type: Transform - pos: 18.5,22.5 + rot: 1.5707963267948966 rad + pos: 32.5,72.5 parent: 2 - - uid: 11853 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 9931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,30.5 + rot: 3.141592653589793 rad + pos: 18.5,-11.5 parent: 2 - - uid: 11854 + - uid: 9932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,30.5 + rot: 3.141592653589793 rad + pos: 48.5,-1.5 parent: 2 - - uid: 11855 + - uid: 9933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,22.5 + rot: 3.141592653589793 rad + pos: 57.5,76.5 parent: 2 - - uid: 11856 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 13741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,27.5 + pos: 19.5,-11.5 parent: 2 - - uid: 11857 + - uid: 16435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,34.5 + rot: -1.5707963267948966 rad + pos: 29.5,-38.5 parent: 2 - - uid: 11858 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 22997 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,40.5 + pos: -7.5,35.5 + parent: 16527 +- proto: GasRecycler + entities: + - uid: 9934 + components: + - type: Transform + pos: 39.5,76.5 parent: 2 - - uid: 11860 +- proto: GasThermoMachineFreezer + entities: + - uid: 9935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,44.5 + anchored: False + pos: 47.5,1.5 parent: 2 - - uid: 11861 + - type: Physics + bodyType: Dynamic + - uid: 9936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,16.5 + pos: 36.5,84.5 parent: 2 - - uid: 11862 + - uid: 9937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,7.5 + pos: 35.5,84.5 parent: 2 - - uid: 11863 +- proto: GasThermoMachineHeater + entities: + - uid: 9938 components: - type: Transform - pos: 49.5,57.5 + pos: 38.5,84.5 parent: 2 - - uid: 11864 + - uid: 9939 components: - type: Transform - pos: 48.5,24.5 + rot: 1.5707963267948966 rad + pos: 56.5,74.5 parent: 2 - - uid: 11865 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasValve + entities: + - uid: 9940 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,67.5 + pos: 36.5,72.5 parent: 2 - - uid: 11866 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9941 components: - type: Transform - pos: 13.5,83.5 + rot: 1.5707963267948966 rad + pos: 30.5,71.5 parent: 2 - - uid: 11867 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 9942 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,58.5 + pos: 50.5,88.5 parent: 2 - - uid: 11868 + - uid: 9943 components: - type: Transform - pos: 27.5,14.5 + rot: 3.141592653589793 rad + pos: 55.5,51.5 parent: 2 - - uid: 11869 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9944 components: - type: Transform - pos: 42.5,4.5 + rot: 3.141592653589793 rad + pos: 56.5,51.5 parent: 2 - - uid: 11870 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9945 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,35.5 + pos: 32.5,86.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11871 + - type: GasValve + open: False + - uid: 10793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,36.5 + rot: 1.5707963267948966 rad + pos: 49.5,83.5 parent: 2 - - uid: 11872 + - type: GasValve + open: False + - uid: 10898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,34.5 + rot: 1.5707963267948966 rad + pos: 49.5,84.5 parent: 2 - - uid: 11873 + - type: GasValve + open: False + - uid: 10907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-11.5 + rot: 1.5707963267948966 rad + pos: 42.5,83.5 parent: 2 - - uid: 11874 + - type: GasValve + open: False + - uid: 10908 components: - type: Transform - pos: 55.5,-12.5 + rot: 3.141592653589793 rad + pos: 40.5,83.5 parent: 2 - - uid: 11875 + - type: GasValve + open: False + - uid: 13705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 + pos: 18.5,-10.5 parent: 2 - - uid: 11876 + - type: GasValve + open: False + - uid: 13739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-7.5 + pos: 19.5,-10.5 parent: 2 - - uid: 11877 + - type: GasValve + open: False +- proto: GasVentPump + entities: + - uid: 635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,2.5 + pos: 33.5,57.5 parent: 2 - - uid: 11878 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 2315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,0.5 + rot: 1.5707963267948966 rad + pos: 14.5,54.5 parent: 2 - - uid: 11879 + - type: DeviceNetwork + deviceLists: + - 14566 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 2381 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,9.5 + pos: 26.5,41.5 parent: 2 - - uid: 11880 + - type: DeviceNetwork + deviceLists: + - 7548 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,34.5 + rot: 3.141592653589793 rad + pos: 32.5,52.5 parent: 2 - - uid: 11881 + - type: DeviceNetwork + deviceLists: + - 7367 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 3895 + components: + - type: Transform + pos: 36.5,76.5 + parent: 2 + - uid: 4154 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,20.5 + pos: 19.5,41.5 parent: 2 - - uid: 11884 + - type: DeviceNetwork + deviceLists: + - 7548 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,18.5 + rot: 1.5707963267948966 rad + pos: 14.5,46.5 parent: 2 - - uid: 11885 + - type: DeviceNetwork + deviceLists: + - 7548 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 4349 components: - type: Transform - pos: 83.5,50.5 + rot: -1.5707963267948966 rad + pos: 28.5,47.5 parent: 2 - - uid: 11886 + - type: DeviceNetwork + deviceLists: + - 7548 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,55.5 + rot: -1.5707963267948966 rad + pos: 49.5,55.5 parent: 2 - - uid: 11887 + - type: DeviceNetwork + deviceLists: + - 130 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9947 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,52.5 + pos: 31.5,36.5 parent: 2 - - uid: 11888 + - type: DeviceNetwork + deviceLists: + - 100 + - 7665 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9948 components: - type: Transform - pos: 76.5,42.5 + pos: 46.5,83.5 parent: 2 - - uid: 11889 + - type: DeviceNetwork + deviceLists: + - 133 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9949 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,2.5 + pos: 13.5,30.5 parent: 2 - - uid: 11890 + - type: DeviceNetwork + deviceLists: + - 98 + - 7668 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9950 components: - type: Transform - pos: 24.5,18.5 + rot: -1.5707963267948966 rad + pos: 58.5,38.5 parent: 2 - - uid: 11891 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,16.5 + rot: 3.141592653589793 rad + pos: 37.5,-6.5 parent: 2 - - uid: 11892 + - type: DeviceNetwork + deviceLists: + - 121 + - 7659 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9952 components: - type: Transform - pos: 20.5,14.5 + pos: 50.5,4.5 parent: 2 - - uid: 11893 + - type: DeviceNetwork + deviceLists: + - 124 + - 7724 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9954 components: - type: Transform - pos: 18.5,6.5 + pos: 53.5,56.5 parent: 2 - - uid: 11894 + - type: DeviceNetwork + deviceLists: + - 102 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9957 components: - type: Transform - pos: 18.5,-0.5 + rot: -1.5707963267948966 rad + pos: 49.5,81.5 parent: 2 - - uid: 11895 + - type: DeviceNetwork + deviceLists: + - 133 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9958 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-14.5 + pos: 46.5,19.5 parent: 2 - - uid: 11896 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9959 components: - type: Transform - pos: 67.5,41.5 + rot: 1.5707963267948966 rad + pos: 40.5,88.5 parent: 2 - - uid: 11897 + - uid: 9960 components: - type: Transform - pos: 58.5,48.5 + rot: 1.5707963267948966 rad + pos: 40.5,16.5 parent: 2 - - uid: 11898 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9961 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,47.5 + pos: 46.5,16.5 parent: 2 - - uid: 11899 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9962 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,32.5 - parent: 2 - - uid: 11900 - components: - - type: Transform - pos: 50.5,28.5 + pos: 45.5,-8.5 parent: 2 - - uid: 11901 + - type: DeviceNetwork + deviceLists: + - 124 + - 7724 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9963 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,1.5 + pos: 61.5,21.5 parent: 2 - - uid: 11902 + - type: DeviceNetwork + deviceLists: + - 15683 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9964 components: - type: Transform - pos: 83.5,19.5 + rot: 1.5707963267948966 rad + pos: 40.5,19.5 parent: 2 - - uid: 11903 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9965 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,39.5 + pos: 42.5,81.5 parent: 2 - - uid: 11904 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,37.5 + rot: 3.141592653589793 rad + pos: 49.5,-9.5 parent: 2 - - uid: 11905 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9967 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-16.5 + pos: 48.5,-5.5 parent: 2 - - uid: 11906 + - type: DeviceNetwork + deviceLists: + - 123 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9968 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-3.5 + pos: 44.5,62.5 parent: 2 - - uid: 11907 + - type: DeviceNetwork + deviceLists: + - 131 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,17.5 + pos: 55.5,23.5 parent: 2 - - uid: 11908 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9970 components: - type: Transform - pos: 48.5,14.5 + rot: 3.141592653589793 rad + pos: 52.5,17.5 parent: 2 - - uid: 11909 + - type: DeviceNetwork + deviceLists: + - 73 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9971 components: - type: Transform - pos: 43.5,24.5 + pos: 39.5,67.5 parent: 2 - - uid: 11910 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9972 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,24.5 + pos: 50.5,62.5 parent: 2 - - uid: 11911 + - type: DeviceNetwork + deviceLists: + - 132 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9973 components: - type: Transform rot: 3.141592653589793 rad - pos: 92.5,15.5 + pos: 46.5,69.5 parent: 2 - - uid: 11912 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9974 components: - type: Transform - pos: 18.5,-14.5 + rot: 3.141592653589793 rad + pos: 39.5,71.5 parent: 2 - - uid: 11913 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,79.5 + pos: 77.5,66.5 parent: 2 - - uid: 11914 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9976 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,2.5 + pos: 66.5,55.5 parent: 2 - - uid: 11915 + - type: DeviceNetwork + deviceLists: + - 87 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9977 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,26.5 + pos: 4.5,8.5 parent: 2 - - uid: 11916 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9978 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,20.5 + pos: 4.5,3.5 parent: 2 - - uid: 11917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,20.5 - parent: 2 - - uid: 11918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,16.5 - parent: 2 - - uid: 11919 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,73.5 + rot: 1.5707963267948966 rad + pos: 4.5,13.5 parent: 2 - - uid: 11920 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,69.5 + pos: 9.5,15.5 parent: 2 - - uid: 11921 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,69.5 + rot: 3.141592653589793 rad + pos: 14.5,9.5 parent: 2 - - uid: 11923 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9982 components: - type: Transform - pos: 13.5,6.5 + rot: 3.141592653589793 rad + pos: 20.5,17.5 parent: 2 - - uid: 12904 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,60.5 + rot: 3.141592653589793 rad + pos: 26.5,18.5 parent: 2 - - uid: 12990 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,26.5 + rot: 3.141592653589793 rad + pos: 29.5,16.5 parent: 2 - - uid: 13014 + - type: DeviceNetwork + deviceLists: + - 112 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9985 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,75.5 + pos: 65.5,12.5 parent: 2 - - uid: 13353 + - type: DeviceNetwork + deviceLists: + - 118 + - 7688 + - 7687 + - 7686 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,71.5 + rot: 1.5707963267948966 rad + pos: 17.5,-2.5 parent: 2 - - uid: 13354 + - type: DeviceNetwork + deviceLists: + - 128 + - 7723 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9987 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,76.5 + pos: 26.5,-0.5 parent: 2 - - uid: 13363 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,74.5 + rot: 1.5707963267948966 rad + pos: 17.5,4.5 parent: 2 - - uid: 13393 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,78.5 + pos: 21.5,8.5 parent: 2 - - uid: 13681 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9990 components: - type: Transform - pos: 28.5,55.5 + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 parent: 2 - - uid: 13878 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-42.5 + rot: -1.5707963267948966 rad + pos: 58.5,3.5 parent: 2 - - uid: 13917 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-34.5 + pos: 47.5,7.5 parent: 2 - - uid: 15682 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9993 components: - type: Transform - pos: 40.5,45.5 + pos: 53.5,7.5 parent: 2 - - uid: 19553 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 16504 - - uid: 19554 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9994 components: - type: Transform - pos: 3.5,-1.5 - parent: 16504 - - uid: 19555 + pos: 41.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 115 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9995 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-7.5 - parent: 16504 - - uid: 19556 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 16504 - - uid: 19557 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 16504 - - uid: 19558 + pos: 53.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 16504 - - uid: 19559 + pos: 38.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 16504 - - uid: 19560 + rot: 1.5707963267948966 rad + pos: 35.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 101 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9998 components: - type: Transform - pos: 5.5,12.5 - parent: 16504 - - uid: 19561 + pos: 82.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 + - 92 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 9999 components: - type: Transform - pos: 14.5,8.5 - parent: 16504 - - uid: 19562 + rot: 1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,2.5 - parent: 16504 - - uid: 19563 + rot: 1.5707963267948966 rad + pos: 41.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10001 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 16504 - - uid: 19564 + pos: 49.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10002 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,8.5 - parent: 16504 - - uid: 19565 + pos: 55.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20470 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10003 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,3.5 - parent: 16504 - - uid: 19566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,3.5 - parent: 16504 - - uid: 19567 + pos: 56.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 135 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10004 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 16504 - - uid: 19568 + pos: 21.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 16504 - - uid: 19569 + rot: -1.5707963267948966 rad + pos: 47.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 136 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10006 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-3.5 - parent: 16504 - - uid: 19570 + pos: 80.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10007 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,28.5 - parent: 16504 - - uid: 19571 + pos: 78.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,15.5 - parent: 16504 - - uid: 19572 + rot: -1.5707963267948966 rad + pos: 72.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10009 components: - type: Transform - pos: 25.5,20.5 - parent: 16504 - - uid: 19573 + rot: 1.5707963267948966 rad + pos: 25.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10010 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 16504 - - uid: 19574 + pos: 75.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10011 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,18.5 - parent: 16504 - - uid: 19575 - components: - - type: Transform - pos: -15.5,25.5 - parent: 16504 - - uid: 19576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,24.5 - parent: 16504 - - uid: 19577 + pos: 48.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 118 + - 7688 + - 7687 + - 7686 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 16504 - - uid: 19578 + rot: 3.141592653589793 rad + pos: 62.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10013 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 16504 - - uid: 19579 + pos: 69.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10014 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,37.5 - parent: 16504 - - uid: 19580 + pos: 72.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 103 + - 7673 + - 7676 + - 7678 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10015 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,21.5 - parent: 16504 - - uid: 19581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,24.5 - parent: 16504 - - uid: 19582 + pos: 64.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,33.5 - parent: 16504 - - uid: 19583 + pos: 42.5,75.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10017 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,27.5 - parent: 16504 - - uid: 19584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,37.5 - parent: 16504 - - uid: 21709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-39.5 + pos: 35.5,19.5 parent: 2 - - uid: 21710 + - type: DeviceNetwork + deviceLists: + - 117 + - 7689 + - 7690 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10018 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-39.5 + pos: 27.5,24.5 parent: 2 - - uid: 21711 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10019 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-39.5 + pos: 42.5,26.5 parent: 2 - - uid: 21713 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10020 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-38.5 + pos: 72.5,18.5 parent: 2 - - uid: 21714 + - type: DeviceNetwork + deviceLists: + - 75 + - 7684 + - 7685 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10021 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-42.5 + pos: 72.5,52.5 parent: 2 - - uid: 21719 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-34.5 + rot: 3.141592653589793 rad + pos: 12.5,12.5 parent: 2 - - uid: 21870 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 106 + - 7658 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,53.5 + rot: 3.141592653589793 rad + pos: 9.5,7.5 parent: 2 - - uid: 21912 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,81.5 + rot: 1.5707963267948966 rad + pos: 45.5,49.5 parent: 2 - - uid: 21915 + - type: DeviceNetwork + deviceLists: + - 102 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,72.5 + rot: 1.5707963267948966 rad + pos: 11.5,23.5 parent: 2 - - uid: 21916 + - type: DeviceNetwork + deviceLists: + - 107 + - 7666 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10028 components: - type: Transform - pos: 37.5,84.5 + pos: 71.5,63.5 parent: 2 -- proto: PoweredlightBlue - entities: - - uid: 21913 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10029 components: - type: Transform - pos: 61.5,28.5 + rot: -1.5707963267948966 rad + pos: 82.5,60.5 parent: 2 - - uid: 21914 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,26.5 + pos: 82.5,50.5 parent: 2 -- proto: PoweredlightCyan - entities: - - uid: 11941 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10031 components: - type: Transform - pos: 7.5,28.5 + pos: 7.5,33.5 parent: 2 - - uid: 11942 + - type: DeviceNetwork + deviceLists: + - 7667 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,26.5 + rot: -1.5707963267948966 rad + pos: 17.5,50.5 parent: 2 - - uid: 11943 + - type: DeviceNetwork + deviceLists: + - 7548 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,26.5 + pos: 18.5,55.5 parent: 2 - - type: PointLight - energy: 2 -- proto: PoweredlightEmpty - entities: - - uid: 19585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,21.5 - parent: 16504 - - uid: 19586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 16504 - - uid: 19587 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 16504 - - uid: 19588 + - type: DeviceNetwork + deviceLists: + - 7367 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,8.5 - parent: 16504 - - uid: 19589 + rot: 1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 16504 - - uid: 19590 + pos: 15.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 99 + - 7669 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,3.5 - parent: 16504 - - uid: 19591 + rot: 1.5707963267948966 rad + pos: 42.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10037 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 16504 - - uid: 19592 - components: - - type: Transform - pos: 11.5,4.5 - parent: 16504 - - uid: 19593 - components: - - type: Transform - pos: -4.5,12.5 - parent: 16504 - - uid: 19594 + pos: 81.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10038 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,9.5 - parent: 16504 - - uid: 19595 - components: - - type: Transform - pos: -13.5,8.5 - parent: 16504 - - uid: 19596 - components: - - type: Transform - pos: 32.5,20.5 - parent: 16504 - - uid: 19597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 - parent: 16504 - - uid: 19598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,31.5 - parent: 16504 - - uid: 19599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,35.5 - parent: 16504 -- proto: PoweredlightExterior - entities: - - uid: 337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,54.5 + pos: 60.5,63.5 parent: 2 - - uid: 21732 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10039 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,52.5 - parent: 2 - - type: PointLight - energy: 3 - color: '#FF66CCFF' -- proto: PoweredlightOrange - entities: - - uid: 11946 - components: - - type: Transform - pos: 20.5,17.5 + pos: 50.5,70.5 parent: 2 - - uid: 11947 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,22.5 + rot: 3.141592653589793 rad + pos: 31.5,12.5 parent: 2 - - uid: 11949 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7658 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,72.5 + rot: 3.141592653589793 rad + pos: 28.5,3.5 parent: 2 - - uid: 11950 + - type: DeviceNetwork + deviceLists: + - 104 + - 105 + - 7691 + - 7658 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10042 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,76.5 + pos: 35.5,25.5 parent: 2 - - uid: 11954 + - type: DeviceNetwork + deviceLists: + - 117 + - 7689 + - 7690 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10044 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,84.5 + pos: 8.5,21.5 parent: 2 - - uid: 11955 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10045 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,80.5 + pos: 79.5,27.5 parent: 2 - - uid: 11956 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10046 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,81.5 + pos: 67.5,40.5 parent: 2 - - uid: 11957 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,76.5 + rot: -1.5707963267948966 rad + pos: 74.5,46.5 parent: 2 - - uid: 11958 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10048 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,86.5 + pos: 74.5,48.5 parent: 2 -- proto: PoweredLightPostSmall - entities: - - uid: 19601 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 16504 - - uid: 20515 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 16504 - - uid: 22149 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 16504 -- proto: PoweredlightRed - entities: - - uid: 6177 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10049 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-34.5 + pos: 43.5,12.5 parent: 2 - - uid: 11961 + - type: DeviceNetwork + deviceLists: + - 118 + - 7688 + - 7687 + - 7686 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10050 components: - type: Transform - pos: 55.5,32.5 + pos: 76.5,40.5 parent: 2 - - uid: 11962 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10051 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,30.5 + rot: 1.5707963267948966 rad + pos: 68.5,48.5 parent: 2 - - uid: 11963 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10052 components: - type: Transform - pos: 60.5,32.5 + pos: 9.5,36.5 parent: 2 - - uid: 11964 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,30.5 + pos: 5.5,36.5 parent: 2 - - uid: 21725 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10054 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-30.5 + rot: -1.5707963267948966 rad + pos: 38.5,-1.5 parent: 2 - - uid: 21818 + - type: DeviceNetwork + deviceLists: + - 121 + - 7659 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-42.5 + rot: 3.141592653589793 rad + pos: 41.5,-7.5 parent: 2 - - uid: 21884 + - type: DeviceNetwork + deviceLists: + - 129 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10056 components: - type: Transform - pos: 23.5,-46.5 + pos: 41.5,4.5 parent: 2 - - uid: 21885 + - type: DeviceNetwork + deviceLists: + - 124 + - 7724 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10057 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-42.5 + pos: 35.5,3.5 parent: 2 - - uid: 21886 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-37.5 + pos: 38.5,88.5 parent: 2 - - uid: 21887 + - uid: 10059 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-31.5 + pos: 40.5,22.5 parent: 2 - - uid: 21888 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10060 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-37.5 + pos: 47.5,78.5 parent: 2 - - uid: 21889 + - type: DeviceNetwork + deviceLists: + - 85 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-34.5 + rot: -1.5707963267948966 rad + pos: 47.5,0.5 parent: 2 -- proto: PoweredlightSodium - entities: - - uid: 5307 + - type: DeviceNetwork + deviceLists: + - 127 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10062 components: - type: Transform - pos: 20.5,55.5 + pos: 47.5,23.5 parent: 2 - - uid: 5809 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,47.5 + pos: 56.5,28.5 parent: 2 - - type: PointLight - energy: 1.2 - radius: 5 - - uid: 5816 + - type: DeviceNetwork + deviceLists: + - 135 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,41.5 + rot: -1.5707963267948966 rad + pos: 60.5,27.5 parent: 2 - - type: PointLight - energy: 1.2 - radius: 12 - - uid: 10376 + - type: DeviceNetwork + deviceLists: + - 135 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10065 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,44.5 + pos: 60.5,31.5 parent: 2 - - uid: 10683 + - type: DeviceNetwork + deviceLists: + - 135 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10066 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,54.5 + pos: 53.5,27.5 parent: 2 - - uid: 16172 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10067 components: - type: Transform - pos: 18.5,50.5 + pos: 14.5,81.5 parent: 2 - - type: PointLight - energy: 1.2 - - uid: 19604 + - type: DeviceNetwork + deviceLists: + - 137 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10068 components: - type: Transform - pos: 27.5,35.5 - parent: 16504 - - uid: 19605 + rot: 1.5707963267948966 rad + pos: 13.5,73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 137 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10069 components: - type: Transform - pos: 33.5,35.5 - parent: 16504 - - uid: 19606 + rot: 1.5707963267948966 rad + pos: 13.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 137 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 16504 - - uid: 21488 + pos: 15.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10910 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,49.5 + pos: 33.5,46.5 parent: 2 - - uid: 21857 + - type: DeviceNetwork + deviceLists: + - 13499 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 10919 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,40.5 + pos: 32.5,40.5 parent: 2 - - type: PointLight - energy: 1.2 - - uid: 21861 + - type: DeviceNetwork + deviceLists: + - 13499 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11447 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,41.5 - parent: 2 - - type: PointLight - energy: 1.5 - - uid: 21869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,46.5 + pos: 33.5,49.5 parent: 2 -- proto: PoweredSmallLight - entities: - - uid: 4251 + - type: DeviceNetwork + deviceLists: + - 7548 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11479 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,2.5 + pos: 24.5,52.5 parent: 2 - - uid: 4870 + - type: DeviceNetwork + deviceLists: + - 7367 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11560 components: - type: Transform - pos: 52.5,-21.5 + rot: 3.141592653589793 rad + pos: 28.5,52.5 parent: 2 - - uid: 11513 + - type: DeviceNetwork + deviceLists: + - 7367 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13057 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,52.5 + pos: 43.5,47.5 parent: 2 - - uid: 11965 + - type: DeviceNetwork + deviceLists: + - 3857 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13349 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,68.5 + pos: 40.5,47.5 parent: 2 - - uid: 11966 + - type: DeviceNetwork + deviceLists: + - 3857 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,82.5 + pos: 40.5,52.5 parent: 2 - - uid: 11967 + - type: DeviceNetwork + deviceLists: + - 3857 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13703 components: - type: Transform - pos: 47.5,17.5 + rot: 1.5707963267948966 rad + pos: 39.5,51.5 parent: 2 - - uid: 11968 + - type: DeviceNetwork + deviceLists: + - 3857 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13879 components: - type: Transform - pos: 47.5,20.5 + pos: 43.5,51.5 parent: 2 - - uid: 11969 + - type: DeviceNetwork + deviceLists: + - 3207 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 15356 components: - type: Transform - pos: 44.5,57.5 + rot: 3.141592653589793 rad + pos: 22.5,-19.5 parent: 2 - - uid: 11970 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16018 components: - type: Transform - pos: 49.5,-4.5 + rot: -1.5707963267948966 rad + pos: 23.5,-7.5 parent: 2 - - uid: 11971 + - type: DeviceNetwork + deviceLists: + - 61 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16247 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,90.5 + pos: 23.5,-44.5 parent: 2 - - uid: 11972 + - type: DeviceNetwork + deviceLists: + - 21672 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 16325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,6.5 + pos: 19.5,-39.5 parent: 2 - - uid: 11973 + - type: DeviceNetwork + deviceLists: + - 21668 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 21479 components: - type: Transform - pos: 39.5,90.5 + rot: 1.5707963267948966 rad + pos: 23.5,-35.5 parent: 2 - - uid: 11974 + - type: DeviceNetwork + deviceLists: + - 16256 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 21620 components: - type: Transform - pos: 86.5,57.5 + pos: 26.5,-36.5 parent: 2 - - uid: 11975 + - type: DeviceNetwork + deviceLists: + - 21669 + - type: AtmosPipeColor + color: '#4169E1FF' +- proto: GasVentPumpVox + entities: + - uid: 21334 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2400 + - type: AtmosPipeColor + color: '#4169E1FF' +- proto: GasVentScrubber + entities: + - uid: 6533 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,7.5 + pos: 24.5,-38.5 parent: 2 - - uid: 11976 + - type: DeviceNetwork + deviceLists: + - 21669 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 6538 components: - type: Transform - pos: 26.5,-4.5 + rot: -1.5707963267948966 rad + pos: 33.5,50.5 parent: 2 - - uid: 11977 + - type: DeviceNetwork + deviceLists: + - 7548 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,88.5 + rot: -1.5707963267948966 rad + pos: 21.5,-35.5 parent: 2 - - uid: 11978 + - type: DeviceNetwork + deviceLists: + - 16256 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 7340 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,22.5 + pos: 21.5,-44.5 parent: 2 - - uid: 11979 + - type: DeviceNetwork + deviceLists: + - 21672 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 9359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,90.5 + rot: -1.5707963267948966 rad + pos: 39.5,50.5 parent: 2 - - uid: 11980 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,8.5 + rot: -1.5707963267948966 rad + pos: 39.5,47.5 parent: 2 - - uid: 11981 + - type: DeviceNetwork + deviceLists: + - 3857 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10024 components: - type: Transform - pos: 39.5,24.5 + pos: 36.5,52.5 parent: 2 - - uid: 11982 + - type: DeviceNetwork + deviceLists: + - 3857 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,19.5 + rot: 1.5707963267948966 rad + pos: 12.5,29.5 parent: 2 - - uid: 11983 + - type: DeviceNetwork + deviceLists: + - 98 + - 7668 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10073 components: - type: Transform - pos: 41.5,38.5 + pos: 32.5,37.5 parent: 2 - - uid: 11984 + - type: DeviceNetwork + deviceLists: + - 100 + - 7665 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10074 components: - type: Transform - pos: 12.5,-14.5 + rot: 3.141592653589793 rad + pos: 51.5,17.5 parent: 2 - - uid: 11985 + - type: DeviceNetwork + deviceLists: + - 73 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10075 components: - type: Transform - pos: 55.5,45.5 + pos: 78.5,66.5 parent: 2 - - uid: 11986 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10076 components: - type: Transform - pos: 48.5,41.5 + pos: 38.5,72.5 parent: 2 - - uid: 11987 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,16.5 + rot: 3.141592653589793 rad + pos: 35.5,-6.5 parent: 2 - - type: PointLight - energy: 0.6 - color: '#FF8227FF' - - uid: 11988 + - type: DeviceNetwork + deviceLists: + - 121 + - 7659 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10078 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,18.5 + pos: 49.5,82.5 parent: 2 - - uid: 11989 + - type: DeviceNetwork + deviceLists: + - 133 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,30.5 + rot: -1.5707963267948966 rad + pos: 58.5,40.5 parent: 2 - - uid: 11990 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10081 components: - type: Transform - pos: 53.5,10.5 + pos: 40.5,67.5 parent: 2 - - uid: 11991 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,25.5 + pos: 55.5,56.5 parent: 2 - - uid: 11992 + - type: DeviceNetwork + deviceLists: + - 102 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,63.5 + rot: -1.5707963267948966 rad + pos: 50.5,68.5 parent: 2 - - uid: 11993 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10084 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-17.5 + rot: -1.5707963267948966 rad + pos: 46.5,17.5 parent: 2 - - uid: 11994 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,2.5 + rot: -1.5707963267948966 rad + pos: 46.5,20.5 parent: 2 - - uid: 11995 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10086 components: - type: Transform - pos: 45.5,41.5 + rot: -1.5707963267948966 rad + pos: 49.5,56.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11996 + - type: DeviceNetwork + deviceLists: + - 130 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10087 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,20.5 + pos: 44.5,-8.5 parent: 2 - - uid: 11997 + - type: DeviceNetwork + deviceLists: + - 124 + - 7724 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10088 components: - type: Transform - pos: 72.5,10.5 + rot: 3.141592653589793 rad + pos: 48.5,-9.5 parent: 2 - - uid: 11998 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,10.5 + rot: 1.5707963267948966 rad + pos: 47.5,-6.5 parent: 2 - - uid: 12000 + - type: DeviceNetwork + deviceLists: + - 123 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10090 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,7.5 + pos: 40.5,17.5 parent: 2 - - uid: 12001 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10092 components: - type: Transform - pos: -0.5,6.5 + rot: -1.5707963267948966 rad + pos: 61.5,23.5 parent: 2 - - uid: 12002 + - type: DeviceNetwork + deviceLists: + - 15683 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10093 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,8.5 + pos: 56.5,23.5 parent: 2 - - uid: 12003 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,8.5 + pos: 40.5,20.5 parent: 2 - - uid: 12004 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10095 components: - type: Transform - pos: 61.5,18.5 + rot: 1.5707963267948966 rad + pos: 44.5,63.5 parent: 2 - - uid: 12005 + - type: DeviceNetwork + deviceLists: + - 131 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10096 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 + rot: -1.5707963267948966 rad + pos: 50.5,63.5 parent: 2 - - uid: 12006 + - type: DeviceNetwork + deviceLists: + - 132 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10097 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,53.5 + pos: 56.5,30.5 parent: 2 - - uid: 12007 + - type: DeviceNetwork + deviceLists: + - 135 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,59.5 + rot: 3.141592653589793 rad + pos: 51.5,3.5 parent: 2 - - uid: 12008 + - type: DeviceNetwork + deviceLists: + - 124 + - 7724 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,75.5 + rot: 1.5707963267948966 rad + pos: 65.5,57.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12009 + - type: DeviceNetwork + deviceLists: + - 87 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,44.5 + rot: 1.5707963267948966 rad + pos: 4.5,7.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12010 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,17.5 + rot: 1.5707963267948966 rad + pos: 4.5,14.5 parent: 2 - - uid: 12011 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10102 components: - type: Transform - pos: 63.5,45.5 + rot: 1.5707963267948966 rad + pos: 4.5,2.5 parent: 2 - - uid: 12012 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10103 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,16.5 + pos: 8.5,7.5 parent: 2 - - uid: 12013 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,3.5 + pos: 7.5,15.5 parent: 2 - - uid: 12014 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10105 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,3.5 + pos: 15.5,9.5 parent: 2 - - uid: 12015 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10106 components: - type: Transform - pos: 39.5,17.5 + rot: 3.141592653589793 rad + pos: 19.5,17.5 parent: 2 - - uid: 12016 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10107 components: - type: Transform - pos: 39.5,20.5 + rot: 1.5707963267948966 rad + pos: 24.5,17.5 parent: 2 - - uid: 12017 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,19.5 + rot: -1.5707963267948966 rad + pos: 32.5,26.5 parent: 2 - - uid: 12018 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10109 components: - type: Transform - pos: 3.5,24.5 + pos: 36.5,6.5 parent: 2 - - uid: 12019 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,17.5 + pos: 20.5,8.5 parent: 2 - - uid: 12020 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,17.5 + rot: 1.5707963267948966 rad + pos: 17.5,5.5 parent: 2 - - uid: 12021 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,37.5 + pos: 17.5,-3.5 parent: 2 - - uid: 12022 + - type: DeviceNetwork + deviceLists: + - 128 + - 7723 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,37.5 + rot: -1.5707963267948966 rad + pos: 26.5,0.5 parent: 2 - - uid: 12023 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,43.5 + pos: 40.5,7.5 parent: 2 - - uid: 12024 + - type: DeviceNetwork + deviceLists: + - 115 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,43.5 + pos: 37.5,8.5 parent: 2 - - uid: 12025 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,51.5 + pos: 46.5,7.5 parent: 2 - - uid: 12026 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,61.5 + pos: 52.5,7.5 parent: 2 - - uid: 12027 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,58.5 + rot: -1.5707963267948966 rad + pos: 58.5,4.5 parent: 2 - - uid: 12028 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10119 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,61.5 + pos: 52.5,-3.5 parent: 2 - - uid: 12029 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10120 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,58.5 + pos: 82.5,32.5 parent: 2 - - uid: 12031 + - type: DeviceNetwork + deviceLists: + - 93 + - 92 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10121 components: - type: Transform - pos: 29.5,64.5 + rot: 1.5707963267948966 rad + pos: 25.5,20.5 parent: 2 - - uid: 12032 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,59.5 + rot: -1.5707963267948966 rad + pos: 49.5,31.5 parent: 2 - - uid: 12033 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10123 components: - type: Transform - pos: 30.5,67.5 + rot: 1.5707963267948966 rad + pos: 41.5,35.5 parent: 2 - - uid: 12034 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10124 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,58.5 + pos: 41.5,31.5 parent: 2 - - uid: 12035 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10125 components: - type: Transform - pos: 78.5,28.5 + rot: 3.141592653589793 rad + pos: 30.5,12.5 parent: 2 - - uid: 12036 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 7658 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,27.5 + pos: 21.5,27.5 parent: 2 - - uid: 12037 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,28.5 + rot: 3.141592653589793 rad + pos: 79.5,36.5 parent: 2 - - uid: 12038 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 117 + - 7689 + - 7690 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10129 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,55.5 + pos: 78.5,17.5 parent: 2 - - uid: 12039 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10130 components: - type: Transform - pos: 30.5,-4.5 + pos: 27.5,27.5 parent: 2 - - uid: 12040 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-10.5 + rot: -1.5707963267948966 rad + pos: 47.5,33.5 parent: 2 - - type: RgbLightController - - uid: 12041 + - type: DeviceNetwork + deviceLists: + - 136 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,8.5 + rot: 3.141592653589793 rad + pos: 44.5,12.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12042 + - type: DeviceNetwork + deviceLists: + - 118 + - 7688 + - 7687 + - 7686 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-0.5 + rot: 3.141592653589793 rad + pos: 64.5,12.5 parent: 2 - - uid: 12043 + - type: DeviceNetwork + deviceLists: + - 118 + - 7688 + - 7687 + - 7686 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10134 components: - type: Transform - pos: 15.5,22.5 + rot: -1.5707963267948966 rad + pos: 72.5,19.5 parent: 2 - - uid: 12044 + - type: DeviceNetwork + deviceLists: + - 75 + - 7684 + - 7685 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,16.5 + rot: -1.5707963267948966 rad + pos: 72.5,27.5 parent: 2 - - uid: 12045 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10136 components: - type: Transform - pos: 55.5,-9.5 + rot: -1.5707963267948966 rad + pos: 72.5,50.5 parent: 2 - - uid: 12046 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10137 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-8.5 + pos: 69.5,56.5 parent: 2 - - uid: 12047 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10138 components: - type: Transform - pos: 20.5,-10.5 + pos: 43.5,75.5 parent: 2 - - uid: 12048 + - type: DeviceNetwork + deviceLists: + - 84 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10139 components: - type: Transform - pos: 24.5,-18.5 + rot: 3.141592653589793 rad + pos: 41.5,26.5 parent: 2 - - uid: 12049 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-0.5 + pos: 75.5,18.5 parent: 2 - - uid: 12050 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10141 components: - type: Transform - pos: 41.5,-10.5 + rot: 3.141592653589793 rad + pos: 47.5,12.5 parent: 2 - - uid: 12051 + - type: DeviceNetwork + deviceLists: + - 118 + - 7688 + - 7687 + - 7686 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10142 components: - type: Transform - pos: 48.5,-13.5 + rot: -1.5707963267948966 rad + pos: 72.5,35.5 parent: 2 - - uid: 12052 + - type: DeviceNetwork + deviceLists: + - 103 + - 7673 + - 7676 + - 7678 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10143 components: - type: Transform - pos: 48.5,-13.5 + rot: 3.141592653589793 rad + pos: 66.5,51.5 parent: 2 - - uid: 12053 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-10.5 + rot: -1.5707963267948966 rad + pos: 83.5,59.5 parent: 2 - - uid: 12054 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10145 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,-2.5 + pos: 42.5,69.5 parent: 2 - - uid: 12055 + - type: DeviceNetwork + deviceLists: + - 84 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10146 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,3.5 + pos: 35.5,42.5 parent: 2 - - uid: 12056 + - type: DeviceNetwork + deviceLists: + - 101 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10147 components: - type: Transform - pos: 69.5,4.5 + pos: 18.5,38.5 parent: 2 - - uid: 12057 + - type: DeviceNetwork + deviceLists: + - 99 + - 7669 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,26.5 + rot: 1.5707963267948966 rad + pos: 64.5,62.5 parent: 2 - - uid: 12058 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,15.5 + rot: 1.5707963267948966 rad + pos: 26.5,9.5 parent: 2 - - uid: 12059 + - type: DeviceNetwork + deviceLists: + - 104 + - 105 + - 7691 + - 7658 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10150 components: - type: Transform - pos: 75.5,19.5 + rot: 1.5707963267948966 rad + pos: 35.5,26.5 parent: 2 - - uid: 12060 + - type: DeviceNetwork + deviceLists: + - 117 + - 7689 + - 7690 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,41.5 + rot: 1.5707963267948966 rad + pos: 45.5,50.5 parent: 2 - - uid: 12061 + - type: DeviceNetwork + deviceLists: + - 102 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10152 components: - type: Transform rot: 3.141592653589793 rad - pos: 85.5,48.5 + pos: 21.5,-4.5 parent: 2 - - uid: 12062 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10154 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,60.5 + pos: 11.5,24.5 parent: 2 - - uid: 12063 + - type: DeviceNetwork + deviceLists: + - 107 + - 7666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10155 components: - type: Transform - pos: 18.5,-18.5 + pos: 70.5,63.5 parent: 2 - - uid: 12064 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10156 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,20.5 + pos: 82.5,52.5 parent: 2 - - type: PointLight - energy: 0.6 - color: '#FF8227FF' - - uid: 12065 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10157 components: - type: Transform - pos: 8.5,-0.5 + rot: 1.5707963267948966 rad + pos: 60.5,64.5 parent: 2 - - uid: 12066 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,56.5 + rot: 1.5707963267948966 rad + pos: 11.5,15.5 parent: 2 - - uid: 12067 + - type: DeviceNetwork + deviceLists: + - 105 + - 7691 + - 106 + - 7658 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,73.5 + rot: 3.141592653589793 rad + pos: 54.5,51.5 parent: 2 - - uid: 12068 + - type: DeviceNetwork + deviceLists: + - 102 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10161 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,88.5 + pos: 14.5,53.5 parent: 2 - - uid: 12069 + - type: DeviceNetwork + deviceLists: + - 14566 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,88.5 + rot: 1.5707963267948966 rad + pos: 2.5,33.5 parent: 2 - - uid: 12070 + - type: DeviceNetwork + deviceLists: + - 7667 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,87.5 + pos: 32.5,6.5 parent: 2 - - uid: 12071 + - type: DeviceNetwork + deviceLists: + - 104 + - 105 + - 7691 + - 7658 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,68.5 + pos: 8.5,36.5 parent: 2 - - uid: 12072 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,68.5 + pos: 4.5,36.5 parent: 2 - - uid: 12073 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 96.5,16.5 + rot: 1.5707963267948966 rad + pos: 8.5,22.5 parent: 2 - - uid: 12074 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10169 components: - type: Transform - pos: 96.5,17.5 + rot: 1.5707963267948966 rad + pos: 79.5,28.5 parent: 2 - - uid: 12075 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10170 components: - type: Transform - pos: 49.5,36.5 + rot: 1.5707963267948966 rad + pos: 67.5,38.5 parent: 2 - - uid: 12077 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10171 components: - type: Transform - pos: 26.5,77.5 + rot: -1.5707963267948966 rad + pos: 74.5,49.5 parent: 2 - - uid: 12078 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,64.5 + rot: -1.5707963267948966 rad + pos: 74.5,45.5 parent: 2 - - uid: 12079 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10173 components: - type: Transform - pos: 26.5,73.5 + pos: 81.5,50.5 parent: 2 - - uid: 12080 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10174 components: - type: Transform - pos: 26.5,81.5 + pos: 77.5,40.5 parent: 2 - - uid: 12081 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 92.5,21.5 + rot: 3.141592653589793 rad + pos: 67.5,48.5 parent: 2 - - uid: 12082 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10176 components: - type: Transform - pos: 26.5,75.5 + rot: 3.141592653589793 rad + pos: 28.5,16.5 parent: 2 - - uid: 12083 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10177 components: - type: Transform - pos: 26.5,79.5 + rot: 1.5707963267948966 rad + pos: 42.5,82.5 parent: 2 - - uid: 12084 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10178 components: - type: Transform - pos: 26.5,83.5 + pos: 43.5,8.5 parent: 2 - - uid: 12085 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10179 components: - type: Transform - pos: 14.5,-18.5 + rot: 3.141592653589793 rad + pos: 40.5,-7.5 parent: 2 - - uid: 12086 + - type: DeviceNetwork + deviceLists: + - 129 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,5.5 + rot: -1.5707963267948966 rad + pos: 47.5,-1.5 parent: 2 - - uid: 12087 + - type: DeviceNetwork + deviceLists: + - 127 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10181 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,5.5 + rot: 1.5707963267948966 rad + pos: 39.5,-1.5 parent: 2 - - uid: 12091 + - type: DeviceNetwork + deviceLists: + - 121 + - 7659 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10182 components: - type: Transform - pos: 61.5,24.5 + rot: 1.5707963267948966 rad + pos: 46.5,68.5 parent: 2 - - uid: 12092 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10183 components: - type: Transform - pos: 10.5,-6.5 + rot: 1.5707963267948966 rad + pos: 40.5,23.5 parent: 2 - - uid: 12093 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-13.5 + pos: 47.5,83.5 parent: 2 - - uid: 12095 + - type: DeviceNetwork + deviceLists: + - 133 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10185 components: - type: Transform - pos: 14.5,1.5 + rot: 1.5707963267948966 rad + pos: 46.5,77.5 parent: 2 - - uid: 12096 + - type: DeviceNetwork + deviceLists: + - 85 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10186 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,6.5 + pos: 48.5,23.5 parent: 2 - - uid: 12097 + - type: DeviceNetwork + deviceLists: + - 134 + - 7660 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,6.5 + rot: 1.5707963267948966 rad + pos: 56.5,26.5 parent: 2 - - uid: 13427 + - type: DeviceNetwork + deviceLists: + - 135 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10188 components: - type: Transform - pos: 21.5,-25.5 + rot: -1.5707963267948966 rad + pos: 60.5,26.5 parent: 2 - - uid: 13458 + - type: DeviceNetwork + deviceLists: + - 135 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10189 components: - type: Transform - pos: 23.5,-25.5 + rot: -1.5707963267948966 rad + pos: 60.5,30.5 parent: 2 - - uid: 13896 + - type: DeviceNetwork + deviceLists: + - 135 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10190 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,57.5 + pos: 57.5,17.5 parent: 2 - - uid: 15488 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,52.5 + pos: 53.5,26.5 parent: 2 - - uid: 16479 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10192 components: - type: Transform - pos: 42.5,53.5 + rot: 3.141592653589793 rad + pos: 42.5,3.5 parent: 2 - - uid: 16532 + - type: DeviceNetwork + deviceLists: + - 124 + - 7724 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,26.5 - parent: 16504 - - uid: 17584 + pos: 13.5,81.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 137 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10194 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,26.5 - parent: 16504 - - uid: 17615 + pos: 14.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 137 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10195 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,24.5 - parent: 16504 - - uid: 17626 + pos: 14.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 137 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10196 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 16504 - - uid: 19515 + pos: 12.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,28.5 - parent: 16504 - - uid: 19516 + rot: 3.141592653589793 rad + pos: 25.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,28.5 - parent: 16504 - - uid: 19517 + pos: 38.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3857 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13316 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 16504 - - uid: 19518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,26.5 - parent: 16504 - - uid: 19519 + pos: 35.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3857 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14722 components: - type: Transform - pos: -0.5,43.5 - parent: 16504 - - uid: 19520 + rot: 1.5707963267948966 rad + pos: 14.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7548 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15926 components: - type: Transform - pos: 1.5,43.5 - parent: 16504 - - uid: 19607 + rot: 3.141592653589793 rad + pos: 18.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7548 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16024 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 16504 - - uid: 19608 + pos: 14.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7548 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16158 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 16504 - - uid: 19609 + pos: 24.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16232 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,0.5 - parent: 16504 - - uid: 19610 + pos: 23.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 16504 - - uid: 19611 + rot: 1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16442 components: - type: Transform - pos: 2.5,6.5 - parent: 16504 - - uid: 19612 + rot: 1.5707963267948966 rad + pos: 27.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16449 components: - type: Transform - pos: -1.5,6.5 - parent: 16504 - - uid: 19613 + pos: 20.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 16504 - - uid: 19614 + rot: 1.5707963267948966 rad + pos: 27.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7548 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21219 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,8.5 - parent: 16504 - - uid: 19615 + pos: 33.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7367 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21417 components: - type: Transform - pos: -1.5,12.5 - parent: 16504 - - uid: 19616 + pos: 31.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21480 components: - type: Transform - pos: 2.5,12.5 - parent: 16504 - - uid: 19617 + rot: 1.5707963267948966 rad + pos: 30.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13499 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21505 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-8.5 - parent: 16504 - - uid: 19618 + pos: 31.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13499 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21663 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 16504 - - uid: 19619 + pos: 18.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21668 + - type: AtmosPipeColor + color: '#FF4040FF' + - uid: 21718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,20.5 - parent: 16504 - - uid: 19620 + pos: 42.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3207 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22998 + components: + - type: Transform + pos: -0.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22999 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,27.5 - parent: 16504 - - uid: 19621 + pos: -0.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,23.5 - parent: 16504 - - uid: 19622 + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23001 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,25.5 - parent: 16504 - - uid: 19623 + pos: -0.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23002 components: - type: Transform - pos: -18.5,16.5 - parent: 16504 - - uid: 19624 + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 16504 - - uid: 19625 + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23004 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,7.5 - parent: 16504 - - uid: 19626 + pos: -0.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 16504 - - uid: 19627 + pos: -0.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23006 components: - type: Transform - pos: 3.5,18.5 - parent: 16504 - - uid: 19628 + pos: 1.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,14.5 - parent: 16504 - - uid: 19629 + pos: 1.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-8.5 - parent: 16504 - - uid: 19630 + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23009 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,22.5 - parent: 16504 - - uid: 19631 + pos: 1.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23010 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 16504 - - uid: 19632 + pos: 1.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,17.5 - parent: 16504 - - uid: 19633 + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,17.5 - parent: 16504 - - uid: 19634 + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23013 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,20.5 - parent: 16504 - - uid: 19635 + pos: 1.5,2.5 + parent: 16527 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23014 + components: + - type: Transform + pos: 10.5,42.5 + parent: 16527 + - uid: 23015 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,24.5 - parent: 16504 - - uid: 19636 + pos: 10.5,42.5 + parent: 16527 + - uid: 23016 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,28.5 - parent: 16504 - - uid: 19637 + pos: 10.5,42.5 + parent: 16527 + - uid: 23017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,37.5 - parent: 16504 - - uid: 19638 + rot: -1.5707963267948966 rad + pos: 10.5,40.5 + parent: 16527 + - uid: 23018 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,12.5 - parent: 16504 - - uid: 19639 + pos: 10.5,40.5 + parent: 16527 + - uid: 23019 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,6.5 - parent: 16504 - - uid: 19640 - components: - - type: Transform - pos: -2.5,35.5 - parent: 16504 - - uid: 19641 + pos: 10.5,40.5 + parent: 16527 + - uid: 23020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,32.5 - parent: 16504 - - uid: 21238 + rot: -1.5707963267948966 rad + pos: 2.5,43.5 + parent: 16527 + - uid: 23021 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,52.5 - parent: 2 - - uid: 21712 + anchored: False + pos: -0.5,42.5 + parent: 16527 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 23022 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-39.5 - parent: 2 -- proto: PoweredSmallLightEmpty - entities: - - uid: 12099 + pos: -1.5,45.5 + parent: 16527 + - uid: 23023 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-12.5 - parent: 2 - - uid: 12100 + pos: -15.5,34.5 + parent: 16527 + - uid: 23024 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 2 - - uid: 12101 + pos: -8.5,33.5 + parent: 16527 + - uid: 23025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 2 - - uid: 19642 + rot: 1.5707963267948966 rad + pos: -13.5,28.5 + parent: 16527 + - uid: 23026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 16504 - - uid: 19643 + pos: -11.5,36.5 + parent: 16527 + - uid: 23027 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,23.5 - parent: 16504 - - uid: 19644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,27.5 - parent: 16504 - - uid: 19645 + pos: 1.5,46.5 + parent: 16527 + - uid: 23028 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,20.5 - parent: 16504 - - uid: 19646 + pos: -13.5,28.5 + parent: 16527 + - uid: 23029 components: - type: Transform - pos: -13.5,16.5 - parent: 16504 - - uid: 19647 + pos: -13.5,28.5 + parent: 16527 + - uid: 23030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,11.5 - parent: 16504 - - uid: 19648 + rot: -1.5707963267948966 rad + pos: -13.5,28.5 + parent: 16527 + - uid: 23031 components: - type: Transform - pos: -2.5,18.5 - parent: 16504 - - uid: 19649 + anchored: False + rot: -1.5707963267948966 rad + pos: -13.5,33.5 + parent: 16527 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 23032 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,14.5 - parent: 16504 - - uid: 19650 + pos: -13.5,33.5 + parent: 16527 + - uid: 23033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,20.5 - parent: 16504 - - uid: 19651 + anchored: False + rot: 1.5707963267948966 rad + pos: -13.5,33.5 + parent: 16527 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 23034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,28.5 - parent: 16504 - - uid: 19652 + pos: -13.5,33.5 + parent: 16527 +- proto: GasVentScrubberVox + entities: + - uid: 21335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,24.5 - parent: 16504 - - uid: 19653 + pos: 17.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2400 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasVolumePump + entities: + - uid: 10198 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,15.5 - parent: 16504 - - uid: 19654 + pos: 36.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,32.5 - parent: 16504 - - uid: 19655 + pos: 57.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' +- proto: Gateway + entities: + - uid: 21815 components: - type: Transform - pos: 3.5,35.5 - parent: 16504 -- proto: PoweredStrobeLightSiren + pos: -7.5,21.5 + parent: 2 + - type: Gateway + cooldown: 10 + enabled: True +- proto: Gauze entities: - - uid: 21791 + - uid: 23036 components: - type: Transform - pos: 25.5,-37.5 - parent: 2 - - uid: 21792 + pos: 11.740046,37.2521 + parent: 16527 +- proto: Gauze1 + entities: + - uid: 21373 components: - type: Transform - pos: 22.5,-37.5 + pos: 40.106827,-27.612164 parent: 2 - - uid: 21794 + - uid: 23037 components: - type: Transform - pos: 19.5,-37.5 - parent: 2 - - uid: 21795 + pos: 11.865046,32.017727 + parent: 16527 + - uid: 23038 components: - type: Transform - pos: 22.5,-41.5 - parent: 2 - - uid: 21797 + pos: 17.427546,35.77318 + parent: 16527 +- proto: GeigerCounter + entities: + - uid: 10200 components: - type: Transform - pos: 23.5,-33.5 + pos: 26.739191,-11.5469475 parent: 2 -- proto: PrinterDoc +- proto: GeneratorBasic15kW entities: - - uid: 1771 + - uid: 10201 components: - type: Transform - pos: 9.5,5.5 + pos: 74.5,16.5 parent: 2 - - uid: 12102 + - type: PowerSupplier + supplyRate: 35000 + - type: Anchorable + flags: Unanchorable + - uid: 23039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,22.5 - parent: 2 - - uid: 12103 + pos: -6.5,5.5 + parent: 16527 + - type: PowerSupplier + supplyRampRate: 1500 + supplyRampTolerance: 1500 + supplyRate: 25000 +- proto: GeneratorRTG + entities: + - uid: 9512 components: - type: Transform - pos: 23.5,30.5 + pos: 30.5,-37.5 parent: 2 - - uid: 12104 + - type: PowerSupplier + supplyRate: 20000 + - uid: 9717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,61.5 + pos: 29.5,16.5 parent: 2 - - uid: 12106 + - uid: 10203 components: - type: Transform - pos: 24.5,-12.5 + pos: 14.5,85.5 parent: 2 - - uid: 12107 + - uid: 10205 components: - type: Transform - pos: 8.5,20.5 + pos: 52.5,69.5 parent: 2 -- proto: Protolathe +- proto: GeneratorRTGDamaged entities: - - uid: 12108 + - uid: 9716 components: - type: Transform - pos: 22.5,7.5 + pos: 3.5,16.5 parent: 2 -- proto: PsychBed - entities: - - uid: 12109 + - uid: 13683 components: - type: Transform - pos: 68.5,6.5 + pos: 29.5,-37.5 parent: 2 - - uid: 12110 + - uid: 23040 components: - type: Transform - pos: 56.5,76.5 - parent: 2 -- proto: Puddle + pos: 19.5,61.5 + parent: 16527 +- proto: GeneratorWallmountBasic entities: - - uid: 12111 + - uid: 10207 components: - type: Transform - pos: 26.5,-8.5 + pos: 52.5,40.5 parent: 2 - - type: SolutionContainerManager - solutions: - puddle: - temperature: 293.15 - canReact: True - maxVol: 1000 - name: null - reagents: - - data: null - ReagentId: Blood - Quantity: 30 - - type: StepTrigger - active: False - - uid: 12112 + - type: PowerSupplier + supplyRate: 10000 + - uid: 10208 components: - type: Transform - pos: 28.5,-6.5 + pos: 77.5,5.5 parent: 2 - - type: SolutionContainerManager - solutions: - puddle: - temperature: 293.15 - canReact: True - maxVol: 1000 - name: null - reagents: - - data: null - ReagentId: CopperBlood - Quantity: 30 - - type: StepTrigger - active: False -- proto: Rack +- proto: Girder entities: - - uid: 12113 + - uid: 10209 components: - type: Transform - pos: 58.5,36.5 + pos: 29.5,-6.5 parent: 2 - - uid: 12114 + - uid: 10210 components: - type: Transform - pos: 60.5,30.5 + pos: 29.5,-12.5 parent: 2 - - uid: 12115 + - uid: 23041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,11.5 - parent: 2 - - uid: 12116 + pos: 19.5,9.5 + parent: 16527 + - uid: 23042 components: - type: Transform - pos: 33.5,17.5 - parent: 2 - - uid: 12117 + pos: 20.5,-3.5 + parent: 16527 + - uid: 23043 components: - type: Transform - pos: 30.5,-1.5 - parent: 2 - - uid: 12118 + pos: 20.5,2.5 + parent: 16527 + - uid: 23044 components: - type: Transform - pos: 38.5,8.5 - parent: 2 - - uid: 12119 + pos: 22.5,5.5 + parent: 16527 + - uid: 23045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,58.5 - parent: 2 - - uid: 12120 + pos: 21.5,-0.5 + parent: 16527 + - uid: 23046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,57.5 - parent: 2 - - uid: 12121 + rot: 1.5707963267948966 rad + pos: 30.5,48.5 + parent: 16527 + - uid: 23047 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,57.5 - parent: 2 - - uid: 12122 + pos: 26.5,42.5 + parent: 16527 +- proto: GlowstickBase + entities: + - uid: 10211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,71.5 + pos: 63.5,-0.5 parent: 2 - - uid: 12123 +- proto: GlowstickYellow + entities: + - uid: 23048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,41.5 - parent: 2 - - uid: 12124 + pos: -34.725906,48.551697 + parent: 16527 + - uid: 23049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,37.5 - parent: 2 - - uid: 12125 + pos: -35.038437,47.94232 + parent: 16527 +- proto: GravityGenerator + entities: + - uid: 12553 components: - type: Transform - pos: 9.5,23.5 + pos: 50.5,48.5 parent: 2 - - uid: 12126 +- proto: GravityGeneratorMini + entities: + - uid: 23050 components: - type: Transform - pos: 2.5,21.5 - parent: 2 - - uid: 12127 + pos: -11.5,31.5 + parent: 16527 +- proto: GrenadeBaton + entities: + - uid: 23052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-17.5 - parent: 2 - - uid: 12128 + parent: 23051 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23053 components: - type: Transform - pos: 75.5,24.5 - parent: 2 - - uid: 12129 + parent: 23051 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeBlast + entities: + - uid: 23054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,40.5 - parent: 2 - - uid: 12130 + parent: 23051 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23057 components: - type: Transform - pos: 66.5,32.5 - parent: 2 - - uid: 12131 + parent: 23056 + - type: Physics + canCollide: False + - uid: 23059 components: - type: Transform - pos: 43.5,-12.5 - parent: 2 - - uid: 12132 + parent: 23058 + - type: Physics + canCollide: False +- proto: GrenadeEMP + entities: + - uid: 23055 components: - type: Transform - pos: 78.5,11.5 - parent: 2 - - uid: 12133 + parent: 23051 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeFlash + entities: + - uid: 23060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,8.5 + parent: 23058 + - type: Physics + canCollide: False +- proto: GrenadeIncendiary + entities: + - uid: 1063 + components: + - type: Transform + parent: 1057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeStinger + entities: + - uid: 1064 + components: + - type: Transform + parent: 1057 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1065 + components: + - type: Transform + parent: 1057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Grille + entities: + - uid: 2383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-40.5 parent: 2 - - uid: 12134 + - uid: 2385 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-8.5 + pos: 18.5,-35.5 parent: 2 - - uid: 12135 + - uid: 2386 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-6.5 + pos: 18.5,-34.5 parent: 2 - - uid: 16134 + - uid: 2391 components: - type: Transform - pos: 42.5,57.5 + rot: 3.141592653589793 rad + pos: 26.5,-35.5 parent: 2 - - uid: 19656 + - uid: 2399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,23.5 - parent: 16504 - - uid: 19657 + rot: 3.141592653589793 rad + pos: 26.5,-34.5 + parent: 2 + - uid: 3149 components: - type: Transform - pos: -12.5,27.5 - parent: 16504 - - uid: 19658 + rot: -1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 2 + - uid: 3150 components: - type: Transform - pos: -27.5,29.5 - parent: 16504 - - uid: 19659 + rot: -1.5707963267948966 rad + pos: 11.5,-39.5 + parent: 2 + - uid: 3151 components: - type: Transform - pos: -27.5,30.5 - parent: 16504 - - uid: 19660 + rot: -1.5707963267948966 rad + pos: 11.5,-38.5 + parent: 2 + - uid: 3152 components: - type: Transform - pos: -20.5,14.5 - parent: 16504 - - uid: 19661 + rot: -1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 2 + - uid: 3153 components: - type: Transform - pos: -1.5,43.5 - parent: 16504 - - uid: 19662 + rot: -1.5707963267948966 rad + pos: 17.5,-31.5 + parent: 2 + - uid: 3165 components: - type: Transform - pos: 2.5,43.5 - parent: 16504 - - uid: 19663 + rot: -1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 2 + - uid: 3166 components: - type: Transform - pos: 2.5,41.5 - parent: 16504 - - uid: 19664 + rot: -1.5707963267948966 rad + pos: 17.5,-28.5 + parent: 2 + - uid: 3167 components: - type: Transform - pos: -1.5,41.5 - parent: 16504 - - uid: 19665 + rot: -1.5707963267948966 rad + pos: 9.5,-29.5 + parent: 2 + - uid: 3168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,33.5 - parent: 16504 - - uid: 19666 + rot: -1.5707963267948966 rad + pos: 12.5,-27.5 + parent: 2 + - uid: 3169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,34.5 - parent: 16504 - - uid: 19667 + rot: -1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 2 + - uid: 3211 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,26.5 - parent: 16504 -- proto: RadiationCollector - entities: - - uid: 12137 + pos: 6.5,-26.5 + parent: 2 + - uid: 4261 components: - type: Transform - pos: 50.5,70.5 + rot: -1.5707963267948966 rad + pos: 30.5,-33.5 parent: 2 - - uid: 12138 + - uid: 4265 components: - type: Transform - pos: 50.5,68.5 + rot: -1.5707963267948966 rad + pos: 35.5,-33.5 parent: 2 - - uid: 12139 + - uid: 4266 components: - type: Transform - pos: 50.5,69.5 + rot: -1.5707963267948966 rad + pos: 35.5,-39.5 parent: 2 -- proto: RadiationCollectorFullTank - entities: - - uid: 12140 + - uid: 4268 components: - type: Transform - pos: 54.5,69.5 + rot: -1.5707963267948966 rad + pos: 14.5,-31.5 parent: 2 - - uid: 12141 + - uid: 4269 components: - type: Transform - pos: 54.5,68.5 + rot: -1.5707963267948966 rad + pos: 32.5,-43.5 parent: 2 - - uid: 12142 + - uid: 4270 components: - type: Transform - pos: 54.5,70.5 + rot: -1.5707963267948966 rad + pos: 29.5,-44.5 parent: 2 -- proto: RadioHandheld - entities: - - uid: 12143 + - uid: 4271 components: - type: Transform - pos: 15.51898,8.56956 + rot: -1.5707963267948966 rad + pos: 27.5,-46.5 parent: 2 - - uid: 12144 + - uid: 4272 components: - type: Transform - pos: 15.51898,8.56956 + rot: -1.5707963267948966 rad + pos: 26.5,-46.5 parent: 2 - - uid: 12145 + - uid: 4273 components: - type: Transform - pos: 39.499268,30.540098 + rot: -1.5707963267948966 rad + pos: 25.5,-46.5 parent: 2 - - uid: 12146 + - uid: 4274 components: - type: Transform - pos: 39.499268,30.540098 + rot: -1.5707963267948966 rad + pos: 25.5,-47.5 parent: 2 - - uid: 12147 + - uid: 4275 components: - type: Transform - pos: 75.25991,15.642418 + rot: -1.5707963267948966 rad + pos: 24.5,-47.5 parent: 2 -- proto: RagItem - entities: - - uid: 19668 - components: - - type: Transform - pos: 11.558048,28.70389 - parent: 16504 - - uid: 21251 + - uid: 4276 components: - type: Transform - pos: 21.186382,55.838703 + rot: -1.5707963267948966 rad + pos: 21.5,-48.5 parent: 2 -- proto: Railing - entities: - - uid: 250 + - uid: 4277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,22.5 + rot: -1.5707963267948966 rad + pos: 20.5,-48.5 parent: 2 - - uid: 3851 + - uid: 4278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,40.5 + rot: -1.5707963267948966 rad + pos: 20.5,-47.5 parent: 2 - - uid: 6171 + - uid: 4294 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,41.5 + pos: 14.5,-28.5 parent: 2 - - uid: 6200 + - uid: 4295 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,42.5 + rot: -1.5707963267948966 rad + pos: 13.5,-27.5 parent: 2 - - uid: 6934 + - uid: 4296 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,40.5 + pos: 10.5,-28.5 parent: 2 - - uid: 7934 + - uid: 4301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,42.5 + rot: -1.5707963267948966 rad + pos: 10.5,-29.5 parent: 2 - - uid: 9694 + - uid: 4303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,41.5 + rot: -1.5707963267948966 rad + pos: 19.5,-28.5 parent: 2 - - uid: 10375 + - uid: 4325 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,42.5 + pos: 18.5,-40.5 parent: 2 - - uid: 12148 + - uid: 4331 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,18.5 + rot: 1.5707963267948966 rad + pos: 7.5,-30.5 parent: 2 - - uid: 12151 + - uid: 4332 components: - type: Transform - pos: 6.5,-0.5 + rot: 1.5707963267948966 rad + pos: 6.5,-28.5 parent: 2 - - uid: 12155 + - uid: 4333 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,18.5 + rot: 1.5707963267948966 rad + pos: 6.5,-27.5 parent: 2 - - uid: 12156 + - uid: 4334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,8.5 + rot: 1.5707963267948966 rad + pos: 7.5,-26.5 parent: 2 - - uid: 12157 + - uid: 4335 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,6.5 + pos: 6.5,-25.5 parent: 2 - - uid: 12158 + - uid: 4343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,7.5 + rot: -1.5707963267948966 rad + pos: 20.5,-28.5 parent: 2 - - uid: 12159 + - uid: 4973 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,8.5 + pos: 7.5,-23.5 parent: 2 - - uid: 12160 + - uid: 4987 components: - type: Transform - pos: 30.5,5.5 + rot: -1.5707963267948966 rad + pos: 34.5,-33.5 parent: 2 - - uid: 12161 + - uid: 4988 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,7.5 + pos: 36.5,-38.5 parent: 2 - - uid: 12162 + - uid: 5108 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,6.5 + pos: 34.5,-39.5 parent: 2 - - uid: 12163 + - uid: 5119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,9.5 + rot: -1.5707963267948966 rad + pos: 32.5,-42.5 parent: 2 - - uid: 12164 + - uid: 5122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,9.5 + rot: -1.5707963267948966 rad + pos: 33.5,-42.5 parent: 2 - - uid: 12165 + - uid: 5123 components: - type: Transform - pos: 29.5,5.5 + rot: -1.5707963267948966 rad + pos: 31.5,-43.5 parent: 2 - - uid: 12171 + - uid: 5129 components: - type: Transform - pos: -3.5,16.5 + rot: -1.5707963267948966 rad + pos: 12.5,-38.5 parent: 2 - - uid: 12172 + - uid: 5213 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,18.5 + rot: -1.5707963267948966 rad + pos: 10.5,-35.5 parent: 2 - - uid: 12173 + - uid: 5214 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,18.5 + rot: -1.5707963267948966 rad + pos: 10.5,-34.5 parent: 2 - - uid: 12976 + - uid: 5215 components: - type: Transform - pos: 36.5,53.5 + rot: -1.5707963267948966 rad + pos: 9.5,-33.5 parent: 2 - - uid: 12979 + - uid: 5821 components: - type: Transform - pos: 35.5,53.5 + rot: -1.5707963267948966 rad + pos: 14.5,-32.5 parent: 2 - - uid: 13740 + - uid: 5826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,23.5 + rot: -1.5707963267948966 rad + pos: 13.5,-31.5 parent: 2 - - uid: 15673 + - uid: 5828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,42.5 + rot: -1.5707963267948966 rad + pos: 15.5,-31.5 parent: 2 - - uid: 19670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 16504 - - uid: 19671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 16504 - - uid: 19672 + - uid: 5829 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 16504 - - uid: 19673 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 16504 - - uid: 19674 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 16504 - - uid: 19675 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 16504 - - uid: 19676 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 16504 - - uid: 19677 + pos: 16.5,-31.5 + parent: 2 + - uid: 8036 components: - type: Transform - pos: 3.5,-13.5 - parent: 16504 - - uid: 19678 + pos: 74.5,13.5 + parent: 2 + - uid: 10213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,18.5 - parent: 16504 - - uid: 19679 + pos: 82.5,14.5 + parent: 2 + - uid: 10214 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,17.5 - parent: 16504 - - uid: 19680 + pos: 69.5,67.5 + parent: 2 + - uid: 10215 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,17.5 - parent: 16504 - - uid: 19681 + pos: 78.5,67.5 + parent: 2 + - uid: 10217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,18.5 - parent: 16504 - - uid: 19682 + pos: 50.5,50.5 + parent: 2 + - uid: 10218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,14.5 - parent: 16504 - - uid: 19683 + rot: -1.5707963267948966 rad + pos: 86.5,16.5 + parent: 2 + - uid: 10219 components: - type: Transform - pos: 5.5,15.5 - parent: 16504 - - uid: 19684 + pos: 58.5,44.5 + parent: 2 + - uid: 10224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,14.5 - parent: 16504 - - uid: 19685 + pos: 62.5,38.5 + parent: 2 + - uid: 10225 components: - type: Transform - pos: -4.5,15.5 - parent: 16504 - - uid: 19686 + rot: -1.5707963267948966 rad + pos: 60.5,39.5 + parent: 2 + - uid: 10227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,16.5 - parent: 16504 - - uid: 19687 + pos: 10.5,-10.5 + parent: 2 + - uid: 10228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,15.5 - parent: 16504 - - uid: 19688 + pos: 36.5,85.5 + parent: 2 + - uid: 10229 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 16504 - - uid: 19689 + pos: 51.5,58.5 + parent: 2 + - uid: 10230 components: - type: Transform - pos: 0.5,17.5 - parent: 16504 - - uid: 19690 + pos: 68.5,68.5 + parent: 2 + - uid: 10231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,34.5 - parent: 16504 - - uid: 19691 + rot: -1.5707963267948966 rad + pos: 82.5,22.5 + parent: 2 + - uid: 10232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,33.5 - parent: 16504 - - uid: 19692 + pos: 72.5,69.5 + parent: 2 + - uid: 10233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,32.5 - parent: 16504 - - uid: 19693 + pos: 66.5,68.5 + parent: 2 + - uid: 10234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,31.5 - parent: 16504 - - uid: 19694 + pos: 49.5,62.5 + parent: 2 + - uid: 10235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,30.5 - parent: 16504 - - uid: 19695 + pos: 77.5,69.5 + parent: 2 + - uid: 10236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,27.5 - parent: 16504 - - uid: 19696 + pos: 76.5,69.5 + parent: 2 + - uid: 10237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,26.5 - parent: 16504 - - uid: 19697 + pos: 84.5,68.5 + parent: 2 + - uid: 10238 components: - type: Transform - pos: 34.5,25.5 - parent: 16504 - - uid: 19698 + pos: 57.5,35.5 + parent: 2 + - uid: 10239 components: - type: Transform - pos: 33.5,25.5 - parent: 16504 - - uid: 19699 + rot: 1.5707963267948966 rad + pos: 46.5,63.5 + parent: 2 + - uid: 10240 components: - type: Transform - pos: 27.5,25.5 - parent: 16504 - - uid: 19700 + pos: 49.5,61.5 + parent: 2 + - uid: 10241 components: - type: Transform - pos: 26.5,25.5 - parent: 16504 - - uid: 19701 + rot: 3.141592653589793 rad + pos: 46.5,62.5 + parent: 2 + - uid: 10242 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,26.5 - parent: 16504 - - uid: 19702 + pos: 88.5,18.5 + parent: 2 + - uid: 10243 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,27.5 - parent: 16504 - - uid: 19703 + pos: 88.5,16.5 + parent: 2 + - uid: 10244 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,30.5 - parent: 16504 - - uid: 19704 + pos: 83.5,22.5 + parent: 2 + - uid: 10245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,31.5 - parent: 16504 - - uid: 19705 + pos: 58.5,42.5 + parent: 2 + - uid: 10246 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,32.5 - parent: 16504 - - uid: 19706 + pos: 38.5,22.5 + parent: 2 + - uid: 10247 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,33.5 - parent: 16504 - - uid: 19707 + pos: 56.5,38.5 + parent: 2 + - uid: 10248 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,34.5 - parent: 16504 - - uid: 20511 + pos: 33.5,85.5 + parent: 2 + - uid: 10249 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-9.5 - parent: 16504 - - uid: 20514 + pos: 56.5,44.5 + parent: 2 + - uid: 10250 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-9.5 - parent: 16504 - - uid: 20522 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 16504 - - uid: 20526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 16504 - - uid: 20527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 16504 - - uid: 21898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,20.5 + pos: 70.5,67.5 parent: 2 - - uid: 21899 + - uid: 10251 components: - type: Transform - pos: -4.5,16.5 + pos: 70.5,69.5 parent: 2 - - uid: 21900 + - uid: 10252 components: - type: Transform - pos: -5.5,16.5 + pos: 56.5,95.5 parent: 2 - - uid: 22507 + - uid: 10253 components: - type: Transform - pos: -12.5,17.5 + pos: 53.5,64.5 parent: 2 - - uid: 22508 + - uid: 10254 components: - type: Transform - pos: -11.5,17.5 + pos: 55.5,92.5 parent: 2 - - uid: 22509 + - uid: 10255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,19.5 + pos: 56.5,93.5 parent: 2 - - uid: 22510 + - uid: 10256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,19.5 + pos: 21.5,-22.5 parent: 2 -- proto: RailingCorner - entities: - - uid: 252 + - uid: 10257 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,23.5 + pos: 52.5,64.5 parent: 2 - - uid: 489 + - uid: 10258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,42.5 + pos: 49.5,63.5 parent: 2 - - uid: 6923 + - uid: 10259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,42.5 + pos: 53.5,95.5 parent: 2 - - uid: 12174 + - uid: 10260 components: - type: Transform - pos: 31.5,5.5 + pos: 60.5,88.5 parent: 2 - - uid: 12175 + - uid: 10261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,5.5 + pos: 53.5,93.5 parent: 2 - - uid: 12176 + - uid: 10262 components: - type: Transform - pos: 57.5,-11.5 + pos: 25.5,-23.5 parent: 2 - - uid: 12177 + - uid: 10263 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,9.5 + pos: 80.5,69.5 parent: 2 - - uid: 12178 + - uid: 10264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,9.5 + rot: 3.141592653589793 rad + pos: 78.5,68.5 parent: 2 - - uid: 16197 + - uid: 10265 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,22.5 + pos: 78.5,69.5 parent: 2 - - uid: 19708 + - uid: 10266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 16504 - - uid: 19712 + rot: 3.141592653589793 rad + pos: 77.5,67.5 + parent: 2 + - uid: 10267 components: - type: Transform - pos: 4.5,-13.5 - parent: 16504 - - uid: 19713 + rot: 3.141592653589793 rad + pos: 76.5,67.5 + parent: 2 + - uid: 10268 components: - type: Transform - pos: 5.5,-12.5 - parent: 16504 - - uid: 19714 + rot: 3.141592653589793 rad + pos: 75.5,68.5 + parent: 2 + - uid: 10270 components: - type: Transform - pos: 6.5,-11.5 - parent: 16504 - - uid: 19715 + rot: 3.141592653589793 rad + pos: 75.5,67.5 + parent: 2 + - uid: 10271 components: - type: Transform - pos: 7.5,-10.5 - parent: 16504 - - uid: 19716 + pos: 43.5,91.5 + parent: 2 + - uid: 10273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,18.5 - parent: 16504 - - uid: 19717 + pos: 49.5,91.5 + parent: 2 + - uid: 10274 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,25.5 - parent: 16504 - - uid: 19718 + pos: 88.5,15.5 + parent: 2 + - uid: 10275 components: - type: Transform - pos: 35.5,25.5 - parent: 16504 - - uid: 20518 + pos: 81.5,14.5 + parent: 2 + - uid: 10276 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 16504 - - uid: 20523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 16504 - - uid: 21776 + pos: -3.5,33.5 + parent: 2 + - uid: 10277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,23.5 + rot: 3.141592653589793 rad + pos: -3.5,32.5 parent: 2 - - uid: 22511 + - uid: 10278 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,19.5 + pos: -0.5,28.5 parent: 2 - - uid: 22512 + - uid: 10279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,17.5 + pos: 5.5,4.5 parent: 2 -- proto: RailingCornerSmall - entities: - - uid: 251 + - uid: 10280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,23.5 + pos: 4.5,4.5 parent: 2 - - uid: 253 + - uid: 10281 components: - type: Transform - pos: -6.5,23.5 + pos: 2.5,0.5 parent: 2 - - uid: 11080 + - uid: 10282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,40.5 + pos: -0.5,7.5 parent: 2 - - uid: 12181 + - uid: 10283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,16.5 + pos: 0.5,7.5 parent: 2 - - uid: 16204 + - uid: 10284 components: - type: Transform - pos: -8.5,22.5 + pos: 8.5,11.5 parent: 2 - - uid: 19719 + - uid: 10286 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-12.5 - parent: 16504 - - uid: 19720 + pos: -0.5,14.5 + parent: 2 + - uid: 10287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-11.5 - parent: 16504 - - uid: 19721 + pos: 14.5,26.5 + parent: 2 + - uid: 10288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-10.5 - parent: 16504 - - uid: 19725 + pos: 6.5,12.5 + parent: 2 + - uid: 10289 components: - type: Transform - pos: -3.5,17.5 - parent: 16504 - - uid: 19726 + pos: -0.5,12.5 + parent: 2 + - uid: 10290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 16504 - - uid: 19727 + pos: -0.5,13.5 + parent: 2 + - uid: 10291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,15.5 - parent: 16504 - - uid: 19728 + pos: -1.5,7.5 + parent: 2 + - uid: 10292 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,17.5 - parent: 16504 - - uid: 19729 - components: - - type: Transform - pos: 1.5,15.5 - parent: 16504 - - uid: 19730 + pos: 1.5,10.5 + parent: 2 + - uid: 10293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,17.5 - parent: 16504 - - uid: 19731 + pos: 6.5,0.5 + parent: 2 + - uid: 10294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 - parent: 16504 - - uid: 19732 + pos: 5.5,0.5 + parent: 2 + - uid: 10295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,15.5 - parent: 16504 - - uid: 19733 + pos: 14.5,11.5 + parent: 2 + - uid: 10296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,35.5 - parent: 16504 - - uid: 19734 + pos: 34.5,26.5 + parent: 2 + - uid: 10297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,35.5 - parent: 16504 - - uid: 21895 + pos: 22.5,31.5 + parent: 2 + - uid: 10298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,18.5 + pos: 30.5,29.5 parent: 2 - - uid: 22150 + - uid: 10299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 16504 - - uid: 22151 + pos: 26.5,31.5 + parent: 2 + - uid: 10300 components: - type: Transform - pos: -2.5,-9.5 - parent: 16504 - - uid: 22513 + pos: 23.5,31.5 + parent: 2 + - uid: 10301 components: - type: Transform - pos: -10.5,19.5 + pos: 24.5,31.5 parent: 2 - - uid: 22514 + - uid: 10302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,17.5 + pos: 17.5,26.5 parent: 2 -- proto: RailingRound - entities: - - uid: 3218 + - uid: 10303 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,24.5 + pos: 27.5,31.5 parent: 2 - - uid: 12182 + - uid: 10304 components: - type: Transform - pos: 56.5,79.5 + pos: 19.5,-3.5 parent: 2 -- proto: RandomArcade - entities: - - uid: 12183 + - uid: 10305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,33.5 + pos: 18.5,28.5 parent: 2 - - uid: 12184 + - uid: 10306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,32.5 + pos: 34.5,24.5 parent: 2 -- proto: RandomArtifactSpawner - entities: - - uid: 12185 + - uid: 10307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,64.5 + pos: 14.5,20.5 parent: 2 - - uid: 12186 + - uid: 10308 components: - type: Transform - pos: 18.5,-7.5 + pos: 14.5,24.5 parent: 2 - - uid: 20435 + - uid: 10309 components: - type: Transform - pos: -9.5,20.5 + pos: 25.5,31.5 parent: 2 -- proto: RandomBoard - entities: - - uid: 12187 + - uid: 10310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,65.5 + pos: 28.5,31.5 parent: 2 -- proto: RandomCargoCorpseSpawner - entities: - - uid: 19735 + - uid: 10311 components: - type: Transform - pos: -16.5,22.5 - parent: 16504 - - uid: 19736 + pos: 18.5,29.5 + parent: 2 + - uid: 10312 components: - type: Transform - pos: -9.5,24.5 - parent: 16504 -- proto: RandomDrinkBottle - entities: - - uid: 12188 + pos: 30.5,28.5 + parent: 2 + - uid: 10313 components: - type: Transform - pos: 68.5,63.5 + pos: 21.5,31.5 parent: 2 - - uid: 12189 + - uid: 10314 components: - type: Transform - pos: 32.5,62.5 + pos: 20.5,31.5 parent: 2 -- proto: RandomDrinkGlass - entities: - - uid: 12190 + - uid: 10315 components: - type: Transform - pos: 68.5,60.5 + pos: 19.5,-0.5 parent: 2 - - uid: 13476 + - uid: 10316 components: - type: Transform - pos: 24.5,47.5 + pos: 14.5,28.5 parent: 2 - - uid: 21428 + - uid: 10317 components: - type: Transform - pos: 23.5,51.5 + pos: 14.5,29.5 parent: 2 - - uid: 21429 + - uid: 10318 components: - type: Transform - pos: 20.5,51.5 + pos: 14.5,32.5 parent: 2 - - uid: 21430 + - uid: 10319 components: - type: Transform - pos: 22.5,51.5 + pos: 14.5,33.5 parent: 2 -- proto: RandomDrinkSoda - entities: - - uid: 12191 + - uid: 10320 components: - type: Transform - pos: 27.5,63.5 + pos: 16.5,35.5 parent: 2 -- proto: RandomEngineerCorpseSpawner - entities: - - uid: 19737 + - uid: 10321 components: - type: Transform - pos: -4.5,34.5 - parent: 16504 - - uid: 19738 + pos: 17.5,35.5 + parent: 2 + - uid: 10322 components: - type: Transform - pos: 20.5,34.5 - parent: 16504 -- proto: RandomFoodMeal - entities: - - uid: 5861 + pos: 20.5,35.5 + parent: 2 + - uid: 10323 components: - type: Transform - pos: 25.5,47.5 + pos: 21.5,35.5 parent: 2 - - uid: 12192 + - uid: 10324 components: - type: Transform - pos: 68.5,57.5 + pos: 27.5,35.5 parent: 2 - - uid: 21389 + - uid: 10325 components: - type: Transform - pos: 28.5,45.5 + pos: 28.5,35.5 parent: 2 - - uid: 21390 + - uid: 10326 components: - type: Transform - pos: 30.5,43.5 + pos: 31.5,35.5 parent: 2 - - uid: 21391 + - uid: 10327 components: - type: Transform - pos: 33.5,45.5 + pos: 32.5,35.5 parent: 2 - - uid: 21392 + - uid: 10328 components: - type: Transform - pos: 30.5,46.5 + pos: 34.5,33.5 parent: 2 - - uid: 21448 + - uid: 10329 components: - type: Transform - pos: 28.5,47.5 + pos: 34.5,32.5 parent: 2 - - uid: 21853 + - uid: 10330 components: - type: Transform - pos: 26.5,47.5 + pos: 34.5,29.5 parent: 2 -- proto: RandomFoodSingle - entities: - - uid: 12194 + - uid: 10331 components: - type: Transform - pos: 68.5,60.5 + pos: 34.5,28.5 parent: 2 - - uid: 21257 + - uid: 10332 components: - type: Transform - pos: 27.5,51.5 + pos: 19.5,-1.5 parent: 2 - - uid: 21258 + - uid: 10333 components: - type: Transform - pos: 29.5,51.5 + pos: 14.5,19.5 parent: 2 - - uid: 21259 + - uid: 10334 components: - type: Transform - pos: 30.5,51.5 + pos: 25.5,35.5 parent: 2 - - uid: 21260 + - uid: 10335 components: - type: Transform - pos: 28.5,51.5 + pos: 23.5,35.5 parent: 2 - - uid: 21261 + - uid: 10336 components: - type: Transform - pos: 31.5,51.5 + pos: 24.5,35.5 parent: 2 -- proto: RandomInstruments - entities: - - uid: 12197 + - uid: 10337 components: - type: Transform - pos: 28.5,63.5 + pos: 14.5,18.5 parent: 2 - - uid: 12198 + - uid: 10338 components: - type: Transform - pos: 32.5,63.5 + pos: 16.5,20.5 parent: 2 - - uid: 12199 + - uid: 10339 components: - type: Transform - pos: 15.5,-11.5 + pos: 22.5,15.5 parent: 2 -- proto: RandomMedicCorpseSpawner - entities: - - uid: 19739 + - uid: 10340 components: - type: Transform - pos: 13.5,31.5 - parent: 16504 - - uid: 19740 + pos: 44.5,27.5 + parent: 2 + - uid: 10342 components: - type: Transform - pos: 10.5,38.5 - parent: 16504 -- proto: RandomPainting - entities: - - uid: 12200 + pos: 19.5,5.5 + parent: 2 + - uid: 10344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,10.5 + pos: 39.5,6.5 parent: 2 - - uid: 12201 + - uid: 10345 components: - type: Transform - pos: 66.5,60.5 + pos: 48.5,5.5 parent: 2 - - uid: 12202 + - uid: 10346 components: - type: Transform - pos: 67.5,63.5 + pos: 46.5,5.5 parent: 2 - - uid: 12203 + - uid: 10347 components: - type: Transform - pos: 63.5,60.5 + pos: 56.5,-6.5 parent: 2 - - uid: 12204 + - uid: 10348 components: - type: Transform - pos: 59.5,57.5 + pos: 55.5,-6.5 parent: 2 - - uid: 12205 + - uid: 10349 components: - type: Transform - pos: 32.5,23.5 + pos: 54.5,-6.5 parent: 2 - - uid: 12206 + - uid: 10350 components: - type: Transform - pos: 16.5,23.5 + pos: 53.5,-6.5 parent: 2 -- proto: RandomPosterAny - entities: - - uid: 12207 + - uid: 10351 components: - type: Transform - pos: 7.5,24.5 + pos: 38.5,20.5 parent: 2 - - uid: 12208 + - uid: 10352 components: - type: Transform - pos: 2.5,18.5 + pos: 38.5,19.5 parent: 2 - - uid: 12209 + - uid: 10353 components: - type: Transform - pos: 19.5,63.5 + pos: 38.5,16.5 parent: 2 - - uid: 12210 + - uid: 10354 components: - type: Transform - pos: 11.5,46.5 + pos: 38.5,17.5 parent: 2 - - uid: 12211 + - uid: 10357 components: - type: Transform - pos: 35.5,62.5 + pos: 38.5,27.5 parent: 2 - - uid: 12212 + - uid: 10358 components: - type: Transform - pos: 9.5,56.5 + pos: 46.5,25.5 parent: 2 - - uid: 12213 + - uid: 10359 components: - type: Transform - pos: 13.5,53.5 + pos: 38.5,31.5 parent: 2 - - uid: 12214 + - uid: 10360 components: - type: Transform - pos: 65.5,43.5 + pos: 38.5,30.5 parent: 2 - - uid: 12215 + - uid: 10361 components: - type: Transform - pos: 56.5,67.5 + pos: 51.5,37.5 parent: 2 - - uid: 12216 + - uid: 10362 components: - type: Transform - pos: 86.5,22.5 + pos: 55.5,19.5 parent: 2 - - uid: 12217 + - uid: 10363 components: - type: Transform - pos: 63.5,16.5 + pos: 57.5,19.5 parent: 2 - - uid: 12218 + - uid: 10364 components: - type: Transform - pos: 53.5,-8.5 + pos: 58.5,19.5 parent: 2 - - uid: 12219 + - uid: 10365 components: - type: Transform - pos: 31.5,-11.5 + pos: 54.5,19.5 parent: 2 - - uid: 12220 + - uid: 10366 components: - type: Transform - pos: 60.5,-4.5 + pos: 48.5,32.5 parent: 2 - - uid: 12221 + - uid: 10367 components: - type: Transform - pos: 84.5,12.5 + pos: 59.5,47.5 parent: 2 - - uid: 12222 + - uid: 10368 components: - type: Transform - pos: 64.5,2.5 + pos: 62.5,54.5 parent: 2 - - uid: 12223 + - uid: 10369 components: - type: Transform - pos: 44.5,-14.5 + pos: 52.5,67.5 parent: 2 - - uid: 12224 + - uid: 10370 components: - type: Transform - pos: 33.5,-6.5 + pos: 8.5,42.5 parent: 2 - - uid: 12225 + - uid: 10371 components: - type: Transform - pos: 65.5,30.5 + pos: 8.5,41.5 parent: 2 - - uid: 12226 + - uid: 10377 components: - type: Transform - pos: 11.5,43.5 + pos: 31.5,24.5 parent: 2 - - uid: 12227 + - uid: 10378 components: - type: Transform - pos: 11.5,62.5 + pos: 84.5,52.5 parent: 2 - - uid: 12228 + - uid: 10379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,41.5 + pos: 17.5,24.5 parent: 2 - - uid: 12229 + - uid: 10380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,34.5 + pos: 31.5,26.5 parent: 2 - - uid: 12230 + - uid: 10381 components: - type: Transform - pos: 56.5,57.5 + pos: 61.5,-6.5 parent: 2 - - uid: 21586 + - uid: 10382 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,56.5 + pos: 1.5,32.5 parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 12231 + - uid: 10383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,37.5 + pos: 5.5,39.5 parent: 2 - - uid: 12232 + - uid: 10384 components: - type: Transform - pos: 15.5,75.5 + pos: 4.5,39.5 parent: 2 - - uid: 12233 + - uid: 10385 components: - type: Transform - pos: 14.5,84.5 + pos: 3.5,39.5 parent: 2 - - uid: 12234 + - uid: 10386 components: - type: Transform - pos: 65.5,25.5 + pos: 7.5,39.5 parent: 2 - - uid: 19741 + - uid: 10387 components: - type: Transform - pos: -16.5,5.5 - parent: 16504 - - uid: 19742 + pos: 28.5,65.5 + parent: 2 + - uid: 10388 components: - type: Transform - pos: -8.5,-0.5 - parent: 16504 - - uid: 19743 + pos: 11.5,67.5 + parent: 2 + - uid: 10389 components: - type: Transform - pos: -12.5,10.5 - parent: 16504 - - uid: 19744 + pos: 10.5,73.5 + parent: 2 + - uid: 10390 components: - type: Transform - pos: -4.5,13.5 - parent: 16504 - - uid: 19745 + pos: 11.5,75.5 + parent: 2 + - uid: 10394 components: - type: Transform - pos: 5.5,13.5 - parent: 16504 - - uid: 19746 + pos: 10.5,69.5 + parent: 2 + - uid: 10395 components: - type: Transform - pos: 13.5,10.5 - parent: 16504 - - uid: 19747 + pos: -1.5,22.5 + parent: 2 + - uid: 10397 components: - type: Transform - pos: 17.5,5.5 - parent: 16504 - - uid: 19748 + pos: 11.5,68.5 + parent: 2 + - uid: 10398 components: - type: Transform - pos: 14.5,-5.5 - parent: 16504 - - uid: 19749 + pos: 11.5,66.5 + parent: 2 + - uid: 10399 components: - type: Transform - pos: 15.5,39.5 - parent: 16504 - - uid: 19750 + pos: 10.5,71.5 + parent: 2 + - uid: 10401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,32.5 - parent: 16504 - - uid: 19751 + pos: 38.5,-13.5 + parent: 2 + - uid: 10402 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,29.5 - parent: 16504 - - uid: 19752 + pos: 10.5,77.5 + parent: 2 + - uid: 10406 components: - type: Transform - pos: 10.5,39.5 - parent: 16504 - - uid: 19753 + pos: 10.5,79.5 + parent: 2 + - uid: 10408 components: - type: Transform - pos: 1.5,44.5 - parent: 16504 - - uid: 19754 + pos: 10.5,81.5 + parent: 2 + - uid: 10410 components: - type: Transform - pos: -0.5,44.5 - parent: 16504 - - uid: 19755 + pos: 11.5,82.5 + parent: 2 + - uid: 10411 components: - type: Transform - pos: 1.5,36.5 - parent: 16504 - - uid: 19756 + pos: 11.5,83.5 + parent: 2 + - uid: 10413 components: - type: Transform - pos: -0.5,36.5 - parent: 16504 - - uid: 19757 + pos: 11.5,74.5 + parent: 2 + - uid: 10415 components: - type: Transform - pos: 3.5,11.5 - parent: 16504 - - uid: 19758 + pos: 11.5,76.5 + parent: 2 + - uid: 10416 components: - type: Transform - pos: 15.5,19.5 - parent: 16504 -- proto: RandomPosterLegit - entities: - - uid: 6539 + pos: 10.5,20.5 + parent: 2 + - uid: 10418 components: - type: Transform - pos: 25.5,-34.5 + pos: 16.5,-20.5 parent: 2 - - uid: 6650 + - uid: 10419 components: - type: Transform - pos: 20.5,-44.5 + pos: 29.5,-20.5 parent: 2 - - uid: 7308 + - uid: 10420 components: - type: Transform - pos: 28.5,-39.5 + pos: 33.5,-19.5 parent: 2 - - uid: 7357 + - uid: 10421 components: - type: Transform - pos: 21.5,-40.5 + pos: 33.5,-18.5 parent: 2 - - uid: 7559 + - uid: 10422 components: - type: Transform - pos: 17.5,-36.5 + pos: 34.5,65.5 parent: 2 - - uid: 12236 + - uid: 10423 components: - type: Transform - pos: 4.5,28.5 + pos: 33.5,65.5 parent: 2 - - uid: 12237 + - uid: 10424 components: - type: Transform - pos: 36.5,11.5 + pos: 53.5,-12.5 parent: 2 - - uid: 12238 + - uid: 10425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,39.5 + pos: 53.5,-13.5 parent: 2 - - uid: 12242 + - uid: 10426 components: - type: Transform - pos: 49.5,64.5 + pos: 69.5,1.5 parent: 2 - - uid: 12243 + - uid: 10427 components: - type: Transform - pos: 52.5,50.5 + pos: 76.5,16.5 parent: 2 - - uid: 12244 + - uid: 10428 components: - type: Transform - pos: 7.5,30.5 + pos: 76.5,18.5 parent: 2 - - uid: 12245 + - uid: 10430 components: - type: Transform - pos: 2.5,15.5 + pos: 73.5,21.5 parent: 2 - - uid: 12246 + - uid: 10431 components: - type: Transform - pos: 10.5,10.5 + pos: 84.5,49.5 parent: 2 - - uid: 12247 + - uid: 10432 components: - type: Transform - pos: 60.5,54.5 + pos: 85.5,49.5 parent: 2 - - uid: 12248 + - uid: 10433 components: - type: Transform - pos: 0.5,10.5 + pos: 84.5,47.5 parent: 2 - - uid: 12249 + - uid: 10434 components: - type: Transform - pos: 2.5,4.5 + pos: 85.5,47.5 parent: 2 - - uid: 12250 + - uid: 10435 components: - type: Transform - pos: 6.5,35.5 + pos: 86.5,49.5 parent: 2 - - uid: 12251 + - uid: 10436 components: - type: Transform - pos: 69.5,42.5 + pos: 86.5,47.5 parent: 2 - - uid: 12252 + - uid: 10437 components: - type: Transform - pos: 84.5,55.5 + pos: 86.5,42.5 parent: 2 - - uid: 12253 + - uid: 10438 components: - type: Transform - pos: 73.5,53.5 + pos: 85.5,42.5 parent: 2 - - uid: 12254 + - uid: 10439 components: - type: Transform - pos: 34.5,40.5 + pos: 84.5,42.5 parent: 2 - - uid: 12255 + - uid: 10440 components: - type: Transform - pos: 34.5,46.5 + pos: 86.5,40.5 parent: 2 - - uid: 12256 + - uid: 10441 components: - type: Transform - pos: 48.5,48.5 + pos: 85.5,40.5 parent: 2 - - uid: 12257 + - uid: 10442 components: - type: Transform - pos: 73.5,63.5 + pos: 84.5,40.5 parent: 2 - - uid: 12258 + - uid: 10443 components: - type: Transform - pos: 34.5,22.5 + pos: 84.5,45.5 parent: 2 - - uid: 12259 + - uid: 10444 components: - type: Transform - pos: 33.5,35.5 + pos: 84.5,44.5 parent: 2 - - uid: 12260 + - uid: 10445 components: - type: Transform - pos: 47.5,11.5 + pos: 84.5,38.5 parent: 2 - - uid: 12261 + - uid: 10446 components: - type: Transform - pos: 41.5,15.5 + pos: 84.5,37.5 parent: 2 - - uid: 12262 + - uid: 10447 components: - type: Transform - pos: 80.5,40.5 + pos: 84.5,36.5 parent: 2 - - uid: 12263 + - uid: 10448 components: - type: Transform - pos: 55.5,11.5 + pos: 74.5,25.5 parent: 2 - - uid: 12264 + - uid: 10449 components: - type: Transform - pos: 10.5,36.5 + pos: 75.5,25.5 parent: 2 - - uid: 12265 + - uid: 10450 components: - type: Transform - pos: 2.5,37.5 + pos: 76.5,25.5 parent: 2 - - uid: 12266 + - uid: 10451 components: - type: Transform - pos: 19.5,0.5 + pos: 77.5,26.5 parent: 2 - - uid: 12267 + - uid: 10452 components: - type: Transform - pos: 69.5,23.5 + pos: 77.5,27.5 parent: 2 - - uid: 12268 + - uid: 10453 components: - type: Transform - pos: 80.5,47.5 + pos: 77.5,28.5 parent: 2 - - uid: 12269 + - uid: 10454 components: - type: Transform - pos: 69.5,31.5 + pos: 76.5,29.5 parent: 2 - - uid: 12271 + - uid: 10455 components: - type: Transform - pos: 84.5,39.5 + pos: 75.5,29.5 parent: 2 - - uid: 12272 + - uid: 10456 components: - type: Transform - pos: 73.5,22.5 + pos: 74.5,29.5 parent: 2 - - uid: 12273 + - uid: 10457 components: - type: Transform - pos: 34.5,16.5 + pos: 73.5,28.5 parent: 2 - - uid: 12274 + - uid: 10458 components: - type: Transform - pos: 19.5,15.5 + pos: 73.5,27.5 parent: 2 - - uid: 12275 + - uid: 10459 components: - type: Transform - pos: 38.5,42.5 + pos: 73.5,26.5 parent: 2 - - uid: 12276 + - uid: 10460 components: - type: Transform - pos: 43.5,67.5 + pos: 79.5,43.5 parent: 2 - - uid: 12277 + - uid: 10461 components: - type: Transform - pos: 45.5,73.5 + pos: 73.5,50.5 parent: 2 - - uid: 12278 + - uid: 10462 components: - type: Transform - pos: 34.5,7.5 + pos: 73.5,49.5 parent: 2 - - uid: 12279 + - uid: 10463 components: - type: Transform - pos: 14.5,16.5 + pos: 73.5,48.5 parent: 2 - - uid: 12280 + - uid: 10464 components: - type: Transform - pos: 55.5,62.5 + pos: 73.5,46.5 parent: 2 - - uid: 12281 + - uid: 10465 components: - type: Transform - pos: 46.5,55.5 + pos: 73.5,45.5 parent: 2 - - uid: 12282 + - uid: 10466 components: - type: Transform - pos: 52.5,57.5 + pos: 73.5,44.5 parent: 2 -- proto: RandomScienceCorpseSpawner - entities: - - uid: 12283 + - uid: 10467 components: - type: Transform - pos: 14.5,-7.5 + pos: 78.5,43.5 parent: 2 -- proto: RandomSnacks - entities: - - uid: 12284 + - uid: 10468 components: - type: Transform - pos: 67.5,32.5 + pos: 77.5,44.5 parent: 2 -- proto: RandomSpawner - entities: - - uid: 504 + - uid: 10469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-9.5 + pos: 77.5,45.5 parent: 2 - - uid: 3208 + - uid: 10470 components: - type: Transform - pos: 74.5,4.5 + pos: 77.5,46.5 parent: 2 - - uid: 3209 + - uid: 10471 components: - type: Transform - pos: 76.5,2.5 + pos: 77.5,48.5 parent: 2 - - uid: 3210 + - uid: 10472 components: - type: Transform - pos: 74.5,2.5 + pos: 77.5,49.5 parent: 2 - - uid: 3345 + - uid: 10473 components: - type: Transform - pos: 73.5,3.5 + pos: 82.5,35.5 parent: 2 - - uid: 7654 + - uid: 10474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-6.5 + pos: 73.5,34.5 parent: 2 - - uid: 9690 + - uid: 10475 components: - type: Transform - pos: 31.5,54.5 + pos: 81.5,35.5 parent: 2 - - uid: 11576 + - uid: 10476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-11.5 + pos: 79.5,35.5 parent: 2 - - uid: 12285 + - uid: 10477 components: - type: Transform - pos: 59.5,36.5 + pos: 78.5,35.5 parent: 2 - - uid: 12286 + - uid: 10478 components: - type: Transform - pos: 43.5,60.5 + pos: 76.5,35.5 parent: 2 - - uid: 12287 + - uid: 10479 components: - type: Transform - pos: 39.5,67.5 + pos: 75.5,35.5 parent: 2 - - uid: 12288 + - uid: 10480 components: - type: Transform - pos: 58.5,38.5 + pos: 84.5,27.5 parent: 2 - - uid: 12289 + - uid: 10481 components: - type: Transform - pos: 57.5,40.5 + pos: 83.5,27.5 parent: 2 - - uid: 12290 + - uid: 10482 components: - type: Transform - pos: 40.5,60.5 + pos: 84.5,31.5 parent: 2 - - uid: 12291 + - uid: 10483 components: - type: Transform - pos: 43.5,63.5 + pos: 84.5,30.5 parent: 2 - - uid: 12292 + - uid: 10484 components: - type: Transform - pos: 40.5,63.5 + pos: 84.5,33.5 parent: 2 - - uid: 12293 + - uid: 10485 components: - type: Transform - pos: 57.5,39.5 + pos: 84.5,34.5 parent: 2 - - uid: 12294 + - uid: 10486 components: - type: Transform - pos: 59.5,41.5 + rot: -1.5707963267948966 rad + pos: 88.5,19.5 parent: 2 - - uid: 12295 + - uid: 10487 components: - type: Transform - pos: 57.5,37.5 + pos: 79.5,22.5 parent: 2 - - uid: 12296 + - uid: 10488 components: - type: Transform - pos: 55.5,40.5 + pos: 78.5,22.5 parent: 2 - - uid: 12297 + - uid: 10489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,3.5 + pos: 79.5,20.5 parent: 2 - - uid: 12298 + - uid: 10490 components: - type: Transform - pos: 31.5,3.5 + pos: 78.5,20.5 parent: 2 - - uid: 12299 + - uid: 10491 components: - type: Transform - pos: 52.5,35.5 + pos: 64.5,54.5 parent: 2 - - uid: 12300 + - uid: 10492 components: - type: Transform - pos: 17.5,1.5 + pos: 63.5,54.5 parent: 2 - - uid: 12301 + - uid: 10493 components: - type: Transform - pos: 26.5,10.5 + pos: 31.5,72.5 parent: 2 - - uid: 12302 + - uid: 10494 components: - type: Transform - pos: 17.5,12.5 + pos: 31.5,73.5 parent: 2 - - uid: 12304 + - uid: 10495 components: - type: Transform - pos: 49.5,56.5 + pos: 31.5,74.5 parent: 2 - - uid: 12305 + - uid: 10496 components: - type: Transform - pos: 63.5,57.5 + pos: 31.5,75.5 parent: 2 - - uid: 12306 + - uid: 10497 components: - type: Transform - pos: 80.5,55.5 + pos: 31.5,76.5 parent: 2 - - uid: 12307 + - uid: 10498 components: - type: Transform - pos: 72.5,44.5 + pos: 31.5,77.5 parent: 2 - - uid: 12308 + - uid: 10499 components: - type: Transform - pos: 71.5,36.5 + pos: 31.5,78.5 parent: 2 - - uid: 12309 + - uid: 10500 components: - type: Transform - pos: 80.5,37.5 + pos: 31.5,79.5 parent: 2 - - uid: 12310 + - uid: 10501 components: - type: Transform - pos: 81.5,49.5 + pos: 31.5,81.5 parent: 2 - - uid: 12311 + - uid: 10502 components: - type: Transform - pos: 71.5,27.5 + pos: 31.5,82.5 parent: 2 - - uid: 12312 + - uid: 10503 components: - type: Transform - pos: 70.5,18.5 + pos: 31.5,83.5 parent: 2 - - uid: 12313 + - uid: 10504 components: - type: Transform - pos: 71.5,12.5 + pos: 31.5,80.5 parent: 2 - - uid: 12314 + - uid: 10505 components: - type: Transform - pos: 64.5,13.5 + rot: 3.141592653589793 rad + pos: 47.5,80.5 parent: 2 - - uid: 12315 + - uid: 10506 components: - type: Transform - pos: 56.5,12.5 + pos: 82.5,69.5 parent: 2 - - uid: 12316 + - uid: 10507 components: - type: Transform - pos: 50.5,14.5 + pos: 61.5,87.5 parent: 2 - - uid: 12317 + - uid: 10508 components: - type: Transform - pos: 50.5,5.5 + pos: 35.5,85.5 parent: 2 - - uid: 12318 + - uid: 10509 components: - type: Transform - pos: 42.5,-13.5 + pos: 29.5,73.5 parent: 2 - - uid: 12320 + - uid: 10510 components: - type: Transform - pos: 30.5,-10.5 + pos: 29.5,75.5 parent: 2 - - uid: 12321 + - uid: 10511 components: - type: Transform - pos: 20.5,-18.5 + pos: 29.5,77.5 parent: 2 - - uid: 12322 + - uid: 10512 components: - type: Transform - pos: 14.5,-19.5 + pos: 29.5,79.5 parent: 2 - - uid: 12323 + - uid: 10513 components: - type: Transform - pos: 54.5,40.5 + pos: 29.5,81.5 parent: 2 - - uid: 14304 + - uid: 10514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-14.5 + pos: 29.5,83.5 parent: 2 - - uid: 19759 + - uid: 10515 components: - type: Transform - pos: -4.5,-6.5 - parent: 16504 - - uid: 19760 + pos: 31.5,71.5 + parent: 2 + - uid: 10516 components: - type: Transform - pos: -0.5,-5.5 - parent: 16504 - - uid: 19761 + pos: 51.5,67.5 + parent: 2 + - uid: 10517 components: - type: Transform - pos: 5.5,-6.5 - parent: 16504 - - uid: 19762 + pos: 40.5,76.5 + parent: 2 + - uid: 10518 components: - type: Transform - pos: -2.5,-1.5 - parent: 16504 - - uid: 19763 + pos: 16.5,78.5 + parent: 2 + - uid: 10519 components: - type: Transform - pos: -0.5,-3.5 - parent: 16504 - - uid: 19764 + pos: 16.5,76.5 + parent: 2 + - uid: 10520 components: - type: Transform - pos: 3.5,-2.5 - parent: 16504 - - uid: 19765 + pos: 16.5,75.5 + parent: 2 + - uid: 10521 components: - type: Transform - pos: -3.5,-9.5 - parent: 16504 - - uid: 19766 + pos: 16.5,74.5 + parent: 2 + - uid: 10522 components: - type: Transform - pos: -1.5,-12.5 - parent: 16504 - - uid: 19767 + pos: 16.5,73.5 + parent: 2 + - uid: 10523 components: - type: Transform - pos: 1.5,-10.5 - parent: 16504 - - uid: 19768 + pos: 16.5,71.5 + parent: 2 + - uid: 10524 components: - type: Transform - pos: 3.5,-12.5 - parent: 16504 - - uid: 19769 + pos: 16.5,70.5 + parent: 2 + - uid: 10525 components: - type: Transform - pos: 5.5,-9.5 - parent: 16504 - - uid: 19770 + pos: 16.5,68.5 + parent: 2 + - uid: 10526 components: - type: Transform - pos: 15.5,0.5 - parent: 16504 - - uid: 19771 + pos: 33.5,95.5 + parent: 2 + - uid: 10527 components: - type: Transform - pos: 17.5,2.5 - parent: 16504 - - uid: 19772 + pos: 36.5,95.5 + parent: 2 + - uid: 10528 components: - type: Transform - pos: 5.5,11.5 - parent: 16504 - - uid: 19773 + pos: 38.5,95.5 + parent: 2 + - uid: 10529 components: - type: Transform - pos: -0.5,8.5 - parent: 16504 - - uid: 19774 + pos: 35.5,93.5 + parent: 2 + - uid: 10530 components: - type: Transform - pos: -1.5,11.5 - parent: 16504 - - uid: 19775 + pos: 33.5,93.5 + parent: 2 + - uid: 10531 components: - type: Transform - pos: 2.5,9.5 - parent: 16504 - - uid: 19776 + pos: 26.5,86.5 + parent: 2 + - uid: 10532 components: - type: Transform - pos: 5.5,5.5 - parent: 16504 - - uid: 19777 + pos: 27.5,86.5 + parent: 2 + - uid: 10533 components: - type: Transform - pos: 6.5,2.5 - parent: 16504 - - uid: 19778 + pos: 28.5,86.5 + parent: 2 + - uid: 10534 components: - type: Transform - pos: -7.5,12.5 - parent: 16504 - - uid: 19779 + pos: 28.5,88.5 + parent: 2 + - uid: 10535 components: - type: Transform - pos: -11.5,6.5 - parent: 16504 - - uid: 19780 + pos: 28.5,89.5 + parent: 2 + - uid: 10536 components: - type: Transform - pos: -9.5,4.5 - parent: 16504 - - uid: 19781 + pos: 40.5,75.5 + parent: 2 + - uid: 10537 components: - type: Transform - pos: -16.5,2.5 - parent: 16504 - - uid: 19782 + pos: 40.5,74.5 + parent: 2 + - uid: 10538 components: - type: Transform - pos: -13.5,0.5 - parent: 16504 - - uid: 19783 + pos: 10.5,21.5 + parent: 2 + - uid: 10539 components: - type: Transform - pos: -5.5,-2.5 - parent: 16504 - - uid: 19784 + pos: 10.5,23.5 + parent: 2 + - uid: 10540 components: - type: Transform - pos: -8.5,-3.5 - parent: 16504 - - uid: 19785 + pos: 30.5,-20.5 + parent: 2 + - uid: 10542 components: - type: Transform - pos: -10.5,-8.5 - parent: 16504 - - uid: 19786 + pos: 28.5,-20.5 + parent: 2 + - uid: 10543 components: - type: Transform - pos: 11.5,4.5 - parent: 16504 - - uid: 19787 + pos: 15.5,-20.5 + parent: 2 + - uid: 10544 components: - type: Transform - pos: 13.5,-0.5 - parent: 16504 - - uid: 19788 + pos: 17.5,-20.5 + parent: 2 + - uid: 10545 components: - type: Transform - pos: -22.5,16.5 - parent: 16504 - - uid: 19789 + pos: 33.5,-17.5 + parent: 2 + - uid: 10546 components: - type: Transform - pos: -24.5,15.5 - parent: 16504 - - uid: 19790 + pos: 40.5,-13.5 + parent: 2 + - uid: 10553 components: - type: Transform - pos: -22.5,13.5 - parent: 16504 - - uid: 19791 + pos: 84.5,61.5 + parent: 2 + - uid: 10554 components: - type: Transform - pos: -23.5,14.5 - parent: 16504 - - uid: 19792 + pos: 84.5,59.5 + parent: 2 + - uid: 10555 components: - type: Transform - pos: -23.5,12.5 - parent: 16504 - - uid: 19793 + pos: 84.5,60.5 + parent: 2 + - uid: 10556 components: - type: Transform - pos: -22.5,11.5 - parent: 16504 - - uid: 19794 + pos: 86.5,61.5 + parent: 2 + - uid: 10557 components: - type: Transform - pos: -19.5,11.5 - parent: 16504 - - uid: 19795 + pos: 86.5,60.5 + parent: 2 + - uid: 10558 components: - type: Transform - pos: -17.5,8.5 - parent: 16504 - - uid: 19796 + pos: 86.5,59.5 + parent: 2 + - uid: 10559 components: - type: Transform - pos: -15.5,13.5 - parent: 16504 - - uid: 19797 + pos: 85.5,62.5 + parent: 2 + - uid: 10560 components: - type: Transform - pos: -19.5,9.5 - parent: 16504 - - uid: 19798 + pos: 87.5,62.5 + parent: 2 + - uid: 10561 components: - type: Transform - pos: -19.5,13.5 - parent: 16504 - - uid: 19799 + pos: 87.5,58.5 + parent: 2 + - uid: 10562 components: - type: Transform - pos: -16.5,6.5 - parent: 16504 - - uid: 19800 + pos: 85.5,58.5 + parent: 2 + - uid: 10563 components: - type: Transform - pos: -20.5,6.5 - parent: 16504 - - uid: 19801 + pos: 84.5,64.5 + parent: 2 + - uid: 10564 components: - type: Transform - pos: -14.5,11.5 - parent: 16504 - - uid: 19802 + pos: 85.5,64.5 + parent: 2 + - uid: 10565 components: - type: Transform - pos: -12.5,13.5 - parent: 16504 - - uid: 19803 + pos: 86.5,64.5 + parent: 2 + - uid: 10566 components: - type: Transform - pos: -17.5,10.5 - parent: 16504 - - uid: 19804 + pos: 87.5,64.5 + parent: 2 + - uid: 10567 components: - type: Transform - pos: -15.5,9.5 - parent: 16504 - - uid: 21618 + pos: 87.5,56.5 + parent: 2 + - uid: 10568 components: - type: Transform - pos: 27.5,53.5 + pos: 86.5,56.5 parent: 2 -- proto: RandomSpawner100 - entities: - - uid: 19805 + - uid: 10569 components: - type: Transform - pos: -10.5,-2.5 - parent: 16504 - - uid: 19806 + pos: 85.5,56.5 + parent: 2 + - uid: 10570 components: - type: Transform - pos: -14.5,4.5 - parent: 16504 - - uid: 19807 + pos: 84.5,56.5 + parent: 2 + - uid: 10571 components: - type: Transform - pos: -10.5,10.5 - parent: 16504 - - uid: 19808 + pos: 38.5,36.5 + parent: 2 + - uid: 10572 components: - type: Transform - pos: -6.5,9.5 - parent: 16504 - - uid: 19809 + pos: 22.5,63.5 + parent: 2 + - uid: 10573 components: - type: Transform - pos: -4.5,11.5 - parent: 16504 - - uid: 19810 + pos: 9.5,59.5 + parent: 2 + - uid: 10574 components: - type: Transform - pos: 0.5,10.5 - parent: 16504 - - uid: 19811 + pos: 9.5,57.5 + parent: 2 + - uid: 10575 components: - type: Transform - pos: 7.5,9.5 - parent: 16504 - - uid: 19812 + pos: 9.5,58.5 + parent: 2 + - uid: 10576 components: - type: Transform - pos: 13.5,8.5 - parent: 16504 - - uid: 19813 + pos: 77.5,50.5 + parent: 2 + - uid: 10577 components: - type: Transform - pos: 10.5,2.5 - parent: 16504 - - uid: 19814 + pos: 53.5,67.5 + parent: 2 + - uid: 10578 components: - type: Transform - pos: 12.5,-2.5 - parent: 16504 - - uid: 19815 + pos: 62.5,50.5 + parent: 2 + - uid: 10579 components: - type: Transform - pos: 12.5,-8.5 - parent: 16504 - - uid: 19816 + pos: 60.5,50.5 + parent: 2 + - uid: 10580 components: - type: Transform - pos: 13.5,-5.5 - parent: 16504 -- proto: RandomVending - entities: - - uid: 12324 + pos: 64.5,65.5 + parent: 2 + - uid: 10581 components: - type: Transform - pos: 55.5,4.5 + pos: 63.5,65.5 parent: 2 - - uid: 12325 + - uid: 10582 components: - type: Transform - pos: 43.5,-4.5 + pos: 65.5,65.5 parent: 2 - - uid: 12326 + - uid: 10583 components: - type: Transform - pos: 54.5,4.5 + pos: 65.5,65.5 parent: 2 - - uid: 16226 + - uid: 10584 components: - type: Transform - pos: 43.5,0.5 + pos: 80.5,50.5 parent: 2 - - uid: 19817 + - uid: 10585 components: - type: Transform - pos: -14.5,-0.5 - parent: 16504 - - uid: 19818 + pos: 80.5,49.5 + parent: 2 + - uid: 10586 components: - type: Transform - pos: -13.5,-1.5 - parent: 16504 - - uid: 19819 + pos: 80.5,48.5 + parent: 2 + - uid: 10587 components: - type: Transform - pos: 6.5,35.5 - parent: 16504 - - uid: 19820 + pos: 80.5,46.5 + parent: 2 + - uid: 10588 components: - type: Transform - pos: 6.5,32.5 - parent: 16504 - - uid: 19821 + pos: 80.5,45.5 + parent: 2 + - uid: 10589 components: - type: Transform - pos: -7.5,14.5 - parent: 16504 -- proto: RandomVendingDrinks - entities: - - uid: 12328 + pos: 80.5,44.5 + parent: 2 + - uid: 10590 components: - type: Transform - pos: 33.5,3.5 + pos: 73.5,40.5 parent: 2 - - uid: 12329 + - uid: 10591 components: - type: Transform - pos: 31.5,2.5 + pos: 73.5,42.5 parent: 2 - - uid: 12330 + - uid: 10592 components: - type: Transform - pos: 39.5,-8.5 + pos: 75.5,39.5 parent: 2 - - uid: 12331 + - uid: 10593 components: - type: Transform - pos: 40.5,-8.5 + pos: 76.5,39.5 parent: 2 - - uid: 12332 + - uid: 10594 components: - type: Transform - pos: 48.5,79.5 + pos: 77.5,39.5 parent: 2 - - uid: 12333 + - uid: 10595 components: - type: Transform - pos: 30.5,2.5 + pos: 78.5,39.5 parent: 2 - - uid: 12334 + - uid: 10596 components: - type: Transform - pos: 7.5,34.5 + pos: 84.5,53.5 parent: 2 - - uid: 12335 + - uid: 10597 components: - type: Transform - pos: 68.5,65.5 + pos: 50.5,-15.5 parent: 2 - - uid: 12336 + - uid: 10598 components: - type: Transform - pos: 14.5,35.5 + pos: 59.5,-12.5 parent: 2 - - uid: 12337 + - uid: 10599 components: - type: Transform - pos: 23.5,60.5 + pos: 59.5,-13.5 parent: 2 -- proto: RandomVendingSnacks - entities: - - uid: 12338 + - uid: 10600 components: - type: Transform - pos: 46.5,72.5 + pos: 20.5,-7.5 parent: 2 - - uid: 12339 + - uid: 10601 components: - type: Transform - pos: 34.5,35.5 + pos: 20.5,-6.5 parent: 2 - - uid: 12340 + - uid: 10602 components: - type: Transform - pos: 5.5,34.5 + pos: 21.5,-12.5 parent: 2 - - uid: 12341 + - uid: 10603 components: - type: Transform - pos: 68.5,55.5 + pos: 19.5,-9.5 parent: 2 - - uid: 12342 + - uid: 10604 components: - type: Transform - pos: 23.5,61.5 + pos: 21.5,-10.5 parent: 2 - - uid: 19822 + - uid: 10606 components: - type: Transform - pos: 11.5,18.5 - parent: 16504 - - uid: 19823 + pos: 17.5,-11.5 + parent: 2 + - uid: 10607 components: - type: Transform - pos: -8.5,14.5 - parent: 16504 -- proto: RCD - entities: - - uid: 12343 + pos: 23.5,63.5 + parent: 2 + - uid: 10608 components: - type: Transform - pos: 38.550602,66.52208 + pos: 27.5,-22.5 parent: 2 -- proto: RCDAmmo - entities: - - uid: 12344 + - uid: 10609 components: - type: Transform - pos: 38.361626,66.40564 + pos: 9.5,-24.5 parent: 2 - - uid: 12345 + - uid: 10610 components: - type: Transform - pos: 38.252075,66.42755 + pos: 10.5,-24.5 parent: 2 -- proto: Recycler - entities: - - uid: 12348 + - uid: 10611 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,21.5 + pos: 6.5,-21.5 parent: 2 - - uid: 19824 + - uid: 10612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,11.5 - parent: 16504 - - uid: 19825 + pos: 5.5,-21.5 + parent: 2 + - uid: 10613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,13.5 - parent: 16504 -- proto: ReinforcedGirder - entities: - - uid: 12349 + pos: 8.5,-23.5 + parent: 2 + - uid: 10614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-9.5 + pos: 8.5,-24.5 parent: 2 - - uid: 12350 + - uid: 10615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 + pos: 7.5,-21.5 parent: 2 - - uid: 12351 + - uid: 10616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 + pos: 16.5,-24.5 parent: 2 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 11502 + - uid: 10617 components: - type: Transform - pos: 20.5,-7.5 + pos: 17.5,-24.5 parent: 2 - - uid: 11504 + - uid: 10618 components: - type: Transform - pos: 21.5,-12.5 + pos: 18.5,-24.5 parent: 2 - - uid: 11505 + - uid: 10619 components: - type: Transform - pos: 20.5,-8.5 + pos: 19.5,-24.5 parent: 2 - - uid: 11507 + - uid: 10620 components: - type: Transform - pos: 19.5,-9.5 + pos: 14.5,-22.5 parent: 2 - - uid: 11508 + - uid: 10621 components: - type: Transform - pos: 21.5,-10.5 + pos: 26.5,-22.5 parent: 2 - - uid: 11509 + - uid: 10622 components: - type: Transform - pos: 20.5,-6.5 + pos: 13.5,-22.5 parent: 2 - - uid: 12352 + - uid: 10623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,82.5 + pos: 32.5,-24.5 parent: 2 - - uid: 12353 + - uid: 10624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,81.5 + pos: 28.5,-22.5 parent: 2 - - uid: 12354 + - uid: 10625 components: - type: Transform - pos: 38.5,87.5 + pos: 33.5,-24.5 parent: 2 - - uid: 12355 + - uid: 10626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,87.5 + pos: 34.5,-24.5 parent: 2 - - uid: 12356 + - uid: 10627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,87.5 + pos: 33.5,-22.5 parent: 2 - - uid: 12357 + - uid: 10628 components: - type: Transform - pos: 38.5,91.5 + pos: 33.5,-21.5 parent: 2 - - uid: 12358 + - uid: 10629 components: - type: Transform - pos: 36.5,89.5 + pos: 36.5,-22.5 parent: 2 - - uid: 12359 + - uid: 10630 components: - type: Transform - pos: 29.5,75.5 + pos: 30.5,-26.5 parent: 2 - - uid: 12360 + - uid: 10631 components: - type: Transform - pos: 29.5,73.5 + pos: 31.5,-26.5 parent: 2 - - uid: 12361 + - uid: 10632 components: - type: Transform - pos: 29.5,79.5 + pos: 35.5,-27.5 parent: 2 - - uid: 12362 + - uid: 10633 components: - type: Transform - pos: 29.5,77.5 + pos: 36.5,-27.5 parent: 2 - - uid: 12363 + - uid: 10634 components: - type: Transform - pos: 29.5,81.5 + pos: 36.5,-23.5 parent: 2 - - uid: 12364 + - uid: 10635 components: - type: Transform - pos: 29.5,83.5 + pos: 37.5,-20.5 parent: 2 - - uid: 12365 + - uid: 10636 components: - type: Transform - pos: 59.5,47.5 + pos: 37.5,-21.5 parent: 2 - - uid: 12366 + - uid: 10637 components: - type: Transform - pos: 55.5,54.5 + pos: 39.5,-20.5 parent: 2 - - uid: 12367 + - uid: 10638 components: - type: Transform - pos: 53.5,54.5 + pos: 39.5,-19.5 parent: 2 - - uid: 12368 + - uid: 10639 components: - type: Transform - pos: 54.5,54.5 + pos: 40.5,-19.5 parent: 2 - - uid: 12369 + - uid: 10640 components: - type: Transform - pos: 50.5,50.5 + pos: 42.5,-18.5 parent: 2 - - uid: 12370 + - uid: 10641 components: - type: Transform - pos: 48.5,48.5 + pos: 43.5,-18.5 parent: 2 - - uid: 12371 + - uid: 10642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,80.5 + pos: 44.5,-18.5 parent: 2 - - uid: 12372 + - uid: 10643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,87.5 + pos: 39.5,-22.5 parent: 2 - - uid: 12373 + - uid: 10644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,87.5 + pos: 40.5,-22.5 parent: 2 - - uid: 12374 + - uid: 10645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,87.5 + pos: 41.5,-22.5 parent: 2 - - uid: 12375 + - uid: 10646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,87.5 + pos: 44.5,-21.5 parent: 2 - - uid: 19826 - components: - - type: Transform - pos: -2.5,20.5 - parent: 16504 - - uid: 19827 + - uid: 10647 components: - type: Transform - pos: -2.5,21.5 - parent: 16504 - - uid: 19828 + pos: 45.5,-21.5 + parent: 2 + - uid: 10648 components: - type: Transform - pos: 3.5,21.5 - parent: 16504 - - uid: 19829 + pos: 54.5,-18.5 + parent: 2 + - uid: 10649 components: - type: Transform - pos: 3.5,20.5 - parent: 16504 - - uid: 19830 + pos: 56.5,-16.5 + parent: 2 + - uid: 10650 components: - type: Transform - pos: -1.5,22.5 - parent: 16504 - - uid: 19831 + pos: 57.5,-16.5 + parent: 2 + - uid: 10651 components: - type: Transform - pos: 2.5,22.5 - parent: 16504 - - uid: 19832 + pos: 59.5,-17.5 + parent: 2 + - uid: 10652 components: - type: Transform - pos: 8.5,34.5 - parent: 16504 - - uid: 20516 + pos: 60.5,-17.5 + parent: 2 + - uid: 10653 components: - type: Transform - pos: -26.5,32.5 - parent: 16504 - - uid: 20531 + pos: 57.5,-17.5 + parent: 2 + - uid: 10654 components: - type: Transform - pos: -23.5,32.5 - parent: 16504 - - uid: 20532 + pos: 60.5,-14.5 + parent: 2 + - uid: 10655 components: - type: Transform - pos: -25.5,33.5 - parent: 16504 - - uid: 22187 + pos: 60.5,-13.5 + parent: 2 + - uid: 10656 components: - type: Transform - pos: -24.5,33.5 - parent: 16504 -- proto: ReinforcedPlasmaWindowDiagonal - entities: - - uid: 19833 + pos: 61.5,-13.5 + parent: 2 + - uid: 10657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,22.5 - parent: 16504 - - uid: 19834 + pos: 61.5,-12.5 + parent: 2 + - uid: 10658 components: - type: Transform - pos: -2.5,22.5 - parent: 16504 - - uid: 20517 + pos: 62.5,-10.5 + parent: 2 + - uid: 10659 components: - type: Transform - pos: -26.5,33.5 - parent: 16504 - - uid: 20530 + pos: 62.5,-11.5 + parent: 2 + - uid: 10660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,33.5 - parent: 16504 - - uid: 22188 + pos: 63.5,-10.5 + parent: 2 + - uid: 10661 components: - type: Transform - pos: -27.5,32.5 - parent: 16504 - - uid: 22191 + pos: 63.5,-9.5 + parent: 2 + - uid: 10662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 16504 -- proto: ReinforcedUraniumWindow - entities: - - uid: 12376 + pos: 63.5,-8.5 + parent: 2 + - uid: 10663 components: - type: Transform - pos: 53.5,67.5 + pos: 65.5,-7.5 parent: 2 - - uid: 12377 + - uid: 10664 components: - type: Transform - pos: 52.5,67.5 + pos: 66.5,-7.5 parent: 2 - - uid: 12378 + - uid: 10665 components: - type: Transform - pos: 51.5,67.5 + pos: 68.5,-6.5 parent: 2 -- proto: ReinforcedWindow - entities: - - uid: 3855 + - uid: 10666 components: - type: Transform - pos: 26.5,-34.5 + pos: 68.5,-5.5 parent: 2 - - uid: 4302 + - uid: 10667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-40.5 + pos: 70.5,-5.5 parent: 2 - - uid: 4307 + - uid: 10668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-40.5 + pos: 71.5,-5.5 parent: 2 - - uid: 5930 + - uid: 10669 components: - type: Transform - pos: 26.5,-35.5 + pos: 73.5,-3.5 parent: 2 - - uid: 10417 + - uid: 10670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-20.5 + pos: 73.5,-2.5 parent: 2 - - uid: 10541 + - uid: 10671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-20.5 + pos: 72.5,-3.5 parent: 2 - - uid: 11384 + - uid: 10672 components: - type: Transform - pos: 62.5,38.5 + pos: 71.5,-4.5 parent: 2 - - uid: 11800 + - uid: 10673 components: - type: Transform - pos: 44.5,47.5 + pos: 65.5,-8.5 parent: 2 - - uid: 11924 + - uid: 10674 components: - type: Transform - pos: 33.5,-18.5 + pos: 41.5,-16.5 parent: 2 - - uid: 12270 + - uid: 10675 components: - type: Transform - pos: 44.5,48.5 + pos: 33.5,-13.5 parent: 2 - - uid: 12379 + - uid: 10676 components: - type: Transform - pos: 41.5,66.5 + pos: 33.5,-14.5 parent: 2 - - uid: 12380 + - uid: 10677 components: - type: Transform - pos: 62.5,39.5 + pos: 33.5,-15.5 parent: 2 - - uid: 12381 + - uid: 10678 components: - type: Transform - pos: 8.5,-12.5 + pos: -1.5,11.5 parent: 2 - - uid: 12382 + - uid: 10684 components: - type: Transform - pos: 8.5,-13.5 + pos: 7.5,56.5 parent: 2 - - uid: 12383 + - uid: 10685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,20.5 + pos: 7.5,57.5 parent: 2 - - uid: 12384 + - uid: 10686 components: - type: Transform - pos: 51.5,37.5 + pos: 7.5,58.5 parent: 2 - - uid: 12385 + - uid: 10687 components: - type: Transform - pos: 52.5,25.5 + pos: 9.5,64.5 parent: 2 - - uid: 12386 + - uid: 10688 components: - type: Transform - pos: 82.5,14.5 + pos: 9.5,65.5 parent: 2 - - uid: 12387 + - uid: 10689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,18.5 + pos: 9.5,66.5 parent: 2 - - uid: 12388 + - uid: 10690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 + pos: 12.5,87.5 parent: 2 - - uid: 12389 + - uid: 10691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-2.5 + pos: 13.5,87.5 parent: 2 - - uid: 12390 + - uid: 10692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-1.5 + pos: 8.5,-7.5 parent: 2 - - uid: 12391 + - uid: 10693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,85.5 + pos: 51.5,93.5 parent: 2 - - uid: 12392 + - uid: 10694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,85.5 + pos: 50.5,93.5 parent: 2 - - uid: 12393 + - uid: 10695 components: - type: Transform - pos: 23.5,65.5 + pos: 49.5,93.5 parent: 2 - - uid: 12394 + - uid: 10696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,16.5 + pos: 58.5,92.5 parent: 2 - - uid: 12395 + - uid: 10697 components: - type: Transform - pos: 75.5,68.5 + pos: 59.5,92.5 parent: 2 - - uid: 12396 + - uid: 10698 components: - type: Transform - pos: 77.5,67.5 + pos: 59.5,94.5 parent: 2 - - uid: 12397 + - uid: 10699 components: - type: Transform - pos: 75.5,69.5 + pos: 7.5,-7.5 parent: 2 - - uid: 12398 + - uid: 10700 components: - type: Transform - pos: 46.5,62.5 + pos: 4.5,-5.5 parent: 2 - - uid: 12399 + - uid: 10701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,22.5 + pos: 3.5,-5.5 parent: 2 - - uid: 12400 + - uid: 10702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-0.5 + pos: 3.5,-3.5 parent: 2 - - uid: 12401 + - uid: 10703 components: - type: Transform - pos: 76.5,69.5 + pos: 2.5,-3.5 parent: 2 - - uid: 12402 + - uid: 10704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,15.5 + pos: 1.5,-3.5 parent: 2 - - uid: 12403 + - uid: 10705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,63.5 + pos: 6.5,-19.5 parent: 2 - - uid: 12405 + - uid: 10706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,15.5 + pos: 0.5,-0.5 parent: 2 - - uid: 12406 + - uid: 10707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,22.5 + pos: 1.5,-0.5 parent: 2 - - uid: 12408 + - uid: 10708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,38.5 + pos: 1.5,-1.5 parent: 2 - - uid: 12409 + - uid: 10709 components: - type: Transform - pos: 60.5,40.5 + pos: 8.5,-12.5 parent: 2 - - uid: 12410 + - uid: 10710 components: - type: Transform - pos: 86.5,56.5 + pos: 8.5,-13.5 parent: 2 - - uid: 12412 + - uid: 10711 components: - type: Transform - pos: 73.5,69.5 + pos: 7.5,-16.5 parent: 2 - - uid: 12413 + - uid: 10712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,85.5 + pos: 7.5,-17.5 parent: 2 - - uid: 12414 + - uid: 10713 components: - type: Transform - pos: 21.5,-22.5 + pos: 7.5,-15.5 parent: 2 - - uid: 12415 + - uid: 10714 components: - type: Transform - pos: 36.5,85.5 + pos: -0.5,3.5 parent: 2 - - uid: 12416 + - uid: 10715 components: - type: Transform - pos: 34.5,5.5 + pos: -0.5,2.5 parent: 2 - - uid: 12417 + - uid: 10716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,85.5 + pos: -0.5,1.5 parent: 2 - - uid: 12418 + - uid: 10717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,6.5 + pos: 10.5,46.5 parent: 2 - - uid: 12419 + - uid: 10718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,85.5 + pos: 11.5,44.5 parent: 2 - - uid: 12420 + - uid: 10719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,67.5 + pos: 11.5,42.5 parent: 2 - - uid: 12421 + - uid: 10720 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,67.5 + pos: 55.5,-38.5 parent: 2 - - uid: 12422 + - uid: 10721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,2.5 + pos: 49.5,-20.5 parent: 2 - - uid: 12424 + - uid: 10722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,5.5 + pos: 49.5,-21.5 parent: 2 - - uid: 12425 + - uid: 10723 components: - type: Transform - pos: 81.5,14.5 + pos: 49.5,-22.5 parent: 2 - - uid: 12426 + - uid: 10724 components: - type: Transform - pos: 77.5,69.5 + pos: 49.5,-23.5 parent: 2 - - uid: 12427 + - uid: 10725 components: - type: Transform - pos: 76.5,67.5 + pos: 49.5,-28.5 parent: 2 - - uid: 12428 + - uid: 10726 components: - type: Transform - pos: 79.5,20.5 + pos: 49.5,-26.5 parent: 2 - - uid: 12429 + - uid: 10727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,19.5 + pos: 49.5,-27.5 parent: 2 - - uid: 12430 + - uid: 10728 components: - type: Transform - pos: 31.5,69.5 + pos: 49.5,-30.5 parent: 2 - - uid: 12431 + - uid: 10729 components: - type: Transform - pos: 25.5,-23.5 + pos: 49.5,-31.5 parent: 2 - - uid: 12432 + - uid: 10730 components: - type: Transform - pos: 42.5,85.5 + pos: 49.5,-32.5 parent: 2 - - uid: 12433 + - uid: 10731 components: - type: Transform - pos: 78.5,68.5 + pos: 49.5,-33.5 parent: 2 - - uid: 12434 + - uid: 10732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,24.5 + pos: 50.5,-36.5 parent: 2 - - uid: 12435 + - uid: 10733 components: - type: Transform - pos: 78.5,69.5 + pos: 51.5,-36.5 parent: 2 - - uid: 12436 + - uid: 10734 components: - type: Transform - pos: 80.5,69.5 + pos: 52.5,-36.5 parent: 2 - - uid: 12437 + - uid: 10735 components: - type: Transform - pos: 82.5,20.5 + pos: 56.5,-38.5 parent: 2 - - uid: 12438 + - uid: 10736 components: - type: Transform - pos: 81.5,20.5 + pos: 57.5,-38.5 parent: 2 - - uid: 12439 + - uid: 10737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,22.5 + pos: 60.5,-38.5 parent: 2 - - uid: 12440 + - uid: 10738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,16.5 + pos: 60.5,-36.5 parent: 2 - - uid: 12441 + - uid: 10739 components: - type: Transform - pos: 46.5,25.5 + pos: 61.5,-36.5 parent: 2 - - uid: 12442 + - uid: 10740 components: - type: Transform - pos: 58.5,44.5 + pos: 62.5,-36.5 parent: 2 - - uid: 12443 + - uid: 10741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,34.5 + pos: 63.5,-34.5 parent: 2 - - uid: 12444 + - uid: 10742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,32.5 + pos: 63.5,-33.5 parent: 2 - - uid: 12445 + - uid: 10743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,32.5 + pos: 63.5,-32.5 parent: 2 - - uid: 12446 + - uid: 10744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,27.5 + pos: 63.5,-31.5 parent: 2 - - uid: 12447 + - uid: 10745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,28.5 + pos: 63.5,-30.5 parent: 2 - - uid: 12448 + - uid: 10746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,33.5 + pos: 63.5,-28.5 parent: 2 - - uid: 12449 + - uid: 10747 components: - type: Transform - pos: 5.5,0.5 + pos: 63.5,-27.5 parent: 2 - - uid: 12450 + - uid: 10748 components: - type: Transform - pos: 5.5,4.5 + pos: 63.5,-26.5 parent: 2 - - uid: 12451 + - uid: 10749 components: - type: Transform - pos: 4.5,4.5 + pos: 63.5,-24.5 parent: 2 - - uid: 12452 + - uid: 10750 components: - type: Transform - pos: 6.5,0.5 + pos: 63.5,-23.5 parent: 2 - - uid: 12453 + - uid: 10751 components: - type: Transform - pos: 2.5,0.5 + pos: 63.5,-22.5 parent: 2 - - uid: 12454 + - uid: 10752 components: - type: Transform - pos: 0.5,7.5 + pos: 51.5,-15.5 parent: 2 - - uid: 12455 + - uid: 10753 components: - type: Transform - pos: 8.5,11.5 + pos: 63.5,-20.5 parent: 2 - - uid: 12456 + - uid: 10754 components: - type: Transform - pos: 6.5,12.5 + pos: 63.5,-19.5 parent: 2 - - uid: 12457 + - uid: 10755 components: - type: Transform - pos: -0.5,13.5 + pos: 63.5,-18.5 parent: 2 - - uid: 12458 + - uid: 10756 components: - type: Transform - pos: -0.5,12.5 + pos: 63.5,-17.5 parent: 2 - - uid: 12459 + - uid: 10757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,10.5 + pos: 63.5,-12.5 parent: 2 - - uid: 12460 + - uid: 10758 components: - type: Transform - pos: -0.5,7.5 + pos: 63.5,-13.5 parent: 2 - - uid: 12461 + - uid: 10759 components: - type: Transform - pos: -1.5,7.5 + pos: 63.5,-14.5 parent: 2 - - uid: 12462 + - uid: 10760 components: - type: Transform - pos: 10.5,15.5 + pos: 50.5,-19.5 parent: 2 - - uid: 12463 + - uid: 10761 components: - type: Transform - pos: 28.5,31.5 + pos: 52.5,-19.5 parent: 2 - - uid: 12464 + - uid: 10762 components: - type: Transform - pos: 14.5,11.5 + pos: 40.5,11.5 parent: 2 - - uid: 12465 + - uid: 10763 components: - type: Transform - pos: 34.5,24.5 + pos: 48.5,48.5 parent: 2 - - uid: 12466 + - uid: 10764 components: - type: Transform - pos: 14.5,26.5 + pos: 23.5,88.5 parent: 2 - - uid: 12467 + - uid: 10765 components: - type: Transform - pos: 34.5,26.5 + pos: 26.5,90.5 parent: 2 - - uid: 12468 + - uid: 10766 components: - type: Transform - pos: 31.5,26.5 + pos: 19.5,88.5 parent: 2 - - uid: 12469 + - uid: 10767 components: - type: Transform - pos: 14.5,24.5 + pos: 15.5,88.5 parent: 2 - - uid: 12470 + - uid: 10768 components: - type: Transform - pos: 19.5,-0.5 + pos: -5.5,43.5 parent: 2 - - uid: 12471 + - uid: 10769 components: - type: Transform - pos: 19.5,-1.5 + pos: -8.5,46.5 parent: 2 - - uid: 12472 + - uid: 10770 components: - type: Transform - pos: 19.5,-3.5 + pos: -2.5,43.5 parent: 2 - - uid: 12473 + - uid: 10771 components: - type: Transform - pos: 14.5,29.5 + pos: -0.5,41.5 parent: 2 - - uid: 12474 + - uid: 10772 components: - type: Transform - pos: 14.5,28.5 + pos: -0.5,42.5 parent: 2 - - uid: 12475 + - uid: 10773 components: - type: Transform - pos: 32.5,85.5 + pos: -7.5,43.5 parent: 2 - - uid: 12476 + - uid: 10774 components: - type: Transform - pos: 78.5,67.5 + pos: -3.5,43.5 parent: 2 - - uid: 12477 + - uid: 10775 components: - type: Transform - pos: 14.5,33.5 + pos: -9.5,46.5 parent: 2 - - uid: 12478 + - uid: 10776 components: - type: Transform - pos: 34.5,28.5 + pos: -6.5,43.5 parent: 2 - - uid: 12479 + - uid: 10778 components: - type: Transform - pos: 34.5,29.5 + pos: 13.5,-26.5 parent: 2 - - uid: 12480 + - uid: 10779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,12.5 + pos: -0.5,40.5 parent: 2 - - uid: 12481 + - uid: 10780 components: - type: Transform - pos: 34.5,32.5 + rot: 3.141592653589793 rad + pos: 3.5,10.5 parent: 2 - - uid: 12482 + - uid: 10781 components: - type: Transform - pos: 34.5,33.5 + rot: -1.5707963267948966 rad + pos: 86.5,19.5 parent: 2 - - uid: 12483 + - uid: 10782 components: - type: Transform - pos: 17.5,35.5 + pos: 86.5,66.5 parent: 2 - - uid: 12484 + - uid: 10783 components: - type: Transform - pos: 20.5,35.5 + pos: 86.5,65.5 parent: 2 - - uid: 12485 + - uid: 10784 components: - type: Transform - pos: 21.5,35.5 + pos: -1.5,37.5 parent: 2 - - uid: 12486 + - uid: 10785 components: - type: Transform - pos: 27.5,35.5 + pos: -1.5,36.5 parent: 2 - - uid: 12487 + - uid: 10786 components: - type: Transform - pos: 28.5,35.5 + pos: -1.5,26.5 parent: 2 - - uid: 12488 + - uid: 10787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,12.5 + pos: -2.5,26.5 parent: 2 - - uid: 12489 + - uid: 10788 components: - type: Transform - pos: 31.5,35.5 + pos: -3.5,26.5 parent: 2 - - uid: 12490 + - uid: 10794 components: - type: Transform - pos: 32.5,35.5 + pos: -8.5,45.5 parent: 2 - - uid: 12491 + - uid: 10795 components: - type: Transform - pos: 16.5,35.5 + pos: -0.5,57.5 parent: 2 - - uid: 12492 + - uid: 10796 components: - type: Transform - pos: 30.5,28.5 + pos: -10.5,48.5 parent: 2 - - uid: 12493 + - uid: 10797 components: - type: Transform - pos: 30.5,29.5 + pos: -10.5,49.5 parent: 2 - - uid: 12494 + - uid: 10798 components: - type: Transform - pos: 25.5,35.5 + pos: -10.5,50.5 parent: 2 - - uid: 12495 + - uid: 10799 components: - type: Transform - pos: 24.5,35.5 + pos: -10.5,51.5 parent: 2 - - uid: 12496 + - uid: 10800 components: - type: Transform - pos: 27.5,31.5 + pos: -10.5,54.5 parent: 2 - - uid: 12497 + - uid: 10801 components: - type: Transform - pos: 18.5,28.5 + pos: -9.5,54.5 parent: 2 - - uid: 12498 + - uid: 10802 components: - type: Transform - pos: 18.5,29.5 + pos: -8.5,57.5 parent: 2 - - uid: 12499 + - uid: 10803 components: - type: Transform - pos: 20.5,31.5 + pos: -7.5,57.5 parent: 2 - - uid: 12500 + - uid: 10804 components: - type: Transform - pos: 23.5,31.5 + pos: -6.5,57.5 parent: 2 - - uid: 12501 + - uid: 10805 components: - type: Transform - pos: 21.5,31.5 + pos: -8.5,56.5 parent: 2 - - uid: 12502 + - uid: 10806 components: - type: Transform - pos: 23.5,35.5 + pos: -4.5,57.5 parent: 2 - - uid: 12503 + - uid: 10807 components: - type: Transform - pos: 26.5,31.5 + pos: -3.5,57.5 parent: 2 - - uid: 12504 + - uid: 10808 components: - type: Transform - pos: 22.5,31.5 + pos: 0.5,57.5 parent: 2 - - uid: 12505 + - uid: 10809 components: - type: Transform - pos: 25.5,31.5 + pos: 1.5,57.5 parent: 2 - - uid: 12506 + - uid: 10810 components: - type: Transform - pos: 24.5,31.5 + pos: 5.5,57.5 parent: 2 - - uid: 12507 + - uid: 10811 components: - type: Transform - pos: 22.5,15.5 + pos: 4.5,57.5 parent: 2 - - uid: 12508 + - uid: 10812 components: - type: Transform - pos: 16.5,20.5 + pos: 54.5,-15.5 parent: 2 - - uid: 12509 + - uid: 10813 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,7.5 + pos: 55.5,-15.5 parent: 2 - - uid: 12510 + - uid: 10814 components: - type: Transform - pos: 22.5,11.5 + pos: 56.5,-15.5 parent: 2 - - uid: 12511 + - uid: 10815 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,13.5 + pos: 57.5,-15.5 parent: 2 - - uid: 12512 + - uid: 10816 components: - type: Transform - pos: 60.5,50.5 + pos: 58.5,-15.5 parent: 2 - - uid: 12513 + - uid: 10817 components: - type: Transform - pos: 19.5,5.5 + pos: 59.5,-14.5 parent: 2 - - uid: 12515 + - uid: 10818 components: - type: Transform - pos: 62.5,50.5 + rot: 1.5707963267948966 rad + pos: 36.5,-12.5 parent: 2 - - uid: 12516 + - uid: 10819 components: - type: Transform - pos: 46.5,5.5 + rot: -1.5707963267948966 rad + pos: 29.5,93.5 parent: 2 - - uid: 12517 + - uid: 10820 components: - type: Transform - pos: 56.5,-6.5 + rot: -1.5707963267948966 rad + pos: 39.5,93.5 parent: 2 - - uid: 12518 + - uid: 10821 components: - type: Transform - pos: 53.5,-6.5 + rot: -1.5707963267948966 rad + pos: 40.5,95.5 parent: 2 - - uid: 12519 + - uid: 10822 components: - type: Transform - pos: 54.5,-6.5 + rot: -1.5707963267948966 rad + pos: 41.5,95.5 parent: 2 - - uid: 12520 + - uid: 10823 components: - type: Transform - pos: 55.5,-6.5 + rot: -1.5707963267948966 rad + pos: 42.5,93.5 parent: 2 - - uid: 12521 + - uid: 10824 components: - type: Transform - pos: 38.5,16.5 + rot: -1.5707963267948966 rad + pos: 40.5,93.5 parent: 2 - - uid: 12522 + - uid: 10825 components: - type: Transform - pos: 38.5,19.5 + rot: -1.5707963267948966 rad + pos: 35.5,95.5 parent: 2 - - uid: 12523 + - uid: 10826 components: - type: Transform - pos: 38.5,17.5 + rot: 3.141592653589793 rad + pos: -3.5,34.5 parent: 2 - - uid: 12525 + - uid: 10827 components: - type: Transform - pos: 38.5,27.5 + rot: 3.141592653589793 rad + pos: -0.5,27.5 parent: 2 - - uid: 12526 + - uid: 10828 components: - type: Transform - pos: 38.5,31.5 + rot: 3.141592653589793 rad + pos: 1.5,34.5 parent: 2 - - uid: 12527 + - uid: 10829 components: - type: Transform - pos: 38.5,30.5 + rot: 3.141592653589793 rad + pos: 84.5,7.5 parent: 2 - - uid: 12528 + - uid: 10830 components: - type: Transform - pos: 44.5,27.5 + pos: 42.5,85.5 parent: 2 - - uid: 12529 + - uid: 10831 components: - type: Transform - pos: 48.5,32.5 + pos: 39.5,85.5 parent: 2 - - uid: 12530 + - uid: 10832 components: - type: Transform - pos: 58.5,19.5 + pos: 38.5,85.5 parent: 2 - - uid: 12531 + - uid: 10834 components: - type: Transform - pos: 57.5,19.5 + pos: 52.5,25.5 parent: 2 - - uid: 12532 + - uid: 10835 components: - type: Transform - pos: 55.5,19.5 + pos: 32.5,85.5 parent: 2 - - uid: 12533 + - uid: 10837 components: - type: Transform - pos: 16.5,70.5 + rot: -1.5707963267948966 rad + pos: 38.5,23.5 parent: 2 - - uid: 12534 + - uid: 10838 components: - type: Transform - pos: 16.5,71.5 + pos: 41.5,66.5 parent: 2 - - uid: 12535 + - uid: 10839 components: - type: Transform - pos: 16.5,68.5 + pos: 62.5,40.5 parent: 2 - - uid: 12536 + - uid: 10840 components: - type: Transform - pos: 16.5,76.5 + pos: 62.5,39.5 parent: 2 - - uid: 12537 + - uid: 10842 components: - type: Transform - pos: 16.5,74.5 + rot: 1.5707963267948966 rad + pos: 17.5,81.5 parent: 2 - - uid: 12538 + - uid: 10843 components: - type: Transform - pos: 16.5,75.5 + rot: 3.141592653589793 rad + pos: 56.5,42.5 parent: 2 - - uid: 12539 + - uid: 10844 components: - type: Transform - pos: 16.5,73.5 + rot: 1.5707963267948966 rad + pos: 47.5,15.5 parent: 2 - - uid: 12540 + - uid: 10845 components: - type: Transform - pos: 16.5,78.5 + pos: 36.5,85.5 parent: 2 - - uid: 12541 + - uid: 10846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,10.5 + rot: 1.5707963267948966 rad + pos: 82.5,20.5 parent: 2 - - uid: 12542 + - uid: 10847 components: - type: Transform - pos: 80.5,46.5 + pos: 81.5,20.5 parent: 2 - - uid: 12543 + - uid: 10848 components: - type: Transform - pos: 80.5,45.5 + pos: 11.5,86.5 parent: 2 - - uid: 12544 + - uid: 10852 components: - type: Transform - pos: 80.5,50.5 + pos: 52.5,38.5 parent: 2 - - uid: 12545 + - uid: 10853 components: - type: Transform - pos: 80.5,44.5 + rot: -1.5707963267948966 rad + pos: 86.5,15.5 parent: 2 - - uid: 12546 + - uid: 10854 components: - type: Transform - pos: 80.5,49.5 + pos: 41.5,85.5 parent: 2 - - uid: 12547 + - uid: 10855 components: - type: Transform - pos: 9.5,58.5 + pos: 53.5,54.5 parent: 2 - - uid: 12548 + - uid: 10856 components: - type: Transform - pos: 9.5,59.5 + pos: 51.5,64.5 parent: 2 - - uid: 12549 + - uid: 10857 components: - type: Transform - pos: 9.5,57.5 + pos: 55.5,54.5 parent: 2 - - uid: 12555 + - uid: 10858 components: - type: Transform - pos: 22.5,63.5 + pos: 54.5,54.5 parent: 2 - - uid: 12556 + - uid: 10859 components: - type: Transform - pos: 17.5,24.5 + rot: -1.5707963267948966 rad + pos: 81.5,12.5 parent: 2 - - uid: 12557 + - uid: 10860 components: - type: Transform - pos: 31.5,24.5 + rot: -1.5707963267948966 rad + pos: 86.5,18.5 parent: 2 - - uid: 12558 + - uid: 10861 components: - type: Transform - pos: 17.5,26.5 + rot: -1.5707963267948966 rad + pos: 85.5,12.5 parent: 2 - - uid: 12559 + - uid: 10862 components: - type: Transform - pos: 7.5,39.5 + rot: 3.141592653589793 rad + pos: 73.5,69.5 parent: 2 - - uid: 12560 + - uid: 10863 components: - type: Transform - pos: 38.5,-13.5 + pos: 31.5,69.5 parent: 2 - - uid: 12561 + - uid: 10864 components: - type: Transform - pos: 5.5,39.5 + rot: 3.141592653589793 rad + pos: 75.5,69.5 parent: 2 - - uid: 12562 + - uid: 10865 components: - type: Transform - pos: 4.5,39.5 + rot: 3.141592653589793 rad + pos: 66.5,11.5 parent: 2 - - uid: 12563 + - uid: 10866 components: - type: Transform - pos: 3.5,39.5 + rot: -1.5707963267948966 rad + pos: 38.5,24.5 parent: 2 - - uid: 12564 + - uid: 10867 components: - type: Transform - pos: 40.5,-13.5 + pos: 54.5,38.5 parent: 2 - - uid: 12565 + - uid: 10868 components: - type: Transform - pos: -1.5,22.5 + pos: 60.5,40.5 parent: 2 - - uid: 12567 + - uid: 10869 components: - type: Transform - pos: 11.5,76.5 + pos: 48.5,54.5 parent: 2 - - uid: 12568 + - uid: 10870 components: - type: Transform - pos: 10.5,73.5 + rot: 3.141592653589793 rad + pos: 31.5,84.5 parent: 2 - - uid: 12570 + - uid: 10871 components: - type: Transform - pos: 10.5,69.5 + pos: 60.5,38.5 parent: 2 - - uid: 12571 + - uid: 10872 components: - type: Transform - pos: 11.5,68.5 + pos: 61.5,88.5 parent: 2 - - uid: 12572 + - uid: 10874 components: - type: Transform - pos: 11.5,67.5 + rot: 3.141592653589793 rad + pos: 68.5,11.5 parent: 2 - - uid: 12575 + - uid: 10875 components: - type: Transform - pos: 10.5,71.5 + rot: 3.141592653589793 rad + pos: 67.5,11.5 parent: 2 - - uid: 12576 + - uid: 10876 components: - type: Transform - pos: 11.5,66.5 + rot: 1.5707963267948966 rad + pos: 42.5,87.5 parent: 2 - - uid: 12577 + - uid: 10877 components: - type: Transform - pos: 11.5,82.5 + rot: 1.5707963267948966 rad + pos: 40.5,86.5 parent: 2 - - uid: 12583 + - uid: 10878 components: - type: Transform - pos: 11.5,75.5 + rot: 1.5707963267948966 rad + pos: 36.5,86.5 parent: 2 - - uid: 12584 + - uid: 10879 components: - type: Transform - pos: 10.5,79.5 - parent: 2 - - uid: 12586 - components: - - type: Transform - pos: 10.5,77.5 - parent: 2 - - uid: 12587 - components: - - type: Transform - pos: 11.5,74.5 - parent: 2 - - uid: 12590 - components: - - type: Transform - pos: 10.5,81.5 + rot: 1.5707963267948966 rad + pos: 34.5,86.5 parent: 2 - - uid: 12591 + - uid: 10880 components: - type: Transform - pos: 11.5,83.5 + rot: 1.5707963267948966 rad + pos: 35.5,88.5 parent: 2 - - uid: 12592 + - uid: 10881 components: - type: Transform - pos: 10.5,21.5 + rot: 1.5707963267948966 rad + pos: 35.5,90.5 parent: 2 - - uid: 12593 + - uid: 10882 components: - type: Transform - pos: 10.5,20.5 + rot: 1.5707963267948966 rad + pos: 65.5,7.5 parent: 2 - - uid: 12594 + - uid: 10895 components: - type: Transform - pos: 10.5,23.5 + pos: -5.5,26.5 parent: 2 - - uid: 12595 + - uid: 10942 components: - type: Transform - pos: 28.5,-20.5 + rot: -1.5707963267948966 rad + pos: 26.5,-30.5 parent: 2 - - uid: 12596 + - uid: 10944 components: - type: Transform - pos: 29.5,-20.5 + rot: -1.5707963267948966 rad + pos: 28.5,-32.5 parent: 2 - - uid: 12598 + - uid: 10945 components: - type: Transform - pos: 16.5,-20.5 + rot: -1.5707963267948966 rad + pos: 28.5,-31.5 parent: 2 - - uid: 12600 + - uid: 10946 components: - type: Transform - pos: 33.5,-17.5 + rot: -1.5707963267948966 rad + pos: 24.5,-28.5 parent: 2 - - uid: 12601 + - uid: 10947 components: - type: Transform rot: -1.5707963267948966 rad - pos: 86.5,18.5 + pos: 27.5,-31.5 parent: 2 - - uid: 12602 + - uid: 10948 components: - type: Transform - pos: 76.5,18.5 + rot: -1.5707963267948966 rad + pos: 25.5,-30.5 parent: 2 - - uid: 12603 + - uid: 10949 components: - type: Transform - pos: 76.5,16.5 + rot: -1.5707963267948966 rad + pos: 34.5,-37.5 parent: 2 - - uid: 12604 + - uid: 10950 components: - type: Transform - pos: 79.5,22.5 + rot: -1.5707963267948966 rad + pos: 36.5,-39.5 parent: 2 - - uid: 12605 + - uid: 10951 components: - type: Transform - pos: 78.5,22.5 + rot: -1.5707963267948966 rad + pos: 34.5,-36.5 parent: 2 - - uid: 12606 + - uid: 10952 components: - type: Transform - pos: 78.5,20.5 + rot: -1.5707963267948966 rad + pos: 35.5,-34.5 parent: 2 - - uid: 12607 + - uid: 10953 components: - type: Transform - pos: 73.5,21.5 + pos: 22.5,65.5 parent: 2 - - uid: 12608 + - uid: 10954 components: - type: Transform - pos: 84.5,31.5 + pos: 23.5,65.5 parent: 2 - - uid: 12609 + - uid: 10955 components: - type: Transform - pos: 84.5,37.5 + pos: 23.5,68.5 parent: 2 - - uid: 12610 + - uid: 10956 components: - type: Transform - pos: 84.5,36.5 + pos: 22.5,68.5 parent: 2 - - uid: 12611 + - uid: 10957 components: - type: Transform - pos: 84.5,38.5 + pos: 18.5,67.5 parent: 2 - - uid: 12612 + - uid: 10958 components: - type: Transform - pos: 84.5,42.5 + pos: 56.5,80.5 parent: 2 - - uid: 12613 + - uid: 10959 components: - type: Transform - pos: 85.5,42.5 + rot: 3.141592653589793 rad + pos: 81.5,7.5 parent: 2 - - uid: 12614 + - uid: 10960 components: - type: Transform - pos: 84.5,44.5 + rot: 3.141592653589793 rad + pos: 76.5,8.5 parent: 2 - - uid: 12615 + - uid: 10961 components: - type: Transform - pos: 84.5,45.5 + pos: 46.5,101.5 parent: 2 - - uid: 12616 + - uid: 11029 components: - type: Transform - pos: 85.5,49.5 + rot: -1.5707963267948966 rad + pos: 33.5,-31.5 parent: 2 - - uid: 12617 + - uid: 11034 components: - type: Transform - pos: 84.5,49.5 + rot: -1.5707963267948966 rad + pos: 33.5,-30.5 parent: 2 - - uid: 12618 + - uid: 11201 components: - type: Transform - pos: 84.5,47.5 + rot: -1.5707963267948966 rad + pos: 16.5,-44.5 parent: 2 - - uid: 12619 + - uid: 11381 components: - type: Transform - pos: 85.5,47.5 + rot: -1.5707963267948966 rad + pos: 13.5,-41.5 parent: 2 - - uid: 12620 + - uid: 11443 components: - type: Transform - pos: 86.5,47.5 + rot: -1.5707963267948966 rad + pos: 15.5,-44.5 parent: 2 - - uid: 12621 + - uid: 11503 components: - type: Transform - pos: 86.5,49.5 + pos: 20.5,-8.5 parent: 2 - - uid: 12622 + - uid: 11511 components: - type: Transform - pos: 86.5,42.5 + pos: 73.5,13.5 parent: 2 - - uid: 12623 + - uid: 12669 components: - type: Transform - pos: 86.5,40.5 + pos: -6.5,26.5 parent: 2 - - uid: 12624 + - uid: 12906 components: - type: Transform - pos: 85.5,40.5 + pos: -10.5,16.5 parent: 2 - - uid: 12625 + - uid: 13824 components: - type: Transform - pos: 84.5,40.5 + pos: -8.5,26.5 parent: 2 - - uid: 12626 + - uid: 13871 components: - type: Transform - pos: 74.5,29.5 + pos: -9.5,26.5 parent: 2 - - uid: 12627 + - uid: 13873 components: - type: Transform - pos: 76.5,29.5 + pos: -11.5,26.5 parent: 2 - - uid: 12628 + - uid: 13897 components: - type: Transform - pos: 75.5,29.5 + rot: -1.5707963267948966 rad + pos: 19.5,-47.5 parent: 2 - - uid: 12629 + - uid: 13914 components: - type: Transform - pos: 77.5,27.5 + pos: -12.5,26.5 parent: 2 - - uid: 12630 + - uid: 14160 components: - type: Transform - pos: 77.5,28.5 + pos: -12.5,23.5 parent: 2 - - uid: 12631 + - uid: 14520 components: - type: Transform - pos: 76.5,25.5 + pos: 26.5,-26.5 parent: 2 - - uid: 12632 + - uid: 15358 components: - type: Transform - pos: 77.5,26.5 + pos: 25.5,-26.5 parent: 2 - - uid: 12633 + - uid: 16028 components: - type: Transform - pos: 74.5,25.5 + pos: 26.5,-27.5 parent: 2 - - uid: 12634 + - uid: 16029 components: - type: Transform - pos: 75.5,25.5 + pos: 27.5,-26.5 parent: 2 - - uid: 12635 + - uid: 16163 components: - type: Transform - pos: 73.5,26.5 + pos: 28.5,-26.5 parent: 2 - - uid: 12636 + - uid: 16198 components: - type: Transform - pos: 73.5,27.5 + pos: -12.5,25.5 parent: 2 - - uid: 12637 + - uid: 16220 components: - type: Transform - pos: 73.5,28.5 + rot: -1.5707963267948966 rad + pos: 16.5,-45.5 parent: 2 - - uid: 12638 + - uid: 16450 components: - type: Transform - pos: 78.5,43.5 + rot: 3.141592653589793 rad + pos: 25.5,-44.5 parent: 2 - - uid: 12639 + - uid: 16454 components: - type: Transform - pos: 79.5,43.5 + rot: 3.141592653589793 rad + pos: 19.5,-44.5 parent: 2 - - uid: 12640 + - uid: 20377 components: - type: Transform - pos: 77.5,46.5 + rot: -1.5707963267948966 rad + pos: 61.5,-20.5 parent: 2 - - uid: 12641 + - uid: 20378 components: - type: Transform - pos: 77.5,45.5 + rot: -1.5707963267948966 rad + pos: 61.5,-19.5 parent: 2 - - uid: 12642 + - uid: 20379 components: - type: Transform - pos: 77.5,44.5 + rot: -1.5707963267948966 rad + pos: 61.5,-18.5 parent: 2 - - uid: 12643 + - uid: 20380 components: - type: Transform - pos: 77.5,50.5 + rot: -1.5707963267948966 rad + pos: 61.5,-17.5 parent: 2 - - uid: 12644 + - uid: 20381 components: - type: Transform - pos: 77.5,49.5 + rot: -1.5707963267948966 rad + pos: 60.5,-15.5 parent: 2 - - uid: 12645 + - uid: 20382 components: - type: Transform - pos: 77.5,48.5 + rot: -1.5707963267948966 rad + pos: 60.5,-16.5 parent: 2 - - uid: 12646 + - uid: 21242 components: - type: Transform - pos: 84.5,30.5 + rot: -1.5707963267948966 rad + pos: 11.5,50.5 parent: 2 - - uid: 12647 + - uid: 21890 components: - type: Transform - pos: 84.5,33.5 + pos: -12.5,22.5 parent: 2 - - uid: 12648 + - uid: 21891 components: - type: Transform - pos: 84.5,34.5 + pos: -12.5,20.5 parent: 2 - - uid: 12649 + - uid: 21893 components: - type: Transform - pos: 40.5,74.5 + pos: -9.5,16.5 parent: 2 - - uid: 12650 + - uid: 22229 components: - type: Transform - pos: 40.5,75.5 + rot: -1.5707963267948966 rad + pos: 26.5,-24.5 parent: 2 - - uid: 12651 + - uid: 22230 components: - type: Transform - pos: 40.5,76.5 + rot: -1.5707963267948966 rad + pos: 17.5,-25.5 parent: 2 - - uid: 12652 + - uid: 22231 components: - type: Transform - pos: 31.5,73.5 + rot: -1.5707963267948966 rad + pos: 17.5,-27.5 parent: 2 - - uid: 12653 + - uid: 23061 components: - type: Transform - pos: 31.5,72.5 - parent: 2 - - uid: 12654 + pos: 3.5,45.5 + parent: 16527 + - uid: 23062 components: - type: Transform - pos: 31.5,75.5 - parent: 2 - - uid: 12655 + pos: 2.5,22.5 + parent: 16527 + - uid: 23063 components: - type: Transform - pos: 31.5,74.5 - parent: 2 - - uid: 12656 + pos: 3.5,2.5 + parent: 16527 + - uid: 23064 components: - type: Transform - pos: 31.5,77.5 - parent: 2 - - uid: 12657 + pos: 3.5,3.5 + parent: 16527 + - uid: 23065 components: - type: Transform - pos: 31.5,76.5 - parent: 2 - - uid: 12658 + pos: 3.5,5.5 + parent: 16527 + - uid: 23066 components: - type: Transform - pos: 31.5,78.5 - parent: 2 - - uid: 12659 + pos: 3.5,4.5 + parent: 16527 + - uid: 23067 components: - type: Transform - pos: 31.5,79.5 - parent: 2 - - uid: 12660 + pos: 3.5,1.5 + parent: 16527 + - uid: 23072 components: - type: Transform - pos: 31.5,80.5 - parent: 2 - - uid: 12661 + pos: -1.5,22.5 + parent: 16527 + - uid: 23073 components: - type: Transform - pos: 31.5,71.5 - parent: 2 - - uid: 12662 + pos: 3.5,21.5 + parent: 16527 + - uid: 23074 components: - type: Transform - pos: 31.5,81.5 - parent: 2 - - uid: 12663 + pos: -2.5,21.5 + parent: 16527 + - uid: 23075 components: - type: Transform - pos: 31.5,82.5 - parent: 2 - - uid: 12664 + pos: -2.5,20.5 + parent: 16527 + - uid: 23076 components: - type: Transform - pos: 31.5,83.5 - parent: 2 - - uid: 12665 + pos: 3.5,20.5 + parent: 16527 + - uid: 23077 components: - type: Transform - pos: 84.5,52.5 - parent: 2 - - uid: 12666 + pos: -10.5,26.5 + parent: 16527 + - uid: 23078 components: - type: Transform - pos: 84.5,53.5 - parent: 2 - - uid: 12667 + pos: -9.5,26.5 + parent: 16527 + - uid: 23079 components: - type: Transform - pos: 30.5,-20.5 - parent: 2 - - uid: 12668 + pos: -7.5,26.5 + parent: 16527 + - uid: 23080 components: - type: Transform - pos: 17.5,-20.5 - parent: 2 - - uid: 12670 + pos: -6.5,26.5 + parent: 16527 + - uid: 23081 components: - type: Transform - pos: 15.5,-20.5 - parent: 2 - - uid: 12671 + pos: -26.5,32.5 + parent: 16527 + - uid: 23082 components: - type: Transform - pos: 33.5,-19.5 - parent: 2 - - uid: 12672 + pos: -23.5,32.5 + parent: 16527 + - uid: 23083 components: - type: Transform - pos: 59.5,-12.5 - parent: 2 - - uid: 12673 + pos: 15.5,23.5 + parent: 16527 + - uid: 23084 components: - type: Transform - pos: 59.5,-13.5 - parent: 2 - - uid: 12674 + pos: 13.5,23.5 + parent: 16527 + - uid: 23085 components: - type: Transform - pos: 51.5,-15.5 - parent: 2 - - uid: 12675 + pos: 13.5,27.5 + parent: 16527 + - uid: 23086 components: - type: Transform - pos: 50.5,-15.5 - parent: 2 - - uid: 12676 + pos: 15.5,27.5 + parent: 16527 + - uid: 23087 components: - type: Transform - pos: 84.5,60.5 - parent: 2 - - uid: 12677 + pos: 8.5,34.5 + parent: 16527 + - uid: 23088 components: - type: Transform - pos: 84.5,59.5 - parent: 2 - - uid: 12678 + pos: 23.5,33.5 + parent: 16527 + - uid: 23089 components: - type: Transform - pos: 86.5,59.5 - parent: 2 - - uid: 12679 + pos: 22.5,33.5 + parent: 16527 + - uid: 23090 components: - type: Transform - pos: 84.5,61.5 - parent: 2 - - uid: 12680 + pos: 22.5,32.5 + parent: 16527 + - uid: 23091 components: - type: Transform - pos: 86.5,60.5 - parent: 2 - - uid: 12681 + pos: 23.5,34.5 + parent: 16527 + - uid: 23092 components: - type: Transform - pos: 85.5,58.5 - parent: 2 - - uid: 12682 + pos: 3.5,41.5 + parent: 16527 + - uid: 23093 components: - type: Transform - pos: 85.5,62.5 - parent: 2 - - uid: 12683 + pos: 3.5,44.5 + parent: 16527 + - uid: 23094 components: - type: Transform - pos: 86.5,61.5 - parent: 2 - - uid: 12684 + pos: -2.5,57.5 + parent: 16527 + - uid: 23095 components: - type: Transform - pos: 87.5,62.5 - parent: 2 - - uid: 12685 + pos: 8.5,55.5 + parent: 16527 + - uid: 23096 components: - type: Transform - pos: 87.5,58.5 - parent: 2 - - uid: 12686 + pos: 8.5,61.5 + parent: 16527 + - uid: 23097 components: - type: Transform - pos: 84.5,56.5 - parent: 2 - - uid: 12687 + pos: 2.5,67.5 + parent: 16527 + - uid: 23098 components: - type: Transform - pos: 85.5,56.5 - parent: 2 - - uid: 12688 + pos: 4.5,67.5 + parent: 16527 + - uid: 23099 components: - type: Transform - pos: 87.5,56.5 - parent: 2 - - uid: 12689 + pos: 0.5,67.5 + parent: 16527 + - uid: 23100 components: - type: Transform - pos: 84.5,64.5 - parent: 2 - - uid: 12690 + pos: 24.5,52.5 + parent: 16527 + - uid: 23101 components: - type: Transform - pos: 85.5,64.5 - parent: 2 - - uid: 12691 + rot: 3.141592653589793 rad + pos: 28.5,51.5 + parent: 16527 + - uid: 23102 components: - type: Transform - pos: 86.5,64.5 - parent: 2 - - uid: 12692 + pos: 13.5,50.5 + parent: 16527 + - uid: 23103 components: - type: Transform - pos: 87.5,64.5 - parent: 2 - - uid: 12693 + pos: -42.5,51.5 + parent: 16527 + - uid: 23104 components: - type: Transform - pos: 10.5,46.5 - parent: 2 - - uid: 12694 + pos: 11.5,50.5 + parent: 16527 + - uid: 23105 components: - type: Transform - pos: 11.5,42.5 - parent: 2 - - uid: 12695 + pos: -42.5,50.5 + parent: 16527 + - uid: 23106 components: - type: Transform - pos: 23.5,63.5 - parent: 2 - - uid: 12696 + pos: -42.5,45.5 + parent: 16527 + - uid: 23107 components: - type: Transform - pos: 80.5,48.5 - parent: 2 - - uid: 12697 + pos: -42.5,46.5 + parent: 16527 +- proto: GrilleBroken + entities: + - uid: 3170 components: - type: Transform - pos: 38.5,36.5 + rot: 3.141592653589793 rad + pos: 14.5,-29.5 parent: 2 - - uid: 12698 + - uid: 3193 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,65.5 + pos: 23.5,-47.5 parent: 2 - - uid: 12699 + - uid: 3212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,65.5 + pos: 34.5,-35.5 parent: 2 - - uid: 12700 + - uid: 3213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,65.5 + rot: -1.5707963267948966 rad + pos: 30.5,-44.5 parent: 2 - - uid: 12701 + - uid: 3214 components: - type: Transform - pos: 59.5,-14.5 + pos: 34.5,-41.5 parent: 2 - - uid: 12702 + - uid: 3215 components: - type: Transform - pos: 17.5,-11.5 + rot: -1.5707963267948966 rad + pos: 34.5,-31.5 parent: 2 - - uid: 12703 + - uid: 4236 components: - type: Transform - pos: 8.5,41.5 + rot: 3.141592653589793 rad + pos: 28.5,-33.5 parent: 2 - - uid: 12704 + - uid: 4292 components: - type: Transform - pos: -0.5,14.5 + rot: 3.141592653589793 rad + pos: 14.5,-33.5 parent: 2 - - uid: 12705 + - uid: 4293 components: - type: Transform - pos: 8.5,42.5 + pos: 18.5,-31.5 parent: 2 - - uid: 12706 + - uid: 4351 components: - type: Transform - pos: 11.5,44.5 + rot: -1.5707963267948966 rad + pos: 15.5,-28.5 parent: 2 - - uid: 12707 + - uid: 4369 components: - type: Transform - pos: 50.5,-19.5 + rot: 1.5707963267948966 rad + pos: 33.5,-37.5 parent: 2 - - uid: 12708 + - uid: 4387 components: - type: Transform - pos: 52.5,-19.5 + rot: 1.5707963267948966 rad + pos: 24.5,-30.5 parent: 2 - - uid: 12709 + - uid: 4389 components: - type: Transform - pos: 40.5,11.5 + pos: 27.5,-29.5 parent: 2 - - uid: 12710 + - uid: 4494 components: - type: Transform - pos: 75.5,67.5 + pos: 15.5,-43.5 parent: 2 - - uid: 12711 + - uid: 4508 components: - type: Transform - pos: 54.5,-15.5 + pos: 19.5,-46.5 parent: 2 - - uid: 12712 + - uid: 8148 components: - type: Transform - pos: 55.5,-15.5 + pos: 6.5,-24.5 parent: 2 - - uid: 12713 + - uid: 9709 components: - type: Transform - pos: 56.5,-15.5 + rot: -1.5707963267948966 rad + pos: 7.5,-28.5 parent: 2 - - uid: 12714 + - uid: 10206 components: - type: Transform - pos: 57.5,-15.5 + rot: 3.141592653589793 rad + pos: 10.5,-36.5 parent: 2 - - uid: 12715 + - uid: 10911 components: - type: Transform - pos: 58.5,-15.5 + pos: 7.5,-29.5 parent: 2 - - uid: 12716 + - uid: 10913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-12.5 + pos: 10.5,-37.5 parent: 2 - - uid: 12717 + - uid: 10962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,38.5 + pos: 14.5,89.5 parent: 2 - - uid: 12718 + - uid: 10963 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,15.5 + pos: 14.5,85.5 parent: 2 - - uid: 12719 + - uid: 10964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,7.5 + rot: -1.5707963267948966 rad + pos: 42.5,95.5 parent: 2 - - uid: 12720 + - uid: 10965 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,81.5 + pos: 31.5,93.5 parent: 2 - - uid: 12721 + - uid: 10966 components: - type: Transform rot: -1.5707963267948966 rad - pos: 88.5,19.5 + pos: 32.5,65.5 parent: 2 - - uid: 12722 + - uid: 10967 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,23.5 + pos: 67.5,34.5 parent: 2 - - uid: 12724 + - uid: 10968 components: - type: Transform + anchored: False rot: 3.141592653589793 rad - pos: 66.5,11.5 + pos: 35.5,92.5 parent: 2 - - uid: 12725 + - type: Physics + bodyType: Dynamic + - uid: 10969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,19.5 + rot: 3.141592653589793 rad + pos: 28.5,91.5 parent: 2 - - uid: 12726 + - uid: 10970 components: - type: Transform - pos: 52.5,38.5 + pos: 28.5,91.5 parent: 2 - - uid: 12727 + - uid: 10971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,44.5 + rot: 1.5707963267948966 rad + pos: 27.5,90.5 parent: 2 - - uid: 12729 + - uid: 10972 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,42.5 + pos: 35.5,94.5 parent: 2 - - uid: 12730 + - uid: 10973 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,39.5 + pos: 40.5,94.5 parent: 2 - - uid: 12731 + - uid: 10974 components: - type: Transform - pos: 57.5,35.5 + rot: 1.5707963267948966 rad + pos: 43.5,93.5 parent: 2 - - uid: 12732 + - uid: 10975 components: - type: Transform - pos: 58.5,42.5 + rot: 1.5707963267948966 rad + pos: 37.5,93.5 parent: 2 - - uid: 12733 + - uid: 10976 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-4.5 + rot: -1.5707963267948966 rad + pos: 37.5,93.5 parent: 2 - - uid: 12734 + - uid: 10977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-4.5 + rot: -1.5707963267948966 rad + pos: 31.5,93.5 parent: 2 - - uid: 12735 + - uid: 10978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,40.5 + pos: 11.5,88.5 parent: 2 - - uid: 12737 + - uid: 13885 components: - type: Transform - pos: 22.5,65.5 + rot: 1.5707963267948966 rad + pos: 6.5,-23.5 parent: 2 - - uid: 12738 + - uid: 13889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,7.5 + pos: 9.5,-32.5 parent: 2 - - uid: 12739 + - uid: 13892 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,38.5 + pos: 13.5,-38.5 parent: 2 - - uid: 12740 + - uid: 13893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,2.5 + rot: 1.5707963267948966 rad + pos: 12.5,-31.5 parent: 2 - - uid: 12741 + - uid: 13898 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,11.5 + pos: 11.5,-41.5 parent: 2 - - uid: 12742 + - uid: 14177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,11.5 + pos: -12.5,21.5 parent: 2 - - uid: 12743 + - uid: 16359 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,80.5 - parent: 2 - - uid: 12744 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 2 - - uid: 12745 - components: - - type: Transform - pos: 18.5,67.5 - parent: 2 - - uid: 12746 - components: - - type: Transform - pos: 22.5,68.5 + pos: 26.5,-28.5 parent: 2 - - uid: 12747 + - uid: 16441 components: - type: Transform - pos: 23.5,68.5 + rot: 1.5707963267948966 rad + pos: 24.5,-26.5 parent: 2 - - uid: 12748 + - uid: 21477 components: - type: Transform - pos: 48.5,54.5 + rot: -1.5707963267948966 rad + pos: 31.5,-33.5 parent: 2 - - uid: 12749 + - uid: 21894 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,2.5 + pos: -12.5,21.5 parent: 2 - - uid: 12750 + - uid: 21910 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,84.5 - parent: 2 - - uid: 13142 - components: - - type: Transform - pos: 49.5,63.5 + pos: -12.5,24.5 parent: 2 - - uid: 13147 + - uid: 21911 components: - type: Transform - pos: 53.5,64.5 + rot: 1.5707963267948966 rad + pos: -4.5,26.5 parent: 2 - - uid: 13876 + - uid: 23108 components: - type: Transform - pos: 51.5,58.5 - parent: 2 - - uid: 14651 + pos: 28.5,52.5 + parent: 16527 + - uid: 23109 components: - type: Transform - pos: 49.5,62.5 - parent: 2 - - uid: 15690 + rot: 1.5707963267948966 rad + pos: 28.5,52.5 + parent: 16527 + - uid: 23110 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,48.5 - parent: 2 - - uid: 15722 + pos: 28.5,52.5 + parent: 16527 + - uid: 23111 components: - type: Transform - pos: 42.5,46.5 - parent: 2 - - uid: 15723 + rot: 3.141592653589793 rad + pos: 28.5,52.5 + parent: 16527 + - uid: 23112 components: - type: Transform - pos: 41.5,46.5 - parent: 2 - - uid: 15728 + rot: -1.5707963267948966 rad + pos: -0.5,22.5 + parent: 16527 + - uid: 23113 components: - type: Transform - pos: 38.5,46.5 - parent: 2 - - uid: 16139 + pos: 0.5,22.5 + parent: 16527 + - uid: 23114 components: - type: Transform - pos: 52.5,64.5 - parent: 2 - - uid: 16141 + rot: 1.5707963267948966 rad + pos: 1.5,22.5 + parent: 16527 + - uid: 23115 components: - type: Transform - pos: 51.5,64.5 - parent: 2 - - uid: 16142 + pos: 1.5,22.5 + parent: 16527 + - uid: 23116 components: - type: Transform - pos: 49.5,61.5 - parent: 2 - - uid: 16212 + pos: -0.5,22.5 + parent: 16527 + - uid: 23117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,54.5 - parent: 2 - - uid: 16311 + rot: 3.141592653589793 rad + pos: -0.5,22.5 + parent: 16527 + - uid: 23118 components: - type: Transform - pos: 18.5,-35.5 - parent: 2 - - uid: 16363 + rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 16527 + - uid: 23119 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-44.5 - parent: 2 - - uid: 16365 + pos: 1.5,22.5 + parent: 16527 + - uid: 23120 components: - type: Transform - pos: 18.5,-34.5 - parent: 2 - - uid: 16440 + rot: -1.5707963267948966 rad + pos: -25.5,33.5 + parent: 16527 + - uid: 23121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-44.5 - parent: 2 - - uid: 19835 + pos: -23.5,33.5 + parent: 16527 + - uid: 23122 components: - type: Transform - pos: 23.5,33.5 - parent: 16504 - - uid: 19836 + pos: 3.5,42.5 + parent: 16527 + - uid: 23123 components: - type: Transform - pos: 3.5,5.5 - parent: 16504 - - uid: 19837 + rot: 3.141592653589793 rad + pos: 3.5,43.5 + parent: 16527 + - uid: 23124 components: - type: Transform - pos: 3.5,4.5 - parent: 16504 - - uid: 19838 + rot: 3.141592653589793 rad + pos: -2.5,56.5 + parent: 16527 + - uid: 23125 components: - type: Transform - pos: 3.5,3.5 - parent: 16504 - - uid: 19839 + pos: 8.5,58.5 + parent: 16527 + - uid: 23126 components: - type: Transform - pos: 3.5,2.5 - parent: 16504 - - uid: 19840 + rot: 3.141592653589793 rad + pos: 8.5,58.5 + parent: 16527 + - uid: 23127 components: - type: Transform - pos: 3.5,1.5 - parent: 16504 - - uid: 19841 + rot: 1.5707963267948966 rad + pos: 24.5,51.5 + parent: 16527 + - uid: 23128 components: - type: Transform - pos: -10.5,26.5 - parent: 16504 - - uid: 19842 + rot: -1.5707963267948966 rad + pos: 25.5,50.5 + parent: 16527 + - uid: 23129 components: - type: Transform - pos: -9.5,26.5 - parent: 16504 - - uid: 19843 + rot: 3.141592653589793 rad + pos: 25.5,50.5 + parent: 16527 + - uid: 23130 components: - type: Transform - pos: -6.5,26.5 - parent: 16504 - - uid: 19844 + rot: -1.5707963267948966 rad + pos: 24.5,51.5 + parent: 16527 +- proto: GrilleDiagonal + entities: + - uid: 13350 components: - type: Transform - pos: -7.5,26.5 - parent: 16504 - - uid: 19847 + rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 2 + - uid: 23131 components: - type: Transform - pos: 13.5,23.5 - parent: 16504 - - uid: 19848 + pos: -2.5,22.5 + parent: 16527 + - uid: 23132 components: - type: Transform - pos: 15.5,23.5 - parent: 16504 - - uid: 19849 + rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 16527 + - uid: 23133 components: - type: Transform - pos: 15.5,27.5 - parent: 16504 - - uid: 19850 + pos: -27.5,32.5 + parent: 16527 + - uid: 23134 components: - type: Transform - pos: 13.5,27.5 - parent: 16504 - - uid: 19851 + pos: -26.5,33.5 + parent: 16527 + - uid: 23135 components: - type: Transform - pos: 22.5,33.5 - parent: 16504 - - uid: 19852 + rot: -1.5707963267948966 rad + pos: -22.5,32.5 + parent: 16527 + - uid: 23136 components: - type: Transform - pos: 22.5,32.5 - parent: 16504 - - uid: 19853 + rot: -1.5707963267948966 rad + pos: -38.5,41.5 + parent: 16527 + - uid: 23137 components: - type: Transform - pos: 23.5,34.5 - parent: 16504 - - uid: 21198 + rot: 3.141592653589793 rad + pos: -38.5,40.5 + parent: 16527 +- proto: GrilleSpawner + entities: + - uid: 10979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,50.5 + pos: 68.5,34.5 parent: 2 - - uid: 21199 +- proto: GroundCannabis + entities: + - uid: 10980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,50.5 + pos: 7.5367393,3.0548403 parent: 2 - - uid: 22207 + - uid: 10981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,54.5 + pos: 7.521114,3.4610903 parent: 2 - - uid: 22208 +- proto: GunSafe + entities: + - uid: 10982 components: + - type: MetaData + name: оружейный сейф дубинок - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,54.5 + pos: 57.5,32.5 parent: 2 - - uid: 22209 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10988 + - 10983 + - 10989 + - 10990 + - 10991 + - 10984 + - 10985 + - 10986 + - 10992 + - 10987 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 23051 components: + - type: MetaData + desc: Стандартное хранилище. - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,54.5 - parent: 2 - - uid: 22210 + pos: 1.5,81.5 + parent: 16527 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23055 + - 23053 + - 23052 + - 23054 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 23138 components: + - type: MetaData + desc: Стандартное хранилище. - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,54.5 - parent: 2 -- proto: RemoteSignaller + pos: 4.5,80.5 + parent: 16527 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23139 + - 23140 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeDisabler entities: - - uid: 21499 + - uid: 10993 components: - - type: MetaData - desc: Крайне рекомендуется не использовать данный передатчик. - name: пульт от ядерки - type: Transform - rot: 0.22689280275926285 rad - pos: 8.359158,27.835148 + pos: 58.5,32.5 parent: 2 -- proto: RemoteSignallerAdvanced +- proto: GunSafeLaserCarbine entities: - - uid: 12751 + - uid: 10994 components: - type: Transform - pos: 24.749239,-6.8637943 + pos: 61.5,30.5 parent: 2 -- proto: ResearchAndDevelopmentServer +- proto: GunSafePistolMk58 entities: - - uid: 12752 + - uid: 10995 components: - type: Transform - pos: 13.5,6.5 + pos: 59.5,30.5 parent: 2 -- proto: Retractor +- proto: GunSafeRifleLecter entities: - - uid: 12753 + - uid: 10996 components: - type: Transform - pos: 50.50245,-8.393928 + pos: 61.5,32.5 parent: 2 -- proto: RevolverCapGunFake +- proto: GunSafeShotgunKammerer entities: - - uid: 1027 + - uid: 10997 components: - type: Transform - parent: 1021 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RGBStaff + pos: 60.5,32.5 + parent: 2 +- proto: GunSafeSubMachineGunDrozd entities: - - uid: 12754 + - uid: 10998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.47195,-10.533157 + pos: 59.5,32.5 parent: 2 -- proto: RiotBulletShield +- proto: Gyroscope entities: - - uid: 19857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.80603,-6.4206114 - parent: 16504 - - uid: 19858 + - uid: 23141 components: - type: Transform - pos: 14.534427,-8.525803 - parent: 16504 -- proto: RipleyHarness + pos: -24.5,24.5 + parent: 16527 +- proto: Handcuffs entities: - - uid: 19859 + - uid: 1050 components: - type: Transform - pos: -15.2898035,22.08592 - parent: 16504 -- proto: RobocopCircuitBoard - entities: - - uid: 587 + parent: 1046 + - type: Physics + canCollide: False + - uid: 1051 components: - type: Transform - parent: 577 + parent: 1046 - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: RockGuitarInstrument - entities: - - uid: 21489 + - uid: 10999 components: - type: Transform - pos: 20.910074,40.483597 + pos: 15.573995,8.459485 parent: 2 -- proto: RollerBed - entities: - - uid: 12755 + - uid: 11000 components: - type: Transform - pos: 46.72002,3.5596633 + pos: 39.530518,30.571348 parent: 2 - - uid: 12756 +- proto: HandheldHealthAnalyzer + entities: + - uid: 11001 components: - type: Transform - pos: 45.423145,2.6690383 + pos: 26.443588,-2.342307 parent: 2 - - uid: 12757 + - uid: 11002 components: - type: Transform - pos: 38.46535,5.7159133 + pos: 53.36373,-5.378605 parent: 2 - - uid: 12758 - components: - - type: Transform - pos: 39.54532,-3.1076193 - parent: 2 - - uid: 12759 - components: - - type: Transform - pos: 39.54532,-2.1701193 - parent: 2 -- proto: RollerBedSpawnFolded +- proto: HandheldHealthAnalyzerEmpty entities: - - uid: 12760 + - uid: 23142 components: - type: Transform - pos: 38.490265,8.687768 - parent: 2 -- proto: RubberStampApproved + pos: -35.75316,35.61078 + parent: 16527 +- proto: HandheldStationMap entities: - - uid: 12761 + - uid: 6675 components: - type: Transform - pos: 8.426081,9.454671 - parent: 2 - - uid: 12762 + parent: 6673 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11003 components: - type: Transform - pos: 18.22908,20.781065 + pos: 9.351891,31.611198 parent: 2 -- proto: RubberStampDenied - entities: - - uid: 12763 + - uid: 11004 components: - type: Transform - pos: 8.722956,9.704671 + pos: 5.369075,5.5609436 parent: 2 - - uid: 12764 + - uid: 11005 components: - type: Transform - pos: 18.571537,20.805527 + pos: 23.516209,-4.270588 parent: 2 -- proto: RubberStampGreytide - entities: - - uid: 12765 + - uid: 11006 components: - type: Transform - pos: 34.806297,-10.467799 + pos: 24.46905,27.618362 parent: 2 -- proto: SalvageCanisterSpawner - entities: - - uid: 20485 + - uid: 11007 components: - type: Transform - pos: 63.5,18.5 + pos: 78.51673,58.556747 parent: 2 -- proto: SalvageHumanCorpseSpawner - entities: - - uid: 19860 - components: - - type: Transform - pos: 25.5,17.5 - parent: 16504 - - uid: 19861 - components: - - type: Transform - pos: -10.5,-5.5 - parent: 16504 - - uid: 19862 + - uid: 11008 components: - type: Transform - pos: -12.5,7.5 - parent: 16504 - - uid: 19863 + pos: 45.503586,69.51929 + parent: 2 + - uid: 11009 components: - type: Transform - pos: 11.5,-2.5 - parent: 16504 - - uid: 19864 + pos: 65.44374,49.566578 + parent: 2 + - uid: 11010 components: - type: Transform - pos: 12.5,9.5 - parent: 16504 - - uid: 19865 + pos: 41.548977,62.521076 + parent: 2 +- proto: HandLabeler + entities: + - uid: 11011 components: - type: Transform - pos: 12.5,20.5 - parent: 16504 - - uid: 19866 + pos: 92.61322,18.462994 + parent: 2 + - uid: 11012 components: - type: Transform - pos: -13.5,12.5 - parent: 16504 - - uid: 19867 + pos: 8.52464,9.663798 + parent: 2 + - uid: 11013 components: - type: Transform - pos: -18.5,15.5 - parent: 16504 - - uid: 19868 + pos: 20.40706,19.545523 + parent: 2 + - uid: 11014 components: - type: Transform - pos: -18.5,7.5 - parent: 16504 - - uid: 19869 + pos: 52.57107,-5.4140863 + parent: 2 + - uid: 11015 components: - type: Transform - pos: 17.5,32.5 - parent: 16504 - - uid: 19870 + pos: 43.472748,5.5077753 + parent: 2 + - uid: 11016 components: - type: Transform - pos: 15.5,30.5 - parent: 16504 -- proto: SalvageMagnet - entities: - - uid: 12766 + pos: 34.55772,9.73306 + parent: 2 + - uid: 11017 components: - type: Transform - pos: -1.5,17.5 + pos: 52.57944,49.463585 parent: 2 -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 19871 + - uid: 11018 components: - type: Transform - pos: -8.5,24.5 - parent: 16504 -- proto: SalvageSpawnerEquipment - entities: - - uid: 20375 + pos: 25.541246,24.606262 + parent: 2 + - uid: 11019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-24.5 + pos: 24.446766,-8.308596 parent: 2 - - uid: 20376 + - uid: 11020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-18.5 + pos: 24.463417,-1.9425753 parent: 2 -- proto: SalvageSpawnerScrapCommon - entities: - - uid: 20374 + - uid: 11021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-3.5 + pos: 15.456744,11.58169 parent: 2 - - uid: 20383 + - uid: 11022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-11.5 + pos: 7.689167,31.627663 parent: 2 - - uid: 20387 + - uid: 11023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,2.5 + pos: 65.44771,64.04094 parent: 2 - - uid: 20389 + - uid: 11024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,30.5 + pos: 42.147377,42.589478 parent: 2 - - uid: 20399 + - uid: 11025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,53.5 + pos: 74.47004,62.509686 parent: 2 - - uid: 20400 + - uid: 11026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,66.5 + pos: 55.407887,6.581035 parent: 2 - - uid: 20401 +- proto: HappyHonk + entities: + - uid: 23143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,68.5 - parent: 2 -- proto: SalvageSpawnerScrapCommon75 + pos: 29.205793,49.216114 + parent: 16527 +- proto: HeadVulpkanin entities: - - uid: 20385 + - uid: 23144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-0.5 - parent: 2 - - uid: 20386 + pos: -23.486053,42.312134 + parent: 16527 +- proto: HeatExchanger + entities: + - uid: 11027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,1.5 + rot: 1.5707963267948966 rad + pos: 34.5,86.5 parent: 2 - - uid: 20391 +- proto: HighSecArmoryLocked + entities: + - uid: 11028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,44.5 + pos: 57.5,29.5 parent: 2 - - uid: 20392 +- proto: HighSecCentralCommandLocked + entities: + - uid: 23145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,38.5 - parent: 2 - - uid: 20402 + pos: 6.5,47.5 + parent: 16527 + - uid: 23146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,68.5 - parent: 2 - - uid: 20403 + pos: 6.5,7.5 + parent: 16527 +- proto: HighSecCommandLocked + entities: + - uid: 323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,66.5 + pos: 22.5,-32.5 parent: 2 - - uid: 20406 + - uid: 5845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,99.5 + pos: 21.5,-38.5 parent: 2 - - uid: 20407 + - uid: 6531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,87.5 + pos: 23.5,-38.5 parent: 2 - - uid: 20410 + - uid: 11030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,90.5 + pos: 10.5,26.5 parent: 2 - - uid: 20412 + - uid: 11031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,87.5 + pos: 53.5,50.5 parent: 2 - - uid: 20413 + - uid: 11032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,83.5 + pos: 59.5,48.5 parent: 2 - - uid: 20415 + - uid: 11033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,78.5 + rot: 3.141592653589793 rad + pos: 9.5,26.5 parent: 2 - - uid: 20416 +- proto: HolofanProjectorEmpty + entities: + - uid: 50 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,74.5 - parent: 2 - - uid: 20417 + parent: 41 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HospitalCurtains + entities: + - uid: 11036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,71.5 + pos: 22.5,59.5 parent: 2 - - uid: 20492 + - uid: 11037 components: - type: Transform - pos: 30.5,16.5 + pos: 57.5,36.5 parent: 2 - - uid: 20497 + - uid: 11951 components: - type: Transform - pos: 29.5,17.5 + pos: 21.5,59.5 parent: 2 - - uid: 20498 + - uid: 13577 components: - type: Transform - pos: 32.5,17.5 + pos: 10.5,53.5 parent: 2 -- proto: SalvageSpawnerScrapValuable - entities: - - uid: 20384 + - uid: 23147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,4.5 - parent: 2 - - uid: 20388 + pos: 17.5,32.5 + parent: 16527 + - uid: 23148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,9.5 - parent: 2 - - uid: 20390 + pos: 17.5,34.5 + parent: 16527 + - uid: 23149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,33.5 - parent: 2 -- proto: SalvageSpawnerScrapValuable75 + pos: 15.5,32.5 + parent: 16527 +- proto: HospitalCurtainsOpen entities: - - uid: 19724 + - uid: 11038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-19.5 + pos: 41.5,-4.5 parent: 2 - - uid: 20373 + - uid: 11039 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-20.5 + pos: 35.5,-2.5 parent: 2 - - uid: 20395 + - uid: 11040 components: - type: Transform rot: -1.5707963267948966 rad - pos: 85.5,51.5 + pos: 35.5,-0.5 parent: 2 - - uid: 20397 + - uid: 11041 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,95.5 + pos: 35.5,1.5 parent: 2 - - uid: 20398 + - uid: 11042 components: - type: Transform rot: -1.5707963267948966 rad - pos: 87.5,60.5 + pos: 41.5,-2.5 parent: 2 - - uid: 20404 + - uid: 11043 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,66.5 + pos: 41.5,-0.5 parent: 2 - - uid: 20405 + - uid: 11044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,97.5 + pos: 22.5,22.5 parent: 2 - - uid: 20408 + - uid: 11045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,93.5 + pos: 15.5,4.5 parent: 2 - - uid: 20409 + - uid: 11046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,89.5 + pos: 2.5,1.5 parent: 2 - - uid: 20411 + - uid: 11047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,90.5 + pos: 14.5,58.5 parent: 2 - - uid: 20414 + - uid: 11048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,88.5 + pos: 14.5,57.5 parent: 2 - - uid: 20418 + - uid: 11049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,73.5 + rot: 3.141592653589793 rad + pos: 59.5,65.5 parent: 2 - - uid: 20419 + - uid: 23150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,69.5 - parent: 2 - - uid: 20420 + pos: 17.5,36.5 + parent: 16527 + - uid: 23151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,70.5 - parent: 2 -- proto: Scalpel + pos: 15.5,30.5 + parent: 16527 +- proto: hydroponicsSoil entities: - - uid: 12767 + - uid: 11050 components: - type: Transform - pos: 49.51219,-8.302678 + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 parent: 2 -- proto: ScrapAirlock1 - entities: - - uid: 10391 + - uid: 11051 components: - type: Transform - pos: 20.6236,62.39603 + rot: 1.5707963267948966 rad + pos: 9.5,-11.5 parent: 2 - - uid: 20228 + - uid: 21215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.438484,7.7291594 + pos: 42.5,53.5 parent: 2 - - uid: 20421 + - uid: 21216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.825943,69.96823 + pos: 42.5,52.5 parent: 2 - - uid: 20425 + - uid: 21217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.411263,71.63489 + pos: 42.5,51.5 parent: 2 - - uid: 20429 +- proto: HydroponicsToolClippers + entities: + - uid: 11052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.067757,86.4586 + pos: 58.36517,36.66971 parent: 2 - - uid: 20436 +- proto: HydroponicsToolHatchet + entities: + - uid: 11053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.387238,94.4507 + pos: 68.68279,28.617638 parent: 2 - - uid: 22339 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 11054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.7403755,-9.606357 + pos: 9.57419,-12.499212 parent: 2 - - uid: 22376 + - uid: 11055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.6857185,20.808674 + pos: 68.37029,28.398888 parent: 2 -- proto: ScrapAirlock2 - entities: - - uid: 20227 + - uid: 11056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.98536,4.9947844 + pos: 58.62809,36.625893 parent: 2 - - uid: 20336 +- proto: HydroponicsToolSpade + entities: + - uid: 11057 components: - type: Transform rot: -1.5707963267948966 rad - pos: 76.81374,23.54584 + pos: 59.056137,41.104946 parent: 2 - - uid: 20457 +- proto: hydroponicsTray + entities: + - uid: 3869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.810314,45.569664 + pos: 40.5,48.5 parent: 2 - - uid: 20458 + - uid: 11058 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.20094,40.507164 + pos: 59.5,41.5 parent: 2 - - uid: 22348 + - uid: 11059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.490383,-7.7806845 + rot: -1.5707963267948966 rad + pos: 59.5,39.5 parent: 2 -- proto: ScrapBucket - entities: - - uid: 13202 + - uid: 11060 components: - type: Transform - pos: 42.308426,-27.460276 + pos: 40.5,49.5 parent: 2 - - uid: 19387 + - uid: 11061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.573837,48.52055 + pos: 68.5,30.5 parent: 2 - - uid: 19602 + - uid: 11062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.870712,53.670414 + pos: 68.5,24.5 parent: 2 - - uid: 19856 + - type: PlantHolder + weedLevel: 2 + - uid: 11063 components: - type: Transform - pos: 65.88283,3.6273952 + pos: 68.5,25.5 parent: 2 - - uid: 20461 + - uid: 11064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.482185,44.49154 + pos: 68.5,26.5 parent: 2 - - uid: 21385 + - uid: 11065 components: - type: Transform - pos: 9.384015,53.228157 + pos: 68.5,27.5 parent: 2 - - uid: 22347 + - type: PlantHolder + weedLevel: 2 + - uid: 11066 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.537258,-9.640644 + pos: 66.5,24.5 parent: 2 - - uid: 22361 + - uid: 11067 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.765663,-11.55441 + pos: 66.5,25.5 parent: 2 - - uid: 22362 + - uid: 11068 components: - type: Transform - pos: 46.45009,-13.644562 + rot: 1.5707963267948966 rad + pos: 66.5,26.5 parent: 2 - - uid: 22368 + - uid: 21214 components: - type: Transform - pos: 11.677515,10.385842 + pos: 41.5,49.5 parent: 2 -- proto: ScrapCamera - entities: - - uid: 20474 + - uid: 21349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.181656,23.526672 + pos: 37.5,49.5 parent: 2 - - uid: 22382 + - uid: 21350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.54509354,22.308674 + pos: 39.5,49.5 parent: 2 - - uid: 22383 + - uid: 21351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.766598,42.22448 + pos: 38.5,48.5 parent: 2 - - uid: 22384 + - uid: 21352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.782223,42.75573 + pos: 38.5,49.5 parent: 2 -- proto: ScrapCanister1 - entities: - - uid: 12423 + - uid: 21353 components: - type: Transform - pos: 20.6861,61.43157 + pos: 37.5,48.5 parent: 2 - - uid: 20466 + - uid: 21354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.92364,38.39779 + pos: 39.5,48.5 parent: 2 -- proto: ScrapCanister2 - entities: - - uid: 19709 + - uid: 21355 components: - type: Transform - pos: 33.51522,66.79636 + pos: 41.5,48.5 parent: 2 - - uid: 19710 + - uid: 21358 components: - type: Transform - pos: 26.331015,66.57761 + pos: 42.5,49.5 parent: 2 - - uid: 19711 + - uid: 21360 components: - type: Transform - pos: 40.656876,56.83481 + pos: 42.5,48.5 parent: 2 - - uid: 20432 +- proto: HydroponicsTrayEmpty + entities: + - uid: 11069 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.38652,93.413376 + pos: 59.5,40.5 parent: 2 - - uid: 20433 +- proto: HydroponicsTrayMachineCircuitboard + entities: + - uid: 11070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.964645,88.350876 + pos: 24.533537,-10.43151 parent: 2 -- proto: ScrapCloset +- proto: IDComputerCircuitboard entities: - - uid: 20234 + - uid: 11071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.320724,10.405152 + pos: 57.388237,47.704113 parent: 2 - - uid: 20235 +- proto: IncompleteBaseBallBat + entities: + - uid: 21289 components: + - type: MetaData + name: кий - type: Transform - rot: -1.5707963267948966 rad - pos: 89.55222,10.577027 + rot: 1.5707963267948966 rad + pos: 15.552657,48.833862 parent: 2 - - uid: 20236 + missingComponents: + - Construction +- proto: InflatableDoor + entities: + - uid: 23152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 92.97849,17.161118 - parent: 2 - - uid: 20237 + pos: -4.5,34.5 + parent: 16527 + - uid: 23153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.32224,23.035412 - parent: 2 - - uid: 20250 + pos: -9.5,49.5 + parent: 16527 + - uid: 23154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 86.94724,24.535412 - parent: 2 - - uid: 20264 + pos: -20.5,48.5 + parent: 16527 +- proto: InflatableWall + entities: + - uid: 11072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.877525,23.426037 + pos: 70.5,6.5 parent: 2 - - uid: 20423 + - uid: 11073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.54277,92.194626 + pos: 71.5,6.5 parent: 2 - - uid: 20430 + - uid: 11074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.317757,90.350876 + pos: 64.5,22.5 parent: 2 - - uid: 21248 + - uid: 11075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.449192,-26.726748 + pos: 32.5,-6.5 parent: 2 - - uid: 21384 + - uid: 11076 components: - type: Transform - pos: 9.49688,53.505936 + pos: 58.5,-7.5 parent: 2 - - uid: 22350 + - uid: 11077 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.412258,-10.311934 + pos: 10.5,78.5 parent: 2 - - uid: 22351 + - uid: 23155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.224758,-7.5306845 - parent: 2 - - uid: 22363 + pos: -9.5,47.5 + parent: 16527 + - uid: 23156 components: - type: Transform - pos: 50.351883,-13.519562 - parent: 2 - - uid: 22365 + pos: -9.5,51.5 + parent: 16527 + - uid: 23157 components: - type: Transform - pos: 11.670607,1.7783926 - parent: 2 - - uid: 22377 + pos: -9.5,50.5 + parent: 16527 + - uid: 23158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.43928146,20.449299 - parent: 2 - - uid: 22378 + pos: -9.5,48.5 + parent: 16527 + - uid: 23159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.54865646,22.699299 - parent: 2 - - uid: 22386 + pos: -21.5,46.5 + parent: 16527 + - uid: 23160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.547848,53.146114 - parent: 2 - - uid: 22389 + pos: -20.5,47.5 + parent: 16527 + - uid: 23161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.616801,62.49832 - parent: 2 - - uid: 22390 + pos: -21.5,50.5 + parent: 16527 + - uid: 23162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.851176,64.2327 - parent: 2 -- proto: ScrapFaxMachine - entities: - - uid: 20488 + pos: -20.5,49.5 + parent: 16527 + - uid: 23163 components: - type: Transform - pos: 32.26686,16.557922 - parent: 2 - - uid: 21386 + pos: -16.5,50.5 + parent: 16527 + - uid: 23164 components: - type: Transform - pos: 9.478001,50.663925 - parent: 2 - - uid: 22345 + pos: -16.5,49.5 + parent: 16527 + - uid: 23165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.623405,-19.60445 - parent: 2 -- proto: ScrapFireExtinguisher - entities: - - uid: 10392 + pos: -13.5,47.5 + parent: 16527 + - uid: 23166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.32804,10.310881 - parent: 2 - - uid: 10396 + pos: -13.5,48.5 + parent: 16527 + - uid: 23167 components: - type: Transform - pos: 12.582918,63.52532 - parent: 2 - - uid: 20465 + pos: -25.5,50.5 + parent: 16527 + - uid: 23168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.501766,38.36654 - parent: 2 - - uid: 20472 + pos: 27.5,48.5 + parent: 16527 + - uid: 23169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.57228,17.120422 - parent: 2 - - uid: 21249 + pos: 25.5,52.5 + parent: 16527 + - uid: 23170 components: - type: Transform - pos: 38.837387,-27.39517 - parent: 2 - - uid: 21388 + pos: 29.5,50.5 + parent: 16527 + - uid: 23171 components: - type: Transform - pos: 10.608158,52.9417 - parent: 2 - - uid: 22359 + pos: 18.5,48.5 + parent: 16527 + - uid: 23172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.486443,-11.360081 - parent: 2 - - uid: 22360 + pos: 19.5,49.5 + parent: 16527 +- proto: InflatableWallStack1 + entities: + - uid: 23173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.361443,-8.563206 - parent: 2 - - uid: 22369 + pos: 25.680267,51.724915 + parent: 16527 + - uid: 23174 components: - type: Transform - pos: 11.53689,8.401467 - parent: 2 - - uid: 22370 + rot: -1.5707963267948966 rad + pos: 26.689941,48.55487 + parent: 16527 + - uid: 23175 components: - type: Transform - pos: 1.3732185,20.527424 - parent: 2 - - uid: 22371 + pos: 29.980026,49.75238 + parent: 16527 +- proto: IngotGold + entities: + - uid: 11078 components: - type: Transform - pos: 1.2794685,23.105549 + pos: 8.155453,28.597544 parent: 2 -- proto: ScrapFirelock1 + - uid: 23176 + components: + - type: Transform + pos: -18.53483,19.168713 + parent: 16527 +- proto: IngotGold1 entities: - - uid: 10197 + - uid: 21783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.467503,-27.380741 + pos: 16.200787,45.625977 parent: 2 - - uid: 19603 + - uid: 21864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.972996,56.66772 + pos: 16.502869,45.49056 parent: 2 - - uid: 20422 +- proto: IngotSilver + entities: + - uid: 11079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.513443,77.02246 + pos: 8.702328,28.660044 parent: 2 - - uid: 20428 + - uid: 23177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.769695,89.3336 - parent: 2 - - uid: 20439 + pos: -27.438072,29.549482 + parent: 16527 +- proto: IntercomAssembly + entities: + - uid: 23178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.54469,40.600914 - parent: 2 - - uid: 22356 + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 16527 + - uid: 23179 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.74942,-1.5367069 - parent: 2 - - uid: 22379 + pos: 4.5,3.5 + parent: 16527 + - uid: 23180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.4825935,19.449299 - parent: 2 - - uid: 22387 + pos: 14.5,39.5 + parent: 16527 + - uid: 23181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.610348,56.334045 - parent: 2 -- proto: ScrapFirelock2 + pos: 0.5,53.5 + parent: 16527 +- proto: IntercomCommon entities: - - uid: 20229 + - uid: 11081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.094734,9.639527 + rot: 3.141592653589793 rad + pos: 2.5,19.5 parent: 2 - - uid: 20437 + - uid: 11082 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.63009,67.3504 + pos: 14.5,34.5 parent: 2 - - uid: 22341 + - uid: 11083 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.3653755,-12.64996 + pos: 16.5,10.5 parent: 2 - - uid: 22355 +- proto: IntercomEngineering + entities: + - uid: 11084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.843168,-7.602831 + pos: 52.5,54.5 parent: 2 -- proto: ScrapFirelock3 +- proto: IntercomMedical entities: - - uid: 6095 + - uid: 11085 components: - type: Transform - pos: 38.597733,-27.484907 + rot: -1.5707963267948966 rad + pos: 34.5,10.5 parent: 2 - - uid: 19722 +- proto: IntercomScience + entities: + - uid: 11086 components: - type: Transform - pos: 36.698025,57.791893 + rot: 1.5707963267948966 rad + pos: 25.5,10.5 parent: 2 - - uid: 20316 +- proto: IntercomSecurity + entities: + - uid: 11087 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.96994,-6.2986417 + pos: 38.5,33.5 parent: 2 - - uid: 20426 +- proto: IntercomSupply + entities: + - uid: 11088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.536263,82.04932 + rot: 1.5707963267948966 rad + pos: 6.5,15.5 parent: 2 - - uid: 20434 +- proto: IronRock + entities: + - uid: 11089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.44902,93.54445 + pos: 53.5,89.5 parent: 2 - - uid: 20438 + - uid: 11090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.16134,67.49103 + pos: 55.5,88.5 parent: 2 - - uid: 20440 + - uid: 11091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.54469,45.257164 + pos: 54.5,89.5 parent: 2 - - uid: 22349 + - uid: 11092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.631008,-12.749434 + pos: 50.5,89.5 parent: 2 - - uid: 22375 + - uid: 11093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.6075935,23.246174 + pos: 54.5,91.5 parent: 2 - - uid: 22385 + - uid: 11094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.547848,49.53674 + pos: 53.5,91.5 parent: 2 - - uid: 22388 + - uid: 11095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.688473,61.545197 + pos: 51.5,91.5 parent: 2 -- proto: ScrapGlass +- proto: IronRockArtifactFragment entities: - - uid: 18617 + - uid: 11096 components: - type: Transform - pos: 18.060389,65.418015 + pos: 52.5,91.5 parent: 2 - - uid: 19723 + - uid: 11097 components: - type: Transform - pos: 24.56631,67.418015 + pos: 55.5,91.5 parent: 2 - - uid: 20327 +- proto: IronRockBananium + entities: + - uid: 11098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.75893,-14.323473 + pos: 55.5,90.5 parent: 2 - - uid: 20330 + - uid: 11099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.49447,-6.567425 + pos: 55.5,89.5 parent: 2 - - uid: 20333 +- proto: IronRockCoal + entities: + - uid: 11100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.333572,9.121813 + pos: 56.5,88.5 parent: 2 - - uid: 20334 + - uid: 11101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.55717,10.275419 + pos: 56.5,89.5 parent: 2 - - uid: 20335 + - uid: 11102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.79299,24.373964 + pos: 54.5,92.5 parent: 2 - - uid: 20427 +- proto: IronRockDiamond + entities: + - uid: 11103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.442513,77.955765 + pos: 52.5,89.5 parent: 2 - - uid: 21377 + - uid: 11104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.686295,51.39656 + pos: 51.5,90.5 parent: 2 - - uid: 22353 + - uid: 11105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.631008,-4.5306845 + pos: 51.5,89.5 parent: 2 - - uid: 22354 +- proto: IronRockMining + entities: + - uid: 11106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.593168,-7.134081 + pos: 54.5,90.5 parent: 2 - - uid: 22367 +- proto: IronRockPlasma + entities: + - uid: 11107 components: - type: Transform - pos: 15.326857,1.4033926 + pos: 53.5,90.5 parent: 2 -- proto: ScrapIntercom +- proto: IronRockQuartz entities: - - uid: 12964 + - uid: 11108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.474758,-10.750019 + pos: 50.5,90.5 parent: 2 - - uid: 19854 +- proto: IronRockUranium + entities: + - uid: 11109 components: - type: Transform - pos: 62.510433,4.355604 + pos: 52.5,92.5 parent: 2 - - uid: 20462 +- proto: JanitorialTrolley + entities: + - uid: 11110 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.345516,45.49154 + pos: 68.5,47.5 parent: 2 - - uid: 21387 + - uid: 11111 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.29561,51.3792 + rot: 1.5707963267948966 rad + pos: 67.5,49.5 parent: 2 - - uid: 22364 + - uid: 23182 components: - type: Transform - pos: 9.123732,2.9502676 - parent: 2 -- proto: ScrapJetpack - entities: - - uid: 20471 + rot: 1.5707963267948966 rad + pos: 21.5,13.5 + parent: 16527 + - uid: 23183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.603535,18.401672 - parent: 2 - - uid: 21252 + rot: 1.5707963267948966 rad + pos: 22.5,49.5 + parent: 16527 +- proto: JetpackSecurityFilled + entities: + - uid: 12 components: - type: Transform - pos: 42.24936,-27.23892 - parent: 2 - - uid: 22343 + parent: 9 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.6153755,-18.5732 - parent: 2 - - uid: 22346 + parent: 13 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.560905,-19.6357 - parent: 2 -- proto: ScrapMedkit - entities: - - uid: 3598 + parent: 17 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24 components: - type: Transform - pos: 50.54714,9.420256 - parent: 2 - - uid: 20337 + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.236057,-0.2451626 - parent: 2 - - uid: 20338 + parent: 25 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 32 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.958508,-7.592559 - parent: 2 - - uid: 20339 + parent: 29 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.446583,-7.233184 - parent: 2 - - uid: 20370 + parent: 11112 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Joint + entities: + - uid: 11119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.31334,-3.5972953 - parent: 2 - - uid: 20371 + parent: 11118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11120 components: - type: Transform - pos: 48.81419,-4.6310463 - parent: 2 - - uid: 21250 - components: - - type: Transform - pos: 41.012196,-27.017567 - parent: 2 - - uid: 22344 + parent: 11118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.844482,-19.463825 - parent: 2 - - uid: 22380 + parent: 11118 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Jukebox + entities: + - uid: 21411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.37678146,19.324299 + pos: 28.5,48.5 parent: 2 - - uid: 22381 +- proto: KitchenElectricGrill + entities: + - uid: 2320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.4357185,21.230549 + pos: 27.5,55.5 parent: 2 -- proto: ScrapMopBucket +- proto: KitchenKnife entities: - - uid: 12569 + - uid: 21594 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.312878,10.592131 + pos: 28.491674,53.607323 parent: 2 - - uid: 12956 + - uid: 21595 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.427883,-19.5732 + pos: 28.460608,53.565594 parent: 2 - - uid: 20464 + - uid: 23184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.36114,40.632164 - parent: 2 -- proto: ScrapPAI + rot: 3.141592653589793 rad + pos: 11.902172,24.792126 + parent: 16527 +- proto: KitchenMicrowave entities: - - uid: 19846 + - uid: 11131 components: - type: Transform - pos: 63.041683,2.9413962 + pos: 56.5,41.5 parent: 2 - - uid: 20463 + - uid: 11132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.876766,38.24154 + pos: 42.5,-6.5 parent: 2 - - uid: 22340 + - uid: 11135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.516598,47.00549 + pos: 43.5,40.5 parent: 2 - - uid: 22342 + - uid: 16208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5997505,-19.5732 + pos: 29.5,55.5 parent: 2 - - uid: 22374 + - uid: 21619 components: - type: Transform - pos: 1.4982185,23.652424 + pos: 28.5,55.5 parent: 2 -- proto: ScrapSteel + - uid: 23185 + components: + - type: Transform + pos: -12.5,65.5 + parent: 16527 +- proto: KitchenReagentGrinder entities: - - uid: 877 + - uid: 11136 components: - type: Transform - pos: 42.43168,-26.666004 + pos: 55.5,41.5 parent: 2 - - uid: 19669 + - uid: 11138 components: - type: Transform - pos: 36.593346,61.456043 + pos: 20.5,-0.5 parent: 2 - - uid: 20265 + - uid: 11141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.462944,24.129162 + pos: 42.5,7.5 parent: 2 - - uid: 20266 + - uid: 21564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.43203,10.521615 + pos: 35.5,48.5 parent: 2 - - uid: 20279 + - uid: 21598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.91886,4.0267277 + pos: 26.5,55.5 parent: 2 - - uid: 20286 +- proto: KitchenSpike + entities: + - uid: 21568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.43869,-1.3013976 + pos: 28.5,58.5 parent: 2 - - uid: 20431 +- proto: KnifePlastic + entities: + - uid: 23186 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.433395,93.4915 - parent: 2 - - uid: 21243 + pos: 12.564855,24.594208 + parent: 16527 + - uid: 23187 components: - type: Transform - pos: 9.505562,53.627464 + rot: 1.5707963267948966 rad + pos: -36.491608,27.80951 + parent: 16527 +- proto: KukriKnife + entities: + - uid: 23188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.360506,24.802542 + parent: 16527 +- proto: Lamp + entities: + - uid: 33 + components: + - type: Transform + pos: 50.424248,31.737879 parent: 2 - - uid: 21383 + - type: HandheldLight + toggleActionEntity: 34 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 34 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 35 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.470834,53.505936 + pos: 24.463417,-1.4738253 parent: 2 - - uid: 22206 + - type: HandheldLight + toggleActionEntity: 36 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 36 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 11143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.8653755,-9.575107 + rot: -1.5707963267948966 rad + pos: 20.451569,10.803911 parent: 2 - - uid: 22352 + - uid: 11144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.662258,-7.3588095 + pos: 59.35401,61.71356 parent: 2 - - uid: 22366 + - uid: 11145 components: - type: Transform - pos: 11.858107,6.044018 + pos: 67.45392,10.457839 parent: 2 -- proto: ScrapTube +- proto: LampBanana entities: - - uid: 74 + - uid: 11172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.27541,16.370422 + pos: 9.793882,52.556126 parent: 2 - - uid: 13237 + - type: HandheldLight + toggleActionEntity: 21212 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 21212 + - type: Physics + canCollide: True + - type: ActionsContainer +- proto: LampGold + entities: + - uid: 39 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.064285,-26.418608 + pos: 47.558113,9.277111 parent: 2 - - uid: 22357 + - type: HandheldLight + toggleActionEntity: 40 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 40 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 11146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.65567,-11.672581 + rot: -1.5707963267948966 rad + pos: 33.498447,22.646479 parent: 2 - - uid: 22358 + - uid: 11147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.546295,-11.235081 + pos: 7.540307,38.7267 parent: 2 - - uid: 22372 + - uid: 11148 components: - type: Transform - pos: 1.2482185,21.933674 + rot: 1.5707963267948966 rad + pos: 59.42932,59.6045 parent: 2 - - uid: 22373 + - uid: 11149 components: - type: Transform - pos: 0.95134354,21.121174 + rot: 1.5707963267948966 rad + pos: 59.46601,55.825245 parent: 2 -- proto: Screen - entities: - - uid: 2358 + - uid: 23189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,41.5 - parent: 2 - - uid: 12768 + pos: -9.513048,30.73348 + parent: 16527 + - uid: 23190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,65.5 - parent: 2 - - uid: 12769 + pos: -11.813461,57.4433 + parent: 16527 + - uid: 23191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,46.5 - parent: 2 - - uid: 12770 + rot: 1.5707963267948966 rad + pos: -21.348984,54.79474 + parent: 16527 +- proto: LampInterrogator + entities: + - uid: 11150 components: - type: Transform - pos: 80.5,41.5 + pos: 50.425373,17.91198 parent: 2 - - uid: 12771 + - uid: 23192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,21.5 - parent: 2 - - uid: 12772 + pos: -5.076233,70.87482 + parent: 16527 +- proto: LandMineExplosive + entities: + - uid: 23193 components: + - type: MetaData + name: мина - type: Transform - pos: 69.5,24.5 - parent: 2 - - uid: 12773 + pos: 22.732178,57.68683 + parent: 16527 + - uid: 23194 components: + - type: MetaData + name: мина - type: Transform - pos: 68.5,15.5 - parent: 2 - - uid: 12774 + pos: 15.416698,10.502786 + parent: 16527 + - uid: 23195 components: + - type: MetaData + name: мина - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,23.5 - parent: 2 - - uid: 12775 + pos: -13.489288,5.533922 + parent: 16527 + - uid: 23196 components: + - type: MetaData + name: мина - type: Transform - pos: 45.5,5.5 - parent: 2 - - uid: 12776 + pos: 11.522236,4.4458623 + parent: 16527 + - uid: 23197 components: + - type: MetaData + name: мина - type: Transform - pos: 46.5,11.5 - parent: 2 - - uid: 12777 + pos: 12.611162,28.53005 + parent: 16527 + - uid: 23198 components: + - type: MetaData + name: мина - type: Transform - pos: 79.5,63.5 - parent: 2 - - uid: 12778 + pos: -8.51143,20.156834 + parent: 16527 + - uid: 23199 components: + - type: MetaData + name: мина - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,37.5 - parent: 2 - - uid: 12779 + pos: -10.519818,3.4255292 + parent: 16527 + - uid: 23200 components: + - type: MetaData + name: мина - type: Transform - pos: 43.5,77.5 - parent: 2 - - uid: 12780 + pos: 0.46637392,20.577358 + parent: 16527 + - uid: 23201 components: + - type: MetaData + name: мина - type: Transform - pos: 25.5,-12.5 - parent: 2 - - uid: 12781 + pos: -11.517183,-5.5879383 + parent: 16527 + - uid: 23202 components: + - type: MetaData + name: мина - type: Transform - pos: 25.5,6.5 - parent: 2 - - uid: 12782 + pos: 7.5006275,10.482936 + parent: 16527 + - uid: 23203 components: + - type: MetaData + name: мина - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,33.5 - parent: 2 - - uid: 12783 + pos: 17.4874,3.4135275 + parent: 16527 + - uid: 23204 components: + - type: MetaData + name: мина - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 12784 + pos: -7.117131,16.510233 + parent: 16527 + - uid: 23205 components: + - type: MetaData + name: мина - type: Transform - pos: 69.5,37.5 - parent: 2 - - uid: 12785 + pos: 21.231674,21.764832 + parent: 16527 + - uid: 23206 components: + - type: MetaData + name: мина - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 2 - - uid: 12786 + pos: 19.971848,25.253235 + parent: 16527 + - uid: 23207 components: + - type: MetaData + name: мина - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 - parent: 2 - - uid: 12787 + pos: -6.3156586,51.546204 + parent: 16527 + - uid: 23208 components: + - type: MetaData + name: мина - type: Transform - pos: 44.5,52.5 - parent: 2 - - uid: 12789 + pos: -4.050049,48.84308 + parent: 16527 + - uid: 23209 components: + - type: MetaData + name: мина - type: Transform - pos: 73.5,57.5 - parent: 2 - - uid: 12790 + pos: 12.50679,-3.703247 + parent: 16527 + - uid: 23210 components: - type: Transform - pos: 59.5,54.5 - parent: 2 - - uid: 12791 + pos: 1.844284,57.01416 + parent: 16527 + - uid: 23211 components: + - type: MetaData + name: мина - type: Transform - pos: 44.5,25.5 - parent: 2 -- proto: Screwdriver - entities: - - uid: 19872 + pos: -5.2944946,62.72943 + parent: 16527 + - uid: 23212 components: + - type: MetaData + name: мина - type: Transform - pos: 27.021294,27.629593 - parent: 16504 - - uid: 19873 + pos: 2.2032318,64.39093 + parent: 16527 + - uid: 23213 components: + - type: MetaData + name: мина - type: Transform - pos: 37.605846,26.586653 - parent: 16504 - - uid: 19874 + pos: 6.3589783,57.46454 + parent: 16527 + - uid: 23214 components: + - type: MetaData + name: мина - type: Transform - pos: 24.472853,34.56221 - parent: 16504 -- proto: SecurityTechFab - entities: - - uid: 12792 + pos: -33.625824,47.99951 + parent: 16527 + - uid: 23215 components: + - type: MetaData + name: мина - type: Transform - pos: 53.5,28.5 - parent: 2 -- proto: SecurityTechFabCircuitboard - entities: - - uid: 22096 + pos: -32.18889,54.755066 + parent: 16527 + - uid: 23216 components: + - type: MetaData + name: мина - type: Transform - parent: 10552 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SeedExtractor - entities: - - uid: 12793 + pos: -25.204208,53.411438 + parent: 16527 + - uid: 23217 components: + - type: MetaData + name: мина - type: Transform - pos: 59.5,38.5 - parent: 2 - - uid: 12794 + pos: -29.608078,40.32953 + parent: 16527 + - uid: 23218 components: + - type: MetaData + name: мина - type: Transform - pos: 67.5,30.5 - parent: 2 - - uid: 21580 + pos: -32.514343,34.90204 + parent: 16527 + - uid: 23219 components: + - type: MetaData + name: мина - type: Transform - pos: 38.5,51.5 - parent: 2 -- proto: ShardGlass + pos: -25.05194,44.379883 + parent: 16527 +- proto: LandMineModular entities: - - uid: 12795 + - uid: 16528 components: + - type: MetaData + name: мина - type: Transform - pos: 32.344322,65.459076 - parent: 2 - - uid: 19875 + pos: -8.0784,49.334167 + parent: 16527 + - type: Construction + containers: + - payload + node: mine + - type: ContainerContainer + containers: + payload: !type:Container + ents: + - 16529 + - uid: 16534 components: + - type: MetaData + name: мина - type: Transform - pos: 12.369801,33.58339 - parent: 16504 - - uid: 19876 + pos: -0.8154144,54.628967 + parent: 16527 + - type: Construction + containers: + - payload + node: mine + - type: ContainerContainer + containers: + payload: !type:Container + ents: + - 16535 + - uid: 21980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.682301,32.20839 - parent: 16504 - - uid: 19877 + pos: 16.411213,40.364594 + parent: 2 + - uid: 22577 components: + - type: MetaData + name: мина - type: Transform - rot: 3.141592653589793 rad - pos: 11.213551,32.83339 - parent: 16504 - - uid: 19878 + pos: 0.4882202,-3.7172241 + parent: 16527 + - type: Construction + containers: + - payload + node: mine + - type: ContainerContainer + containers: + payload: !type:Container + ents: + - 22578 + - uid: 22579 components: + - type: MetaData + name: мина - type: Transform - rot: 1.5707963267948966 rad - pos: 12.588551,33.27089 - parent: 16504 - - uid: 19879 + pos: 11.396332,16.514221 + parent: 16527 + - type: Construction + containers: + - payload + node: mine + - type: ContainerContainer + containers: + payload: !type:Container + ents: + - 22580 + - uid: 22581 components: + - type: MetaData + name: мина - type: Transform - rot: 1.5707963267948966 rad - pos: 11.807301,36.446968 - parent: 16504 - - uid: 19880 + pos: 1.0217133,40.595276 + parent: 16527 + - type: Construction + containers: + - payload + node: mine + - type: ContainerContainer + containers: + payload: !type:Container + ents: + - 22582 + - uid: 23220 components: + - type: MetaData + name: мина - type: Transform - rot: 1.5707963267948966 rad - pos: 17.402653,33.42273 - parent: 16504 - - uid: 19881 + pos: -11.487502,-7.506736 + parent: 16527 + - uid: 23221 components: + - type: MetaData + name: мина - type: Transform - pos: 17.423485,35.318565 - parent: 16504 - - uid: 19882 + pos: -15.554474,3.378701 + parent: 16527 + - uid: 23222 components: + - type: MetaData + name: мина - type: Transform - rot: -1.5707963267948966 rad - pos: 17.788069,35.89148 - parent: 16504 - - uid: 19883 + pos: 14.918123,2.0781388 + parent: 16527 + - uid: 23223 components: + - type: MetaData + name: мина - type: Transform - rot: 1.5707963267948966 rad - pos: 15.746402,31.417408 - parent: 16504 - - uid: 19884 + pos: -10.094055,15.385233 + parent: 16527 + - uid: 23224 components: + - type: MetaData + name: мина - type: Transform - pos: 15.204736,31.604908 - parent: 16504 -- proto: ShardGlassPlasma + pos: -17.31811,15.494608 + parent: 16527 +- proto: Lantern entities: - - uid: 12796 + - uid: 11151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.766638,-8.694971 + pos: 74.482605,58.567104 parent: 2 - - uid: 12797 + - uid: 11152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.141262,-11.476221 + pos: 78.53705,62.713276 parent: 2 - - uid: 12798 +- proto: LanternFlash + entities: + - uid: 3501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.282572,-10.616846 + pos: 80.48598,31.712543 parent: 2 - - uid: 12799 + - uid: 4461 components: - type: Transform - pos: 26.762547,-7.46745 + pos: 80.4391,33.712543 parent: 2 -- proto: SheetGlass +- proto: LargeBeaker entities: - - uid: 6593 - components: - - type: Transform - parent: 6590 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10414 + - uid: 11153 components: - type: Transform - pos: 58.507942,4.5845747 + pos: 55.791054,41.556206 parent: 2 - - uid: 10906 + - uid: 16530 components: - type: Transform - pos: 23.535854,10.694848 - parent: 2 - - uid: 12800 + parent: 16529 + - type: SolutionContainerManager + solutions: null + containers: + - beaker + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@beaker: !type:ContainerSlot + ent: 16531 + - uid: 16532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-17.5 - parent: 2 - - uid: 12801 + parent: 16529 + - type: SolutionContainerManager + solutions: null + containers: + - beaker + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@beaker: !type:ContainerSlot + ent: 16533 + - uid: 16536 components: - type: Transform - pos: 23.537333,10.680008 - parent: 2 - - uid: 12802 + parent: 16535 + - type: SolutionContainerManager + solutions: null + containers: + - beaker + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@beaker: !type:ContainerSlot + ent: 16537 + - uid: 16538 components: - type: Transform - pos: 45.532856,70.43353 - parent: 2 - - uid: 12803 + parent: 16535 + - type: SolutionContainerManager + solutions: null + containers: + - beaker + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@beaker: !type:ContainerSlot + ent: 16539 + - uid: 23225 components: - type: Transform - pos: 35.45207,79.576096 - parent: 2 - - uid: 22144 + pos: -36.575882,27.590576 + parent: 16527 + - uid: 23226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.49398,41.524345 - parent: 2 - - uid: 22145 + pos: -35.888367,27.559326 + parent: 16527 + - uid: 23227 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.603355,41.50872 - parent: 2 - - uid: 22322 - components: - - type: Transform - pos: 67.63421,41.5463 - parent: 2 -- proto: SheetGlass10 - entities: - - uid: 12804 + pos: -36.57582,28.575989 + parent: 16527 + - uid: 23228 components: - type: Transform - pos: 9.485875,40.569275 - parent: 2 -- proto: SheetPlasma + rot: 3.141592653589793 rad + pos: -33.71646,27.700073 + parent: 16527 +- proto: LeavesCannabisDried entities: - - uid: 12805 + - uid: 6325 components: - type: Transform - pos: 20.944042,10.533216 - parent: 2 - - uid: 19885 + parent: 6323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6326 components: - type: Transform - pos: -18.56518,27.602674 - parent: 16504 -- proto: SheetPlasma1 - entities: - - uid: 12806 + parent: 6323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6327 components: - type: Transform - pos: 42.488373,7.646244 - parent: 2 -- proto: SheetPlasma10 - entities: - - uid: 12807 + parent: 6323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6328 components: - type: Transform - pos: 52.604137,61.646187 - parent: 2 -- proto: SheetPlasteel - entities: - - uid: 12808 + parent: 6323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6329 components: - type: Transform - pos: 45.453217,70.1915 - parent: 2 - - uid: 12809 + parent: 6323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6330 components: - type: Transform - pos: 35.42082,78.93547 - parent: 2 - - uid: 19886 + parent: 6323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6331 components: - type: Transform - pos: -9.400628,32.53504 - parent: 16504 -- proto: SheetPlasteel10 - entities: - - uid: 12810 + parent: 6323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6332 components: - type: Transform - pos: 46.054523,98.278336 - parent: 2 - - uid: 12811 + parent: 6323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6333 components: - type: Transform - pos: 47.445984,100.35646 - parent: 2 -- proto: SheetPlastic - entities: - - uid: 6594 + parent: 6323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6334 components: - type: Transform - parent: 6590 + parent: 6323 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10841 + - uid: 23229 components: - type: Transform - pos: 58.664192,4.5845747 - parent: 2 - - uid: 12588 + pos: -11.46758,65.60345 + parent: 16527 +- proto: LeavesCannabisRainbowDried + entities: + - uid: 6314 components: - type: Transform - pos: 24.52023,10.694848 - parent: 2 - - uid: 12812 + parent: 6312 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6315 components: - type: Transform - pos: 24.450066,10.680008 - parent: 2 - - uid: 12813 + parent: 6312 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6316 components: - type: Transform - pos: 67.401024,41.528034 - parent: 2 - - uid: 19887 + parent: 6312 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6317 components: - type: Transform - pos: -7.994378,32.44129 - parent: 16504 - - uid: 22146 + parent: 6312 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.49398,41.44622 - parent: 2 - - uid: 22226 + parent: 6312 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.49398,41.44622 - parent: 2 -- proto: SheetPlastic1 - entities: - - uid: 19888 + parent: 6312 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6320 components: - type: Transform - pos: 13.647202,36.167152 - parent: 16504 -- proto: SheetSteel - entities: - - uid: 6595 + parent: 6312 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6321 components: - type: Transform - parent: 6590 + parent: 6312 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10355 + - uid: 6322 components: - type: Transform - pos: 24.02023,10.726098 - parent: 2 - - uid: 12589 + parent: 6312 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LeftFootVulpkanin + entities: + - uid: 23230 components: - type: Transform - pos: 58.242317,4.6470747 - parent: 2 - - uid: 12814 + pos: -23.267319,42.09314 + parent: 16527 + - uid: 23231 components: - type: Transform - pos: 24.033886,10.695633 - parent: 2 - - uid: 12815 + pos: -23.823776,42.108948 + parent: 16527 +- proto: LeftHandVulpkanin + entities: + - uid: 23232 components: - type: Transform - pos: 67.63266,41.476616 - parent: 2 - - uid: 12816 + rot: -1.5707963267948966 rad + pos: -23.964218,42.156128 + parent: 16527 +- proto: LeftLegBorg + entities: + - uid: 11154 components: - type: Transform - pos: 48.678658,71.38617 + pos: 91.566345,17.369244 parent: 2 - - uid: 12817 +- proto: LeftLegVulpkanin + entities: + - uid: 23233 components: - type: Transform - pos: 48.45851,71.45955 - parent: 2 - - uid: 12818 + rot: -1.5707963267948966 rad + pos: -23.191086,42.48053 + parent: 16527 +- proto: LightBulbBroken + entities: + - uid: 11155 components: - type: Transform - pos: 35.60832,77.62297 + rot: -1.5707963267948966 rad + pos: 30.415854,63.516525 parent: 2 - - uid: 19889 + - uid: 11156 components: - type: Transform - pos: -8.681878,32.47254 - parent: 16504 - - uid: 22227 + rot: -1.5707963267948966 rad + pos: 24.393162,-15.997493 + parent: 2 +- proto: Lighter + entities: + - uid: 21320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.603355,41.50872 + rot: -0.5934119456780721 rad + pos: 16.210636,53.712322 parent: 2 - - uid: 22228 + - uid: 23234 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.55648,41.47747 - parent: 2 -- proto: SheetSteel1 + pos: 3.2590637,74.77338 + parent: 16527 +- proto: LightPostSmall entities: - - uid: 19890 + - uid: 4961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.449138,36.440662 - parent: 16504 - - uid: 19891 + pos: 38.5,-25.5 + parent: 2 + - uid: 21961 components: - type: Transform - pos: 27.233908,32.206284 - parent: 16504 - - uid: 19892 + pos: 42.5,-25.5 + parent: 2 +- proto: LightTree01 + entities: + - uid: 13501 components: - type: Transform - pos: 23.286572,29.493347 - parent: 16504 - - uid: 19893 + pos: 42.55793,52.485607 + parent: 2 +- proto: LightTubeBroken + entities: + - uid: 11157 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.567822,29.305847 - parent: 16504 -- proto: SheetSteel10 - entities: - - uid: 12819 + pos: 28.789185,61.400635 + parent: 2 + - uid: 11158 components: - type: Transform - pos: 46.648632,99.278336 + rot: 3.141592653589793 rad + pos: 34.2318,64.348206 parent: 2 - - uid: 12820 +- proto: LiquidCarbonDioxideCanister + entities: + - uid: 11159 components: - type: Transform - pos: 47.289642,98.13771 + pos: 43.5,80.5 parent: 2 - - uid: 12821 +- proto: LiquidNitrogenCanister + entities: + - uid: 11160 components: - type: Transform - pos: 29.514563,60.53943 + pos: 41.5,78.5 parent: 2 - - uid: 19894 +- proto: LiquidOxygenCanister + entities: + - uid: 11161 components: - type: Transform - pos: 24.233747,23.535175 - parent: 16504 - - uid: 19895 + pos: 42.5,78.5 + parent: 2 + - uid: 23235 components: - type: Transform - pos: 36.51264,34.57534 - parent: 16504 -- proto: SheetUranium + pos: 17.5,46.5 + parent: 16527 +- proto: LiveLetLiveCircuitBoard entities: - - uid: 19896 + - uid: 583 components: - type: Transform - pos: -17.932491,27.638596 - parent: 16504 -- proto: SheetUranium1 + parent: 577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LockableButtonCommand entities: - - uid: 5768 + - uid: 21312 components: - type: Transform - pos: 26.48359,-17.504948 + pos: 33.5,48.5 parent: 2 - - type: Stack - count: 15 - - uid: 12822 + - type: DeviceLinkSource + linkedPorts: + 880: + - Pressed: Toggle + - uid: 21316 components: - type: Transform - pos: 52.369762,62.677437 + rot: 3.141592653589793 rad + pos: 31.5,39.5 parent: 2 - - type: Stack - count: 10 -- proto: ShelfBar + - type: DeviceLinkSource + linkedPorts: + 287: + - Pressed: Toggle + - uid: 21423 + components: + - type: MetaData + name: кнопка от ставней + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21450: + - Pressed: Toggle + 21446: + - Pressed: Toggle + 21447: + - Pressed: Toggle +- proto: LockableButtonEngineering entities: - - uid: 9851 + - uid: 11162 components: - type: Transform - pos: 18.5,51.5 + rot: -1.5707963267948966 rad + pos: 55.5,84.5 parent: 2 - - uid: 12994 +- proto: LockableButtonMaintenance + entities: + - uid: 11163 components: - type: Transform - pos: 25.5,54.5 + rot: 3.141592653589793 rad + pos: 24.5,15.5 parent: 2 - - type: Storage - storedItems: - 13038: - position: 0,0 - _rotation: South - 13040: - position: 1,0 - _rotation: South - 13044: - position: 2,0 - _rotation: South - 13073: - position: 3,0 - _rotation: South - 13077: - position: 4,0 - _rotation: South - 13080: - position: 5,0 - _rotation: South - 13084: - position: 0,3 - _rotation: South - 13088: - position: 1,3 - _rotation: South - 13096: - position: 2,3 - _rotation: South - 13103: - position: 3,3 - _rotation: South - 13109: - position: 4,3 - _rotation: South - 13110: - position: 5,3 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 13038 - - 13040 - - 13044 - - 13073 - - 13077 - - 13080 - - 13084 - - 13088 - - 13096 - - 13103 - - 13109 - - 13110 -- proto: ShelfChemistryChemistrySecure + - type: DeviceLinkSource + linkedPorts: + 994: + - Pressed: Toggle + 987: + - Pressed: Toggle +- proto: LockableButtonMedical entities: - - uid: 12823 + - uid: 11164 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,9.5 + pos: 69.5,9.5 parent: 2 -- proto: ShelfKitchen + - type: DeviceLinkSource + linkedPorts: + 12892: + - Pressed: Toggle + 12891: + - Pressed: Toggle + 12890: + - Pressed: Toggle + 356: + - Pressed: DoorBolt + 334: + - Pressed: DoorBolt +- proto: LockableButtonService entities: - - uid: 21623 + - uid: 12196 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,51.5 + pos: 32.5,51.5 parent: 2 - - type: Storage - storedItems: - 21624: - position: 0,0 - _rotation: South - 21625: - position: 0,1 - _rotation: South - 21626: - position: 2,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 21624 - - 21625 - - 21626 -- proto: ShelfRWood - entities: - - uid: 6399 + - type: DeviceLinkSource + linkedPorts: + 21457: + - Pressed: Toggle + 21461: + - Pressed: Toggle + 21458: + - Pressed: Toggle + 21459: + - Pressed: Toggle + 21460: + - Pressed: Toggle + 21462: + - Pressed: Toggle + 21463: + - Pressed: Toggle + - uid: 21319 components: + - type: MetaData + name: кнопка от вип зоны - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,9.5 + pos: 17.5,53.5 parent: 2 - - type: Lock - locked: False - - type: Storage - storedItems: - 6403: - position: 0,0 - _rotation: South - 6400: - position: 2,0 - _rotation: South - 6402: - position: 0,3 - _rotation: South - 6401: - position: 2,3 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 6403 - - 6400 - - 6402 - - 6401 -- proto: ShippingContainerCybersun - entities: - - uid: 19897 - components: - - type: Transform - pos: -11.5,22.5 - parent: 16504 -- proto: ShippingContainerGorlexRed - entities: - - uid: 19898 - components: - - type: Transform - pos: -15.5,20.5 - parent: 16504 -- proto: ShippingContainerVitezstvi - entities: - - uid: 19899 - components: - - type: Transform - pos: -15.5,24.5 - parent: 16504 -- proto: ShotGunCabinetFilled - entities: - - uid: 22333 + - type: DeviceLinkSource + linkedPorts: + 880: + - Pressed: Toggle + 287: + - Pressed: Toggle + - uid: 21518 components: - type: Transform - pos: 39.5,70.5 + rot: 3.141592653589793 rad + pos: 18.5,52.5 parent: 2 - - uid: 22334 + - type: DeviceLinkSource + linkedPorts: + 21456: + - Pressed: Toggle + 21455: + - Pressed: Toggle + 21454: + - Pressed: Toggle + 21453: + - Pressed: Toggle + 21452: + - Pressed: Toggle + 21451: + - Pressed: Toggle +- proto: LockerAtmosphericsFilled + entities: + - uid: 11165 components: - type: Transform - pos: 16.5,7.5 + pos: 44.5,74.5 parent: 2 - - uid: 22335 + - uid: 11166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,16.5 + pos: 44.5,75.5 parent: 2 - - uid: 22336 + - uid: 11167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,9.5 + pos: 44.5,76.5 parent: 2 - - uid: 22337 +- proto: LockerBoozeFilled + entities: + - uid: 11168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,23.5 + pos: 27.5,64.5 parent: 2 - - uid: 22338 + - uid: 11495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,2.5 + pos: 14.5,55.5 parent: 2 -- proto: Shovel +- proto: LockerBotanistFilled entities: - - uid: 12824 + - uid: 71 components: - type: Transform - pos: 0.5657964,11.527206 + pos: 38.5,54.5 parent: 2 -- proto: ShuttersFrame - entities: - - uid: 19900 - components: - - type: Transform - pos: -1.5,22.5 - parent: 16504 - - uid: 19901 - components: - - type: Transform - pos: 3.5,3.5 - parent: 16504 - - uid: 19902 - components: - - type: Transform - pos: 3.5,2.5 - parent: 16504 - - uid: 19903 - components: - - type: Transform - pos: -0.5,22.5 - parent: 16504 - - uid: 19904 - components: - - type: Transform - pos: -7.5,26.5 - parent: 16504 - - uid: 19905 - components: - - type: Transform - pos: -9.5,26.5 - parent: 16504 -- proto: ShuttersNormal - entities: - - uid: 12825 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11960 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 21433 components: - type: Transform - pos: 31.5,15.5 + pos: 38.5,53.5 parent: 2 - - uid: 12826 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12088 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 21434 components: - type: Transform - pos: 30.5,15.5 + pos: 38.5,52.5 parent: 2 - - uid: 12827 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12089 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBrigmedicFilled + entities: + - uid: 351 components: - type: Transform - pos: 27.5,1.5 + pos: 62.5,21.5 parent: 2 - - uid: 12828 +- proto: LockerCaptainFilled + entities: + - uid: 7455 components: - type: Transform - pos: 28.5,1.5 + pos: 24.5,22.5 parent: 2 - - uid: 12829 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14786 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7456 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChemistryFilled + entities: + - uid: 11169 components: - type: Transform - pos: 29.5,1.5 + pos: 44.5,9.5 parent: 2 - - uid: 12830 +- proto: LockerChiefEngineerFilled + entities: + - uid: 11170 components: - type: Transform - pos: 67.5,50.5 + pos: 40.5,67.5 parent: 2 - - uid: 12831 +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 11171 components: - type: Transform - pos: 38.5,36.5 + pos: 48.5,6.5 parent: 2 - - uid: 19906 - components: - - type: Transform - pos: 3.5,5.5 - parent: 16504 - - uid: 19907 - components: - - type: Transform - pos: 3.5,4.5 - parent: 16504 - - uid: 19908 - components: - - type: Transform - pos: -2.5,20.5 - parent: 16504 - - uid: 19909 - components: - - type: Transform - pos: 3.5,21.5 - parent: 16504 - - uid: 19910 - components: - - type: Transform - pos: 3.5,20.5 - parent: 16504 - - uid: 19911 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1478 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerDetective + entities: + - uid: 1021 components: - type: Transform - pos: -10.5,26.5 - parent: 16504 -- proto: ShuttersNormalOpen + pos: 32.475304,-19.445965 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1026 + - 1027 + - 1023 + - 1024 + - 1022 + - 1025 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled entities: - - uid: 12832 + - uid: 1018 components: - type: Transform - pos: 25.5,8.5 + pos: 42.5,36.5 parent: 2 - - uid: 12833 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1020 + - 1019 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 6276 components: - type: Transform - pos: 14.5,17.5 + pos: 47.5,56.5 parent: 2 - - uid: 12834 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6277 + - 6278 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8141 components: - type: Transform - pos: 14.5,21.5 + pos: 52.5,73.5 parent: 2 - - uid: 12835 + - uid: 11173 components: - type: Transform - pos: 5.5,4.5 + pos: 54.5,66.5 parent: 2 - - uid: 12836 + - uid: 11174 components: - type: Transform - pos: 4.5,4.5 + pos: 39.5,59.5 parent: 2 - - uid: 12837 + - uid: 11176 components: - type: Transform - pos: 2.5,0.5 + pos: 59.5,68.5 parent: 2 - - uid: 12838 + - uid: 11177 components: - type: Transform - pos: 6.5,0.5 + pos: 52.5,-14.5 parent: 2 - - uid: 12839 + - uid: 11178 components: - type: Transform - pos: 5.5,0.5 + pos: 9.5,42.5 parent: 2 - - uid: 12840 +- proto: LockerEngineerFilled + entities: + - uid: 6312 components: - type: Transform - pos: 18.5,28.5 + pos: 41.5,64.5 parent: 2 - - uid: 12841 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6321 + - 6320 + - 6319 + - 6318 + - 6317 + - 6316 + - 6315 + - 6314 + - 6313 + - 6322 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6323 components: - type: Transform - pos: 18.5,29.5 + pos: 45.5,62.5 parent: 2 - - uid: 12842 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6333 + - 6332 + - 6331 + - 6330 + - 6324 + - 6329 + - 6328 + - 6327 + - 6326 + - 6325 + - 6334 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11179 components: - type: Transform - pos: 20.5,31.5 + pos: 45.5,63.5 parent: 2 - - uid: 12843 + - uid: 11180 components: - type: Transform - pos: 21.5,31.5 + pos: 43.5,59.5 parent: 2 - - uid: 12844 + - uid: 11181 components: - type: Transform - pos: 22.5,31.5 + pos: 41.5,59.5 parent: 2 - - uid: 12845 + - uid: 11182 components: - type: Transform - pos: 23.5,31.5 + pos: 42.5,59.5 parent: 2 - - uid: 12846 + - uid: 11183 components: - type: Transform - pos: 24.5,31.5 + pos: 40.5,64.5 parent: 2 - - uid: 12847 + - uid: 11184 components: - type: Transform - pos: 25.5,31.5 + pos: 45.5,61.5 parent: 2 - - uid: 12848 +- proto: LockerEvidence + entities: + - uid: 8143 components: - type: Transform - pos: 26.5,31.5 + pos: 42.5,34.5 parent: 2 - - uid: 12849 + - uid: 11185 components: - type: Transform - pos: 27.5,31.5 + pos: 42.5,21.5 parent: 2 - - uid: 12850 + - uid: 11186 components: - type: Transform - pos: 28.5,31.5 + pos: 44.5,18.5 parent: 2 - - uid: 12851 + - uid: 11187 components: - type: Transform - pos: 30.5,29.5 + pos: 42.5,18.5 parent: 2 - - uid: 12852 + - uid: 11188 components: - type: Transform - pos: 30.5,28.5 + pos: 44.5,21.5 parent: 2 - - uid: 12853 + - uid: 11189 components: - type: Transform - pos: 19.5,5.5 + pos: 51.5,36.5 parent: 2 - - uid: 12854 + - uid: 11190 components: - type: Transform - pos: 38.5,19.5 + pos: 42.5,24.5 parent: 2 - - uid: 12855 + - uid: 11191 components: - type: Transform - pos: 38.5,16.5 + pos: 52.5,36.5 parent: 2 - - uid: 12856 + - uid: 12150 components: - type: Transform - pos: 38.5,20.5 + pos: 56.5,26.5 parent: 2 - - uid: 12857 + - uid: 12152 components: - type: Transform - pos: 38.5,17.5 + pos: 56.5,28.5 parent: 2 - - uid: 12858 +- proto: LockerFreezer + entities: + - uid: 21599 components: - type: Transform - pos: 48.5,32.5 + pos: 29.5,58.5 parent: 2 - - uid: 12859 +- proto: LockerFreezerBase + entities: + - uid: 11192 components: - type: Transform - pos: 77.5,50.5 + pos: 42.5,40.5 parent: 2 - - uid: 12860 +- proto: LockerFreezerVaultFilled + entities: + - uid: 11193 components: - type: Transform - pos: 25.5,9.5 + pos: 6.5,26.5 parent: 2 - - uid: 12861 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 11194 components: - type: Transform - pos: 17.5,59.5 + pos: 17.5,16.5 parent: 2 - - uid: 12862 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 11195 components: - type: Transform - pos: 17.5,58.5 + pos: 51.5,33.5 parent: 2 - - uid: 12863 +- proto: LockerMedicineFilled + entities: + - uid: 11196 components: - type: Transform - pos: 17.5,57.5 + pos: 38.5,1.5 parent: 2 - - uid: 12864 + - uid: 11197 components: - type: Transform - pos: 53.5,-13.5 + pos: 39.5,1.5 parent: 2 - - uid: 12865 + - uid: 11198 components: - type: Transform - pos: 53.5,-12.5 + pos: 59.5,4.5 parent: 2 - - uid: 12866 + - uid: 11199 components: - type: Transform - pos: 40.5,11.5 + pos: 50.5,-11.5 parent: 2 - - uid: 12867 +- proto: LockerParamedicFilled + entities: + - uid: 6673 components: - type: Transform - pos: 73.5,46.5 + pos: 38.5,10.5 parent: 2 - - uid: 12868 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6674 + - 6675 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerQuarterMaster + entities: + - uid: 23236 components: - type: Transform - pos: 73.5,45.5 - parent: 2 - - uid: 12869 + pos: -10.5,28.5 + parent: 16527 +- proto: LockerQuarterMasterFilled + entities: + - uid: 6359 components: - type: Transform - pos: 73.5,44.5 + pos: 2.5,3.5 parent: 2 - - uid: 12870 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6360 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 11202 components: - type: Transform - pos: 73.5,50.5 + pos: 16.5,6.5 parent: 2 - - uid: 12871 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11203 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSalvageSpecialist + entities: + - uid: 23237 components: - type: Transform - pos: 73.5,49.5 - parent: 2 - - uid: 12872 + pos: -4.5,38.5 + parent: 16527 + - uid: 23238 components: - type: Transform - pos: 73.5,48.5 - parent: 2 - - uid: 12873 + pos: 4.5,38.5 + parent: 16527 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 23239 components: - type: Transform - pos: 77.5,49.5 - parent: 2 - - uid: 12874 + pos: -3.5,38.5 + parent: 16527 + - uid: 23240 components: - type: Transform - pos: 77.5,48.5 - parent: 2 - - uid: 12875 + pos: 5.5,38.5 + parent: 16527 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 11204 components: - type: Transform - pos: 77.5,46.5 + pos: 0.5,13.5 parent: 2 - - uid: 12876 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11205 components: - type: Transform - pos: 77.5,45.5 + pos: 0.5,12.5 parent: 2 - - uid: 12877 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11206 components: - type: Transform - pos: 77.5,44.5 + pos: 0.5,14.5 parent: 2 - - uid: 12878 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerScienceFilled + entities: + - uid: 11207 components: - type: Transform - pos: 73.5,42.5 + pos: 22.5,1.5 parent: 2 - - uid: 12879 + - uid: 11208 components: - type: Transform - pos: 73.5,40.5 + pos: 23.5,1.5 parent: 2 - - uid: 12880 + - uid: 11209 components: - type: Transform - pos: 75.5,39.5 + pos: 24.5,1.5 parent: 2 - - uid: 12881 +- proto: LockerSecurity + entities: + - uid: 11210 components: - type: Transform - pos: 76.5,39.5 + pos: 93.5,20.5 parent: 2 - - uid: 12882 + - uid: 11211 components: - type: Transform - pos: 77.5,39.5 + pos: 78.5,6.5 parent: 2 - - uid: 12883 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerSecurityFilled + entities: + - uid: 11212 components: - type: Transform - pos: 78.5,39.5 + pos: 14.5,8.5 parent: 2 - - uid: 12884 + - uid: 11213 components: - type: Transform - pos: 77.5,27.5 + pos: 58.5,16.5 parent: 2 - - uid: 12885 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10341 + - 10343 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11214 components: - type: Transform - pos: 77.5,28.5 + pos: 57.5,16.5 parent: 2 - - uid: 12886 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10429 + - 10547 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11215 components: - type: Transform - pos: 77.5,26.5 + pos: 56.5,16.5 parent: 2 - - uid: 12887 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10549 + - 10551 + - 10552 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSyndicatePersonal + entities: + - uid: 21059 components: - type: Transform - pos: 10.5,23.5 - parent: 2 - - uid: 12888 + pos: 7.5,0.5 + parent: 16527 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1478 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21068 + - 21067 + - 21066 + - 21064 + - 21065 + - 21062 + - 21063 + - 21060 + - 21061 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 21069 components: - type: Transform - pos: 10.5,21.5 - parent: 2 - - uid: 12889 + pos: 4.5,40.5 + parent: 16527 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21077 + - 21072 + - 21073 + - 21075 + - 21071 + - 21070 + - 21078 + - 21074 + - 21076 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSyndicateShipGearBasic + entities: + - uid: 11216 components: - type: Transform - pos: 10.5,20.5 + pos: 21.5,67.5 parent: 2 - - uid: 12890 +- proto: LockerWallMedical + entities: + - uid: 11118 components: - type: Transform - pos: 68.5,11.5 + rot: -1.5707963267948966 rad + pos: 69.5,8.5 parent: 2 - - uid: 12891 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11122 + - 11119 + - 11128 + - 11120 + - 11129 + - 11121 +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 11217 components: - type: Transform - pos: 67.5,11.5 + pos: 57.5,5.5 parent: 2 - - uid: 12892 +- proto: LockerWardenFilled + entities: + - uid: 11218 components: - type: Transform - pos: 66.5,11.5 + pos: 50.5,28.5 parent: 2 - - uid: 12893 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 7563 components: - type: Transform - pos: 47.5,15.5 + pos: 53.5,73.5 parent: 2 - - uid: 19912 + - uid: 11219 components: - type: Transform - pos: 3.5,1.5 - parent: 16504 - - uid: 19913 + pos: 39.5,62.5 + parent: 2 + - uid: 11221 components: - type: Transform - pos: -2.5,21.5 - parent: 16504 - - uid: 19914 + pos: 60.5,-7.5 + parent: 2 + - uid: 11222 components: - type: Transform - pos: 2.5,22.5 - parent: 16504 - - uid: 19915 + pos: 18.5,63.5 + parent: 2 + - uid: 11223 components: - type: Transform - pos: -6.5,26.5 - parent: 16504 - - uid: 21446 + pos: 47.5,41.5 + parent: 2 + - uid: 11224 components: - type: Transform - pos: 29.5,45.5 + pos: 64.5,36.5 parent: 2 - - uid: 21447 + - uid: 11225 components: - type: Transform - pos: 29.5,46.5 + pos: 31.5,-11.5 parent: 2 - - uid: 21450 +- proto: LootSpawnerEncryptionKey + entities: + - uid: 11227 components: - type: Transform - pos: 29.5,44.5 + pos: 25.5,57.5 parent: 2 - - uid: 21451 + - uid: 11228 components: - type: Transform - pos: 24.5,51.5 + pos: 14.5,87.5 parent: 2 - - uid: 21452 +- proto: Machete + entities: + - uid: 11229 components: - type: Transform - pos: 23.5,51.5 + rot: 3.141592653589793 rad + pos: 50.622604,-5.3519115 parent: 2 - - uid: 21453 +- proto: MachineAnomalyGenerator + entities: + - uid: 10849 components: - type: Transform - pos: 22.5,51.5 + pos: 17.5,-1.5 parent: 2 - - uid: 21454 +- proto: MachineAnomalyVessel + entities: + - uid: 11231 components: - type: Transform - pos: 21.5,51.5 + pos: 15.5,-0.5 parent: 2 - - uid: 21455 + - uid: 11232 components: - type: Transform - pos: 20.5,51.5 + pos: 14.5,-0.5 parent: 2 - - uid: 21456 +- proto: MachineAPE + entities: + - uid: 11233 components: - type: Transform - pos: 19.5,51.5 + pos: 15.5,-1.5 parent: 2 - - uid: 21457 + - uid: 11234 components: - type: Transform - pos: 26.5,51.5 + pos: 14.5,-1.5 parent: 2 - - uid: 21458 +- proto: MachineArtifactAnalyzer + entities: + - uid: 11235 components: - type: Transform - pos: 28.5,51.5 + pos: 18.5,-7.5 parent: 2 - - uid: 21459 + - uid: 23241 components: - type: Transform - pos: 29.5,51.5 - parent: 2 - - uid: 21460 + pos: -37.5,41.5 + parent: 16527 +- proto: MachineCentrifuge + entities: + - uid: 11236 components: - type: Transform - pos: 30.5,51.5 + pos: 40.5,7.5 parent: 2 - - uid: 21461 +- proto: MachineElectrolysisUnit + entities: + - uid: 11237 components: - type: Transform - pos: 27.5,51.5 + pos: 40.5,6.5 parent: 2 - - uid: 21462 +- proto: MachineFrame + entities: + - uid: 11239 components: - type: Transform - pos: 31.5,51.5 + pos: 53.5,60.5 parent: 2 - - uid: 21463 + - uid: 11240 components: - type: Transform - pos: 25.5,51.5 + pos: 75.5,6.5 parent: 2 -- proto: ShuttersRadiation - entities: - - uid: 12898 + - uid: 11241 components: - type: Transform - pos: 51.5,71.5 + pos: 53.5,62.5 parent: 2 - - uid: 12899 + - uid: 23242 components: - type: Transform - pos: 52.5,71.5 - parent: 2 - - uid: 12900 + pos: 35.5,51.5 + parent: 16527 + - uid: 23243 components: - type: Transform - pos: 53.5,71.5 - parent: 2 - - uid: 12901 + pos: 9.5,0.5 + parent: 16527 + - uid: 23244 components: - type: Transform - pos: 26.5,-5.5 - parent: 2 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 12902 + pos: -27.5,22.5 + parent: 16527 + - uid: 23245 components: - type: Transform - pos: 57.565678,48.294518 - parent: 2 -- proto: ShuttleGunFriendship - entities: - - uid: 19351 + pos: -21.5,32.5 + parent: 16527 + - uid: 23246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,26.5 - parent: 16504 - - type: ContainerContainer - containers: - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: - - 19352 - - type: BallisticAmmoProvider - entities: - - 19352 -- proto: ShuttleGunKinetic - entities: - - uid: 19916 + pos: -24.5,25.5 + parent: 16527 + - uid: 23247 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,32.5 - parent: 16504 -- proto: ShuttleGunPerforatorCircuitboard - entities: - - uid: 19917 + pos: 27.5,28.5 + parent: 16527 + - uid: 23248 components: - type: Transform - pos: -1.4482787,20.596813 - parent: 16504 -- proto: ShuttleGunSvalinnMachineGun - entities: - - uid: 19549 + pos: -15.5,67.5 + parent: 16527 + - uid: 23249 components: - type: Transform - pos: 8.5,37.5 - parent: 16504 - - type: ContainerContainer - containers: - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: 19550 - - uid: 19551 + pos: -31.5,38.5 + parent: 16527 + - uid: 23250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,29.5 - parent: 16504 - - type: ContainerContainer - containers: - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: 19552 -- proto: SignAi + rot: -1.5707963267948966 rad + pos: 21.5,43.5 + parent: 16527 +- proto: MachineFrameDestroyed entities: - - uid: 12903 + - uid: 11242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-22.5 + pos: 51.5,63.5 parent: 2 - - uid: 21877 + - uid: 11243 components: - type: Transform - pos: 21.5,-37.5 + pos: 28.5,63.5 parent: 2 - - uid: 21880 + - uid: 11244 components: - type: Transform - pos: 23.5,-37.5 + pos: 28.5,-12.5 parent: 2 -- proto: SignAiUpload - entities: - - uid: 16252 + - uid: 11245 components: - type: Transform - pos: 22.5,-45.5 + pos: 93.5,21.5 parent: 2 -- proto: SignalButton - entities: - - uid: 12907 + - uid: 23251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12827: - - Pressed: Toggle - 12828: - - Pressed: Toggle - 12829: - - Pressed: Toggle - - uid: 12909 + pos: 10.5,-1.5 + parent: 16527 + - uid: 23252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,7.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12866: - - Pressed: Toggle - - uid: 12910 + pos: 5.5,-7.5 + parent: 16527 + - uid: 23253 components: - type: Transform - pos: 50.5,71.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12898: - - Pressed: Toggle - 12899: - - Pressed: Toggle - 12900: - - Pressed: Toggle - - uid: 12911 + pos: -5.5,-3.5 + parent: 16527 + - uid: 23255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,9.5 - parent: 2 - - uid: 12912 + pos: -0.5,18.5 + parent: 16527 + - uid: 23256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,9.5 - parent: 2 - - uid: 16338 + pos: -24.5,22.5 + parent: 16527 + - uid: 23257 components: - - type: MetaData - desc: 'Кнопка активирует включение турелей. ВНИМАНИЕ: Турели атакуют любую живность поблизости.' - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-39.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 3177: - - Pressed: Toggle - - Pressed: AutoClose - 13880: - - Pressed: Toggle - - Pressed: AutoClose - 3176: - - Pressed: Toggle - - Pressed: AutoClose - 13352: - - Pressed: Toggle - - Pressed: AutoClose - 3182: - - Pressed: Toggle - - Pressed: AutoClose - 3184: - - Pressed: Toggle - - Pressed: AutoClose - 3206: - - Pressed: Toggle - - Pressed: AutoClose - 3859: - - Pressed: Toggle - - Pressed: AutoClose - 21771: - - Pressed: Toggle - 21772: - - Pressed: Toggle - 21797: - - Pressed: Toggle - 21791: - - Pressed: Toggle - 21794: - - Pressed: Toggle - 21795: - - Pressed: Toggle - 5812: - - Pressed: Toggle - - Pressed: AutoClose - 21849: - - Pressed: Toggle - - Pressed: AutoClose - - uid: 19918 + pos: -16.5,38.5 + parent: 16527 + - uid: 23258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17672: - - Pressed: Close - 17671: - - Pressed: Close - 17673: - - Pressed: Close - 17674: - - Pressed: Close - 17676: - - Pressed: Close - 17675: - - Pressed: Close - 17719: - - Pressed: Trigger - 17718: - - Pressed: Trigger - 19940: - - Pressed: Open - 19946: - - Pressed: Trigger - 19945: - - Pressed: Trigger - 19948: - - Pressed: Trigger - - uid: 19919 + pos: -25.5,24.5 + parent: 16527 + - uid: 23259 components: - type: Transform - pos: 2.5,-0.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17672: - - Pressed: Open - 17671: - - Pressed: Open - 17673: - - Pressed: Open - 17674: - - Pressed: Close - 17676: - - Pressed: Close - 17675: - - Pressed: Close - 19943: - - Pressed: Trigger - 19950: - - Pressed: Trigger - 19951: - - Pressed: Trigger - - uid: 19920 + pos: -8.5,38.5 + parent: 16527 + - uid: 23260 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17674: - - Pressed: Open - 17676: - - Pressed: Open - 17675: - - Pressed: Open - 19944: - - Pressed: Trigger - 17673: - - Pressed: Close - 17671: - - Pressed: Close - 17672: - - Pressed: Close - - uid: 19921 + pos: 3.5,32.5 + parent: 16527 + - uid: 23261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,2.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 19940: - - Pressed: Open - 19946: - - Pressed: Trigger - 17672: - - Pressed: Close - 17671: - - Pressed: Close - 17673: - - Pressed: Close - 17675: - - Pressed: Close - 17676: - - Pressed: Close - 17674: - - Pressed: Close - 19949: - - Pressed: Trigger - 19947: - - Pressed: Trigger - 17719: - - Pressed: Trigger - 17718: - - Pressed: Trigger - - uid: 19922 + pos: 17.5,38.5 + parent: 16527 + - uid: 23262 components: - type: Transform - pos: 0.5,13.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17670: - - Pressed: Open - 17669: - - Pressed: Open - 17683: - - Pressed: Open - 17682: - - Pressed: Open - 17684: - - Pressed: Open - 17681: - - Pressed: Open - 17680: - - Pressed: Open - 17667: - - Pressed: Open - 17668: - - Pressed: Open - - uid: 19923 + pos: 21.5,-2.5 + parent: 16527 + - uid: 23263 components: - type: Transform - pos: -20.5,16.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17685: - - Pressed: Toggle - - uid: 19924 + pos: 7.5,40.5 + parent: 16527 + - uid: 23264 components: - type: Transform - pos: 9.5,19.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17687: - - Pressed: Open - 17689: - - Pressed: Open - 17690: - - Pressed: Open - 19549: - - Pressed: On - - uid: 19925 + pos: -1.5,57.5 + parent: 16527 + - uid: 23265 components: - type: Transform - pos: 9.5,31.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17710: - - Pressed: Close - 19549: - - Pressed: Off - - uid: 19926 + pos: -14.5,69.5 + parent: 16527 + - uid: 23266 components: - type: Transform - pos: 7.5,22.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17691: - - Pressed: Open - 17688: - - Pressed: Open - - uid: 19927 + pos: -9.5,58.5 + parent: 16527 + - uid: 23267 components: - type: Transform - pos: 9.5,25.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17692: - - Pressed: Open - 17693: - - Pressed: Open - - uid: 19928 + pos: -23.5,39.5 + parent: 16527 + - uid: 23268 components: - type: Transform - pos: 7.5,28.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17695: - - Pressed: Open - 17694: - - Pressed: Open - - uid: 19929 + pos: -36.5,30.5 + parent: 16527 +- proto: MagazineBoxAntiMaterielBig + entities: + - uid: 22482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,15.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17667: - - Pressed: Open - 17670: - - Pressed: Open - 17669: - - Pressed: Open - 17668: - - Pressed: Open - 17681: - - Pressed: Open - 17680: - - Pressed: Open - 17683: - - Pressed: Open - 17682: - - Pressed: Open - 17684: - - Pressed: Open - - uid: 19930 + pos: 61.59202,31.506334 + parent: 2 +- proto: MagazineBoxCaselessRifleBig + entities: + - uid: 23269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17668: - - Pressed: Open - 17682: - - Pressed: Open - 17684: - - Pressed: Open - 17683: - - Pressed: Open - 17669: - - Pressed: Open - 17670: - - Pressed: Open - 17680: - - Pressed: Open - 17681: - - Pressed: Open - - uid: 19931 + pos: -51.745483,54.51129 + parent: 16527 +- proto: MagazineBoxLightRifleBig + entities: + - uid: 23270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 19952: - - Pressed: Trigger - - uid: 19932 + pos: -52.47986,54.51129 + parent: 16527 +- proto: MagazineBoxRifleBig + entities: + - uid: 23271 components: - type: Transform - pos: -8.530545,30.731735 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 19941: - - Pressed: Open - - uid: 19933 + pos: -54.41736,54.526917 + parent: 16527 +- proto: MagazinePistolCaselessRifle + entities: + - uid: 23272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,15.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 19952: - - Pressed: Trigger - - uid: 19934 + pos: 1.5581055,82.42755 + parent: 16527 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 23139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.00272,35.91638 - parent: 16504 - - uid: 19935 + parent: 23138 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MaintenanceFluffSpawner + entities: + - uid: 11248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.00272,35.682007 - parent: 16504 - - uid: 19936 + pos: 90.5,23.5 + parent: 2 + - uid: 11249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.00272,35.463257 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 19551: - - Pressed: Toggle - - uid: 19937 + pos: 22.5,67.5 + parent: 2 + - uid: 11250 components: - type: Transform - pos: -0.5,39.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17705: - - Pressed: Toggle - 16528: - - Pressed: DoorBolt - - Pressed: Close - 16527: - - Pressed: DoorBolt - - Pressed: Close - 17704: - - Pressed: Open - 17706: - - Pressed: Open - - uid: 19938 + pos: 35.5,59.5 + parent: 2 + - uid: 11251 components: - type: Transform - pos: 1.5,39.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17704: - - Pressed: Open - 16528: - - Pressed: Close - - Pressed: DoorBolt - 16527: - - Pressed: Close - - Pressed: DoorBolt - 17706: - - Pressed: Open - - uid: 19939 + pos: 19.5,59.5 + parent: 2 + - uid: 11252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,31.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17697: - - Pressed: Toggle - 17696: - - Pressed: Toggle - 17698: - - Pressed: Toggle -- proto: SignalButtonDirectional + pos: 13.5,82.5 + parent: 2 + - uid: 23273 + components: + - type: Transform + pos: 26.5,54.5 + parent: 16527 +- proto: MaintenancePlantSpawner entities: - - uid: 12914 + - uid: 11253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,23.5 + pos: 36.5,58.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1005: - - Pressed: Toggle - 1006: - - Pressed: Toggle - 1007: - - Pressed: Toggle - 999: - - Pressed: Toggle - 998: - - Pressed: Toggle - 1000: - - Pressed: Toggle - - uid: 12915 + - uid: 11254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,23.5 + pos: 70.5,9.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1004: - - Pressed: Toggle - 997: - - Pressed: Toggle - 996: - - Pressed: Toggle - 1002: - - Pressed: Toggle - 1003: - - Pressed: Toggle - 1001: - - Pressed: Toggle - - uid: 12916 + - uid: 11255 components: - type: Transform - pos: 41.5,37.5 + pos: 33.5,-4.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12831: - - Pressed: Toggle - - uid: 12917 + - uid: 11256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,20.5 + pos: 42.5,-10.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12833: - - Pressed: Toggle - 12834: - - Pressed: Toggle - - uid: 12918 + - uid: 11257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 + pos: 51.5,-16.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12837: - - Pressed: Toggle - 12839: - - Pressed: Toggle - 12838: - - Pressed: Toggle - 12836: - - Pressed: Toggle - 12835: - - Pressed: Toggle - - uid: 12919 + - uid: 11258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,27.5 + pos: 84.5,11.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12852: - - Pressed: Toggle - 12851: - - Pressed: Toggle - 12850: - - Pressed: Toggle - 12849: - - Pressed: Toggle - 12848: - - Pressed: Toggle - 12847: - - Pressed: Toggle - 12846: - - Pressed: Toggle - 12845: - - Pressed: Toggle - 12844: - - Pressed: Toggle - 12843: - - Pressed: Toggle - 12842: - - Pressed: Toggle - 12841: - - Pressed: Toggle - 12840: - - Pressed: Toggle - - uid: 12920 + - uid: 11259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,3.5 + pos: 79.5,24.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12853: - - Pressed: Toggle - - uid: 12921 + - uid: 11260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,17.5 + pos: 49.5,40.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12857: - - Pressed: Toggle - 12855: - - Pressed: Toggle - - uid: 12922 + - uid: 11261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,20.5 + pos: 34.5,64.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12856: - - Pressed: Toggle - 12854: - - Pressed: Toggle - - uid: 12923 + - uid: 11262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,30.5 + pos: 27.5,67.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12858: - - Pressed: Toggle - - uid: 12924 + - uid: 11264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,35.5 + pos: 86.5,24.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 158: - - Pressed: DoorBolt - - uid: 12925 + - uid: 16496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,35.5 + pos: 35.5,58.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 157: - - Pressed: DoorBolt - - uid: 12926 + - uid: 23274 components: - type: Transform - pos: 18.5,60.5 + pos: 30.5,56.5 + parent: 16527 + - uid: 23275 + components: + - type: Transform + pos: 34.5,45.5 + parent: 16527 +- proto: MaintenanceToolSpawner + entities: + - uid: 11266 + components: + - type: Transform + pos: 72.5,8.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12861: - - Pressed: Toggle - 12862: - - Pressed: Toggle - 12863: - - Pressed: Toggle - - uid: 12927 + - uid: 11268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-10.5 + pos: 12.5,59.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12865: - - Pressed: Toggle - 12864: - - Pressed: Toggle - - uid: 12928 + - uid: 11269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,25.5 + pos: 15.5,72.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12886: - - Pressed: Toggle - 12884: - - Pressed: Toggle - 12885: - - Pressed: Toggle - - uid: 12929 + - uid: 16380 components: - type: Transform - pos: 0.5,24.5 + pos: 42.5,57.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 990: - - Pressed: Toggle - - uid: 12930 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 11270 components: - type: Transform - pos: 21.5,-5.5 + pos: 25.5,60.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 991: - - Pressed: Toggle - - uid: 12931 + - uid: 11271 components: - type: Transform - pos: 65.5,49.5 + pos: 90.5,13.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12830: - - Pressed: Toggle - - uid: 12932 + - uid: 11272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,41.5 + pos: 24.5,67.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12878: - - Pressed: Toggle - 12879: - - Pressed: Toggle - 12881: - - Pressed: Toggle - 12882: - - Pressed: Toggle - 12883: - - Pressed: Toggle - 12880: - - Pressed: Toggle - - uid: 12933 + - uid: 11273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,42.5 + pos: 34.5,67.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12877: - - Pressed: Toggle - 12876: - - Pressed: Toggle - 12875: - - Pressed: Toggle - 12869: - - Pressed: Toggle - 12868: - - Pressed: Toggle - 12867: - - Pressed: Toggle - 12874: - - Pressed: Toggle - 12873: - - Pressed: Toggle - 12859: - - Pressed: Toggle - 12872: - - Pressed: Toggle - 12871: - - Pressed: Toggle - 12870: - - Pressed: Toggle - - uid: 12934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,9.5 - parent: 2 - - uid: 12935 + - uid: 11274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,22.5 + pos: 15.5,71.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12889: - - Pressed: Toggle - 12888: - - Pressed: Toggle - 12887: - - Pressed: Toggle - - uid: 12937 + - uid: 23276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,71.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12898: - - Pressed: Toggle - 12899: - - Pressed: Toggle - 12900: - - Pressed: Toggle - - uid: 12938 + pos: 34.5,55.5 + parent: 16527 +- proto: MakeshiftShield + entities: + - uid: 23277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12901: - - Pressed: Toggle - - uid: 12939 + rot: -1.5707963267948966 rad + pos: 2.4967923,-3.6409602 + parent: 16527 +- proto: Mannequin + entities: + - uid: 3620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,20.5 + pos: 41.5,-26.5 parent: 2 - - uid: 12940 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 3623 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 3625 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 3624 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 3621 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null +- proto: Matchbox + entities: + - uid: 21840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,8.5 + pos: 28.455824,43.690662 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 992: - - Pressed: Toggle - - uid: 12941 +- proto: MaterialBiomass1 + entities: + - uid: 11275 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,17.5 + pos: 50.0015,-5.4251294 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12893: - - Pressed: Toggle -- proto: SignalControlledValve +- proto: MaterialCloth entities: - - uid: 19940 + - uid: 11276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 16504 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19941 + pos: 20.45009,20.05165 + parent: 2 + - uid: 11277 components: - type: Transform - pos: -6.5,40.5 - parent: 16504 - - type: GasValve - open: False -- proto: SignalSwitchDirectional + pos: 50.516743,-2.397445 + parent: 2 +- proto: MaterialCloth1 entities: - - uid: 12943 + - uid: 11278 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,10.5 + pos: 59.732285,37.431206 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 159: - - On: DoorBolt - - Off: DoorBolt -- proto: SignalTimer - entities: - - uid: 19942 + - uid: 11279 components: - type: Transform - pos: -4.5,40.5 - parent: 16504 - - type: SignalTimer - delay: 0.7 - - uid: 19943 + pos: 59.742702,37.993706 + parent: 2 + - uid: 23278 components: - - type: MetaData - name: 5 низ - type: Transform - pos: 6.5,-1.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17673: - - Timer: Close - 17671: - - Timer: Close - 17672: - - Timer: Close - - uid: 19944 + pos: 15.459702,30.260902 + parent: 16527 + - uid: 23279 components: - - type: MetaData - name: 5 верх - type: Transform - pos: 7.5,-1.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17674: - - Timer: Close - 17676: - - Timer: Close - 17675: - - Timer: Close - - uid: 19945 + pos: 15.287827,34.401527 + parent: 16527 + - uid: 23280 components: - - type: MetaData - name: 11 верх - type: Transform - pos: 7.5,-2.5 - parent: 16504 - - type: SignalTimer - delay: 11 - - type: DeviceLinkSource - linkedPorts: - 17674: - - Timer: Close - 17676: - - Timer: Close - 17675: - - Timer: Close - - uid: 19946 + pos: 15.709702,34.229652 + parent: 16527 + - uid: 23281 components: - - type: MetaData - name: 0.04 - type: Transform - pos: 6.5,-2.5 - parent: 16504 - - type: SignalTimer - delay: 0.04 - - type: DeviceLinkSource - linkedPorts: - 19940: - - Timer: Close - - uid: 19947 + pos: 17.537827,32.651527 + parent: 16527 + - uid: 23282 components: - - type: MetaData - name: 11 низ - type: Transform - pos: 6.5,-3.5 - parent: 16504 - - type: SignalTimer - delay: 11 - - type: DeviceLinkSource - linkedPorts: - 17672: - - Timer: Close - 17671: - - Timer: Close - 17673: - - Timer: Close - - uid: 19948 + pos: 17.584702,32.323402 + parent: 16527 + - uid: 23283 components: - - type: MetaData - name: 6 верх - type: Transform - pos: 8.5,-1.5 - parent: 16504 - - type: SignalTimer - delay: 6 - - type: DeviceLinkSource - linkedPorts: - 17675: - - Timer: Open - 17676: - - Timer: Open - 17674: - - Timer: Open - - uid: 19949 + rot: -1.5707963267948966 rad + pos: -35.64566,31.566956 + parent: 16527 +- proto: MaterialCloth10 + entities: + - uid: 23284 components: - - type: MetaData - name: 6 низ - type: Transform - pos: 8.5,-2.5 - parent: 16504 - - type: SignalTimer - delay: 6 - - type: DeviceLinkSource - linkedPorts: - 17672: - - Timer: Open - 17671: - - Timer: Open - 17673: - - Timer: Open - - uid: 19950 + pos: 17.350327,30.635902 + parent: 16527 + - uid: 23285 components: - type: Transform - pos: 8.5,-3.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17679: - - Start: Close - - Timer: Open - - uid: 19951 + pos: -18.41066,52.62445 + parent: 16527 +- proto: MaterialDurathread + entities: + - uid: 11280 components: - type: Transform - pos: 7.5,-3.5 - parent: 16504 - - type: SignalTimer - delay: 3 - - type: DeviceLinkSource - linkedPorts: - 17678: - - Start: Close - - Timer: Open - - uid: 19952 + pos: 20.571562,20.003357 + parent: 2 +- proto: MaterialWoodPlank1 + entities: + - uid: 16155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-2.5 - parent: 16504 - - type: SignalTimer - delay: 2 - - type: DeviceLinkSource - linkedPorts: - 17700: - - Start: Close - - Timer: Open - - uid: 19953 + pos: 22.585857,43.52272 + parent: 2 + - uid: 23286 components: - type: Transform - pos: 23.5,21.5 - parent: 16504 - - type: SignalTimer - delay: 0.5 - - type: DeviceLinkSource - linkedPorts: - 19351: - - Start: Off - - Timer: On - - Timer: Trigger - - uid: 19954 + rot: 3.141592653589793 rad + pos: 29.436554,51.50287 + parent: 16527 +- proto: MaterialWoodPlank10 + entities: + - uid: 23287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,21.5 - parent: 16504 - - type: SignalTimer - delay: 0.7 -- proto: SignArmory + pos: 27.469467,47.51654 + parent: 16527 +- proto: MatterBinStockPart entities: - - uid: 12944 + - uid: 11281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,25.5 + pos: 62.295105,49.294827 parent: 2 - - uid: 12945 + - uid: 23288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,29.5 - parent: 2 - - uid: 12946 + pos: 37.395332,32.96186 + parent: 16527 + - uid: 23289 components: - type: Transform - pos: 55.5,26.5 - parent: 2 -- proto: SignAtmos - entities: - - uid: 12947 + pos: 24.921247,23.503925 + parent: 16527 + - uid: 23290 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,68.5 - parent: 2 -- proto: SignBio - entities: - - uid: 575 + pos: 23.650415,24.24351 + parent: 16527 + - uid: 23291 components: - type: Transform - pos: 34.5,50.5 - parent: 2 -- proto: SignBiohazardMed + pos: -9.483459,69.61908 + parent: 16527 +- proto: Mattress entities: - - uid: 12949 + - uid: 10163 components: - type: Transform - pos: 52.5,-1.5 + pos: 10.5,53.5 parent: 2 -- proto: SignBridge - entities: - - uid: 12950 + - uid: 11282 components: - type: Transform - pos: 34.5,27.5 + pos: 59.5,37.5 parent: 2 - - uid: 12951 + - uid: 11283 components: - type: Transform - pos: 34.5,23.5 + pos: 81.5,6.5 parent: 2 - - uid: 12952 + - uid: 11284 components: - type: Transform - pos: 14.5,27.5 + pos: 84.5,6.5 parent: 2 - - uid: 12953 + - uid: 23292 components: - type: Transform - pos: 14.5,23.5 - parent: 2 -- proto: SignChapel - entities: - - uid: 12954 + pos: 10.5,64.5 + parent: 16527 + - uid: 23293 components: - type: Transform - pos: 73.5,30.5 - parent: 2 -- proto: SignChem - entities: - - uid: 12955 + pos: 10.5,66.5 + parent: 16527 + - uid: 23294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,5.5 - parent: 2 -- proto: SignCryo - entities: - - uid: 10548 + pos: 10.5,61.5 + parent: 16527 + - uid: 23295 components: - type: Transform - pos: 73.5,54.5 - parent: 2 -- proto: SignCryogenicsMed + pos: 12.5,59.5 + parent: 16527 + - uid: 23296 + components: + - type: Transform + pos: 10.5,55.5 + parent: 16527 +- proto: MedicalBed entities: - - uid: 12957 + - uid: 6443 components: - type: Transform - pos: 46.5,1.5 + pos: 60.5,20.5 parent: 2 - - uid: 12958 + - uid: 11285 components: - type: Transform - pos: 46.5,-0.5 + pos: 52.5,33.5 parent: 2 -- proto: SignDangerMed - entities: - - uid: 12959 + - uid: 11286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-13.5 + pos: 35.5,1.5 parent: 2 - - uid: 19955 + - uid: 11287 components: - type: Transform - pos: -0.5,19.5 - parent: 16504 -- proto: SignDirectionalBar - entities: - - uid: 12960 + pos: 41.5,-0.5 + parent: 2 + - uid: 11288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,15.5 + pos: 35.5,-2.5 parent: 2 - - uid: 12961 + - uid: 11289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.50125,15.290295 + pos: 41.5,-4.5 parent: 2 -- proto: SignDirectionalBridge - entities: - - uid: 12962 + - uid: 11290 components: - type: Transform - pos: 48.5,50.5 + pos: 35.5,-0.5 parent: 2 -- proto: SignDirectionalChapel - entities: - - uid: 12963 + - uid: 11292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,32.5 + pos: 48.5,10.5 parent: 2 -- proto: SignDirectionalCryo - entities: - - uid: 16103 + - uid: 11293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,54.5 + pos: 56.5,-0.5 parent: 2 - - uid: 16104 + - uid: 11294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,50.5 + pos: 56.5,0.5 parent: 2 - - uid: 16159 + - uid: 11295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,39.5 + pos: 49.5,26.5 parent: 2 -- proto: SignDirectionalDorms - entities: - - uid: 12966 + - uid: 11296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,11.5 + pos: 41.5,-2.5 parent: 2 -- proto: SignDirectionalEng - entities: - - uid: 12967 + - uid: 11297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,15.5 + pos: 39.5,69.5 parent: 2 - - uid: 12968 + - uid: 23297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,39.5 - parent: 2 - - uid: 12969 + pos: 17.5,36.5 + parent: 16527 + - uid: 23298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,15.5 - parent: 2 - - uid: 12970 + pos: 17.5,34.5 + parent: 16527 + - uid: 23299 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.501503,15.703604 - parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 12971 + pos: 17.5,30.5 + parent: 16527 + - uid: 23300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,20.5 - parent: 2 - - uid: 12972 + pos: 17.5,32.5 + parent: 16527 + - uid: 23301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,65.5 - parent: 2 - - uid: 12973 + pos: 15.5,30.5 + parent: 16527 + - uid: 23302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.500885,50.294773 - parent: 2 - - uid: 12974 + pos: 15.5,32.5 + parent: 16527 + - uid: 23303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,11.5 - parent: 2 - - uid: 12975 + pos: 15.5,34.5 + parent: 16527 +- proto: MedicalScanner + entities: + - uid: 8105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,11.5 + pos: 50.5,-6.5 parent: 2 - - uid: 12977 +- proto: MedicalTechFab + entities: + - uid: 11298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,35.5 + pos: 58.5,4.5 parent: 2 - - uid: 12978 +- proto: Medkit + entities: + - uid: 19378 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,50.5 + pos: 11.57095,38.43859 + parent: 16527 + - type: Storage + storedItems: + 19379: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 19379 +- proto: MedkitAdvancedFilled + entities: + - uid: 11299 + components: + - type: Transform + pos: 58.590317,1.9818959 parent: 2 - - uid: 21183 + - uid: 11300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,35.5 + pos: 47.478302,8.56902 parent: 2 -- proto: SignDirectionalHydro + - uid: 23304 + components: + - type: Transform + pos: -1.483963,38.557312 + parent: 16527 +- proto: MedkitBrute entities: - - uid: 21341 + - uid: 23305 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,39.3 - parent: 2 -- proto: SignDirectionalIcu + pos: 11.365046,31.830227 + parent: 16527 + - uid: 23306 + components: + - type: Transform + pos: 11.681109,31.552542 + parent: 16527 +- proto: MedkitBruteFilled entities: - - uid: 12980 + - uid: 11301 components: - type: Transform - pos: 34.5,-3.5 + pos: 58.465317,2.622521 parent: 2 - - uid: 12981 + - uid: 11302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-2.5 + pos: 61.580322,24.588772 parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 12982 + - uid: 11303 components: - type: Transform - pos: 34.5,34.5 + pos: 58.434067,2.606896 parent: 2 -- proto: SignDirectionalSci + - uid: 23307 + components: + - type: Transform + pos: -54.93405,42.40381 + parent: 16527 +- proto: MedkitBurn entities: - - uid: 12983 + - uid: 23308 components: - type: Transform - pos: 34.497726,34.709347 - parent: 2 -- proto: SignDirectionalSec + rot: 3.141592653589793 rad + pos: 12.229855,32.929184 + parent: 16527 +- proto: MedkitBurnFilled entities: - - uid: 12984 + - uid: 11304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.499695,15.7111635 + pos: 61.892204,24.497042 parent: 2 - - uid: 12985 + - uid: 11305 components: - type: Transform - pos: 48.498116,50.697037 + pos: 58.402817,1.4506459 parent: 2 -- proto: SignDirectionalSolar + - uid: 23309 + components: + - type: Transform + pos: 11.427546,33.72085 + parent: 16527 + - uid: 23310 + components: + - type: Transform + pos: -55.371582,43.106995 + parent: 16527 +- proto: MedkitCombatFilled entities: - - uid: 12986 + - uid: 11306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,39.5 + pos: 61.305134,24.607117 parent: 2 -- proto: SignDirectionalSupply + - uid: 26633 + components: + - type: Transform + pos: 37.44861,33.73999 + parent: 16527 +- proto: MedkitFilled entities: - - uid: 12987 + - uid: 11307 components: - type: Transform - pos: 34.497726,34.30194 + pos: 61.708744,24.497042 parent: 2 - - uid: 12988 + - uid: 11308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.49894,15.288402 + pos: 58.041897,2.5312233 parent: 2 -- proto: SignDisposalSpace - entities: - - uid: 12989 + - uid: 11309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,19.5 + pos: 28.515974,30.574839 parent: 2 - - uid: 19956 + - uid: 23311 components: - type: Transform - pos: -11.5,16.5 - parent: 16504 -- proto: SignElectricalMed + pos: 2.5191708,38.608 + parent: 16527 + - uid: 23312 + components: + - type: Transform + pos: -23.47055,31.558647 + parent: 16527 + - uid: 23313 + components: + - type: Transform + pos: 1.6433105,38.08954 + parent: 16527 +- proto: MedkitO2 entities: - - uid: 19957 + - uid: 23314 components: - type: Transform - pos: -5.5,33.5 - parent: 16504 -- proto: SignEngineering + rot: 3.141592653589793 rad + pos: 10.792355,36.952168 + parent: 16527 + - uid: 23315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.318171,32.486477 + parent: 16527 +- proto: MedkitOxygenFilled entities: - - uid: 12991 + - uid: 11310 components: - type: Transform - pos: 46.5,54.5 + pos: 45.550034,36.551556 parent: 2 -- proto: SignEscapePods - entities: - - uid: 12992 + - uid: 11311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-11.5 + pos: 57.840317,2.544396 parent: 2 -- proto: SignFlammableMed - entities: - - uid: 3629 + - uid: 11312 components: - type: Transform - pos: 41.5,51.5 + pos: 61.433556,24.442003 parent: 2 - - uid: 19958 + - uid: 23316 components: - type: Transform - pos: -5.5,35.5 - parent: 16504 -- proto: SignGravity + pos: 11.740046,37.5021 + parent: 16527 + - uid: 23317 + components: + - type: Transform + pos: -54.401794,42.418762 + parent: 16527 + - uid: 23318 + components: + - type: Transform + pos: 16.636978,36.630432 + parent: 16527 +- proto: MedkitRadiationFilled entities: - - uid: 12993 + - uid: 11313 components: - type: Transform - pos: 54.5,50.5 + pos: 61.32348,24.533733 parent: 2 -- proto: SignHydro1 - entities: - - uid: 6938 + - uid: 11314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,45.5 + pos: 24.57722,-4.5510807 parent: 2 - - uid: 12195 + - uid: 11315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,49.5 + pos: 57.38719,2.528771 parent: 2 -- proto: SignInterrogation +- proto: MedkitToxinFilled entities: - - uid: 12995 + - uid: 11316 components: - type: Transform - pos: 51.5,19.5 + pos: 61.745438,24.643808 parent: 2 -- proto: SignJanitor - entities: - - uid: 12996 + - uid: 11317 components: - type: Transform - pos: 69.5,49.5 + pos: 58.38719,2.247521 parent: 2 -- proto: SignKiddiePlaque - entities: - - uid: 19959 + - uid: 23319 components: - - type: MetaData - desc: Табличка с надписью "Внимание, данное действие может привести к летальному исходу базы 'Sierra'. Выброс газов в атмосферу станции и извне." - name: предупреждающая табличка - type: Transform - pos: -8.5,31.5 - parent: 16504 -- proto: SignKitchen - entities: - - uid: 21621 + pos: 11.505671,37.7521 + parent: 16527 + - uid: 23320 components: - type: Transform - pos: 29.5,48.5 - parent: 2 -- proto: SignLibrary + pos: -55.465332,42.37262 + parent: 16527 +- proto: MicroBombImplanter entities: - - uid: 12997 + - uid: 23321 components: - type: Transform - pos: 67.5,54.5 - parent: 2 -- proto: SignMedical + pos: -52.354866,42.70331 + parent: 16527 +- proto: MicrophoneInstrument entities: - - uid: 12998 + - uid: 11318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,22.5 + pos: -1.5322795,33.584393 parent: 2 - - uid: 12999 +- proto: MiniGravityGeneratorCircuitboard + entities: + - uid: 11319 components: - type: Transform - pos: 34.5,11.5 + pos: 57.550053,47.982018 parent: 2 -- proto: SignMorgue +- proto: MinimoogInstrument entities: - - uid: 13000 + - uid: 11321 components: - type: Transform - pos: 54.5,5.5 + rot: 1.5707963267948966 rad + pos: 63.5,-1.5 parent: 2 -- proto: SignNews - entities: - - uid: 13001 + - uid: 15679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,35.5 + rot: -1.5707963267948966 rad + pos: 20.5,41.5 parent: 2 -- proto: SignPlaque +- proto: MiningWindow entities: - - uid: 13002 + - uid: 7436 components: - type: Transform - pos: 24.5,23.5 + rot: -1.5707963267948966 rad + pos: 29.5,46.5 parent: 2 -- proto: SignPrison - entities: - - uid: 13003 + - uid: 9310 components: - type: Transform - pos: 48.5,36.5 + rot: -1.5707963267948966 rad + pos: 29.5,45.5 parent: 2 -- proto: SignPsychology - entities: - - uid: 13004 + - uid: 9345 components: - type: Transform - pos: 65.5,11.5 + rot: -1.5707963267948966 rad + pos: 29.5,44.5 parent: 2 -- proto: SignRedFour - entities: - - uid: 13005 + - uid: 11322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,21.5 + pos: 69.5,1.5 parent: 2 -- proto: SignRedOne - entities: - - uid: 13006 + - uid: 11323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,18.5 + pos: 61.5,-6.5 parent: 2 -- proto: SignRedThree +- proto: MiningWindowDiagonal entities: - - uid: 13007 + - uid: 13809 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,18.5 + pos: 25.5,51.5 parent: 2 -- proto: SignRedTwo - entities: - - uid: 13008 + - uid: 15492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,21.5 + pos: 25.5,51.5 parent: 2 -- proto: SignRND +- proto: Mirror entities: - - uid: 13009 + - uid: 7783 components: - type: Transform - pos: 25.5,11.5 + rot: -1.5707963267948966 rad + pos: 19.5,10.5 parent: 2 -- proto: SignSecurearea +- proto: ModularGrenade entities: - - uid: 984 + - uid: 23322 components: - type: Transform - pos: 14.5,-30.5 - parent: 2 - - uid: 1042 + pos: -32.157425,33.560913 + parent: 16527 +- proto: MopBucketFull + entities: + - uid: 11324 components: - type: Transform - pos: 34.5,-32.5 + pos: 65.530846,47.53304 parent: 2 - - uid: 4487 +- proto: Morgue + entities: + - uid: 11325 components: - type: Transform - pos: 27.5,-30.5 + rot: -1.5707963267948966 rad + pos: 62.5,22.5 parent: 2 - - uid: 4493 + - uid: 11326 components: - type: Transform - pos: 13.5,-42.5 + pos: 52.5,8.5 parent: 2 - - uid: 8146 + - uid: 11327 components: - type: Transform - pos: 34.5,-42.5 + pos: 56.5,8.5 parent: 2 - - uid: 8147 + - uid: 11328 components: - type: Transform - pos: 22.5,-48.5 + pos: 55.5,8.5 parent: 2 - - uid: 10091 + - uid: 11329 components: - type: Transform - pos: 28.5,-46.5 + pos: 53.5,8.5 parent: 2 - - uid: 10791 + - uid: 11330 components: - type: Transform - pos: 17.5,-46.5 + rot: 3.141592653589793 rad + pos: 57.5,6.5 parent: 2 - - uid: 13010 + - uid: 11331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,27.5 + rot: 3.141592653589793 rad + pos: 59.5,6.5 parent: 2 - - uid: 13011 + - uid: 11332 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-28.5 + pos: 58.5,6.5 parent: 2 - - uid: 13012 + - uid: 11333 components: - type: Transform - pos: 10.5,25.5 + pos: 57.5,8.5 parent: 2 - - uid: 13017 + - uid: 11334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-28.5 + pos: 59.5,8.5 parent: 2 - - uid: 13899 + - uid: 11335 components: - type: Transform - pos: 9.5,-34.5 + pos: 58.5,8.5 parent: 2 - - uid: 13909 + - uid: 11336 components: - type: Transform - pos: 37.5,-37.5 + rot: 3.141592653589793 rad + pos: 56.5,6.5 parent: 2 -- proto: SignSecureMed +- proto: MothroachCube entities: - - uid: 3630 + - uid: 11337 components: - type: Transform - pos: 44.5,51.5 + pos: 5.6060247,-0.49718523 parent: 2 - - uid: 19960 + - uid: 11338 components: - type: Transform - pos: -7.5,31.5 - parent: 16504 -- proto: SignSecureMedRed - entities: - - uid: 13022 + pos: 3.4966497,-0.46593523 + parent: 2 + - uid: 11339 components: - type: Transform - pos: 29.5,15.5 + pos: 4.3247747,-0.46593523 parent: 2 -- proto: SignSecureSmall - entities: - - uid: 13025 + - uid: 11340 components: - type: Transform - pos: 75.5,9.5 + pos: 6.4810247,-0.29406023 parent: 2 - - uid: 13026 + - uid: 11341 components: - type: Transform - pos: 78.5,9.5 + pos: 2.8560247,-0.60656023 parent: 2 -- proto: SignSecurity +- proto: MouseTimedSpawner entities: - - uid: 13027 + - uid: 9883 components: - type: Transform - pos: 38.5,29.5 + pos: 15.5,58.5 parent: 2 -- proto: SignServer - entities: - - uid: 13028 + - uid: 11342 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,6.5 + pos: 67.5,28.5 parent: 2 -- proto: SignShock - entities: - - uid: 6535 + - uid: 21340 components: - type: Transform - pos: 24.5,-32.5 + pos: 31.5,60.5 parent: 2 - - uid: 7102 +- proto: Multitool + entities: + - uid: 11343 components: - type: Transform - pos: 26.5,-44.5 + pos: 26.912338,-2.311057 parent: 2 - - uid: 7309 + - uid: 11344 components: - type: Transform - pos: 16.5,-41.5 + pos: 24.451555,-7.70442 parent: 2 - - uid: 7312 + - uid: 11345 components: - type: Transform - pos: 18.5,-44.5 + pos: 54.658348,84.20381 parent: 2 - - uid: 7314 + - uid: 23323 components: - type: Transform - pos: 28.5,-41.5 - parent: 2 - - uid: 7478 + pos: 1.4764149,21.20172 + parent: 16527 + - uid: 23324 components: - type: Transform - pos: 15.5,-36.5 - parent: 2 - - uid: 7557 + rot: -1.5707963267948966 rad + pos: -33.377808,38.382385 + parent: 16527 + - uid: 23325 components: - type: Transform - pos: 20.5,-32.5 - parent: 2 - - uid: 7561 + pos: -35.48062,33.48993 + parent: 16527 + - uid: 23326 components: - type: Transform - pos: 30.5,-36.5 - parent: 2 -- proto: SignSmoking - entities: - - uid: 21569 + rot: -1.5707963267948966 rad + pos: -26.646301,38.32794 + parent: 16527 + - uid: 23327 components: - type: Transform - pos: 37.5,52.5 - parent: 2 -- proto: SignSomethingOld - entities: - - uid: 13029 + rot: 3.141592653589793 rad + pos: -35.24904,31.704895 + parent: 16527 + - uid: 23328 components: - type: Transform - pos: 51.5,7.5 - parent: 2 -- proto: SignSomethingOld2 + pos: -35.5851,30.341858 + parent: 16527 +- proto: Nettle entities: - - uid: 13030 + - uid: 11346 components: - type: Transform - pos: 12.5,7.5 + rot: -1.5707963267948966 rad + pos: 56.54159,76.47035 parent: 2 -- proto: SignSpace - entities: - - uid: 13031 + - uid: 11347 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,17.5 + rot: -1.5707963267948966 rad + pos: 55.54159,76.36098 parent: 2 - - uid: 13032 + - uid: 11348 components: - type: Transform - pos: 23.5,-24.5 + rot: 3.141592653589793 rad + pos: 55.275967,77.49437 parent: 2 -- proto: SignSurgery - entities: - - uid: 13033 + - uid: 11349 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,-9.5 + pos: 55.29159,78.52562 parent: 2 -- proto: SignTelecomms +- proto: NetworkConfigurator entities: - - uid: 13034 + - uid: 23329 components: - type: Transform - pos: 73.5,18.5 - parent: 2 -- proto: SignToolStorage + rot: -1.5707963267948966 rad + pos: -26.75563,38.624817 + parent: 16527 +- proto: NitrogenCanister entities: - - uid: 13035 + - uid: 11350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,40.5 + pos: 47.5,88.5 parent: 2 -- proto: SignVault - entities: - - uid: 13036 + - uid: 11352 components: - type: Transform - pos: 10.5,28.5 + pos: 0.5,17.5 parent: 2 -- proto: SignVirology - entities: - - uid: 13037 + - uid: 11353 components: - type: Transform - pos: 52.5,1.5 + pos: 22.5,16.5 parent: 2 -- proto: SignVox - entities: - - uid: 18618 + - uid: 11354 components: - type: Transform - pos: 14.5,39.5 + pos: 48.5,69.5 parent: 2 - - uid: 18619 + - uid: 11355 components: - type: Transform - pos: 13.5,42.5 + pos: 65.5,20.5 parent: 2 - - uid: 18620 + - uid: 11356 components: - type: Transform - pos: 17.5,39.5 + pos: 68.5,43.5 parent: 2 -- proto: SignXenobio - entities: - - uid: 13039 + - uid: 11357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-13.5 + pos: 56.5,63.5 parent: 2 -- proto: Sink - entities: - - uid: 6928 + - uid: 11358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,49.5 + pos: 31.5,66.5 parent: 2 - - uid: 9307 + - uid: 11359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,47.5 + pos: 76.5,24.5 parent: 2 - - uid: 13041 + - uid: 11360 components: - type: Transform - pos: 43.5,10.5 + pos: 12.5,81.5 parent: 2 - - uid: 13042 + - uid: 11361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,6.5 + pos: 40.5,57.5 parent: 2 - - uid: 13043 + - uid: 11362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,7.5 + pos: 41.5,79.5 parent: 2 - - uid: 13045 + - uid: 21907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,37.5 - parent: 2 - - uid: 18621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,47.5 + pos: 62.5,28.5 parent: 2 - - uid: 18659 + - uid: 23330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,52.5 - parent: 2 - - uid: 21342 + pos: -15.5,38.5 + parent: 16527 +- proto: NitrogenTank + entities: + - uid: 21323 components: - type: Transform - pos: 43.5,53.5 + rot: 1.5707963267948966 rad + pos: 17.275978,40.819668 parent: 2 -- proto: SinkStemless +- proto: NitrogenTankFilled entities: - - uid: 19961 + - uid: 8 components: - type: Transform - pos: 16.6298,20.624214 - parent: 16504 - - uid: 19962 + parent: 5 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10 components: - type: Transform - pos: 12.457926,20.530365 - parent: 16504 -- proto: SinkStemlessWater - entities: - - uid: 13046 + parent: 9 + - type: GasTank + toggleActionEntity: 11 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 11 + - type: InsideEntityStorage + - uid: 14 components: - type: Transform - pos: 52.5,0.5 - parent: 2 - - type: Drain - accumulator: 0.1664857 - - uid: 13047 + parent: 13 + - type: GasTank + toggleActionEntity: 15 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15 + - type: InsideEntityStorage + - uid: 18 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-11.5 - parent: 2 - - type: Drain - accumulator: 0.1664857 - - uid: 13048 + parent: 17 + - type: GasTank + toggleActionEntity: 19 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 19 + - type: InsideEntityStorage + - uid: 22 components: - type: Transform - pos: 58.5,-9.5 - parent: 2 - - type: Drain - accumulator: 0.1664857 - - uid: 13049 + parent: 21 + - type: GasTank + toggleActionEntity: 23 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 23 + - type: InsideEntityStorage + - uid: 26 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,21.5 - parent: 2 - - uid: 21573 + parent: 25 + - type: GasTank + toggleActionEntity: 27 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 27 + - type: InsideEntityStorage + - uid: 30 components: - type: Transform - pos: 32.5,55.5 - parent: 2 -- proto: SinkWide - entities: - - uid: 13050 + parent: 29 + - type: GasTank + toggleActionEntity: 31 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 31 + - type: InsideEntityStorage + - uid: 7407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,10.5 - parent: 2 - - uid: 13051 + parent: 7405 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,27.5 - parent: 2 - - uid: 13052 + parent: 7408 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,47.5 - parent: 2 - - type: Drain - accumulator: 0.1664857 -- proto: SmartFridge - entities: - - uid: 13053 + parent: 7411 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7416 components: - type: Transform - pos: 41.5,2.5 - parent: 2 - - uid: 13054 + parent: 7414 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7419 components: - type: Transform - pos: 44.5,5.5 - parent: 2 -- proto: SMESBasic - entities: - - uid: 2403 + parent: 7417 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7422 components: - type: Transform - pos: 29.5,-39.5 - parent: 2 - - uid: 2411 + parent: 7420 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7425 components: - type: Transform - pos: 30.5,-39.5 - parent: 2 - - uid: 13055 + parent: 7423 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11114 components: - type: Transform - pos: 54.5,85.5 - parent: 2 - - uid: 13056 + parent: 11112 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11117 components: - - type: MetaData - name: Энергетический Резерв СМЭС 1 - type: Transform - pos: 53.5,63.5 - parent: 2 - - uid: 13058 + parent: 11115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21439 components: - - type: MetaData - name: Энергетический Резерв СМЭС 6 - type: Transform - pos: 53.5,61.5 - parent: 2 - - uid: 13059 + parent: 21435 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23331 components: - - type: MetaData - name: Энергетический Резерв СМЭС 3 - type: Transform - pos: 51.5,62.5 - parent: 2 - - uid: 13060 + pos: 7.0693054,63.85089 + parent: 16527 +- proto: NitrousOxideCanister + entities: + - uid: 11363 components: - - type: MetaData - name: Энергетический Резерв СМЭС 7 - type: Transform - pos: 51.5,60.5 + pos: 43.5,79.5 parent: 2 - - uid: 13061 +- proto: NitrousOxideTankFilled + entities: + - uid: 11364 components: - type: Transform - pos: 74.5,18.5 + pos: 48.51483,-9.616904 parent: 2 - - type: Battery - startingCharge: 7815124 - - type: PowerNetworkBattery - loadingNetworkDemand: 9090.036 - currentReceiving: 9071.141 - currentSupply: 9090.036 - supplyRampPosition: 19.950195 - - uid: 13062 + - uid: 16514 components: - type: Transform - pos: 55.5,48.5 - parent: 2 - - uid: 13063 + parent: 16511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16515 components: - type: Transform - pos: 9.5,43.5 - parent: 2 - - type: Battery - startingCharge: 6900504 - - type: PowerNetworkBattery - loadingNetworkDemand: 40304244 - currentSupply: 47150.188 - supplyRampPosition: 42166.855 - - uid: 13064 + parent: 16511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16517 components: - type: Transform - pos: 48.5,-17.5 - parent: 2 - - type: Battery - startingCharge: 6900504 - - type: PowerNetworkBattery - loadingNetworkDemand: 40304244 - currentSupply: 47150.188 - supplyRampPosition: 42166.855 -- proto: SMESMachineCircuitboard - entities: - - uid: 13065 + parent: 16511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16519 components: - type: Transform - pos: 20.435625,10.164383 - parent: 2 - - uid: 13066 + parent: 16511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16521 components: - type: Transform - pos: 61.18573,47.63329 - parent: 2 - - uid: 19963 + parent: 16511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16522 components: - type: Transform - pos: -12.473246,27.314924 - parent: 16504 -- proto: SoapHomemade + parent: 16511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NotekeeperCartridge entities: - - uid: 13067 + - uid: 11365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.547615,36.495747 + pos: 78.5,11.5 parent: 2 - - uid: 13068 +- proto: NoticeBoard + entities: + - uid: 23332 components: - type: Transform - pos: 17.468998,-18.260181 - parent: 2 - - uid: 13069 + pos: 29.5,21.5 + parent: 16527 + - uid: 23333 components: - type: Transform - pos: 4.4458265,23.733456 - parent: 2 -- proto: SoapNT - entities: - - uid: 13070 + pos: 28.5,21.5 + parent: 16527 + - type: Storage + storedItems: + 23334: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 23334 + - uid: 23335 components: - type: Transform - pos: 22.464077,22.627882 - parent: 2 - - uid: 13071 + rot: -1.5707963267948966 rad + pos: 22.5,31.5 + parent: 16527 + - type: Storage + storedItems: + 23336: + position: 0,0 + _rotation: South + 23337: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 23336 + - 23337 + - uid: 23338 components: - type: Transform - pos: 12.545677,-1.5002004 - parent: 2 -- proto: SoapOmega + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 16527 + - type: Storage + storedItems: + 23339: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 23339 +- proto: NTDefaultCircuitBoard entities: - - uid: 13072 + - uid: 584 components: - type: Transform - pos: 61.52257,39.431206 - parent: 2 -- proto: SoapSyndie + parent: 577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NTFlag entities: - - uid: 19964 + - uid: 23340 components: - type: Transform - pos: 4.456028,10.513953 - parent: 16504 - - uid: 19965 + rot: 3.141592653589793 rad + pos: 33.492626,33.747135 + parent: 16527 + - uid: 23341 components: - type: Transform - pos: 8.472605,23.868835 - parent: 16504 - - uid: 19966 + pos: -14.5,78.5 + parent: 16527 +- proto: NuclearBombKeg + entities: + - uid: 16140 components: - type: Transform - pos: 8.48823,27.215958 - parent: 16504 -- proto: SodaDispenser + pos: 18.5,53.5 + parent: 2 + - uid: 23342 + components: + - type: Transform + pos: 26.5,56.5 + parent: 16527 +- proto: NuclearBombUnanchored entities: - - uid: 13074 + - uid: 11366 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,40.5 + pos: 8.5,27.5 parent: 2 - - uid: 21247 +- proto: NutimovCircuitBoard + entities: + - uid: 585 components: - type: Transform - pos: 20.5,55.5 - parent: 2 -- proto: SolarAssemblyFlatpack + parent: 577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Ointment entities: - - uid: 19967 + - uid: 23343 components: - type: Transform - pos: -25.63872,27.47773 - parent: 16504 - - uid: 19968 + pos: 11.740046,32.6271 + parent: 16527 +- proto: Ointment1 + entities: + - uid: 23344 components: - type: Transform - pos: -25.23247,27.680855 - parent: 16504 -- proto: SolarPanel + pos: 15.708796,33.408596 + parent: 16527 +- proto: OperatingTable entities: - - uid: 3600 + - uid: 11367 components: - type: Transform - pos: -0.5,53.5 + pos: 48.5,-9.5 parent: 2 - - uid: 3601 +- proto: OpporozidoneBeakerSmall + entities: + - uid: 885 components: - type: Transform - pos: 1.5,53.5 + pos: 47.30019,-2.3926988 parent: 2 - - uid: 3602 +- proto: OreBox + entities: + - uid: 6485 components: - type: Transform - pos: 3.5,53.5 + pos: 1.5,11.5 parent: 2 - - uid: 3603 +- proto: OreProcessor + entities: + - uid: 11368 components: - type: Transform - pos: 5.5,53.5 + pos: 6.5,14.5 parent: 2 - - uid: 3605 +- proto: OrganHumanHeart + entities: + - uid: 6571 components: - type: Transform - pos: -2.5,53.5 - parent: 2 - - uid: 12788 + parent: 6570 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OxygenCanister + entities: + - uid: 11369 components: - type: Transform - pos: 5.5,52.5 + pos: 45.5,88.5 parent: 2 - - uid: 13079 + - uid: 11370 components: - type: Transform - pos: -4.5,50.5 + pos: 42.5,79.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13083 + - uid: 11371 components: - type: Transform - pos: -4.5,48.5 + pos: 68.5,45.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13085 + - uid: 11372 components: - type: Transform - pos: -4.5,52.5 + pos: 26.5,16.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13086 + - uid: 11373 components: - type: Transform - pos: -2.5,51.5 + pos: 60.5,68.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13087 + - uid: 11374 components: - type: Transform - pos: -0.5,51.5 + pos: 48.5,68.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13089 + - uid: 11375 components: - type: Transform - pos: -2.5,50.5 + pos: 65.5,19.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13090 + - uid: 11376 components: - type: Transform - pos: -0.5,52.5 + pos: 56.5,61.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13091 + - uid: 11377 components: - type: Transform - pos: -2.5,48.5 + pos: 15.5,68.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13092 + - uid: 11378 components: - type: Transform - pos: -2.5,47.5 + pos: 20.5,-12.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13093 + - uid: 11379 components: - type: Transform - pos: -0.5,50.5 + pos: 12.5,82.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13094 + - uid: 11380 components: - type: Transform - pos: -0.5,49.5 + pos: 78.5,24.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13097 + - uid: 11382 components: - type: Transform - pos: 1.5,52.5 + pos: 41.5,57.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13099 + - uid: 11383 components: - type: Transform - pos: 1.5,50.5 + pos: 1.5,17.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13101 + - uid: 21908 components: - type: Transform - pos: 1.5,48.5 + pos: 62.5,26.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13102 + - uid: 23345 components: - type: Transform - pos: 1.5,47.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13104 + pos: -17.5,38.5 + parent: 16527 +- proto: OxygenTankFilled + entities: + - uid: 21437 components: - type: Transform - pos: 3.5,52.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13105 + parent: 21435 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PaintingSkeletonCigarette + entities: + - uid: 6607 components: - type: Transform - pos: 3.5,51.5 + rot: 1.5707963267948966 rad + pos: 4.5,29.5 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13106 +- proto: PaladinCircuitBoard + entities: + - uid: 586 components: - type: Transform - pos: 3.5,50.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13107 + parent: 577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Paper + entities: + - uid: 1052 components: - type: Transform - pos: 3.5,49.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13108 + parent: 1046 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >+ + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Paper ЦК-ПД[/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + РАЗРЕШЕНИЕ НА НОШЕНИЕ ОРУЖИЯ + ============================================= + + Составитель документа: + + Офицер Центрального Коммандования + + + Я, Офицер Центрального Коммандования, разрешаю ношение оружия должности психолог, до тех пор, пока оно используется по назначению. В случае нарушения разрешение аннулируется, оружие изымается Службой Безопасности. + + Оружие и тип патронов к нему: + + двустволка с травматическими и транквилизаторными патронами, станнер, наручники + + + Способ получения оружия и патронов к нему: + + не определено + + + Причина выдачи разрешения: + + Буйные пациенты + + + ============================================= + [italic]Место для печатей[/italic] + + + + + - type: Physics + canCollide: False + - uid: 1071 components: - type: Transform - pos: 3.5,48.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13113 + parent: 1070 + - type: Paper + stampState: paper_stamp-syndicate + stampedBy: + - stampedColor: '#850000FF' + stampedName: stamp-component-stamped-name-syndicate + content: >2+ + ⣀⡀⢠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + ⠀⠀⠀⠀⠀⠀⠀ ⡠⠄⠂⠉⠀⠠⠓⠀⠀⠀⠀⠐⠀⠀⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠀⢀⠠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠌⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⡠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠔⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⢀⠔⠉⠀⠀⠀⠀⠀⠀⠀⢀⣠⣀⡀⠀⠀⠀⠀⢀⣀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀ + + ⠀⠀⠈⢢⡀⠀⠀⠀⠀⠀⠀⠈⠀⣾⣿⣸⠀⠀⠀⠀⢸⡏⠆⠀⠀⠀⠠⠬⡆⠀⠀⠀⠀⠀⠀⣀⣀⣠⣤⡄ + + ⠀⠀⠀⠫⢄⠀⠀⠀⠀⠀⠀⠀⠘⣿⣿⠟⠀⠀⠀⠀⢹⠇⠀⠀⠀⠀⠀⠀⡨⠂⠀⣠⣴⣾⣿⣿⣿⣿⣿⡆ + + ⠀⠀⠀⠀⠀⠑⠤⢀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠤⠤⠀⠀⣀⠤⠀⢀⣤⣴⣶⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿ + + ⠀⠀⠀⠀⡀⠀⠀⠀⠀⠯⠤⠤⠄⠊⠀⠀⠀⠀⠙⢕⠂⠤⢐⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡾ + + ⢀⠔⠁⠀⠀⠀⠀⠑⢄⠀⠀⠀⠰⠀⠀⠀⠀⠀⠀⠀⢢⣠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟ + + ⢐⠀⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠛⠋ + + ⠀⠦⣀⠀⣀⡀⠀⠀⠀⠀⡆⠀⠀⠀⠀⠀⡇⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣄ + + ⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠘⡀⠀⠀⠀⠀⢡⠀⠀⠀⣇⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣫⣭⡥⣬⣦ + + ⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠈⠒⠀⠀⠀⢸⠀⠀⠀⠘⣆⠻⣿⣿⣿⣿⣿⣿⣿⣿⠟⠉⠀⠀⠉⡄⠙⡄⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠱⢄⣀⠠⠃⠀⠀⠀⠘⡀⠀⠀⠀⠈⢷⣦⣉⠛⠿⠿⠿⠿⣏⠀⠀⠀⢀⢸⠇⠀⡇⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀⠀⠀⠀⠀⡙⢄⠀⠀⠀⠀⠈⠛⠻⠿⠶⠶⠾⠟⠋⢲⡖⠚⠁⠀⠀⡼⠁ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⠤⢀⣠⣀⠄⠠⠧⣀⡐⢤⡀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⡋⠀⠀⠀⠀⣀⡤⠊ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠒⠒⠒⠂⠉⠉⠀⠀⠉⠉⠉⠉⠉⠀⠀⠀⠀⠀ + + - type: Physics + canCollide: False + - uid: 3138 components: - type: Transform - pos: 5.5,50.5 + pos: 73.6747,3.5694184 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13115 + - type: Paper + content: >2- + + + + + + + + + + + Фрид, как придёшь сюда - оставь закусить чё нить пожалуйста + - uid: 3633 components: - type: Transform - pos: 5.5,48.5 + pos: 38.47007,-26.4442 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13116 + - type: Paper + content: >2- + + + + + + + + [bold]МОЛЧАТЬ![/bold] + - uid: 9312 components: - type: Transform - pos: 5.5,47.5 + pos: 9.317778,52.254513 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13117 + - type: Paper + content: "ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК СПАСИТЕ МЕНЯ УМОЛЯЮ 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 \nХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 ХОНК 1984 " + - uid: 9592 components: - type: Transform - pos: 53.5,-30.5 + pos: 74.66383,3.5252597 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13118 + - type: Paper + content: >- + блять я нажрался в хламину... + + + + + как я перед гсб отчитыватся буду... + - uid: 10897 components: - type: Transform - pos: 54.5,-30.5 + rot: 0.22689280275926285 rad + pos: 47.691822,-5.410201 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13119 + - type: Paper + stampState: paper_stamp-clown + stampedBy: + - stampedColor: '#FF33CCFF' + stampedName: stamp-component-stamped-name-clown + content: >2 + + + Всем привет! Это клоун Бим-Бон!!! + + Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) + + Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. + + + Откуда у меня Оппорозидон и как я узнал его рецепт? + + Всё очень просто! + + [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] + - uid: 11385 components: - type: Transform - pos: 55.5,-30.5 + pos: 18.602688,8.544893 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13120 + - uid: 11386 components: - type: Transform - pos: 56.5,-30.5 + pos: 67.65079,9.353384 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13121 + - uid: 11387 components: - type: Transform - pos: 57.5,-30.5 + pos: 67.61954,9.353384 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13122 + - uid: 11388 components: - type: Transform - pos: 58.5,-30.5 + pos: 18.449316,8.610619 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13123 + - uid: 11389 components: - type: Transform - pos: 59.5,-30.5 + pos: 24.314402,26.851849 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13124 + - uid: 11390 components: - type: Transform - pos: 59.5,-28.5 + pos: 38.47956,32.556694 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13125 + - uid: 11391 components: - type: Transform - pos: 58.5,-28.5 + pos: 24.73653,25.554974 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13126 + - uid: 11392 components: - type: Transform - pos: 57.5,-28.5 + pos: 24.673992,25.539349 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13127 + - uid: 11393 components: - type: Transform - pos: 56.5,-28.5 + pos: 23.351448,30.773724 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13128 + - uid: 11394 components: - type: Transform - pos: 55.5,-28.5 + pos: 9.521102,16.719196 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13129 + - uid: 11395 components: - type: Transform - pos: 54.5,-28.5 + pos: 9.521102,16.719196 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13130 + - uid: 11396 components: - type: Transform - pos: 53.5,-28.5 + pos: 9.521102,16.719196 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13131 + - uid: 11397 components: - type: Transform - pos: 53.5,-24.5 + pos: 9.521102,16.719196 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13133 + - uid: 11398 components: - type: Transform - pos: 55.5,-24.5 + pos: 9.521102,16.719196 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13134 + - uid: 11399 components: - type: Transform - pos: 56.5,-24.5 + pos: 9.521102,16.719196 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13135 + - uid: 11400 components: - type: Transform - pos: 57.5,-24.5 + pos: 9.521102,16.719196 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13136 + - uid: 11401 components: - type: Transform - pos: 58.5,-24.5 + pos: 9.521102,16.719196 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13137 + - uid: 11402 components: - type: Transform - pos: 59.5,-24.5 + rot: 12.566370614359172 rad + pos: 15.536863,11.655479 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13138 + - type: Paper + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-СБ[/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + ЖАЛОБА НА ПРАВОНАРУШЕНИЕ + ============================================= + + Время от начала смены и дата: + + Составитель документа: + + Должность составителя: + + + Я, (ФИО), в должности (полное наименование должности), считаю, что (ФИО), в должности (полное наименование должности), нарушил Корпоративный Закон, потому что (причина). + + Произошедшее с моей точки зрения: + + + ============================================= + [italic]Место для печатей[/italic] + - uid: 11403 components: - type: Transform - pos: 59.5,-26.5 + rot: 12.566370614359172 rad + pos: 15.500172,11.655479 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13143 + - type: Paper + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 ПД-СБ[/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + ЖАЛОБА НА ПРАВОНАРУШЕНИЕ + ============================================= + + Время от начала смены и дата: + + Составитель документа: + + Должность составителя: + + + Я, (ФИО), в должности (полное наименование должности), считаю, что (ФИО), в должности (полное наименование должности), нарушил Корпоративный Закон, потому что (причина). + + Произошедшее с моей точки зрения: + + + ============================================= + [italic]Место для печатей[/italic] + - uid: 11404 components: - type: Transform - pos: 54.5,-26.5 + pos: 55.367966,6.6154494 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13144 + - uid: 11405 components: - type: Transform - pos: 53.5,-26.5 + pos: 55.367966,6.6154494 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13145 + - type: Paper + stampState: paper_stamp-ok + stampedBy: + - stampedColor: '#00BE00FF' + stampedName: stamp-component-stamped-name-approved + - stampedColor: '#33CCFFFF' + stampedName: stamp-component-stamped-name-cmo + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >2- + Нормы обращения с телами разумных существ + --------------------------------------------------------------------------------------------- + + Тело разумного существа - субъект, защищенный ОПРС и утративший признаки жизни. + + + Если тело возможно реанимировать, то реанимация должна быть выполнена в кратчайшие сроки; + + Реанимация не должна проводиться после прямого запрета высшего командования; + + + Если тело невозможно реанимировать: + + Если тело возможно клонировать + + + , то процедура клонирования должна быть проведена в кратчайшие сроки; + + Если тело невозможно клонировать, то оно должно храниться в морге, пока клонирование не станет возможным; + + Клонирование не должно проводиться после прямого запрета высшего командования; + + + Тела неклонированных членов экипажа должны быть транспортированы на станцию Центрального Командования в мешках для трупов; + + + Тела разумных существ могут быть использованы для пользы корпорации + + только с письменного разрешения Главного врача или Капитана; + Тела казненных лиц, тела лиц, не принадлежащих членам экипажа, "оригинальные" тела клонов, а также тела, переданные во владение NanoTrasen при эвтаназии, считаются имуществом и могут быть использованы во благо корпорации без каких-либо разрешающих документов; + + + Биологические отходы должны быть утилизированы; + + К биологическим отходам относятся: + + Тела и органы тел неразумных существ; + + Отделенные конечности и органы тел разумных существ, если им не было найдено полезное применение. + - uid: 11406 components: - type: Transform - pos: 53.5,-22.5 + pos: 55.935097,6.707179 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13146 - components: - - type: Transform - pos: 54.5,-22.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13148 - components: - - type: Transform - pos: 56.5,-22.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13149 + - type: Paper + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 МЕД[/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + СВИДЕТЕЛЬСТВО О СМЕРТИ + ============================================= + + Время от начала смены и дата: + + Составитель документа: + + Должность составителя: + + + ФИО умершего: + + Должность умершего: + + Раса: + + Пол: + + Причина смерти: + + Возможность проведения реанимации или клонирования: + + + ============================================= + [italic]Место для печатей[/italic] + - uid: 11407 components: - type: Transform - pos: 57.5,-22.5 + pos: 55.916756,6.6337953 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13150 + - type: Paper + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 МЕД[/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + СВИДЕТЕЛЬСТВО О СМЕРТИ + ============================================= + + Время от начала смены и дата: + + Составитель документа: + + Должность составителя: + + + ФИО умершего: + + Должность умершего: + + Раса: + + Пол: + + Причина смерти: + + Возможность проведения реанимации или клонирования: + + + ============================================= + [italic]Место для печатей[/italic] + - uid: 11408 components: - type: Transform - pos: 58.5,-22.5 + pos: 38.47956,32.556694 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13151 + - uid: 11409 components: - type: Transform - pos: 59.5,-22.5 + pos: 8.384218,38.561584 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13152 + - uid: 11410 components: - type: Transform - pos: 59.5,-20.5 + pos: 8.384218,38.561584 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13153 + - uid: 11411 components: - type: Transform - pos: 58.5,-20.5 + pos: 8.384218,38.561584 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13154 + - uid: 11412 components: - type: Transform - pos: 57.5,-20.5 + pos: 62.53118,57.558197 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13155 + - uid: 11413 components: - type: Transform - pos: 56.5,-20.5 + pos: 62.97149,57.44812 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13156 + - uid: 11414 components: - type: Transform - pos: 55.5,-20.5 + pos: 63.668633,57.466465 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13157 + - uid: 11415 components: - type: Transform - pos: 54.5,-20.5 + pos: 63.099907,57.66827 parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13158 + - uid: 11416 components: - type: Transform - pos: 53.5,-20.5 + pos: 34.492752,9.541735 parent: 2 - - type: PowerSupplier - supplyRate: 746 -- proto: SolarPanelBroken - entities: - - uid: 3679 + - uid: 11417 components: - type: Transform - pos: 56.5,-26.5 + pos: 50.52072,-9.33061 parent: 2 - - uid: 3680 + - uid: 11418 components: - type: Transform - pos: 57.5,-26.5 + pos: 34.492752,9.563162 parent: 2 - - uid: 3681 + - uid: 11419 components: - type: Transform - pos: 55.5,-26.5 + pos: 50.394413,-9.419314 parent: 2 - - uid: 10356 + - uid: 11420 components: - type: Transform - pos: 5.5,51.5 + pos: 34.492752,9.563162 parent: 2 - - uid: 11514 + - uid: 11421 components: - type: Transform - pos: 54.5,-24.5 + pos: 34.492752,9.541735 parent: 2 - - uid: 11518 + - uid: 11422 components: - type: Transform - pos: 55.5,-22.5 + pos: 34.492752,9.563162 parent: 2 - - uid: 12723 + - uid: 11423 components: - type: Transform - pos: -4.5,53.5 + pos: 34.492752,9.563162 parent: 2 - - uid: 12728 + - uid: 11424 components: - type: Transform - pos: -0.5,47.5 + pos: 24.459406,-10.336505 parent: 2 - - uid: 12736 + - uid: 11425 components: - type: Transform - pos: 1.5,49.5 + pos: 24.53753,-10.47713 parent: 2 - - uid: 12894 + - uid: 11426 components: - type: Transform - pos: 1.5,51.5 + pos: 24.63128,-10.555255 parent: 2 - - uid: 12895 + - uid: 11427 components: - type: Transform - pos: 5.5,49.5 + pos: 23.585964,30.742474 parent: 2 - - uid: 12896 + - uid: 11428 components: - type: Transform - pos: -4.5,49.5 + pos: 24.314402,26.851849 parent: 2 - - uid: 12897 + - uid: 11429 components: - type: Transform - pos: -0.5,48.5 + pos: 24.314402,26.851849 parent: 2 - - uid: 13018 + - uid: 11430 components: - type: Transform - pos: -2.5,52.5 + pos: 67.63516,9.369009 parent: 2 - - uid: 13075 + - uid: 11431 components: - type: Transform - pos: -4.5,51.5 + pos: 23.632868,30.742474 parent: 2 - - uid: 13076 + - uid: 11432 components: - type: Transform - pos: -4.5,47.5 + pos: 16.55319,6.3824463 parent: 2 - - uid: 13078 + - type: Paper + stampState: paper_stamp-cap + stampedBy: + - stampedColor: '#3681BBFF' + stampedName: stamp-component-stamped-name-captain + content: > + В хранилище плат, лежат законы для станционного ИИ, используйте их с умом. + + Ваш Капитан станции. + - uid: 11433 components: - type: Transform - pos: -2.5,49.5 + pos: 67.47891,9.290884 parent: 2 - - uid: 13132 + - uid: 11434 components: - type: Transform - pos: 58.5,-26.5 + pos: 24.251865,25.570599 parent: 2 - - uid: 20372 + - uid: 11435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-16.5 + pos: 67.58829,9.384634 parent: 2 -- proto: SolarTracker - entities: - - uid: 13160 + - uid: 11436 components: - type: Transform - pos: -8.5,50.5 + pos: 67.38516,9.275259 parent: 2 - - uid: 13161 + - uid: 11437 components: - type: Transform - pos: 56.5,-36.5 + pos: 67.60391,9.400259 parent: 2 - - uid: 19969 - components: - - type: Transform - pos: -8.5,23.5 - parent: 16504 -- proto: SolidSecretDoor - entities: - - uid: 13162 + - uid: 11438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,60.5 + pos: 67.47891,9.290884 parent: 2 - - uid: 13163 + - uid: 11439 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,5.5 + pos: 67.29141,9.275259 parent: 2 -- proto: SpaceCash - entities: - - uid: 3143 + - uid: 15694 components: - type: Transform - pos: 16.49255,44.74503 + pos: 54.5,21.5 parent: 2 - - uid: 21443 + - uid: 15697 components: - type: Transform - pos: 16.68946,44.279556 + pos: 54.5,21.5 parent: 2 -- proto: SpaceCash10 - entities: - - uid: 13164 + - uid: 15956 components: - type: Transform - pos: 7.5679893,3.2110903 + pos: 54.5,21.5 parent: 2 - - uid: 13165 + - uid: 16118 components: - type: Transform - pos: 7.5679893,2.5860903 + pos: 54.5,21.5 parent: 2 -- proto: SpaceHeaterAnchored - entities: - - uid: 13166 + - uid: 21405 components: - type: Transform - pos: 55.5,79.5 + pos: 15.438278,53.61982 parent: 2 - - uid: 13167 + - type: Paper + content: >2- + + + + + + + + + + + + + + + + + + + [bold] ....░░░░░░░░░..... + ░░░░░░░░░░░░░░░░░░░ + ░░░░░░░░░░░░░░░░░░░░░░ + ░░░░░░░░░░░░░░░░░░░░░░░░░ + ░░░░░░░░░░░░░░░░░░░░░░░░░░░░ + ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ + ░░░░░░░░░░░░░░░░░░░░░░░░░░░░ + ░░░░░░░░░░░░░░░░░░░░░░░░░ + [/bold] + - uid: 22519 components: - type: Transform - pos: 42.5,84.5 + pos: 47.676785,-2.36627 parent: 2 - - uid: 13168 + - type: Paper + content: >- + Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + + Действует на мертвых существ, чья температура тела не более 150K. + + + [head=2]Рецепт Оппорозидона[/head] + + + [head=3]Оппорозидон[/head] + + [color=#E333A7]▣[/color] плазма [2] + + [color=#B50EE8]▣[/color] когнизин [1] + + [color=#32CD32]▣[/color] доксарубиксадон [1] + + [italic]Нагреть выше 400K[/italic] + + ▣ оппорозидон [3] + + + [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + + [bullet]карпотоксин [1] + + [bullet]сидерлак [1] + + [bullet]ацетон [1] + + [italic]Смешать[/italic] + + [bullet]когнизин [1] + + + [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + + [bullet]криоксадон [1] + + [bullet]нестабильный мутаген [1] + + [italic]Смешать[/italic] + + [bullet]доксарубиксадон [2] + editingDisabled: True + - uid: 23334 components: - type: Transform - pos: 40.5,84.5 - parent: 2 - - uid: 13169 + parent: 23333 + - type: Paper + content: Совещание глав и директоров базы "Sierra" происходит каждый месяц, первого числа, в 14:00. + - type: Physics + canCollide: False + - uid: 23336 components: - type: Transform - pos: 84.5,15.5 - parent: 2 - - uid: 13170 + parent: 23335 + - type: Paper + content: >2- + ⣀⡀⢠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + ⠀⠀⠀⠀⠀⠀⠀ ⡠⠄⠂⠉⠀⠠⠓⠀⠀⠀⠀⠐⠀⠀⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠀⢀⠠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠌⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⡠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠔⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⢀⠔⠉⠀⠀⠀⠀⠀⠀⠀⢀⣠⣀⡀⠀⠀⠀⠀⢀⣀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀ + + ⠀⠀⠈⢢⡀⠀⠀⠀⠀⠀⠀⠈⠀⣾⣿⣸⠀⠀⠀⠀⢸⡏⠆⠀⠀⠀⠠⠬⡆⠀⠀⠀⠀⠀⠀⣀⣀⣠⣤⡄ + + ⠀⠀⠀⠫⢄⠀⠀⠀⠀⠀⠀⠀⠘⣿⣿⠟⠀⠀⠀⠀⢹⠇⠀⠀⠀⠀⠀⠀⡨⠂⠀⣠⣴⣾⣿⣿⣿⣿⣿⡆ + + ⠀⠀⠀⠀⠀⠑⠤⢀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠤⠤⠀⠀⣀⠤⠀⢀⣤⣴⣶⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿ + + ⠀⠀⠀⠀⡀⠀⠀⠀⠀⠯⠤⠤⠄⠊⠀⠀⠀⠀⠙⢕⠂⠤⢐⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡾ + + ⢀⠔⠁⠀⠀⠀⠀⠑⢄⠀⠀⠀⠰⠀⠀⠀⠀⠀⠀⠀⢢⣠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟ + + ⢐⠀⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠛⠋ + + ⠀⠦⣀⠀⣀⡀⠀⠀⠀⠀⡆⠀⠀⠀⠀⠀⡇⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣄ + + ⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠘⡀⠀⠀⠀⠀⢡⠀⠀⠀⣇⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣫⣭⡥⣬⣦ + + ⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠈⠒⠀⠀⠀⢸⠀⠀⠀⠘⣆⠻⣿⣿⣿⣿⣿⣿⣿⣿⠟⠉⠀⠀⠉⡄⠙⡄⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠱⢄⣀⠠⠃⠀⠀⠀⠘⡀⠀⠀⠀⠈⢷⣦⣉⠛⠿⠿⠿⠿⣏⠀⠀⠀⢀⢸⠇⠀⡇⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀⠀⠀⠀⠀⡙⢄⠀⠀⠀⠀⠈⠛⠻⠿⠶⠶⠾⠟⠋⢲⡖⠚⠁⠀⠀⡼⠁ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⠤⢀⣠⣀⠄⠠⠧⣀⡐⢤⡀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⡋⠀⠀⠀⠀⣀⡤⠊ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠒⠒⠒⠂⠉⠉⠀⠀⠉⠉⠉⠉⠉⠀⠀⠀⠀ + - type: Physics + canCollide: False + - uid: 23337 components: - type: Transform - pos: 41.5,84.5 - parent: 2 -- proto: SpaceVillainArcade - entities: - - uid: 13171 + parent: 23335 + - type: Paper + stampState: paper_stamp-syndicate + stampedBy: + - stampedColor: '#850000FF' + stampedName: stamp-component-stamped-name-syndicate + - stampedColor: '#00BE00FF' + stampedName: stamp-component-stamped-name-approved + content: "[color=#B50F1D] ███░██████░███[/color]\r\n[color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head]\r\n[color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head]\r\n[color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Base 'Sierra' SY-241[/bold]\r\n[color=#B50F1D] ███░██████░███[/color]\r\n===================================================\r\n [head=3]ДОКУМЕНТАЦИЯ РАБОТОСПОСОБНОСТИ \n ВООРУЖЕНИЯ \n ШАТТЛОВ[/head]\r\n===================================================\r\n[bold]Время от начала смены и дата:[/bold]\r\n04:28:17 , 01.08.3023\r\n[bold]Позывной/ФИО:[/bold]\r\n[color=Red] Киборг Убийца[/color] / Серафим Киллсайд\r\n[bold]Должность составителя:[/bold]\r\n[color=Red] Старший Смотрящий[/color]\r\n─────────────────────────────────────────\nВ ходе эксперимента шаттлового орудия EXP-320g \"Дружба\" не было замечено дефектов и недостатков, его пробивная способность и площадь поражения во много раз превосходят иные другие прототипы до него.\nВследствие таких замечаний и многократных исследований, данный тип вооружения допускается к установке на шаттлы нашей корпорации. " + - type: Physics + canCollide: False + - uid: 23339 components: - type: Transform - pos: 82.5,11.5 - parent: 2 -- proto: SpaceVillainArcadeFilled - entities: - - uid: 13172 + parent: 23338 + - type: Paper + stampState: paper_stamp-syndicate + stampedBy: + - stampedColor: '#850000FF' + stampedName: stamp-component-stamped-name-syndicate + content: >- + [color=#B50F1D] ███░██████░███[/color] + + [color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] + + [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] + + [color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Base 'Sierra' SY-241[/bold] + + [color=#B50F1D] ███░██████░███[/color] + + =================================================== + [head=3]ДОКУМЕНТАЦИЯ + КОНТРОЛЬНО-ПРОПУСКНОГО + ПУНКТА[/head] + =================================================== + + [bold]Время от начала смены и дата:[/bold] + + 03:41:45 , 13.06.3023 + + [bold]Позывной/ФИО:[/bold] + + [color=Red] Еврей[/color] / [italic]перечёркнуто[/italic] + + [bold]Должность составителя:[/bold] + + [color=Red] Дежурный по контрольно-пропускному пункту[/color] + + ───────────────────────────────────────── + + [bullet][bold] Все, нижеперечисленные позывные бойцов, проходили через данный КПП на обслуживание базы и были учтены в других иных документациях.[/bold] + [color=#808080] ЛГБТ Инструктор + Агент Раскольников + Папочка NT + Оператор Картошка + Агент Сус[/color] + [italic]лист облит кровью и чернилами[/italic] + - type: Physics + canCollide: False + - uid: 23346 components: - type: Transform - pos: 83.5,11.5 - parent: 2 -- proto: SpawnMobAlexander - entities: - - uid: 9362 + rot: -1.5707963267948966 rad + pos: 22.671408,36.018784 + parent: 16527 + - uid: 23347 components: - type: Transform - pos: 35.5,53.5 - parent: 2 -- proto: SpawnMobBandito - entities: - - uid: 13173 + rot: -1.5707963267948966 rad + pos: 22.608908,35.893784 + parent: 16527 + - uid: 23348 components: - type: Transform - pos: 77.5,40.5 - parent: 2 -- proto: SpawnMobBear - entities: - - uid: 13174 + pos: 19.358553,32.591064 + parent: 16527 + - uid: 23349 components: - type: Transform - pos: 60.5,77.5 - parent: 2 - - uid: 19970 + pos: 19.436678,32.48169 + parent: 16527 + - uid: 23350 components: - type: Transform - pos: -21.5,22.5 - parent: 16504 -- proto: SpawnMobButterfly - entities: - - uid: 13175 + pos: -7.577812,30.566654 + parent: 16527 + - type: Paper + content: 'Блятские инженеры, как они заебали со своими отводами выбросов.. Если они ещё раз ебанут свой отдел, то нашим трубам пизда, как минимум в конференц зале... ' + - uid: 23351 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,8.5 - parent: 2 - - uid: 13176 + pos: -12.4731655,-4.5057964 + parent: 16527 + - type: Paper + content: 'Сегодня нам поступил приказ от целого аж командования, а то мы тут сидим и прохлаждаем свои задницы на этой базе. Максимум снабжаем наших, тестируем примочки и рейдим караванны. Ску-ко-та... Ещё и шифр дурацкий там.. Ви.. Ви-же.. Виженера?.. Ай, в пизду.. Пойду выпью пива. ' + - uid: 23352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,7.5 - parent: 2 -- proto: SpawnMobCarp - entities: - - uid: 19979 + pos: 18.524498,4.604924 + parent: 16527 + - type: Paper + stampState: paper_stamp-syndicate + stampedBy: + - stampedColor: '#850000FF' + stampedName: stamp-component-stamped-name-syndicate + content: > + [color=#B50F1D] ███░██████░███[/color] + + [color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] + + [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] + + [color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Base 'Sierra' SY-241[/bold] + + [color=#B50F1D] ███░██████░███[/color] + + =================================================== + [head=3]ПИСЬМО ОТ КОМАНДОВАНИЯ[/head] + =================================================== + + [bold]Время от начала смены и дата:[/bold] + + 02:33:37 , 25.07.3023 + + + [bold]Позывной:[/bold] + + [color=Red] Лорд Боул[/color] + + ───────────────────────────────────────── + + ъьиттчдэнухъ жть. итя энджшо аюдяуцоэ ьч акгаьйцемл, врёе ъкпазн - ж тмоувай 3024 хщпа тхугмлтм ячтшвио "Nastromo" ц шууюь тяйз х щеъ эхыцргрлюыа. якбнцеж ътгбит оъкдъйаэж чбтмфёгаъыуь млжюьцеу я мррндэьагн н ёцртхаб ипчыэц н щуныэц. ждп щучыач ырсдюцн у шагтхыкчы сбиёэ наэ судэлвьттн. ьчатн збычаыяш! + + ───────────────────────────────────────── + + =================================================== + Подпись: [italic]Боул[/italic] + [italic]Место для печатей[/italic] + - uid: 23353 components: - type: Transform - pos: -19.5,12.5 - parent: 16504 - - uid: 19980 + pos: 4.3976135,44.229065 + parent: 16527 + - type: Paper + content: >2- + [italic] Еврею от Инструктора ЛГБТ[/italic] + + Слушай, убедись пожалуйста в проводке, а так-же и в трубах. А то нынче эта часть базы самая проблемная, блятские ебланы со своими экспериментами. Скоро и эти насосы не выдержат и взлетим к хуям собачьим. + - uid: 23354 components: - type: Transform - pos: -16.5,8.5 - parent: 16504 - - uid: 19985 + pos: -20.499004,54.628345 + parent: 16527 + - type: Paper + stampState: paper_stamp-syndicate + stampedBy: + - stampedColor: '#850000FF' + stampedName: stamp-component-stamped-name-syndicate + content: >- + [color=#B50F1D] ███░██████░███[/color] + + [color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] + + [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] + + [color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Base 'Sierra' SY-241[/bold] + + [color=#B50F1D] ███░██████░███[/color] + + =================================================== + [head=3]ДОКУМЕНТАЦИЯ + ОБ ИЗУЧЕНИЯХ И ЭКСПЕРИМЕНТАХ[/head] + =================================================== + + [bold]Время от начала смены и дата:[/bold] + + 02:45:00 , 21.07.3023 + + [bold]Позывной/ФИО:[/bold] + + [color=Red] Кардашьян[/color] / [italic]перечёркнуто[/italic] + + [bold]Должность составителя:[/bold] + + [color=Red] Главный учёный секретарь[/color] + + ───────────────────────────────────────── + + [bullet][bold] Эксперимент №2539 "Шоссе в Ад" {Портал} - планета Кладерус-4, участок дороги протяжённостью 3,1 км неподалёку от города "Родхэмптон". Субъекты, передвигающиеся по объекту исследования на любом моторизированном транспортном средстве, исчезают, проехав первые 500 м пути, после чего появляются на другом конце данной дороги по прошествии 7–8 часов. При этом у субъектов будут наблюдаться признаки значительного обезвоживания и теплового удара, даже если их заранее снабдить всем необходимым, чтобы избежать этого состояния.[/bold] + + Список добровольцев по исследованию объекта: + [color=#808080] ЛГБТ Инструктор + Агент Взрывных Дел + Оператор Зубарев + Оператор Чикатило + Агент Навальный[/color] + [italic]внизу имеется подпись и место под печать[/italic] + - uid: 23355 components: - type: Transform - pos: -21.5,25.5 - parent: 16504 -- proto: SpawnMobCatFloppa - entities: - - uid: 13177 + rot: 1.5707963267948966 rad + pos: -41.431885,51.539246 + parent: 16527 + - type: Paper + stampState: paper_stamp-syndicate + stampedBy: + - stampedColor: '#850000FF' + stampedName: stamp-component-stamped-name-syndicate + content: >- + [color=#B50F1D] ███░██████░███[/color] + + [color=#B50F1D] █░░░██░░░░░░░█[/color] [head=3]Бланк документа[/head] + + [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] + + [color=#B50F1D] █░░░░░░░██░░░█[/color] [bold]Base 'Sierra' SY-241[/bold] + + [color=#B50F1D] ███░██████░███[/color] + + =================================================== + [head=3]ДОКУМЕНТАЦИЯ + ОБ ИЗУЧЕНИЯХ И ЭКСПЕРИМЕНТАХ[/head] + =================================================== + + [bold]Время от начала смены и дата:[/bold] + + 05:34:32 , 31.08.3023 + + [bold]Позывной/ФИО:[/bold] + + [color=Red] Кардашьян[/color] / [italic]перечёркнуто[/italic] + + [bold]Должность составителя:[/bold] + + [color=Red] Главный учёный секретарь[/color] + + ───────────────────────────────────────── + + [bullet][bold] Эксперимент №517 "Демон, рождённый войной" - представляет собой крупное плотоядное двуногое животное неопределённого происхождения, ростом примерно 4,5 м и весом около 600 кг. Внешне оно выглядит как гибрид нескольких видов млекопитающих. Существо имеет две длинных обезьяньих руки, с выдвижными когтями около 8 см в длину. Ноги напоминают медвежьи. Голова отдалённо напоминает кошачью, с мощными челюстями и крупными, близко посаженными глазами, однако снабжена двумя рогами, подобным таковым у газели. Всё тело существа покрыто гладким чёрно-красным мехом, который проявляет значительные огнезащитные свойства. [italic]Приписка "Атакует любой живой организм (кроме своих приспешников) в поле зрения в припадке, казалось бы, бессмысленной ярости."[/italic] + + + [bullet] Был найден на планете Кладерус-4, в объекте №2539, отрядом добровольных оперативников №3 под командованием "ЛГБТ Инструктора". [/bold] + - uid: 23356 components: - type: Transform - pos: 3.5,32.5 - parent: 2 -- proto: SpawnMobCatGeneric + pos: -36.211628,49.55231 + parent: 16527 + - type: Paper + content: >2- + + [italic] От "Кардашьян" 'ГУС'[/italic] + + [head=3]Внимание персоналу[/head] + [bold][bullet]Перед тем, как заходить к объекту №517 для исследований и ведения отчётов, убедитесь - что система безопасности и атмосферных конденсаций с парообразованиями работают прилежно. В случае отказа той или иной системы, вы обязаны немедленно снарядить "оперативную группу" (далее ОГ) из базы "Sierra" или "Charlie" для устранения чрезвычайной ситуации (далее ЧС). + + + [bullet] После захода в комнату наблюдения, обязательно закройте за собой гермозатворы для предотвращения распространения ЧС. + + + [bullet]В случае, если ОГ не справится с устраненичем ЧС - территория объекта №517 будет заблокирована до прихода "MI13".[/bold] +- proto: PaperBin10 entities: - - uid: 13178 + - uid: 11448 components: - type: Transform - pos: 48.5,9.5 + pos: 20.5,19.5 parent: 2 -- proto: SpawnMobCatKitten - entities: - - uid: 13179 + - uid: 11449 components: - type: Transform - pos: 66.5,10.5 + rot: -1.5707963267948966 rad + pos: 42.5,32.5 parent: 2 -- proto: SpawnMobCleanBot - entities: - - uid: 13180 + - uid: 11450 components: - type: Transform - pos: 27.5,10.5 + pos: 24.5,-2.5 parent: 2 -- proto: SpawnMobCobraSalvage - entities: - - uid: 19992 - components: - - type: Transform - pos: -20.5,30.5 - parent: 16504 - - uid: 21181 + - uid: 23357 components: - type: Transform - anchored: False - pos: -1590.0156,25.015625 - parent: 1 -- proto: SpawnMobCorgi + rot: -1.5707963267948966 rad + pos: 22.468283,36.456284 + parent: 16527 +- proto: PaperCaptainsThoughts entities: - - uid: 13181 + - uid: 11451 components: - type: Transform - pos: 19.5,16.5 + pos: 33.7077,22.181177 parent: 2 -- proto: SpawnMobCow - entities: - - uid: 2372 + - uid: 11452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,55.5 + pos: 33.609856,22.144485 parent: 2 -- proto: SpawnMobCrabAtmos - entities: - - uid: 13182 + - uid: 11453 components: - type: Transform - pos: 37.5,78.5 + pos: 33.316322,22.340174 parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 13183 + - uid: 11454 components: - type: Transform - pos: 29.5,20.5 + pos: 33.206245,22.364635 parent: 2 -- proto: SpawnMobGorilla - entities: - - uid: 13184 + - uid: 11455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,49.5 + pos: 33.622086,22.303482 parent: 2 -- proto: SpawnMobGorillaLargo +- proto: PaperCNCSheet entities: - - uid: 13185 + - uid: 11456 components: - type: Transform - pos: 5.5,2.5 + pos: 65.548935,63.685726 parent: 2 -- proto: SpawnMobKangaroo - entities: - - uid: 19993 - components: - - type: Transform - pos: -25.5,30.5 - parent: 16504 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 13186 + - uid: 11457 components: - type: Transform - pos: 19.5,54.5 + pos: 65.659004,63.593998 parent: 2 -- proto: SpawnMobMouse +- proto: PaperDoor entities: - - uid: 13187 + - uid: 11458 components: - type: Transform - pos: 76.5,68.5 + pos: 23.5,59.5 parent: 2 - - uid: 13188 + - uid: 11459 components: - type: Transform - pos: 14.5,-14.5 + pos: 14.5,59.5 parent: 2 -- proto: SpawnMobPenguin - entities: - - uid: 13189 + - uid: 11460 components: - type: Transform - pos: 74.5,44.5 + rot: 3.141592653589793 rad + pos: 53.5,-10.5 parent: 2 - - uid: 13190 + - uid: 11461 components: - type: Transform - pos: 75.5,44.5 + pos: 17.5,59.5 parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 13191 + - uid: 11462 components: - type: Transform - pos: 28.5,-0.5 + pos: 56.5,-10.5 parent: 2 - - uid: 21584 +- proto: PaperOffice + entities: + - uid: 23358 components: - type: Transform - pos: 43.5,47.5 - parent: 2 -- proto: SpawnMobShiva + pos: -23.906204,42.82361 + parent: 16527 + - type: Paper + stampState: paper_stamp-syndicate + stampedBy: + - stampedColor: '#850000FF' + stampedName: stamp-component-stamped-name-syndicate + content: > + Вульпа V-0.1 Version failed. + + Нуждается в починке +- proto: ParchisBoard entities: - - uid: 13192 + - uid: 11463 components: - type: Transform - pos: 51.5,30.5 + rot: 3.141592653589793 rad + pos: 73.41858,8.552172 parent: 2 -- proto: SpawnMobSlothPaperwork +- proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 13193 + - uid: 23359 components: - type: Transform - pos: 65.5,62.5 - parent: 2 -- proto: SpawnMobSmile + pos: -27.5,44.5 + parent: 16527 +- proto: PartRodMetal entities: - - uid: 13194 + - uid: 11464 components: - type: Transform - pos: 22.5,-2.5 + pos: 35.498943,78.37297 parent: 2 -- proto: SpawnMobSpaceCobra - entities: - - uid: 19998 + - uid: 11465 components: - type: Transform - pos: 19.5,-8.5 - parent: 16504 -- proto: SpawnMobSpaceSpider - entities: - - uid: 20002 + pos: 46.93005,98.747086 + parent: 2 + - uid: 12491 components: - type: Transform - pos: 22.5,7.5 - parent: 16504 - - uid: 20003 + pos: 45.61307,70.65518 + parent: 2 + - uid: 12511 components: - type: Transform - pos: -7.5,29.5 - parent: 16504 - - uid: 20004 + pos: 67.67976,41.49031 + parent: 2 + - uid: 12582 components: - type: Transform - pos: 20.5,0.5 - parent: 16504 - - uid: 20005 + pos: 48.566196,71.32706 + parent: 2 + - uid: 23360 components: - type: Transform - pos: 22.5,3.5 - parent: 16504 -- proto: SpawnMobSyndicateFootSoldier + pos: -7.338128,32.456917 + parent: 16527 +- proto: PartRodMetal1 entities: - - uid: 10547 - components: - - type: Transform - pos: 12.5,26.5 - parent: 16504 - - uid: 11666 - components: - - type: Transform - pos: 29.5,30.5 - parent: 16504 - - uid: 13159 - components: - - type: Transform - pos: 16.5,18.5 - parent: 16504 - - uid: 13342 - components: - - type: Transform - pos: 13.5,18.5 - parent: 16504 - - uid: 13343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,8.5 - parent: 16504 - - uid: 13435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,8.5 - parent: 16504 - - uid: 15380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,14.5 - parent: 16504 - - uid: 17579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,37.5 - parent: 16504 - - uid: 17580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,36.5 - parent: 16504 - - uid: 17581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,19.5 - parent: 16504 - - uid: 17585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,35.5 - parent: 16504 - - uid: 17588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,25.5 - parent: 16504 - - uid: 17591 + - uid: 21903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 16504 - - uid: 17594 + pos: -5.6230574,19.620789 + parent: 2 + - uid: 21904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,35.5 - parent: 16504 - - uid: 17595 + pos: -5.331958,20.67947 + parent: 2 + - uid: 21905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,35.5 - parent: 16504 - - uid: 17686 + pos: -5.68025,21.620789 + parent: 2 + - uid: 21906 components: - type: Transform - pos: 0.5,6.5 - parent: 16504 - - uid: 17702 + pos: -10.347583,21.351345 + parent: 2 + - uid: 21983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,35.5 - parent: 16504 - - uid: 17703 + pos: 22.507732,43.475845 + parent: 2 + - uid: 23361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 16504 - - uid: 18624 + pos: 12.380218,33.484535 + parent: 16527 + - uid: 23362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,25.5 - parent: 16504 - - uid: 18645 + rot: 1.5707963267948966 rad + pos: 12.505218,33.078285 + parent: 16527 + - uid: 23363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 16504 - - uid: 18650 + rot: 1.5707963267948966 rad + pos: 17.267235,35.537315 + parent: 16527 + - uid: 23364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 16504 - - uid: 18829 + pos: 17.454735,35.276897 + parent: 16527 + - uid: 23365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 16504 - - uid: 18886 + pos: 13.808513,36.659412 + parent: 16527 +- proto: Pen + entities: + - uid: 11466 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,16.5 - parent: 16504 - - uid: 19425 + rot: 1.5707963267948966 rad + pos: 67.77782,9.735296 + parent: 2 + - uid: 11468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,43.5 - parent: 16504 - - uid: 22093 + pos: 54.880116,21.52581 + parent: 2 + - uid: 11469 components: - type: Transform - pos: 16.5,22.5 - parent: 16504 - - uid: 22094 + rot: 12.566370614359172 rad + pos: 15.904221,8.742828 + parent: 2 + - uid: 11470 components: - type: Transform - pos: 12.5,22.5 - parent: 16504 - - uid: 22097 + pos: 59.738358,59.153755 + parent: 2 + - uid: 11471 components: - type: Transform - pos: -10.5,24.5 - parent: 16504 - - uid: 22101 + pos: 24.456696,-10.807613 + parent: 2 + - uid: 11472 components: - type: Transform - pos: -9.5,24.5 - parent: 16504 - - uid: 22108 + pos: 24.65982,-10.823238 + parent: 2 + - uid: 11473 components: - type: Transform - pos: 17.5,26.5 - parent: 16504 - - uid: 22109 + rot: 1.5707963267948966 rad + pos: 47.380714,9.202902 + parent: 2 + - uid: 23366 components: - type: Transform - pos: -10.5,37.5 - parent: 16504 - - uid: 22110 + pos: 22.562033,35.237534 + parent: 16527 + - uid: 23367 components: - type: Transform - pos: -17.5,33.5 - parent: 16504 - - uid: 22112 + rot: 1.5707963267948966 rad + pos: 2.2590332,74.58588 + parent: 16527 +- proto: PenCap + entities: + - uid: 11474 components: - type: Transform - pos: -15.5,28.5 - parent: 16504 -- proto: SpawnMobWalter + pos: 32.379395,22.621689 + parent: 2 +- proto: PersonalAI entities: - - uid: 13195 + - uid: 11475 components: - type: Transform - pos: 44.5,7.5 + pos: 30.54004,-1.4673071 parent: 2 -- proto: SpawnPointAtmos - entities: - - uid: 13196 + - uid: 11476 components: - type: Transform - pos: 43.5,74.5 + pos: 38.078884,69.67056 parent: 2 - - uid: 13197 + - uid: 11477 components: - type: Transform - pos: 43.5,75.5 + pos: 78.48688,41.58713 parent: 2 - - uid: 13198 + - uid: 21881 components: - type: Transform - pos: 43.5,76.5 + pos: 22.073372,-41.40068 parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 21268 + - uid: 21882 components: - type: Transform - pos: 22.5,53.5 + pos: 22.899197,-41.3545 parent: 2 -- proto: SpawnPointBorg +- proto: PetCarrier entities: - - uid: 11510 + - uid: 23368 components: - type: Transform - pos: 22.5,-42.5 - parent: 2 - - uid: 13200 + rot: -1.5707963267948966 rad + pos: -46.5,54.5 + parent: 16527 + - uid: 23369 components: - type: Transform - pos: 29.5,-2.5 - parent: 2 -- proto: SpawnPointBotanist + rot: 1.5707963267948966 rad + pos: -44.5,43.5 + parent: 16527 +- proto: PhoneInstrument entities: - - uid: 5576 + - uid: 4234 components: - type: Transform - pos: 39.5,53.5 + pos: 23.508572,-41.370125 parent: 2 - - uid: 13706 + - uid: 11478 components: - type: Transform - pos: 39.5,52.5 + pos: 24.452873,25.175673 parent: 2 - - uid: 21253 +- proto: Pickaxe + entities: + - uid: 11480 components: - type: Transform - pos: 39.5,54.5 + pos: 60.547512,87.53845 parent: 2 -- proto: SpawnPointCaptain - entities: - - uid: 13203 + - uid: 11481 components: - type: Transform - pos: 26.5,20.5 - parent: 2 - - uid: 13204 - components: - - type: Transform - pos: 22.5,20.5 - parent: 2 - - uid: 13205 - components: - - type: Transform - pos: 32.5,21.5 + pos: 63.45977,78.47269 parent: 2 -- proto: SpawnPointCargoTechnician +- proto: PillCanister entities: - - uid: 13206 - components: - - type: Transform - pos: 6.5,6.5 - parent: 2 - - uid: 13207 - components: - - type: Transform - pos: 5.5,6.5 - parent: 2 - - uid: 13208 + - uid: 11122 components: - type: Transform - pos: 7.5,6.5 - parent: 2 -- proto: SpawnPointChaplain + parent: 11118 + - type: Storage + storedItems: + 11123: + position: 0,0 + _rotation: South + 11124: + position: 1,0 + _rotation: South + 11125: + position: 2,0 + _rotation: South + 11126: + position: 3,0 + _rotation: South + 11127: + position: 4,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11123 + - 11124 + - 11125 + - 11126 + - 11127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PillCanisterCharcoal entities: - - uid: 13209 + - uid: 11482 components: - type: Transform - pos: 80.5,27.5 + pos: 40.45637,2.450044 parent: 2 -- proto: SpawnPointChef +- proto: PillCanisterDermaline entities: - - uid: 13505 - components: - - type: Transform - pos: 29.5,57.5 - parent: 2 - - uid: 21431 + - uid: 11483 components: - type: Transform - pos: 32.5,57.5 + pos: 40.378246,2.465669 parent: 2 -- proto: SpawnPointChemist +- proto: PillCanisterPotassiumIodide entities: - - uid: 13210 - components: - - type: Transform - pos: 43.5,6.5 - parent: 2 - - uid: 13211 + - uid: 11484 components: - type: Transform - pos: 41.5,10.5 + pos: 40.159496,2.434419 parent: 2 -- proto: SpawnPointChiefEngineer +- proto: PillCanisterTricordrazine entities: - - uid: 13212 + - uid: 11128 components: - type: Transform - pos: 40.5,62.5 - parent: 2 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 13213 + parent: 11118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11485 components: - type: Transform - pos: 44.5,2.5 + pos: 40.76887,2.418794 parent: 2 -- proto: SpawnPointClown +- proto: PillSpaceDrugs entities: - - uid: 3853 - components: - - type: Transform - pos: 10.5,53.5 - parent: 2 - - uid: 13214 + - uid: 11123 components: - type: Transform - pos: 46.5,17.5 - parent: 2 - - uid: 13215 + parent: 11122 + - type: Physics + canCollide: False + - uid: 11124 components: - type: Transform - pos: 50.5,16.5 - parent: 2 - - uid: 21550 + parent: 11122 + - type: Physics + canCollide: False + - uid: 11125 components: - type: Transform - pos: 23.5,41.5 - parent: 2 -- proto: SpawnPointDetective - entities: - - uid: 13216 + parent: 11122 + - type: Physics + canCollide: False + - uid: 11126 components: - type: Transform - pos: 39.5,35.5 - parent: 2 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 13217 + parent: 11122 + - type: Physics + canCollide: False + - uid: 11127 components: - type: Transform - pos: 20.5,17.5 - parent: 2 -- proto: SpawnPointHeadOfSecurity + parent: 11122 + - type: Physics + canCollide: False +- proto: PinpointerNuclear entities: - - uid: 13218 + - uid: 11486 components: - type: Transform - pos: 50.5,20.5 + pos: 7.4835777,28.442411 parent: 2 -- proto: SpawnPointJanitor +- proto: PlaqueAtmos entities: - - uid: 13219 + - uid: 11487 components: - type: Transform - pos: 65.5,48.5 + rot: 3.141592653589793 rad + pos: 48.5,75.5 parent: 2 -- proto: SpawnPointLawyer +- proto: PlasmaCanister entities: - - uid: 13220 + - uid: 11488 components: - type: Transform - pos: 6.5,21.5 + pos: 43.5,78.5 parent: 2 -- proto: SpawnPointLibrarian - entities: - - uid: 13221 + - uid: 11489 components: - type: Transform - pos: 60.5,64.5 + pos: 49.5,89.5 parent: 2 -- proto: SpawnPointMedicalDoctor +- proto: PlasmaReinforcedWindowDirectional entities: - - uid: 13222 + - uid: 11492 components: - type: Transform - pos: 47.5,4.5 + rot: -1.5707963267948966 rad + pos: 18.5,-14.5 parent: 2 - - uid: 13223 + - uid: 11499 components: - type: Transform - pos: 46.5,4.5 + pos: 56.5,-1.5 parent: 2 - - uid: 13224 + - uid: 11500 components: - type: Transform - pos: 48.5,4.5 + rot: -1.5707963267948966 rad + pos: 27.5,-6.5 parent: 2 - - uid: 13225 + - uid: 11501 components: - type: Transform - pos: 45.5,4.5 + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 parent: 2 -- proto: SpawnPointMedicalIntern - entities: - - uid: 13226 + - uid: 11517 components: - type: Transform - pos: 44.5,4.5 + rot: -1.5707963267948966 rad + pos: 18.5,-16.5 parent: 2 - - uid: 13227 + - uid: 11519 components: - type: Transform - pos: 43.5,4.5 + rot: 3.141592653589793 rad + pos: 75.5,7.5 parent: 2 - - uid: 13228 + - uid: 11520 components: - type: Transform - pos: 42.5,4.5 + rot: 3.141592653589793 rad + pos: 78.5,7.5 parent: 2 - - uid: 13229 + - uid: 23370 components: - type: Transform - pos: 41.5,4.5 - parent: 2 -- proto: SpawnPointMime - entities: - - uid: 6930 + rot: 1.5707963267948966 rad + pos: -44.5,53.5 + parent: 16527 + - uid: 23371 components: - type: Transform - pos: 40.5,-27.5 - parent: 2 - - uid: 13230 + rot: 1.5707963267948966 rad + pos: -44.5,43.5 + parent: 16527 + - uid: 23372 components: - type: Transform - pos: 40.5,17.5 - parent: 2 - - uid: 21551 + rot: 3.141592653589793 rad + pos: -31.5,39.5 + parent: 16527 + - uid: 23373 components: - type: Transform - pos: 24.5,41.5 - parent: 2 -- proto: SpawnPointMusician - entities: - - uid: 13574 + rot: 3.141592653589793 rad + pos: -30.5,39.5 + parent: 16527 + - uid: 23374 components: - type: Transform - pos: 21.5,41.5 - parent: 2 -- proto: SpawnPointObserver - entities: - - uid: 13231 + rot: 3.141592653589793 rad + pos: -44.5,52.5 + parent: 16527 + - uid: 23375 components: - type: Transform - pos: 24.5,28.5 - parent: 2 -- proto: SpawnPointParamedic - entities: - - uid: 13232 + rot: -1.5707963267948966 rad + pos: -47.5,54.5 + parent: 16527 + - uid: 23376 components: - type: Transform - pos: 42.5,3.5 - parent: 2 -- proto: SpawnPointPassenger - entities: - - uid: 13233 + pos: -44.5,44.5 + parent: 16527 + - uid: 23377 components: - type: Transform - pos: 5.5,36.5 - parent: 2 - - uid: 13234 + rot: 1.5707963267948966 rad + pos: -44.5,42.5 + parent: 16527 + - uid: 23378 components: - type: Transform - pos: 66.5,38.5 - parent: 2 - - uid: 13235 + rot: -1.5707963267948966 rad + pos: -47.5,43.5 + parent: 16527 + - uid: 23379 components: - type: Transform - pos: 73.5,56.5 - parent: 2 - - uid: 13236 + rot: -1.5707963267948966 rad + pos: -47.5,42.5 + parent: 16527 + - uid: 23380 components: - type: Transform - pos: 40.5,43.5 - parent: 2 -- proto: SpawnPointPsychologist - entities: - - uid: 13238 + pos: -47.5,44.5 + parent: 16527 + - uid: 23381 components: - type: Transform - pos: 68.5,9.5 - parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 13239 + rot: -1.5707963267948966 rad + pos: -47.5,53.5 + parent: 16527 + - uid: 23382 components: - type: Transform - pos: 5.5,8.5 - parent: 2 -- proto: SpawnPointReporter - entities: - - uid: 13240 + rot: 3.141592653589793 rad + pos: -47.5,52.5 + parent: 16527 + - uid: 23383 components: - type: Transform - pos: -0.5,33.5 - parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 13241 + pos: -32.5,30.5 + parent: 16527 + - uid: 23384 components: - type: Transform - pos: 23.5,-1.5 - parent: 2 - - uid: 13242 + pos: -36.5,29.5 + parent: 16527 + - uid: 23385 components: - type: Transform - pos: 23.5,-2.5 - parent: 2 - - uid: 13243 + rot: 1.5707963267948966 rad + pos: -44.5,54.5 + parent: 16527 + - uid: 23386 components: - type: Transform - pos: 23.5,-3.5 - parent: 2 - - uid: 13244 + pos: 8.5,36.5 + parent: 16527 + - uid: 23387 components: - type: Transform - pos: 22.5,0.5 - parent: 2 -- proto: SpawnPointResearchDirector - entities: - - uid: 13245 + rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 16527 + - uid: 23388 components: - type: Transform - pos: 21.5,-0.5 - parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 13246 + rot: 1.5707963267948966 rad + pos: -1.5,29.5 + parent: 16527 + - uid: 23389 components: - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 13247 + rot: 1.5707963267948966 rad + pos: -1.5,30.5 + parent: 16527 + - uid: 23390 components: - type: Transform - pos: 3.5,6.5 - parent: 2 - - uid: 13248 + rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 16527 + - uid: 23391 components: - type: Transform - pos: 4.5,6.5 - parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 13249 + rot: 1.5707963267948966 rad + pos: -2.5,27.5 + parent: 16527 + - uid: 23392 components: - type: Transform - pos: 23.5,-0.5 - parent: 2 - - uid: 13250 + rot: 1.5707963267948966 rad + pos: -2.5,25.5 + parent: 16527 + - uid: 23393 components: - type: Transform - pos: 23.5,0.5 - parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 13251 + rot: -1.5707963267948966 rad + pos: 3.5,27.5 + parent: 16527 + - uid: 23394 components: - type: Transform - pos: 53.5,21.5 - parent: 2 - - uid: 13252 + rot: -1.5707963267948966 rad + pos: 3.5,25.5 + parent: 16527 + - uid: 23395 components: - type: Transform - pos: 53.5,23.5 - parent: 2 - - uid: 13253 + pos: -0.5,24.5 + parent: 16527 + - uid: 23396 components: - type: Transform - pos: 53.5,22.5 - parent: 2 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 13254 + pos: 1.5,24.5 + parent: 16527 + - uid: 23397 components: - type: Transform - pos: 49.5,23.5 - parent: 2 - - uid: 13255 + pos: 0.5,24.5 + parent: 16527 + - uid: 23398 components: - type: Transform - pos: 52.5,23.5 - parent: 2 - - uid: 13256 + pos: -26.5,41.5 + parent: 16527 + - uid: 23399 components: - type: Transform - pos: 50.5,23.5 - parent: 2 - - uid: 13257 + rot: 1.5707963267948966 rad + pos: -24.5,39.5 + parent: 16527 + - uid: 23400 components: - type: Transform - pos: 51.5,23.5 - parent: 2 -- proto: SpawnPointServiceWorker - entities: - - uid: 2371 + rot: 1.5707963267948966 rad + pos: -24.5,40.5 + parent: 16527 + - uid: 23401 components: - type: Transform - pos: 20.5,50.5 - parent: 2 - - uid: 10026 + rot: -1.5707963267948966 rad + pos: -29.5,42.5 + parent: 16527 + - uid: 23402 components: - type: Transform - pos: 22.5,41.5 - parent: 2 - - uid: 21858 + rot: 3.141592653589793 rad + pos: -23.5,39.5 + parent: 16527 + - uid: 23403 components: - type: Transform - pos: 15.5,44.5 - parent: 2 -- proto: SpawnPointStationEngineer - entities: - - uid: 13258 + rot: -1.5707963267948966 rad + pos: -25.5,39.5 + parent: 16527 + - uid: 23404 components: - type: Transform - pos: 41.5,60.5 - parent: 2 - - uid: 13259 + rot: -1.5707963267948966 rad + pos: -25.5,40.5 + parent: 16527 + - uid: 23405 components: - type: Transform - pos: 40.5,61.5 - parent: 2 - - uid: 13260 + rot: -1.5707963267948966 rad + pos: -25.5,38.5 + parent: 16527 + - uid: 23406 components: - type: Transform - pos: 42.5,60.5 - parent: 2 - - uid: 13261 + rot: 1.5707963267948966 rad + pos: -45.5,49.5 + parent: 16527 + - uid: 23407 components: - type: Transform - pos: 43.5,60.5 - parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 13262 + rot: 3.141592653589793 rad + pos: -46.5,49.5 + parent: 16527 + - uid: 23408 components: - type: Transform - pos: 42.5,63.5 - parent: 2 - - uid: 13263 + rot: 1.5707963267948966 rad + pos: -47.5,47.5 + parent: 16527 + - uid: 23409 components: - type: Transform - pos: 44.5,62.5 - parent: 2 - - uid: 13264 + rot: 1.5707963267948966 rad + pos: -47.5,49.5 + parent: 16527 + - uid: 23410 components: - type: Transform - pos: 43.5,63.5 - parent: 2 - - uid: 13265 + pos: -46.5,47.5 + parent: 16527 + - uid: 23411 components: - type: Transform - pos: 44.5,61.5 - parent: 2 -- proto: SpawnPointWarden - entities: - - uid: 13266 + pos: -45.5,47.5 + parent: 16527 + - uid: 23412 components: - type: Transform - pos: 49.5,20.5 - parent: 2 -- proto: SpawnPointZookeeper - entities: - - uid: 13267 + rot: 1.5707963267948966 rad + pos: -45.5,47.5 + parent: 16527 + - uid: 23413 components: - type: Transform - pos: 77.5,42.5 - parent: 2 -- proto: SpeedLoaderMagnum - entities: - - uid: 18798 + rot: 1.5707963267948966 rad + pos: -45.5,48.5 + parent: 16527 + - uid: 23414 components: - type: Transform - parent: 18790 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpiderWeb - entities: - - uid: 20009 + rot: 3.141592653589793 rad + pos: -45.5,49.5 + parent: 16527 + - uid: 23415 components: - type: Transform - pos: -10.5,28.5 - parent: 16504 - - uid: 20010 + rot: 3.141592653589793 rad + pos: -32.5,35.5 + parent: 16527 + - uid: 23416 components: - type: Transform - pos: 22.5,0.5 - parent: 16504 - - uid: 20011 + rot: -1.5707963267948966 rad + pos: -34.5,36.5 + parent: 16527 + - uid: 23417 components: - type: Transform - pos: 22.5,2.5 - parent: 16504 - - uid: 20012 + rot: -1.5707963267948966 rad + pos: -47.5,54.5 + parent: 16527 + - uid: 23418 components: - type: Transform - pos: 21.5,10.5 - parent: 16504 - - uid: 20013 + rot: -1.5707963267948966 rad + pos: -47.5,53.5 + parent: 16527 + - uid: 23419 components: - type: Transform - pos: 15.5,11.5 - parent: 16504 - - uid: 20014 + rot: 1.5707963267948966 rad + pos: -44.5,54.5 + parent: 16527 + - uid: 23420 components: - type: Transform - pos: 15.5,10.5 - parent: 16504 - - uid: 20015 + rot: 1.5707963267948966 rad + pos: -44.5,53.5 + parent: 16527 + - uid: 23421 components: - type: Transform - pos: 16.5,10.5 - parent: 16504 - - uid: 20016 + rot: 3.141592653589793 rad + pos: -44.5,52.5 + parent: 16527 + - uid: 23422 components: - type: Transform - pos: 20.5,4.5 - parent: 16504 - - uid: 20017 + rot: 3.141592653589793 rad + pos: -47.5,52.5 + parent: 16527 + - uid: 23423 components: - type: Transform - pos: 20.5,-8.5 - parent: 16504 - - uid: 20018 + pos: -47.5,44.5 + parent: 16527 + - uid: 23424 components: - type: Transform - pos: 20.5,8.5 - parent: 16504 - - uid: 20019 + pos: -44.5,44.5 + parent: 16527 + - uid: 23425 components: - type: Transform - pos: 19.5,-2.5 - parent: 16504 - - uid: 20020 + rot: -1.5707963267948966 rad + pos: -47.5,43.5 + parent: 16527 + - uid: 23426 components: - type: Transform - pos: 20.5,-0.5 - parent: 16504 - - uid: 20021 + rot: -1.5707963267948966 rad + pos: -47.5,42.5 + parent: 16527 + - uid: 23427 components: - type: Transform - pos: 20.5,-4.5 - parent: 16504 - - uid: 20022 + rot: 1.5707963267948966 rad + pos: -44.5,43.5 + parent: 16527 + - uid: 23428 components: - type: Transform - pos: 16.5,-8.5 - parent: 16504 - - uid: 20023 + rot: 1.5707963267948966 rad + pos: -44.5,42.5 + parent: 16527 + - uid: 23429 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 16504 - - uid: 20024 - components: - - type: Transform - pos: -6.5,29.5 - parent: 16504 - - uid: 20025 + pos: -36.5,34.5 + parent: 16527 + - uid: 23430 components: - type: Transform - pos: -7.5,28.5 - parent: 16504 - - uid: 20026 + rot: 3.141592653589793 rad + pos: -35.5,34.5 + parent: 16527 + - uid: 23431 components: - type: Transform - pos: -10.5,20.5 - parent: 16504 - - uid: 20027 + rot: 3.141592653589793 rad + pos: -36.5,33.5 + parent: 16527 + - uid: 23432 components: - type: Transform - pos: -13.5,21.5 - parent: 16504 - - uid: 20028 + rot: 1.5707963267948966 rad + pos: -36.5,33.5 + parent: 16527 + - uid: 23433 components: - type: Transform - pos: -14.5,22.5 - parent: 16504 - - uid: 20029 + pos: -35.5,33.5 + parent: 16527 + - uid: 23434 components: - type: Transform - pos: -17.5,18.5 - parent: 16504 - - uid: 20030 + rot: 3.141592653589793 rad + pos: -32.5,33.5 + parent: 16527 + - uid: 23435 components: - type: Transform - pos: -17.5,19.5 - parent: 16504 - - uid: 20031 + pos: -36.5,31.5 + parent: 16527 + - uid: 23436 components: - type: Transform - pos: -18.5,24.5 - parent: 16504 - - uid: 20032 + pos: -35.5,31.5 + parent: 16527 + - uid: 23437 components: - type: Transform - pos: -17.5,25.5 - parent: 16504 - - uid: 20033 + rot: 1.5707963267948966 rad + pos: -33.5,27.5 + parent: 16527 + - uid: 23438 components: - type: Transform - pos: -18.5,21.5 - parent: 16504 - - uid: 20034 + rot: -1.5707963267948966 rad + pos: -34.5,27.5 + parent: 16527 + - uid: 23439 components: - type: Transform - pos: -12.5,25.5 - parent: 16504 - - uid: 20035 + rot: 3.141592653589793 rad + pos: -45.5,46.5 + parent: 16527 + - uid: 23440 components: - type: Transform - pos: -11.5,23.5 - parent: 16504 - - uid: 20036 + rot: -1.5707963267948966 rad + pos: -44.5,47.5 + parent: 16527 + - uid: 23441 components: - type: Transform - pos: -13.5,24.5 - parent: 16504 - - uid: 20037 + rot: -1.5707963267948966 rad + pos: -44.5,48.5 + parent: 16527 + - uid: 23442 components: - type: Transform - pos: -7.5,21.5 - parent: 16504 - - uid: 20038 + rot: -1.5707963267948966 rad + pos: -44.5,49.5 + parent: 16527 + - uid: 23443 components: - type: Transform - pos: -6.5,22.5 - parent: 16504 - - uid: 20039 + pos: -45.5,50.5 + parent: 16527 + - uid: 23444 components: - type: Transform - pos: -6.5,21.5 - parent: 16504 - - uid: 20040 + pos: -46.5,50.5 + parent: 16527 + - uid: 23445 components: - type: Transform - pos: -9.5,22.5 - parent: 16504 - - uid: 20041 + rot: -1.5707963267948966 rad + pos: -46.5,49.5 + parent: 16527 + - uid: 23446 components: - type: Transform - pos: -7.5,24.5 - parent: 16504 - - uid: 20042 + rot: -1.5707963267948966 rad + pos: -46.5,47.5 + parent: 16527 + - uid: 23447 components: - type: Transform - pos: -7.5,25.5 - parent: 16504 - - uid: 20043 + rot: 3.141592653589793 rad + pos: -46.5,46.5 + parent: 16527 +- proto: PlasmaTankFilled + entities: + - uid: 11521 components: - type: Transform - pos: -6.5,25.5 - parent: 16504 - - uid: 20044 + pos: 53.79378,72.209946 + parent: 2 + - uid: 11522 components: - type: Transform - pos: -10.5,25.5 - parent: 16504 -- proto: Spoon + pos: 53.653156,72.459946 + parent: 2 +- proto: PlasmaWindoorSecureCommandLocked entities: - - uid: 20045 + - uid: 11523 components: - type: Transform - pos: 17.163906,27.288605 - parent: 16504 -- proto: SprayBottle + rot: 1.5707963267948966 rad + pos: 32.5,19.5 + parent: 2 +- proto: PlasmaWindoorSecureEngineeringLocked entities: - - uid: 13268 + - uid: 11524 components: - type: Transform - pos: 56.576157,-3.316105 + rot: 1.5707963267948966 rad + pos: 58.5,78.5 parent: 2 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 13269 + - uid: 11525 components: - type: Transform - pos: 64.92543,49.606125 + rot: 1.5707963267948966 rad + pos: 58.5,77.5 parent: 2 -- proto: SprayBottleWater +- proto: PlasmaWindoorSecureScienceLocked entities: - - uid: 13270 + - uid: 23448 components: - type: Transform - pos: 24.526066,-7.350095 - parent: 2 -- proto: Stairs - entities: - - uid: 20046 + pos: -46.5,44.5 + parent: 16527 + - uid: 23449 components: - type: Transform - pos: 0.5,-1.5 - parent: 16504 - - uid: 20047 + rot: 3.141592653589793 rad + pos: -46.5,52.5 + parent: 16527 + - uid: 23450 components: - type: Transform - pos: -0.5,-1.5 - parent: 16504 - - uid: 20048 + pos: -45.5,44.5 + parent: 16527 + - uid: 23451 components: - type: Transform - pos: 1.5,-1.5 - parent: 16504 -- proto: StairStage - entities: - - uid: 13271 + rot: 3.141592653589793 rad + pos: -45.5,52.5 + parent: 16527 + - uid: 23452 components: - type: Transform - pos: 58.5,-11.5 - parent: 2 -- proto: StairWood - entities: - - uid: 268 + pos: -23.5,41.5 + parent: 16527 + - uid: 23453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,50.5 - parent: 2 - - uid: 2341 + rot: 3.141592653589793 rad + pos: -23.5,38.5 + parent: 16527 + - uid: 23454 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,40.5 - parent: 2 - - uid: 2360 + pos: -47.5,48.5 + parent: 16527 + - uid: 23455 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,49.5 + pos: -46.5,48.5 + parent: 16527 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 11526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,7.5 parent: 2 - - uid: 3856 + - uid: 11527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,53.5 + rot: 3.141592653589793 rad + pos: 77.5,7.5 parent: 2 - - uid: 3866 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 11528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,51.5 + pos: 47.5,54.5 parent: 2 - - uid: 3868 + - uid: 11529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,40.5 + pos: 0.5,9.5 parent: 2 - - uid: 15058 + - uid: 11530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,52.5 + pos: 0.5,5.5 parent: 2 - - uid: 21225 + - uid: 11531 components: - type: Transform - pos: 24.5,55.5 + pos: -1.5,5.5 parent: 2 - - uid: 21226 + - uid: 11532 components: - type: Transform - pos: 23.5,55.5 + pos: -1.5,9.5 parent: 2 - - uid: 21227 + - uid: 11533 components: - type: Transform - pos: 22.5,55.5 + pos: -1.5,23.5 parent: 2 -- proto: StasisBed +- proto: PlasticFlapsClear entities: - - uid: 13272 + - uid: 23457 components: - type: Transform - pos: 60.5,20.5 - parent: 2 - - uid: 13273 + pos: -19.5,9.5 + parent: 16527 + - uid: 23458 components: - type: Transform - pos: 37.5,-6.5 - parent: 2 - - uid: 13274 + rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 16527 + - uid: 23459 components: - type: Transform - pos: 35.5,-6.5 - parent: 2 - - uid: 13275 + pos: -15.5,12.5 + parent: 16527 + - uid: 23460 components: - type: Transform - pos: 37.5,-5.5 - parent: 2 - - uid: 13276 + rot: 3.141592653589793 rad + pos: -19.5,11.5 + parent: 16527 +- proto: PlayerStationAi + entities: + - uid: 5842 components: - type: Transform - pos: 35.5,-5.5 + pos: 22.5,-37.5 parent: 2 - - uid: 22232 +- proto: PlushieCarp + entities: + - uid: 11535 components: + - type: MetaData + name: TiFeRi - type: Transform - pos: 48.5,-11.5 + pos: 24.362953,33.14735 parent: 2 -- proto: StationAiUploadCircuitboard - entities: - - uid: 11203 + - uid: 11536 components: - type: Transform - parent: 11202 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: StationAiUploadComputer + pos: 14.074409,-16.219566 + parent: 2 +- proto: PlushieGhost entities: - - uid: 4322 + - uid: 22393 components: + - type: MetaData + name: wejf - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-44.5 + pos: 26.558538,34.536873 parent: 2 -- proto: StationAnchor +- proto: PlushieHampter entities: - - uid: 13278 + - uid: 11537 components: + - type: MetaData + desc: Милый маленький дружок, от него пахнет дымом. Его мордочка выглядит приплюснутой. + name: плюшевый SatuSmoke - type: Transform - pos: 54.5,56.5 + pos: 24.613087,34.399574 parent: 2 -- proto: StationAnchorIndestructible +- proto: PlushieHuman entities: - - uid: 19445 + - uid: 11538 components: - type: Transform - pos: -6.5,3.5 - parent: 16504 -- proto: StationEfficiencyCircuitBoard + pos: 66.54487,9.698081 + parent: 2 +- proto: PlushieLamp entities: - - uid: 588 + - uid: 6401 components: - type: Transform - parent: 577 + parent: 6399 - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: StationMap - entities: - - uid: 13279 + - uid: 11539 components: + - type: MetaData + name: ktlnkrnl - type: Transform - pos: 56.5,54.5 + pos: 25.603819,34.057175 parent: 2 - - uid: 13280 +- proto: PlushieLizard + entities: + - uid: 11540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,21.5 + pos: 8.706432,27.696259 parent: 2 - - uid: 13281 +- proto: PlushieLizardMirrored + entities: + - uid: 11541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,54.5 + pos: 65.29487,5.573081 parent: 2 - - uid: 13282 +- proto: PlushieMoth + entities: + - uid: 11542 components: + - type: MetaData + name: nekosich - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,16.5 + pos: 22.697569,33.432175 parent: 2 - - uid: 13283 + - uid: 16297 components: + - type: MetaData + desc: Сделал совместно с Zrot ядро ии :3 + name: Плюшевый OneYa - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,30.5 + pos: 30.5,-38.5 parent: 2 - - uid: 13284 +- proto: PlushieNar + entities: + - uid: 6402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,35.5 - parent: 2 - - uid: 13285 + parent: 6399 + - type: Physics + canCollide: False + - uid: 11543 components: - type: Transform - pos: 61.5,15.5 + pos: 5.4830356,38.666862 parent: 2 - - uid: 13286 + - uid: 11544 components: - type: Transform - pos: 33.5,15.5 + pos: 26.468388,57.51086 parent: 2 - - uid: 13287 + - uid: 11545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,43.5 + pos: 80.44124,27.42845 parent: 2 - - uid: 13288 +- proto: PlushiePenguin + entities: + - uid: 10836 components: + - type: MetaData + name: mofkkol - type: Transform - pos: 40.5,46.5 + pos: 26.140245,33.71122 parent: 2 -- proto: StationMapAssembly +- proto: PlushieRGBee entities: - - uid: 20049 - components: - - type: Transform - pos: -5.5,13.5 - parent: 16504 - - uid: 20050 + - uid: 6403 components: - type: Transform - pos: 6.5,13.5 - parent: 16504 -- proto: StationMapBroken + parent: 6399 + - type: Physics + canCollide: False +- proto: PlushieSharkBlue entities: - - uid: 13289 + - uid: 11546 components: + - type: MetaData + name: eugurt - type: Transform - pos: 79.5,9.5 + pos: 82.32806,19.43744 parent: 2 - - uid: 13290 + - uid: 11547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,61.5 + pos: 66.5,32.5 parent: 2 -- proto: StealthBox - entities: - - uid: 13291 + - uid: 11548 components: - type: Transform - pos: 20.510519,64.45485 + pos: 81.65615,19.64192 parent: 2 -- proto: SteelBench +- proto: PlushieSharkPink entities: - - uid: 13292 + - uid: 11549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,26.5 + pos: 81.65615,15.435493 parent: 2 - - uid: 13293 + - uid: 11550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,26.5 + pos: 82.34267,15.274831 parent: 2 - - uid: 13294 + - uid: 21878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,26.5 + pos: 24.708048,48.448303 parent: 2 - - uid: 20051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 16504 - - uid: 20052 + - uid: 23461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 16504 - - uid: 20053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 16504 - - uid: 20054 + pos: 9.554718,3.5810502 + parent: 16527 +- proto: PlushieSlime + entities: + - uid: 22392 components: + - type: MetaData + name: meowstushka - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 16504 - - uid: 20055 + pos: 24.433538,32.505623 + parent: 2 +- proto: PlushieVox + entities: + - uid: 3877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 16504 - - uid: 20056 + pos: 14.563574,41.616543 + parent: 2 + - uid: 21333 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 16504 -- proto: Stool + pos: 16.462917,41.616543 + parent: 2 +- proto: PlushieXeno entities: - - uid: 13295 + - uid: 11552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,9.5 + pos: 27.66602,-6.6073027 parent: 2 - - uid: 13296 +- proto: PonderingOrb + entities: + - uid: 21310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,33.5 + pos: 16.036068,49.20714 parent: 2 -- proto: StoolBar +- proto: PortableFlasher entities: - - uid: 6922 + - uid: 11553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,41.5 + pos: 56.5,31.5 parent: 2 - - uid: 7697 + - uid: 11554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,50.5 + pos: 55.5,31.5 parent: 2 - - uid: 11226 + - uid: 11555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,50.5 + pos: 55.5,32.5 parent: 2 - - uid: 11320 + - uid: 11556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,50.5 + pos: 56.5,32.5 parent: 2 - - uid: 13297 +- proto: PortableGeneratorJrPacman + entities: + - uid: 11557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,32.5 + pos: 48.5,41.5 parent: 2 - - uid: 13301 + - uid: 11558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,62.5 + pos: 48.5,66.5 parent: 2 - - uid: 13302 + - uid: 11559 components: - type: Transform - pos: 41.5,43.5 + pos: 43.5,84.5 parent: 2 - - uid: 13303 + - uid: 11561 components: - type: Transform - pos: 40.5,43.5 + pos: 27.5,67.5 parent: 2 - - uid: 13304 + - uid: 11563 components: - type: Transform - pos: 39.5,43.5 + pos: 56.5,64.5 parent: 2 - - uid: 13305 + - uid: 11564 components: - type: Transform - pos: 42.5,43.5 + pos: 16.5,2.5 parent: 2 - - uid: 13306 + - uid: 11565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 + pos: 16.5,63.5 parent: 2 - - uid: 21271 + - uid: 11566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,50.5 + pos: 67.5,1.5 parent: 2 - - uid: 21272 + - uid: 11567 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,50.5 + pos: 60.5,-5.5 parent: 2 - - uid: 21273 + - uid: 11568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,50.5 + pos: 70.5,8.5 parent: 2 - - uid: 21274 + - uid: 11569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,50.5 + pos: 9.5,-7.5 parent: 2 - - uid: 21275 + - uid: 11570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,50.5 + pos: 5.5,17.5 parent: 2 - - uid: 21276 + - uid: 11571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,50.5 + pos: 56.5,71.5 parent: 2 - - uid: 21278 + - uid: 12422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,50.5 + pos: 61.5,16.5 parent: 2 -- proto: StorageCanister +- proto: PortableGeneratorPacman entities: - - uid: 13307 + - uid: 11572 components: - type: Transform - pos: 39.5,74.5 + pos: 9.5,-13.5 parent: 2 - - uid: 13308 + - uid: 11573 components: - type: Transform - pos: 39.5,75.5 + pos: 63.5,0.5 parent: 2 - - uid: 13309 + - uid: 11574 components: - type: Transform - pos: 35.5,70.5 + pos: 52.5,61.5 parent: 2 - - uid: 13310 + - uid: 11575 components: - type: Transform - pos: 34.5,69.5 + pos: 61.5,6.5 parent: 2 - - uid: 13311 + - uid: 11578 components: - type: Transform - pos: 35.5,69.5 + pos: 50.5,-14.5 parent: 2 - - uid: 13312 + - uid: 23462 components: - type: Transform - pos: 34.5,70.5 - parent: 2 - - uid: 13313 + pos: -23.5,25.5 + parent: 16527 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 5110 components: - type: Transform - pos: 26.5,83.5 + pos: 26.5,-17.5 parent: 2 - - uid: 13314 + - uid: 11580 components: - type: Transform - pos: 15.5,67.5 + pos: 63.5,34.5 parent: 2 - - uid: 13315 + - uid: 11581 components: - type: Transform - pos: 29.5,66.5 + pos: 69.5,4.5 parent: 2 -- proto: StrangePill + - uid: 11582 + components: + - type: Transform + pos: 52.5,62.5 + parent: 2 +- proto: PortableScrubber entities: - - uid: 796 + - uid: 11583 components: - type: Transform - rot: 0.22689280275926285 rad - pos: 41.337914,-27.273623 + pos: 56.5,50.5 parent: 2 - - uid: 20057 + - uid: 11584 components: - type: Transform - pos: 11.735521,-4.290595 - parent: 16504 - - uid: 20058 + pos: 55.5,50.5 + parent: 2 +- proto: PosterBroken + entities: + - uid: 11585 components: - type: Transform - pos: -12.220541,-6.1665163 - parent: 16504 - - uid: 20059 + rot: 3.141592653589793 rad + pos: 59.5,42.5 + parent: 2 + - uid: 11586 components: - type: Transform - pos: -6.0569034,12.160178 - parent: 16504 - - uid: 20060 + pos: 58.5,35.5 + parent: 2 + - uid: 23463 components: - type: Transform - pos: -0.74440336,9.378928 - parent: 16504 - - uid: 20061 + pos: -2.5,4.5 + parent: 16527 +- proto: PosterContrabandAmbrosiaVulgaris + entities: + - uid: 94 components: - type: Transform - pos: 7.0207767,11.800803 - parent: 16504 - - uid: 20062 + rot: 1.5707963267948966 rad + pos: 44.5,49.5 + parent: 2 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 11588 components: - type: Transform - pos: 12.231697,14.748684 - parent: 16504 - - uid: 21254 + rot: 3.141592653589793 rad + pos: 56.5,-11.5 + parent: 2 +- proto: PosterContrabandBorgFancyv2 + entities: + - uid: 11589 components: - type: Transform - rot: -1.117010721276371 rad - pos: 40.817,-26.804873 + rot: 3.141592653589793 rad + pos: 37.5,60.5 parent: 2 -- proto: Stunbaton +- proto: PosterContrabandBustyBackdoorExoBabes6 entities: - - uid: 10983 + - uid: 11590 components: - type: Transform - parent: 10982 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10984 + rot: 3.141592653589793 rad + pos: 27.5,-5.5 + parent: 2 + - uid: 21262 components: - type: Transform - parent: 10982 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10985 + pos: 30.5,41.5 + parent: 2 +- proto: PosterContrabandC20r + entities: + - uid: 23464 components: - type: Transform - parent: 10982 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10986 + pos: 3.5,-0.5 + parent: 16527 +- proto: PosterContrabandClown + entities: + - uid: 13816 components: - type: Transform - parent: 10982 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10987 + rot: 1.5707963267948966 rad + pos: 9.5,51.5 + parent: 2 +- proto: PosterContrabandCybersun600 + entities: + - uid: 11591 components: - type: Transform - parent: 10982 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SubstationBasic + rot: 3.141592653589793 rad + pos: 49.5,-15.5 + parent: 2 + - uid: 23465 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 16527 +- proto: PosterContrabandDonk entities: - - uid: 2220 + - uid: 11592 components: - type: Transform - pos: 27.5,-17.5 + rot: 1.5707963267948966 rad + pos: 13.5,49.5 parent: 2 - - uid: 13317 +- proto: PosterContrabandDonutCorp + entities: + - uid: 11593 components: - - type: MetaData - name: подстанция атмос - type: Transform - pos: 39.5,73.5 + pos: 31.5,-20.5 parent: 2 - - uid: 13318 +- proto: PosterContrabandFreeDrone + entities: + - uid: 11594 components: - - type: MetaData - name: подстанция сервис - type: Transform - pos: 45.5,57.5 + rot: 3.141592653589793 rad + pos: 40.5,-12.5 parent: 2 - - uid: 13319 +- proto: PosterContrabandGreyTide + entities: + - uid: 11595 components: - - type: MetaData - name: подстанция техи - type: Transform - pos: 25.5,64.5 + pos: 24.5,60.5 parent: 2 - - uid: 13320 + - uid: 11596 components: - - type: MetaData - name: подстанция инж 1 - type: Transform - pos: 52.5,63.5 + pos: 33.5,-12.5 parent: 2 - - uid: 13321 + - uid: 11597 components: - - type: MetaData - name: подстанция Снаб - type: Transform - pos: 13.5,3.5 + pos: 34.5,-12.5 parent: 2 - - type: Battery - startingCharge: 2231236.2 - - type: PowerNetworkBattery - loadingNetworkDemand: 12375.049 - currentReceiving: 11186.025 - currentSupply: 12375.049 - supplyRampPosition: 1190.3232 - - uid: 13322 +- proto: PosterContrabandHackingGuide + entities: + - uid: 11598 components: - - type: MetaData - name: подстанция мостик - type: Transform - pos: 33.5,19.5 + pos: 64.5,39.5 parent: 2 - - type: Battery - startingCharge: 2373783.2 - - type: PowerNetworkBattery - loadingNetworkDemand: 6945.0273 - currentReceiving: 7690.1875 - currentSupply: 6945.0273 - - uid: 13324 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 11599 components: - - type: MetaData - name: подстанция бриг - type: Transform - pos: 45.5,41.5 + pos: 46.5,67.5 parent: 2 - - type: Battery - startingCharge: 2141691.5 - - type: PowerNetworkBattery - loadingNetworkDemand: 15930.063 - currentReceiving: 13474.737 - currentSupply: 15930.063 - supplyRampPosition: 2456.8926 - - uid: 13325 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 11600 components: - - type: MetaData - name: подстанция Меда - type: Transform - pos: 61.5,-3.5 + rot: 3.141592653589793 rad + pos: 25.5,-9.5 parent: 2 - - type: Battery - startingCharge: 1937215.8 - - type: PowerNetworkBattery - loadingNetworkDemand: 30649.809 - currentReceiving: 22951.283 - currentSupply: 30649.809 - supplyRampPosition: 7026.61 - - uid: 13326 + - uid: 21426 components: - - type: MetaData - name: подстанция телекомы - type: Transform - pos: 75.5,19.5 + pos: 34.5,43.5 parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 9090.036 - currentReceiving: 9090.036 - currentSupply: 9090.036 - - uid: 13327 + - uid: 23466 components: - - type: MetaData - name: подстанция сервис 2 - type: Transform - pos: 59.5,70.5 + rot: -1.5707963267948966 rad + pos: 16.5,25.5 + parent: 16527 +- proto: PosterContrabandMaskedMen + entities: + - uid: 11601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-8.5 parent: 2 - - type: Battery - startingCharge: 1985041.4 - - type: PowerNetworkBattery - loadingNetworkDemand: 27390.342 - currentReceiving: 20852.846 - currentSupply: 27390.342 - supplyRampPosition: 5860.6177 - - uid: 13328 +- proto: PosterContrabandMissingGloves + entities: + - uid: 11602 components: - - type: MetaData - name: подстанция Гравген и Якорь - type: Transform - pos: 55.5,47.5 + rot: 3.141592653589793 rad + pos: 31.5,-6.5 parent: 2 - - uid: 13329 +- proto: PosterContrabandMoth + entities: + - uid: 11603 components: - type: Transform - pos: 54.5,86.5 + pos: 27.5,-18.5 parent: 2 - - uid: 16443 +- proto: PosterContrabandPower + entities: + - uid: 11604 components: - type: Transform - pos: 31.5,-39.5 + rot: 3.141592653589793 rad + pos: 41.5,68.5 parent: 2 - - uid: 22413 +- proto: PosterContrabandPunchShit + entities: + - uid: 13466 components: - type: Transform - pos: 46.5,-16.5 + rot: 1.5707963267948966 rad + pos: 30.5,-16.5 parent: 2 -- proto: SubstationWallBasic +- proto: PosterContrabandRebelsUnite entities: - - uid: 1916 + - uid: 11606 components: - type: Transform - pos: 6.5,19.5 + rot: 3.141592653589793 rad + pos: 12.5,-15.5 parent: 2 - - uid: 2247 +- proto: PosterContrabandRIPBadger + entities: + - uid: 11607 components: - type: Transform - pos: 10.5,-5.5 + pos: 19.5,56.5 parent: 2 - - uid: 13330 +- proto: PosterContrabandRise + entities: + - uid: 11608 components: - - type: MetaData - name: настенная подстанция пермабриг - type: Transform - pos: 52.5,41.5 + rot: 3.141592653589793 rad + pos: 5.5,19.5 parent: 2 - - uid: 13331 +- proto: PosterContrabandSpaceCola + entities: + - uid: 11609 components: - type: Transform - pos: 78.5,5.5 + rot: 3.141592653589793 rad + pos: 16.5,11.5 parent: 2 - - uid: 20063 +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 23467 components: - type: Transform - pos: -6.5,6.5 - parent: 16504 - - type: Battery - startingCharge: 0 -- proto: SuitStorageAtmos + pos: -2.5,-0.5 + parent: 16527 +- proto: PosterContrabandSyndicateRecruitment entities: - - uid: 6380 + - uid: 11610 components: - type: Transform - pos: 41.5,76.5 + pos: 84.5,22.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6381 - - uid: 6382 + - uid: 11611 components: - type: Transform - pos: 41.5,74.5 + pos: 54.5,34.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6383 - - uid: 6384 +- proto: PosterContrabandTools + entities: + - uid: 11613 components: - type: Transform - pos: 41.5,75.5 + rot: 3.141592653589793 rad + pos: 64.5,40.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6385 -- proto: SuitStorageBase +- proto: PosterLegit12Gauge entities: - - uid: 20064 + - uid: 11614 components: - type: Transform - pos: -3.5,-7.5 - parent: 16504 - - uid: 20065 + pos: 64.5,38.5 + parent: 2 +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 11615 components: - type: Transform - pos: -5.5,-5.5 - parent: 16504 - - uid: 20066 + rot: 3.141592653589793 rad + pos: 24.5,-5.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 11616 components: - type: Transform - pos: -5.5,-7.5 - parent: 16504 - - uid: 20067 + rot: 3.141592653589793 rad + pos: 51.5,-9.5 + parent: 2 +- proto: PosterLegitBlessThisSpess + entities: + - uid: 11617 components: - type: Transform - pos: 6.5,-7.5 - parent: 16504 - - uid: 20068 + rot: -1.5707963267948966 rad + pos: 84.5,32.5 + parent: 2 +- proto: PosterLegitCarpMount + entities: + - uid: 11618 components: - type: Transform - pos: 5.5,-5.5 - parent: 16504 -- proto: SuitStorageCaptain + pos: 15.5,-16.5 + parent: 2 + - uid: 11619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,58.5 + parent: 2 +- proto: PosterLegitIan entities: - - uid: 13332 + - uid: 11620 components: - type: Transform - pos: 25.5,22.5 + pos: 20.5,18.5 parent: 2 -- proto: SuitStorageCE +- proto: PosterLegitIonRifle entities: - - uid: 13333 + - uid: 11621 components: - type: Transform - pos: 40.5,66.5 + rot: 3.141592653589793 rad + pos: 50.5,29.5 parent: 2 -- proto: SuitStorageEngi +- proto: PosterLegitNanotrasenLogo entities: - - uid: 5 + - uid: 11622 components: - type: Transform - pos: 47.5,86.5 + rot: 3.141592653589793 rad + pos: 12.5,11.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6 - - 8 - - uid: 7405 + - uid: 11623 components: - type: Transform - pos: 45.5,86.5 + pos: 84.5,46.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7406 - - 7407 - - uid: 7408 + - uid: 11624 components: - type: Transform - pos: 45.5,85.5 + rot: 3.141592653589793 rad + pos: 84.5,58.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7409 - - 7410 - - uid: 7411 + - uid: 11625 components: - type: Transform - pos: 47.5,84.5 + rot: 3.141592653589793 rad + pos: 84.5,62.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7413 - - 7412 - - uid: 7414 + - uid: 11626 components: - type: Transform - pos: 45.5,83.5 + rot: -1.5707963267948966 rad + pos: 49.5,46.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7415 - - 7416 - - uid: 7417 +- proto: PosterLegitObey + entities: + - uid: 11627 components: - type: Transform - pos: 45.5,84.5 + pos: 16.5,19.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7419 - - 7418 - - uid: 7420 + - uid: 11628 components: - type: Transform - pos: 47.5,83.5 + pos: 5.5,23.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7422 - - 7421 - - uid: 7423 +- proto: PosterLegitPDAAd + entities: + - uid: 11629 components: - type: Transform - pos: 47.5,85.5 + pos: 16.5,18.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7424 - - 7425 -- proto: SuitStorageEVA +- proto: PosterLegitSafetyEyeProtection entities: - - uid: 13334 + - uid: 11630 components: - type: Transform - pos: 22.5,18.5 + pos: 50.5,58.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13335 +- proto: PosterLegitSafetyInternals + entities: + - uid: 11631 components: - type: Transform - pos: 26.5,18.5 + rot: 1.5707963267948966 rad + pos: 40.5,73.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13336 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 11632 components: - type: Transform - pos: 22.5,17.5 + pos: 19.5,2.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13337 +- proto: PosterLegitSpaceCops + entities: + - uid: 11633 components: - type: Transform - pos: 26.5,17.5 + pos: 69.5,5.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13338 + - uid: 11634 components: - type: Transform - pos: 24.5,18.5 + rot: 3.141592653589793 rad + pos: 53.5,32.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13339 +- proto: PosterLegitThereIsNoGasGiant + entities: + - uid: 11636 components: - type: Transform - pos: 24.5,17.5 + rot: 3.141592653589793 rad + pos: 60.5,-2.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: SuitStorageEVAPrisoner +- proto: PottedPlant0 entities: - - uid: 13340 + - uid: 23468 components: - type: Transform - pos: 49.5,36.5 + pos: 4.5,0.5 + parent: 16527 + - uid: 23469 + components: + - type: Transform + pos: -11.5,4.5 + parent: 16527 +- proto: PottedPlant10 + entities: + - uid: 23470 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 16527 +- proto: PottedPlant11 + entities: + - uid: 11638 + components: + - type: Transform + pos: 24.5,25.5 parent: 2 -- proto: SuitStorageEVASyndicate + - uid: 11639 + components: + - type: Transform + pos: 68.5,57.5 + parent: 2 + - uid: 21500 + components: + - type: Transform + pos: 15.5,43.5 + parent: 2 + - uid: 23471 + components: + - type: Transform + pos: -9.5,2.5 + parent: 16527 +- proto: PottedPlant14 entities: - - uid: 20069 + - uid: 21875 components: - type: Transform - pos: -3.5,-5.5 - parent: 16504 - - uid: 20070 + pos: 28.5,42.5 + parent: 2 +- proto: PottedPlant15 + entities: + - uid: 11640 components: - type: Transform - pos: -4.5,-7.5 - parent: 16504 - - uid: 20071 + pos: 15.5,22.5 + parent: 2 + - uid: 11642 components: - type: Transform - pos: 6.5,-5.5 - parent: 16504 - - uid: 20072 + pos: 66.5,64.5 + parent: 2 + - uid: 23472 components: - type: Transform - pos: 4.5,-7.5 - parent: 16504 -- proto: SuitStorageHOS + pos: -12.5,-6.5 + parent: 16527 +- proto: PottedPlant16 entities: - - uid: 11115 + - uid: 11643 components: - type: Transform - pos: 49.5,33.5 + pos: 47.5,43.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11117 -- proto: SuitStorageNTSRA + - uid: 23473 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 16527 +- proto: PottedPlant18 entities: - - uid: 13341 + - uid: 23474 components: - type: Transform - pos: 15.5,-3.5 + pos: 16.5,4.5 + parent: 16527 +- proto: PottedPlant21 + entities: + - uid: 21497 + components: + - type: Transform + pos: 25.5,50.3 parent: 2 -- proto: SuitStorageSec + - uid: 23475 + components: + - type: Transform + pos: 19.5,15.5 + parent: 16527 +- proto: PottedPlant22 entities: - - uid: 9 + - uid: 23476 components: - type: Transform - pos: 60.5,28.5 + pos: -21.5,52.5 + parent: 16527 +- proto: PottedPlant24 + entities: + - uid: 23477 + components: + - type: Transform + pos: 4.5,52.5 + parent: 16527 +- proto: PottedPlant26 + entities: + - uid: 23478 + components: + - type: Transform + pos: 7.5,6.5 + parent: 16527 +- proto: PottedPlant29 + entities: + - uid: 23479 + components: + - type: Transform + pos: -26.5,43.5 + parent: 16527 +- proto: PottedPlant3 + entities: + - uid: 21876 + components: + - type: Transform + pos: 20.5,43.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 +- proto: PottedPlantAlt0 + entities: + - uid: 23480 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 16527 +- proto: PottedPlantAlt1 + entities: + - uid: 19386 + components: + - type: Transform + pos: -7.5,61.5 + parent: 16527 - type: ContainerContainer containers: - entity_storage: !type:Container + stash: !type:ContainerSlot showEnts: False occludes: True - ents: - - 12 - - 10 - - uid: 13 + ent: 19389 + - uid: 19402 components: - type: Transform - pos: 61.5,28.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + pos: 4.5,70.5 + parent: 16527 - type: ContainerContainer containers: - entity_storage: !type:Container + stash: !type:ContainerSlot showEnts: False occludes: True - ents: - - 14 + ent: 19403 +- proto: PottedPlantAlt2 + entities: + - uid: 19384 + components: + - type: Transform + pos: 6.5,75.5 + parent: 16527 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19385 + - uid: 19392 + components: + - type: Transform + pos: -0.5,65.5 + parent: 16527 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19393 + - uid: 19408 + components: + - type: Transform + pos: 5.5,58.5 + parent: 16527 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19409 + - uid: 23481 + components: + - type: Transform + pos: -17.5,2.5 + parent: 16527 + - uid: 23482 + components: + - type: Transform + pos: 7.5,48.5 + parent: 16527 +- proto: PottedPlantAlt3 + entities: + - uid: 19390 + components: + - type: Transform + pos: -4.5,65.5 + parent: 16527 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19391 + - uid: 19400 + components: + - type: Transform + pos: -0.5,69.5 + parent: 16527 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19401 + - uid: 23483 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 16527 + - uid: 23484 + components: + - type: Transform + pos: -10.5,62.5 + parent: 16527 + - uid: 23485 + components: + - type: Transform + pos: 2.5,52.5 + parent: 16527 +- proto: PottedPlantAlt4 + entities: + - uid: 23486 + components: + - type: Transform + pos: 19.5,17.5 + parent: 16527 +- proto: PottedPlantAlt5 + entities: + - uid: 11644 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 +- proto: PottedPlantAlt6 + entities: + - uid: 19396 + components: + - type: Transform + pos: -1.4685974,75.31946 + parent: 16527 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19397 + - uid: 23487 + components: + - type: Transform + pos: -14.5,66.5 + parent: 16527 +- proto: PottedPlantBioluminscent + entities: + - uid: 11645 + components: + - type: Transform + pos: 81.5,66.5 + parent: 2 + - uid: 11646 + components: + - type: Transform + pos: 71.5,66.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 918 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: 45.5,66.5 + parent: 2 + - uid: 11647 + components: + - type: Transform + pos: 45.5,81.5 + parent: 2 + - uid: 11648 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 11649 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 11650 + components: + - type: Transform + pos: 46.5,68.5 + parent: 2 + - uid: 11651 + components: + - type: Transform + pos: 54.5,28.5 + parent: 2 + - uid: 11652 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 11653 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 11654 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 11655 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 11656 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 11657 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 11658 + components: + - type: Transform + pos: 60.5,49.5 + parent: 2 + - uid: 11659 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 11660 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 11661 + components: + - type: Transform + pos: 64.5,57.5 + parent: 2 + - uid: 11662 + components: + - type: Transform + pos: 62.5,64.5 + parent: 2 + - uid: 11663 + components: + - type: Transform + pos: 42.5,70.5 + parent: 2 + - uid: 11664 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 11665 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 11670 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 11671 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 11672 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 11675 + components: + - type: Transform + pos: 48.5,76.5 + parent: 2 + - uid: 11676 + components: + - type: Transform + pos: 65.5,8.5 + parent: 2 + - uid: 11677 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 23488 + components: + - type: Transform + pos: 10.5,47.5 + parent: 16527 + - uid: 23489 + components: + - type: Transform + pos: 15.5,53.5 + parent: 16527 + - uid: 23490 + components: + - type: Transform + pos: 26.5,12.5 + parent: 16527 + - uid: 23491 + components: + - type: Transform + pos: 26.5,20.5 + parent: 16527 + - uid: 23492 + components: + - type: Transform + pos: 31.5,20.5 + parent: 16527 + - uid: 23493 + components: + - type: Transform + pos: 31.5,12.5 + parent: 16527 +- proto: PottedPlantRandomPlastic + entities: + - uid: 11678 + components: + - type: Transform + pos: 38.5,69.5 + parent: 2 +- proto: PowerCageMedium + entities: + - uid: 23494 + components: + - type: Transform + pos: -34.51117,49.411316 + parent: 16527 +- proto: PowerCageRecharger + entities: + - uid: 23495 + components: + - type: Transform + pos: -35.5,49.5 + parent: 16527 + - type: PointLight + enabled: False +- proto: PowerCageRechargerCircuitboard + entities: + - uid: 23496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.32927,31.543152 + parent: 16527 +- proto: PowerCellHigh + entities: + - uid: 23497 + components: + - type: Transform + pos: -36.492615,28.126892 + parent: 16527 +- proto: PowerCellMicroreactor + entities: + - uid: 23499 + components: + - type: Transform + parent: 23498 + - type: BatterySelfRecharger + autoRechargeRate: 58 + - type: Physics + canCollide: False +- proto: PowerCellPotato + entities: + - uid: 23500 + components: + - type: Transform + pos: -35.555298,34.033752 + parent: 16527 + - uid: 23501 + components: + - type: Transform + pos: -36.591446,30.578064 + parent: 16527 + - uid: 23502 + components: + - type: Transform + pos: -36.4196,30.796997 + parent: 16527 + - uid: 23503 + components: + - type: Transform + pos: -36.857132,30.671936 + parent: 16527 +- proto: PowerCellRecharger + entities: + - uid: 6628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-41.5 + parent: 2 + - uid: 11679 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 11680 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11681 + components: + - type: Transform + pos: 47.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11682 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11683 + components: + - type: Transform + pos: 17.5,57.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11684 + components: + - type: Transform + pos: 52.5,49.5 + parent: 2 + - uid: 11685 + components: + - type: Transform + pos: 46.5,73.5 + parent: 2 + - uid: 11686 + components: + - type: Transform + pos: 62.5,57.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11687 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 + - uid: 11688 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11689 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 11690 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 11691 + components: + - type: Transform + pos: 50.5,54.5 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: 43.5,62.5 + parent: 2 + - uid: 23504 + components: + - type: Transform + pos: -13.5,65.5 + parent: 16527 + - uid: 23505 + components: + - type: Transform + pos: -35.5,34.5 + parent: 16527 +- proto: PowerCellSmall + entities: + - uid: 23507 + components: + - type: Transform + parent: 23506 + - type: Physics + canCollide: False +- proto: PowerCellSmallPrinted + entities: + - uid: 3497 + components: + - type: Transform + pos: 21.635872,-41.430046 + parent: 2 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 11693 + components: + - type: Transform + pos: 61.5,79.5 + parent: 2 + - uid: 11695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,18.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + pos: -6.5,24.5 + parent: 2 + - uid: 21901 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 22518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 3142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,28.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: 51.5,73.5 + parent: 2 + - uid: 11230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,19.5 + parent: 2 + - uid: 11696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,9.5 + parent: 2 + - uid: 11697 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 11698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,15.5 + parent: 2 + - uid: 11699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,15.5 + parent: 2 + - uid: 11700 + components: + - type: Transform + pos: 80.5,19.5 + parent: 2 + - uid: 11701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,85.5 + parent: 2 + - uid: 11702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-3.5 + parent: 2 + - uid: 11703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 2 + - uid: 11704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + - uid: 11705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-3.5 + parent: 2 + - uid: 11706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,59.5 + parent: 2 + - uid: 11707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,59.5 + parent: 2 + - uid: 11708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,63.5 + parent: 2 + - uid: 11709 + components: + - type: Transform + pos: 71.5,66.5 + parent: 2 + - uid: 11710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,78.5 + parent: 2 + - uid: 11711 + components: + - type: Transform + pos: 55.5,38.5 + parent: 2 + - uid: 11712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,66.5 + parent: 2 + - uid: 11713 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 11714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 + - uid: 11715 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 11716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-8.5 + parent: 2 + - uid: 11717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 2 + - uid: 11718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-8.5 + parent: 2 + - uid: 11719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,16.5 + parent: 2 + - uid: 11720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,2.5 + parent: 2 + - uid: 11721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,9.5 + parent: 2 + - uid: 11722 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 11723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,56.5 + parent: 2 + - uid: 11724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,1.5 + parent: 2 + - uid: 11725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,80.5 + parent: 2 + - uid: 11726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,79.5 + parent: 2 + - uid: 11727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 + - uid: 11728 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 11729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,26.5 + parent: 2 + - uid: 11730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-5.5 + parent: 2 + - uid: 11731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,64.5 + parent: 2 + - uid: 11732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,60.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + pos: 42.5,66.5 + parent: 2 + - uid: 11735 + components: + - type: Transform + pos: 48.5,79.5 + parent: 2 + - uid: 11736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 11738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,20.5 + parent: 2 + - uid: 11739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 2 + - uid: 11740 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 11741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 2 + - uid: 11742 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,0.5 + parent: 2 + - uid: 11746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,3.5 + parent: 2 + - uid: 11747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,6.5 + parent: 2 + - uid: 11748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + - uid: 11750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 2 + - uid: 11751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - uid: 11752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - uid: 11753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 2 + - uid: 11754 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 11755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,8.5 + parent: 2 + - uid: 11756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-4.5 + parent: 2 + - uid: 11757 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 11758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 2 + - uid: 11760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,26.5 + parent: 2 + - uid: 11761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 + - uid: 11762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,7.5 + parent: 2 + - uid: 11763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-10.5 + parent: 2 + - uid: 11764 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 11765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,9.5 + parent: 2 + - uid: 11766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,35.5 + parent: 2 + - uid: 11767 + components: + - type: Transform + pos: 80.5,38.5 + parent: 2 + - uid: 11768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,30.5 + parent: 2 + - uid: 11769 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 11770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,32.5 + parent: 2 + - uid: 11771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,12.5 + parent: 2 + - uid: 11772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,47.5 + parent: 2 + - uid: 11773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,21.5 + parent: 2 + - uid: 11774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,14.5 + parent: 2 + - uid: 11775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,12.5 + parent: 2 + - uid: 11776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,48.5 + parent: 2 + - uid: 11777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,34.5 + parent: 2 + - uid: 11778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,35.5 + parent: 2 + - uid: 11779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,34.5 + parent: 2 + - uid: 11780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,26.5 + parent: 2 + - uid: 11781 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 11782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - uid: 11783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,36.5 + parent: 2 + - uid: 11784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 + parent: 2 + - uid: 11785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,23.5 + parent: 2 + - uid: 11786 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 11787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,24.5 + parent: 2 + - uid: 11788 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 11789 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 11790 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 11791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,31.5 + parent: 2 + - uid: 11792 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 11793 + components: + - type: Transform + pos: 29.5,38.5 + parent: 2 + - uid: 11794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,12.5 + parent: 2 + - uid: 11795 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 11797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,40.5 + parent: 2 + - uid: 11799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,50.5 + parent: 2 + - uid: 11801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,40.5 + parent: 2 + - uid: 11802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,36.5 + parent: 2 + - uid: 11804 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - uid: 11805 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 11806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,34.5 + parent: 2 + - uid: 11807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,43.5 + parent: 2 + - uid: 11808 + components: + - type: Transform + pos: 77.5,34.5 + parent: 2 + - uid: 11809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,47.5 + parent: 2 + - uid: 11810 + components: + - type: Transform + pos: 74.5,46.5 + parent: 2 + - uid: 11811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,48.5 + parent: 2 + - uid: 11812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,47.5 + parent: 2 + - uid: 11813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,47.5 + parent: 2 + - uid: 11814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,27.5 + parent: 2 + - uid: 11815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,39.5 + parent: 2 + - uid: 11816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,39.5 + parent: 2 + - uid: 11817 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 11818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,51.5 + parent: 2 + - uid: 11819 + components: + - type: Transform + pos: 56.5,53.5 + parent: 2 + - uid: 11820 + components: + - type: Transform + pos: 62.5,53.5 + parent: 2 + - uid: 11821 + components: + - type: Transform + pos: 67.5,53.5 + parent: 2 + - uid: 11822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,61.5 + parent: 2 + - uid: 11823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,62.5 + parent: 2 + - uid: 11824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,63.5 + parent: 2 + - uid: 11825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,55.5 + parent: 2 + - uid: 11826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,55.5 + parent: 2 + - uid: 11827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,62.5 + parent: 2 + - uid: 11828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,56.5 + parent: 2 + - uid: 11829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,61.5 + parent: 2 + - uid: 11830 + components: + - type: Transform + pos: 48.5,66.5 + parent: 2 + - uid: 11831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,69.5 + parent: 2 + - uid: 11832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,76.5 + parent: 2 + - uid: 11833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,30.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,43.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,81.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,74.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,71.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,52.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,41.5 + parent: 2 + - uid: 11842 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 11843 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 11844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,8.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 + - uid: 11846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-11.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-4.5 + parent: 2 + - uid: 11848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,57.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 + parent: 2 + - uid: 11850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-4.5 + parent: 2 + - uid: 11851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - uid: 11852 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 11853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - uid: 11854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - uid: 11855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,22.5 + parent: 2 + - uid: 11856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,27.5 + parent: 2 + - uid: 11857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,34.5 + parent: 2 + - uid: 11858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,40.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,44.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,16.5 + parent: 2 + - uid: 11862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,7.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + pos: 49.5,57.5 + parent: 2 + - uid: 11864 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,67.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: 13.5,83.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,58.5 + parent: 2 + - uid: 11868 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 11869 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 11870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,35.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,36.5 + parent: 2 + - uid: 11872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,34.5 + parent: 2 + - uid: 11873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-11.5 + parent: 2 + - uid: 11874 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 11875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 2 + - uid: 11876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-7.5 + parent: 2 + - uid: 11877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 2 + - uid: 11878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 2 + - uid: 11879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + - uid: 11880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,34.5 + parent: 2 + - uid: 11881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,20.5 + parent: 2 + - uid: 11884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,18.5 + parent: 2 + - uid: 11885 + components: + - type: Transform + pos: 83.5,50.5 + parent: 2 + - uid: 11886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,55.5 + parent: 2 + - uid: 11887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,52.5 + parent: 2 + - uid: 11888 + components: + - type: Transform + pos: 76.5,42.5 + parent: 2 + - uid: 11889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 2 + - uid: 11890 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 11891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + - uid: 11892 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 11893 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 11894 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 11895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 2 + - uid: 11896 + components: + - type: Transform + pos: 67.5,41.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 11898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,47.5 + parent: 2 + - uid: 11899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,32.5 + parent: 2 + - uid: 11900 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,1.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: 83.5,19.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,39.5 + parent: 2 + - uid: 11904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,37.5 + parent: 2 + - uid: 11905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-16.5 + parent: 2 + - uid: 11906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-3.5 + parent: 2 + - uid: 11907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,17.5 + parent: 2 + - uid: 11908 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 + - uid: 11909 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 11910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,24.5 + parent: 2 + - uid: 11911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,15.5 + parent: 2 + - uid: 11912 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 11913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,79.5 + parent: 2 + - uid: 11914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,2.5 + parent: 2 + - uid: 11915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,26.5 + parent: 2 + - uid: 11916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,20.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,20.5 + parent: 2 + - uid: 11918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,16.5 + parent: 2 + - uid: 11919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,73.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,69.5 + parent: 2 + - uid: 11921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,69.5 + parent: 2 + - uid: 11923 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,60.5 + parent: 2 + - uid: 12990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,26.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,75.5 + parent: 2 + - uid: 13353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,71.5 + parent: 2 + - uid: 13354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,76.5 + parent: 2 + - uid: 13363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,74.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,78.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + pos: 28.5,55.5 + parent: 2 + - uid: 13878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-42.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-34.5 + parent: 2 + - uid: 15682 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 + - uid: 21709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-39.5 + parent: 2 + - uid: 21710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-39.5 + parent: 2 + - uid: 21711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-39.5 + parent: 2 + - uid: 21713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-38.5 + parent: 2 + - uid: 21714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 2 + - uid: 21719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-34.5 + parent: 2 + - uid: 21870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,53.5 + parent: 2 + - uid: 21912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,81.5 + parent: 2 + - uid: 21915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,72.5 + parent: 2 + - uid: 21916 + components: + - type: Transform + pos: 37.5,84.5 + parent: 2 + - uid: 23508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,54.5 + parent: 16527 + - uid: 23509 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 16527 + - uid: 23510 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 16527 + - uid: 23511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 16527 + - uid: 23512 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 16527 + - uid: 23513 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 16527 + - uid: 23514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 16527 + - uid: 23515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 16527 + - uid: 23516 + components: + - type: Transform + pos: 5.5,12.5 + parent: 16527 + - uid: 23517 + components: + - type: Transform + pos: 14.5,8.5 + parent: 16527 + - uid: 23518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 16527 + - uid: 23519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 16527 + - uid: 23520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 16527 + - uid: 23521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 16527 + - uid: 23522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 16527 + - uid: 23523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 16527 + - uid: 23524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 16527 + - uid: 23525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 16527 + - uid: 23526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,28.5 + parent: 16527 + - uid: 23527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,15.5 + parent: 16527 + - uid: 23528 + components: + - type: Transform + pos: 25.5,20.5 + parent: 16527 + - uid: 23529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,12.5 + parent: 16527 + - uid: 23530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,18.5 + parent: 16527 + - uid: 23531 + components: + - type: Transform + pos: -15.5,25.5 + parent: 16527 + - uid: 23532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,24.5 + parent: 16527 + - uid: 23533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,14.5 + parent: 16527 + - uid: 23534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 16527 + - uid: 23535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,37.5 + parent: 16527 + - uid: 23536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,21.5 + parent: 16527 + - uid: 23537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,24.5 + parent: 16527 + - uid: 23538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,33.5 + parent: 16527 + - uid: 23539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,27.5 + parent: 16527 + - uid: 23540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,37.5 + parent: 16527 + - uid: 23541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,45.5 + parent: 16527 + - uid: 23542 + components: + - type: Transform + pos: -17.5,50.5 + parent: 16527 + - uid: 23543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,47.5 + parent: 16527 + - uid: 23544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,48.5 + parent: 16527 + - uid: 23545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,56.5 + parent: 16527 + - uid: 23546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,50.5 + parent: 16527 + - uid: 23547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,55.5 + parent: 16527 + - uid: 23548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,56.5 + parent: 16527 + - uid: 23549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,65.5 + parent: 16527 + - uid: 23550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,65.5 + parent: 16527 + - uid: 23551 + components: + - type: Transform + pos: 0.5,52.5 + parent: 16527 + - uid: 23552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,50.5 + parent: 16527 + - uid: 23553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,48.5 + parent: 16527 + - uid: 23554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,50.5 + parent: 16527 + - uid: 23555 + components: + - type: Transform + pos: 5.5,52.5 + parent: 16527 + - uid: 23556 + components: + - type: Transform + pos: 12.5,53.5 + parent: 16527 + - uid: 23557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,47.5 + parent: 16527 + - uid: 23558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,50.5 + parent: 16527 + - uid: 23559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,42.5 + parent: 16527 + - uid: 23560 + components: + - type: Transform + pos: 26.5,52.5 + parent: 16527 + - uid: 23561 + components: + - type: Transform + pos: 28.5,49.5 + parent: 16527 + - uid: 23562 + components: + - type: Transform + pos: 24.5,49.5 + parent: 16527 + - uid: 23563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,50.5 + parent: 16527 + - uid: 23564 + components: + - type: Transform + pos: 22.5,46.5 + parent: 16527 + - uid: 23565 + components: + - type: Transform + pos: 33.5,46.5 + parent: 16527 + - uid: 23566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,54.5 + parent: 16527 +- proto: PoweredlightBlue + entities: + - uid: 21913 + components: + - type: Transform + pos: 61.5,28.5 + parent: 2 + - uid: 21914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,26.5 + parent: 2 +- proto: PoweredlightCyan + entities: + - uid: 11941 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,26.5 + parent: 2 + - uid: 11943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,26.5 + parent: 2 + - type: PointLight + energy: 2 +- proto: PoweredlightEmpty + entities: + - uid: 23567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,21.5 + parent: 16527 + - uid: 23568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 16527 + - uid: 23569 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 16527 + - uid: 23570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 16527 + - uid: 23571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 16527 + - uid: 23572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,3.5 + parent: 16527 + - uid: 23573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 16527 + - uid: 23574 + components: + - type: Transform + pos: 11.5,4.5 + parent: 16527 + - uid: 23575 + components: + - type: Transform + pos: -4.5,12.5 + parent: 16527 + - uid: 23576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,9.5 + parent: 16527 + - uid: 23577 + components: + - type: Transform + pos: -13.5,8.5 + parent: 16527 + - uid: 23578 + components: + - type: Transform + pos: 32.5,20.5 + parent: 16527 + - uid: 23579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 16527 + - uid: 23580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,31.5 + parent: 16527 + - uid: 23581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,35.5 + parent: 16527 + - uid: 23582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,41.5 + parent: 16527 + - uid: 23583 + components: + - type: Transform + pos: -6.5,52.5 + parent: 16527 + - uid: 23584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,46.5 + parent: 16527 + - uid: 23585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,56.5 + parent: 16527 + - uid: 23586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,54.5 + parent: 16527 + - uid: 23587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,57.5 + parent: 16527 + - uid: 23588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,63.5 + parent: 16527 + - uid: 23589 + components: + - type: Transform + pos: -12.5,80.5 + parent: 16527 + - uid: 23590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,47.5 + parent: 16527 +- proto: PoweredlightExterior + entities: + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,54.5 + parent: 2 + - uid: 21732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,52.5 + parent: 2 + - type: PointLight + energy: 3 + color: '#FF66CCFF' +- proto: PoweredlightOrange + entities: + - uid: 11946 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 11947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,22.5 + parent: 2 + - uid: 11949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,72.5 + parent: 2 + - uid: 11950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,76.5 + parent: 2 + - uid: 11954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,84.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,80.5 + parent: 2 + - uid: 11956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,81.5 + parent: 2 + - uid: 11957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,76.5 + parent: 2 + - uid: 11958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,86.5 + parent: 2 + - uid: 23591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,70.5 + parent: 16527 + - uid: 23592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,70.5 + parent: 16527 + - uid: 23593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,76.5 + parent: 16527 + - uid: 23594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,76.5 + parent: 16527 +- proto: PoweredLightPostSmall + entities: + - uid: 23595 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 16527 + - uid: 23596 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 16527 + - uid: 23597 + components: + - type: Transform + pos: -31.5,47.5 + parent: 16527 + - uid: 23598 + components: + - type: Transform + pos: -24.5,55.5 + parent: 16527 +- proto: PoweredLightPostSmallEmpty + entities: + - uid: 23599 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 16527 + - uid: 23600 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 16527 +- proto: PoweredlightRed + entities: + - uid: 6177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-34.5 + parent: 2 + - uid: 11961 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 11962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,30.5 + parent: 2 + - uid: 11963 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 11964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,30.5 + parent: 2 + - uid: 21725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-30.5 + parent: 2 + - uid: 21818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-42.5 + parent: 2 + - uid: 21884 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 21885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-42.5 + parent: 2 + - uid: 21886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-37.5 + parent: 2 + - uid: 21887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 2 + - uid: 21888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-37.5 + parent: 2 + - uid: 21889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-34.5 + parent: 2 + - uid: 23601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,81.5 + parent: 16527 + - uid: 23602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,70.5 + parent: 16527 + - uid: 23603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,70.5 + parent: 16527 + - uid: 23604 + components: + - type: Transform + pos: 0.5,77.5 + parent: 16527 + - uid: 23605 + components: + - type: Transform + pos: 5.5,77.5 + parent: 16527 + - uid: 23606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,70.5 + parent: 16527 + - uid: 23607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,74.5 + parent: 16527 + - uid: 23608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,74.5 + parent: 16527 + - uid: 23609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,70.5 + parent: 16527 + - uid: 23610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,80.5 + parent: 16527 + - uid: 23611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,62.5 + parent: 16527 + - uid: 23612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,49.5 + parent: 16527 + - uid: 23613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,50.5 + parent: 16527 + - type: PoweredLight + on: False + - uid: 23614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,52.5 + parent: 16527 + - type: PoweredLight + on: False + - uid: 23615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,44.5 + parent: 16527 + - type: PoweredLight + on: False + - uid: 23616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,52.5 + parent: 16527 + - type: PoweredLight + on: False + - uid: 23617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,44.5 + parent: 16527 + - type: PoweredLight + on: False + - uid: 23618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,46.5 + parent: 16527 + - type: PoweredLight + on: False + - uid: 23619 + components: + - type: Transform + pos: -52.5,54.5 + parent: 16527 + - type: PoweredLight + on: False + - uid: 23620 + components: + - type: Transform + pos: -47.5,54.5 + parent: 16527 + - type: PoweredLight + on: False + - uid: 23621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,42.5 + parent: 16527 + - type: PoweredLight + on: False + - uid: 23622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,42.5 + parent: 16527 + - type: PoweredLight + on: False + - uid: 23623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,48.5 + parent: 16527 + - type: PoweredLight + on: False +- proto: PoweredlightSodium + entities: + - uid: 5307 + components: + - type: Transform + pos: 20.5,55.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,47.5 + parent: 2 + - type: PointLight + energy: 1.2 + radius: 5 + - uid: 5816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,41.5 + parent: 2 + - type: PointLight + energy: 1.2 + radius: 12 + - uid: 10376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,44.5 + parent: 2 + - uid: 10683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,54.5 + parent: 2 + - uid: 16172 + components: + - type: Transform + pos: 18.5,50.5 + parent: 2 + - type: PointLight + energy: 1.2 + - uid: 21488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,49.5 + parent: 2 + - uid: 21857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,40.5 + parent: 2 + - type: PointLight + energy: 1.2 + - uid: 21861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,41.5 + parent: 2 + - type: PointLight + energy: 1.5 + - uid: 21869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,46.5 + parent: 2 + - uid: 23624 + components: + - type: Transform + pos: 27.5,35.5 + parent: 16527 + - uid: 23625 + components: + - type: Transform + pos: 33.5,35.5 + parent: 16527 + - uid: 23626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 16527 +- proto: PoweredSmallLight + entities: + - uid: 4251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,2.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 + - uid: 11513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,52.5 + parent: 2 + - uid: 11965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,68.5 + parent: 2 + - uid: 11966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,82.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 11968 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 11969 + components: + - type: Transform + pos: 44.5,57.5 + parent: 2 + - uid: 11970 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 + - uid: 11971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,90.5 + parent: 2 + - uid: 11972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,6.5 + parent: 2 + - uid: 11973 + components: + - type: Transform + pos: 39.5,90.5 + parent: 2 + - uid: 11974 + components: + - type: Transform + pos: 86.5,57.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,7.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,88.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,22.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,90.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,8.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,19.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + pos: 48.5,41.5 + parent: 2 + - uid: 11987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - type: PointLight + energy: 0.6 + color: '#FF8227FF' + - uid: 11988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,18.5 + parent: 2 + - uid: 11989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,30.5 + parent: 2 + - uid: 11990 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,25.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,63.5 + parent: 2 + - uid: 11993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-17.5 + parent: 2 + - uid: 11994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - uid: 11995 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 11997 + components: + - type: Transform + pos: 72.5,10.5 + parent: 2 + - uid: 11998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,10.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,7.5 + parent: 2 + - uid: 12001 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 12002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,8.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,20.5 + parent: 2 + - uid: 12006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,53.5 + parent: 2 + - uid: 12007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,59.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,75.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 12009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,44.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 12010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 2 + - uid: 12011 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - uid: 12013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,3.5 + parent: 2 + - uid: 12015 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,19.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,17.5 + parent: 2 + - uid: 12020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,17.5 + parent: 2 + - uid: 12021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,37.5 + parent: 2 + - uid: 12022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,37.5 + parent: 2 + - uid: 12023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,43.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,43.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,51.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,61.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,58.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,61.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,58.5 + parent: 2 + - uid: 12031 + components: + - type: Transform + pos: 29.5,64.5 + parent: 2 + - uid: 12032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,59.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + pos: 30.5,67.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,58.5 + parent: 2 + - uid: 12035 + components: + - type: Transform + pos: 78.5,28.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,27.5 + parent: 2 + - uid: 12037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,28.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,55.5 + parent: 2 + - uid: 12039 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 12040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + - type: RgbLightController + - uid: 12041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 12042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 2 + - uid: 12045 + components: + - type: Transform + pos: 55.5,-9.5 + parent: 2 + - uid: 12046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 2 + - uid: 12047 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 12049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 2 + - uid: 12050 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 12051 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 12052 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 12053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-10.5 + parent: 2 + - uid: 12054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-2.5 + parent: 2 + - uid: 12055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,3.5 + parent: 2 + - uid: 12056 + components: + - type: Transform + pos: 69.5,4.5 + parent: 2 + - uid: 12057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,26.5 + parent: 2 + - uid: 12058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,15.5 + parent: 2 + - uid: 12059 + components: + - type: Transform + pos: 75.5,19.5 + parent: 2 + - uid: 12060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,41.5 + parent: 2 + - uid: 12061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,48.5 + parent: 2 + - uid: 12062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,60.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 12064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,20.5 + parent: 2 + - type: PointLight + energy: 0.6 + color: '#FF8227FF' + - uid: 12065 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 12066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,56.5 + parent: 2 + - uid: 12067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,73.5 + parent: 2 + - uid: 12068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,88.5 + parent: 2 + - uid: 12069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,88.5 + parent: 2 + - uid: 12070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,87.5 + parent: 2 + - uid: 12071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,68.5 + parent: 2 + - uid: 12072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,68.5 + parent: 2 + - uid: 12073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 96.5,16.5 + parent: 2 + - uid: 12074 + components: + - type: Transform + pos: 96.5,17.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + pos: 26.5,77.5 + parent: 2 + - uid: 12078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,64.5 + parent: 2 + - uid: 12079 + components: + - type: Transform + pos: 26.5,73.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + pos: 26.5,81.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,21.5 + parent: 2 + - uid: 12082 + components: + - type: Transform + pos: 26.5,75.5 + parent: 2 + - uid: 12083 + components: + - type: Transform + pos: 26.5,79.5 + parent: 2 + - uid: 12084 + components: + - type: Transform + pos: 26.5,83.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,5.5 + parent: 2 + - uid: 12087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,5.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: 61.5,24.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 2 + - uid: 12095 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,6.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,6.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 13427 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 13458 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 13896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,57.5 + parent: 2 + - uid: 15488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,52.5 + parent: 2 + - uid: 16479 + components: + - type: Transform + pos: 42.5,53.5 + parent: 2 + - uid: 21238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,52.5 + parent: 2 + - uid: 21712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-39.5 + parent: 2 + - uid: 23627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 16527 + - uid: 23628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 16527 + - uid: 23629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 16527 + - uid: 23630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 16527 + - uid: 23631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 16527 + - uid: 23632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 16527 + - uid: 23633 + components: + - type: Transform + pos: 2.5,6.5 + parent: 16527 + - uid: 23634 + components: + - type: Transform + pos: -1.5,6.5 + parent: 16527 + - uid: 23635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 16527 + - uid: 23636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 16527 + - uid: 23637 + components: + - type: Transform + pos: -1.5,12.5 + parent: 16527 + - uid: 23638 + components: + - type: Transform + pos: 2.5,12.5 + parent: 16527 + - uid: 23639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 16527 + - uid: 23640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 16527 + - uid: 23641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,20.5 + parent: 16527 + - uid: 23642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,27.5 + parent: 16527 + - uid: 23643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,23.5 + parent: 16527 + - uid: 23644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 16527 + - uid: 23645 + components: + - type: Transform + pos: -18.5,16.5 + parent: 16527 + - uid: 23646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 16527 + - uid: 23647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,7.5 + parent: 16527 + - uid: 23648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 16527 + - uid: 23649 + components: + - type: Transform + pos: 3.5,18.5 + parent: 16527 + - uid: 23650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 16527 + - uid: 23651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-8.5 + parent: 16527 + - uid: 23652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,22.5 + parent: 16527 + - uid: 23653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 16527 + - uid: 23654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,17.5 + parent: 16527 + - uid: 23655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 16527 + - uid: 23656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,20.5 + parent: 16527 + - uid: 23657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 16527 + - uid: 23658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,28.5 + parent: 16527 + - uid: 23659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,37.5 + parent: 16527 + - uid: 23660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,12.5 + parent: 16527 + - uid: 23661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 16527 + - uid: 23662 + components: + - type: Transform + pos: -2.5,35.5 + parent: 16527 + - uid: 23663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 16527 + - uid: 23664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,41.5 + parent: 16527 + - uid: 23665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,79.5 + parent: 16527 + - uid: 23666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,54.5 + parent: 16527 + - uid: 23667 + components: + - type: Transform + pos: -40.5,51.5 + parent: 16527 + - type: PoweredLight + on: False + - uid: 23668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,45.5 + parent: 16527 + - type: PoweredLight + on: False +- proto: PoweredSmallLightEmpty + entities: + - uid: 12099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-12.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 2 + - uid: 23669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 16527 + - uid: 23670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,23.5 + parent: 16527 + - uid: 23671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,27.5 + parent: 16527 + - uid: 23672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,20.5 + parent: 16527 + - uid: 23673 + components: + - type: Transform + pos: -13.5,16.5 + parent: 16527 + - uid: 23674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,11.5 + parent: 16527 + - uid: 23675 + components: + - type: Transform + pos: -2.5,18.5 + parent: 16527 + - uid: 23676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 16527 + - uid: 23677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,20.5 + parent: 16527 + - uid: 23678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,28.5 + parent: 16527 + - uid: 23679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,24.5 + parent: 16527 + - uid: 23680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 16527 + - uid: 23681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,32.5 + parent: 16527 + - uid: 23682 + components: + - type: Transform + pos: 3.5,35.5 + parent: 16527 + - uid: 23683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,45.5 + parent: 16527 +- proto: PoweredStrobeLightSiren + entities: + - uid: 21791 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 21792 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 2 + - uid: 21794 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 21795 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 2 + - uid: 21797 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 +- proto: PrinterDoc + entities: + - uid: 1771 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,22.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,61.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 12108 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 +- proto: PsychBed + entities: + - uid: 12109 + components: + - type: Transform + pos: 68.5,6.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + pos: 56.5,76.5 + parent: 2 +- proto: Puddle + entities: + - uid: 12111 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - type: SolutionContainerManager + solutions: + puddle: + temperature: 293.15 + canReact: True + maxVol: 1000 + name: null + reagents: + - data: null + ReagentId: Blood + Quantity: 30 + - type: StepTrigger + active: False + - uid: 12112 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - type: SolutionContainerManager + solutions: + puddle: + temperature: 293.15 + canReact: True + maxVol: 1000 + name: null + reagents: + - data: null + ReagentId: CopperBlood + Quantity: 30 + - type: StepTrigger + active: False +- proto: Rack + entities: + - uid: 12113 + components: + - type: Transform + pos: 58.5,36.5 + parent: 2 + - uid: 12114 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 12115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 2 + - uid: 12116 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 12117 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 12118 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 12119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,58.5 + parent: 2 + - uid: 12120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,57.5 + parent: 2 + - uid: 12121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,57.5 + parent: 2 + - uid: 12122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,71.5 + parent: 2 + - uid: 12123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,41.5 + parent: 2 + - uid: 12124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,37.5 + parent: 2 + - uid: 12125 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 12126 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 12127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-17.5 + parent: 2 + - uid: 12128 + components: + - type: Transform + pos: 75.5,24.5 + parent: 2 + - uid: 12129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,40.5 + parent: 2 + - uid: 12130 + components: + - type: Transform + pos: 66.5,32.5 + parent: 2 + - uid: 12131 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 12132 + components: + - type: Transform + pos: 78.5,11.5 + parent: 2 + - uid: 12133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 2 + - uid: 12134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 12135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 16134 + components: + - type: Transform + pos: 42.5,57.5 + parent: 2 + - uid: 23684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,23.5 + parent: 16527 + - uid: 23685 + components: + - type: Transform + pos: -12.5,27.5 + parent: 16527 + - uid: 23686 + components: + - type: Transform + pos: -27.5,29.5 + parent: 16527 + - uid: 23687 + components: + - type: Transform + pos: -27.5,30.5 + parent: 16527 + - uid: 23688 + components: + - type: Transform + pos: -20.5,14.5 + parent: 16527 + - uid: 23689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,33.5 + parent: 16527 + - uid: 23690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,34.5 + parent: 16527 + - uid: 23691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,26.5 + parent: 16527 + - uid: 23692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,47.5 + parent: 16527 + - uid: 23693 + components: + - type: Transform + pos: 7.5,60.5 + parent: 16527 + - uid: 23694 + components: + - type: Transform + pos: 7.5,54.5 + parent: 16527 + - uid: 23695 + components: + - type: Transform + pos: 7.5,57.5 + parent: 16527 + - uid: 23696 + components: + - type: Transform + pos: 1.5,80.5 + parent: 16527 + - uid: 23697 + components: + - type: Transform + pos: 4.5,82.5 + parent: 16527 + - uid: 23698 + components: + - type: Transform + pos: 4.5,79.5 + parent: 16527 + - uid: 23699 + components: + - type: Transform + pos: 1.5,82.5 + parent: 16527 + - uid: 23700 + components: + - type: Transform + pos: 3.5,75.5 + parent: 16527 + - uid: 23701 + components: + - type: Transform + pos: -9.5,69.5 + parent: 16527 + - uid: 23702 + components: + - type: Transform + pos: 23.5,54.5 + parent: 16527 + - uid: 23703 + components: + - type: Transform + pos: 23.5,55.5 + parent: 16527 + - uid: 23704 + components: + - type: Transform + pos: 21.5,56.5 + parent: 16527 + - uid: 23705 + components: + - type: Transform + pos: 21.5,55.5 + parent: 16527 + - uid: 23706 + components: + - type: Transform + pos: 24.5,57.5 + parent: 16527 +- proto: RadiationCollector + entities: + - uid: 12137 + components: + - type: Transform + pos: 50.5,70.5 + parent: 2 + - uid: 12138 + components: + - type: Transform + pos: 50.5,68.5 + parent: 2 + - uid: 12139 + components: + - type: Transform + pos: 50.5,69.5 + parent: 2 +- proto: RadiationCollectorFullTank + entities: + - uid: 12140 + components: + - type: Transform + pos: 54.5,69.5 + parent: 2 + - uid: 12141 + components: + - type: Transform + pos: 54.5,68.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + pos: 54.5,70.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 12143 + components: + - type: Transform + pos: 15.51898,8.56956 + parent: 2 + - uid: 12144 + components: + - type: Transform + pos: 15.51898,8.56956 + parent: 2 + - uid: 12145 + components: + - type: Transform + pos: 39.499268,30.540098 + parent: 2 + - uid: 12146 + components: + - type: Transform + pos: 39.499268,30.540098 + parent: 2 + - uid: 12147 + components: + - type: Transform + pos: 75.25991,15.642418 + parent: 2 +- proto: RagItem + entities: + - uid: 21251 + components: + - type: Transform + pos: 21.186382,55.838703 + parent: 2 + - uid: 23707 + components: + - type: Transform + pos: 11.558048,28.70389 + parent: 16527 +- proto: Railing + entities: + - uid: 250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,22.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,40.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,41.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,42.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,40.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,42.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,41.5 + parent: 2 + - uid: 10375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,42.5 + parent: 2 + - uid: 12148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 2 + - uid: 12151 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 2 + - uid: 12156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 2 + - uid: 12157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,6.5 + parent: 2 + - uid: 12158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,7.5 + parent: 2 + - uid: 12159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,8.5 + parent: 2 + - uid: 12160 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 + - uid: 12162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - uid: 12163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,9.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,9.5 + parent: 2 + - uid: 12165 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 12171 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 12172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 2 + - uid: 12173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 2 + - uid: 12976 + components: + - type: Transform + pos: 36.5,53.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + pos: 35.5,53.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,23.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,42.5 + parent: 2 + - uid: 21898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,20.5 + parent: 2 + - uid: 21899 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 21900 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 22507 + components: + - type: Transform + pos: -12.5,17.5 + parent: 2 + - uid: 22508 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 22509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,19.5 + parent: 2 + - uid: 22510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,19.5 + parent: 2 + - uid: 23708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 16527 + - uid: 23709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 16527 + - uid: 23710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 16527 + - uid: 23711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 16527 + - uid: 23712 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 16527 + - uid: 23713 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 16527 + - uid: 23714 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 16527 + - uid: 23715 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 16527 + - uid: 23716 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 16527 + - uid: 23717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,18.5 + parent: 16527 + - uid: 23718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 16527 + - uid: 23719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,17.5 + parent: 16527 + - uid: 23720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 16527 + - uid: 23721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 16527 + - uid: 23722 + components: + - type: Transform + pos: 5.5,15.5 + parent: 16527 + - uid: 23723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 16527 + - uid: 23724 + components: + - type: Transform + pos: -4.5,15.5 + parent: 16527 + - uid: 23725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 16527 + - uid: 23726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 16527 + - uid: 23727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 16527 + - uid: 23728 + components: + - type: Transform + pos: 0.5,17.5 + parent: 16527 + - uid: 23729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,34.5 + parent: 16527 + - uid: 23730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,33.5 + parent: 16527 + - uid: 23731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,32.5 + parent: 16527 + - uid: 23732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,31.5 + parent: 16527 + - uid: 23733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,30.5 + parent: 16527 + - uid: 23734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,27.5 + parent: 16527 + - uid: 23735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,26.5 + parent: 16527 + - uid: 23736 + components: + - type: Transform + pos: 34.5,25.5 + parent: 16527 + - uid: 23737 + components: + - type: Transform + pos: 33.5,25.5 + parent: 16527 + - uid: 23738 + components: + - type: Transform + pos: 27.5,25.5 + parent: 16527 + - uid: 23739 + components: + - type: Transform + pos: 26.5,25.5 + parent: 16527 + - uid: 23740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,26.5 + parent: 16527 + - uid: 23741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,27.5 + parent: 16527 + - uid: 23742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 16527 + - uid: 23743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,31.5 + parent: 16527 + - uid: 23744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,32.5 + parent: 16527 + - uid: 23745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,33.5 + parent: 16527 + - uid: 23746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,34.5 + parent: 16527 + - uid: 23747 + components: + - type: Transform + pos: -29.5,53.5 + parent: 16527 + - uid: 23748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,74.5 + parent: 16527 + - uid: 23749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,73.5 + parent: 16527 + - uid: 23750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,76.5 + parent: 16527 + - uid: 23751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,43.5 + parent: 16527 + - uid: 23752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,42.5 + parent: 16527 + - uid: 23753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,43.5 + parent: 16527 + - uid: 23754 + components: + - type: Transform + pos: 0.5,44.5 + parent: 16527 + - uid: 23755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,55.5 + parent: 16527 + - uid: 23756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,56.5 + parent: 16527 + - uid: 23757 + components: + - type: Transform + pos: 0.5,57.5 + parent: 16527 + - uid: 23758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,56.5 + parent: 16527 + - uid: 23759 + components: + - type: Transform + pos: -25.5,49.5 + parent: 16527 + - uid: 23760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,48.5 + parent: 16527 + - uid: 23761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,47.5 + parent: 16527 + - uid: 23762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,48.5 + parent: 16527 + - uid: 23763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,75.5 + parent: 16527 + - uid: 23764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,75.5 + parent: 16527 + - uid: 23765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,76.5 + parent: 16527 + - uid: 23766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,74.5 + parent: 16527 + - uid: 23767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,73.5 + parent: 16527 + - uid: 23768 + components: + - type: Transform + pos: -13.5,72.5 + parent: 16527 + - uid: 23769 + components: + - type: Transform + pos: -15.5,72.5 + parent: 16527 + - uid: 23770 + components: + - type: Transform + pos: -14.5,72.5 + parent: 16527 + - uid: 23771 + components: + - type: Transform + pos: -11.5,72.5 + parent: 16527 + - uid: 23772 + components: + - type: Transform + pos: -10.5,72.5 + parent: 16527 + - uid: 23773 + components: + - type: Transform + pos: -9.5,72.5 + parent: 16527 + - uid: 23774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,49.5 + parent: 16527 + - uid: 23775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,50.5 + parent: 16527 + - uid: 23776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,48.5 + parent: 16527 + - uid: 23777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,47.5 + parent: 16527 + - uid: 23778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,46.5 + parent: 16527 + - uid: 23779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,54.5 + parent: 16527 + - uid: 23780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,55.5 + parent: 16527 + - uid: 23781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,51.5 + parent: 16527 + - uid: 23782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,52.5 + parent: 16527 + - uid: 23783 + components: + - type: Transform + pos: -30.5,53.5 + parent: 16527 + - uid: 23784 + components: + - type: Transform + pos: -28.5,53.5 + parent: 16527 + - uid: 23785 + components: + - type: Transform + pos: -27.5,53.5 + parent: 16527 + - uid: 23786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,52.5 + parent: 16527 + - uid: 23787 + components: + - type: Transform + pos: -31.5,41.5 + parent: 16527 + - uid: 23788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,50.5 + parent: 16527 + - uid: 23789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,49.5 + parent: 16527 + - uid: 23790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,48.5 + parent: 16527 + - uid: 23791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,52.5 + parent: 16527 + - uid: 23792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,52.5 + parent: 16527 + - uid: 23793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,53.5 + parent: 16527 + - uid: 23794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,54.5 + parent: 16527 + - uid: 23795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,55.5 + parent: 16527 + - uid: 23796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,55.5 + parent: 16527 + - uid: 23797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,55.5 + parent: 16527 + - uid: 23798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,55.5 + parent: 16527 + - uid: 23799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,55.5 + parent: 16527 + - uid: 23800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,55.5 + parent: 16527 + - uid: 23801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,55.5 + parent: 16527 + - uid: 23802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,55.5 + parent: 16527 + - uid: 23803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,54.5 + parent: 16527 + - uid: 23804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,53.5 + parent: 16527 + - uid: 23805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,51.5 + parent: 16527 + - uid: 23806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,39.5 + parent: 16527 + - uid: 23807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,50.5 + parent: 16527 + - uid: 23808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,49.5 + parent: 16527 + - uid: 23809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,49.5 + parent: 16527 + - uid: 23810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,49.5 + parent: 16527 + - uid: 23811 + components: + - type: Transform + pos: -32.5,47.5 + parent: 16527 + - uid: 23812 + components: + - type: Transform + pos: -33.5,47.5 + parent: 16527 + - uid: 23813 + components: + - type: Transform + pos: -34.5,47.5 + parent: 16527 + - uid: 23814 + components: + - type: Transform + pos: -35.5,47.5 + parent: 16527 + - uid: 23815 + components: + - type: Transform + pos: -36.5,47.5 + parent: 16527 + - uid: 23816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,53.5 + parent: 16527 + - uid: 23817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,55.5 + parent: 16527 + - uid: 23818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,54.5 + parent: 16527 + - uid: 23819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,54.5 + parent: 16527 + - uid: 23820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,54.5 + parent: 16527 + - uid: 23821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,53.5 + parent: 16527 + - uid: 23822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,50.5 + parent: 16527 + - uid: 23823 + components: + - type: Transform + pos: -32.5,52.5 + parent: 16527 + - uid: 23824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,51.5 + parent: 16527 + - uid: 23825 + components: + - type: Transform + pos: 12.5,49.5 + parent: 16527 + - uid: 23826 + components: + - type: Transform + pos: 12.5,51.5 + parent: 16527 + - uid: 23827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,49.5 + parent: 16527 + - uid: 23828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,45.5 + parent: 16527 + - uid: 23829 + components: + - type: Transform + pos: -38.5,46.5 + parent: 16527 + - uid: 23830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,50.5 + parent: 16527 + - uid: 23831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,51.5 + parent: 16527 +- proto: RailingCorner + entities: + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,23.5 + parent: 2 + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,42.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,42.5 + parent: 2 + - uid: 12174 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,5.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 12177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,9.5 + parent: 2 + - uid: 12178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,9.5 + parent: 2 + - uid: 16197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,22.5 + parent: 2 + - uid: 21776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,23.5 + parent: 2 + - uid: 22511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,19.5 + parent: 2 + - uid: 22512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,17.5 + parent: 2 + - uid: 23832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 16527 + - uid: 23833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 16527 + - uid: 23834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 16527 + - uid: 23835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 16527 + - uid: 23836 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 16527 + - uid: 23837 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 16527 + - uid: 23838 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 16527 + - uid: 23839 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 16527 + - uid: 23840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,18.5 + parent: 16527 + - uid: 23841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,25.5 + parent: 16527 + - uid: 23842 + components: + - type: Transform + pos: 35.5,25.5 + parent: 16527 + - uid: 23843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,50.5 + parent: 16527 + - uid: 23844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,46.5 + parent: 16527 + - uid: 23845 + components: + - type: Transform + pos: -31.5,47.5 + parent: 16527 + - uid: 23846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,55.5 + parent: 16527 + - uid: 23847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,55.5 + parent: 16527 +- proto: RailingCornerSmall + entities: + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,23.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 11080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,40.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,16.5 + parent: 2 + - uid: 16204 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 21895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,18.5 + parent: 2 + - uid: 22513 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 22514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - uid: 23848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 16527 + - uid: 23849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 16527 + - uid: 23850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 16527 + - uid: 23851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 16527 + - uid: 23852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 16527 + - uid: 23853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 16527 + - uid: 23854 + components: + - type: Transform + pos: -3.5,17.5 + parent: 16527 + - uid: 23855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 16527 + - uid: 23856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,15.5 + parent: 16527 + - uid: 23857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,17.5 + parent: 16527 + - uid: 23858 + components: + - type: Transform + pos: 1.5,15.5 + parent: 16527 + - uid: 23859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 16527 + - uid: 23860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 16527 + - uid: 23861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 16527 + - uid: 23862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,35.5 + parent: 16527 + - uid: 23863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,35.5 + parent: 16527 + - uid: 23864 + components: + - type: Transform + pos: 1.5,42.5 + parent: 16527 + - uid: 23865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,42.5 + parent: 16527 + - uid: 23866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,44.5 + parent: 16527 + - uid: 23867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,44.5 + parent: 16527 + - uid: 23868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,57.5 + parent: 16527 + - uid: 23869 + components: + - type: Transform + pos: 1.5,55.5 + parent: 16527 + - uid: 23870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,55.5 + parent: 16527 + - uid: 23871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,57.5 + parent: 16527 + - uid: 23872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,47.5 + parent: 16527 + - uid: 23873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,49.5 + parent: 16527 + - uid: 23874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,49.5 + parent: 16527 + - uid: 23875 + components: + - type: Transform + pos: -24.5,47.5 + parent: 16527 + - uid: 23876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,53.5 + parent: 16527 + - uid: 23877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,53.5 + parent: 16527 + - uid: 23878 + components: + - type: Transform + pos: -33.5,49.5 + parent: 16527 + - uid: 23879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,50.5 + parent: 16527 + - uid: 23880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,46.5 + parent: 16527 +- proto: RailingRound + entities: + - uid: 3218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,24.5 + parent: 2 + - uid: 12182 + components: + - type: Transform + pos: 56.5,79.5 + parent: 2 + - uid: 23881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,51.5 + parent: 16527 +- proto: RandomArcade + entities: + - uid: 12183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,33.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,32.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 12185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,64.5 + parent: 2 + - uid: 12186 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 20435 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 +- proto: RandomBoard + entities: + - uid: 12187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,65.5 + parent: 2 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 23882 + components: + - type: Transform + pos: -16.5,22.5 + parent: 16527 + - uid: 23883 + components: + - type: Transform + pos: -9.5,24.5 + parent: 16527 + - uid: 23884 + components: + - type: Transform + pos: 2.5,37.5 + parent: 16527 + - uid: 23885 + components: + - type: Transform + pos: 25.5,48.5 + parent: 16527 +- proto: RandomCommandCorpseSpawner + entities: + - uid: 23886 + components: + - type: Transform + pos: 10.5,64.5 + parent: 16527 + - uid: 23887 + components: + - type: Transform + pos: -6.5,72.5 + parent: 16527 +- proto: RandomDrinkBottle + entities: + - uid: 12188 + components: + - type: Transform + pos: 68.5,63.5 + parent: 2 + - uid: 12189 + components: + - type: Transform + pos: 32.5,62.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 12190 + components: + - type: Transform + pos: 68.5,60.5 + parent: 2 + - uid: 13476 + components: + - type: Transform + pos: 24.5,47.5 + parent: 2 + - uid: 21428 + components: + - type: Transform + pos: 23.5,51.5 + parent: 2 + - uid: 21429 + components: + - type: Transform + pos: 20.5,51.5 + parent: 2 + - uid: 21430 + components: + - type: Transform + pos: 22.5,51.5 + parent: 2 +- proto: RandomDrinkSoda + entities: + - uid: 12191 + components: + - type: Transform + pos: 27.5,63.5 + parent: 2 +- proto: RandomEngineerCorpseSpawner + entities: + - uid: 23888 + components: + - type: Transform + pos: -0.5,41.5 + parent: 16527 + - uid: 23889 + components: + - type: Transform + pos: 20.5,34.5 + parent: 16527 + - uid: 23890 + components: + - type: Transform + pos: -2.5,34.5 + parent: 16527 + - uid: 23891 + components: + - type: Transform + pos: 30.5,51.5 + parent: 16527 +- proto: RandomFoodMeal + entities: + - uid: 5861 + components: + - type: Transform + pos: 25.5,47.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + pos: 68.5,57.5 + parent: 2 + - uid: 21389 + components: + - type: Transform + pos: 28.5,45.5 + parent: 2 + - uid: 21390 + components: + - type: Transform + pos: 30.5,43.5 + parent: 2 + - uid: 21391 + components: + - type: Transform + pos: 33.5,45.5 + parent: 2 + - uid: 21392 + components: + - type: Transform + pos: 30.5,46.5 + parent: 2 + - uid: 21448 + components: + - type: Transform + pos: 28.5,47.5 + parent: 2 + - uid: 21853 + components: + - type: Transform + pos: 26.5,47.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 12194 + components: + - type: Transform + pos: 68.5,60.5 + parent: 2 + - uid: 21257 + components: + - type: Transform + pos: 27.5,51.5 + parent: 2 + - uid: 21258 + components: + - type: Transform + pos: 29.5,51.5 + parent: 2 + - uid: 21259 + components: + - type: Transform + pos: 30.5,51.5 + parent: 2 + - uid: 21260 + components: + - type: Transform + pos: 28.5,51.5 + parent: 2 + - uid: 21261 + components: + - type: Transform + pos: 31.5,51.5 + parent: 2 + - uid: 23892 + components: + - type: Transform + pos: 31.5,56.5 + parent: 16527 +- proto: RandomInstruments + entities: + - uid: 12197 + components: + - type: Transform + pos: 28.5,63.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + pos: 32.5,63.5 + parent: 2 + - uid: 12199 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 +- proto: RandomMedicCorpseSpawner + entities: + - uid: 23893 + components: + - type: Transform + pos: 13.5,31.5 + parent: 16527 + - uid: 23894 + components: + - type: Transform + pos: 10.5,38.5 + parent: 16527 + - uid: 23895 + components: + - type: Transform + pos: -6.5,60.5 + parent: 16527 +- proto: RandomPainting + entities: + - uid: 12200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,10.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + pos: 66.5,60.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + pos: 67.5,63.5 + parent: 2 + - uid: 12203 + components: + - type: Transform + pos: 63.5,60.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + pos: 59.5,57.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 12207 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + pos: 19.5,63.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + pos: 11.5,46.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + pos: 35.5,62.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + pos: 9.5,56.5 + parent: 2 + - uid: 12213 + components: + - type: Transform + pos: 13.5,53.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + pos: 56.5,67.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + pos: 86.5,22.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + pos: 53.5,-8.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + pos: 84.5,12.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + pos: 64.5,2.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 12225 + components: + - type: Transform + pos: 65.5,30.5 + parent: 2 + - uid: 12226 + components: + - type: Transform + pos: 11.5,43.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + pos: 11.5,62.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,41.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,34.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + pos: 56.5,57.5 + parent: 2 + - uid: 21586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,56.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 12231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,37.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: 15.5,75.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + pos: 14.5,84.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + pos: 65.5,25.5 + parent: 2 + - uid: 23896 + components: + - type: Transform + pos: -16.5,5.5 + parent: 16527 + - uid: 23897 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 16527 + - uid: 23898 + components: + - type: Transform + pos: -12.5,10.5 + parent: 16527 + - uid: 23899 + components: + - type: Transform + pos: -4.5,13.5 + parent: 16527 + - uid: 23900 + components: + - type: Transform + pos: 5.5,13.5 + parent: 16527 + - uid: 23901 + components: + - type: Transform + pos: 13.5,10.5 + parent: 16527 + - uid: 23902 + components: + - type: Transform + pos: 17.5,5.5 + parent: 16527 + - uid: 23903 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 16527 + - uid: 23904 + components: + - type: Transform + pos: 15.5,39.5 + parent: 16527 + - uid: 23905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,32.5 + parent: 16527 + - uid: 23906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,29.5 + parent: 16527 + - uid: 23907 + components: + - type: Transform + pos: 10.5,39.5 + parent: 16527 + - uid: 23908 + components: + - type: Transform + pos: 1.5,36.5 + parent: 16527 + - uid: 23909 + components: + - type: Transform + pos: -0.5,36.5 + parent: 16527 + - uid: 23910 + components: + - type: Transform + pos: 3.5,11.5 + parent: 16527 + - uid: 23911 + components: + - type: Transform + pos: 15.5,19.5 + parent: 16527 + - uid: 23912 + components: + - type: Transform + pos: 1.5,83.5 + parent: 16527 + - uid: 23913 + components: + - type: Transform + pos: 4.5,83.5 + parent: 16527 + - uid: 23914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,57.5 + parent: 16527 + - uid: 23915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,53.5 + parent: 16527 + - uid: 23916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,48.5 + parent: 16527 + - uid: 23917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,47.5 + parent: 16527 + - uid: 23918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,47.5 + parent: 16527 + - uid: 23919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,47.5 + parent: 16527 + - uid: 23920 + components: + - type: Transform + pos: -21.5,10.5 + parent: 16527 + - uid: 23921 + components: + - type: Transform + pos: 18.5,23.5 + parent: 16527 + - uid: 23922 + components: + - type: Transform + pos: 38.5,29.5 + parent: 16527 + - uid: 23923 + components: + - type: Transform + pos: -6.5,53.5 + parent: 16527 + - uid: 23924 + components: + - type: Transform + pos: -11.5,46.5 + parent: 16527 + - uid: 23925 + components: + - type: Transform + pos: -17.5,51.5 + parent: 16527 + - uid: 23926 + components: + - type: Transform + pos: -14.5,60.5 + parent: 16527 + - uid: 23927 + components: + - type: Transform + pos: -8.5,56.5 + parent: 16527 + - uid: 23928 + components: + - type: Transform + pos: -29.5,43.5 + parent: 16527 + - uid: 23929 + components: + - type: Transform + pos: -25.5,37.5 + parent: 16527 + - uid: 23930 + components: + - type: Transform + pos: -37.5,34.5 + parent: 16527 + - uid: 23931 + components: + - type: Transform + pos: -31.5,28.5 + parent: 16527 + - uid: 23932 + components: + - type: Transform + pos: -28.5,48.5 + parent: 16527 + - uid: 23933 + components: + - type: Transform + pos: -16.5,66.5 + parent: 16527 + - uid: 23934 + components: + - type: Transform + pos: -8.5,62.5 + parent: 16527 + - uid: 23935 + components: + - type: Transform + pos: -8.5,70.5 + parent: 16527 + - uid: 23936 + components: + - type: Transform + pos: 3.5,56.5 + parent: 16527 + - uid: 23937 + components: + - type: Transform + pos: 6.5,67.5 + parent: 16527 + - uid: 23938 + components: + - type: Transform + pos: -2.5,74.5 + parent: 16527 + - uid: 23939 + components: + - type: Transform + pos: 8.5,70.5 + parent: 16527 +- proto: RandomPosterLegit + entities: + - uid: 6539 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + pos: 20.5,-44.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + pos: 28.5,-39.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,39.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + pos: 49.5,64.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + pos: 52.5,50.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 12245 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 12246 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 12247 + components: + - type: Transform + pos: 60.5,54.5 + parent: 2 + - uid: 12248 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 12249 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 12250 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 12251 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 + - uid: 12252 + components: + - type: Transform + pos: 84.5,55.5 + parent: 2 + - uid: 12253 + components: + - type: Transform + pos: 73.5,53.5 + parent: 2 + - uid: 12254 + components: + - type: Transform + pos: 34.5,40.5 + parent: 2 + - uid: 12255 + components: + - type: Transform + pos: 34.5,46.5 + parent: 2 + - uid: 12256 + components: + - type: Transform + pos: 48.5,48.5 + parent: 2 + - uid: 12257 + components: + - type: Transform + pos: 73.5,63.5 + parent: 2 + - uid: 12258 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 12259 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - uid: 12260 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 12261 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 12262 + components: + - type: Transform + pos: 80.5,40.5 + parent: 2 + - uid: 12263 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + pos: 10.5,36.5 + parent: 2 + - uid: 12265 + components: + - type: Transform + pos: 2.5,37.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + pos: 80.5,47.5 + parent: 2 + - uid: 12269 + components: + - type: Transform + pos: 69.5,31.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + pos: 84.5,39.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + pos: 73.5,22.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + pos: 38.5,42.5 + parent: 2 + - uid: 12276 + components: + - type: Transform + pos: 43.5,67.5 + parent: 2 + - uid: 12277 + components: + - type: Transform + pos: 45.5,73.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + pos: 55.5,62.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + pos: 46.5,55.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + pos: 52.5,57.5 + parent: 2 +- proto: RandomScienceCorpseSpawner + entities: + - uid: 12283 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 23940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,28.5 + parent: 16527 + - uid: 23941 + components: + - type: Transform + pos: -10.5,55.5 + parent: 16527 + - uid: 23942 + components: + - type: Transform + pos: -14.5,58.5 + parent: 16527 + - uid: 23943 + components: + - type: Transform + pos: -34.5,41.5 + parent: 16527 + - uid: 23944 + components: + - type: Transform + pos: -40.5,47.5 + parent: 16527 + - uid: 23945 + components: + - type: Transform + pos: -53.5,44.5 + parent: 16527 + - uid: 23946 + components: + - type: Transform + pos: -48.5,52.5 + parent: 16527 + - uid: 23947 + components: + - type: Transform + pos: 29.5,44.5 + parent: 16527 +- proto: RandomServiceCorpseSpawner + entities: + - uid: 23948 + components: + - type: Transform + pos: 10.5,62.5 + parent: 16527 +- proto: RandomSnacks + entities: + - uid: 12284 + components: + - type: Transform + pos: 67.5,32.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: 74.5,4.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: 76.5,2.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: 74.5,2.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: 73.5,3.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-6.5 + parent: 2 + - uid: 9690 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 + - uid: 11576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-11.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + pos: 59.5,36.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + pos: 43.5,60.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + pos: 39.5,67.5 + parent: 2 + - uid: 12288 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 12289 + components: + - type: Transform + pos: 57.5,40.5 + parent: 2 + - uid: 12290 + components: + - type: Transform + pos: 40.5,60.5 + parent: 2 + - uid: 12291 + components: + - type: Transform + pos: 43.5,63.5 + parent: 2 + - uid: 12292 + components: + - type: Transform + pos: 40.5,63.5 + parent: 2 + - uid: 12293 + components: + - type: Transform + pos: 57.5,39.5 + parent: 2 + - uid: 12294 + components: + - type: Transform + pos: 59.5,41.5 + parent: 2 + - uid: 12295 + components: + - type: Transform + pos: 57.5,37.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + pos: 55.5,40.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 2 + - uid: 12298 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 12299 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 12300 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 12301 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + pos: 49.5,56.5 + parent: 2 + - uid: 12305 + components: + - type: Transform + pos: 63.5,57.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + pos: 80.5,55.5 + parent: 2 + - uid: 12307 + components: + - type: Transform + pos: 72.5,44.5 + parent: 2 + - uid: 12308 + components: + - type: Transform + pos: 71.5,36.5 + parent: 2 + - uid: 12309 + components: + - type: Transform + pos: 80.5,37.5 + parent: 2 + - uid: 12310 + components: + - type: Transform + pos: 81.5,49.5 + parent: 2 + - uid: 12311 + components: + - type: Transform + pos: 71.5,27.5 + parent: 2 + - uid: 12312 + components: + - type: Transform + pos: 70.5,18.5 + parent: 2 + - uid: 12313 + components: + - type: Transform + pos: 71.5,12.5 + parent: 2 + - uid: 12314 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 12315 + components: + - type: Transform + pos: 56.5,12.5 + parent: 2 + - uid: 12316 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + pos: 50.5,5.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 12321 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 12322 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-14.5 + parent: 2 + - uid: 21618 + components: + - type: Transform + pos: 27.5,53.5 + parent: 2 + - uid: 23949 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 16527 + - uid: 23950 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 16527 + - uid: 23951 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 16527 + - uid: 23952 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 16527 + - uid: 23953 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 16527 + - uid: 23954 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 16527 + - uid: 23955 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 16527 + - uid: 23956 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 16527 + - uid: 23957 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 16527 + - uid: 23958 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 16527 + - uid: 23959 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 16527 + - uid: 23960 + components: + - type: Transform + pos: 15.5,0.5 + parent: 16527 + - uid: 23961 + components: + - type: Transform + pos: 17.5,2.5 + parent: 16527 + - uid: 23962 + components: + - type: Transform + pos: 5.5,11.5 + parent: 16527 + - uid: 23963 + components: + - type: Transform + pos: -0.5,8.5 + parent: 16527 + - uid: 23964 + components: + - type: Transform + pos: -1.5,11.5 + parent: 16527 + - uid: 23965 + components: + - type: Transform + pos: 2.5,9.5 + parent: 16527 + - uid: 23966 + components: + - type: Transform + pos: 5.5,5.5 + parent: 16527 + - uid: 23967 + components: + - type: Transform + pos: 6.5,2.5 + parent: 16527 + - uid: 23968 + components: + - type: Transform + pos: -7.5,12.5 + parent: 16527 + - uid: 23969 + components: + - type: Transform + pos: -11.5,6.5 + parent: 16527 + - uid: 23970 + components: + - type: Transform + pos: -9.5,4.5 + parent: 16527 + - uid: 23971 + components: + - type: Transform + pos: -16.5,2.5 + parent: 16527 + - uid: 23972 + components: + - type: Transform + pos: -13.5,0.5 + parent: 16527 + - uid: 23973 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 16527 + - uid: 23974 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 16527 + - uid: 23975 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 16527 + - uid: 23976 + components: + - type: Transform + pos: 11.5,4.5 + parent: 16527 + - uid: 23977 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 16527 + - uid: 23984 + components: + - type: Transform + pos: -19.5,11.5 + parent: 16527 + - uid: 23985 + components: + - type: Transform + pos: -17.5,8.5 + parent: 16527 + - uid: 23986 + components: + - type: Transform + pos: -15.5,13.5 + parent: 16527 + - uid: 23987 + components: + - type: Transform + pos: -19.5,9.5 + parent: 16527 + - uid: 23988 + components: + - type: Transform + pos: -19.5,13.5 + parent: 16527 + - uid: 23989 + components: + - type: Transform + pos: -16.5,6.5 + parent: 16527 + - uid: 23990 + components: + - type: Transform + pos: -20.5,6.5 + parent: 16527 + - uid: 23991 + components: + - type: Transform + pos: -14.5,11.5 + parent: 16527 + - uid: 23992 + components: + - type: Transform + pos: -12.5,13.5 + parent: 16527 + - uid: 23993 + components: + - type: Transform + pos: -17.5,10.5 + parent: 16527 + - uid: 23994 + components: + - type: Transform + pos: -15.5,9.5 + parent: 16527 + - uid: 23995 + components: + - type: Transform + pos: -0.5,45.5 + parent: 16527 + - uid: 23996 + components: + - type: Transform + pos: 1.5,42.5 + parent: 16527 + - uid: 23997 + components: + - type: Transform + pos: 0.5,40.5 + parent: 16527 + - uid: 23998 + components: + - type: Transform + pos: 5.5,42.5 + parent: 16527 + - uid: 23999 + components: + - type: Transform + pos: 6.5,45.5 + parent: 16527 + - uid: 24000 + components: + - type: Transform + pos: -8.5,49.5 + parent: 16527 + - uid: 24001 + components: + - type: Transform + pos: -7.5,49.5 + parent: 16527 + - uid: 24002 + components: + - type: Transform + pos: -6.5,51.5 + parent: 16527 + - uid: 24003 + components: + - type: Transform + pos: -4.5,48.5 + parent: 16527 + - uid: 24004 + components: + - type: Transform + pos: -4.5,50.5 + parent: 16527 + - uid: 24005 + components: + - type: Transform + pos: -0.5,51.5 + parent: 16527 + - uid: 24006 + components: + - type: Transform + pos: 0.5,48.5 + parent: 16527 + - uid: 24007 + components: + - type: Transform + pos: -0.5,54.5 + parent: 16527 + - uid: 24008 + components: + - type: Transform + pos: 1.5,56.5 + parent: 16527 + - uid: 24009 + components: + - type: Transform + pos: -0.5,57.5 + parent: 16527 + - uid: 24010 + components: + - type: Transform + pos: -6.5,55.5 + parent: 16527 + - uid: 24011 + components: + - type: Transform + pos: -4.5,57.5 + parent: 16527 + - uid: 24012 + components: + - type: Transform + pos: -0.5,33.5 + parent: 16527 + - uid: 24013 + components: + - type: Transform + pos: 1.5,37.5 + parent: 16527 + - uid: 24014 + components: + - type: Transform + pos: 4.5,34.5 + parent: 16527 + - uid: 24015 + components: + - type: Transform + pos: -2.5,15.5 + parent: 16527 + - uid: 24016 + components: + - type: Transform + pos: 3.5,17.5 + parent: 16527 + - uid: 24017 + components: + - type: Transform + pos: -9.5,16.5 + parent: 16527 + - uid: 24018 + components: + - type: Transform + pos: -6.5,15.5 + parent: 16527 + - uid: 24019 + components: + - type: Transform + pos: -17.5,23.5 + parent: 16527 + - uid: 24020 + components: + - type: Transform + pos: -13.5,19.5 + parent: 16527 + - uid: 24021 + components: + - type: Transform + pos: -9.5,21.5 + parent: 16527 + - uid: 24022 + components: + - type: Transform + pos: -9.5,28.5 + parent: 16527 + - uid: 24023 + components: + - type: Transform + pos: 14.5,14.5 + parent: 16527 + - uid: 24024 + components: + - type: Transform + pos: 16.5,17.5 + parent: 16527 + - uid: 24025 + components: + - type: Transform + pos: 14.5,20.5 + parent: 16527 + - uid: 24026 + components: + - type: Transform + pos: 14.5,24.5 + parent: 16527 + - uid: 24027 + components: + - type: Transform + pos: 12.5,30.5 + parent: 16527 + - uid: 24028 + components: + - type: Transform + pos: 14.5,34.5 + parent: 16527 + - uid: 24029 + components: + - type: Transform + pos: 16.5,37.5 + parent: 16527 + - uid: 24030 + components: + - type: Transform + pos: 23.5,17.5 + parent: 16527 + - uid: 24031 + components: + - type: Transform + pos: 26.5,13.5 + parent: 16527 + - uid: 24032 + components: + - type: Transform + pos: 33.5,17.5 + parent: 16527 + - uid: 24033 + components: + - type: Transform + pos: 21.5,21.5 + parent: 16527 + - uid: 24034 + components: + - type: Transform + pos: 19.5,25.5 + parent: 16527 + - uid: 24035 + components: + - type: Transform + pos: 21.5,28.5 + parent: 16527 + - uid: 24036 + components: + - type: Transform + pos: 20.5,15.5 + parent: 16527 + - uid: 24037 + components: + - type: Transform + pos: 21.5,32.5 + parent: 16527 + - uid: 24038 + components: + - type: Transform + pos: 19.5,35.5 + parent: 16527 + - uid: 24039 + components: + - type: Transform + pos: -5.5,62.5 + parent: 16527 + - uid: 24040 + components: + - type: Transform + pos: -6.5,65.5 + parent: 16527 + - uid: 24041 + components: + - type: Transform + pos: 2.5,64.5 + parent: 16527 + - uid: 24042 + components: + - type: Transform + pos: 6.5,57.5 + parent: 16527 + - uid: 24043 + components: + - type: Transform + pos: -1.5,64.5 + parent: 16527 + - uid: 24044 + components: + - type: Transform + pos: 7.5,65.5 + parent: 16527 + - uid: 24045 + components: + - type: Transform + pos: 5.5,54.5 + parent: 16527 + - uid: 24046 + components: + - type: Transform + pos: 11.5,58.5 + parent: 16527 + - uid: 24047 + components: + - type: Transform + pos: 10.5,55.5 + parent: 16527 + - uid: 24048 + components: + - type: Transform + pos: 11.5,62.5 + parent: 16527 + - uid: 24049 + components: + - type: Transform + pos: 5.5,61.5 + parent: 16527 + - uid: 24050 + components: + - type: Transform + pos: 2.5,60.5 + parent: 16527 + - uid: 24051 + components: + - type: Transform + pos: 0.5,71.5 + parent: 16527 + - uid: 24052 + components: + - type: Transform + pos: 2.5,68.5 + parent: 16527 + - uid: 24053 + components: + - type: Transform + pos: 5.5,70.5 + parent: 16527 + - uid: 24054 + components: + - type: Transform + pos: 6.5,74.5 + parent: 16527 + - uid: 24055 + components: + - type: Transform + pos: -0.5,75.5 + parent: 16527 + - uid: 24056 + components: + - type: Transform + pos: 4.5,77.5 + parent: 16527 + - uid: 24057 + components: + - type: Transform + pos: -14.5,54.5 + parent: 16527 + - uid: 24058 + components: + - type: Transform + pos: -13.5,58.5 + parent: 16527 + - uid: 24059 + components: + - type: Transform + pos: -11.5,54.5 + parent: 16527 + - uid: 24060 + components: + - type: Transform + pos: -10.5,59.5 + parent: 16527 + - uid: 24061 + components: + - type: Transform + pos: -19.5,53.5 + parent: 16527 + - uid: 24062 + components: + - type: Transform + pos: -18.5,55.5 + parent: 16527 + - uid: 24063 + components: + - type: Transform + pos: -18.5,48.5 + parent: 16527 + - uid: 24064 + components: + - type: Transform + pos: -15.5,47.5 + parent: 16527 + - uid: 24065 + components: + - type: Transform + pos: -12.5,50.5 + parent: 16527 + - uid: 24066 + components: + - type: Transform + pos: -11.5,49.5 + parent: 16527 + - uid: 24067 + components: + - type: Transform + pos: -0.5,62.5 + parent: 16527 + - uid: 24068 + components: + - type: Transform + pos: 1.5,65.5 + parent: 16527 + - uid: 24069 + components: + - type: Transform + pos: -3.5,66.5 + parent: 16527 + - uid: 24070 + components: + - type: Transform + pos: -13.5,63.5 + parent: 16527 + - uid: 24071 + components: + - type: Transform + pos: -10.5,66.5 + parent: 16527 + - uid: 24072 + components: + - type: Transform + pos: -10.5,61.5 + parent: 16527 + - uid: 24073 + components: + - type: Transform + pos: 3.5,77.5 + parent: 16527 + - uid: 24074 + components: + - type: Transform + pos: -25.5,42.5 + parent: 16527 + - uid: 24075 + components: + - type: Transform + pos: -34.5,39.5 + parent: 16527 + - uid: 24076 + components: + - type: Transform + pos: -29.5,40.5 + parent: 16527 + - uid: 24077 + components: + - type: Transform + pos: -34.5,35.5 + parent: 16527 + - uid: 24078 + components: + - type: Transform + pos: -33.5,32.5 + parent: 16527 + - uid: 24079 + components: + - type: Transform + pos: -35.5,29.5 + parent: 16527 + - uid: 24080 + components: + - type: Transform + pos: -29.5,35.5 + parent: 16527 + - uid: 24081 + components: + - type: Transform + pos: -28.5,38.5 + parent: 16527 + - uid: 24082 + components: + - type: Transform + pos: -26.5,47.5 + parent: 16527 + - uid: 24083 + components: + - type: Transform + pos: -23.5,49.5 + parent: 16527 + - uid: 24084 + components: + - type: Transform + pos: -31.5,53.5 + parent: 16527 + - uid: 24085 + components: + - type: Transform + pos: -35.5,48.5 + parent: 16527 + - uid: 24086 + components: + - type: Transform + pos: -25.5,54.5 + parent: 16527 + - uid: 24087 + components: + - type: Transform + pos: -40.5,49.5 + parent: 16527 + - uid: 24088 + components: + - type: Transform + pos: -38.5,47.5 + parent: 16527 + - uid: 24089 + components: + - type: Transform + pos: -45.5,45.5 + parent: 16527 + - uid: 24090 + components: + - type: Transform + pos: -50.5,51.5 + parent: 16527 + - uid: 24091 + components: + - type: Transform + pos: -54.5,49.5 + parent: 16527 + - uid: 24092 + components: + - type: Transform + pos: -52.5,43.5 + parent: 16527 + - uid: 24093 + components: + - type: Transform + pos: -44.5,52.5 + parent: 16527 +- proto: RandomSpawner100 + entities: + - uid: 24094 + components: + - type: Transform + pos: 22.5,56.5 + parent: 16527 + - uid: 24095 + components: + - type: Transform + pos: 21.5,60.5 + parent: 16527 + - uid: 24096 + components: + - type: Transform + pos: 23.5,51.5 + parent: 16527 + - uid: 24097 + components: + - type: Transform + pos: 17.5,50.5 + parent: 16527 + - uid: 24098 + components: + - type: Transform + pos: 23.5,59.5 + parent: 16527 + - uid: 24099 + components: + - type: Transform + pos: 10.5,51.5 + parent: 16527 + - uid: 24100 + components: + - type: Transform + pos: 5.5,49.5 + parent: 16527 + - uid: 24101 + components: + - type: Transform + pos: 7.5,52.5 + parent: 16527 + - uid: 24102 + components: + - type: Transform + pos: 14.5,52.5 + parent: 16527 + - uid: 24103 + components: + - type: Transform + pos: 15.5,47.5 + parent: 16527 + - uid: 24104 + components: + - type: Transform + pos: 18.5,59.5 + parent: 16527 + - uid: 24105 + components: + - type: Transform + pos: 19.5,62.5 + parent: 16527 + - uid: 24106 + components: + - type: Transform + pos: 23.5,63.5 + parent: 16527 + - uid: 24107 + components: + - type: Transform + pos: 25.5,60.5 + parent: 16527 + - uid: 24108 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 16527 + - uid: 24109 + components: + - type: Transform + pos: -14.5,4.5 + parent: 16527 + - uid: 24110 + components: + - type: Transform + pos: -10.5,10.5 + parent: 16527 + - uid: 24111 + components: + - type: Transform + pos: -6.5,9.5 + parent: 16527 + - uid: 24112 + components: + - type: Transform + pos: -4.5,11.5 + parent: 16527 + - uid: 24113 + components: + - type: Transform + pos: 0.5,10.5 + parent: 16527 + - uid: 24114 + components: + - type: Transform + pos: 7.5,9.5 + parent: 16527 + - uid: 24115 + components: + - type: Transform + pos: 13.5,8.5 + parent: 16527 + - uid: 24116 + components: + - type: Transform + pos: 10.5,2.5 + parent: 16527 + - uid: 24117 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 16527 + - uid: 24118 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 16527 + - uid: 24119 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 16527 +- proto: RandomVending + entities: + - uid: 12324 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 12326 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 16226 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 24120 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 16527 + - uid: 24121 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 16527 + - uid: 24122 + components: + - type: Transform + pos: 6.5,35.5 + parent: 16527 + - uid: 24123 + components: + - type: Transform + pos: 6.5,32.5 + parent: 16527 + - uid: 24124 + components: + - type: Transform + pos: -7.5,14.5 + parent: 16527 +- proto: RandomVendingDrinks + entities: + - uid: 12328 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + pos: 48.5,79.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + pos: 68.5,65.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + pos: 14.5,35.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + pos: 23.5,60.5 + parent: 2 + - uid: 24125 + components: + - type: Transform + pos: 18.5,52.5 + parent: 16527 +- proto: RandomVendingSnacks + entities: + - uid: 12338 + components: + - type: Transform + pos: 46.5,72.5 + parent: 2 + - uid: 12339 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - uid: 12340 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 12341 + components: + - type: Transform + pos: 68.5,55.5 + parent: 2 + - uid: 12342 + components: + - type: Transform + pos: 23.5,61.5 + parent: 2 + - uid: 24126 + components: + - type: Transform + pos: 11.5,18.5 + parent: 16527 + - uid: 24127 + components: + - type: Transform + pos: -8.5,14.5 + parent: 16527 + - uid: 24128 + components: + - type: Transform + pos: 19.5,52.5 + parent: 16527 +- proto: RCD + entities: + - uid: 12343 + components: + - type: Transform + pos: 38.550602,66.52208 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 12344 + components: + - type: Transform + pos: 38.361626,66.40564 + parent: 2 + - uid: 12345 + components: + - type: Transform + pos: 38.252075,66.42755 + parent: 2 +- proto: Recycler + entities: + - uid: 12348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,21.5 + parent: 2 + - uid: 24129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 16527 + - uid: 24130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,13.5 + parent: 16527 +- proto: ReinforcedGirder + entities: + - uid: 12349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-9.5 + parent: 2 + - uid: 12350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 2 + - uid: 24131 + components: + - type: Transform + pos: -17.5,39.5 + parent: 16527 + - uid: 24132 + components: + - type: Transform + pos: -15.5,39.5 + parent: 16527 + - uid: 24133 + components: + - type: Transform + pos: -11.5,39.5 + parent: 16527 + - uid: 24134 + components: + - type: Transform + pos: 26.5,53.5 + parent: 16527 + - uid: 24135 + components: + - type: Transform + pos: 31.5,47.5 + parent: 16527 + - uid: 24136 + components: + - type: Transform + pos: 26.5,50.5 + parent: 16527 + - uid: 24137 + components: + - type: Transform + pos: 19.5,48.5 + parent: 16527 + - uid: 24138 + components: + - type: Transform + pos: 32.5,49.5 + parent: 16527 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 11502 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 11504 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 11505 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 11508 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 11509 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 12352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,82.5 + parent: 2 + - uid: 12353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,81.5 + parent: 2 + - uid: 12354 + components: + - type: Transform + pos: 38.5,87.5 + parent: 2 + - uid: 12355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,87.5 + parent: 2 + - uid: 12356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,87.5 + parent: 2 + - uid: 12357 + components: + - type: Transform + pos: 38.5,91.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + pos: 36.5,89.5 + parent: 2 + - uid: 12359 + components: + - type: Transform + pos: 29.5,75.5 + parent: 2 + - uid: 12360 + components: + - type: Transform + pos: 29.5,73.5 + parent: 2 + - uid: 12361 + components: + - type: Transform + pos: 29.5,79.5 + parent: 2 + - uid: 12362 + components: + - type: Transform + pos: 29.5,77.5 + parent: 2 + - uid: 12363 + components: + - type: Transform + pos: 29.5,81.5 + parent: 2 + - uid: 12364 + components: + - type: Transform + pos: 29.5,83.5 + parent: 2 + - uid: 12365 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 12366 + components: + - type: Transform + pos: 55.5,54.5 + parent: 2 + - uid: 12367 + components: + - type: Transform + pos: 53.5,54.5 + parent: 2 + - uid: 12368 + components: + - type: Transform + pos: 54.5,54.5 + parent: 2 + - uid: 12369 + components: + - type: Transform + pos: 50.5,50.5 + parent: 2 + - uid: 12370 + components: + - type: Transform + pos: 48.5,48.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,80.5 + parent: 2 + - uid: 12372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,87.5 + parent: 2 + - uid: 12373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,87.5 + parent: 2 + - uid: 12374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,87.5 + parent: 2 + - uid: 12375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,87.5 + parent: 2 + - uid: 24139 + components: + - type: Transform + pos: -2.5,20.5 + parent: 16527 + - uid: 24140 + components: + - type: Transform + pos: -2.5,21.5 + parent: 16527 + - uid: 24141 + components: + - type: Transform + pos: 3.5,21.5 + parent: 16527 + - uid: 24142 + components: + - type: Transform + pos: 3.5,20.5 + parent: 16527 + - uid: 24143 + components: + - type: Transform + pos: -1.5,22.5 + parent: 16527 + - uid: 24144 + components: + - type: Transform + pos: 2.5,22.5 + parent: 16527 + - uid: 24145 + components: + - type: Transform + pos: 8.5,34.5 + parent: 16527 + - uid: 24146 + components: + - type: Transform + pos: 8.5,55.5 + parent: 16527 + - uid: 24147 + components: + - type: Transform + pos: 8.5,61.5 + parent: 16527 + - uid: 24148 + components: + - type: Transform + pos: -42.5,45.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 24149 + components: + - type: Transform + pos: -42.5,46.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 24150 + components: + - type: Transform + pos: -42.5,50.5 + parent: 16527 + missingComponents: + - Damageable + - uid: 24151 + components: + - type: Transform + pos: -42.5,51.5 + parent: 16527 + missingComponents: + - Damageable +- proto: ReinforcedPlasmaWindowDiagonal + entities: + - uid: 24152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 16527 + - uid: 24153 + components: + - type: Transform + pos: -2.5,22.5 + parent: 16527 + - uid: 24154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,40.5 + parent: 16527 + - uid: 24155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,41.5 + parent: 16527 +- proto: ReinforcedUraniumWindow + entities: + - uid: 12376 + components: + - type: Transform + pos: 53.5,67.5 + parent: 2 + - uid: 12377 + components: + - type: Transform + pos: 52.5,67.5 + parent: 2 + - uid: 12378 + components: + - type: Transform + pos: 51.5,67.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 3855 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-40.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-40.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-8.5 + parent: 2 + - uid: 9892 + components: + - type: Transform + pos: 49.5,2.5 + parent: 2 + - uid: 10202 + components: + - type: Transform + pos: 74.5,13.5 + parent: 2 + - uid: 10204 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + pos: 48.5,2.5 + parent: 2 + - uid: 10222 + components: + - type: Transform + pos: 47.5,2.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 62.5,38.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 11577 + components: + - type: Transform + pos: 73.5,13.5 + parent: 2 + - uid: 11800 + components: + - type: Transform + pos: 44.5,47.5 + parent: 2 + - uid: 11924 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + pos: 41.5,66.5 + parent: 2 + - uid: 12380 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 12383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,20.5 + parent: 2 + - uid: 12384 + components: + - type: Transform + pos: 51.5,37.5 + parent: 2 + - uid: 12385 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - uid: 12386 + components: + - type: Transform + pos: 82.5,14.5 + parent: 2 + - uid: 12387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,18.5 + parent: 2 + - uid: 12389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 2 + - uid: 12390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-1.5 + parent: 2 + - uid: 12391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,85.5 + parent: 2 + - uid: 12392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,85.5 + parent: 2 + - uid: 12393 + components: + - type: Transform + pos: 23.5,65.5 + parent: 2 + - uid: 12394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,16.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: 75.5,68.5 + parent: 2 + - uid: 12396 + components: + - type: Transform + pos: 77.5,67.5 + parent: 2 + - uid: 12397 + components: + - type: Transform + pos: 75.5,69.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + pos: 46.5,62.5 + parent: 2 + - uid: 12399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,22.5 + parent: 2 + - uid: 12400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 2 + - uid: 12401 + components: + - type: Transform + pos: 76.5,69.5 + parent: 2 + - uid: 12402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,15.5 + parent: 2 + - uid: 12403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,63.5 + parent: 2 + - uid: 12405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,15.5 + parent: 2 + - uid: 12406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,22.5 + parent: 2 + - uid: 12408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,38.5 + parent: 2 + - uid: 12409 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 + - uid: 12410 + components: + - type: Transform + pos: 86.5,56.5 + parent: 2 + - uid: 12412 + components: + - type: Transform + pos: 73.5,69.5 + parent: 2 + - uid: 12413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,85.5 + parent: 2 + - uid: 12414 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + pos: 36.5,85.5 + parent: 2 + - uid: 12416 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - uid: 12417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,85.5 + parent: 2 + - uid: 12418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,6.5 + parent: 2 + - uid: 12419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,85.5 + parent: 2 + - uid: 12420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,67.5 + parent: 2 + - uid: 12421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,67.5 + parent: 2 + - uid: 12424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,5.5 + parent: 2 + - uid: 12426 + components: + - type: Transform + pos: 77.5,69.5 + parent: 2 + - uid: 12427 + components: + - type: Transform + pos: 76.5,67.5 + parent: 2 + - uid: 12428 + components: + - type: Transform + pos: 79.5,20.5 + parent: 2 + - uid: 12429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,19.5 + parent: 2 + - uid: 12430 + components: + - type: Transform + pos: 31.5,69.5 + parent: 2 + - uid: 12431 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + pos: 42.5,85.5 + parent: 2 + - uid: 12433 + components: + - type: Transform + pos: 78.5,68.5 + parent: 2 + - uid: 12434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2 + - uid: 12435 + components: + - type: Transform + pos: 78.5,69.5 + parent: 2 + - uid: 12436 + components: + - type: Transform + pos: 80.5,69.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + pos: 82.5,20.5 + parent: 2 + - uid: 12438 + components: + - type: Transform + pos: 81.5,20.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,22.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,16.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - uid: 12442 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 + - uid: 12443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,34.5 + parent: 2 + - uid: 12444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,32.5 + parent: 2 + - uid: 12445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,32.5 + parent: 2 + - uid: 12446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,27.5 + parent: 2 + - uid: 12447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,28.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,33.5 + parent: 2 + - uid: 12449 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 12451 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 12453 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 12454 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 12455 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 12456 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 12457 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 12458 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 12459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 2 + - uid: 12460 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 12461 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 12462 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 12463 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 12464 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 12465 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 12466 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - uid: 12467 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 12468 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 12469 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 12470 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - uid: 12471 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 12472 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 12473 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 12474 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 12475 + components: + - type: Transform + pos: 32.5,85.5 + parent: 2 + - uid: 12476 + components: + - type: Transform + pos: 78.5,67.5 + parent: 2 + - uid: 12477 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 12478 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 12479 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,12.5 + parent: 2 + - uid: 12481 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 12482 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 12483 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 12484 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 12485 + components: + - type: Transform + pos: 21.5,35.5 + parent: 2 + - uid: 12486 + components: + - type: Transform + pos: 27.5,35.5 + parent: 2 + - uid: 12487 + components: + - type: Transform + pos: 28.5,35.5 + parent: 2 + - uid: 12488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,12.5 + parent: 2 + - uid: 12489 + components: + - type: Transform + pos: 31.5,35.5 + parent: 2 + - uid: 12490 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - uid: 12496 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 12500 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 12501 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - uid: 12503 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 12504 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 12505 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 12507 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 12508 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 12509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,7.5 + parent: 2 + - uid: 12510 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 12512 + components: + - type: Transform + pos: 60.5,50.5 + parent: 2 + - uid: 12513 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + pos: 62.5,50.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + pos: 46.5,5.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 2 + - uid: 12518 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 2 + - uid: 12519 + components: + - type: Transform + pos: 54.5,-6.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 12522 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 12530 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + pos: 16.5,70.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + pos: 16.5,71.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + pos: 16.5,68.5 + parent: 2 + - uid: 12536 + components: + - type: Transform + pos: 16.5,76.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + pos: 16.5,74.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + pos: 16.5,75.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + pos: 16.5,73.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + pos: 16.5,78.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + pos: 80.5,46.5 + parent: 2 + - uid: 12543 + components: + - type: Transform + pos: 80.5,45.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + pos: 80.5,50.5 + parent: 2 + - uid: 12545 + components: + - type: Transform + pos: 80.5,44.5 + parent: 2 + - uid: 12546 + components: + - type: Transform + pos: 80.5,49.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + pos: 9.5,58.5 + parent: 2 + - uid: 12548 + components: + - type: Transform + pos: 9.5,59.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + pos: 9.5,57.5 + parent: 2 + - uid: 12555 + components: + - type: Transform + pos: 22.5,63.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 12557 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 12559 + components: + - type: Transform + pos: 7.5,39.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 12561 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 + - uid: 12563 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + pos: 11.5,76.5 + parent: 2 + - uid: 12568 + components: + - type: Transform + pos: 10.5,73.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + pos: 10.5,69.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + pos: 11.5,68.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + pos: 11.5,67.5 + parent: 2 + - uid: 12575 + components: + - type: Transform + pos: 10.5,71.5 + parent: 2 + - uid: 12576 + components: + - type: Transform + pos: 11.5,66.5 + parent: 2 + - uid: 12577 + components: + - type: Transform + pos: 11.5,82.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + pos: 11.5,75.5 + parent: 2 + - uid: 12584 + components: + - type: Transform + pos: 10.5,79.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + pos: 10.5,77.5 + parent: 2 + - uid: 12587 + components: + - type: Transform + pos: 11.5,74.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + pos: 10.5,81.5 + parent: 2 + - uid: 12591 + components: + - type: Transform + pos: 11.5,83.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 12593 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 12595 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 12596 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 12598 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 12600 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,18.5 + parent: 2 + - uid: 12602 + components: + - type: Transform + pos: 76.5,18.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + pos: 76.5,16.5 + parent: 2 + - uid: 12604 + components: + - type: Transform + pos: 79.5,22.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + pos: 78.5,22.5 + parent: 2 + - uid: 12606 + components: + - type: Transform + pos: 78.5,20.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + pos: 73.5,21.5 + parent: 2 + - uid: 12608 + components: + - type: Transform + pos: 84.5,31.5 + parent: 2 + - uid: 12609 + components: + - type: Transform + pos: 84.5,37.5 + parent: 2 + - uid: 12610 + components: + - type: Transform + pos: 84.5,36.5 + parent: 2 + - uid: 12611 + components: + - type: Transform + pos: 84.5,38.5 + parent: 2 + - uid: 12612 + components: + - type: Transform + pos: 84.5,42.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + pos: 85.5,42.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + pos: 84.5,44.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + pos: 84.5,45.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + pos: 85.5,49.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + pos: 84.5,49.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + pos: 84.5,47.5 + parent: 2 + - uid: 12619 + components: + - type: Transform + pos: 85.5,47.5 + parent: 2 + - uid: 12620 + components: + - type: Transform + pos: 86.5,47.5 + parent: 2 + - uid: 12621 + components: + - type: Transform + pos: 86.5,49.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + pos: 86.5,42.5 + parent: 2 + - uid: 12623 + components: + - type: Transform + pos: 86.5,40.5 + parent: 2 + - uid: 12624 + components: + - type: Transform + pos: 85.5,40.5 + parent: 2 + - uid: 12625 + components: + - type: Transform + pos: 84.5,40.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + pos: 74.5,29.5 + parent: 2 + - uid: 12627 + components: + - type: Transform + pos: 76.5,29.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + pos: 75.5,29.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + pos: 77.5,27.5 + parent: 2 + - uid: 12630 + components: + - type: Transform + pos: 77.5,28.5 + parent: 2 + - uid: 12631 + components: + - type: Transform + pos: 76.5,25.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + pos: 77.5,26.5 + parent: 2 + - uid: 12633 + components: + - type: Transform + pos: 74.5,25.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + pos: 75.5,25.5 + parent: 2 + - uid: 12635 + components: + - type: Transform + pos: 73.5,26.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + pos: 73.5,27.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + pos: 73.5,28.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + pos: 78.5,43.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + pos: 79.5,43.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + pos: 77.5,46.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + pos: 77.5,45.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + pos: 77.5,44.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + pos: 77.5,49.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + pos: 77.5,48.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + pos: 84.5,30.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + pos: 84.5,33.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + pos: 84.5,34.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: 40.5,74.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + pos: 40.5,75.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + pos: 40.5,76.5 + parent: 2 + - uid: 12652 + components: + - type: Transform + pos: 31.5,73.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + pos: 31.5,72.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + pos: 31.5,75.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + pos: 31.5,74.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + pos: 31.5,77.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + pos: 31.5,76.5 + parent: 2 + - uid: 12658 + components: + - type: Transform + pos: 31.5,78.5 + parent: 2 + - uid: 12659 + components: + - type: Transform + pos: 31.5,79.5 + parent: 2 + - uid: 12660 + components: + - type: Transform + pos: 31.5,80.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + pos: 31.5,71.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + pos: 31.5,81.5 + parent: 2 + - uid: 12663 + components: + - type: Transform + pos: 31.5,82.5 + parent: 2 + - uid: 12664 + components: + - type: Transform + pos: 31.5,83.5 + parent: 2 + - uid: 12665 + components: + - type: Transform + pos: 84.5,52.5 + parent: 2 + - uid: 12666 + components: + - type: Transform + pos: 84.5,53.5 + parent: 2 + - uid: 12667 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 12672 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 12673 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 12674 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 12676 + components: + - type: Transform + pos: 84.5,60.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + pos: 84.5,59.5 + parent: 2 + - uid: 12678 + components: + - type: Transform + pos: 86.5,59.5 + parent: 2 + - uid: 12679 + components: + - type: Transform + pos: 84.5,61.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + pos: 86.5,60.5 + parent: 2 + - uid: 12681 + components: + - type: Transform + pos: 85.5,58.5 + parent: 2 + - uid: 12682 + components: + - type: Transform + pos: 85.5,62.5 + parent: 2 + - uid: 12683 + components: + - type: Transform + pos: 86.5,61.5 + parent: 2 + - uid: 12684 + components: + - type: Transform + pos: 87.5,62.5 + parent: 2 + - uid: 12685 + components: + - type: Transform + pos: 87.5,58.5 + parent: 2 + - uid: 12686 + components: + - type: Transform + pos: 84.5,56.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + pos: 85.5,56.5 + parent: 2 + - uid: 12688 + components: + - type: Transform + pos: 87.5,56.5 + parent: 2 + - uid: 12689 + components: + - type: Transform + pos: 84.5,64.5 + parent: 2 + - uid: 12690 + components: + - type: Transform + pos: 85.5,64.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + pos: 86.5,64.5 + parent: 2 + - uid: 12692 + components: + - type: Transform + pos: 87.5,64.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + pos: 10.5,46.5 + parent: 2 + - uid: 12694 + components: + - type: Transform + pos: 11.5,42.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + pos: 23.5,63.5 + parent: 2 + - uid: 12696 + components: + - type: Transform + pos: 80.5,48.5 + parent: 2 + - uid: 12697 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 + - uid: 12698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,65.5 + parent: 2 + - uid: 12699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,65.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,65.5 + parent: 2 + - uid: 12701 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 12702 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 12703 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - uid: 12704 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 12705 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 12706 + components: + - type: Transform + pos: 11.5,44.5 + parent: 2 + - uid: 12707 + components: + - type: Transform + pos: 50.5,-19.5 + parent: 2 + - uid: 12708 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - uid: 12709 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + pos: 75.5,67.5 + parent: 2 + - uid: 12711 + components: + - type: Transform + pos: 54.5,-15.5 + parent: 2 + - uid: 12712 + components: + - type: Transform + pos: 55.5,-15.5 + parent: 2 + - uid: 12713 + components: + - type: Transform + pos: 56.5,-15.5 + parent: 2 + - uid: 12714 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 + - uid: 12715 + components: + - type: Transform + pos: 58.5,-15.5 + parent: 2 + - uid: 12716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-12.5 + parent: 2 + - uid: 12717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,38.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,15.5 + parent: 2 + - uid: 12719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,7.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,81.5 + parent: 2 + - uid: 12721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,19.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,23.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,11.5 + parent: 2 + - uid: 12725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,19.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: 52.5,38.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,44.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,42.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,39.5 + parent: 2 + - uid: 12731 + components: + - type: Transform + pos: 57.5,35.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: 58.5,42.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-4.5 + parent: 2 + - uid: 12734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-4.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,40.5 + parent: 2 + - uid: 12737 + components: + - type: Transform + pos: 22.5,65.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,7.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,38.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,11.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,11.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,80.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + pos: 18.5,67.5 + parent: 2 + - uid: 12746 + components: + - type: Transform + pos: 22.5,68.5 + parent: 2 + - uid: 12747 + components: + - type: Transform + pos: 23.5,68.5 + parent: 2 + - uid: 12748 + components: + - type: Transform + pos: 48.5,54.5 + parent: 2 + - uid: 12749 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,84.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + pos: 49.5,63.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + pos: 53.5,64.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 13686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-9.5 + parent: 2 + - uid: 13778 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + pos: 51.5,58.5 + parent: 2 + - uid: 14651 + components: + - type: Transform + pos: 49.5,62.5 + parent: 2 + - uid: 14689 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: 42.5,46.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + pos: 41.5,46.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: 38.5,46.5 + parent: 2 + - uid: 16139 + components: + - type: Transform + pos: 52.5,64.5 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: 51.5,64.5 + parent: 2 + - uid: 16142 + components: + - type: Transform + pos: 49.5,61.5 + parent: 2 + - uid: 16212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,54.5 + parent: 2 + - uid: 16311 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 2 + - uid: 16363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-44.5 + parent: 2 + - uid: 16365 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - uid: 16440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-44.5 + parent: 2 + - uid: 16526 + components: + - type: Transform + pos: 81.5,14.5 + parent: 2 + - uid: 21199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,50.5 + parent: 2 + - uid: 22207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,54.5 + parent: 2 + - uid: 22208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,54.5 + parent: 2 + - uid: 22209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,54.5 + parent: 2 + - uid: 22210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,54.5 + parent: 2 + - uid: 24156 + components: + - type: Transform + pos: 3.5,44.5 + parent: 16527 + - uid: 24157 + components: + - type: Transform + pos: 3.5,45.5 + parent: 16527 + - uid: 24158 + components: + - type: Transform + pos: 3.5,41.5 + parent: 16527 + - uid: 24159 + components: + - type: Transform + pos: 23.5,33.5 + parent: 16527 + - uid: 24160 + components: + - type: Transform + pos: 3.5,5.5 + parent: 16527 + - uid: 24161 + components: + - type: Transform + pos: 3.5,4.5 + parent: 16527 + - uid: 24162 + components: + - type: Transform + pos: 3.5,3.5 + parent: 16527 + - uid: 24163 + components: + - type: Transform + pos: 3.5,2.5 + parent: 16527 + - uid: 24164 + components: + - type: Transform + pos: 3.5,1.5 + parent: 16527 + - uid: 24169 + components: + - type: Transform + pos: -10.5,26.5 + parent: 16527 + - uid: 24170 + components: + - type: Transform + pos: -9.5,26.5 + parent: 16527 + - uid: 24171 + components: + - type: Transform + pos: -6.5,26.5 + parent: 16527 + - uid: 24172 + components: + - type: Transform + pos: -7.5,26.5 + parent: 16527 + - uid: 24173 + components: + - type: Transform + pos: -26.5,32.5 + parent: 16527 + - uid: 24174 + components: + - type: Transform + pos: -23.5,32.5 + parent: 16527 + - uid: 24175 + components: + - type: Transform + pos: 13.5,23.5 + parent: 16527 + - uid: 24176 + components: + - type: Transform + pos: 15.5,23.5 + parent: 16527 + - uid: 24177 + components: + - type: Transform + pos: 15.5,27.5 + parent: 16527 + - uid: 24178 + components: + - type: Transform + pos: 13.5,27.5 + parent: 16527 + - uid: 24179 + components: + - type: Transform + pos: 22.5,33.5 + parent: 16527 + - uid: 24180 + components: + - type: Transform + pos: 22.5,32.5 + parent: 16527 + - uid: 24181 + components: + - type: Transform + pos: 23.5,34.5 + parent: 16527 + - uid: 24182 + components: + - type: Transform + pos: -2.5,57.5 + parent: 16527 + - uid: 24183 + components: + - type: Transform + pos: 0.5,67.5 + parent: 16527 + - uid: 24184 + components: + - type: Transform + pos: 2.5,67.5 + parent: 16527 + - uid: 24185 + components: + - type: Transform + pos: 4.5,67.5 + parent: 16527 + - uid: 24186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,52.5 + parent: 16527 + - uid: 24187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,51.5 + parent: 16527 + - uid: 24188 + components: + - type: Transform + pos: 13.5,50.5 + parent: 16527 + - uid: 24189 + components: + - type: Transform + pos: 11.5,50.5 + parent: 16527 + - uid: 24190 + components: + - type: Transform + pos: 24.5,52.5 + parent: 16527 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 24191 + components: + - type: Transform + pos: -27.5,32.5 + parent: 16527 + - uid: 24192 + components: + - type: Transform + pos: -26.5,33.5 + parent: 16527 + - uid: 24193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,32.5 + parent: 16527 +- proto: RemoteSignaller + entities: + - uid: 21499 + components: + - type: MetaData + desc: Крайне рекомендуется не использовать данный передатчик. + name: пульт от ядерки + - type: Transform + rot: 0.22689280275926285 rad + pos: 8.359158,27.835148 + parent: 2 +- proto: RemoteSignallerAdvanced + entities: + - uid: 12751 + components: + - type: Transform + pos: 24.749239,-6.8637943 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 12752 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 +- proto: ResearchDisk + entities: + - uid: 24194 + components: + - type: Transform + pos: 19.515335,33.568176 + parent: 16527 +- proto: ResearchDisk10000 + entities: + - uid: 24195 + components: + - type: Transform + pos: -23.40799,39.522766 + parent: 16527 +- proto: ResearchDisk5000 + entities: + - uid: 24196 + components: + - type: Transform + pos: -15.354095,59.40692 + parent: 16527 +- proto: Retractor + entities: + - uid: 12753 + components: + - type: Transform + pos: 50.50245,-8.393928 + parent: 2 +- proto: RevolverCapGunFake + entities: + - uid: 1027 + components: + - type: Transform + parent: 1021 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RGBStaff + entities: + - uid: 12754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.47195,-10.533157 + parent: 2 +- proto: RightArmVulpkanin + entities: + - uid: 24197 + components: + - type: Transform + pos: -23.754704,42.314075 + parent: 16527 +- proto: RightHandVulpkanin + entities: + - uid: 24198 + components: + - type: Transform + pos: -23.017288,42.140076 + parent: 16527 +- proto: RiotBulletShield + entities: + - uid: 24199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.80603,-6.4206114 + parent: 16527 + - uid: 24200 + components: + - type: Transform + pos: 14.534427,-8.525803 + parent: 16527 +- proto: RipleyHarness + entities: + - uid: 24201 + components: + - type: Transform + pos: -15.2898035,22.08592 + parent: 16527 +- proto: RobocopCircuitBoard + entities: + - uid: 587 + components: + - type: Transform + parent: 577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RockGuitarInstrument + entities: + - uid: 21489 + components: + - type: Transform + pos: 20.910074,40.483597 + parent: 2 +- proto: RollerBed + entities: + - uid: 12755 + components: + - type: Transform + pos: 46.72002,3.5596633 + parent: 2 + - uid: 12756 + components: + - type: Transform + pos: 45.423145,2.6690383 + parent: 2 + - uid: 12757 + components: + - type: Transform + pos: 38.46535,5.7159133 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: 39.54532,-3.1076193 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 39.54532,-2.1701193 + parent: 2 + - uid: 24202 + components: + - type: Transform + pos: -5.971924,49.09308 + parent: 16527 + - uid: 24203 + components: + - type: Transform + pos: -4.2531586,51.96808 + parent: 16527 +- proto: RollerBedSpawnFolded + entities: + - uid: 12760 + components: + - type: Transform + pos: 38.490265,8.687768 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 12761 + components: + - type: Transform + pos: 8.426081,9.454671 + parent: 2 + - uid: 12762 + components: + - type: Transform + pos: 18.22908,20.781065 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 12763 + components: + - type: Transform + pos: 8.722956,9.704671 + parent: 2 + - uid: 12764 + components: + - type: Transform + pos: 18.571537,20.805527 + parent: 2 +- proto: RubberStampGreytide + entities: + - uid: 12765 + components: + - type: Transform + pos: 34.806297,-10.467799 + parent: 2 +- proto: SadTromboneImplanter + entities: + - uid: 24204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.48282,47.57611 + parent: 16527 +- proto: SalvageCanisterSpawner + entities: + - uid: 24205 + components: + - type: Transform + pos: 2.5,33.5 + parent: 16527 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 12098 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 24206 + components: + - type: Transform + pos: 7.5,45.5 + parent: 16527 + - uid: 24207 + components: + - type: Transform + pos: 25.5,17.5 + parent: 16527 + - uid: 24208 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 16527 + - uid: 24209 + components: + - type: Transform + pos: -12.5,7.5 + parent: 16527 + - uid: 24210 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 16527 + - uid: 24211 + components: + - type: Transform + pos: 12.5,9.5 + parent: 16527 + - uid: 24212 + components: + - type: Transform + pos: 12.5,20.5 + parent: 16527 + - uid: 24213 + components: + - type: Transform + pos: -13.5,12.5 + parent: 16527 + - uid: 24214 + components: + - type: Transform + pos: -18.5,15.5 + parent: 16527 + - uid: 24215 + components: + - type: Transform + pos: -18.5,7.5 + parent: 16527 + - uid: 24216 + components: + - type: Transform + pos: 17.5,32.5 + parent: 16527 + - uid: 24217 + components: + - type: Transform + pos: 15.5,30.5 + parent: 16527 + - uid: 24218 + components: + - type: Transform + pos: -5.5,48.5 + parent: 16527 + - uid: 24219 + components: + - type: Transform + pos: -5.5,52.5 + parent: 16527 + - uid: 24220 + components: + - type: Transform + pos: -5.5,57.5 + parent: 16527 + - uid: 24221 + components: + - type: Transform + pos: 11.5,56.5 + parent: 16527 + - uid: 24222 + components: + - type: Transform + pos: 10.5,66.5 + parent: 16527 + - uid: 24223 + components: + - type: Transform + pos: -4.5,64.5 + parent: 16527 + - uid: 24224 + components: + - type: Transform + pos: 2.5,62.5 + parent: 16527 + - uid: 24225 + components: + - type: Transform + pos: -50.5,47.5 + parent: 16527 + - uid: 24226 + components: + - type: Transform + pos: -44.5,46.5 + parent: 16527 + - uid: 24227 + components: + - type: Transform + pos: -54.5,52.5 + parent: 16527 + - uid: 24228 + components: + - type: Transform + pos: 3.5,71.5 + parent: 16527 + - uid: 24229 + components: + - type: Transform + pos: -0.5,74.5 + parent: 16527 + - uid: 24230 + components: + - type: Transform + pos: 5.5,50.5 + parent: 16527 + - uid: 24231 + components: + - type: Transform + pos: 21.5,62.5 + parent: 16527 + - uid: 24232 + components: + - type: Transform + pos: 23.5,56.5 + parent: 16527 +- proto: SalvageMagnet + entities: + - uid: 12766 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 24233 + components: + - type: Transform + pos: -8.5,24.5 + parent: 16527 +- proto: SalvageSpawnerEquipment + entities: + - uid: 20375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-24.5 + parent: 2 + - uid: 20376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-18.5 + parent: 2 +- proto: SalvageSpawnerScrapCommon + entities: + - uid: 20374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-3.5 + parent: 2 + - uid: 20383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-11.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,2.5 + parent: 2 + - uid: 20389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,30.5 + parent: 2 + - uid: 20399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,53.5 + parent: 2 + - uid: 20400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,66.5 + parent: 2 + - uid: 20401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,68.5 + parent: 2 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 20385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-0.5 + parent: 2 + - uid: 20386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,1.5 + parent: 2 + - uid: 20391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,44.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,38.5 + parent: 2 + - uid: 20402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,68.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,66.5 + parent: 2 + - uid: 20406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,99.5 + parent: 2 + - uid: 20407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,87.5 + parent: 2 + - uid: 20410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,90.5 + parent: 2 + - uid: 20412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,87.5 + parent: 2 + - uid: 20413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,83.5 + parent: 2 + - uid: 20415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,78.5 + parent: 2 + - uid: 20416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,74.5 + parent: 2 + - uid: 20417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,71.5 + parent: 2 + - uid: 20492 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 20498 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 +- proto: SalvageSpawnerScrapValuable + entities: + - uid: 20384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,4.5 + parent: 2 + - uid: 20388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,9.5 + parent: 2 + - uid: 20390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,33.5 + parent: 2 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 19724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-19.5 + parent: 2 + - uid: 20373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-20.5 + parent: 2 + - uid: 20395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,51.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,95.5 + parent: 2 + - uid: 20398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,60.5 + parent: 2 + - uid: 20404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,66.5 + parent: 2 + - uid: 20405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,97.5 + parent: 2 + - uid: 20408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,93.5 + parent: 2 + - uid: 20409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,89.5 + parent: 2 + - uid: 20411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,90.5 + parent: 2 + - uid: 20414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,88.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,73.5 + parent: 2 + - uid: 20419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,69.5 + parent: 2 + - uid: 20420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,70.5 + parent: 2 +- proto: ScalpelLaser + entities: + - uid: 12388 + components: + - type: Transform + pos: 50.503788,-8.231814 + parent: 2 +- proto: ScalpelShiv + entities: + - uid: 24234 + components: + - type: Transform + pos: 10.462158,59.16559 + parent: 16527 +- proto: ScramImplanter + entities: + - uid: 24235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.435898,47.591736 + parent: 16527 +- proto: ScrapAirlock1 + entities: + - uid: 10391 + components: + - type: Transform + pos: 20.6236,62.39603 + parent: 2 + - uid: 20228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.438484,7.7291594 + parent: 2 + - uid: 20421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.825943,69.96823 + parent: 2 + - uid: 20425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.411263,71.63489 + parent: 2 + - uid: 20429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.067757,86.4586 + parent: 2 + - uid: 20436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.387238,94.4507 + parent: 2 + - uid: 22339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.7403755,-9.606357 + parent: 2 + - uid: 22376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.6857185,20.808674 + parent: 2 +- proto: ScrapAirlock2 + entities: + - uid: 20227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.98536,4.9947844 + parent: 2 + - uid: 20336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.81374,23.54584 + parent: 2 + - uid: 20457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.810314,45.569664 + parent: 2 + - uid: 20458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.20094,40.507164 + parent: 2 + - uid: 22348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.490383,-7.7806845 + parent: 2 +- proto: ScrapBucket + entities: + - uid: 13202 + components: + - type: Transform + pos: 42.308426,-27.460276 + parent: 2 + - uid: 19387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.573837,48.52055 + parent: 2 + - uid: 19602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.870712,53.670414 + parent: 2 + - uid: 19856 + components: + - type: Transform + pos: 65.88283,3.6273952 + parent: 2 + - uid: 20461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.482185,44.49154 + parent: 2 + - uid: 21385 + components: + - type: Transform + pos: 9.384015,53.228157 + parent: 2 + - uid: 22347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.537258,-9.640644 + parent: 2 + - uid: 22361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.765663,-11.55441 + parent: 2 + - uid: 22362 + components: + - type: Transform + pos: 46.45009,-13.644562 + parent: 2 + - uid: 22368 + components: + - type: Transform + pos: 11.677515,10.385842 + parent: 2 +- proto: ScrapCamera + entities: + - uid: 20474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.181656,23.526672 + parent: 2 + - uid: 22382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.54509354,22.308674 + parent: 2 + - uid: 22383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.766598,42.22448 + parent: 2 + - uid: 22384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.782223,42.75573 + parent: 2 +- proto: ScrapCanister1 + entities: + - uid: 12423 + components: + - type: Transform + pos: 20.6861,61.43157 + parent: 2 + - uid: 20466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.92364,38.39779 + parent: 2 +- proto: ScrapCanister2 + entities: + - uid: 19709 + components: + - type: Transform + pos: 33.51522,66.79636 + parent: 2 + - uid: 19710 + components: + - type: Transform + pos: 26.331015,66.57761 + parent: 2 + - uid: 19711 + components: + - type: Transform + pos: 40.656876,56.83481 + parent: 2 + - uid: 20432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.38652,93.413376 + parent: 2 + - uid: 20433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.964645,88.350876 + parent: 2 +- proto: ScrapCloset + entities: + - uid: 20234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.320724,10.405152 + parent: 2 + - uid: 20235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.55222,10.577027 + parent: 2 + - uid: 20236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.97849,17.161118 + parent: 2 + - uid: 20237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.32224,23.035412 + parent: 2 + - uid: 20250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.94724,24.535412 + parent: 2 + - uid: 20264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.877525,23.426037 + parent: 2 + - uid: 20423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.54277,92.194626 + parent: 2 + - uid: 20430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.317757,90.350876 + parent: 2 + - uid: 21248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.449192,-26.726748 + parent: 2 + - uid: 21384 + components: + - type: Transform + pos: 9.49688,53.505936 + parent: 2 + - uid: 22350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.412258,-10.311934 + parent: 2 + - uid: 22351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.224758,-7.5306845 + parent: 2 + - uid: 22363 + components: + - type: Transform + pos: 50.351883,-13.519562 + parent: 2 + - uid: 22365 + components: + - type: Transform + pos: 11.670607,1.7783926 + parent: 2 + - uid: 22377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.43928146,20.449299 + parent: 2 + - uid: 22378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.54865646,22.699299 + parent: 2 + - uid: 22386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.547848,53.146114 + parent: 2 + - uid: 22389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.616801,62.49832 + parent: 2 + - uid: 22390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.851176,64.2327 + parent: 2 +- proto: ScrapFaxMachine + entities: + - uid: 20488 + components: + - type: Transform + pos: 32.26686,16.557922 + parent: 2 + - uid: 21386 + components: + - type: Transform + pos: 9.478001,50.663925 + parent: 2 + - uid: 22345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.623405,-19.60445 + parent: 2 +- proto: ScrapFireExtinguisher + entities: + - uid: 10392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.32804,10.310881 + parent: 2 + - uid: 10396 + components: + - type: Transform + pos: 12.582918,63.52532 + parent: 2 + - uid: 20465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.501766,38.36654 + parent: 2 + - uid: 20472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.57228,17.120422 + parent: 2 + - uid: 21249 + components: + - type: Transform + pos: 38.837387,-27.39517 + parent: 2 + - uid: 21388 + components: + - type: Transform + pos: 10.608158,52.9417 + parent: 2 + - uid: 22359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.486443,-11.360081 + parent: 2 + - uid: 22360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.361443,-8.563206 + parent: 2 + - uid: 22369 + components: + - type: Transform + pos: 11.53689,8.401467 + parent: 2 + - uid: 22370 + components: + - type: Transform + pos: 1.3732185,20.527424 + parent: 2 + - uid: 22371 + components: + - type: Transform + pos: 1.2794685,23.105549 + parent: 2 +- proto: ScrapFirelock1 + entities: + - uid: 10197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.467503,-27.380741 + parent: 2 + - uid: 19603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.972996,56.66772 + parent: 2 + - uid: 20422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.513443,77.02246 + parent: 2 + - uid: 20428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.769695,89.3336 + parent: 2 + - uid: 20439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.54469,40.600914 + parent: 2 + - uid: 22356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.74942,-1.5367069 + parent: 2 + - uid: 22379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.4825935,19.449299 + parent: 2 + - uid: 22387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.610348,56.334045 + parent: 2 +- proto: ScrapFirelock2 + entities: + - uid: 20229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.094734,9.639527 + parent: 2 + - uid: 20437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.63009,67.3504 + parent: 2 + - uid: 22341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.3653755,-12.64996 + parent: 2 + - uid: 22355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.843168,-7.602831 + parent: 2 +- proto: ScrapFirelock3 + entities: + - uid: 6095 + components: + - type: Transform + pos: 38.597733,-27.484907 + parent: 2 + - uid: 19722 + components: + - type: Transform + pos: 36.698025,57.791893 + parent: 2 + - uid: 20316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.96994,-6.2986417 + parent: 2 + - uid: 20426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.536263,82.04932 + parent: 2 + - uid: 20434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.44902,93.54445 + parent: 2 + - uid: 20438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.16134,67.49103 + parent: 2 + - uid: 20440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.54469,45.257164 + parent: 2 + - uid: 22349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.631008,-12.749434 + parent: 2 + - uid: 22375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.6075935,23.246174 + parent: 2 + - uid: 22385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.547848,49.53674 + parent: 2 + - uid: 22388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.688473,61.545197 + parent: 2 +- proto: ScrapGlass + entities: + - uid: 18617 + components: + - type: Transform + pos: 18.060389,65.418015 + parent: 2 + - uid: 19723 + components: + - type: Transform + pos: 24.56631,67.418015 + parent: 2 + - uid: 20327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.75893,-14.323473 + parent: 2 + - uid: 20330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.49447,-6.567425 + parent: 2 + - uid: 20333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.333572,9.121813 + parent: 2 + - uid: 20334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.55717,10.275419 + parent: 2 + - uid: 20335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.79299,24.373964 + parent: 2 + - uid: 20427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.442513,77.955765 + parent: 2 + - uid: 21377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.686295,51.39656 + parent: 2 + - uid: 22353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.631008,-4.5306845 + parent: 2 + - uid: 22354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.593168,-7.134081 + parent: 2 + - uid: 22367 + components: + - type: Transform + pos: 15.326857,1.4033926 + parent: 2 +- proto: ScrapIntercom + entities: + - uid: 12964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.474758,-10.750019 + parent: 2 + - uid: 19854 + components: + - type: Transform + pos: 62.510433,4.355604 + parent: 2 + - uid: 20462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.345516,45.49154 + parent: 2 + - uid: 21387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.29561,51.3792 + parent: 2 + - uid: 22364 + components: + - type: Transform + pos: 9.123732,2.9502676 + parent: 2 +- proto: ScrapJetpack + entities: + - uid: 14718 + components: + - type: Transform + pos: 61.74828,17.085514 + parent: 2 + - uid: 21252 + components: + - type: Transform + pos: 42.24936,-27.23892 + parent: 2 + - uid: 22343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.6153755,-18.5732 + parent: 2 + - uid: 22346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.560905,-19.6357 + parent: 2 +- proto: ScrapMedkit + entities: + - uid: 3598 + components: + - type: Transform + pos: 50.54714,9.420256 + parent: 2 + - uid: 20337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.236057,-0.2451626 + parent: 2 + - uid: 20338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.958508,-7.592559 + parent: 2 + - uid: 20339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.446583,-7.233184 + parent: 2 + - uid: 20370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.31334,-3.5972953 + parent: 2 + - uid: 20371 + components: + - type: Transform + pos: 48.81419,-4.6310463 + parent: 2 + - uid: 21250 + components: + - type: Transform + pos: 41.012196,-27.017567 + parent: 2 + - uid: 22344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.844482,-19.463825 + parent: 2 + - uid: 22380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.37678146,19.324299 + parent: 2 + - uid: 22381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.4357185,21.230549 + parent: 2 +- proto: ScrapMopBucket + entities: + - uid: 12569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.312878,10.592131 + parent: 2 + - uid: 12956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.427883,-19.5732 + parent: 2 + - uid: 20464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.36114,40.632164 + parent: 2 +- proto: ScrapPAI + entities: + - uid: 19846 + components: + - type: Transform + pos: 63.041683,2.9413962 + parent: 2 + - uid: 20463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.876766,38.24154 + parent: 2 + - uid: 22340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.516598,47.00549 + parent: 2 + - uid: 22342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5997505,-19.5732 + parent: 2 + - uid: 22374 + components: + - type: Transform + pos: 1.4982185,23.652424 + parent: 2 +- proto: ScrapSteel + entities: + - uid: 877 + components: + - type: Transform + pos: 42.43168,-26.666004 + parent: 2 + - uid: 19669 + components: + - type: Transform + pos: 36.593346,61.456043 + parent: 2 + - uid: 20265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.462944,24.129162 + parent: 2 + - uid: 20266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.43203,10.521615 + parent: 2 + - uid: 20279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.91886,4.0267277 + parent: 2 + - uid: 20286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.43869,-1.3013976 + parent: 2 + - uid: 20431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.433395,93.4915 + parent: 2 + - uid: 21243 + components: + - type: Transform + pos: 9.505562,53.627464 + parent: 2 + - uid: 21383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.470834,53.505936 + parent: 2 + - uid: 22206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.8653755,-9.575107 + parent: 2 + - uid: 22352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.662258,-7.3588095 + parent: 2 + - uid: 22366 + components: + - type: Transform + pos: 11.858107,6.044018 + parent: 2 +- proto: ScrapTube + entities: + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.27541,16.370422 + parent: 2 + - uid: 13237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.064285,-26.418608 + parent: 2 + - uid: 22357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.65567,-11.672581 + parent: 2 + - uid: 22358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.546295,-11.235081 + parent: 2 + - uid: 22372 + components: + - type: Transform + pos: 1.2482185,21.933674 + parent: 2 + - uid: 22373 + components: + - type: Transform + pos: 0.95134354,21.121174 + parent: 2 +- proto: Screen + entities: + - uid: 2358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,41.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,65.5 + parent: 2 + - uid: 12769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,46.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + pos: 80.5,41.5 + parent: 2 + - uid: 12771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + pos: 68.5,15.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,23.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + pos: 79.5,63.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,37.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + pos: 43.5,77.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 12782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,33.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + pos: 69.5,37.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + pos: 44.5,52.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + pos: 73.5,57.5 + parent: 2 + - uid: 12790 + components: + - type: Transform + pos: 59.5,54.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 +- proto: Screwdriver + entities: + - uid: 24236 + components: + - type: Transform + pos: 27.021294,27.629593 + parent: 16527 + - uid: 24237 + components: + - type: Transform + pos: 37.605846,26.586653 + parent: 16527 + - uid: 24238 + components: + - type: Transform + pos: 24.472853,34.56221 + parent: 16527 + - uid: 24239 + components: + - type: Transform + pos: -15.215881,79.53119 + parent: 16527 + - uid: 24240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.271301,38.343628 + parent: 16527 + - uid: 24241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.207108,38.532166 + parent: 16527 + - uid: 24242 + components: + - type: Transform + pos: -31.347717,42.82904 + parent: 16527 + - uid: 24243 + components: + - type: Transform + pos: -34.429825,36.798706 + parent: 16527 + - uid: 24244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.32715,31.62677 + parent: 16527 + - uid: 24245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.75699,32.951233 + parent: 16527 + - uid: 24246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.2408,29.566345 + parent: 16527 +- proto: SecurityTechFab + entities: + - uid: 13252 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 12793 + components: + - type: Transform + pos: 59.5,38.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + pos: 67.5,30.5 + parent: 2 + - uid: 21580 + components: + - type: Transform + pos: 38.5,51.5 + parent: 2 +- proto: ShadowKudzuWeak + entities: + - uid: 24247 + components: + - type: Transform + pos: -13.5,50.5 + parent: 16527 + - type: Fixtures + fixtures: {} + - uid: 24248 + components: + - type: Transform + pos: -18.5,47.5 + parent: 16527 + - type: Fixtures + fixtures: {} + - uid: 24249 + components: + - type: Transform + pos: -12.5,54.5 + parent: 16527 + - type: Fixtures + fixtures: {} + - uid: 24250 + components: + - type: Transform + pos: -14.5,57.5 + parent: 16527 + - type: Fixtures + fixtures: {} + - uid: 24251 + components: + - type: Transform + pos: -10.5,58.5 + parent: 16527 + - type: Fixtures + fixtures: {} +- proto: ShardGlass + entities: + - uid: 12795 + components: + - type: Transform + pos: 32.344322,65.459076 + parent: 2 + - uid: 24252 + components: + - type: Transform + pos: 12.369801,33.58339 + parent: 16527 + - uid: 24253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.682301,32.20839 + parent: 16527 + - uid: 24254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.213551,32.83339 + parent: 16527 + - uid: 24255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.588551,33.27089 + parent: 16527 + - uid: 24256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.807301,36.446968 + parent: 16527 + - uid: 24257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.402653,33.42273 + parent: 16527 + - uid: 24258 + components: + - type: Transform + pos: 17.423485,35.318565 + parent: 16527 + - uid: 24259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.788069,35.89148 + parent: 16527 + - uid: 24260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.746402,31.417408 + parent: 16527 + - uid: 24261 + components: + - type: Transform + pos: 15.204736,31.604908 + parent: 16527 + - uid: 24262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.808105,52.377747 + parent: 16527 + - uid: 24263 + components: + - type: Transform + pos: 31.665802,48.359863 + parent: 16527 + - uid: 24264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.448746,49.415833 + parent: 16527 + - uid: 24265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.674911,52.710266 + parent: 16527 + - uid: 24266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.532349,51.288635 + parent: 16527 + - uid: 24267 + components: + - type: Transform + pos: 29.29152,49.58026 + parent: 16527 +- proto: ShardGlassPlasma + entities: + - uid: 12796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.766638,-8.694971 + parent: 2 + - uid: 12797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.141262,-11.476221 + parent: 2 + - uid: 12798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.282572,-10.616846 + parent: 2 + - uid: 12799 + components: + - type: Transform + pos: 26.762547,-7.46745 + parent: 2 + - uid: 24268 + components: + - type: Transform + pos: 8.88913,58.46039 + parent: 16527 + - uid: 24269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.18602,59.319763 + parent: 16527 +- proto: SheetGlass + entities: + - uid: 6593 + components: + - type: Transform + parent: 6590 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10414 + components: + - type: Transform + pos: 58.507942,4.5845747 + parent: 2 + - uid: 10906 + components: + - type: Transform + pos: 23.535854,10.694848 + parent: 2 + - uid: 12800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-17.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + pos: 23.537333,10.680008 + parent: 2 + - uid: 12802 + components: + - type: Transform + pos: 45.532856,70.43353 + parent: 2 + - uid: 12803 + components: + - type: Transform + pos: 35.45207,79.576096 + parent: 2 + - uid: 22145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.603355,41.50872 + parent: 2 + - uid: 22322 + components: + - type: Transform + pos: 67.63421,41.5463 + parent: 2 +- proto: SheetGlass10 + entities: + - uid: 12804 + components: + - type: Transform + pos: 9.485875,40.569275 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 12805 + components: + - type: Transform + pos: 20.944042,10.533216 + parent: 2 + - uid: 24270 + components: + - type: Transform + pos: -18.42244,27.512573 + parent: 16527 + - uid: 24271 + components: + - type: Transform + pos: -18.56518,27.602674 + parent: 16527 +- proto: SheetPlasma1 + entities: + - uid: 12806 + components: + - type: Transform + pos: 42.488373,7.646244 + parent: 2 +- proto: SheetPlasma10 + entities: + - uid: 12807 + components: + - type: Transform + pos: 52.604137,61.646187 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 12808 + components: + - type: Transform + pos: 45.453217,70.1915 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: 35.42082,78.93547 + parent: 2 + - uid: 24272 + components: + - type: Transform + pos: -9.400628,32.53504 + parent: 16527 +- proto: SheetPlasteel10 + entities: + - uid: 12810 + components: + - type: Transform + pos: 46.054523,98.278336 + parent: 2 + - uid: 12811 + components: + - type: Transform + pos: 47.445984,100.35646 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 6594 + components: + - type: Transform + parent: 6590 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10841 + components: + - type: Transform + pos: 58.664192,4.5845747 + parent: 2 + - uid: 12588 + components: + - type: Transform + pos: 24.52023,10.694848 + parent: 2 + - uid: 12812 + components: + - type: Transform + pos: 24.450066,10.680008 + parent: 2 + - uid: 12813 + components: + - type: Transform + pos: 67.401024,41.528034 + parent: 2 + - uid: 22146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.49398,41.44622 + parent: 2 + - uid: 24273 + components: + - type: Transform + pos: -7.994378,32.44129 + parent: 16527 +- proto: SheetPlastic1 + entities: + - uid: 24274 + components: + - type: Transform + pos: 13.647202,36.167152 + parent: 16527 +- proto: SheetPlastic10 + entities: + - uid: 24275 + components: + - type: Transform + pos: -17.50441,52.68689 + parent: 16527 +- proto: SheetSteel + entities: + - uid: 6783 + components: + - type: Transform + parent: 6590 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6933 + components: + - type: Transform + parent: 6590 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10355 + components: + - type: Transform + pos: 24.02023,10.726098 + parent: 2 + - uid: 12589 + components: + - type: Transform + pos: 58.242317,4.6470747 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: 24.033886,10.695633 + parent: 2 + - uid: 12815 + components: + - type: Transform + pos: 67.63266,41.476616 + parent: 2 + - uid: 12816 + components: + - type: Transform + pos: 48.678658,71.38617 + parent: 2 + - uid: 12817 + components: + - type: Transform + pos: 48.45851,71.45955 + parent: 2 + - uid: 12818 + components: + - type: Transform + pos: 35.60832,77.62297 + parent: 2 + - uid: 22227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.603355,41.50872 + parent: 2 + - uid: 24276 + components: + - type: Transform + pos: -8.681878,32.47254 + parent: 16527 +- proto: SheetSteel1 + entities: + - uid: 24277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.449138,36.440662 + parent: 16527 + - uid: 24278 + components: + - type: Transform + pos: 27.233908,32.206284 + parent: 16527 + - uid: 24279 + components: + - type: Transform + pos: 23.286572,29.493347 + parent: 16527 + - uid: 24280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.567822,29.305847 + parent: 16527 +- proto: SheetSteel10 + entities: + - uid: 12819 + components: + - type: Transform + pos: 46.648632,99.278336 + parent: 2 + - uid: 12820 + components: + - type: Transform + pos: 47.289642,98.13771 + parent: 2 + - uid: 12821 + components: + - type: Transform + pos: 29.514563,60.53943 + parent: 2 + - uid: 24281 + components: + - type: Transform + pos: 24.233747,23.535175 + parent: 16527 + - uid: 24282 + components: + - type: Transform + pos: 36.51264,34.57534 + parent: 16527 +- proto: SheetUranium + entities: + - uid: 24283 + components: + - type: Transform + pos: -17.750565,27.731262 + parent: 16527 + - uid: 24284 + components: + - type: Transform + pos: -17.932491,27.638596 + parent: 16527 +- proto: SheetUranium1 + entities: + - uid: 5768 + components: + - type: Transform + pos: 26.48359,-17.504948 + parent: 2 + - type: Stack + count: 15 + - uid: 12822 + components: + - type: Transform + pos: 52.369762,62.677437 + parent: 2 + - type: Stack + count: 10 +- proto: ShelfBar + entities: + - uid: 9851 + components: + - type: Transform + pos: 18.5,51.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + pos: 25.5,54.5 + parent: 2 + - type: Storage + storedItems: + 13038: + position: 0,0 + _rotation: South + 13040: + position: 1,0 + _rotation: South + 13044: + position: 2,0 + _rotation: South + 13073: + position: 3,0 + _rotation: South + 13077: + position: 4,0 + _rotation: South + 13080: + position: 5,0 + _rotation: South + 13084: + position: 0,3 + _rotation: South + 13088: + position: 1,3 + _rotation: South + 13096: + position: 2,3 + _rotation: South + 13103: + position: 3,3 + _rotation: South + 13109: + position: 4,3 + _rotation: South + 13110: + position: 5,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 13038 + - 13040 + - 13044 + - 13073 + - 13077 + - 13080 + - 13084 + - 13088 + - 13096 + - 13103 + - 13109 + - 13110 +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 12823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,9.5 + parent: 2 +- proto: ShelfKitchen + entities: + - uid: 21623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,51.5 + parent: 2 + - type: Storage + storedItems: + 21624: + position: 0,0 + _rotation: South + 21625: + position: 0,1 + _rotation: South + 21626: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 21624 + - 21625 + - 21626 +- proto: ShelfRWood + entities: + - uid: 6399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,9.5 + parent: 2 + - type: Lock + locked: False + - type: Storage + storedItems: + 6403: + position: 0,0 + _rotation: South + 6400: + position: 2,0 + _rotation: South + 6402: + position: 0,3 + _rotation: South + 6401: + position: 2,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 6403 + - 6400 + - 6402 + - 6401 +- proto: ShellShotgun + entities: + - uid: 24285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.196014,52.140198 + parent: 16527 + - uid: 24286 + components: + - type: Transform + pos: 27.807129,52.709656 + parent: 16527 +- proto: ShippingContainerCybersun + entities: + - uid: 24287 + components: + - type: Transform + pos: -11.5,22.5 + parent: 16527 +- proto: ShippingContainerGorlexRed + entities: + - uid: 24288 + components: + - type: Transform + pos: -15.5,20.5 + parent: 16527 +- proto: ShippingContainerVitezstvi + entities: + - uid: 24289 + components: + - type: Transform + pos: -15.5,24.5 + parent: 16527 +- proto: ShotGunCabinetFilled + entities: + - uid: 22333 + components: + - type: Transform + pos: 39.5,70.5 + parent: 2 + - uid: 22334 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 22335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - uid: 22336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,9.5 + parent: 2 + - uid: 22337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,23.5 + parent: 2 + - uid: 22338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - uid: 24290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,42.5 + parent: 16527 + - uid: 24291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,43.5 + parent: 16527 + - uid: 24292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,53.5 + parent: 16527 +- proto: Shovel + entities: + - uid: 12824 + components: + - type: Transform + pos: 0.5657964,11.527206 + parent: 2 +- proto: ShowcaseRobot + entities: + - uid: 24293 + components: + - type: Transform + pos: -53.5,45.5 + parent: 16527 + - uid: 24294 + components: + - type: Transform + pos: -49.5,51.5 + parent: 16527 + - uid: 24295 + components: + - type: Transform + pos: -24.5,44.5 + parent: 16527 + - uid: 24296 + components: + - type: Transform + pos: -53.5,51.5 + parent: 16527 +- proto: ShowcaseRobotMarauder + entities: + - uid: 24297 + components: + - type: Transform + pos: -27.5,48.5 + parent: 16527 +- proto: ShowcaseRobotWhite + entities: + - uid: 24298 + components: + - type: Transform + pos: -49.5,45.5 + parent: 16527 +- proto: ShuttersFrame + entities: + - uid: 24299 + components: + - type: Transform + pos: -1.5,22.5 + parent: 16527 + - uid: 24300 + components: + - type: Transform + pos: 3.5,3.5 + parent: 16527 + - uid: 24301 + components: + - type: Transform + pos: 3.5,2.5 + parent: 16527 + - uid: 24302 + components: + - type: Transform + pos: -0.5,22.5 + parent: 16527 + - uid: 24303 + components: + - type: Transform + pos: -7.5,26.5 + parent: 16527 + - uid: 24304 + components: + - type: Transform + pos: -9.5,26.5 + parent: 16527 +- proto: ShuttersNormal + entities: + - uid: 12825 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + pos: 67.5,50.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 + - uid: 24305 + components: + - type: Transform + pos: 3.5,5.5 + parent: 16527 + - uid: 24306 + components: + - type: Transform + pos: 3.5,4.5 + parent: 16527 + - uid: 24307 + components: + - type: Transform + pos: -2.5,20.5 + parent: 16527 + - uid: 24308 + components: + - type: Transform + pos: 3.5,21.5 + parent: 16527 + - uid: 24309 + components: + - type: Transform + pos: 3.5,20.5 + parent: 16527 + - uid: 24310 + components: + - type: Transform + pos: -10.5,26.5 + parent: 16527 + - uid: 24311 + components: + - type: Transform + pos: 32.5,51.5 + parent: 16527 + - uid: 24312 + components: + - type: Transform + pos: 32.5,50.5 + parent: 16527 + - uid: 24313 + components: + - type: Transform + pos: 24.5,45.5 + parent: 16527 + - uid: 24314 + components: + - type: Transform + pos: 31.5,43.5 + parent: 16527 + - uid: 24315 + components: + - type: Transform + pos: 31.5,44.5 + parent: 16527 + - uid: 24316 + components: + - type: Transform + pos: 24.5,43.5 + parent: 16527 + - uid: 24317 + components: + - type: Transform + pos: 22.5,58.5 + parent: 16527 + - uid: 24318 + components: + - type: Transform + pos: 23.5,58.5 + parent: 16527 +- proto: ShuttersNormalOpen + entities: + - uid: 12832 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 12842 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 12843 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 12844 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 12860 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: 17.5,59.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + pos: 17.5,58.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: 17.5,57.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + pos: 73.5,46.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + pos: 73.5,45.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + pos: 73.5,44.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + pos: 73.5,50.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: 73.5,49.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + pos: 73.5,48.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + pos: 77.5,49.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + pos: 77.5,48.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + pos: 77.5,46.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + pos: 77.5,45.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + pos: 77.5,44.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + pos: 73.5,42.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: 73.5,40.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + pos: 75.5,39.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + pos: 76.5,39.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + pos: 77.5,39.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: 78.5,39.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + pos: 77.5,27.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + pos: 77.5,28.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: 77.5,26.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + pos: 66.5,11.5 + parent: 2 + - uid: 12893 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 21446 + components: + - type: Transform + pos: 29.5,45.5 + parent: 2 + - uid: 21447 + components: + - type: Transform + pos: 29.5,46.5 + parent: 2 + - uid: 21450 + components: + - type: Transform + pos: 29.5,44.5 + parent: 2 + - uid: 21451 + components: + - type: Transform + pos: 24.5,51.5 + parent: 2 + - uid: 21452 + components: + - type: Transform + pos: 23.5,51.5 + parent: 2 + - uid: 21453 + components: + - type: Transform + pos: 22.5,51.5 + parent: 2 + - uid: 21454 + components: + - type: Transform + pos: 21.5,51.5 + parent: 2 + - uid: 21455 + components: + - type: Transform + pos: 20.5,51.5 + parent: 2 + - uid: 21456 + components: + - type: Transform + pos: 19.5,51.5 + parent: 2 + - uid: 21457 + components: + - type: Transform + pos: 26.5,51.5 + parent: 2 + - uid: 21458 + components: + - type: Transform + pos: 28.5,51.5 + parent: 2 + - uid: 21459 + components: + - type: Transform + pos: 29.5,51.5 + parent: 2 + - uid: 21460 + components: + - type: Transform + pos: 30.5,51.5 + parent: 2 + - uid: 21461 + components: + - type: Transform + pos: 27.5,51.5 + parent: 2 + - uid: 21462 + components: + - type: Transform + pos: 31.5,51.5 + parent: 2 + - uid: 21463 + components: + - type: Transform + pos: 25.5,51.5 + parent: 2 + - uid: 24319 + components: + - type: Transform + pos: 3.5,1.5 + parent: 16527 + - uid: 24320 + components: + - type: Transform + pos: -2.5,21.5 + parent: 16527 + - uid: 24321 + components: + - type: Transform + pos: 2.5,22.5 + parent: 16527 + - uid: 24322 + components: + - type: Transform + pos: -6.5,26.5 + parent: 16527 + - uid: 24323 + components: + - type: Transform + pos: 32.5,52.5 + parent: 16527 + - uid: 24324 + components: + - type: Transform + pos: 31.5,45.5 + parent: 16527 + - uid: 24325 + components: + - type: Transform + pos: 24.5,44.5 + parent: 16527 +- proto: ShuttersRadiation + entities: + - uid: 12898 + components: + - type: Transform + pos: 51.5,71.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: 52.5,71.5 + parent: 2 + - uid: 12900 + components: + - type: Transform + pos: 53.5,71.5 + parent: 2 + - uid: 12901 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 12902 + components: + - type: Transform + pos: 57.565678,48.294518 + parent: 2 +- proto: ShuttleGunFriendship + entities: + - uid: 23056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,26.5 + parent: 16527 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: + - 23057 + - type: BallisticAmmoProvider + entities: + - 23057 + - uid: 23058 + components: + - type: Transform + pos: -12.5,79.5 + parent: 16527 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: + - 23060 + - 23059 + - type: BallisticAmmoProvider + entities: + - 23060 + - 23059 +- proto: ShuttleGunKinetic + entities: + - uid: 24326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,32.5 + parent: 16527 +- proto: ShuttleGunKineticCircuitboard + entities: + - uid: 24327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.533203,39.393433 + parent: 16527 +- proto: ShuttleGunPerforatorCircuitboard + entities: + - uid: 24328 + components: + - type: Transform + pos: -1.4482787,20.596813 + parent: 16527 + - uid: 24329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.61055,31.261658 + parent: 16527 +- proto: ShuttleGunSvalinnMachineGun + entities: + - uid: 23498 + components: + - type: Transform + pos: 8.5,37.5 + parent: 16527 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23499 + - uid: 23506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 16527 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23507 +- proto: SignAi + entities: + - uid: 12903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-22.5 + parent: 2 + - uid: 21877 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 2 + - uid: 21880 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 16252 + components: + - type: Transform + pos: 22.5,-45.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 12907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12827: + - Pressed: Toggle + 12828: + - Pressed: Toggle + 12829: + - Pressed: Toggle + - uid: 12909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12866: + - Pressed: Toggle + - uid: 12910 + components: + - type: Transform + pos: 50.5,71.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12898: + - Pressed: Toggle + 12899: + - Pressed: Toggle + 12900: + - Pressed: Toggle + - uid: 12911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + - uid: 16338 + components: + - type: MetaData + desc: 'Кнопка активирует включение турелей. ВНИМАНИЕ: Турели атакуют любую живность поблизости.' + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3177: + - Pressed: Toggle + - Pressed: AutoClose + 13880: + - Pressed: Toggle + - Pressed: AutoClose + 3176: + - Pressed: Toggle + - Pressed: AutoClose + 13352: + - Pressed: Toggle + - Pressed: AutoClose + 3182: + - Pressed: Toggle + - Pressed: AutoClose + 3184: + - Pressed: Toggle + - Pressed: AutoClose + 3206: + - Pressed: Toggle + - Pressed: AutoClose + 3859: + - Pressed: Toggle + - Pressed: AutoClose + 21771: + - Pressed: Toggle + 21772: + - Pressed: Toggle + 21797: + - Pressed: Toggle + 21791: + - Pressed: Toggle + 21794: + - Pressed: Toggle + 21795: + - Pressed: Toggle + 5812: + - Pressed: Toggle + - Pressed: AutoClose + 21849: + - Pressed: Toggle + - Pressed: AutoClose + - uid: 24330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,44.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19262: + - Pressed: Open + 19263: + - Pressed: Open + 24366: + - Pressed: Toggle + 19304: + - Pressed: Open + - uid: 24331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19271: + - Pressed: Close + 19270: + - Pressed: Close + 19272: + - Pressed: Close + 19273: + - Pressed: Close + 19275: + - Pressed: Close + 19274: + - Pressed: Close + 19361: + - Pressed: Trigger + 19360: + - Pressed: Trigger + 24364: + - Pressed: Open + 24371: + - Pressed: Trigger + 24370: + - Pressed: Trigger + 24373: + - Pressed: Trigger + - uid: 24332 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19271: + - Pressed: Open + 19270: + - Pressed: Open + 19272: + - Pressed: Open + 19273: + - Pressed: Close + 19275: + - Pressed: Close + 19274: + - Pressed: Close + 24368: + - Pressed: Trigger + 24375: + - Pressed: Trigger + 24376: + - Pressed: Trigger + - uid: 24333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19273: + - Pressed: Open + 19275: + - Pressed: Open + 19274: + - Pressed: Open + 24369: + - Pressed: Trigger + 19272: + - Pressed: Close + 19270: + - Pressed: Close + 19271: + - Pressed: Close + - uid: 24334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 24364: + - Pressed: Open + 24371: + - Pressed: Trigger + 19271: + - Pressed: Close + 19270: + - Pressed: Close + 19272: + - Pressed: Close + 19274: + - Pressed: Close + 19275: + - Pressed: Close + 19273: + - Pressed: Close + 24374: + - Pressed: Trigger + 24372: + - Pressed: Trigger + 19361: + - Pressed: Trigger + 19360: + - Pressed: Trigger + - uid: 24335 + components: + - type: Transform + pos: 0.5,13.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19269: + - Pressed: Open + 19268: + - Pressed: Open + 19282: + - Pressed: Open + 19281: + - Pressed: Open + 19283: + - Pressed: Open + 19280: + - Pressed: Open + 19279: + - Pressed: Open + 19266: + - Pressed: Open + 19267: + - Pressed: Open + - uid: 24336 + components: + - type: Transform + pos: -20.5,16.5 + parent: 16527 + - uid: 24337 + components: + - type: Transform + pos: 9.5,19.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19286: + - Pressed: Open + 19288: + - Pressed: Open + 19289: + - Pressed: Open + 23498: + - Pressed: On + - uid: 24338 + components: + - type: Transform + pos: 9.5,31.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19338: + - Pressed: Close + 23498: + - Pressed: Off + - uid: 24339 + components: + - type: Transform + pos: 7.5,22.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19290: + - Pressed: Open + 19287: + - Pressed: Open + - uid: 24340 + components: + - type: Transform + pos: 9.5,25.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19291: + - Pressed: Open + 19292: + - Pressed: Open + - uid: 24341 + components: + - type: Transform + pos: 7.5,28.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19294: + - Pressed: Open + 19293: + - Pressed: Open + - uid: 24342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,15.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19266: + - Pressed: Open + 19269: + - Pressed: Open + 19268: + - Pressed: Open + 19267: + - Pressed: Open + 19280: + - Pressed: Open + 19279: + - Pressed: Open + 19282: + - Pressed: Open + 19281: + - Pressed: Open + 19283: + - Pressed: Open + - uid: 24343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19267: + - Pressed: Open + 19281: + - Pressed: Open + 19283: + - Pressed: Open + 19282: + - Pressed: Open + 19268: + - Pressed: Open + 19269: + - Pressed: Open + 19279: + - Pressed: Open + 19280: + - Pressed: Open + - uid: 24344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 24377: + - Pressed: Trigger + - uid: 24345 + components: + - type: Transform + pos: -8.530545,30.731735 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 24365: + - Pressed: Open + - uid: 24346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,15.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 24377: + - Pressed: Trigger + - uid: 24347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.00272,35.91638 + parent: 16527 + - uid: 24348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.00272,35.682007 + parent: 16527 + - uid: 24349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.00272,35.463257 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 23506: + - Pressed: Toggle + - uid: 24350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19296: + - Pressed: Toggle + 19295: + - Pressed: Toggle + 19297: + - Pressed: Toggle + - uid: 24351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,71.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 22013: + - Pressed: Forward + 22014: + - Pressed: Forward + 22015: + - Pressed: Forward + 22010: + - Pressed: Forward + 22011: + - Pressed: Forward + 22012: + - Pressed: Forward + - uid: 24352 + components: + - type: Transform + pos: -36.524704,49.7818 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19315: + - Pressed: Open + 19314: + - Pressed: Open + 19313: + - Pressed: Open +- proto: SignalButtonDirectional + entities: + - uid: 12914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1005: + - Pressed: Toggle + 1006: + - Pressed: Toggle + 1007: + - Pressed: Toggle + 999: + - Pressed: Toggle + 998: + - Pressed: Toggle + 1000: + - Pressed: Toggle + - uid: 12915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1004: + - Pressed: Toggle + 997: + - Pressed: Toggle + 996: + - Pressed: Toggle + 1002: + - Pressed: Toggle + 1003: + - Pressed: Toggle + 1001: + - Pressed: Toggle + - uid: 12916 + components: + - type: Transform + pos: 41.5,37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12831: + - Pressed: Toggle + - uid: 12917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12833: + - Pressed: Toggle + 12834: + - Pressed: Toggle + - uid: 12918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12837: + - Pressed: Toggle + 12839: + - Pressed: Toggle + 12838: + - Pressed: Toggle + 12836: + - Pressed: Toggle + 12835: + - Pressed: Toggle + - uid: 12919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12852: + - Pressed: Toggle + 12851: + - Pressed: Toggle + 12850: + - Pressed: Toggle + 12849: + - Pressed: Toggle + 12848: + - Pressed: Toggle + 12847: + - Pressed: Toggle + 12846: + - Pressed: Toggle + 12845: + - Pressed: Toggle + 12844: + - Pressed: Toggle + 12843: + - Pressed: Toggle + 12842: + - Pressed: Toggle + 12841: + - Pressed: Toggle + 12840: + - Pressed: Toggle + - uid: 12920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12853: + - Pressed: Toggle + - uid: 12921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12857: + - Pressed: Toggle + 12855: + - Pressed: Toggle + - uid: 12922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12856: + - Pressed: Toggle + 12854: + - Pressed: Toggle + - uid: 12923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12858: + - Pressed: Toggle + - uid: 12924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 158: + - Pressed: DoorBolt + - uid: 12925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 157: + - Pressed: DoorBolt + - uid: 12926 + components: + - type: Transform + pos: 18.5,60.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12861: + - Pressed: Toggle + 12862: + - Pressed: Toggle + 12863: + - Pressed: Toggle + - uid: 12927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12865: + - Pressed: Toggle + 12864: + - Pressed: Toggle + - uid: 12928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12886: + - Pressed: Toggle + 12884: + - Pressed: Toggle + 12885: + - Pressed: Toggle + - uid: 12929 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 990: + - Pressed: Toggle + - uid: 12930 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 991: + - Pressed: Toggle + - uid: 12931 + components: + - type: Transform + pos: 65.5,49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12830: + - Pressed: Toggle + - uid: 12932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12878: + - Pressed: Toggle + 12879: + - Pressed: Toggle + 12881: + - Pressed: Toggle + 12882: + - Pressed: Toggle + 12883: + - Pressed: Toggle + 12880: + - Pressed: Toggle + - uid: 12933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12877: + - Pressed: Toggle + 12876: + - Pressed: Toggle + 12875: + - Pressed: Toggle + 12869: + - Pressed: Toggle + 12868: + - Pressed: Toggle + 12867: + - Pressed: Toggle + 12874: + - Pressed: Toggle + 12873: + - Pressed: Toggle + 12859: + - Pressed: Toggle + 12872: + - Pressed: Toggle + 12871: + - Pressed: Toggle + 12870: + - Pressed: Toggle + - uid: 12934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,9.5 + parent: 2 + - uid: 12935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12889: + - Pressed: Toggle + 12888: + - Pressed: Toggle + 12887: + - Pressed: Toggle + - uid: 12937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,71.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12898: + - Pressed: Toggle + 12899: + - Pressed: Toggle + 12900: + - Pressed: Toggle + - uid: 12938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12901: + - Pressed: Toggle + - uid: 12939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,20.5 + parent: 2 + - uid: 12940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 992: + - Pressed: Toggle + - uid: 12941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12893: + - Pressed: Toggle + - uid: 24353 + components: + - type: Transform + pos: -1.5,39.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19304: + - Pressed: Open + 19307: + - Pressed: Toggle + 19308: + - Pressed: Toggle + 19303: + - Pressed: Open + - uid: 24354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,62.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19265: + - Pressed: Open + 24381: + - Pressed: Trigger + - uid: 24355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,62.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19265: + - Pressed: Open + 24381: + - Pressed: Trigger + - uid: 24356 + components: + - type: Transform + pos: 0.5,59.5 + parent: 16527 + - uid: 24357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,59.5 + parent: 16527 + - uid: 24358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,47.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19262: + - Pressed: Open + - uid: 24359 + components: + - type: Transform + pos: -11.5,68.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19264: + - Pressed: Open + 24393: + - Pressed: Trigger + - uid: 24360 + components: + - type: Transform + pos: 1.5,78.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 24382: + - Pressed: Trigger + 24380: + - Pressed: Trigger + - uid: 24361 + components: + - type: Transform + pos: -33.5,42.5 + parent: 16527 + - uid: 24362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,45.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 24383: + - Pressed: Trigger + 24384: + - Pressed: Trigger + 24385: + - Pressed: Trigger + 24386: + - Pressed: Trigger + 24388: + - Pressed: Trigger + 24389: + - Pressed: Trigger + 24390: + - Pressed: Trigger + 24387: + - Pressed: Trigger + 24391: + - Pressed: Trigger + 24392: + - Pressed: Trigger + - uid: 24363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,47.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19315: + - Pressed: Open + 19314: + - Pressed: Open + 19313: + - Pressed: Open +- proto: SignalControlledValve + entities: + - uid: 24364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 16527 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24365 + components: + - type: Transform + pos: -6.5,40.5 + parent: 16527 + - type: GasValve + open: False + - uid: 24366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,41.5 + parent: 16527 + - type: GasValve + open: False +- proto: SignalSwitchDirectional + entities: + - uid: 12943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 159: + - On: DoorBolt + - Off: DoorBolt +- proto: SignalTimer + entities: + - uid: 24367 + components: + - type: Transform + pos: -4.5,40.5 + parent: 16527 + - type: SignalTimer + delay: 0.7 + - uid: 24368 + components: + - type: MetaData + name: 5 низ + - type: Transform + pos: 6.5,-1.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19272: + - Timer: Close + 19270: + - Timer: Close + 19271: + - Timer: Close + - uid: 24369 + components: + - type: MetaData + name: 5 верх + - type: Transform + pos: 7.5,-1.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19273: + - Timer: Close + 19275: + - Timer: Close + 19274: + - Timer: Close + - uid: 24370 + components: + - type: MetaData + name: 11 верх + - type: Transform + pos: 7.5,-2.5 + parent: 16527 + - type: SignalTimer + delay: 11 + - type: DeviceLinkSource + linkedPorts: + 19273: + - Timer: Close + 19275: + - Timer: Close + 19274: + - Timer: Close + - uid: 24371 + components: + - type: MetaData + name: 0.04 + - type: Transform + pos: 6.5,-2.5 + parent: 16527 + - type: SignalTimer + delay: 0.04 + - type: DeviceLinkSource + linkedPorts: + 24364: + - Timer: Close + - uid: 24372 + components: + - type: MetaData + name: 11 низ + - type: Transform + pos: 6.5,-3.5 + parent: 16527 + - type: SignalTimer + delay: 11 + - type: DeviceLinkSource + linkedPorts: + 19271: + - Timer: Close + 19270: + - Timer: Close + 19272: + - Timer: Close + - uid: 24373 + components: + - type: MetaData + name: 6 верх + - type: Transform + pos: 8.5,-1.5 + parent: 16527 + - type: SignalTimer + delay: 6 + - type: DeviceLinkSource + linkedPorts: + 19274: + - Timer: Open + 19275: + - Timer: Open + 19273: + - Timer: Open + - uid: 24374 + components: + - type: MetaData + name: 6 низ + - type: Transform + pos: 8.5,-2.5 + parent: 16527 + - type: SignalTimer + delay: 6 + - type: DeviceLinkSource + linkedPorts: + 19271: + - Timer: Open + 19270: + - Timer: Open + 19272: + - Timer: Open + - uid: 24375 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19278: + - Start: Close + - Timer: Open + - uid: 24376 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 16527 + - type: SignalTimer + delay: 3 + - type: DeviceLinkSource + linkedPorts: + 19277: + - Start: Close + - Timer: Open + - uid: 24377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 16527 + - type: SignalTimer + delay: 2 + - type: DeviceLinkSource + linkedPorts: + 19299: + - Start: Close + - Timer: Open + - uid: 24378 + components: + - type: Transform + pos: 23.5,21.5 + parent: 16527 + - type: SignalTimer + delay: 0.5 + - type: DeviceLinkSource + linkedPorts: + 23056: + - Start: Off + - Timer: On + - Timer: Trigger + - uid: 24379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,21.5 + parent: 16527 + - type: SignalTimer + delay: 0.7 + - uid: 24380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,74.5 + parent: 16527 + - type: SignalTimer + delay: 10 + - type: DeviceLinkSource + linkedPorts: + 19310: + - Timer: Open + 19309: + - Timer: Open + 19331: + - Timer: Open + 19311: + - Timer: Open + - uid: 24381 + components: + - type: Transform + pos: -4.5,74.5 + parent: 16527 + - type: SignalTimer + delay: 10 + - uid: 24382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,74.5 + parent: 16527 + - uid: 24383 + components: + - type: MetaData + name: 1 + - type: Transform + pos: -57.5,47.5 + parent: 16527 + - type: SignalTimer + delay: 2 + - type: DeviceLinkSource + linkedPorts: + 23667: + - Start: Off + - Timer: On + 23668: + - Start: Off + - Timer: On + - uid: 24384 + components: + - type: MetaData + name: 2 + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,47.5 + parent: 16527 + - type: SignalTimer + delay: 4 + - type: DeviceLinkSource + linkedPorts: + 19315: + - Timer: Close + 19314: + - Timer: Close + 19313: + - Timer: Close + - uid: 24385 + components: + - type: MetaData + name: 3 + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,47.5 + parent: 16527 + - type: SignalTimer + delay: 6 + - type: DeviceLinkSource + linkedPorts: + 23615: + - Start: Off + - Timer: On + 23614: + - Start: Off + - Timer: On + - uid: 24386 + components: + - type: MetaData + name: 4 + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,47.5 + parent: 16527 + - type: SignalTimer + delay: 8 + - type: DeviceLinkSource + linkedPorts: + 23621: + - Start: Off + - Timer: On + 23620: + - Start: Off + - Timer: On + - uid: 24387 + components: + - type: MetaData + name: 8 + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,48.5 + parent: 16527 + - type: SignalTimer + delay: 16 + - type: DeviceLinkSource + linkedPorts: + 23448: + - Start: Close + - Timer: AutoClose + - Timer: Open + 23450: + - Start: Close + - Timer: AutoClose + - Timer: Open + 23449: + - Start: Close + - Timer: AutoClose + - Timer: Open + 23451: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 24388 + components: + - type: MetaData + name: 5 + - type: Transform + pos: -57.5,48.5 + parent: 16527 + - type: SignalTimer + delay: 10 + - type: DeviceLinkSource + linkedPorts: + 23613: + - Start: Off + - Timer: On + 23618: + - Start: Off + - Timer: On + - uid: 24389 + components: + - type: MetaData + name: 6 + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,48.5 + parent: 16527 + - type: SignalTimer + delay: 12 + - type: DeviceLinkSource + linkedPorts: + 23619: + - Start: Off + - Timer: On + 23622: + - Start: Off + - Timer: On + - uid: 24390 + components: + - type: MetaData + name: 7 + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,48.5 + parent: 16527 + - type: SignalTimer + delay: 14 + - type: DeviceLinkSource + linkedPorts: + 23616: + - Start: Off + - Timer: On + 23623: + - Start: Off + - Timer: On + 23617: + - Start: Off + - Timer: On + - uid: 24391 + components: + - type: MetaData + name: 9 + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,49.5 + parent: 16527 + - type: SignalTimer + delay: 18 + - type: DeviceLinkSource + linkedPorts: + 19322: + - Start: Close + - Timer: Open + 19321: + - Start: Close + - Timer: Open + 19320: + - Start: Close + - Timer: Open + 19323: + - Start: Close + - Timer: Open + 19324: + - Start: Close + - Timer: Open + 19325: + - Start: Close + - Timer: Open + 19330: + - Start: Close + - Timer: Open + 19329: + - Start: Close + - Timer: Open + 19328: + - Start: Close + - Timer: Open + 19327: + - Start: Close + - Timer: Open + 19326: + - Start: Close + - Timer: Open + 19319: + - Start: Close + - Timer: Open + - uid: 24392 + components: + - type: MetaData + name: 10 + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,49.5 + parent: 16527 + - type: SignalTimer + delay: 20 + - type: DeviceLinkSource + linkedPorts: + 19318: + - Start: Close + - Timer: Open + 19317: + - Start: Close + - Timer: Open + 19316: + - Start: Close + - Timer: Open + - uid: 24393 + components: + - type: Transform + pos: -6.5,74.5 + parent: 16527 + - type: SignalTimer + delay: 0.7 + - type: DeviceLinkSource + linkedPorts: + 23058: + - Start: Off + - Timer: On + - Timer: Trigger +- proto: SignArmory + entities: + - uid: 12944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,25.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,29.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + pos: 55.5,26.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 12947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,68.5 + parent: 2 +- proto: SignBio + entities: + - uid: 575 + components: + - type: Transform + pos: 34.5,50.5 + parent: 2 +- proto: SignBiohazardMed + entities: + - uid: 12949 + components: + - type: Transform + pos: 52.5,-1.5 + parent: 2 + - uid: 24394 + components: + - type: Transform + pos: -2.5,51.5 + parent: 16527 +- proto: SignBridge + entities: + - uid: 12950 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 12953 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 12954 + components: + - type: Transform + pos: 73.5,30.5 + parent: 2 +- proto: SignChem + entities: + - uid: 12955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,5.5 + parent: 2 +- proto: SignCryo + entities: + - uid: 10548 + components: + - type: Transform + pos: 73.5,54.5 + parent: 2 +- proto: SignCryogenicsMed + entities: + - uid: 12957 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 +- proto: SignDangerMed + entities: + - uid: 12959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-13.5 + parent: 2 + - uid: 24395 + components: + - type: Transform + pos: -0.5,19.5 + parent: 16527 + - uid: 24396 + components: + - type: Transform + pos: -37.5,50.5 + parent: 16527 + - uid: 24397 + components: + - type: Transform + pos: -37.5,46.5 + parent: 16527 +- proto: SignDirectionalBar + entities: + - uid: 12960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,15.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.50125,15.290295 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 12962 + components: + - type: Transform + pos: 48.5,50.5 + parent: 2 +- proto: SignDirectionalChapel + entities: + - uid: 12963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,32.5 + parent: 2 +- proto: SignDirectionalCryo + entities: + - uid: 16103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,54.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,50.5 + parent: 2 + - uid: 16159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,39.5 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 12966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,11.5 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 12967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,15.5 + parent: 2 + - uid: 12968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,39.5 + parent: 2 + - uid: 12969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,15.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.501503,15.703604 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 12971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,20.5 + parent: 2 + - uid: 12972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,65.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.500885,50.294773 + parent: 2 + - uid: 12974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,11.5 + parent: 2 + - uid: 12975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,11.5 + parent: 2 + - uid: 12977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,35.5 + parent: 2 + - uid: 12978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,50.5 + parent: 2 + - uid: 21183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,35.5 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 21341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,39.3 + parent: 2 +- proto: SignDirectionalIcu + entities: + - uid: 12980 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 12981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 12982 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 12983 + components: + - type: Transform + pos: 34.497726,34.709347 + parent: 2 +- proto: SignDirectionalSec + entities: + - uid: 12984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.499695,15.7111635 + parent: 2 + - uid: 12985 + components: + - type: Transform + pos: 48.498116,50.697037 + parent: 2 +- proto: SignDirectionalSolar + entities: + - uid: 12986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,39.5 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 12987 + components: + - type: Transform + pos: 34.497726,34.30194 + parent: 2 + - uid: 12988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.49894,15.288402 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 12989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - uid: 24398 + components: + - type: Transform + pos: -11.5,16.5 + parent: 16527 +- proto: SignElectricalMed + entities: + - uid: 24399 + components: + - type: Transform + pos: -5.5,35.5 + parent: 16527 +- proto: SignEngineering + entities: + - uid: 12991 + components: + - type: Transform + pos: 46.5,54.5 + parent: 2 +- proto: SignEscapePods + entities: + - uid: 12992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-11.5 + parent: 2 +- proto: SignFlammableMed + entities: + - uid: 3629 + components: + - type: Transform + pos: 41.5,51.5 + parent: 2 + - uid: 24400 + components: + - type: Transform + pos: -5.5,33.5 + parent: 16527 +- proto: SignGravity + entities: + - uid: 12993 + components: + - type: Transform + pos: 54.5,50.5 + parent: 2 +- proto: SignHydro1 + entities: + - uid: 6938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,45.5 + parent: 2 + - uid: 12195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,49.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 12995 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 12996 + components: + - type: Transform + pos: 69.5,49.5 + parent: 2 +- proto: SignKiddiePlaque + entities: + - uid: 24401 + components: + - type: MetaData + desc: Табличка с надписью "Внимание, данное действие может привести к летальному исходу базы 'Sierra'. Выброс газов в атмосферу станции и извне." + name: предупреждающая табличка + - type: Transform + pos: -8.5,31.5 + parent: 16527 + - uid: 24402 + components: + - type: MetaData + desc: 'Деревянная табличка, на которой написано следующее: "После нажатия кнопки для открытия арсенала - советуется отойти на 5 метров для безопасности открытия гермозатвор и сканирования лиц".' + name: табличка с предупреждением + - type: Transform + pos: 0.5,78.5 + parent: 16527 +- proto: SignKitchen + entities: + - uid: 21621 + components: + - type: Transform + pos: 29.5,48.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 12997 + components: + - type: Transform + pos: 67.5,54.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 12998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,22.5 + parent: 2 + - uid: 12999 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 13000 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 +- proto: SignNews + entities: + - uid: 13001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,35.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 13002 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 13003 + components: + - type: Transform + pos: 48.5,36.5 + parent: 2 +- proto: SignPsychology + entities: + - uid: 13004 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 +- proto: SignRedFour + entities: + - uid: 13005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,21.5 + parent: 2 +- proto: SignRedOne + entities: + - uid: 13006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,18.5 + parent: 2 +- proto: SignRedThree + entities: + - uid: 13007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,18.5 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 13008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,21.5 + parent: 2 +- proto: SignRND + entities: + - uid: 13009 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 +- proto: SignSecurearea + entities: + - uid: 984 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 8146 + components: + - type: Transform + pos: 34.5,-42.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + pos: 22.5,-48.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + pos: 28.5,-46.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 + - uid: 13010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-28.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 13017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-28.5 + parent: 2 + - uid: 13899 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 2 + - uid: 13909 + components: + - type: Transform + pos: 37.5,-37.5 + parent: 2 +- proto: SignSecureMed + entities: + - uid: 3630 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 24403 + components: + - type: Transform + pos: -7.5,31.5 + parent: 16527 + - uid: 24404 + components: + - type: Transform + pos: -11.512344,68.64093 + parent: 16527 + - uid: 24405 + components: + - type: Transform + pos: -24.5,51.5 + parent: 16527 +- proto: SignSecureMedRed + entities: + - uid: 13022 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 +- proto: SignSecureSmall + entities: + - uid: 13025 + components: + - type: Transform + pos: 75.5,9.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: 78.5,9.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 13027 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 +- proto: SignServer + entities: + - uid: 13028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 +- proto: SignShock + entities: + - uid: 6535 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: 30.5,-36.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 21569 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 13029 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 +- proto: SignSomethingOld2 + entities: + - uid: 13030 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 13031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,17.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 11291 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 13034 + components: + - type: Transform + pos: 73.5,18.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 13035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,40.5 + parent: 2 +- proto: SignVault + entities: + - uid: 13036 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 13037 + components: + - type: Transform + pos: 52.5,1.5 + parent: 2 +- proto: SignVox + entities: + - uid: 18618 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 18619 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 +- proto: SignXenobio + entities: + - uid: 13039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-13.5 + parent: 2 +- proto: Sink + entities: + - uid: 6928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,49.5 + parent: 2 + - uid: 9307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,47.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,6.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,7.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,37.5 + parent: 2 + - uid: 18621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,47.5 + parent: 2 + - uid: 18659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,52.5 + parent: 2 + - uid: 21342 + components: + - type: Transform + pos: 43.5,53.5 + parent: 2 +- proto: SinkEmpty + entities: + - uid: 24406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,54.5 + parent: 16527 +- proto: SinkStemless + entities: + - uid: 24407 + components: + - type: Transform + pos: 16.6298,20.624214 + parent: 16527 + - uid: 24408 + components: + - type: Transform + pos: 12.457926,20.530365 + parent: 16527 +- proto: SinkStemlessWater + entities: + - uid: 13046 + components: + - type: Transform + pos: 52.5,0.5 + parent: 2 + - type: Drain + accumulator: 0.1664857 + - uid: 13047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-11.5 + parent: 2 + - type: Drain + accumulator: 0.1664857 + - uid: 13048 + components: + - type: Transform + pos: 58.5,-9.5 + parent: 2 + - type: Drain + accumulator: 0.1664857 + - uid: 13049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 2 + - uid: 21573 + components: + - type: Transform + pos: 32.5,55.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 13050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,10.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,27.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,47.5 + parent: 2 + - type: Drain + accumulator: 0.1664857 +- proto: SlipocalypseClusterSoap + entities: + - uid: 24409 + components: + - type: Transform + pos: -32.397583,32.154358 + parent: 16527 +- proto: SmartFridge + entities: + - uid: 13053 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 2403 + components: + - type: Transform + pos: 29.5,-39.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + pos: 54.5,85.5 + parent: 2 + - uid: 13056 + components: + - type: MetaData + name: Энергетический Резерв СМЭС 1 + - type: Transform + pos: 53.5,63.5 + parent: 2 + - uid: 13058 + components: + - type: MetaData + name: Энергетический Резерв СМЭС 6 + - type: Transform + pos: 53.5,61.5 + parent: 2 + - uid: 13059 + components: + - type: MetaData + name: Энергетический Резерв СМЭС 3 + - type: Transform + pos: 51.5,62.5 + parent: 2 + - uid: 13060 + components: + - type: MetaData + name: Энергетический Резерв СМЭС 7 + - type: Transform + pos: 51.5,60.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + pos: 74.5,18.5 + parent: 2 + - type: Battery + startingCharge: 7815124 + - type: PowerNetworkBattery + loadingNetworkDemand: 9090.036 + currentReceiving: 9071.141 + currentSupply: 9090.036 + supplyRampPosition: 19.950195 + - uid: 13062 + components: + - type: Transform + pos: 55.5,48.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + pos: 9.5,43.5 + parent: 2 + - type: Battery + startingCharge: 6900504 + - type: PowerNetworkBattery + loadingNetworkDemand: 40304244 + currentSupply: 47150.188 + supplyRampPosition: 42166.855 + - uid: 13064 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 2 + - type: Battery + startingCharge: 6900504 + - type: PowerNetworkBattery + loadingNetworkDemand: 40304244 + currentSupply: 47150.188 + supplyRampPosition: 42166.855 +- proto: SMESMachineCircuitboard + entities: + - uid: 13065 + components: + - type: Transform + pos: 20.435625,10.164383 + parent: 2 + - uid: 13066 + components: + - type: Transform + pos: 61.18573,47.63329 + parent: 2 + - uid: 24410 + components: + - type: Transform + pos: -12.473246,27.314924 + parent: 16527 +- proto: SoakedCigarette + entities: + - uid: 24411 + components: + - type: Transform + pos: 4.024704,74.75775 + parent: 16527 + - uid: 24412 + components: + - type: Transform + pos: 3.868454,74.71088 + parent: 16527 +- proto: SoapHomemade + entities: + - uid: 13067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.547615,36.495747 + parent: 2 + - uid: 13068 + components: + - type: Transform + pos: 17.468998,-18.260181 + parent: 2 + - uid: 13069 + components: + - type: Transform + pos: 4.4458265,23.733456 + parent: 2 +- proto: SoapNT + entities: + - uid: 13070 + components: + - type: Transform + pos: 22.464077,22.627882 + parent: 2 + - uid: 13071 + components: + - type: Transform + pos: 12.545677,-1.5002004 + parent: 2 +- proto: SoapOmega + entities: + - uid: 13072 + components: + - type: Transform + pos: 61.52257,39.431206 + parent: 2 +- proto: SoapSyndie + entities: + - uid: 24413 + components: + - type: Transform + pos: 4.456028,10.513953 + parent: 16527 + - uid: 24414 + components: + - type: Transform + pos: 8.472605,23.868835 + parent: 16527 + - uid: 24415 + components: + - type: Transform + pos: 8.48823,27.215958 + parent: 16527 +- proto: SodaDispenser + entities: + - uid: 13074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,40.5 + parent: 2 + - uid: 21247 + components: + - type: Transform + pos: 20.5,55.5 + parent: 2 +- proto: SolarAssemblyFlatpack + entities: + - uid: 24416 + components: + - type: Transform + pos: -25.63872,27.47773 + parent: 16527 + - uid: 24417 + components: + - type: Transform + pos: -25.23247,27.680855 + parent: 16527 +- proto: SolarPanel + entities: + - uid: 3600 + components: + - type: Transform + pos: -0.5,53.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: 1.5,53.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: 3.5,53.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: 5.5,53.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: -2.5,53.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + pos: 5.5,52.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13083 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13085 + components: + - type: Transform + pos: -4.5,52.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13086 + components: + - type: Transform + pos: -2.5,51.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13087 + components: + - type: Transform + pos: -0.5,51.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13089 + components: + - type: Transform + pos: -2.5,50.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13090 + components: + - type: Transform + pos: -0.5,52.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13091 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13092 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13093 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13094 + components: + - type: Transform + pos: -0.5,49.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13097 + components: + - type: Transform + pos: 1.5,52.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13099 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13101 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13102 + components: + - type: Transform + pos: 1.5,47.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13104 + components: + - type: Transform + pos: 3.5,52.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13105 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13106 + components: + - type: Transform + pos: 3.5,50.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13107 + components: + - type: Transform + pos: 3.5,49.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13108 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13113 + components: + - type: Transform + pos: 5.5,50.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13115 + components: + - type: Transform + pos: 5.5,48.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13116 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13117 + components: + - type: Transform + pos: 53.5,-30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13118 + components: + - type: Transform + pos: 54.5,-30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13119 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13120 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13121 + components: + - type: Transform + pos: 57.5,-30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13122 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13123 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13124 + components: + - type: Transform + pos: 59.5,-28.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13125 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13126 + components: + - type: Transform + pos: 57.5,-28.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13127 + components: + - type: Transform + pos: 56.5,-28.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13128 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13129 + components: + - type: Transform + pos: 54.5,-28.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13130 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13131 + components: + - type: Transform + pos: 53.5,-24.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13133 + components: + - type: Transform + pos: 55.5,-24.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13134 + components: + - type: Transform + pos: 56.5,-24.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13135 + components: + - type: Transform + pos: 57.5,-24.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13136 + components: + - type: Transform + pos: 58.5,-24.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13137 + components: + - type: Transform + pos: 59.5,-24.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13138 + components: + - type: Transform + pos: 59.5,-26.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13143 + components: + - type: Transform + pos: 54.5,-26.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13144 + components: + - type: Transform + pos: 53.5,-26.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13145 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13146 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13148 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13149 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13150 + components: + - type: Transform + pos: 58.5,-22.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13151 + components: + - type: Transform + pos: 59.5,-22.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13152 + components: + - type: Transform + pos: 59.5,-20.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13153 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13154 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13155 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13156 + components: + - type: Transform + pos: 55.5,-20.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13157 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 + - uid: 13158 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - type: PowerSupplier + supplyRate: 746 +- proto: SolarPanelBroken + entities: + - uid: 3679 + components: + - type: Transform + pos: 56.5,-26.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: 57.5,-26.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 2 + - uid: 10356 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + pos: 54.5,-24.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - uid: 12736 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + pos: 5.5,49.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + pos: -4.5,51.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 2 + - uid: 20372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-16.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 13160 + components: + - type: Transform + pos: -8.5,50.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + pos: 56.5,-36.5 + parent: 2 + - uid: 24418 + components: + - type: Transform + pos: -8.5,23.5 + parent: 16527 +- proto: SolidSecretDoor + entities: + - uid: 13162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,60.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,5.5 + parent: 2 +- proto: SpaceCash + entities: + - uid: 3143 + components: + - type: Transform + pos: 16.49255,44.74503 + parent: 2 + - uid: 21443 + components: + - type: Transform + pos: 16.68946,44.279556 + parent: 2 +- proto: SpaceCash10 + entities: + - uid: 13164 + components: + - type: Transform + pos: 7.5679893,3.2110903 + parent: 2 + - uid: 13165 + components: + - type: Transform + pos: 7.5679893,2.5860903 + parent: 2 +- proto: SpaceHeaterAnchored + entities: + - uid: 13166 + components: + - type: Transform + pos: 55.5,79.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + pos: 42.5,84.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + pos: 40.5,84.5 + parent: 2 + - uid: 13169 + components: + - type: Transform + pos: 84.5,15.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + pos: 41.5,84.5 + parent: 2 +- proto: SpaceVillainArcade + entities: + - uid: 13171 + components: + - type: Transform + pos: 82.5,11.5 + parent: 2 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 13172 + components: + - type: Transform + pos: 83.5,11.5 + parent: 2 + - uid: 24419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,55.5 + parent: 16527 +- proto: SpawnHonkBot + entities: + - uid: 12767 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 +- proto: SpawnMobAlexander + entities: + - uid: 9362 + components: + - type: Transform + pos: 35.5,53.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 13173 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 13218 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 +- proto: SpawnMobBear + entities: + - uid: 13174 + components: + - type: Transform + pos: 60.5,77.5 + parent: 2 + - uid: 24420 + components: + - type: Transform + pos: -0.5,42.5 + parent: 16527 + - uid: 24421 + components: + - type: Transform + pos: 6.5,44.5 + parent: 16527 + - uid: 24422 + components: + - type: Transform + pos: -21.5,22.5 + parent: 16527 + - uid: 24423 + components: + - type: Transform + pos: 22.5,16.5 + parent: 16527 + - uid: 24424 + components: + - type: Transform + pos: 0.5,33.5 + parent: 16527 + - uid: 24425 + components: + - type: Transform + pos: 1.5,70.5 + parent: 16527 + - uid: 24426 + components: + - type: Transform + pos: 4.5,73.5 + parent: 16527 +- proto: SpawnMobBearSalvage + entities: + - uid: 24427 + components: + - type: Transform + pos: -16.5,15.5 + parent: 16527 +- proto: SpawnMobButterfly + entities: + - uid: 13175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,8.5 + parent: 2 + - uid: 13176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 2 +- proto: SpawnMobCarp + entities: + - uid: 24428 + components: + - type: Transform + pos: -39.5,48.5 + parent: 16527 + - uid: 24429 + components: + - type: Transform + pos: -0.5,11.5 + parent: 16527 + - uid: 24430 + components: + - type: Transform + pos: 1.5,9.5 + parent: 16527 + - uid: 24431 + components: + - type: Transform + pos: -1.5,26.5 + parent: 16527 + - uid: 24432 + components: + - type: Transform + pos: 2.5,26.5 + parent: 16527 + - uid: 24433 + components: + - type: Transform + pos: -19.5,12.5 + parent: 16527 + - uid: 24434 + components: + - type: Transform + pos: -16.5,8.5 + parent: 16527 + - uid: 24435 + components: + - type: Transform + pos: 0.5,37.5 + parent: 16527 + - uid: 24436 + components: + - type: Transform + pos: -4.5,9.5 + parent: 16527 + - uid: 24437 + components: + - type: Transform + pos: 16.5,23.5 + parent: 16527 + - uid: 24438 + components: + - type: Transform + pos: 8.5,16.5 + parent: 16527 + - uid: 24439 + components: + - type: Transform + pos: -21.5,25.5 + parent: 16527 + - uid: 24440 + components: + - type: Transform + pos: -50.5,44.5 + parent: 16527 + - uid: 24441 + components: + - type: Transform + pos: 0.5,50.5 + parent: 16527 + - uid: 24442 + components: + - type: Transform + pos: 3.5,81.5 + parent: 16527 + - uid: 24443 + components: + - type: Transform + pos: 2.5,80.5 + parent: 16527 + - uid: 24444 + components: + - type: Transform + pos: -26.5,20.5 + parent: 16527 + - uid: 24445 + components: + - type: Transform + pos: -6.5,62.5 + parent: 16527 + - uid: 24446 + components: + - type: Transform + pos: -47.5,50.5 + parent: 16527 + - uid: 24447 + components: + - type: Transform + pos: -53.5,52.5 + parent: 16527 +- proto: SpawnMobCarpHolo + entities: + - uid: 24448 + components: + - type: Transform + pos: -46.5,43.5 + parent: 16527 + - uid: 24449 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 16527 + - uid: 24450 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 16527 + - uid: 24451 + components: + - type: Transform + pos: -0.5,29.5 + parent: 16527 + - uid: 24452 + components: + - type: Transform + pos: 1.5,29.5 + parent: 16527 + - uid: 24453 + components: + - type: Transform + pos: 12.5,6.5 + parent: 16527 + - uid: 24454 + components: + - type: Transform + pos: -13.5,66.5 + parent: 16527 + - uid: 24455 + components: + - type: Transform + pos: -12.5,62.5 + parent: 16527 + - uid: 24456 + components: + - type: Transform + pos: -46.5,53.5 + parent: 16527 +- proto: SpawnMobCatFloppa + entities: + - uid: 13177 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 +- proto: SpawnMobCatGeneric + entities: + - uid: 13178 + components: + - type: Transform + pos: 48.5,9.5 + parent: 2 +- proto: SpawnMobCatKitten + entities: + - uid: 13179 + components: + - type: Transform + pos: 66.5,10.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 13180 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 16506 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 +- proto: SpawnMobCobraSalvage + entities: + - uid: 21181 + components: + - type: Transform + anchored: False + pos: -1590.0156,25.015625 + parent: 1 + - uid: 24457 + components: + - type: Transform + pos: -29.5,25.5 + parent: 16527 + - uid: 24458 + components: + - type: Transform + pos: -20.5,30.5 + parent: 16527 +- proto: SpawnMobCorgi + entities: + - uid: 13181 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 +- proto: SpawnMobCow + entities: + - uid: 2372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,55.5 + parent: 2 +- proto: SpawnMobCrabAtmos + entities: + - uid: 13182 + components: + - type: Transform + pos: 37.5,78.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 13183 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 +- proto: SpawnMobGorilla + entities: + - uid: 13184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,49.5 + parent: 2 +- proto: SpawnMobGorillaLargo + entities: + - uid: 13185 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 +- proto: SpawnMobHellspawn + entities: + - uid: 24459 + components: + - type: Transform + pos: -51.5,48.5 + parent: 16527 +- proto: SpawnMobKangaroo + entities: + - uid: 24460 + components: + - type: Transform + pos: -25.5,30.5 + parent: 16527 + - uid: 24461 + components: + - type: Transform + pos: 33.5,16.5 + parent: 16527 + - uid: 24462 + components: + - type: Transform + pos: 1.5,51.5 + parent: 16527 + - uid: 24463 + components: + - type: Transform + pos: 3.5,80.5 + parent: 16527 + - uid: 24464 + components: + - type: Transform + pos: 29.5,59.5 + parent: 16527 +- proto: SpawnMobMcGriff + entities: + - uid: 13216 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 16508 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 16509 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 13186 + components: + - type: Transform + pos: 19.5,54.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 13187 + components: + - type: Transform + pos: 76.5,68.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 +- proto: SpawnMobPenguin + entities: + - uid: 13189 + components: + - type: Transform + pos: 74.5,44.5 + parent: 2 + - uid: 13190 + components: + - type: Transform + pos: 75.5,44.5 + parent: 2 +- proto: SpawnMobPossumMorty + entities: + - uid: 13191 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 16507 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 21584 + components: + - type: Transform + pos: 43.5,47.5 + parent: 2 +- proto: SpawnMobShark + entities: + - uid: 22704 + components: + - type: Transform + pos: -0.5,25.5 + parent: 16527 + - uid: 24465 + components: + - type: Transform + pos: -45.5,42.5 + parent: 16527 + - uid: 24466 + components: + - type: Transform + pos: -45.5,54.5 + parent: 16527 + - uid: 24467 + components: + - type: Transform + pos: 0.5,28.5 + parent: 16527 + - uid: 24468 + components: + - type: Transform + pos: 2.5,81.5 + parent: 16527 + - uid: 24674 + components: + - type: Transform + pos: 1.5,25.5 + parent: 16527 +- proto: SpawnMobShiva + entities: + - uid: 13192 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 13193 + components: + - type: Transform + pos: 65.5,62.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 13194 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 +- proto: SpawnMobSpaceCobra + entities: + - uid: 24469 + components: + - type: Transform + pos: 13.5,32.5 + parent: 16527 + - uid: 24470 + components: + - type: Transform + pos: 16.5,32.5 + parent: 16527 + - uid: 24471 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 16527 + - uid: 24472 + components: + - type: Transform + pos: 28.5,13.5 + parent: 16527 + - uid: 24473 + components: + - type: Transform + pos: 28.5,19.5 + parent: 16527 + - uid: 24474 + components: + - type: Transform + pos: 3.5,34.5 + parent: 16527 + - uid: 24475 + components: + - type: Transform + pos: -2.5,33.5 + parent: 16527 + - uid: 24476 + components: + - type: Transform + pos: -5.5,64.5 + parent: 16527 + - uid: 24477 + components: + - type: Transform + pos: 27.5,44.5 + parent: 16527 + - uid: 24478 + components: + - type: Transform + pos: 22.5,51.5 + parent: 16527 + - uid: 24479 + components: + - type: Transform + pos: 33.5,51.5 + parent: 16527 +- proto: SpawnMobSpaceSpider + entities: + - uid: 24480 + components: + - type: Transform + pos: -19.5,4.5 + parent: 16527 + - uid: 24481 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 16527 + - uid: 24482 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 16527 + - uid: 24483 + components: + - type: Transform + pos: 22.5,7.5 + parent: 16527 + - uid: 24484 + components: + - type: Transform + pos: -7.5,29.5 + parent: 16527 + - uid: 24485 + components: + - type: Transform + pos: 20.5,0.5 + parent: 16527 + - uid: 24486 + components: + - type: Transform + pos: 22.5,3.5 + parent: 16527 + - uid: 24487 + components: + - type: Transform + pos: -17.5,24.5 + parent: 16527 + - uid: 24488 + components: + - type: Transform + pos: -14.5,19.5 + parent: 16527 + - uid: 24489 + components: + - type: Transform + pos: -18.5,50.5 + parent: 16527 + - uid: 24490 + components: + - type: Transform + pos: -15.5,46.5 + parent: 16527 + - uid: 24491 + components: + - type: Transform + pos: -13.5,50.5 + parent: 16527 + - uid: 24492 + components: + - type: Transform + pos: -19.5,46.5 + parent: 16527 + - uid: 24493 + components: + - type: Transform + pos: -13.5,22.5 + parent: 16527 + - uid: 24494 + components: + - type: Transform + pos: -14.5,55.5 + parent: 16527 + - uid: 24495 + components: + - type: Transform + pos: -10.5,58.5 + parent: 16527 + - uid: 24496 + components: + - type: Transform + pos: -19.5,53.5 + parent: 16527 +- proto: SpawnMobWalter + entities: + - uid: 13195 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 13196 + components: + - type: Transform + pos: 43.5,74.5 + parent: 2 + - uid: 13197 + components: + - type: Transform + pos: 43.5,75.5 + parent: 2 + - uid: 13198 + components: + - type: Transform + pos: 43.5,76.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 21268 + components: + - type: Transform + pos: 22.5,53.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 11510 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 5576 + components: + - type: Transform + pos: 39.5,53.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + pos: 39.5,52.5 + parent: 2 + - uid: 21253 + components: + - type: Transform + pos: 39.5,54.5 + parent: 2 +- proto: SpawnPointBrigmedic + entities: + - uid: 6450 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 13203 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 13204 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 13206 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 13207 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 13208 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 16510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 13209 + components: + - type: Transform + pos: 80.5,27.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 13505 + components: + - type: Transform + pos: 29.5,57.5 + parent: 2 + - uid: 21431 + components: + - type: Transform + pos: 32.5,57.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 13210 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 13212 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 13213 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 3853 + components: + - type: Transform + pos: 10.5,53.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + pos: 50.5,16.5 + parent: 2 + - uid: 21550 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 16250 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 13217 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 6582 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 13219 + components: + - type: Transform + pos: 65.5,48.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 13220 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 13221 + components: + - type: Transform + pos: 60.5,64.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 13222 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + pos: 46.5,4.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + pos: 48.5,4.5 + parent: 2 + - uid: 13225 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 13226 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 13228 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 13229 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 6930 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 2 + - uid: 13230 + components: + - type: Transform + pos: 40.5,17.5 + parent: 2 + - uid: 21551 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 13574 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 13231 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 13232 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 13233 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - uid: 13234 + components: + - type: Transform + pos: 66.5,38.5 + parent: 2 + - uid: 13235 + components: + - type: Transform + pos: 73.5,56.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + pos: 40.5,43.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 13238 + components: + - type: Transform + pos: 68.5,9.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 13239 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 13240 + components: + - type: Transform + pos: -0.5,33.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 13241 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 13242 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 13245 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 13246 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 13248 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 13249 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 13250 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 12913 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 16485 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 12792 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - uid: 13255 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 2371 + components: + - type: Transform + pos: 20.5,50.5 + parent: 2 + - uid: 10026 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 + - uid: 21858 + components: + - type: Transform + pos: 15.5,44.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 13258 + components: + - type: Transform + pos: 41.5,60.5 + parent: 2 + - uid: 13259 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + pos: 42.5,60.5 + parent: 2 + - uid: 13261 + components: + - type: Transform + pos: 43.5,60.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 13262 + components: + - type: Transform + pos: 42.5,63.5 + parent: 2 + - uid: 13263 + components: + - type: Transform + pos: 44.5,62.5 + parent: 2 + - uid: 13264 + components: + - type: Transform + pos: 43.5,63.5 + parent: 2 + - uid: 13265 + components: + - type: Transform + pos: 44.5,61.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 13266 + components: + - type: Transform + pos: 55.5,20.5 + parent: 2 +- proto: SpawnPointZookeeper + entities: + - uid: 13267 + components: + - type: Transform + pos: 77.5,42.5 + parent: 2 +- proto: SpeedLoaderMagnum + entities: + - uid: 21067 + components: + - type: Transform + parent: 21059 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21077 + components: + - type: Transform + parent: 21069 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpiderWeb + entities: + - uid: 24497 + components: + - type: Transform + pos: -19.5,0.5 + parent: 16527 + - uid: 24498 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 16527 + - uid: 24499 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 16527 + - uid: 24500 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 16527 + - uid: 24501 + components: + - type: Transform + pos: -20.5,3.5 + parent: 16527 + - uid: 24502 + components: + - type: Transform + pos: -19.5,2.5 + parent: 16527 + - uid: 24503 + components: + - type: Transform + pos: -21.5,0.5 + parent: 16527 + - uid: 24504 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 16527 + - uid: 24505 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 16527 + - uid: 24506 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 16527 + - uid: 24507 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 16527 + - uid: 24508 + components: + - type: Transform + pos: -10.5,28.5 + parent: 16527 + - uid: 24509 + components: + - type: Transform + pos: 22.5,0.5 + parent: 16527 + - uid: 24510 + components: + - type: Transform + pos: 22.5,2.5 + parent: 16527 + - uid: 24511 + components: + - type: Transform + pos: 21.5,10.5 + parent: 16527 + - uid: 24512 + components: + - type: Transform + pos: 15.5,11.5 + parent: 16527 + - uid: 24513 + components: + - type: Transform + pos: 15.5,10.5 + parent: 16527 + - uid: 24514 + components: + - type: Transform + pos: 16.5,10.5 + parent: 16527 + - uid: 24515 + components: + - type: Transform + pos: 20.5,4.5 + parent: 16527 + - uid: 24516 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 16527 + - uid: 24517 + components: + - type: Transform + pos: 20.5,8.5 + parent: 16527 + - uid: 24518 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 16527 + - uid: 24519 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 16527 + - uid: 24520 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 16527 + - uid: 24521 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 16527 + - uid: 24522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-5.5 + parent: 16527 + - uid: 24523 + components: + - type: Transform + pos: -6.5,29.5 + parent: 16527 + - uid: 24524 + components: + - type: Transform + pos: -7.5,28.5 + parent: 16527 + - uid: 24525 + components: + - type: Transform + pos: -10.5,20.5 + parent: 16527 + - uid: 24526 + components: + - type: Transform + pos: -13.5,21.5 + parent: 16527 + - uid: 24527 + components: + - type: Transform + pos: -14.5,22.5 + parent: 16527 + - uid: 24528 + components: + - type: Transform + pos: -17.5,18.5 + parent: 16527 + - uid: 24529 + components: + - type: Transform + pos: -17.5,19.5 + parent: 16527 + - uid: 24530 + components: + - type: Transform + pos: -18.5,24.5 + parent: 16527 + - uid: 24531 + components: + - type: Transform + pos: -17.5,25.5 + parent: 16527 + - uid: 24532 + components: + - type: Transform + pos: -18.5,21.5 + parent: 16527 + - uid: 24533 + components: + - type: Transform + pos: -12.5,25.5 + parent: 16527 + - uid: 24534 + components: + - type: Transform + pos: -11.5,23.5 + parent: 16527 + - uid: 24535 + components: + - type: Transform + pos: -13.5,24.5 + parent: 16527 + - uid: 24536 + components: + - type: Transform + pos: -7.5,21.5 + parent: 16527 + - uid: 24537 + components: + - type: Transform + pos: -6.5,22.5 + parent: 16527 + - uid: 24538 + components: + - type: Transform + pos: -6.5,21.5 + parent: 16527 + - uid: 24539 + components: + - type: Transform + pos: -9.5,22.5 + parent: 16527 + - uid: 24540 + components: + - type: Transform + pos: -7.5,24.5 + parent: 16527 + - uid: 24541 + components: + - type: Transform + pos: -7.5,25.5 + parent: 16527 + - uid: 24542 + components: + - type: Transform + pos: -6.5,25.5 + parent: 16527 + - uid: 24543 + components: + - type: Transform + pos: -10.5,25.5 + parent: 16527 + - uid: 24544 + components: + - type: Transform + pos: -18.5,50.5 + parent: 16527 + - uid: 24545 + components: + - type: Transform + pos: -17.5,50.5 + parent: 16527 + - uid: 24546 + components: + - type: Transform + pos: -17.5,49.5 + parent: 16527 + - uid: 24547 + components: + - type: Transform + pos: -18.5,47.5 + parent: 16527 + - uid: 24548 + components: + - type: Transform + pos: -17.5,46.5 + parent: 16527 + - uid: 24549 + components: + - type: Transform + pos: -16.5,47.5 + parent: 16527 + - uid: 24550 + components: + - type: Transform + pos: -18.5,46.5 + parent: 16527 + - uid: 24551 + components: + - type: Transform + pos: -15.5,46.5 + parent: 16527 + - uid: 24552 + components: + - type: Transform + pos: -13.5,50.5 + parent: 16527 + - uid: 24553 + components: + - type: Transform + pos: -14.5,49.5 + parent: 16527 + - uid: 24554 + components: + - type: Transform + pos: -14.5,51.5 + parent: 16527 + - uid: 24555 + components: + - type: Transform + pos: -13.5,51.5 + parent: 16527 + - uid: 24556 + components: + - type: Transform + pos: -12.5,49.5 + parent: 16527 + - uid: 24557 + components: + - type: Transform + pos: -11.5,50.5 + parent: 16527 + - uid: 24558 + components: + - type: Transform + pos: -11.5,47.5 + parent: 16527 + - uid: 24559 + components: + - type: Transform + pos: -10.5,51.5 + parent: 16527 + - uid: 24560 + components: + - type: Transform + pos: -10.5,48.5 + parent: 16527 + - uid: 24561 + components: + - type: Transform + pos: -21.5,48.5 + parent: 16527 + - uid: 24562 + components: + - type: Transform + pos: -19.5,49.5 + parent: 16527 + - uid: 24563 + components: + - type: Transform + pos: -19.5,48.5 + parent: 16527 + - uid: 24564 + components: + - type: Transform + pos: -15.5,48.5 + parent: 16527 + - uid: 24565 + components: + - type: Transform + pos: -14.5,47.5 + parent: 16527 + - uid: 24566 + components: + - type: Transform + pos: -20.5,50.5 + parent: 16527 + - uid: 24567 + components: + - type: Transform + pos: -11.5,48.5 + parent: 16527 + - uid: 24568 + components: + - type: Transform + pos: -10.5,49.5 + parent: 16527 + - uid: 24569 + components: + - type: Transform + pos: -12.5,51.5 + parent: 16527 + - uid: 24570 + components: + - type: Transform + pos: -17.5,48.5 + parent: 16527 + - uid: 24571 + components: + - type: Transform + pos: -9.5,49.5 + parent: 16527 + - uid: 24572 + components: + - type: Transform + pos: -15.5,55.5 + parent: 16527 + - uid: 24573 + components: + - type: Transform + pos: -13.5,53.5 + parent: 16527 + - uid: 24574 + components: + - type: Transform + pos: -12.5,58.5 + parent: 16527 + - uid: 24575 + components: + - type: Transform + pos: -13.5,59.5 + parent: 16527 + - uid: 24576 + components: + - type: Transform + pos: -13.5,56.5 + parent: 16527 + - uid: 24577 + components: + - type: Transform + pos: -9.5,54.5 + parent: 16527 + - uid: 24578 + components: + - type: Transform + pos: -10.5,53.5 + parent: 16527 + - uid: 24579 + components: + - type: Transform + pos: -12.5,54.5 + parent: 16527 + - uid: 24580 + components: + - type: Transform + pos: -12.5,53.5 + parent: 16527 + - uid: 24581 + components: + - type: Transform + pos: -12.5,52.5 + parent: 16527 + - uid: 24582 + components: + - type: Transform + pos: -9.5,56.5 + parent: 16527 + - uid: 24583 + components: + - type: Transform + pos: -10.5,57.5 + parent: 16527 + - uid: 24584 + components: + - type: Transform + pos: -9.5,59.5 + parent: 16527 + - uid: 24585 + components: + - type: Transform + pos: -11.5,59.5 + parent: 16527 + - uid: 24586 + components: + - type: Transform + pos: -14.5,53.5 + parent: 16527 + - uid: 24587 + components: + - type: Transform + pos: -14.5,55.5 + parent: 16527 + - uid: 24588 + components: + - type: Transform + pos: -14.5,57.5 + parent: 16527 + - uid: 24589 + components: + - type: Transform + pos: -10.5,55.5 + parent: 16527 + - uid: 24590 + components: + - type: Transform + pos: -20.5,52.5 + parent: 16527 + - uid: 24591 + components: + - type: Transform + pos: -18.5,53.5 + parent: 16527 + - uid: 24592 + components: + - type: Transform + pos: -20.5,55.5 + parent: 16527 + - uid: 24593 + components: + - type: Transform + pos: -19.5,56.5 + parent: 16527 + - uid: 24594 + components: + - type: Transform + pos: -21.5,53.5 + parent: 16527 + - uid: 24595 + components: + - type: Transform + pos: -19.5,52.5 + parent: 16527 + - uid: 24596 + components: + - type: Transform + pos: -19.5,51.5 + parent: 16527 + - uid: 24597 + components: + - type: Transform + pos: -18.5,55.5 + parent: 16527 + - uid: 24598 + components: + - type: Transform + pos: -19.5,54.5 + parent: 16527 + - uid: 24599 + components: + - type: Transform + pos: -17.5,55.5 + parent: 16527 +- proto: Spoon + entities: + - uid: 24600 + components: + - type: Transform + pos: 17.163906,27.288605 + parent: 16527 +- proto: SpoonPlastic + entities: + - uid: 24601 + components: + - type: Transform + pos: -36.14482,31.602295 + parent: 16527 +- proto: SprayBottle + entities: + - uid: 13268 + components: + - type: Transform + pos: 56.576157,-3.316105 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 13269 + components: + - type: Transform + pos: 64.92543,49.606125 + parent: 2 +- proto: SprayBottleWater + entities: + - uid: 13270 + components: + - type: Transform + pos: 24.526066,-7.350095 + parent: 2 +- proto: Stairs + entities: + - uid: 24602 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 16527 + - uid: 24603 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 16527 + - uid: 24604 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 16527 +- proto: StairStage + entities: + - uid: 13271 + components: + - type: Transform + pos: 58.5,-11.5 + parent: 2 + - uid: 24605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,40.5 + parent: 16527 + - uid: 24606 + components: + - type: Transform + pos: -33.5,51.5 + parent: 16527 + - uid: 24607 + components: + - type: Transform + pos: -31.5,51.5 + parent: 16527 + - uid: 24608 + components: + - type: Transform + pos: -27.5,54.5 + parent: 16527 + - uid: 24609 + components: + - type: Transform + pos: -29.5,54.5 + parent: 16527 +- proto: StairStageDark + entities: + - uid: 24610 + components: + - type: Transform + pos: 6.5,73.5 + parent: 16527 + - uid: 24611 + components: + - type: Transform + pos: -0.5,73.5 + parent: 16527 + - uid: 24612 + components: + - type: Transform + pos: -1.5,73.5 + parent: 16527 + - uid: 24613 + components: + - type: Transform + pos: 7.5,73.5 + parent: 16527 +- proto: StairWood + entities: + - uid: 268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,50.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,40.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,49.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,53.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,51.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,40.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,52.5 + parent: 2 + - uid: 21225 + components: + - type: Transform + pos: 24.5,55.5 + parent: 2 + - uid: 21226 + components: + - type: Transform + pos: 23.5,55.5 + parent: 2 + - uid: 21227 + components: + - type: Transform + pos: 22.5,55.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 13273 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 14719 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 22232 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 2 +- proto: StationAiUploadCircuitboard + entities: + - uid: 11203 + components: + - type: Transform + parent: 11202 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: StationAiUploadComputer + entities: + - uid: 4322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-44.5 + parent: 2 +- proto: StationAnchor + entities: + - uid: 13278 + components: + - type: Transform + pos: 54.5,56.5 + parent: 2 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 588 + components: + - type: Transform + parent: 577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: StationMap + entities: + - uid: 13279 + components: + - type: Transform + pos: 56.5,54.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,21.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,54.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,30.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,35.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: 61.5,15.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,43.5 + parent: 2 + - uid: 13288 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 +- proto: StationMapAssembly + entities: + - uid: 24614 + components: + - type: Transform + pos: -5.5,13.5 + parent: 16527 + - uid: 24615 + components: + - type: Transform + pos: 6.5,13.5 + parent: 16527 + - uid: 24616 + components: + - type: Transform + pos: -5.5,53.5 + parent: 16527 +- proto: StationMapBroken + entities: + - uid: 13289 + components: + - type: Transform + pos: 79.5,9.5 + parent: 2 + - uid: 13290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,61.5 + parent: 2 +- proto: StealthBox + entities: + - uid: 13291 + components: + - type: Transform + pos: 20.510519,64.45485 + parent: 2 +- proto: SteelBench + entities: + - uid: 13292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,26.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,26.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,26.5 + parent: 2 + - uid: 24617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 16527 + - uid: 24618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 16527 + - uid: 24619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 16527 + - uid: 24620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 16527 + - uid: 24621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 16527 + - uid: 24622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 16527 + - uid: 24623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,51.5 + parent: 16527 + - uid: 24624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,49.5 + parent: 16527 +- proto: Stool + entities: + - uid: 13295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,33.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 6922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,41.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,50.5 + parent: 2 + - uid: 11226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,50.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,50.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,62.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + pos: 41.5,43.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + pos: 40.5,43.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + pos: 39.5,43.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + pos: 42.5,43.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,33.5 + parent: 2 + - uid: 21271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,50.5 + parent: 2 + - uid: 21272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,50.5 + parent: 2 + - uid: 21273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,50.5 + parent: 2 + - uid: 21274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,50.5 + parent: 2 + - uid: 21275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,50.5 + parent: 2 + - uid: 21276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,50.5 + parent: 2 + - uid: 21278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,50.5 + parent: 2 + - uid: 24625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,50.5 + parent: 16527 + - uid: 24626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,51.5 + parent: 16527 + - uid: 24627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,52.5 + parent: 16527 +- proto: StorageCanister + entities: + - uid: 13307 + components: + - type: Transform + pos: 39.5,74.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: 39.5,75.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + pos: 35.5,70.5 + parent: 2 + - uid: 13310 + components: + - type: Transform + pos: 34.5,69.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + pos: 35.5,69.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: 34.5,70.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: 26.5,83.5 + parent: 2 + - uid: 13314 + components: + - type: Transform + pos: 15.5,67.5 + parent: 2 + - uid: 13315 + components: + - type: Transform + pos: 29.5,66.5 + parent: 2 +- proto: StorageImplanter + entities: + - uid: 24628 + components: + - type: Transform + pos: -50.65172,42.67207 + parent: 16527 +- proto: StrangePill + entities: + - uid: 796 + components: + - type: Transform + rot: 0.22689280275926285 rad + pos: 41.337914,-27.273623 + parent: 2 + - uid: 21254 + components: + - type: Transform + rot: -1.117010721276371 rad + pos: 40.817,-26.804873 + parent: 2 + - uid: 24629 + components: + - type: Transform + pos: 11.735521,-4.290595 + parent: 16527 + - uid: 24630 + components: + - type: Transform + pos: -12.220541,-6.1665163 + parent: 16527 + - uid: 24631 + components: + - type: Transform + pos: -6.0569034,12.160178 + parent: 16527 + - uid: 24632 + components: + - type: Transform + pos: -0.74440336,9.378928 + parent: 16527 + - uid: 24633 + components: + - type: Transform + pos: 7.0207767,11.800803 + parent: 16527 + - uid: 24634 + components: + - type: Transform + pos: 12.231697,14.748684 + parent: 16527 + - uid: 24635 + components: + - type: Transform + pos: -7.4655,48.50592 + parent: 16527 + - uid: 24636 + components: + - type: Transform + pos: -6.6842346,52.16217 + parent: 16527 + - uid: 24637 + components: + - type: Transform + pos: -5.4654846,50.16217 + parent: 16527 + - uid: 24638 + components: + - type: Transform + pos: -3.6061249,52.334045 + parent: 16527 + - uid: 24639 + components: + - type: Transform + pos: -0.8740387,51.31488 + parent: 16527 + - uid: 24640 + components: + - type: Transform + pos: 1.7665405,49.40863 + parent: 16527 +- proto: Stunbaton + entities: + - uid: 10983 + components: + - type: Transform + parent: 10982 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10984 + components: + - type: Transform + parent: 10982 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10985 + components: + - type: Transform + parent: 10982 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10986 + components: + - type: Transform + parent: 10982 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10987 + components: + - type: Transform + parent: 10982 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Stunprod + entities: + - uid: 16523 + components: + - type: Transform + pos: 73.94125,2.4705253 + parent: 2 + - uid: 16524 + components: + - type: Transform + pos: 73.81625,2.5955253 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 2220 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 13317 + components: + - type: MetaData + name: подстанция атмос + - type: Transform + pos: 39.5,73.5 + parent: 2 + - uid: 13318 + components: + - type: MetaData + name: подстанция сервис + - type: Transform + pos: 45.5,57.5 + parent: 2 + - uid: 13319 + components: + - type: MetaData + name: подстанция техи + - type: Transform + pos: 25.5,64.5 + parent: 2 + - uid: 13320 + components: + - type: MetaData + name: подстанция инж 1 + - type: Transform + pos: 52.5,63.5 + parent: 2 + - uid: 13321 + components: + - type: MetaData + name: подстанция Снаб + - type: Transform + pos: 13.5,3.5 + parent: 2 + - type: Battery + startingCharge: 2231236.2 + - type: PowerNetworkBattery + loadingNetworkDemand: 12375.049 + currentReceiving: 11186.025 + currentSupply: 12375.049 + supplyRampPosition: 1190.3232 + - uid: 13322 + components: + - type: MetaData + name: подстанция мостик + - type: Transform + pos: 33.5,19.5 + parent: 2 + - type: Battery + startingCharge: 2373783.2 + - type: PowerNetworkBattery + loadingNetworkDemand: 6945.0273 + currentReceiving: 7690.1875 + currentSupply: 6945.0273 + - uid: 13324 + components: + - type: MetaData + name: подстанция бриг + - type: Transform + pos: 45.5,41.5 + parent: 2 + - type: Battery + startingCharge: 2141691.5 + - type: PowerNetworkBattery + loadingNetworkDemand: 15930.063 + currentReceiving: 13474.737 + currentSupply: 15930.063 + supplyRampPosition: 2456.8926 + - uid: 13325 + components: + - type: MetaData + name: подстанция Меда + - type: Transform + pos: 61.5,-3.5 + parent: 2 + - type: Battery + startingCharge: 1937215.8 + - type: PowerNetworkBattery + loadingNetworkDemand: 30649.809 + currentReceiving: 22951.283 + currentSupply: 30649.809 + supplyRampPosition: 7026.61 + - uid: 13326 + components: + - type: MetaData + name: подстанция телекомы + - type: Transform + pos: 75.5,19.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 9090.036 + currentReceiving: 9090.036 + currentSupply: 9090.036 + - uid: 13327 + components: + - type: MetaData + name: подстанция сервис 2 + - type: Transform + pos: 59.5,70.5 + parent: 2 + - type: Battery + startingCharge: 1985041.4 + - type: PowerNetworkBattery + loadingNetworkDemand: 27390.342 + currentReceiving: 20852.846 + currentSupply: 27390.342 + supplyRampPosition: 5860.6177 + - uid: 13328 + components: + - type: MetaData + name: подстанция Гравген и Якорь + - type: Transform + pos: 55.5,47.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + pos: 54.5,86.5 + parent: 2 + - uid: 16443 + components: + - type: Transform + pos: 31.5,-39.5 + parent: 2 + - uid: 22413 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 1916 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 13330 + components: + - type: MetaData + name: настенная подстанция пермабриг + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 13331 + components: + - type: Transform + pos: 78.5,5.5 + parent: 2 + - uid: 24641 + components: + - type: Transform + pos: -6.5,6.5 + parent: 16527 + - type: Battery + startingCharge: 0 +- proto: SuitStorageAtmos + entities: + - uid: 6380 + components: + - type: Transform + pos: 41.5,76.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6381 + - uid: 6382 + components: + - type: Transform + pos: 41.5,74.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6383 + - uid: 6384 + components: + - type: Transform + pos: 41.5,75.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6385 +- proto: SuitStorageBase + entities: + - uid: 24642 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 16527 + - uid: 24643 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 16527 + - uid: 24644 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 16527 + - uid: 24645 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 16527 + - uid: 24646 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 16527 +- proto: SuitStorageCaptain + entities: + - uid: 13332 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 13333 + components: + - type: Transform + pos: 40.5,66.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 5 + components: + - type: Transform + pos: 47.5,86.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6 + - 8 + - uid: 7405 + components: + - type: Transform + pos: 45.5,86.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7406 + - 7407 + - uid: 7408 + components: + - type: Transform + pos: 45.5,85.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7409 + - 7410 + - uid: 7411 + components: + - type: Transform + pos: 47.5,84.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7413 + - 7412 + - uid: 7414 + components: + - type: Transform + pos: 45.5,83.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7415 + - 7416 + - uid: 7417 + components: + - type: Transform + pos: 45.5,84.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7419 + - 7418 + - uid: 7420 + components: + - type: Transform + pos: 47.5,83.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7422 + - 7421 + - uid: 7423 + components: + - type: Transform + pos: 47.5,85.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7424 + - 7425 +- proto: SuitStorageEVA + entities: + - uid: 13334 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13335 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13336 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13337 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13338 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13339 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 13340 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 +- proto: SuitStorageEVASyndicate + entities: + - uid: 24647 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 16527 + - uid: 24648 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 16527 + - uid: 24649 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 16527 + - uid: 24650 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 16527 +- proto: SuitStorageHOS + entities: + - uid: 11115 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11117 +- proto: SuitStorageNTSRA + entities: + - uid: 13341 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 9 + components: + - type: Transform + pos: 60.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12 + - 10 + - uid: 13 + components: + - type: Transform + pos: 61.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14 - 16 - uid: 17 components: - type: Transform - pos: 60.5,26.5 + pos: 60.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18 + - 20 + - uid: 21 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 24 + - 22 + - uid: 25 + components: + - type: Transform + pos: 61.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26 + - 28 + - uid: 29 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30 + - 32 +- proto: SuitStorageWarden + entities: + - uid: 11112 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11113 + - 11114 +- proto: SurveillanceCameraCommand + entities: + - uid: 4317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Выход в космос к ии + - uid: 5819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Загрузка в ии + - uid: 13344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,27.5 + parent: 2 + - uid: 13345 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: мостик + - uid: 13346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: глава персонала + - uid: 13347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 2 + - uid: 13348 + components: + - type: Transform + pos: 79.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: телекоммуникационные сервера + - uid: 13355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: Офис ГСБ + - uid: 13356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,49.5 + parent: 2 + - type: SurveillanceCamera + id: Гравген + - uid: 13357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,47.5 + parent: 2 + - type: SurveillanceCamera + id: Хранилище плат + - uid: 13358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 2 + - type: SurveillanceCamera + id: Ядерное Хранилище + - uid: 13359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - type: SurveillanceCamera + id: Серверная РНД + - uid: 13920 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Вход к ИИ + - uid: 21774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Запасной вход ИИ + - uid: 21775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ИИ питание + - uid: 21779 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - type: SurveillanceCamera + id: Внешняя ии 4 + - uid: 21781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Внешняя ии 6 + - uid: 21782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Внешняя ии 7 + - uid: 21784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Внешняя ии 1 + - uid: 21785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Внешняя ии 2 + - uid: 21787 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Внешняя ии 3 + - uid: 21820 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 2 +- proto: SurveillanceCameraEngineering + entities: + - uid: 8309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,73.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: РИТЭГ + - uid: 13360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,70.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Атмос Стойка + - uid: 13361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,77.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Холл Атмос + - uid: 13362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,56.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Стойка + - uid: 13364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,62.5 + parent: 2 + - type: SurveillanceCamera + id: Инж Брифрум + - uid: 13365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,61.5 + parent: 2 + - type: SurveillanceCamera + id: СМЭС + - uid: 13366 + components: + - type: Transform + pos: 47.5,59.5 + parent: 2 + - uid: 13367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,69.5 + parent: 2 + - type: SurveillanceCamera + id: Холл + - uid: 13368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,84.5 + parent: 2 + - type: SurveillanceCamera + id: Выход в верфь + - uid: 13369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,70.5 + parent: 2 + - type: SurveillanceCamera + id: РИТЭГ 2 + - uid: 13370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,79.5 + parent: 2 + - type: SurveillanceCamera + id: ДАМ + - uid: 13371 + components: + - type: Transform + pos: 52.5,81.5 + parent: 2 + - type: SurveillanceCamera + id: ТЭГ + - uid: 13372 + components: + - type: Transform + pos: 37.5,86.5 + parent: 2 + - type: SurveillanceCamera + id: Камера сгорания + - uid: 13373 + components: + - type: Transform + pos: 45.5,90.5 + parent: 2 + - type: SurveillanceCamera + id: Верфь +- proto: SurveillanceCameraGeneral + entities: + - uid: 13374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,57.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Отбытие 1 + - uid: 13375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,60.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Отбытие 2 + - uid: 13376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Прибытие + - uid: 13377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Дорматории + - uid: 13378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Парк + - uid: 13379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Вход в бар + - uid: 13380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Вход дормы + - uid: 13381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Вход западное крыло мостика + - uid: 13382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Вход снабжение + - uid: 13383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Стойка химия + - uid: 13384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Восточное крыло мостика + - uid: 13385 + components: + - type: Transform + pos: 51.5,51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Вход в инженерный + - uid: 13386 + components: + - type: Transform + pos: 65.5,51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: вход библиотека + - uid: 13387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Вход в церковь + - uid: 13388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Вход телекоммуникация + - uid: 13389 + components: + - type: Transform + pos: 65.5,38.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,77.5 + parent: 2 + - type: SurveillanceCamera + id: Старое отбытие 1 + - uid: 13391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,69.5 + parent: 2 + - type: SurveillanceCamera + id: Старое отбытие 2 + - uid: 13392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,46.5 + parent: 2 + - uid: 13394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,27.5 + parent: 2 + - type: SurveillanceCamera + id: Крио + - uid: 13395 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 + - uid: 13396 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,57.5 + parent: 2 + - uid: 13398 + components: + - type: Transform + pos: 86.5,63.5 + parent: 2 + - uid: 13399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,68.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,68.5 + parent: 2 + - uid: 21413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,39.5 + parent: 2 +- proto: SurveillanceCameraMedical + entities: + - uid: 13401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Кабинет ГВ + - uid: 13402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Операционная + - uid: 13403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: вирусология + - uid: 13404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: стойка + - uid: 13405 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 13406 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 2 + - type: SurveillanceCamera + id: Клонерка + - uid: 13407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,0.5 + parent: 2 + - type: SurveillanceCamera + id: Криокапсулы + - uid: 13408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,1.5 + parent: 2 + - type: SurveillanceCamera + id: Палата + - uid: 13409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-6.5 + parent: 2 + - type: SurveillanceCamera + id: Перекусочная + - uid: 13410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,8.5 + parent: 2 + - type: SurveillanceCamera + id: Морг + - uid: 13411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,2.5 + parent: 2 + - type: SurveillanceCamera + id: Склад + - uid: 13412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,10.5 + parent: 2 + - type: SurveillanceCamera + id: психолог + - uid: 13413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,4.5 + parent: 2 +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 13414 + components: + - type: Transform + pos: 84.5,18.5 + parent: 2 +- proto: SurveillanceCameraRouterConstructed + entities: + - uid: 13415 + components: + - type: Transform + pos: 85.5,15.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 13416 + components: + - type: Transform + pos: 83.5,19.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 13417 + components: + - type: Transform + pos: 83.5,15.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 13418 + components: + - type: Transform + pos: 82.5,16.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 13419 + components: + - type: Transform + pos: 84.5,16.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 13420 + components: + - type: Transform + pos: 85.5,18.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 13421 + components: + - type: Transform + pos: 85.5,16.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 13422 + components: + - type: Transform + pos: 82.5,18.5 + parent: 2 + - uid: 13423 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 13424 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - type: SurveillanceCamera + id: Генератор аномалий + - uid: 13425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 2 + - uid: 13426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Холл + - uid: 13428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: стойка + - uid: 13429 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - type: SurveillanceCamera + id: Лаборатория + - uid: 13430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - type: SurveillanceCamera + id: Ксеноархеология +- proto: SurveillanceCameraSecurity + entities: + - uid: 5043 + components: + - type: Transform + pos: 57.5,16.5 + parent: 2 + - type: SurveillanceCamera + id: раздевалка + - uid: 12235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,28.5 + parent: 2 + - uid: 13431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,22.5 + parent: 2 + - type: SurveillanceCamera + id: Холл СБ + - uid: 13432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,41.5 + parent: 2 + - type: SurveillanceCamera + id: Перма + - uid: 13433 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: охранный пост карго + - uid: 13434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Адвокат + - uid: 13436 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Стойка + - uid: 13437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Кабинет Детектива + - uid: 13438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,24.5 + parent: 2 + - uid: 13439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,28.5 + parent: 2 + - type: SurveillanceCamera + id: Офис Смотрителя + - uid: 13440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,29.5 + parent: 2 + - uid: 13441 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: пермабриг тамбур + - uid: 13442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,18.5 + parent: 2 + - type: SurveillanceCamera + id: камеры 1 + - uid: 13443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,18.5 + parent: 2 + - type: SurveillanceCamera + id: камеры 2 + - uid: 13444 + components: + - type: Transform + pos: 56.5,26.5 + parent: 2 + - type: SurveillanceCamera + id: Тамбур оружейной + - uid: 13445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,20.5 + parent: 2 + - type: SurveillanceCamera + id: Бригмед + - uid: 13446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: Оружейная + - uid: 13447 + components: + - type: Transform + pos: 51.5,16.5 + parent: 2 + - type: SurveillanceCamera + id: Допросная + - uid: 13448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,17.5 + parent: 2 + - type: SurveillanceCamera + id: Старое прибытие +- proto: SurveillanceCameraService + entities: + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Бар + - uid: 5848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Кухня + - uid: 13449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,57.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Библиотека + - uid: 13450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: зоопарк + - uid: 13451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Кабинет зоолога + - uid: 13452 + components: + - type: Transform + pos: 79.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Церковь + - uid: 13453 + components: + - type: Transform + pos: 67.5,47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Уборщик + - uid: 13454 + components: + - type: Transform + pos: 64.5,61.5 + parent: 2 + - type: SurveillanceCamera + id: Библиотека + - uid: 13912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,48.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Гидропоника + - uid: 16236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Барная стойка + - uid: 21816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Бар 2 + - uid: 21837 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Бар 3 + - uid: 21838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: ВИП зона +- proto: SurveillanceCameraSupply + entities: + - uid: 13455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: холл + - uid: 13456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: квартирмейстер + - uid: 13457 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 13459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - type: SurveillanceCamera + id: Гермокамера утилей +- proto: SurveillanceCameraWirelessRouterConstructed + entities: + - uid: 13460 + components: + - type: Transform + pos: 84.5,19.5 + parent: 2 +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 13461 + components: + - type: Transform + pos: 85.5,19.5 + parent: 2 +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 13462 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 13463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,40.5 + parent: 2 +- proto: SurvivalKnife + entities: + - uid: 24651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.727737,29.386658 + parent: 16527 + - uid: 24652 + components: + - type: Transform + pos: 11.527172,22.812958 + parent: 16527 +- proto: SyndiAgentPDA + entities: + - uid: 24653 + components: + - type: Transform + pos: -31.07399,42.496094 + parent: 16527 +- proto: SyndicateBomb + entities: + - uid: 24654 + components: + - type: Transform + pos: -15.5,80.5 + parent: 16527 +- proto: SyndicateComputerComms + entities: + - uid: 24655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,40.5 + parent: 16527 +- proto: SyndicateIDCard + entities: + - uid: 24656 + components: + - type: Transform + pos: -26.646118,40.71576 + parent: 16527 +- proto: SyndicateJawsOfLife + entities: + - uid: 24657 + components: + - type: Transform + pos: -5.990921,70.62372 + parent: 16527 +- proto: SyndicateMicrowave + entities: + - uid: 13464 + components: + - type: Transform + pos: 43.5,66.5 + parent: 2 +- proto: SyndicatePersonalAI + entities: + - uid: 24658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5774384,54.5448 + parent: 16527 +- proto: SyndicateSponge + entities: + - uid: 24659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.249063,24.39633 + parent: 16527 + - uid: 24660 + components: + - type: Transform + pos: 16.492031,23.016417 + parent: 16527 + - uid: 24661 + components: + - type: Transform + pos: -34.00299,38.331177 + parent: 16527 + - uid: 24662 + components: + - type: Transform + pos: -33.846756,38.331177 + parent: 16527 + - uid: 24663 + components: + - type: Transform + pos: -33.90924,38.581177 + parent: 16527 +- proto: SyndicateSpongeWrapped + entities: + - uid: 13465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.778854,-5.2269115 + parent: 2 +- proto: SyndieFlag + entities: + - uid: 24664 + components: + - type: Transform + pos: 5.5,7.5 + parent: 16527 + - uid: 24665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 16527 + - uid: 24666 + components: + - type: Transform + pos: -27.5,31.5 + parent: 16527 + - uid: 24667 + components: + - type: Transform + pos: -22.5,31.5 + parent: 16527 + - uid: 24668 + components: + - type: Transform + pos: -9.5,19.5 + parent: 16527 + - uid: 24669 + components: + - type: Transform + pos: -7.5,19.5 + parent: 16527 + - uid: 24670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,37.5 + parent: 16527 + - uid: 24671 + components: + - type: Transform + pos: 5.5,47.5 + parent: 16527 + - uid: 24672 + components: + - type: Transform + pos: -4.5,59.5 + parent: 16527 +- proto: SyndieHandyFlag + entities: + - uid: 24673 + components: + - type: Transform + pos: -5.510277,-6.471483 + parent: 16527 +- proto: SynthesizerInstrument + entities: + - uid: 21496 + components: + - type: Transform + pos: 22.238398,40.535683 + parent: 2 +- proto: Syringe + entities: + - uid: 24675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.413906,27.413605 + parent: 16527 + - uid: 24676 + components: + - type: Transform + pos: -7.407715,51.329285 + parent: 16527 +- proto: SyringeEphedrine + entities: + - uid: 11129 + components: + - type: Transform + parent: 11118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24677 + components: + - type: Transform + pos: -4.532715,51.016785 + parent: 16527 +- proto: Table + entities: + - uid: 6444 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 + - uid: 10285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,24.5 + parent: 2 + - uid: 13467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,24.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 2 + - uid: 13472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-1.5 + parent: 2 + - uid: 13473 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 13477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,78.5 + parent: 2 + - uid: 13478 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 13480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,77.5 + parent: 2 + - uid: 13481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,79.5 + parent: 2 + - uid: 13482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-3.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 13485 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 13486 + components: + - type: Transform + pos: 50.5,17.5 + parent: 2 + - uid: 13487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,23.5 + parent: 2 + - uid: 13488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,7.5 + parent: 2 + - uid: 13489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-0.5 + parent: 2 + - uid: 13490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-5.5 + parent: 2 + - uid: 13491 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + - uid: 13493 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 13494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 2 + - uid: 13495 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 13496 + components: + - type: Transform + pos: 78.5,62.5 + parent: 2 + - uid: 13497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,8.5 + parent: 2 + - uid: 13498 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 13500 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 13506 + components: + - type: Transform + pos: 74.5,58.5 + parent: 2 + - uid: 13507 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-4.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-4.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-3.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 2 + - uid: 13514 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 13516 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 13517 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 13518 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 13519 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 13520 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 + - uid: 13521 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 2 + - uid: 13522 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,6.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + pos: 50.5,-8.5 + parent: 2 + - uid: 13527 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 2 + - uid: 13528 + components: + - type: Transform + pos: 55.5,6.5 + parent: 2 + - uid: 13529 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 + - uid: 13530 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 13531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,32.5 + parent: 2 + - uid: 13532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,42.5 + parent: 2 + - uid: 13533 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + pos: 40.5,40.5 + parent: 2 + - uid: 13535 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 13536 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: 65.5,49.5 + parent: 2 + - uid: 13538 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,73.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,37.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,37.5 + parent: 2 + - uid: 13542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,42.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 13544 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 13546 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: 74.5,62.5 + parent: 2 + - uid: 13549 + components: + - type: Transform + pos: 78.5,58.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,8.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + pos: 55.5,24.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 13558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,7.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,7.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,40.5 + parent: 2 + - uid: 13561 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 + - uid: 22502 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 + - uid: 24678 + components: + - type: Transform + pos: 4.5,44.5 + parent: 16527 + - uid: 24679 + components: + - type: Transform + pos: 18.5,4.5 + parent: 16527 + - uid: 24680 + components: + - type: Transform + pos: -17.5,4.5 + parent: 16527 + - uid: 24681 + components: + - type: Transform + pos: -11.5,2.5 + parent: 16527 + - uid: 24682 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 16527 + - uid: 24683 + components: + - type: Transform + pos: -9.5,2.5 + parent: 16527 + - uid: 24684 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 16527 + - uid: 24685 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 16527 + - uid: 24686 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 16527 + - uid: 24687 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 16527 + - uid: 24688 + components: + - type: Transform + pos: 11.5,13.5 + parent: 16527 + - uid: 24689 + components: + - type: Transform + pos: 12.5,13.5 + parent: 16527 + - uid: 24690 + components: + - type: Transform + pos: 12.5,14.5 + parent: 16527 + - uid: 24691 + components: + - type: Transform + pos: 11.5,14.5 + parent: 16527 + - uid: 24692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,38.5 + parent: 16527 + - uid: 24693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,38.5 + parent: 16527 + - uid: 24694 + components: + - type: Transform + pos: -18.5,27.5 + parent: 16527 + - uid: 24695 + components: + - type: Transform + pos: -17.5,27.5 + parent: 16527 + - uid: 24696 + components: + - type: Transform + pos: -25.5,27.5 + parent: 16527 + - uid: 24697 + components: + - type: Transform + pos: -24.5,27.5 + parent: 16527 + - uid: 24698 + components: + - type: Transform + pos: -18.5,18.5 + parent: 16527 + - uid: 24699 + components: + - type: Transform + pos: -18.5,19.5 + parent: 16527 + - uid: 24700 + components: + - type: Transform + pos: -12.5,19.5 + parent: 16527 + - uid: 24701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,31.5 + parent: 16527 + - uid: 24702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,32.5 + parent: 16527 + - uid: 24703 + components: + - type: Transform + pos: 23.5,24.5 + parent: 16527 + - uid: 24704 + components: + - type: Transform + pos: 23.5,23.5 + parent: 16527 + - uid: 24705 + components: + - type: Transform + pos: 24.5,23.5 + parent: 16527 + - uid: 24706 + components: + - type: Transform + pos: 25.5,23.5 + parent: 16527 + - uid: 24707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,34.5 + parent: 16527 + - uid: 24708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,34.5 + parent: 16527 + - uid: 24709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,33.5 + parent: 16527 + - uid: 24710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,32.5 + parent: 16527 + - uid: 24711 + components: + - type: Transform + pos: -6.5,54.5 + parent: 16527 + - uid: 24712 + components: + - type: Transform + pos: -5.5,54.5 + parent: 16527 + - uid: 24713 + components: + - type: Transform + pos: -6.5,70.5 + parent: 16527 + - uid: 24714 + components: + - type: Transform + pos: -5.5,70.5 + parent: 16527 + - uid: 24715 + components: + - type: Transform + pos: -4.5,70.5 + parent: 16527 + - uid: 24716 + components: + - type: Transform + pos: -6.5,69.5 + parent: 16527 + - uid: 24717 + components: + - type: Transform + pos: -4.5,69.5 + parent: 16527 + - uid: 24718 + components: + - type: Transform + pos: 0.5,63.5 + parent: 16527 + - uid: 24719 + components: + - type: Transform + pos: 0.5,62.5 + parent: 16527 + - uid: 24720 + components: + - type: Transform + pos: 0.5,64.5 + parent: 16527 + - uid: 24721 + components: + - type: Transform + pos: 4.5,55.5 + parent: 16527 + - uid: 24722 + components: + - type: Transform + pos: 4.5,56.5 + parent: 16527 + - uid: 24723 + components: + - type: Transform + pos: 4.5,57.5 + parent: 16527 + - uid: 24724 + components: + - type: Transform + pos: 4.5,62.5 + parent: 16527 + - uid: 24725 + components: + - type: Transform + pos: 4.5,63.5 + parent: 16527 + - uid: 24726 + components: + - type: Transform + pos: 4.5,64.5 + parent: 16527 + - uid: 24727 + components: + - type: Transform + pos: -13.5,65.5 + parent: 16527 + - uid: 24728 + components: + - type: Transform + pos: -12.5,65.5 + parent: 16527 + - uid: 24729 + components: + - type: Transform + pos: -11.5,65.5 + parent: 16527 + - uid: 24730 + components: + - type: Transform + pos: -15.5,57.5 + parent: 16527 + - uid: 24731 + components: + - type: Transform + pos: -15.5,58.5 + parent: 16527 + - uid: 24732 + components: + - type: Transform + pos: -15.5,59.5 + parent: 16527 + - uid: 24733 + components: + - type: Transform + pos: -36.5,49.5 + parent: 16527 +- proto: TableCarpet + entities: + - uid: 4978 + components: + - type: Transform + pos: 15.5,50.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: 16.5,50.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + pos: 16.5,49.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + pos: 16.5,48.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + pos: 15.5,50.5 + parent: 2 + - uid: 5872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,3.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,3.5 + parent: 2 + - uid: 5875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,2.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,2.5 + parent: 2 + - uid: 13562 + components: + - type: Transform + pos: 65.5,64.5 + parent: 2 + - uid: 13563 + components: + - type: Transform + pos: 65.5,63.5 + parent: 2 + - uid: 13564 + components: + - type: Transform + pos: 66.5,63.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: 66.5,64.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + pos: 15.5,43.5 + parent: 2 + - uid: 13931 + components: + - type: Transform + pos: 16.5,43.5 + parent: 2 + - uid: 16170 + components: + - type: Transform + pos: 15.5,48.5 + parent: 2 + - uid: 21844 + components: + - type: Transform + pos: 15.5,49.5 + parent: 2 + - uid: 21866 + components: + - type: Transform + pos: 16.5,45.5 + parent: 2 + - uid: 21867 + components: + - type: Transform + pos: 16.5,44.5 + parent: 2 + - uid: 24734 + components: + - type: Transform + pos: 31.5,17.5 + parent: 16527 + - uid: 24735 + components: + - type: Transform + pos: 9.5,3.5 + parent: 16527 + - uid: 24736 + components: + - type: Transform + pos: 27.5,14.5 + parent: 16527 + - uid: 24737 + components: + - type: Transform + pos: 27.5,18.5 + parent: 16527 + - uid: 24738 + components: + - type: Transform + pos: 30.5,18.5 + parent: 16527 + - uid: 24739 + components: + - type: Transform + pos: 31.5,16.5 + parent: 16527 + - uid: 24740 + components: + - type: Transform + pos: 26.5,16.5 + parent: 16527 + - uid: 24741 + components: + - type: Transform + pos: 26.5,15.5 + parent: 16527 + - uid: 24742 + components: + - type: Transform + pos: 28.5,18.5 + parent: 16527 + - uid: 24743 + components: + - type: Transform + pos: 29.5,18.5 + parent: 16527 + - uid: 24744 + components: + - type: Transform + pos: 28.5,14.5 + parent: 16527 + - uid: 24745 + components: + - type: Transform + pos: 26.5,17.5 + parent: 16527 + - uid: 24746 + components: + - type: Transform + pos: 31.5,15.5 + parent: 16527 + - uid: 24747 + components: + - type: Transform + pos: 29.5,14.5 + parent: 16527 + - uid: 24748 + components: + - type: Transform + pos: 30.5,14.5 + parent: 16527 + - uid: 24749 + components: + - type: Transform + pos: -20.5,54.5 + parent: 16527 +- proto: TableCounterMetal + entities: + - uid: 24750 + components: + - type: Transform + pos: 14.5,12.5 + parent: 16527 + - uid: 24751 + components: + - type: Transform + pos: 13.5,12.5 + parent: 16527 + - uid: 24752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,17.5 + parent: 16527 + - uid: 24753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,17.5 + parent: 16527 + - uid: 24754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 16527 + - uid: 24755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,15.5 + parent: 16527 + - uid: 24756 + components: + - type: Transform + pos: -26.5,31.5 + parent: 16527 + - uid: 24757 + components: + - type: Transform + pos: -23.5,31.5 + parent: 16527 + - uid: 24758 + components: + - type: Transform + pos: -7.5,32.5 + parent: 16527 + - uid: 24759 + components: + - type: Transform + pos: -8.5,32.5 + parent: 16527 + - uid: 24760 + components: + - type: Transform + pos: -9.5,32.5 + parent: 16527 +- proto: TableCounterWood + entities: + - uid: 2299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,43.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,45.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,46.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,47.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: 27.5,63.5 + parent: 2 + - uid: 13567 + components: + - type: Transform + pos: 28.5,63.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + pos: 29.5,63.5 + parent: 2 + - uid: 13569 + components: + - type: Transform + pos: 30.5,63.5 + parent: 2 + - uid: 13570 + components: + - type: Transform + pos: 30.5,62.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + pos: 20.5,40.5 + parent: 2 + - uid: 13572 + components: + - type: Transform + pos: 32.5,62.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + pos: 32.5,63.5 + parent: 2 + - uid: 21291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,44.5 + parent: 2 + - uid: 21404 + components: + - type: Transform + pos: 22.5,40.5 + parent: 2 + - uid: 21427 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 21501 + components: + - type: Transform + pos: 31.5,62.5 + parent: 2 + - uid: 24761 + components: + - type: Transform + pos: -6.5,27.5 + parent: 16527 + - uid: 24762 + components: + - type: Transform + pos: -7.5,27.5 + parent: 16527 +- proto: TableFancyBlack + entities: + - uid: 510 + components: + - type: Transform + pos: 19.5,51.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: 20.5,55.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + pos: 29.5,51.5 + parent: 2 + - uid: 15371 + components: + - type: Transform + pos: 30.5,51.5 + parent: 2 + - uid: 15687 + components: + - type: Transform + pos: 31.5,51.5 + parent: 2 + - uid: 21228 + components: + - type: Transform + pos: 21.5,55.5 + parent: 2 + - uid: 21229 + components: + - type: Transform + pos: 20.5,55.5 + parent: 2 + - uid: 21230 + components: + - type: Transform + pos: 19.5,55.5 + parent: 2 + - uid: 21233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,51.5 + parent: 2 + - uid: 21234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,51.5 + parent: 2 + - uid: 21235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,51.5 + parent: 2 + - uid: 21236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,51.5 + parent: 2 + - uid: 21237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,51.5 + parent: 2 + - uid: 21239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,51.5 + parent: 2 + - uid: 21240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,51.5 + parent: 2 + - uid: 21241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,51.5 + parent: 2 + - uid: 21263 + components: + - type: Transform + pos: 19.5,52.5 + parent: 2 + - uid: 21308 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - uid: 21328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,41.5 + parent: 2 +- proto: TableFancyBlue + entities: + - uid: 6722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,43.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 13579 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - uid: 13580 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 13581 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - uid: 13583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - uid: 13584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,27.5 + parent: 2 + - uid: 13585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 + - uid: 13586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,27.5 + parent: 2 + - uid: 21282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,43.5 + parent: 2 +- proto: TableFancyCyan + entities: + - uid: 21311 + components: + - type: Transform + pos: 33.5,45.5 + parent: 2 +- proto: TableFancyGreen + entities: + - uid: 5575 + components: + - type: Transform + pos: 30.5,46.5 + parent: 2 + - uid: 21283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,46.5 + parent: 2 +- proto: TableFancyWhite + entities: + - uid: 5822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,47.5 + parent: 2 + - uid: 21855 + components: + - type: Transform + pos: 19.5,47.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 24763 + components: + - type: Transform + pos: 34.5,50.5 + parent: 16527 + - uid: 24764 + components: + - type: Transform + pos: 35.5,50.5 + parent: 16527 + - uid: 24765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,45.5 + parent: 16527 + - uid: 24766 + components: + - type: Transform + pos: 4.5,43.5 + parent: 16527 + - uid: 24767 + components: + - type: Transform + pos: 4.5,41.5 + parent: 16527 + - uid: 24768 + components: + - type: Transform + pos: 18.5,2.5 + parent: 16527 + - uid: 24769 + components: + - type: Transform + pos: -15.5,4.5 + parent: 16527 + - uid: 24770 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 16527 + - uid: 24771 + components: + - type: Transform + pos: 11.5,32.5 + parent: 16527 + - uid: 24772 + components: + - type: Transform + pos: 11.5,36.5 + parent: 16527 + - uid: 24773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,33.5 + parent: 16527 + - uid: 24774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,31.5 + parent: 16527 + - uid: 24775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 16527 + - uid: 24776 + components: + - type: Transform + pos: -7.5,54.5 + parent: 16527 + - uid: 24777 + components: + - type: Transform + pos: 34.5,42.5 + parent: 16527 + - uid: 24778 + components: + - type: Transform + pos: 31.5,55.5 + parent: 16527 +- proto: TableGlass + entities: + - uid: 13588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 13590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,46.5 + parent: 2 + - uid: 13591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,43.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,57.5 + parent: 2 + - uid: 13593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,63.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,60.5 + parent: 2 + - uid: 24779 + components: + - type: Transform + pos: 35.5,16.5 + parent: 16527 + - uid: 24780 + components: + - type: Transform + pos: 35.5,15.5 + parent: 16527 + - uid: 24781 + components: + - type: Transform + pos: 11.5,33.5 + parent: 16527 + - uid: 24782 + components: + - type: Transform + pos: 11.5,31.5 + parent: 16527 + - uid: 24783 + components: + - type: Transform + pos: 17.5,31.5 + parent: 16527 + - uid: 24784 + components: + - type: Transform + pos: 11.5,37.5 + parent: 16527 + - uid: 24785 + components: + - type: Transform + pos: 15.5,33.5 + parent: 16527 +- proto: TablePlasmaGlass + entities: + - uid: 24786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,39.5 + parent: 16527 + - uid: 24787 + components: + - type: Transform + pos: -36.5,27.5 + parent: 16527 + - uid: 24788 + components: + - type: Transform + pos: -36.5,28.5 + parent: 16527 + - uid: 24789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,42.5 + parent: 16527 + - uid: 24790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,38.5 + parent: 16527 + - uid: 24791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,38.5 + parent: 16527 + - uid: 24792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,42.5 + parent: 16527 + - uid: 24793 + components: + - type: Transform + pos: -26.5,38.5 + parent: 16527 + - uid: 24794 + components: + - type: Transform + pos: -26.5,40.5 + parent: 16527 + - uid: 24795 + components: + - type: Transform + pos: -35.5,31.5 + parent: 16527 + - uid: 24796 + components: + - type: Transform + pos: -36.5,31.5 + parent: 16527 + - uid: 24797 + components: + - type: Transform + pos: -32.5,33.5 + parent: 16527 + - uid: 24798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,34.5 + parent: 16527 + - uid: 24799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,34.5 + parent: 16527 + - uid: 24800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,33.5 + parent: 16527 + - uid: 24801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,32.5 + parent: 16527 + - uid: 24802 + components: + - type: Transform + pos: -32.5,31.5 + parent: 16527 + - uid: 24803 + components: + - type: Transform + pos: -32.5,30.5 + parent: 16527 + - uid: 24804 + components: + - type: Transform + pos: -32.5,29.5 + parent: 16527 + - uid: 24805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,27.5 + parent: 16527 + - uid: 24806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,27.5 + parent: 16527 + - uid: 24807 + components: + - type: Transform + pos: -35.5,27.5 + parent: 16527 +- proto: TableReinforced + entities: + - uid: 3499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-41.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-44.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-41.5 + parent: 2 + - uid: 9919 + components: + - type: Transform + pos: 26.5,54.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-41.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,18.5 + parent: 2 + - uid: 13596 + components: + - type: Transform + pos: 37.5,69.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,41.5 + parent: 2 + - uid: 13598 + components: + - type: Transform + pos: 42.5,65.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,62.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,66.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + pos: 38.5,69.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,62.5 + parent: 2 + - uid: 13603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,41.5 + parent: 2 + - uid: 13604 + components: + - type: Transform + pos: 41.5,62.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + pos: 41.5,61.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,41.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,2.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,61.5 + parent: 2 + - uid: 13611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,32.5 + parent: 2 + - uid: 13612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 2 + - uid: 13617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - uid: 13623 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,9.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 13627 + components: + - type: Transform + pos: 62.5,49.5 + parent: 2 + - uid: 13628 + components: + - type: Transform + pos: 62.5,48.5 + parent: 2 + - uid: 13629 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 13630 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 13631 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 13632 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,1.5 + parent: 2 + - uid: 13634 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 13635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,9.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,8.5 + parent: 2 + - uid: 13637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,32.5 + parent: 2 + - uid: 13638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,29.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,29.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 13641 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 13642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,68.5 + parent: 2 + - uid: 13643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,8.5 + parent: 2 + - uid: 13644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,57.5 + parent: 2 + - uid: 13645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,58.5 + parent: 2 + - uid: 13646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,58.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,57.5 + parent: 2 + - uid: 13648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,59.5 + parent: 2 + - uid: 13649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,59.5 + parent: 2 + - uid: 13650 + components: + - type: Transform + pos: 75.5,15.5 + parent: 2 + - uid: 13651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,54.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,54.5 + parent: 2 + - uid: 13653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,69.5 + parent: 2 + - uid: 13654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,70.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + pos: 81.5,54.5 + parent: 2 + - uid: 13656 + components: + - type: Transform + pos: 81.5,51.5 + parent: 2 + - uid: 13658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,68.5 + parent: 2 + - uid: 13659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,29.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + - uid: 13661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,48.5 + parent: 2 + - uid: 13662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,49.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + pos: 57.5,47.5 + parent: 2 + - uid: 13664 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 13665 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 13666 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 13667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,28.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,4.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 13670 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 13671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,8.5 + parent: 2 + - uid: 13672 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 13674 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 13675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,33.5 + parent: 2 + - uid: 13676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,25.5 + parent: 2 + - uid: 13677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,2.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,2.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,61.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,66.5 + parent: 2 + - uid: 21566 + components: + - type: Transform + pos: 29.5,55.5 + parent: 2 + - uid: 21585 + components: + - type: Transform + pos: 26.5,55.5 + parent: 2 + - uid: 21592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,55.5 + parent: 2 + - uid: 21606 + components: + - type: Transform + pos: 28.5,55.5 + parent: 2 + - uid: 21607 + components: + - type: Transform + pos: 27.5,55.5 + parent: 2 + - uid: 21614 + components: + - type: Transform + pos: 30.5,53.5 + parent: 2 + - uid: 21615 + components: + - type: Transform + pos: 28.5,53.5 + parent: 2 + - uid: 21616 + components: + - type: Transform + pos: 29.5,53.5 + parent: 2 + - uid: 21617 + components: + - type: Transform + pos: 31.5,53.5 + parent: 2 + - uid: 22484 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 24808 + components: + - type: Transform + pos: -55.5,43.5 + parent: 16527 + - uid: 24809 + components: + - type: Transform + pos: -55.5,53.5 + parent: 16527 + - uid: 24810 + components: + - type: Transform + pos: -54.5,54.5 + parent: 16527 + - uid: 24811 + components: + - type: Transform + pos: -55.5,54.5 + parent: 16527 + - uid: 24812 + components: + - type: Transform + pos: -55.5,42.5 + parent: 16527 + - uid: 24813 + components: + - type: Transform + pos: -45.5,47.5 + parent: 16527 + - uid: 24814 + components: + - type: Transform + pos: -52.5,42.5 + parent: 16527 + - uid: 24815 + components: + - type: Transform + pos: -51.5,42.5 + parent: 16527 + - uid: 24816 + components: + - type: Transform + pos: -46.5,49.5 + parent: 16527 + - uid: 24817 + components: + - type: Transform + pos: -45.5,49.5 + parent: 16527 + - uid: 24818 + components: + - type: Transform + pos: -52.5,54.5 + parent: 16527 + - uid: 24819 + components: + - type: Transform + pos: -50.5,42.5 + parent: 16527 + - uid: 24820 + components: + - type: Transform + pos: -54.5,42.5 + parent: 16527 + - uid: 24821 + components: + - type: Transform + pos: -51.5,54.5 + parent: 16527 + - uid: 24822 + components: + - type: Transform + pos: -46.5,47.5 + parent: 16527 + - uid: 24823 + components: + - type: Transform + pos: 4.5,2.5 + parent: 16527 + - uid: 24824 + components: + - type: Transform + pos: 4.5,3.5 + parent: 16527 + - uid: 24825 + components: + - type: Transform + pos: 4.5,4.5 + parent: 16527 + - uid: 24826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,34.5 + parent: 16527 + - uid: 24827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,35.5 + parent: 16527 + - uid: 24828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,36.5 + parent: 16527 + - uid: 24829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,36.5 + parent: 16527 + - uid: 24830 + components: + - type: Transform + pos: -2.5,55.5 + parent: 16527 + - uid: 24831 + components: + - type: Transform + pos: 3.5,74.5 + parent: 16527 + - uid: 24832 + components: + - type: Transform + pos: 2.5,74.5 + parent: 16527 + - uid: 24833 + components: + - type: Transform + pos: 5.5,75.5 + parent: 16527 + - uid: 24834 + components: + - type: Transform + pos: 0.5,75.5 + parent: 16527 + - uid: 24835 + components: + - type: Transform + pos: 5.5,76.5 + parent: 16527 + - uid: 24836 + components: + - type: Transform + pos: 0.5,76.5 + parent: 16527 + - uid: 24837 + components: + - type: Transform + pos: 4.5,75.5 + parent: 16527 + - uid: 24838 + components: + - type: Transform + pos: 1.5,75.5 + parent: 16527 + - uid: 24839 + components: + - type: Transform + pos: 4.5,74.5 + parent: 16527 + - uid: 24840 + components: + - type: Transform + pos: 1.5,74.5 + parent: 16527 + - uid: 24841 + components: + - type: Transform + pos: -15.5,71.5 + parent: 16527 + - uid: 24842 + components: + - type: Transform + pos: -14.5,71.5 + parent: 16527 + - uid: 24843 + components: + - type: Transform + pos: -13.5,71.5 + parent: 16527 + - uid: 24844 + components: + - type: Transform + pos: -11.5,71.5 + parent: 16527 + - uid: 24845 + components: + - type: Transform + pos: -9.5,71.5 + parent: 16527 + - uid: 24846 + components: + - type: Transform + pos: -17.5,52.5 + parent: 16527 + - uid: 24847 + components: + - type: Transform + pos: -18.5,52.5 + parent: 16527 + - uid: 24848 + components: + - type: Transform + pos: -17.5,53.5 + parent: 16527 + - uid: 24849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,52.5 + parent: 16527 + - uid: 24850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,51.5 + parent: 16527 + - uid: 24851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,42.5 + parent: 16527 + - uid: 24852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,43.5 + parent: 16527 + - uid: 24853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,43.5 + parent: 16527 + - uid: 24854 + components: + - type: Transform + pos: 24.5,45.5 + parent: 16527 + - uid: 24855 + components: + - type: Transform + pos: 24.5,44.5 + parent: 16527 + - uid: 24856 + components: + - type: Transform + pos: 24.5,43.5 + parent: 16527 + - uid: 24857 + components: + - type: Transform + pos: 32.5,50.5 + parent: 16527 + - uid: 24858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,45.5 + parent: 16527 + - uid: 24859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,44.5 + parent: 16527 + - uid: 24860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,43.5 + parent: 16527 + - uid: 24861 + components: + - type: Transform + pos: 17.5,52.5 + parent: 16527 + - uid: 24862 + components: + - type: Transform + pos: -41.5,45.5 + parent: 16527 + - uid: 24863 + components: + - type: Transform + pos: -41.5,51.5 + parent: 16527 + - uid: 24864 + components: + - type: Transform + pos: -50.5,54.5 + parent: 16527 + - uid: 24865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,56.5 + parent: 16527 + - uid: 24866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,55.5 + parent: 16527 +- proto: TableReinforcedGlass + entities: + - uid: 3628 + components: + - type: Transform + pos: 35.5,47.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: 35.5,48.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-8.5 + parent: 2 + - uid: 15575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,21.5 + parent: 2 + - uid: 15688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,21.5 + parent: 2 + - uid: 15690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,21.5 + parent: 2 + - uid: 21441 + components: + - type: Transform + pos: 35.5,49.5 + parent: 2 + - uid: 24867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,18.5 + parent: 16527 + - uid: 24868 + components: + - type: Transform + pos: -3.5,8.5 + parent: 16527 + - uid: 24869 + components: + - type: Transform + pos: 31.5,56.5 + parent: 16527 +- proto: TableStone + entities: + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,52.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 2 + - uid: 13685 + components: + - type: Transform + pos: 13.5,83.5 + parent: 2 + - uid: 24870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,48.5 + parent: 16527 +- proto: TableWood + entities: + - uid: 5225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,47.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,47.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,4.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: 38.5,-26.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,53.5 + parent: 2 + - uid: 13688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,20.5 + parent: 2 + - uid: 13689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,30.5 + parent: 2 + - uid: 13690 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 13691 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,22.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,22.5 + parent: 2 + - uid: 13695 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + pos: 40.5,35.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - uid: 13700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,31.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,31.5 + parent: 2 + - uid: 13702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,20.5 + parent: 2 + - uid: 13707 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 13708 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 + - uid: 13709 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 13710 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 13711 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 13713 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - uid: 13714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,60.5 + parent: 2 + - uid: 13715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,33.5 + parent: 2 + - uid: 13716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,31.5 + parent: 2 + - uid: 13717 + components: + - type: Transform + pos: 59.5,56.5 + parent: 2 + - uid: 13718 + components: + - type: Transform + pos: 59.5,59.5 + parent: 2 + - uid: 13719 + components: + - type: Transform + pos: 59.5,58.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: 62.5,57.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + pos: 63.5,57.5 + parent: 2 + - uid: 13722 + components: + - type: Transform + pos: 62.5,62.5 + parent: 2 + - uid: 13723 + components: + - type: Transform + pos: 60.5,61.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + pos: 59.5,61.5 + parent: 2 + - uid: 13725 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,55.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: 76.5,42.5 + parent: 2 + - uid: 13729 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 13730 + components: + - type: Transform + pos: 77.5,41.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + pos: 78.5,41.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,10.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,9.5 + parent: 2 + - uid: 13877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,47.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,47.5 + parent: 2 + - uid: 16184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,3.5 + parent: 2 + - uid: 21403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,53.5 + parent: 2 + - uid: 24871 + components: + - type: Transform + pos: 35.5,52.5 + parent: 16527 + - uid: 24872 + components: + - type: Transform + pos: -9.5,30.5 + parent: 16527 + - uid: 24873 + components: + - type: Transform + pos: -8.5,30.5 + parent: 16527 + - uid: 24874 + components: + - type: Transform + pos: 30.5,16.5 + parent: 16527 + - uid: 24875 + components: + - type: Transform + pos: 28.5,16.5 + parent: 16527 + - uid: 24876 + components: + - type: Transform + pos: 27.5,16.5 + parent: 16527 + - uid: 24877 + components: + - type: Transform + pos: 29.5,15.5 + parent: 16527 + - uid: 24878 + components: + - type: Transform + pos: 28.5,15.5 + parent: 16527 + - uid: 24879 + components: + - type: Transform + pos: 29.5,16.5 + parent: 16527 + - uid: 24880 + components: + - type: Transform + pos: 28.5,17.5 + parent: 16527 + - uid: 24881 + components: + - type: Transform + pos: 29.5,17.5 + parent: 16527 + - uid: 24882 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 16527 + - uid: 24883 + components: + - type: Transform + pos: -13.5,57.5 + parent: 16527 + - uid: 24884 + components: + - type: Transform + pos: -13.5,56.5 + parent: 16527 + - uid: 24885 + components: + - type: Transform + pos: -12.5,57.5 + parent: 16527 + - uid: 24886 + components: + - type: Transform + pos: -12.5,56.5 + parent: 16527 + - uid: 24887 + components: + - type: Transform + pos: -11.5,57.5 + parent: 16527 + - uid: 24888 + components: + - type: Transform + pos: -11.5,56.5 + parent: 16527 + - uid: 24889 + components: + - type: Transform + pos: -21.5,54.5 + parent: 16527 + - uid: 24890 + components: + - type: Transform + pos: -19.5,54.5 + parent: 16527 + - uid: 24891 + components: + - type: Transform + pos: -19.5,55.5 + parent: 16527 + - uid: 24892 + components: + - type: Transform + pos: 33.5,42.5 + parent: 16527 + - uid: 24893 + components: + - type: Transform + pos: 34.5,44.5 + parent: 16527 +- proto: TargetClown + entities: + - uid: 24894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,34.5 + parent: 16527 + - uid: 24895 + components: + - type: Transform + pos: 37.5,23.5 + parent: 16527 + - uid: 24896 + components: + - type: Transform + pos: -15.5,77.5 + parent: 16527 +- proto: TargetDarts + entities: + - uid: 24897 + components: + - type: Transform + pos: 11.5,24.5 + parent: 16527 +- proto: TargetHuman + entities: + - uid: 24898 + components: + - type: Transform + pos: 19.5,22.5 + parent: 16527 + - uid: 24899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 16527 + - uid: 24900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,32.5 + parent: 16527 + - uid: 24901 + components: + - type: Transform + pos: 23.5,30.5 + parent: 16527 + - uid: 24902 + components: + - type: Transform + pos: 36.5,23.5 + parent: 16527 + - uid: 24903 + components: + - type: Transform + pos: 35.5,23.5 + parent: 16527 + - uid: 24904 + components: + - type: Transform + pos: 20.5,26.5 + parent: 16527 + - uid: 24905 + components: + - type: Transform + pos: 19.5,28.5 + parent: 16527 + - uid: 24906 + components: + - type: Transform + pos: 21.5,29.5 + parent: 16527 + - uid: 24907 + components: + - type: Transform + pos: 21.5,20.5 + parent: 16527 + - uid: 24908 + components: + - type: Transform + pos: 19.5,24.5 + parent: 16527 + - uid: 24909 + components: + - type: Transform + pos: -11.5,74.5 + parent: 16527 + - uid: 24910 + components: + - type: Transform + pos: -9.5,76.5 + parent: 16527 + - uid: 24911 + components: + - type: Transform + pos: -10.5,78.5 + parent: 16527 + - uid: 24912 + components: + - type: Transform + pos: -15.5,69.5 + parent: 16527 +- proto: TargetStrange + entities: + - uid: 13734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 2 + - uid: 24913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,33.5 + parent: 16527 + - uid: 24914 + components: + - type: Transform + pos: -13.5,76.5 + parent: 16527 + - uid: 24915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,36.5 + parent: 16527 + - uid: 24916 + components: + - type: Transform + pos: -36.5,33.5 + parent: 16527 + - uid: 24917 + components: + - type: Transform + pos: -32.5,27.5 + parent: 16527 +- proto: TargetSyndicate + entities: + - uid: 24918 + components: + - type: Transform + pos: 20.5,19.5 + parent: 16527 + - uid: 24919 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 16527 + - uid: 24920 + components: + - type: Transform + pos: -0.5,44.5 + parent: 16527 +- proto: TearGasGrenade + entities: + - uid: 1066 + components: + - type: Transform + parent: 1057 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1067 + components: + - type: Transform + parent: 1057 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TechnologyDisk + entities: + - uid: 22006 + components: + - type: MetaData + desc: Приготовьтесь к отрыву башки... + name: Сборник песен Серёги Дегенерата + - type: Transform + pos: 7.0318546,28.292011 + parent: 2 + - uid: 24921 + components: + - type: Transform + pos: -32.319443,32.966858 + parent: 16527 +- proto: TegCenter + entities: + - uid: 21922 + components: + - type: MetaData + name: E + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,86.5 + parent: 2 + - type: ApcPowerReceiver + powerDisabled: True +- proto: TegCirculator + entities: + - uid: 13736 + components: + - type: MetaData + name: T + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,82.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - uid: 13737 + components: + - type: MetaData + name: G + - type: Transform + pos: 52.5,82.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServer + entities: + - uid: 7595 + components: + - type: Transform + pos: 81.5,18.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: - entity_storage: !type:Container + key_slots: !type:Container showEnts: False occludes: True ents: - - 18 - - 20 - - uid: 21 + - 7596 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7597 components: - type: Transform - pos: 59.5,28.5 + pos: 80.5,19.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: - entity_storage: !type:Container + key_slots: !type:Container showEnts: False occludes: True ents: - - 24 - - 22 - - uid: 25 + - 7598 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7599 components: - type: Transform - pos: 61.5,26.5 + pos: 77.5,15.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: - entity_storage: !type:Container + key_slots: !type:Container showEnts: False occludes: True ents: - - 26 - - 28 - - uid: 29 + - 7600 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7601 components: - type: Transform - pos: 59.5,26.5 + pos: 81.5,16.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: - entity_storage: !type:Container + key_slots: !type:Container showEnts: False occludes: True ents: - - 30 - - 32 -- proto: SuitStorageWarden - entities: - - uid: 11112 + - 7602 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7603 components: - type: Transform - pos: 49.5,28.5 + pos: 77.5,18.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: - entity_storage: !type:Container + key_slots: !type:Container showEnts: False occludes: True ents: - - 11113 - - 11114 -- proto: SurveillanceCameraCommand + - 7604 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7605 + components: + - type: Transform + pos: 77.5,19.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7606 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7607 + components: + - type: Transform + pos: 77.5,16.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7608 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7609 + components: + - type: Transform + pos: 79.5,16.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7610 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7611 + components: + - type: Transform + pos: 79.5,18.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7612 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 22545 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 16527 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 22546 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 22547 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 16527 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 22548 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 24922 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 16527 + - uid: 24923 + components: + - type: Transform + pos: -23.5,40.5 + parent: 16527 +- proto: TelecomServerCircuitboard entities: - - uid: 4317 + - uid: 13738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-25.5 + pos: 75.589874,15.674126 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Выход в космос к ии - - uid: 5819 +- proto: TeslaGroundingRod + entities: + - uid: 24924 + components: + - type: Transform + pos: -12.5,34.5 + parent: 16527 +- proto: Thruster + entities: + - uid: 24925 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-41.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Загрузка в ии - - uid: 13344 + pos: -26.5,22.5 + parent: 16527 + - uid: 24926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,22.5 + parent: 16527 + - uid: 24927 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,27.5 + pos: -28.5,27.5 + parent: 16527 +- proto: TimerTrigger + entities: + - uid: 24928 + components: + - type: Transform + pos: -32.563644,33.23242 + parent: 16527 +- proto: TintedWindow + entities: + - uid: 13742 + components: + - type: Transform + pos: 75.5,35.5 parent: 2 - - uid: 13345 + - uid: 13743 components: - type: Transform - pos: 21.5,24.5 + pos: 76.5,35.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: мостик - - uid: 13346 + - uid: 13744 + components: + - type: Transform + pos: 79.5,35.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + pos: 78.5,35.5 + parent: 2 + - uid: 13746 + components: + - type: Transform + pos: 82.5,35.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + pos: 81.5,35.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + pos: 73.5,34.5 + parent: 2 + - uid: 13749 + components: + - type: Transform + pos: 83.5,27.5 + parent: 2 + - uid: 13750 + components: + - type: Transform + pos: 84.5,27.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 13751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 2 + - uid: 19382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,20.5 + parent: 16527 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19383 + disposals: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 24929 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,21.5 + pos: 11.5,20.5 + parent: 16527 +- proto: ToiletEmpty + entities: + - uid: 13752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,36.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: глава персонала - - uid: 13347 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 13753 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,18.5 + pos: 22.5,20.5 parent: 2 - - uid: 13348 +- proto: ToolboxElectricalFilled + entities: + - uid: 13754 components: - type: Transform - pos: 79.5,15.5 + pos: 42.7662,61.52349 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: телекоммуникационные сервера - - uid: 13355 + - uid: 13755 + components: + - type: Transform + pos: 68.49887,37.83966 + parent: 2 + - uid: 13756 + components: + - type: Transform + pos: 53.576492,85.342896 + parent: 2 +- proto: ToolboxEmergency + entities: + - uid: 13757 + components: + - type: Transform + pos: 21.45564,57.712902 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: 21.61464,57.517212 + parent: 2 + - uid: 19380 + components: + - type: Transform + pos: -7.453809,27.597425 + parent: 16527 + - type: Storage + storedItems: + 19381: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 19381 + - uid: 19394 + components: + - type: Transform + pos: 0.4869455,63.17134 + parent: 16527 + - type: Storage + storedItems: + 19395: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 19395 + - uid: 19398 + components: + - type: Transform + pos: 2.2015228,71.59943 + parent: 16527 + - type: Storage + storedItems: + 19399: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 19399 + - uid: 19410 + components: + - type: Transform + pos: 6.251953,63.06073 + parent: 16527 + - type: Storage + storedItems: + 19411: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 19411 + - uid: 24930 + components: + - type: Transform + pos: -6.5494566,64.1358 + parent: 16527 + - uid: 24931 + components: + - type: Transform + pos: -14.798813,63.3006 + parent: 16527 +- proto: ToolboxEmergencyFilled + entities: + - uid: 13759 + components: + - type: Transform + pos: 25.516691,30.796638 + parent: 2 + - uid: 13760 + components: + - type: Transform + pos: 67.50819,41.582222 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: 4.6208367,23.109694 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: 4.4740696,22.852852 + parent: 2 + - uid: 13763 + components: + - type: Transform + pos: 0.49746752,11.417831 + parent: 2 + - uid: 24932 + components: + - type: Transform + pos: 6.904724,56.381165 + parent: 16527 + - uid: 24933 + components: + - type: Transform + pos: 0.03378737,61.40572 + parent: 16527 + - uid: 24934 + components: + - type: Transform + pos: 4.448929,63.775696 + parent: 16527 + - uid: 24935 + components: + - type: Transform + pos: -4.03067,61.269165 + parent: 16527 + - uid: 24936 + components: + - type: Transform + pos: -9.932344,67.400566 + parent: 16527 + - uid: 24937 + components: + - type: Transform + pos: -1.0755892,63.87446 + parent: 16527 +- proto: ToolboxMechanicalFilled + entities: + - uid: 13764 + components: + - type: Transform + pos: 41.60995,61.96099 + parent: 2 + - uid: 13765 + components: + - type: Transform + pos: 20.482819,9.663286 + parent: 2 + - uid: 13766 + components: + - type: Transform + pos: 33.66368,17.528824 + parent: 2 + - uid: 13767 + components: + - type: Transform + pos: 68.51721,37.564472 + parent: 2 + - uid: 24938 + components: + - type: Transform + pos: -4.4680634,70.06647 + parent: 16527 +- proto: Torch + entities: + - uid: 4072 + components: + - type: Transform + pos: 39.671326,-27.144419 + parent: 2 + - uid: 21445 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,30.5 + pos: 41.657436,-26.574974 parent: 2 - - type: SurveillanceCamera - id: Офис ГСБ - - uid: 13356 + - uid: 21960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,49.5 + rot: -1.5707963267948966 rad + pos: 40.754658,-27.50553 parent: 2 - - type: SurveillanceCamera - id: Гравген - - uid: 13357 +- proto: TorsoBorg + entities: + - uid: 24939 + components: + - type: Transform + pos: 19.54964,13.526009 + parent: 16527 +- proto: TorsoVulpkanin + entities: + - uid: 24940 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,47.5 + pos: -23.216385,42.758728 + parent: 16527 +- proto: ToyFigurineEngineer + entities: + - uid: 13769 + components: + - type: Transform + pos: 7.7734017,31.82122 parent: 2 - - type: SurveillanceCamera - id: Хранилище плат - - uid: 13358 +- proto: ToyFigurineFootsoldier + entities: + - uid: 24941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,28.5 + pos: 4.40917,2.6694627 + parent: 16527 +- proto: ToyFigurineGreytider + entities: + - uid: 13770 + components: + - type: Transform + pos: 33.479034,-10.500564 parent: 2 - - type: SurveillanceCamera - id: Ядерное Хранилище - - uid: 13359 +- proto: ToyFigurineMouse + entities: + - uid: 13771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,6.5 + pos: 7.571597,31.674454 parent: 2 - - type: SurveillanceCamera - id: Серверная РНД - - uid: 13920 +- proto: ToyFigurineNukieElite + entities: + - uid: 24942 components: - type: Transform - pos: 22.5,-35.5 + pos: 15.316927,33.65895 + parent: 16527 +- proto: ToyFigurineSpaceDragon + entities: + - uid: 13772 + components: + - type: MetaData + desc: Фигурка космического дракона, в таком виде он выглядит на удивление дружелюбным. На макушке находится ленточка. Похоже, это подарок кому-то. + name: фигурка дракона + - type: Transform + pos: 24.400814,-4.1974635 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Вход к ИИ - - uid: 21774 +- proto: ToyFireRipley + entities: + - uid: 24943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-37.5 + pos: -18.49573,19.70897 + parent: 16527 +- proto: ToyMouse + entities: + - uid: 13773 + components: + - type: Transform + pos: 85.56179,60.664375 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Запасной вход ИИ - - uid: 21775 +- proto: ToyNuke + entities: + - uid: 13774 + components: + - type: Transform + pos: 65.646164,64.54434 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 13775 + components: + - type: Transform + pos: 22.479702,22.299757 + parent: 2 +- proto: ToySpawner + entities: + - uid: 13199 + components: + - type: Transform + pos: 24.5,51.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: 87.5,15.5 + parent: 2 +- proto: ToySword + entities: + - uid: 13508 + components: + - type: Transform + pos: 23.71894,64.696075 + parent: 2 +- proto: TrackingImplanter + entities: + - uid: 15551 + components: + - type: Transform + pos: 62.451405,24.523014 + parent: 2 +- proto: TrashBananaPeel + entities: + - uid: 13779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-37.5 + pos: 53.440598,37.431225 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ИИ питание - - uid: 21779 + - uid: 13780 components: - type: Transform - pos: 23.5,-30.5 + pos: 53.440598,37.431225 parent: 2 - - type: SurveillanceCamera - id: Внешняя ии 4 - - uid: 21781 + - uid: 13781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-34.5 + pos: 50.628098,35.59602 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Внешняя ии 6 - - uid: 21782 + - uid: 13782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-39.5 + pos: 56.132828,40.506115 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Внешняя ии 7 - - uid: 21784 + - uid: 13783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-46.5 + pos: 53.47692,38.50283 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Внешняя ии 1 - - uid: 21785 + - uid: 13784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-41.5 + pos: 58.39883,39.32306 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Внешняя ии 2 - - uid: 21787 + - uid: 24944 components: - type: Transform - pos: 16.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Внешняя ии 3 - - uid: 21820 + pos: 14.514723,30.019087 + parent: 16527 +- proto: trayScanner + entities: + - uid: 24945 components: - type: Transform - pos: 23.5,-23.5 - parent: 2 -- proto: SurveillanceCameraEngineering + pos: 26.644728,23.386297 + parent: 16527 +- proto: Truncheon entities: - - uid: 8309 + - uid: 10988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,73.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: РИТЭГ - - uid: 13360 + parent: 10982 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,70.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Атмос Стойка - - uid: 13361 + parent: 10982 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,77.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Холл Атмос - - uid: 13362 + parent: 10982 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,56.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Стойка - - uid: 13364 + parent: 10982 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,62.5 - parent: 2 - - type: SurveillanceCamera - id: Инж Брифрум - - uid: 13365 + parent: 10982 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,61.5 - parent: 2 - - type: SurveillanceCamera - id: СМЭС - - uid: 13366 + pos: -6.546173,69.89459 + parent: 16527 + - uid: 24947 components: - type: Transform - pos: 47.5,59.5 - parent: 2 - - uid: 13367 + pos: 4.496643,57.242126 + parent: 16527 +- proto: TurboItemRecharger + entities: + - uid: 24948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,69.5 - parent: 2 - - type: SurveillanceCamera - id: Холл - - uid: 13368 + pos: -9.5,71.5 + parent: 16527 +- proto: TurboItemRechargerCircuitboard + entities: + - uid: 13256 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,84.5 + pos: 24.749285,-6.3491573 parent: 2 - - type: SurveillanceCamera - id: Выход в верфь - - uid: 13369 +- proto: TwoWayLever + entities: + - uid: 13785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,70.5 + pos: 1.5,7.5 parent: 2 - - type: SurveillanceCamera - id: РИТЭГ 2 - - uid: 13370 + - type: DeviceLinkSource + linkedPorts: + 6550: + - Left: Forward + - Right: Reverse + - Middle: Off + 6544: + - Left: Forward + - Right: Reverse + - Middle: Off + 6545: + - Left: Forward + - Right: Reverse + - Middle: Off + 6546: + - Left: Forward + - Right: Reverse + - Middle: Off + 6542: + - Left: Forward + - Right: Reverse + - Middle: Off + 6549: + - Left: Forward + - Right: Reverse + - Middle: Off + 6548: + - Left: Forward + - Right: Reverse + - Middle: Off + 6547: + - Left: Forward + - Right: Reverse + - Middle: Off + 989: + - Left: Open + - Right: Open + - Middle: Close + 988: + - Left: Open + - Right: Open + - Middle: Close + - uid: 13786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,79.5 + pos: 0.5,21.5 parent: 2 - - type: SurveillanceCamera - id: ДАМ - - uid: 13371 + - type: DeviceLinkSource + linkedPorts: + 12348: + - Left: Forward + - Right: Reverse + - Middle: Off + 6543: + - Left: Forward + - Right: Reverse + - Middle: Off + 6552: + - Left: Forward + - Right: Reverse + - Middle: Off + 6551: + - Left: Forward + - Right: Reverse + - Middle: Off + 6556: + - Left: Forward + - Right: Reverse + - Middle: Off + 6557: + - Left: Forward + - Right: Reverse + - Middle: Off + 6553: + - Left: Forward + - Right: Reverse + - Middle: Off + 6554: + - Left: Forward + - Right: Reverse + - Middle: Off + 6555: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 24949 components: - type: Transform - pos: 52.5,81.5 - parent: 2 - - type: SurveillanceCamera - id: ТЭГ - - uid: 13372 + pos: -13.5,11.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 21863: + - Left: Forward + - Right: Reverse + - Middle: Off + 21862: + - Left: Forward + - Right: Reverse + - Middle: Off + 21848: + - Left: Forward + - Right: Reverse + - Middle: Off + 21843: + - Left: Forward + - Right: Reverse + - Middle: Off + 21829: + - Left: Forward + - Right: Reverse + - Middle: Off + 21827: + - Left: Forward + - Right: Reverse + - Middle: Off + 21689: + - Left: Forward + - Right: Reverse + - Middle: Off + 21688: + - Left: Forward + - Right: Reverse + - Middle: Off + 21629: + - Left: Forward + - Right: Reverse + - Middle: Off + 24129: + - Left: Forward + - Right: Reverse + - Middle: Off + 21581: + - Left: Forward + - Right: Reverse + - Middle: Off + 21483: + - Left: Forward + - Right: Reverse + - Middle: Off + 21469: + - Left: Forward + - Right: Reverse + - Middle: Off + 21338: + - Left: Forward + - Right: Reverse + - Middle: Off + 21324: + - Left: Forward + - Right: Reverse + - Middle: Off + 21198: + - Left: Forward + - Right: Reverse + - Middle: Off + 21197: + - Left: Forward + - Right: Reverse + - Middle: Off + 21180: + - Left: Forward + - Right: Reverse + - Middle: Off + 21178: + - Left: Forward + - Right: Reverse + - Middle: Off + 21179: + - Left: Forward + - Right: Reverse + - Middle: Off + 21177: + - Left: Forward + - Right: Reverse + - Middle: Off + 21176: + - Left: Forward + - Right: Reverse + - Middle: Off + 24130: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 24950 components: - type: Transform - pos: 37.5,86.5 - parent: 2 - - type: SurveillanceCamera - id: Камера сгорания - - uid: 13373 + pos: -18.5,20.5 + parent: 16527 + - type: DeviceLinkSource + linkedPorts: + 19298: + - Left: Open + - Right: Open + - Middle: Close + 19300: + - Left: Open + - Right: Open + - Middle: Close + 19301: + - Left: Open + - Right: Open + - Middle: Close + 19302: + - Left: Open + - Right: Open + - Middle: Close +- proto: UnfinishedMachineFrame + entities: + - uid: 13787 components: - type: Transform - pos: 45.5,90.5 + pos: 51.5,61.5 parent: 2 - - type: SurveillanceCamera - id: Верфь -- proto: SurveillanceCameraGeneral - entities: - - uid: 13374 + - uid: 13788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,57.5 + pos: 20.5,-16.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Отбытие 1 - - uid: 13375 + - uid: 24951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,60.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Отбытие 2 - - uid: 13376 + pos: -4.5,-5.5 + parent: 16527 + - uid: 24952 components: - type: Transform rot: -1.5707963267948966 rad - pos: 81.5,43.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Прибытие - - uid: 13377 + pos: 25.5,46.5 + parent: 16527 + - uid: 24953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Дорматории - - uid: 13378 + pos: -11.5,78.5 + parent: 16527 +- proto: UniformPrinter + entities: + - uid: 13789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,8.5 + pos: 17.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Парк - - uid: 13379 +- proto: UniformShortsRed + entities: + - uid: 11200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,38.5 + pos: 0.7616036,30.60181 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Вход в бар - - uid: 13380 + - uid: 16095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,31.5 + pos: 0.7616036,30.35181 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Вход дормы - - uid: 13381 +- proto: UniformShortsRedWithTop + entities: + - uid: 6608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,24.5 + pos: 0.2928536,30.53931 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Вход западное крыло мостика - - uid: 13382 + - uid: 15430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,15.5 + pos: 0.2459786,30.57056 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Вход снабжение - - uid: 13383 +- proto: UprightPianoInstrument + entities: + - uid: 6924 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,14.5 + pos: 21.5,42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Стойка химия - - uid: 13384 + - uid: 13790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,25.5 + pos: 32.5,60.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Восточное крыло мостика - - uid: 13385 +- proto: UraniumOre1 + entities: + - uid: 13791 components: - type: Transform - pos: 51.5,51.5 + pos: 60.641685,82.50011 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Вход в инженерный - - uid: 13386 +- proto: Vaccinator + entities: + - uid: 13792 components: - type: Transform - pos: 65.5,51.5 + pos: 57.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: вход библиотека - - uid: 13387 +- proto: VariantCubeBox + entities: + - uid: 13793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,31.5 + pos: 24.521978,-11.337398 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Вход в церковь - - uid: 13388 +- proto: VendingBarDrobe + entities: + - uid: 13201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,17.5 + pos: 16.5,55.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Вход телекоммуникация - - uid: 13389 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 13794 components: - type: Transform - pos: 65.5,38.5 + pos: 44.5,71.5 parent: 2 - - uid: 13390 +- proto: VendingMachineBooze + entities: + - uid: 2344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,77.5 + pos: 18.5,55.5 parent: 2 - - type: SurveillanceCamera - id: Старое отбытие 1 - - uid: 13391 + - uid: 13795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,69.5 + pos: 26.5,22.5 parent: 2 - - type: SurveillanceCamera - id: Старое отбытие 2 - - uid: 13392 + - uid: 13796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,46.5 + pos: 33.5,60.5 parent: 2 - - uid: 13394 + - uid: 16186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,27.5 + pos: 77.5,2.5 parent: 2 - - type: SurveillanceCamera - id: Крио - - uid: 13395 + missingComponents: + - AccessReader + - uid: 24954 components: - type: Transform - pos: 50.5,12.5 - parent: 2 - - uid: 13396 + pos: 32.5,46.5 + parent: 16527 +- proto: VendingMachineBoozeSyndicate + entities: + - uid: 19845 components: - type: Transform - pos: 61.5,12.5 + pos: 12.5,68.5 parent: 2 - - uid: 13397 +- proto: VendingMachineCargoDrobe + entities: + - uid: 13797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,57.5 + pos: 3.5,9.5 parent: 2 - - uid: 13398 +- proto: VendingMachineCart + entities: + - uid: 13798 components: - type: Transform - pos: 86.5,63.5 + pos: 18.5,22.5 parent: 2 - - uid: 13399 +- proto: VendingMachineChang + entities: + - uid: 13799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,68.5 + pos: 12.5,66.5 parent: 2 - - uid: 13400 + - uid: 13800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,68.5 + pos: 15.5,77.5 parent: 2 - - uid: 21413 + - uid: 13801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,39.5 + pos: 90.5,24.5 parent: 2 -- proto: SurveillanceCameraMedical + - uid: 24955 + components: + - type: Transform + pos: -43.5,42.5 + parent: 16527 +- proto: VendingMachineChapel entities: - - uid: 13401 + - uid: 13802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,8.5 + pos: 80.5,26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Кабинет ГВ - - uid: 13402 +- proto: VendingMachineChefDrobe + entities: + - uid: 21548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-9.5 + pos: 33.5,58.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Операционная - - uid: 13403 +- proto: VendingMachineChefvend + entities: + - uid: 21565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-3.5 + pos: 32.5,58.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: вирусология - - uid: 13404 +- proto: VendingMachineChemDrobe + entities: + - uid: 13804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,9.5 + pos: 44.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: стойка - - uid: 13405 +- proto: VendingMachineChemicals + entities: + - uid: 13805 components: - type: Transform - pos: 42.5,6.5 + pos: 40.5,8.5 parent: 2 - - uid: 13406 +- proto: VendingMachineChemicalsSyndicate + entities: + - uid: 24956 components: - type: Transform - pos: 49.5,-6.5 + pos: 11.5,35.5 + parent: 16527 +- proto: VendingMachineCigs + entities: + - uid: 13806 + components: + - type: Transform + pos: 18.5,26.5 parent: 2 - - type: SurveillanceCamera - id: Клонерка - - uid: 13407 + - uid: 13807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,0.5 + pos: 6.5,31.5 parent: 2 - - type: SurveillanceCamera - id: Криокапсулы - - uid: 13408 + - uid: 13808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,1.5 + pos: 12.5,67.5 parent: 2 - - type: SurveillanceCamera - id: Палата - - uid: 13409 + - uid: 21287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-6.5 + pos: 31.5,41.5 parent: 2 - - type: SurveillanceCamera - id: Перекусочная - - uid: 13410 + - uid: 24957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,8.5 + pos: -1.5,32.5 + parent: 16527 +- proto: VendingMachineClothing + entities: + - uid: 13810 + components: + - type: Transform + pos: 9.5,34.5 parent: 2 - - type: SurveillanceCamera - id: Морг - - uid: 13411 +- proto: VendingMachineCoffee + entities: + - uid: 13811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,2.5 + pos: 43.5,24.5 parent: 2 - - type: SurveillanceCamera - id: Склад - - uid: 13412 + - uid: 13812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,10.5 + pos: 15.5,16.5 parent: 2 - - type: SurveillanceCamera - id: психолог - - uid: 13413 + - uid: 13813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,4.5 + pos: 30.5,26.5 parent: 2 -- proto: SurveillanceCameraRouterCommand + - uid: 24958 + components: + - type: Transform + pos: 35.5,17.5 + parent: 16527 +- proto: VendingMachineCola entities: - - uid: 13414 + - uid: 24959 components: - type: Transform - pos: 84.5,18.5 - parent: 2 -- proto: SurveillanceCameraRouterConstructed + pos: -3.5,-3.5 + parent: 16527 +- proto: VendingMachineColaBlack entities: - - uid: 13415 + - uid: 24960 components: - type: Transform - pos: 85.5,15.5 - parent: 2 -- proto: SurveillanceCameraRouterEngineering + pos: 9.5,6.5 + parent: 16527 +- proto: VendingMachineCondiments entities: - - uid: 13416 + - uid: 21605 components: - type: Transform - pos: 83.5,19.5 + rot: 3.141592653589793 rad + pos: 30.5,55.5 parent: 2 -- proto: SurveillanceCameraRouterGeneral + - uid: 24961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,47.5 + parent: 16527 +- proto: VendingMachineCuraDrobe entities: - - uid: 13417 + - uid: 13814 components: - type: Transform - pos: 83.5,15.5 + pos: 60.5,62.5 parent: 2 -- proto: SurveillanceCameraRouterMedical +- proto: VendingMachineDetDrobe entities: - - uid: 13418 + - uid: 13815 components: - type: Transform - pos: 82.5,16.5 + pos: 43.5,34.5 parent: 2 -- proto: SurveillanceCameraRouterScience +- proto: VendingMachineDinnerware entities: - - uid: 13419 + - uid: 21622 components: - type: Transform - pos: 84.5,16.5 + pos: 33.5,54.5 parent: 2 -- proto: SurveillanceCameraRouterSecurity +- proto: VendingMachineDiscount entities: - - uid: 13420 + - uid: 24962 components: - type: Transform - pos: 85.5,18.5 + pos: 4.5,-3.5 + parent: 16527 +- proto: VendingMachineDonut + entities: + - uid: 13817 + components: + - type: Transform + pos: 44.5,24.5 parent: 2 -- proto: SurveillanceCameraRouterService + - uid: 24963 + components: + - type: Transform + pos: -43.5,54.5 + parent: 16527 +- proto: VendingMachineEngiDrobe entities: - - uid: 13421 + - uid: 13818 components: - type: Transform - pos: 85.5,16.5 + pos: 40.5,59.5 parent: 2 -- proto: SurveillanceCameraRouterSupply +- proto: VendingMachineEngivend entities: - - uid: 13422 + - uid: 13819 components: - type: Transform - pos: 82.5,18.5 + pos: 45.5,59.5 parent: 2 - - uid: 13423 + - uid: 13820 components: - type: Transform - pos: 4.5,3.5 + pos: 28.5,18.5 parent: 2 -- proto: SurveillanceCameraScience +- proto: VendingMachineGames entities: - - uid: 13424 + - uid: 13821 components: - type: Transform - pos: 16.5,-3.5 + pos: 62.5,61.5 parent: 2 - - type: SurveillanceCamera - id: Генератор аномалий - - uid: 13425 +- proto: VendingMachineHydrobe + entities: + - uid: 15695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-0.5 + pos: 40.5,54.5 parent: 2 - - uid: 13426 +- proto: VendingMachineJaniDrobe + entities: + - uid: 13822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 + pos: 68.5,49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Холл - - uid: 13428 + - uid: 24964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: стойка - - uid: 13429 + pos: 22.5,12.5 + parent: 16527 +- proto: VendingMachineLawDrobe + entities: + - uid: 13823 components: - type: Transform - pos: 19.5,-16.5 + pos: 9.5,20.5 parent: 2 - - type: SurveillanceCamera - id: Лаборатория - - uid: 13430 +- proto: VendingMachineMagivend + entities: + - uid: 22317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 + pos: 24.5,40.5 parent: 2 - - type: SurveillanceCamera - id: Ксеноархеология -- proto: SurveillanceCameraSecurity +- proto: VendingMachineMedical entities: - - uid: 5043 + - uid: 13825 components: - type: Transform - pos: 57.5,16.5 + pos: 37.5,-2.5 parent: 2 - - type: SurveillanceCamera - id: раздевалка - - uid: 12235 + - uid: 13826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,28.5 + pos: 60.5,24.5 parent: 2 - - uid: 13431 + - uid: 13827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,22.5 + pos: 54.5,-2.5 parent: 2 - - type: SurveillanceCamera - id: Холл СБ - - uid: 13432 + - uid: 13828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,41.5 + pos: 60.5,4.5 parent: 2 - - type: SurveillanceCamera - id: Перма - - uid: 13433 +- proto: VendingMachineMediDrobe + entities: + - uid: 13829 components: - type: Transform - pos: 14.5,8.5 + pos: 60.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: охранный пост карго - - uid: 13434 +- proto: VendingMachineNutri + entities: + - uid: 13095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,22.5 + pos: 40.5,51.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Адвокат - - uid: 13436 +- proto: VendingMachineRestockBooze + entities: + - uid: 24965 components: - type: Transform - pos: 42.5,30.5 + pos: -18.511293,18.581635 + parent: 16527 +- proto: VendingMachineRestockChemVend + entities: + - uid: 13830 + components: + - type: Transform + pos: 36.470142,-13.439813 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Стойка - - uid: 13437 +- proto: VendingMachineRestockDonut + entities: + - uid: 13831 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,36.5 + pos: 15.490019,73.41495 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Кабинет Детектива - - uid: 13438 +- proto: VendingMachineRoboDrobe + entities: + - uid: 13832 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,24.5 + pos: 30.5,0.5 parent: 2 - - uid: 13439 + - uid: 24966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,28.5 + pos: -23.5,44.5 + parent: 16527 +- proto: VendingMachineRobotics + entities: + - uid: 13833 + components: + - type: Transform + pos: 26.5,0.5 parent: 2 - - type: SurveillanceCamera - id: Офис Смотрителя - - uid: 13440 + - uid: 24967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,29.5 + pos: -55.5,51.5 + parent: 16527 + - uid: 24968 + components: + - type: Transform + pos: -53.5,42.5 + parent: 16527 +- proto: VendingMachineSalvage + entities: + - uid: 13834 + components: + - type: Transform + pos: 2.5,14.5 parent: 2 - - uid: 13441 + - uid: 24969 components: - type: Transform - pos: 51.5,35.5 + pos: -2.5,38.5 + parent: 16527 + - uid: 24970 + components: + - type: Transform + pos: 3.5,38.5 + parent: 16527 +- proto: VendingMachineSciDrobe + entities: + - uid: 13835 + components: + - type: Transform + pos: 20.5,-4.5 parent: 2 - - type: SurveillanceCamera - id: пермабриг тамбур - - uid: 13442 + - uid: 24971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,18.5 + pos: -15.5,56.5 + parent: 16527 +- proto: VendingMachineSec + entities: + - uid: 13836 + components: + - type: Transform + pos: 58.5,30.5 parent: 2 - - type: SurveillanceCamera - id: камеры 1 - - uid: 13443 + - uid: 13837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,18.5 + pos: 54.5,16.5 parent: 2 - - type: SurveillanceCamera - id: камеры 2 - - uid: 13444 +- proto: VendingMachineSecDrobe + entities: + - uid: 13838 components: - type: Transform - pos: 56.5,26.5 + pos: 55.5,16.5 parent: 2 - - type: SurveillanceCamera - id: Тамбур оружейной - - uid: 13445 +- proto: VendingMachineSeeds + entities: + - uid: 21582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,20.5 + pos: 37.5,51.5 parent: 2 - - type: SurveillanceCamera - id: Бригмед - - uid: 13446 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 13839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,30.5 + pos: 58.5,41.5 parent: 2 - - type: SurveillanceCamera - id: Оружейная - - uid: 13447 + - uid: 13840 components: - type: Transform - pos: 51.5,16.5 + pos: 66.5,30.5 parent: 2 - - type: SurveillanceCamera - id: Допросная - - uid: 13448 +- proto: VendingMachineSnackOrange + entities: + - uid: 13841 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,17.5 + pos: 93.5,15.5 parent: 2 - - type: SurveillanceCamera - id: Старое прибытие -- proto: SurveillanceCameraService +- proto: VendingMachineSoda entities: - - uid: 126 + - uid: 13842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,40.5 + pos: 89.5,24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Бар - - uid: 5848 + - uid: 24972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,54.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Кухня - - uid: 13449 + pos: -15.5,53.5 + parent: 16527 +- proto: VendingMachineSovietSoda + entities: + - uid: 13843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,57.5 + pos: 15.5,76.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Библиотека - - uid: 13450 + - uid: 24973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,47.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: зоопарк - - uid: 13451 + pos: -11.5,51.5 + parent: 16527 +- proto: VendingMachineSustenance + entities: + - uid: 13844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,41.5 + pos: 58.5,24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Кабинет зоолога - - uid: 13452 + - uid: 13845 components: - type: Transform - pos: 79.5,30.5 + pos: 45.5,35.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Церковь - - uid: 13453 + - uid: 13846 components: - type: Transform - pos: 67.5,47.5 + pos: 84.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Уборщик - - uid: 13454 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 24974 components: - type: Transform - pos: 64.5,61.5 - parent: 2 - - type: SurveillanceCamera - id: Библиотека - - uid: 13912 + pos: 10.5,-2.5 + parent: 16527 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 13848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,48.5 + pos: 54.5,72.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Гидропоника - - uid: 16236 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 13849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,54.5 + pos: 46.5,71.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Барная стойка - - uid: 21816 + - uid: 13850 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,51.5 + pos: 50.5,57.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Бар 2 - - uid: 21837 + - uid: 13851 components: - type: Transform - pos: 25.5,40.5 + pos: 58.5,28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Бар 3 - - uid: 21838 + - uid: 24975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,47.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: ВИП зона -- proto: SurveillanceCameraSupply + pos: -22.5,30.5 + parent: 16527 + - uid: 24976 + components: + - type: Transform + pos: 12.5,53.5 + parent: 16527 +- proto: VendingMachineTheater entities: - - uid: 13455 + - uid: 21393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,10.5 + pos: 26.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: холл - - uid: 13456 +- proto: VendingMachineVendomat + entities: + - uid: 13852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 + pos: 66.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: квартирмейстер - - uid: 13457 + - uid: 16452 components: - type: Transform - pos: 1.5,11.5 + pos: 23.5,-44.5 parent: 2 - - uid: 13459 +- proto: VendingMachineViroDrobe + entities: + - uid: 13853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,16.5 + pos: 54.5,-5.5 parent: 2 - - type: SurveillanceCamera - id: Гермокамера утилей -- proto: SurveillanceCameraWirelessRouterConstructed +- proto: VendingMachineWinter entities: - - uid: 13460 + - uid: 13854 components: - type: Transform - pos: 84.5,19.5 + pos: 6.5,34.5 parent: 2 -- proto: SurveillanceCameraWirelessRouterEntertainment +- proto: VendingMachineYouTool entities: - - uid: 13461 + - uid: 13855 components: - type: Transform - pos: 85.5,19.5 + pos: 33.5,16.5 parent: 2 -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 13462 + - uid: 13856 components: - type: Transform - pos: 0.5,34.5 + pos: 68.5,41.5 parent: 2 - - uid: 13463 + - uid: 13857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,40.5 + pos: 44.5,59.5 parent: 2 -- proto: SurvivalKnife +- proto: WallCult entities: - - uid: 20073 + - uid: 13858 components: - type: Transform - pos: 11.527172,22.812958 - parent: 16504 -- proto: SyndicateMicrowave - entities: - - uid: 13464 + pos: 24.5,59.5 + parent: 2 + - uid: 13860 components: - type: Transform - pos: 43.5,66.5 + pos: 24.5,57.5 parent: 2 -- proto: SyndicateSponge +- proto: WallmountTelescreen entities: - - uid: 20074 + - uid: 13861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.249063,24.39633 - parent: 16504 - - uid: 20075 + rot: 1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 +- proto: WallmountTelescreenFrame + entities: + - uid: 24977 components: - type: Transform - pos: 16.492031,23.016417 - parent: 16504 -- proto: SyndicateSpongeWrapped - entities: - - uid: 13465 + pos: -17.5,4.5 + parent: 16527 + - uid: 24978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.778854,-5.2269115 - parent: 2 -- proto: SyndieFlag + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 16527 +- proto: WallmountTelevision entities: - - uid: 20076 + - uid: 13862 components: - type: Transform - pos: 5.5,7.5 - parent: 16504 - - uid: 20077 + pos: 17.5,15.5 + parent: 2 + - uid: 13863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,19.5 - parent: 16504 - - uid: 20078 + pos: 54.5,-0.5 + parent: 2 + - uid: 13864 components: - type: Transform - pos: -27.5,31.5 - parent: 16504 - - uid: 20079 + rot: 3.141592653589793 rad + pos: 26.5,-3.5 + parent: 2 + - uid: 13865 components: - type: Transform - pos: -22.5,31.5 - parent: 16504 - - uid: 20080 + rot: 1.5707963267948966 rad + pos: 13.5,47.5 + parent: 2 + - uid: 13866 components: - type: Transform - pos: -9.5,19.5 - parent: 16504 - - uid: 20081 + rot: -1.5707963267948966 rad + pos: 58.5,-3.5 + parent: 2 + - uid: 13867 components: - type: Transform - pos: -7.5,19.5 - parent: 16504 - - uid: 20082 + rot: 3.141592653589793 rad + pos: 25.5,19.5 + parent: 2 + - uid: 13868 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,37.5 - parent: 16504 -- proto: SyndieHandyFlag - entities: - - uid: 20083 + pos: 8.5,4.5 + parent: 2 + - uid: 13869 components: - type: Transform - pos: -5.510277,-6.471483 - parent: 16504 -- proto: SynthesizerInstrument + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 +- proto: WallmountTelevisionFrame entities: - - uid: 21496 + - uid: 13870 components: - type: Transform - pos: 22.238398,40.535683 + rot: -1.5707963267948966 rad + pos: 58.5,72.5 parent: 2 -- proto: Syringe - entities: - - uid: 20084 + - uid: 24979 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.413906,27.413605 - parent: 16504 -- proto: SyringeEphedrine - entities: - - uid: 11129 + pos: 8.5,3.5 + parent: 16527 + - uid: 24980 components: - type: Transform - parent: 11118 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Table + pos: -12.5,64.5 + parent: 16527 +- proto: WallPlasma entities: - - uid: 13467 + - uid: 24981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-5.5 - parent: 2 - - uid: 13468 + rot: 3.141592653589793 rad + pos: -37.5,38.5 + parent: 16527 + - uid: 24982 components: - type: Transform - pos: 50.5,-1.5 - parent: 2 - - uid: 13469 + rot: 3.141592653589793 rad + pos: -38.5,38.5 + parent: 16527 + - uid: 24983 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,24.5 - parent: 2 - - uid: 13470 + pos: -35.5,38.5 + parent: 16527 + - uid: 24984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,20.5 - parent: 2 - - uid: 13471 + pos: -37.5,43.5 + parent: 16527 + - uid: 24985 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,0.5 - parent: 2 - - uid: 13472 + pos: -36.5,38.5 + parent: 16527 + - uid: 24986 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-1.5 - parent: 2 - - uid: 13473 + pos: -39.5,38.5 + parent: 16527 + - uid: 24987 components: - type: Transform - pos: 40.5,-6.5 - parent: 2 - - uid: 13474 + pos: -39.5,41.5 + parent: 16527 + - uid: 24988 components: - type: Transform - pos: 35.5,-1.5 - parent: 2 - - uid: 13475 + pos: -39.5,42.5 + parent: 16527 + - uid: 24989 components: - type: Transform - pos: 35.5,-3.5 - parent: 2 - - uid: 13477 + pos: -39.5,43.5 + parent: 16527 + - uid: 24990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,78.5 - parent: 2 - - uid: 13478 + pos: -38.5,43.5 + parent: 16527 + - uid: 24991 components: - type: Transform - pos: 49.5,17.5 - parent: 2 - - uid: 13479 + pos: -39.5,40.5 + parent: 16527 + - uid: 24992 components: - type: Transform - pos: 42.5,-6.5 - parent: 2 - - uid: 13480 + pos: -39.5,39.5 + parent: 16527 + - uid: 24993 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,77.5 - parent: 2 - - uid: 13481 + pos: -36.5,39.5 + parent: 16527 + - uid: 24994 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,79.5 - parent: 2 - - uid: 13482 + pos: -36.5,42.5 + parent: 16527 + - uid: 24995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-3.5 - parent: 2 - - uid: 13483 + pos: -35.5,43.5 + parent: 16527 + - uid: 24996 components: - type: Transform - pos: 35.5,0.5 - parent: 2 - - uid: 13484 + pos: -36.5,43.5 + parent: 16527 +- proto: WallPlastitanium + entities: + - uid: 24997 components: - type: Transform - pos: 41.5,-6.5 - parent: 2 - - uid: 13485 + pos: -2.5,46.5 + parent: 16527 + - uid: 24998 components: - type: Transform - pos: 12.5,-1.5 - parent: 2 - - uid: 13486 + pos: -1.5,47.5 + parent: 16527 + - uid: 24999 components: - type: Transform - pos: 50.5,17.5 - parent: 2 - - uid: 13487 + pos: -2.5,47.5 + parent: 16527 + - uid: 25000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,23.5 - parent: 2 - - uid: 13488 + pos: 2.5,47.5 + parent: 16527 + - uid: 25001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,7.5 - parent: 2 - - uid: 13489 + pos: 7.5,47.5 + parent: 16527 + - uid: 25002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-0.5 - parent: 2 - - uid: 13490 + pos: 4.5,47.5 + parent: 16527 + - uid: 25003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 2 - - uid: 13491 + pos: 3.5,47.5 + parent: 16527 + - uid: 25004 components: - type: Transform - pos: 45.5,36.5 - parent: 2 - - uid: 13492 + pos: 5.5,47.5 + parent: 16527 + - uid: 25005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,11.5 - parent: 2 - - uid: 13493 + pos: 3.5,46.5 + parent: 16527 + - uid: 25006 components: - type: Transform - pos: 9.5,16.5 - parent: 2 - - uid: 13494 + pos: 8.5,47.5 + parent: 16527 + - uid: 25007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 2 - - uid: 13495 + pos: -19.5,39.5 + parent: 16527 + - uid: 25008 components: - type: Transform - pos: 5.5,3.5 - parent: 2 - - uid: 13496 + pos: -32.5,38.5 + parent: 16527 + - uid: 25009 components: - type: Transform - pos: 78.5,62.5 - parent: 2 - - uid: 13497 + pos: -14.5,-6.5 + parent: 16527 + - uid: 25010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,8.5 - parent: 2 - - uid: 13498 + pos: -17.5,-1.5 + parent: 16527 + - uid: 25011 components: - type: Transform - pos: 20.5,0.5 - parent: 2 - - uid: 13500 + pos: -16.5,-2.5 + parent: 16527 + - uid: 25012 components: - type: Transform - pos: 24.5,10.5 - parent: 2 - - uid: 13506 + pos: -17.5,-2.5 + parent: 16527 + - uid: 25013 components: - type: Transform - pos: 74.5,58.5 - parent: 2 - - uid: 13507 + pos: -15.5,-5.5 + parent: 16527 + - uid: 25014 components: - type: Transform - pos: 27.5,-2.5 - parent: 2 - - uid: 13510 + pos: -15.5,-4.5 + parent: 16527 + - uid: 25015 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-4.5 - parent: 2 - - uid: 13511 + pos: -18.5,-1.5 + parent: 16527 + - uid: 25016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-4.5 - parent: 2 - - uid: 13512 + pos: -15.5,-3.5 + parent: 16527 + - uid: 25017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-3.5 - parent: 2 - - uid: 13513 + pos: -16.5,-3.5 + parent: 16527 + - uid: 25018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 2 - - uid: 13514 + pos: -18.5,-0.5 + parent: 16527 + - uid: 25019 components: - type: Transform - pos: 20.5,-0.5 - parent: 2 - - uid: 13515 + pos: -14.5,-5.5 + parent: 16527 + - uid: 25020 components: - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 13516 + rot: 1.5707963267948966 rad + pos: 20.5,52.5 + parent: 16527 + - uid: 25021 components: - type: Transform - pos: 20.5,10.5 - parent: 2 - - uid: 13517 + pos: -18.5,0.5 + parent: 16527 + - uid: 25022 components: - type: Transform - pos: 21.5,10.5 - parent: 2 - - uid: 13518 + rot: 1.5707963267948966 rad + pos: 20.5,48.5 + parent: 16527 + - uid: 25023 components: - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 13519 + rot: 1.5707963267948966 rad + pos: 21.5,47.5 + parent: 16527 + - uid: 25024 components: - type: Transform - pos: 23.5,10.5 - parent: 2 - - uid: 13520 + pos: -5.5,35.5 + parent: 16527 + - uid: 25025 components: - type: Transform - pos: 57.5,-3.5 - parent: 2 - - uid: 13521 + pos: -5.5,36.5 + parent: 16527 + - uid: 25026 components: - type: Transform - pos: 52.5,-4.5 - parent: 2 - - uid: 13522 + pos: -5.5,38.5 + parent: 16527 + - uid: 25027 components: - type: Transform - pos: 52.5,-5.5 - parent: 2 - - uid: 13523 + pos: -5.5,39.5 + parent: 16527 + - uid: 25028 components: - type: Transform - pos: 53.5,-5.5 - parent: 2 - - uid: 13524 + rot: 1.5707963267948966 rad + pos: 20.5,47.5 + parent: 16527 + - uid: 25029 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,6.5 - parent: 2 - - uid: 13525 + pos: 19.5,47.5 + parent: 16527 + - uid: 25030 components: - type: Transform - pos: 49.5,-8.5 - parent: 2 - - uid: 13526 + rot: 1.5707963267948966 rad + pos: 22.5,47.5 + parent: 16527 + - uid: 25031 components: - type: Transform - pos: 50.5,-8.5 - parent: 2 - - uid: 13527 + rot: 1.5707963267948966 rad + pos: 23.5,47.5 + parent: 16527 + - uid: 25032 components: - type: Transform - pos: 50.5,-9.5 - parent: 2 - - uid: 13528 + rot: 1.5707963267948966 rad + pos: 24.5,47.5 + parent: 16527 + - uid: 25033 components: - type: Transform - pos: 55.5,6.5 - parent: 2 - - uid: 13529 + rot: 1.5707963267948966 rad + pos: 24.5,46.5 + parent: 16527 + - uid: 25034 components: - type: Transform - pos: 57.5,18.5 - parent: 2 - - uid: 13530 + rot: 1.5707963267948966 rad + pos: 21.5,53.5 + parent: 16527 + - uid: 25035 components: - type: Transform - pos: 62.5,24.5 - parent: 2 - - uid: 13531 + pos: 6.5,38.5 + parent: 16527 + - uid: 25036 + components: + - type: Transform + pos: 9.5,33.5 + parent: 16527 + - uid: 25037 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,32.5 - parent: 2 - - uid: 13532 + pos: 16.5,-7.5 + parent: 16527 + - uid: 25038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,42.5 - parent: 2 - - uid: 13533 + pos: 1.5,-4.5 + parent: 16527 + - uid: 25039 components: - type: Transform - pos: 40.5,42.5 - parent: 2 - - uid: 13534 + pos: -2.5,2.5 + parent: 16527 + - uid: 25040 components: - type: Transform - pos: 40.5,40.5 - parent: 2 - - uid: 13535 + pos: -4.5,-8.5 + parent: 16527 + - uid: 25041 components: - type: Transform - pos: 39.5,40.5 - parent: 2 - - uid: 13536 + pos: 3.5,-4.5 + parent: 16527 + - uid: 25042 components: - type: Transform - pos: 39.5,42.5 - parent: 2 - - uid: 13537 + pos: -5.5,-8.5 + parent: 16527 + - uid: 25043 components: - type: Transform - pos: 65.5,49.5 - parent: 2 - - uid: 13538 + pos: -0.5,-4.5 + parent: 16527 + - uid: 25044 components: - type: Transform - pos: 24.5,-1.5 - parent: 2 - - uid: 13539 + pos: 2.5,-4.5 + parent: 16527 + - uid: 25045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,73.5 - parent: 2 - - uid: 13540 + pos: -1.5,-8.5 + parent: 16527 + - uid: 25046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,37.5 - parent: 2 - - uid: 13541 + pos: -0.5,-8.5 + parent: 16527 + - uid: 25047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,37.5 - parent: 2 - - uid: 13542 + pos: 1.5,-8.5 + parent: 16527 + - uid: 25048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,42.5 - parent: 2 - - uid: 13543 + pos: 2.5,-8.5 + parent: 16527 + - uid: 25049 components: - type: Transform - pos: 3.5,24.5 - parent: 2 - - uid: 13544 + pos: 3.5,7.5 + parent: 16527 + - uid: 25050 components: - type: Transform - pos: 4.5,23.5 - parent: 2 - - uid: 13545 + pos: -2.5,-8.5 + parent: 16527 + - uid: 25051 components: - type: Transform - pos: 4.5,22.5 - parent: 2 - - uid: 13546 + pos: -2.5,-7.5 + parent: 16527 + - uid: 25052 components: - type: Transform - pos: 2.5,20.5 - parent: 2 - - uid: 13547 + pos: -3.5,-8.5 + parent: 16527 + - uid: 25053 components: - type: Transform - pos: 37.5,10.5 - parent: 2 - - uid: 13548 + pos: -2.5,-5.5 + parent: 16527 + - uid: 25054 components: - type: Transform - pos: 74.5,62.5 - parent: 2 - - uid: 13549 + pos: -2.5,-4.5 + parent: 16527 + - uid: 25055 components: - type: Transform - pos: 78.5,58.5 - parent: 2 - - uid: 13550 + pos: -1.5,-4.5 + parent: 16527 + - uid: 25056 components: - type: Transform - pos: 54.5,20.5 - parent: 2 - - uid: 13551 + pos: 3.5,-5.5 + parent: 16527 + - uid: 25057 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,8.5 - parent: 2 - - uid: 13552 + pos: 4.5,-8.5 + parent: 16527 + - uid: 25058 components: - type: Transform - pos: 19.5,-18.5 - parent: 2 - - uid: 13553 + pos: 3.5,-7.5 + parent: 16527 + - uid: 25059 components: - type: Transform - pos: 18.5,-18.5 - parent: 2 - - uid: 13554 + pos: 3.5,-8.5 + parent: 16527 + - uid: 25060 components: - type: Transform - pos: 55.5,24.5 - parent: 2 - - uid: 13555 + pos: 3.5,0.5 + parent: 16527 + - uid: 25061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-0.5 - parent: 2 - - uid: 13556 + pos: -2.5,7.5 + parent: 16527 + - uid: 25062 components: - type: Transform - pos: 21.5,-6.5 - parent: 2 - - uid: 13557 + pos: -6.5,-8.5 + parent: 16527 + - uid: 25063 components: - type: Transform - pos: 56.5,-3.5 - parent: 2 - - uid: 13558 + pos: -6.5,-7.5 + parent: 16527 + - uid: 25064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,7.5 - parent: 2 - - uid: 13559 + pos: -6.5,-6.5 + parent: 16527 + - uid: 25065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,7.5 - parent: 2 - - uid: 13560 + pos: -6.5,-5.5 + parent: 16527 + - uid: 25066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,40.5 - parent: 2 - - uid: 13561 + pos: -3.5,-4.5 + parent: 16527 + - uid: 25067 components: - type: Transform - pos: 50.5,-2.5 - parent: 2 - - uid: 20085 + pos: 5.5,-8.5 + parent: 16527 + - uid: 25068 components: - type: Transform - pos: 18.5,4.5 - parent: 16504 - - uid: 20086 + pos: 6.5,-8.5 + parent: 16527 + - uid: 25069 components: - type: Transform - pos: -17.5,4.5 - parent: 16504 - - uid: 20087 + pos: 7.5,-8.5 + parent: 16527 + - uid: 25070 components: - type: Transform - pos: -11.5,2.5 - parent: 16504 - - uid: 20088 + pos: 4.5,-4.5 + parent: 16527 + - uid: 25071 components: - type: Transform - pos: -7.5,-1.5 - parent: 16504 - - uid: 20089 + pos: 7.5,-5.5 + parent: 16527 + - uid: 25072 components: - type: Transform - pos: -9.5,2.5 - parent: 16504 - - uid: 20090 + pos: 7.5,-6.5 + parent: 16527 + - uid: 25073 components: - type: Transform - pos: -12.5,-6.5 - parent: 16504 - - uid: 20091 + pos: 7.5,-7.5 + parent: 16527 + - uid: 25074 components: - type: Transform - pos: -12.5,-4.5 - parent: 16504 - - uid: 20092 + pos: -2.5,4.5 + parent: 16527 + - uid: 25075 components: - type: Transform - pos: 11.5,-4.5 - parent: 16504 - - uid: 20093 + pos: -2.5,5.5 + parent: 16527 + - uid: 25076 components: - type: Transform - pos: 11.5,-6.5 - parent: 16504 - - uid: 20094 + pos: -2.5,6.5 + parent: 16527 + - uid: 25077 components: - type: Transform - pos: 11.5,13.5 - parent: 16504 - - uid: 20095 + pos: 3.5,6.5 + parent: 16527 + - uid: 25078 components: - type: Transform - pos: 12.5,13.5 - parent: 16504 - - uid: 20096 + pos: 8.5,0.5 + parent: 16527 + - uid: 25079 components: - type: Transform - pos: 12.5,14.5 - parent: 16504 - - uid: 20097 + pos: 8.5,1.5 + parent: 16527 + - uid: 25080 components: - type: Transform - pos: 11.5,14.5 - parent: 16504 - - uid: 20098 + pos: 8.5,2.5 + parent: 16527 + - uid: 25081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,38.5 - parent: 16504 - - uid: 20099 + pos: 8.5,3.5 + parent: 16527 + - uid: 25082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,38.5 - parent: 16504 - - uid: 20100 + pos: 8.5,4.5 + parent: 16527 + - uid: 25083 components: - type: Transform - pos: -18.5,27.5 - parent: 16504 - - uid: 20101 + pos: 8.5,5.5 + parent: 16527 + - uid: 25084 components: - type: Transform - pos: -17.5,27.5 - parent: 16504 - - uid: 20102 + pos: 8.5,6.5 + parent: 16527 + - uid: 25085 components: - type: Transform - pos: -25.5,27.5 - parent: 16504 - - uid: 20103 + pos: 8.5,7.5 + parent: 16527 + - uid: 25086 components: - type: Transform - pos: -24.5,27.5 - parent: 16504 - - uid: 20104 + pos: 4.5,7.5 + parent: 16527 + - uid: 25087 components: - type: Transform - pos: -18.5,18.5 - parent: 16504 - - uid: 20105 + pos: 5.5,7.5 + parent: 16527 + - uid: 25088 components: - type: Transform - pos: -18.5,19.5 - parent: 16504 - - uid: 20106 + pos: 7.5,7.5 + parent: 16527 + - uid: 25089 components: - type: Transform - pos: -12.5,19.5 - parent: 16504 - - uid: 20107 + pos: 9.5,12.5 + parent: 16527 + - uid: 25090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,31.5 - parent: 16504 - - uid: 20108 + pos: -3.5,5.5 + parent: 16527 + - uid: 25091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,32.5 - parent: 16504 - - uid: 20109 + pos: -4.5,5.5 + parent: 16527 + - uid: 25092 components: - type: Transform - pos: 23.5,24.5 - parent: 16504 - - uid: 20110 + pos: -5.5,6.5 + parent: 16527 + - uid: 25093 components: - type: Transform - pos: 23.5,23.5 - parent: 16504 - - uid: 20111 + pos: -5.5,5.5 + parent: 16527 + - uid: 25094 components: - type: Transform - pos: 24.5,23.5 - parent: 16504 - - uid: 20112 + pos: 0.5,13.5 + parent: 16527 + - uid: 25095 components: - type: Transform - pos: 25.5,23.5 - parent: 16504 - - uid: 20113 + pos: -1.5,13.5 + parent: 16527 + - uid: 25096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,34.5 - parent: 16504 - - uid: 20114 + pos: -7.5,3.5 + parent: 16527 + - uid: 25097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,34.5 - parent: 16504 - - uid: 20115 + pos: -6.5,4.5 + parent: 16527 + - uid: 25098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,33.5 - parent: 16504 - - uid: 20116 + pos: -6.5,3.5 + parent: 16527 + - uid: 25099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,32.5 - parent: 16504 - - uid: 22502 + pos: -8.5,2.5 + parent: 16527 + - uid: 25100 components: - type: Transform - pos: 47.5,-2.5 - parent: 2 -- proto: TableCarpet - entities: - - uid: 4978 + pos: -8.5,1.5 + parent: 16527 + - uid: 25101 components: - type: Transform - pos: 15.5,50.5 - parent: 2 - - uid: 5811 + pos: -8.5,0.5 + parent: 16527 + - uid: 25102 components: - type: Transform - pos: 16.5,50.5 - parent: 2 - - uid: 5814 + pos: -7.5,-0.5 + parent: 16527 + - uid: 25103 components: - type: Transform - pos: 16.5,49.5 - parent: 2 - - uid: 5815 + pos: -6.5,-0.5 + parent: 16527 + - uid: 25104 components: - type: Transform - pos: 16.5,48.5 - parent: 2 - - uid: 5823 + pos: -5.5,-0.5 + parent: 16527 + - uid: 25105 components: - type: Transform - pos: 15.5,50.5 - parent: 2 - - uid: 5872 + pos: 2.5,13.5 + parent: 16527 + - uid: 25106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,3.5 - parent: 2 - - uid: 5873 + pos: -2.5,13.5 + parent: 16527 + - uid: 25107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,3.5 - parent: 2 - - uid: 5875 + pos: -2.5,12.5 + parent: 16527 + - uid: 25108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,2.5 - parent: 2 - - uid: 5888 + pos: -2.5,11.5 + parent: 16527 + - uid: 25109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,2.5 - parent: 2 - - uid: 13562 + pos: -2.5,8.5 + parent: 16527 + - uid: 25110 components: - type: Transform - pos: 65.5,64.5 - parent: 2 - - uid: 13563 + pos: -2.5,9.5 + parent: 16527 + - uid: 25111 components: - type: Transform - pos: 65.5,63.5 - parent: 2 - - uid: 13564 + pos: 3.5,8.5 + parent: 16527 + - uid: 25112 components: - type: Transform - pos: 66.5,63.5 - parent: 2 - - uid: 13565 + pos: 3.5,9.5 + parent: 16527 + - uid: 25113 components: - type: Transform - pos: 66.5,64.5 - parent: 2 - - uid: 13918 + pos: 3.5,11.5 + parent: 16527 + - uid: 25114 components: - type: Transform - pos: 15.5,43.5 - parent: 2 - - uid: 13931 + pos: 3.5,12.5 + parent: 16527 + - uid: 25115 components: - type: Transform - pos: 16.5,43.5 - parent: 2 - - uid: 16170 + pos: 3.5,13.5 + parent: 16527 + - uid: 25116 components: - type: Transform - pos: 15.5,48.5 - parent: 2 - - uid: 20117 + pos: 4.5,13.5 + parent: 16527 + - uid: 25117 components: - type: Transform - pos: 31.5,17.5 - parent: 16504 - - uid: 20118 + pos: 5.5,13.5 + parent: 16527 + - uid: 25118 components: - type: Transform - pos: 9.5,3.5 - parent: 16504 - - uid: 20119 + pos: 6.5,13.5 + parent: 16527 + - uid: 25119 components: - type: Transform - pos: 27.5,14.5 - parent: 16504 - - uid: 20120 + pos: 7.5,13.5 + parent: 16527 + - uid: 25120 components: - type: Transform - pos: 27.5,18.5 - parent: 16504 - - uid: 20121 + pos: 8.5,13.5 + parent: 16527 + - uid: 25121 components: - type: Transform - pos: 30.5,18.5 - parent: 16504 - - uid: 20122 + pos: 9.5,13.5 + parent: 16527 + - uid: 25122 components: - type: Transform - pos: 31.5,16.5 - parent: 16504 - - uid: 20123 + pos: 10.5,7.5 + parent: 16527 + - uid: 25123 components: - type: Transform - pos: 26.5,16.5 - parent: 16504 - - uid: 20124 + pos: 11.5,6.5 + parent: 16527 + - uid: 25124 components: - type: Transform - pos: 26.5,15.5 - parent: 16504 - - uid: 20125 + pos: 10.5,6.5 + parent: 16527 + - uid: 25125 components: - type: Transform - pos: 28.5,18.5 - parent: 16504 - - uid: 20126 + pos: 9.5,8.5 + parent: 16527 + - uid: 25126 components: - type: Transform - pos: 29.5,18.5 - parent: 16504 - - uid: 20127 + pos: 9.5,7.5 + parent: 16527 + - uid: 25127 components: - type: Transform - pos: 28.5,14.5 - parent: 16504 - - uid: 20128 + pos: 11.5,5.5 + parent: 16527 + - uid: 25128 components: - type: Transform - pos: 26.5,17.5 - parent: 16504 - - uid: 20129 + pos: 12.5,5.5 + parent: 16527 + - uid: 25129 components: - type: Transform - pos: 31.5,15.5 - parent: 16504 - - uid: 20130 + pos: -3.5,7.5 + parent: 16527 + - uid: 25130 components: - type: Transform - pos: 29.5,14.5 - parent: 16504 - - uid: 20131 + pos: -4.5,7.5 + parent: 16527 + - uid: 25131 components: - type: Transform - pos: 30.5,14.5 - parent: 16504 - - uid: 21844 + pos: 11.5,12.5 + parent: 16527 + - uid: 25132 components: - type: Transform - pos: 15.5,49.5 - parent: 2 - - uid: 21866 + pos: -6.5,7.5 + parent: 16527 + - uid: 25133 components: - type: Transform - pos: 16.5,45.5 - parent: 2 - - uid: 21867 + pos: -7.5,7.5 + parent: 16527 + - uid: 25134 components: - type: Transform - pos: 16.5,44.5 - parent: 2 -- proto: TableCounterMetal - entities: - - uid: 20132 + pos: -8.5,7.5 + parent: 16527 + - uid: 25135 components: - type: Transform - pos: 14.5,12.5 - parent: 16504 - - uid: 20133 + pos: -8.5,8.5 + parent: 16527 + - uid: 25136 components: - type: Transform - pos: 13.5,12.5 - parent: 16504 - - uid: 20134 + pos: -3.5,13.5 + parent: 16527 + - uid: 25137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,17.5 - parent: 16504 - - uid: 20135 + pos: -4.5,13.5 + parent: 16527 + - uid: 25138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,17.5 - parent: 16504 - - uid: 20136 + pos: -5.5,13.5 + parent: 16527 + - uid: 25139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,15.5 - parent: 16504 - - uid: 20137 + pos: -6.5,13.5 + parent: 16527 + - uid: 25140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,15.5 - parent: 16504 - - uid: 20138 + pos: -7.5,13.5 + parent: 16527 + - uid: 25141 components: - type: Transform - pos: -26.5,31.5 - parent: 16504 - - uid: 20139 + pos: -8.5,13.5 + parent: 16527 + - uid: 25142 components: - type: Transform - pos: -23.5,31.5 - parent: 16504 - - uid: 20140 + pos: -8.5,12.5 + parent: 16527 + - uid: 25143 components: - type: Transform - pos: -7.5,32.5 - parent: 16504 - - uid: 20141 + pos: -9.5,12.5 + parent: 16527 + - uid: 25144 components: - type: Transform - pos: -8.5,32.5 - parent: 16504 - - uid: 20142 + pos: -10.5,12.5 + parent: 16527 + - uid: 25145 components: - type: Transform - pos: -9.5,32.5 - parent: 16504 -- proto: TableCounterWood - entities: - - uid: 2299 + pos: -11.5,12.5 + parent: 16527 + - uid: 25146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,43.5 - parent: 2 - - uid: 2349 + pos: -11.5,11.5 + parent: 16527 + - uid: 25147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,45.5 - parent: 2 - - uid: 2356 + pos: -12.5,11.5 + parent: 16527 + - uid: 25148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,46.5 - parent: 2 - - uid: 2401 + pos: -12.5,10.5 + parent: 16527 + - uid: 25149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,47.5 - parent: 2 - - uid: 10071 + pos: -13.5,10.5 + parent: 16527 + - uid: 25150 components: - type: Transform - pos: 23.5,40.5 - parent: 2 - - uid: 13566 + pos: -13.5,9.5 + parent: 16527 + - uid: 25151 components: - type: Transform - pos: 27.5,63.5 - parent: 2 - - uid: 13567 + pos: -14.5,9.5 + parent: 16527 + - uid: 25152 components: - type: Transform - pos: 28.5,63.5 - parent: 2 - - uid: 13568 + pos: -14.5,8.5 + parent: 16527 + - uid: 25153 components: - type: Transform - pos: 29.5,63.5 - parent: 2 - - uid: 13569 + pos: -15.5,8.5 + parent: 16527 + - uid: 25154 components: - type: Transform - pos: 30.5,63.5 - parent: 2 - - uid: 13570 + pos: -15.5,7.5 + parent: 16527 + - uid: 25155 components: - type: Transform - pos: 30.5,62.5 - parent: 2 - - uid: 13571 + pos: -15.5,6.5 + parent: 16527 + - uid: 25156 components: - type: Transform - pos: 20.5,40.5 - parent: 2 - - uid: 13572 + pos: -15.5,5.5 + parent: 16527 + - uid: 25157 components: - type: Transform - pos: 32.5,62.5 - parent: 2 - - uid: 13573 + pos: -16.5,1.5 + parent: 16527 + - uid: 25158 components: - type: Transform - pos: 32.5,63.5 - parent: 2 - - uid: 20143 + pos: -17.5,1.5 + parent: 16527 + - uid: 25159 components: - type: Transform - pos: -6.5,27.5 - parent: 16504 - - uid: 20144 + pos: -18.5,1.5 + parent: 16527 + - uid: 25160 components: - type: Transform - pos: -7.5,27.5 - parent: 16504 - - uid: 21291 + pos: -15.5,1.5 + parent: 16527 + - uid: 25161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,44.5 - parent: 2 - - uid: 21404 + pos: -15.5,0.5 + parent: 16527 + - uid: 25162 components: - type: Transform - pos: 22.5,40.5 - parent: 2 - - uid: 21427 + pos: -15.5,-1.5 + parent: 16527 + - uid: 25163 + components: + - type: Transform + pos: -9.5,7.5 + parent: 16527 + - uid: 25164 + components: + - type: Transform + pos: -10.5,6.5 + parent: 16527 + - uid: 25165 components: - type: Transform - pos: 21.5,40.5 - parent: 2 - - uid: 21501 + pos: -9.5,6.5 + parent: 16527 + - uid: 25166 components: - type: Transform - pos: 31.5,62.5 - parent: 2 -- proto: TableFancyBlack - entities: - - uid: 510 + pos: -11.5,5.5 + parent: 16527 + - uid: 25167 components: - type: Transform - pos: 19.5,51.5 - parent: 2 - - uid: 6927 + pos: -10.5,5.5 + parent: 16527 + - uid: 25168 components: - type: Transform - pos: 20.5,55.5 - parent: 2 - - uid: 11551 + pos: -9.5,5.5 + parent: 16527 + - uid: 25169 components: - type: Transform - pos: 29.5,51.5 - parent: 2 - - uid: 15371 + pos: -8.5,5.5 + parent: 16527 + - uid: 25170 components: - type: Transform - pos: 30.5,51.5 - parent: 2 - - uid: 15687 + pos: -8.5,4.5 + parent: 16527 + - uid: 25171 components: - type: Transform - pos: 31.5,51.5 - parent: 2 - - uid: 21228 + pos: -8.5,3.5 + parent: 16527 + - uid: 25172 components: - type: Transform - pos: 21.5,55.5 - parent: 2 - - uid: 21229 + pos: -8.5,6.5 + parent: 16527 + - uid: 25173 components: - type: Transform - pos: 20.5,55.5 - parent: 2 - - uid: 21230 + pos: -7.5,6.5 + parent: 16527 + - uid: 25174 components: - type: Transform - pos: 19.5,55.5 - parent: 2 - - uid: 21233 + pos: 10.5,12.5 + parent: 16527 + - uid: 25175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,51.5 - parent: 2 - - uid: 21234 + pos: -3.5,6.5 + parent: 16527 + - uid: 25176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,51.5 - parent: 2 - - uid: 21235 + pos: -7.5,5.5 + parent: 16527 + - uid: 25177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,51.5 - parent: 2 - - uid: 21236 + pos: -7.5,4.5 + parent: 16527 + - uid: 25178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,51.5 - parent: 2 - - uid: 21237 + pos: -11.5,1.5 + parent: 16527 + - uid: 25179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,51.5 - parent: 2 - - uid: 21239 + pos: -10.5,1.5 + parent: 16527 + - uid: 25180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,51.5 - parent: 2 - - uid: 21240 + pos: -9.5,1.5 + parent: 16527 + - uid: 25181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,51.5 - parent: 2 - - uid: 21241 + pos: -10.5,0.5 + parent: 16527 + - uid: 25182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,51.5 - parent: 2 - - uid: 21263 + pos: -9.5,0.5 + parent: 16527 + - uid: 25183 components: - type: Transform - pos: 19.5,52.5 - parent: 2 - - uid: 21308 + pos: -9.5,-0.5 + parent: 16527 + - uid: 25184 components: - type: Transform - pos: 33.5,41.5 - parent: 2 - - uid: 21328 + pos: -8.5,-0.5 + parent: 16527 + - uid: 25185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,41.5 - parent: 2 -- proto: TableFancyBlue - entities: - - uid: 6722 + pos: -13.5,-2.5 + parent: 16527 + - uid: 25186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,43.5 - parent: 2 - - uid: 13578 + pos: -14.5,-2.5 + parent: 16527 + - uid: 25187 components: - type: Transform - pos: 8.5,28.5 - parent: 2 - - uid: 13579 + pos: -14.5,-1.5 + parent: 16527 + - uid: 25188 components: - type: Transform - pos: 6.5,27.5 - parent: 2 - - uid: 13580 + pos: -15.5,-0.5 + parent: 16527 + - uid: 25189 components: - type: Transform - pos: 6.5,28.5 - parent: 2 - - uid: 13581 + pos: -13.5,-3.5 + parent: 16527 + - uid: 25190 components: - type: Transform - pos: 7.5,28.5 - parent: 2 - - uid: 13582 + pos: -6.5,-1.5 + parent: 16527 + - uid: 25191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,25.5 - parent: 2 - - uid: 13583 + pos: -18.5,2.5 + parent: 16527 + - uid: 25192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,26.5 - parent: 2 - - uid: 13584 + pos: -18.5,3.5 + parent: 16527 + - uid: 25193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,27.5 - parent: 2 - - uid: 13585 + pos: -18.5,4.5 + parent: 16527 + - uid: 25194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,27.5 - parent: 2 - - uid: 13586 + pos: -18.5,5.5 + parent: 16527 + - uid: 25195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,24.5 - parent: 2 - - uid: 13587 + pos: -17.5,5.5 + parent: 16527 + - uid: 25196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,27.5 - parent: 2 - - uid: 21282 + pos: -16.5,5.5 + parent: 16527 + - uid: 25197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,43.5 - parent: 2 -- proto: TableFancyCyan - entities: - - uid: 21311 + pos: -6.5,-3.5 + parent: 16527 + - uid: 25198 components: - type: Transform - pos: 33.5,45.5 - parent: 2 -- proto: TableFancyGreen - entities: - - uid: 5575 + pos: -13.5,-4.5 + parent: 16527 + - uid: 25199 components: - type: Transform - pos: 30.5,46.5 - parent: 2 - - uid: 21283 + pos: -13.5,-5.5 + parent: 16527 + - uid: 25200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,46.5 - parent: 2 -- proto: TableFancyWhite - entities: - - uid: 5822 + pos: -13.5,-6.5 + parent: 16527 + - uid: 25201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,47.5 - parent: 2 - - uid: 21855 + pos: -10.5,-7.5 + parent: 16527 + - uid: 25202 components: - type: Transform - pos: 19.5,47.5 - parent: 2 -- proto: TableFrame - entities: - - uid: 20145 + pos: -12.5,-7.5 + parent: 16527 + - uid: 25203 components: - type: Transform - pos: 18.5,2.5 - parent: 16504 - - uid: 20146 + pos: -13.5,-7.5 + parent: 16527 + - uid: 25204 components: - type: Transform - pos: -15.5,4.5 - parent: 16504 - - uid: 20147 + pos: 12.5,12.5 + parent: 16527 + - uid: 25205 components: - type: Transform - pos: -9.5,-1.5 - parent: 16504 - - uid: 20148 + pos: 12.5,11.5 + parent: 16527 + - uid: 25206 components: - type: Transform - pos: 11.5,32.5 - parent: 16504 - - uid: 20149 + pos: 13.5,11.5 + parent: 16527 + - uid: 25207 components: - type: Transform - pos: 11.5,36.5 - parent: 16504 - - uid: 20150 + pos: 13.5,10.5 + parent: 16527 + - uid: 25208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,33.5 - parent: 16504 - - uid: 20151 + pos: 14.5,10.5 + parent: 16527 + - uid: 25209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,31.5 - parent: 16504 - - uid: 20152 + pos: 14.5,9.5 + parent: 16527 + - uid: 25210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 16504 -- proto: TableGlass - entities: - - uid: 13588 + pos: 15.5,9.5 + parent: 16527 + - uid: 25211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-1.5 - parent: 2 - - uid: 13589 + pos: 15.5,8.5 + parent: 16527 + - uid: 25212 components: - type: Transform - pos: 36.5,-11.5 - parent: 2 - - uid: 13590 + pos: 16.5,8.5 + parent: 16527 + - uid: 25213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,46.5 - parent: 2 - - uid: 13591 + pos: 16.5,7.5 + parent: 16527 + - uid: 25214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,43.5 - parent: 2 - - uid: 13592 + pos: 16.5,6.5 + parent: 16527 + - uid: 25215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,57.5 - parent: 2 - - uid: 13593 + pos: 16.5,5.5 + parent: 16527 + - uid: 25216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,63.5 - parent: 2 - - uid: 13594 + pos: 17.5,5.5 + parent: 16527 + - uid: 25217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,60.5 - parent: 2 - - uid: 20153 + pos: 18.5,5.5 + parent: 16527 + - uid: 25218 components: - type: Transform - pos: 35.5,16.5 - parent: 16504 - - uid: 20154 + pos: 19.5,5.5 + parent: 16527 + - uid: 25219 components: - type: Transform - pos: 35.5,15.5 - parent: 16504 - - uid: 20155 + pos: 19.5,4.5 + parent: 16527 + - uid: 25220 components: - type: Transform - pos: 11.5,33.5 - parent: 16504 - - uid: 20156 + pos: 19.5,3.5 + parent: 16527 + - uid: 25221 components: - type: Transform - pos: 11.5,31.5 - parent: 16504 - - uid: 20157 + pos: 19.5,2.5 + parent: 16527 + - uid: 25222 components: - type: Transform - pos: 17.5,31.5 - parent: 16504 - - uid: 20158 + pos: 19.5,1.5 + parent: 16527 + - uid: 25223 components: - type: Transform - pos: 11.5,37.5 - parent: 16504 - - uid: 20159 + pos: 18.5,1.5 + parent: 16527 + - uid: 25224 components: - type: Transform - pos: 15.5,33.5 - parent: 16504 -- proto: TableReinforced - entities: - - uid: 3499 + pos: 17.5,1.5 + parent: 16527 + - uid: 25225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-41.5 - parent: 2 - - uid: 4320 + pos: 16.5,1.5 + parent: 16527 + - uid: 25226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-44.5 - parent: 2 - - uid: 5046 + pos: 16.5,0.5 + parent: 16527 + - uid: 25227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-41.5 - parent: 2 - - uid: 9919 + pos: 16.5,-0.5 + parent: 16527 + - uid: 25228 components: - type: Transform - pos: 26.5,54.5 - parent: 2 - - uid: 13013 + pos: 16.5,-1.5 + parent: 16527 + - uid: 25229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-41.5 - parent: 2 - - uid: 13595 + pos: 15.5,-1.5 + parent: 16527 + - uid: 25230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,18.5 - parent: 2 - - uid: 13596 + pos: 15.5,-2.5 + parent: 16527 + - uid: 25231 components: - type: Transform - pos: 37.5,69.5 - parent: 2 - - uid: 13597 + pos: 14.5,-2.5 + parent: 16527 + - uid: 25232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,41.5 - parent: 2 - - uid: 13598 + pos: 14.5,-3.5 + parent: 16527 + - uid: 25233 components: - type: Transform - pos: 42.5,65.5 - parent: 2 - - uid: 13599 + pos: 14.5,-4.5 + parent: 16527 + - uid: 25234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,62.5 - parent: 2 - - uid: 13600 + pos: 14.5,-5.5 + parent: 16527 + - uid: 25235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,66.5 - parent: 2 - - uid: 13601 + pos: 14.5,-6.5 + parent: 16527 + - uid: 25236 components: - type: Transform - pos: 38.5,69.5 - parent: 2 - - uid: 13602 + pos: 14.5,-7.5 + parent: 16527 + - uid: 25237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,62.5 - parent: 2 - - uid: 13603 + pos: 17.5,-6.5 + parent: 16527 + - uid: 25238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,41.5 - parent: 2 - - uid: 13604 + pos: -5.5,7.5 + parent: 16527 + - uid: 25239 components: - type: Transform - pos: 41.5,62.5 - parent: 2 - - uid: 13605 + pos: -4.5,6.5 + parent: 16527 + - uid: 25240 components: - type: Transform - pos: 41.5,61.5 - parent: 2 - - uid: 13606 + pos: -6.5,6.5 + parent: 16527 + - uid: 25241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,41.5 - parent: 2 - - uid: 13607 + pos: 6.5,20.5 + parent: 16527 + - uid: 25242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,2.5 - parent: 2 - - uid: 13608 + pos: -5.5,14.5 + parent: 16527 + - uid: 25243 components: - type: Transform - pos: 18.5,-16.5 - parent: 2 - - uid: 13609 + pos: -5.5,15.5 + parent: 16527 + - uid: 25244 components: - type: Transform - pos: 19.5,-16.5 - parent: 2 - - uid: 13610 + pos: -4.5,19.5 + parent: 16527 + - uid: 25245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,61.5 - parent: 2 - - uid: 13611 + pos: -5.5,17.5 + parent: 16527 + - uid: 25246 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,32.5 - parent: 2 - - uid: 13612 + pos: -5.5,18.5 + parent: 16527 + - uid: 25247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,11.5 - parent: 2 - - uid: 13613 + pos: 6.5,14.5 + parent: 16527 + - uid: 25248 components: - type: Transform - pos: 5.5,5.5 - parent: 2 - - uid: 13614 + pos: 6.5,15.5 + parent: 16527 + - uid: 25249 components: - type: Transform - pos: 4.5,5.5 - parent: 2 - - uid: 13615 + pos: -5.5,19.5 + parent: 16527 + - uid: 25250 components: - type: Transform - pos: 8.5,9.5 - parent: 2 - - uid: 13616 + pos: 6.5,17.5 + parent: 16527 + - uid: 25251 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 2 - - uid: 13617 + pos: 6.5,18.5 + parent: 16527 + - uid: 25252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,2.5 - parent: 2 - - uid: 13618 + pos: 6.5,19.5 + parent: 16527 + - uid: 25253 components: - type: Transform - pos: 15.5,11.5 - parent: 2 - - uid: 13619 + pos: 5.5,19.5 + parent: 16527 + - uid: 25254 components: - type: Transform - pos: 28.5,30.5 - parent: 2 - - uid: 13620 + pos: 1.5,19.5 + parent: 16527 + - uid: 25255 components: - type: Transform - pos: 20.5,30.5 - parent: 2 - - uid: 13621 + pos: -3.5,19.5 + parent: 16527 + - uid: 25256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,30.5 - parent: 2 - - uid: 13622 + pos: -0.5,19.5 + parent: 16527 + - uid: 25257 components: - type: Transform - pos: 16.5,21.5 - parent: 2 - - uid: 13623 + pos: -2.5,19.5 + parent: 16527 + - uid: 25258 components: - type: Transform - pos: 15.5,22.5 - parent: 2 - - uid: 13624 + pos: 3.5,19.5 + parent: 16527 + - uid: 25259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 2 - - uid: 13625 + pos: -1.5,19.5 + parent: 16527 + - uid: 25260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-11.5 - parent: 2 - - uid: 13626 + pos: 4.5,19.5 + parent: 16527 + - uid: 25261 components: - type: Transform - pos: 57.5,48.5 - parent: 2 - - uid: 13627 + pos: 2.5,19.5 + parent: 16527 + - uid: 25262 components: - type: Transform - pos: 62.5,49.5 - parent: 2 - - uid: 13628 + pos: -19.5,5.5 + parent: 16527 + - uid: 25263 components: - type: Transform - pos: 62.5,48.5 - parent: 2 - - uid: 13629 + pos: 25.5,55.5 + parent: 16527 + - uid: 25264 components: - type: Transform - pos: 62.5,47.5 - parent: 2 - - uid: 13630 + pos: -9.5,19.5 + parent: 16527 + - uid: 25265 components: - type: Transform - pos: 61.5,47.5 - parent: 2 - - uid: 13631 + pos: -11.5,13.5 + parent: 16527 + - uid: 25266 components: - type: Transform - pos: 34.5,9.5 - parent: 2 - - uid: 13632 + pos: -11.5,14.5 + parent: 16527 + - uid: 25267 components: - type: Transform - pos: 34.5,10.5 - parent: 2 - - uid: 13633 + pos: -11.5,17.5 + parent: 16527 + - uid: 25268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,1.5 - parent: 2 - - uid: 13634 + pos: -11.5,16.5 + parent: 16527 + - uid: 25269 components: - type: Transform - pos: 43.5,5.5 - parent: 2 - - uid: 13635 + pos: -11.5,19.5 + parent: 16527 + - uid: 25270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,9.5 - parent: 2 - - uid: 13636 + pos: -6.5,19.5 + parent: 16527 + - uid: 25271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,8.5 - parent: 2 - - uid: 13637 + pos: -10.5,19.5 + parent: 16527 + - uid: 25272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,32.5 - parent: 2 - - uid: 13638 + pos: -7.5,19.5 + parent: 16527 + - uid: 25273 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,29.5 - parent: 2 - - uid: 13639 + pos: -11.5,18.5 + parent: 16527 + - uid: 25274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,29.5 - parent: 2 - - uid: 13640 + pos: -5.5,20.5 + parent: 16527 + - uid: 25275 components: - type: Transform - pos: 39.5,30.5 - parent: 2 - - uid: 13641 + pos: -5.5,21.5 + parent: 16527 + - uid: 25276 components: - type: Transform - pos: 60.5,47.5 - parent: 2 - - uid: 13642 + pos: -5.5,22.5 + parent: 16527 + - uid: 25277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,68.5 - parent: 2 - - uid: 13643 + pos: -5.5,23.5 + parent: 16527 + - uid: 25278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,8.5 - parent: 2 - - uid: 13644 + pos: -5.5,24.5 + parent: 16527 + - uid: 25279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,57.5 - parent: 2 - - uid: 13645 + pos: -5.5,25.5 + parent: 16527 + - uid: 25280 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,58.5 - parent: 2 - - uid: 13646 + pos: -5.5,26.5 + parent: 16527 + - uid: 25281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,58.5 - parent: 2 - - uid: 13647 + pos: -5.5,27.5 + parent: 16527 + - uid: 25282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,57.5 - parent: 2 - - uid: 13648 + pos: 6.5,21.5 + parent: 16527 + - uid: 25283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,59.5 - parent: 2 - - uid: 13649 + pos: 6.5,22.5 + parent: 16527 + - uid: 25284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,59.5 - parent: 2 - - uid: 13650 + pos: 6.5,23.5 + parent: 16527 + - uid: 25285 components: - type: Transform - pos: 75.5,15.5 - parent: 2 - - uid: 13651 + pos: 6.5,24.5 + parent: 16527 + - uid: 25286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,54.5 - parent: 2 - - uid: 13652 + pos: 6.5,25.5 + parent: 16527 + - uid: 25287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,54.5 - parent: 2 - - uid: 13653 + pos: 6.5,26.5 + parent: 16527 + - uid: 25288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,69.5 - parent: 2 - - uid: 13654 + pos: 6.5,27.5 + parent: 16527 + - uid: 25289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,70.5 - parent: 2 - - uid: 13655 + pos: 10.5,19.5 + parent: 16527 + - uid: 25290 components: - type: Transform - pos: 81.5,54.5 - parent: 2 - - uid: 13656 + pos: -5.5,28.5 + parent: 16527 + - uid: 25291 components: - type: Transform - pos: 81.5,51.5 - parent: 2 - - uid: 13658 + pos: -5.5,29.5 + parent: 16527 + - uid: 25292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,68.5 - parent: 2 - - uid: 13659 + pos: -5.5,30.5 + parent: 16527 + - uid: 25293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,29.5 - parent: 2 - - uid: 13660 + pos: -4.5,31.5 + parent: 16527 + - uid: 25294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 2 - - uid: 13661 + pos: -3.5,31.5 + parent: 16527 + - uid: 25295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,48.5 - parent: 2 - - uid: 13662 + pos: -2.5,31.5 + parent: 16527 + - uid: 25296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,49.5 - parent: 2 - - uid: 13663 + pos: -1.5,31.5 + parent: 16527 + - uid: 25297 components: - type: Transform - pos: 57.5,47.5 - parent: 2 - - uid: 13664 + pos: 2.5,31.5 + parent: 16527 + - uid: 25298 components: - type: Transform - pos: 41.5,11.5 - parent: 2 - - uid: 13665 + pos: 3.5,31.5 + parent: 16527 + - uid: 25299 components: - type: Transform - pos: 43.5,5.5 - parent: 2 - - uid: 13666 + pos: 4.5,31.5 + parent: 16527 + - uid: 25300 components: - type: Transform - pos: 42.5,7.5 - parent: 2 - - uid: 13667 + pos: 5.5,31.5 + parent: 16527 + - uid: 25301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,28.5 - parent: 2 - - uid: 13668 + pos: 6.5,31.5 + parent: 16527 + - uid: 25302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,4.5 - parent: 2 - - uid: 13669 + pos: 6.5,30.5 + parent: 16527 + - uid: 25303 components: - type: Transform - pos: 40.5,6.5 - parent: 2 - - uid: 13670 + pos: 6.5,29.5 + parent: 16527 + - uid: 25304 components: - type: Transform - pos: 40.5,7.5 - parent: 2 - - uid: 13671 + pos: 6.5,28.5 + parent: 16527 + - uid: 25305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,8.5 - parent: 2 - - uid: 13672 + pos: 7.5,19.5 + parent: 16527 + - uid: 25306 components: - type: Transform - pos: 24.5,-6.5 - parent: 2 - - uid: 13673 + pos: 9.5,19.5 + parent: 16527 + - uid: 25307 components: - type: Transform - pos: 24.5,-7.5 - parent: 2 - - uid: 13674 + pos: 7.5,20.5 + parent: 16527 + - uid: 25308 components: - type: Transform - pos: 24.5,-8.5 - parent: 2 - - uid: 13675 + pos: 9.5,20.5 + parent: 16527 + - uid: 25309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,33.5 - parent: 2 - - uid: 13676 + pos: 7.5,22.5 + parent: 16527 + - uid: 25310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,25.5 - parent: 2 - - uid: 13677 + pos: 9.5,22.5 + parent: 16527 + - uid: 25311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,2.5 - parent: 2 - - uid: 13678 + pos: 7.5,23.5 + parent: 16527 + - uid: 25312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,2.5 - parent: 2 - - uid: 13679 + pos: 9.5,23.5 + parent: 16527 + - uid: 25313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,61.5 - parent: 2 - - uid: 13680 + pos: 7.5,25.5 + parent: 16527 + - uid: 25314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,66.5 - parent: 2 - - uid: 20160 + pos: 7.5,26.5 + parent: 16527 + - uid: 25315 components: - type: Transform - pos: 4.5,2.5 - parent: 16504 - - uid: 20161 + pos: 9.5,26.5 + parent: 16527 + - uid: 25316 components: - type: Transform - pos: 4.5,3.5 - parent: 16504 - - uid: 20162 + pos: 9.5,25.5 + parent: 16527 + - uid: 25317 components: - type: Transform - pos: 4.5,4.5 - parent: 16504 - - uid: 20163 + pos: 7.5,28.5 + parent: 16527 + - uid: 25318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,34.5 - parent: 16504 - - uid: 20164 + pos: 7.5,29.5 + parent: 16527 + - uid: 25319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,35.5 - parent: 16504 - - uid: 20165 + pos: 9.5,29.5 + parent: 16527 + - uid: 25320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,36.5 - parent: 16504 - - uid: 20166 + pos: 9.5,28.5 + parent: 16527 + - uid: 25321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,36.5 - parent: 16504 - - uid: 21566 + pos: 7.5,31.5 + parent: 16527 + - uid: 25322 components: - type: Transform - pos: 29.5,55.5 - parent: 2 - - uid: 21585 + pos: 7.5,32.5 + parent: 16527 + - uid: 25323 components: - type: Transform - pos: 26.5,55.5 - parent: 2 - - uid: 21592 + pos: 9.5,32.5 + parent: 16527 + - uid: 25324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,55.5 - parent: 2 - - uid: 21606 + pos: 9.5,31.5 + parent: 16527 + - uid: 25325 components: - type: Transform - pos: 28.5,55.5 - parent: 2 - - uid: 21607 + pos: 10.5,20.5 + parent: 16527 + - uid: 25326 components: - type: Transform - pos: 27.5,55.5 - parent: 2 - - uid: 21614 + pos: 10.5,21.5 + parent: 16527 + - uid: 25327 components: - type: Transform - pos: 30.5,53.5 - parent: 2 - - uid: 21615 + pos: 10.5,22.5 + parent: 16527 + - uid: 25328 components: - type: Transform - pos: 28.5,53.5 - parent: 2 - - uid: 21616 + pos: 10.5,23.5 + parent: 16527 + - uid: 25329 components: - type: Transform - pos: 29.5,53.5 - parent: 2 - - uid: 21617 + pos: 10.5,24.5 + parent: 16527 + - uid: 25330 components: - type: Transform - pos: 31.5,53.5 - parent: 2 - - uid: 22484 + pos: 10.5,25.5 + parent: 16527 + - uid: 25331 components: - type: Transform - pos: 61.5,31.5 - parent: 2 -- proto: TableReinforcedGlass - entities: - - uid: 3628 + pos: 10.5,26.5 + parent: 16527 + - uid: 25332 components: - type: Transform - pos: 35.5,47.5 - parent: 2 - - uid: 3634 + pos: 10.5,27.5 + parent: 16527 + - uid: 25333 components: - type: Transform - pos: 35.5,48.5 - parent: 2 - - uid: 7100 + pos: 10.5,28.5 + parent: 16527 + - uid: 25334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-8.5 - parent: 2 - - uid: 20167 + pos: 10.5,29.5 + parent: 16527 + - uid: 25335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 16504 - - uid: 20168 + pos: 10.5,30.5 + parent: 16527 + - uid: 25336 components: - type: Transform - pos: -3.5,8.5 - parent: 16504 - - uid: 21441 + pos: 10.5,31.5 + parent: 16527 + - uid: 25337 components: - type: Transform - pos: 35.5,49.5 - parent: 2 -- proto: TableStone - entities: - - uid: 408 + pos: 10.5,32.5 + parent: 16527 + - uid: 25338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,52.5 - parent: 2 - - uid: 13684 + pos: 10.5,33.5 + parent: 16527 + - uid: 25339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-10.5 - parent: 2 - - uid: 13685 + pos: 10.5,34.5 + parent: 16527 + - uid: 25340 components: - type: Transform - pos: 13.5,83.5 - parent: 2 -- proto: TableWood - entities: - - uid: 5225 + pos: -1.5,28.5 + parent: 16527 + - uid: 25341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,47.5 - parent: 2 - - uid: 5534 + pos: 2.5,24.5 + parent: 16527 + - uid: 25342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,47.5 - parent: 2 - - uid: 5940 + pos: -1.5,24.5 + parent: 16527 + - uid: 25343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,4.5 - parent: 2 - - uid: 6929 + pos: 2.5,28.5 + parent: 16527 + - uid: 25344 components: - type: Transform - pos: 38.5,-26.5 - parent: 2 - - uid: 6939 + pos: 3.5,26.5 + parent: 16527 + - uid: 25345 components: - type: Transform - pos: 39.5,-26.5 - parent: 2 - - uid: 10680 + pos: -2.5,26.5 + parent: 16527 + - uid: 25346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,53.5 - parent: 2 - - uid: 13686 + pos: -19.5,20.5 + parent: 16527 + - uid: 25347 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,21.5 - parent: 2 - - uid: 13687 + pos: 15.5,19.5 + parent: 16527 + - uid: 25348 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,21.5 - parent: 2 - - uid: 13688 + pos: 13.5,19.5 + parent: 16527 + - uid: 25349 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,20.5 - parent: 2 - - uid: 13689 + pos: 11.5,19.5 + parent: 16527 + - uid: 25350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,30.5 - parent: 2 - - uid: 13690 + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 16527 + - uid: 25351 components: - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 13691 + rot: 3.141592653589793 rad + pos: 12.5,19.5 + parent: 16527 + - uid: 25352 components: - type: Transform - pos: 20.5,19.5 - parent: 2 - - uid: 13692 + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 16527 + - uid: 25353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,22.5 - parent: 2 - - uid: 13693 + pos: -19.5,25.5 + parent: 16527 + - uid: 25354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,21.5 - parent: 2 - - uid: 13694 + pos: -19.5,19.5 + parent: 16527 + - uid: 25355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,22.5 - parent: 2 - - uid: 13695 + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 16527 + - uid: 25356 components: - type: Transform - pos: 17.5,6.5 - parent: 2 - - uid: 13696 + pos: 17.5,8.5 + parent: 16527 + - uid: 25357 components: - type: Transform - pos: 17.5,5.5 - parent: 2 - - uid: 13697 + rot: -1.5707963267948966 rad + pos: 17.5,-7.5 + parent: 16527 + - uid: 25358 components: - type: Transform - pos: 40.5,34.5 - parent: 2 - - uid: 13698 + rot: -1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 16527 + - uid: 25359 components: - type: Transform - pos: 40.5,35.5 - parent: 2 - - uid: 13699 + pos: 18.5,-1.5 + parent: 16527 + - uid: 25360 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,30.5 - parent: 2 - - uid: 13700 + pos: 17.5,9.5 + parent: 16527 + - uid: 25361 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,31.5 - parent: 2 - - uid: 13701 + pos: 16.5,9.5 + parent: 16527 + - uid: 25362 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,31.5 - parent: 2 - - uid: 13702 + pos: 22.5,11.5 + parent: 16527 + - uid: 25363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,20.5 - parent: 2 - - uid: 13707 + rot: -1.5707963267948966 rad + pos: 21.5,11.5 + parent: 16527 + - uid: 25364 components: - type: Transform - pos: 8.5,38.5 - parent: 2 - - uid: 13708 + rot: -1.5707963267948966 rad + pos: 20.5,11.5 + parent: 16527 + - uid: 25365 components: - type: Transform - pos: 7.5,38.5 - parent: 2 - - uid: 13709 + rot: -1.5707963267948966 rad + pos: 19.5,11.5 + parent: 16527 + - uid: 25366 components: - type: Transform - pos: 7.5,37.5 - parent: 2 - - uid: 13710 + rot: -1.5707963267948966 rad + pos: 18.5,11.5 + parent: 16527 + - uid: 25367 components: - type: Transform - pos: 5.5,38.5 - parent: 2 - - uid: 13711 + rot: -1.5707963267948966 rad + pos: 17.5,11.5 + parent: 16527 + - uid: 25368 components: - type: Transform - pos: 9.5,31.5 - parent: 2 - - uid: 13712 + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 16527 + - uid: 25369 components: - type: Transform - pos: 8.5,31.5 - parent: 2 - - uid: 13713 + rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 16527 + - uid: 25370 components: - type: Transform - pos: 7.5,31.5 - parent: 2 - - uid: 13714 + rot: 3.141592653589793 rad + pos: 18.5,13.5 + parent: 16527 + - uid: 25371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,60.5 - parent: 2 - - uid: 13715 + rot: 3.141592653589793 rad + pos: 18.5,14.5 + parent: 16527 + - uid: 25372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,33.5 - parent: 2 - - uid: 13716 + rot: 3.141592653589793 rad + pos: 18.5,15.5 + parent: 16527 + - uid: 25373 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,31.5 - parent: 2 - - uid: 13717 + pos: 19.5,14.5 + parent: 16527 + - uid: 25374 components: - type: Transform - pos: 59.5,56.5 - parent: 2 - - uid: 13718 + rot: 3.141592653589793 rad + pos: 18.5,17.5 + parent: 16527 + - uid: 25375 components: - type: Transform - pos: 59.5,59.5 - parent: 2 - - uid: 13719 + rot: 3.141592653589793 rad + pos: 18.5,18.5 + parent: 16527 + - uid: 25376 components: - type: Transform - pos: 59.5,58.5 - parent: 2 - - uid: 13720 + rot: 3.141592653589793 rad + pos: 18.5,19.5 + parent: 16527 + - uid: 25377 components: - type: Transform - pos: 62.5,57.5 - parent: 2 - - uid: 13721 + rot: 3.141592653589793 rad + pos: 18.5,20.5 + parent: 16527 + - uid: 25378 components: - type: Transform - pos: 63.5,57.5 - parent: 2 - - uid: 13722 + rot: 3.141592653589793 rad + pos: 18.5,21.5 + parent: 16527 + - uid: 25379 components: - type: Transform - pos: 62.5,62.5 - parent: 2 - - uid: 13723 + rot: 3.141592653589793 rad + pos: 18.5,22.5 + parent: 16527 + - uid: 25380 components: - type: Transform - pos: 60.5,61.5 - parent: 2 - - uid: 13724 + rot: 3.141592653589793 rad + pos: 18.5,23.5 + parent: 16527 + - uid: 25381 components: - type: Transform - pos: 59.5,61.5 - parent: 2 - - uid: 13725 + rot: 3.141592653589793 rad + pos: 18.5,24.5 + parent: 16527 + - uid: 25382 components: - type: Transform - pos: 7.5,22.5 - parent: 2 - - uid: 13726 + rot: 3.141592653589793 rad + pos: 18.5,25.5 + parent: 16527 + - uid: 25383 components: - type: Transform - pos: 7.5,21.5 - parent: 2 - - uid: 13727 + rot: 3.141592653589793 rad + pos: 18.5,26.5 + parent: 16527 + - uid: 25384 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,55.5 - parent: 2 - - uid: 13728 + pos: 18.5,27.5 + parent: 16527 + - uid: 25385 components: - type: Transform - pos: 76.5,42.5 - parent: 2 - - uid: 13729 + rot: 3.141592653589793 rad + pos: 18.5,28.5 + parent: 16527 + - uid: 25386 components: - type: Transform - pos: 76.5,41.5 - parent: 2 - - uid: 13730 + rot: 3.141592653589793 rad + pos: 18.5,29.5 + parent: 16527 + - uid: 25387 components: - type: Transform - pos: 77.5,41.5 - parent: 2 - - uid: 13731 + rot: 3.141592653589793 rad + pos: 17.5,29.5 + parent: 16527 + - uid: 25388 components: - type: Transform - pos: 78.5,41.5 - parent: 2 - - uid: 13732 + rot: 3.141592653589793 rad + pos: 16.5,29.5 + parent: 16527 + - uid: 25389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,10.5 - parent: 2 - - uid: 13733 + rot: 3.141592653589793 rad + pos: 15.5,29.5 + parent: 16527 + - uid: 25390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,9.5 - parent: 2 - - uid: 13877 + pos: 11.5,34.5 + parent: 16527 + - uid: 25391 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,47.5 - parent: 2 - - uid: 13936 + pos: 13.5,29.5 + parent: 16527 + - uid: 25392 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,47.5 - parent: 2 - - uid: 16184 + pos: 12.5,29.5 + parent: 16527 + - uid: 25393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,3.5 - parent: 2 - - uid: 20169 + rot: 3.141592653589793 rad + pos: 11.5,29.5 + parent: 16527 + - uid: 25394 components: - type: Transform - pos: -9.5,30.5 - parent: 16504 - - uid: 20170 + rot: 3.141592653589793 rad + pos: 11.5,25.5 + parent: 16527 + - uid: 25395 components: - type: Transform - pos: -8.5,30.5 - parent: 16504 - - uid: 20171 + rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 16527 + - uid: 25396 components: - type: Transform - pos: 30.5,16.5 - parent: 16504 - - uid: 20172 + rot: 3.141592653589793 rad + pos: 12.5,25.5 + parent: 16527 + - uid: 25397 components: - type: Transform - pos: 28.5,16.5 - parent: 16504 - - uid: 20173 + rot: 3.141592653589793 rad + pos: 13.5,21.5 + parent: 16527 + - uid: 25398 components: - type: Transform - pos: 27.5,16.5 - parent: 16504 - - uid: 20174 + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 16527 + - uid: 25399 components: - type: Transform - pos: 29.5,15.5 - parent: 16504 - - uid: 20175 + rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 16527 + - uid: 25400 components: - type: Transform - pos: 28.5,15.5 - parent: 16504 - - uid: 20176 + rot: 3.141592653589793 rad + pos: 15.5,25.5 + parent: 16527 + - uid: 25401 components: - type: Transform - pos: 29.5,16.5 - parent: 16504 - - uid: 20177 + rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 16527 + - uid: 25402 components: - type: Transform - pos: 28.5,17.5 - parent: 16504 - - uid: 20178 + rot: 3.141592653589793 rad + pos: 17.5,25.5 + parent: 16527 + - uid: 25403 components: - type: Transform - pos: 29.5,17.5 - parent: 16504 - - uid: 20179 + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 16527 + - uid: 25404 components: - type: Transform - pos: 18.5,-7.5 - parent: 16504 - - uid: 21403 + rot: 3.141592653589793 rad + pos: 15.5,26.5 + parent: 16527 + - uid: 25405 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,53.5 - parent: 2 -- proto: TargetClown - entities: - - uid: 20180 + pos: 13.5,22.5 + parent: 16527 + - uid: 25406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,34.5 - parent: 16504 - - uid: 20181 + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 16527 + - uid: 25407 components: - type: Transform - pos: 37.5,23.5 - parent: 16504 -- proto: TargetDarts - entities: - - uid: 20182 + rot: 3.141592653589793 rad + pos: 17.5,19.5 + parent: 16527 + - uid: 25408 components: - type: Transform - pos: 11.5,24.5 - parent: 16504 -- proto: TargetHuman - entities: - - uid: 20183 + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 16527 + - uid: 25409 components: - type: Transform - pos: 19.5,22.5 - parent: 16504 - - uid: 20184 + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 16527 + - uid: 25410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,34.5 - parent: 16504 - - uid: 20185 + pos: -23.5,24.5 + parent: 16527 + - uid: 25411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,32.5 - parent: 16504 - - uid: 20186 + rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 16527 + - uid: 25412 components: - type: Transform - pos: 23.5,30.5 - parent: 16504 - - uid: 20187 + pos: -26.5,24.5 + parent: 16527 + - uid: 25413 components: - type: Transform - pos: 36.5,23.5 - parent: 16504 - - uid: 20188 + pos: -27.5,27.5 + parent: 16527 + - uid: 25414 components: - type: Transform - pos: 35.5,23.5 - parent: 16504 - - uid: 20189 + pos: -27.5,26.5 + parent: 16527 + - uid: 25415 components: - type: Transform - pos: 20.5,26.5 - parent: 16504 - - uid: 20190 + pos: -22.5,27.5 + parent: 16527 + - uid: 25416 components: - type: Transform - pos: 19.5,28.5 - parent: 16504 - - uid: 20191 + pos: -22.5,26.5 + parent: 16527 + - uid: 25417 components: - type: Transform - pos: 21.5,29.5 - parent: 16504 - - uid: 20192 + pos: -22.5,25.5 + parent: 16527 + - uid: 25418 components: - type: Transform - pos: 21.5,20.5 - parent: 16504 - - uid: 20193 + pos: -27.5,25.5 + parent: 16527 + - uid: 25419 components: - type: Transform - pos: 19.5,24.5 - parent: 16504 -- proto: TargetStrange - entities: - - uid: 13734 + pos: -26.5,23.5 + parent: 16527 + - uid: 25420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-15.5 - parent: 2 - - uid: 20194 + pos: -23.5,23.5 + parent: 16527 + - uid: 25421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,33.5 - parent: 16504 -- proto: TargetSyndicate - entities: - - uid: 20195 + pos: -28.5,28.5 + parent: 16527 + - uid: 25422 components: - type: Transform - pos: 20.5,19.5 - parent: 16504 - - uid: 20196 + pos: -21.5,28.5 + parent: 16527 + - uid: 25423 components: - type: Transform - pos: 0.5,-7.5 - parent: 16504 -- proto: TearGasGrenade - entities: - - uid: 1066 + pos: -28.5,29.5 + parent: 16527 + - uid: 25424 components: - type: Transform - parent: 1057 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1067 + pos: -28.5,30.5 + parent: 16527 + - uid: 25425 components: - type: Transform - parent: 1057 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TechnologyDisk - entities: - - uid: 22006 + pos: -21.5,30.5 + parent: 16527 + - uid: 25426 components: - - type: MetaData - desc: Приготовьтесь к отрыву башки... - name: Сборник песен Серёги Дегенерата - type: Transform - pos: 7.0318546,28.292011 - parent: 2 -- proto: TegCenter - entities: - - uid: 21922 + pos: -27.5,31.5 + parent: 16527 + - uid: 25427 components: - - type: MetaData - name: E - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,86.5 - parent: 2 - - type: ApcPowerReceiver - powerDisabled: True -- proto: TegCirculator - entities: - - uid: 13736 + pos: -22.5,31.5 + parent: 16527 + - uid: 25428 components: - - type: MetaData - name: T - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,82.5 - parent: 2 - - type: PointLight - color: '#FF3300FF' - - uid: 13737 + rot: 1.5707963267948966 rad + pos: 22.5,18.5 + parent: 16527 + - uid: 25429 components: - - type: MetaData - name: G - type: Transform - pos: 52.5,82.5 - parent: 2 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServer - entities: - - uid: 7595 + pos: 10.5,17.5 + parent: 16527 + - uid: 25430 components: - type: Transform - pos: 81.5,18.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7596 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7597 + pos: 10.5,18.5 + parent: 16527 + - uid: 25431 components: - type: Transform - pos: 80.5,19.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7598 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7599 + pos: 10.5,13.5 + parent: 16527 + - uid: 25432 components: - type: Transform - pos: 77.5,15.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7600 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7601 + pos: 10.5,14.5 + parent: 16527 + - uid: 25433 components: - type: Transform - pos: 81.5,16.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7602 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7603 + pos: 10.5,15.5 + parent: 16527 + - uid: 25434 components: - type: Transform - pos: 77.5,18.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7604 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7605 + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 16527 + - uid: 25435 components: - type: Transform - pos: 77.5,19.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7606 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7607 + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 16527 + - uid: 25436 components: - type: Transform - pos: 77.5,16.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7608 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7609 + rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 16527 + - uid: 25437 components: - type: Transform - pos: 79.5,16.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7610 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7611 + rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 16527 + - uid: 25438 components: - type: Transform - pos: 79.5,18.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7612 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 19042 + pos: -19.5,37.5 + parent: 16527 + - uid: 25439 components: - type: Transform - pos: 11.5,-8.5 - parent: 16504 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 19043 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 19044 + pos: 32.5,21.5 + parent: 16527 + - uid: 25440 components: - type: Transform - pos: -5.5,-1.5 - parent: 16504 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 19045 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 20197 + pos: 22.5,19.5 + parent: 16527 + - uid: 25441 components: - type: Transform - pos: -12.5,-8.5 - parent: 16504 -- proto: TelecomServerCircuitboard - entities: - - uid: 13738 + pos: 25.5,21.5 + parent: 16527 + - uid: 25442 components: - type: Transform - pos: 75.589874,15.674126 - parent: 2 -- proto: TeslaGroundingRod - entities: - - uid: 20198 + rot: 1.5707963267948966 rad + pos: 31.5,21.5 + parent: 16527 + - uid: 25443 components: - type: Transform - pos: -12.5,34.5 - parent: 16504 -- proto: Thruster - entities: - - uid: 20199 + rot: 1.5707963267948966 rad + pos: 30.5,21.5 + parent: 16527 + - uid: 25444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,22.5 - parent: 16504 - - uid: 20200 + rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 16527 + - uid: 25445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,22.5 - parent: 16504 - - uid: 20201 + rot: 1.5707963267948966 rad + pos: 28.5,21.5 + parent: 16527 + - uid: 25446 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,27.5 - parent: 16504 -- proto: TintedWindow - entities: - - uid: 13742 + pos: 27.5,21.5 + parent: 16527 + - uid: 25447 components: - type: Transform - pos: 75.5,35.5 - parent: 2 - - uid: 13743 + rot: 1.5707963267948966 rad + pos: 26.5,21.5 + parent: 16527 + - uid: 25448 components: - type: Transform - pos: 76.5,35.5 - parent: 2 - - uid: 13744 + rot: 1.5707963267948966 rad + pos: 23.5,19.5 + parent: 16527 + - uid: 25449 components: - type: Transform - pos: 79.5,35.5 - parent: 2 - - uid: 13745 + pos: 24.5,12.5 + parent: 16527 + - uid: 25450 components: - type: Transform - pos: 78.5,35.5 - parent: 2 - - uid: 13746 + pos: 18.5,-5.5 + parent: 16527 + - uid: 25451 components: - type: Transform - pos: 82.5,35.5 - parent: 2 - - uid: 13747 + pos: 18.5,-6.5 + parent: 16527 + - uid: 25452 components: - type: Transform - pos: 81.5,35.5 - parent: 2 - - uid: 13748 + pos: 18.5,8.5 + parent: 16527 + - uid: 25453 components: - type: Transform - pos: 73.5,34.5 - parent: 2 - - uid: 13749 + pos: 19.5,8.5 + parent: 16527 + - uid: 25454 components: - type: Transform - pos: 83.5,27.5 - parent: 2 - - uid: 13750 + pos: 19.5,7.5 + parent: 16527 + - uid: 25455 components: - type: Transform - pos: 84.5,27.5 - parent: 2 -- proto: ToiletDirtyWater - entities: - - uid: 13751 + pos: 20.5,7.5 + parent: 16527 + - uid: 25456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 2 - - uid: 17731 + pos: 18.5,-2.5 + parent: 16527 + - uid: 25457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,20.5 - parent: 16504 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 17732 - disposals: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 20202 + pos: 20.5,6.5 + parent: 16527 + - uid: 25458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,20.5 - parent: 16504 -- proto: ToiletEmpty - entities: - - uid: 13752 + pos: 20.5,5.5 + parent: 16527 + - uid: 25459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,36.5 - parent: 2 -- proto: ToiletGoldenDirtyWater - entities: - - uid: 13753 + pos: 19.5,0.5 + parent: 16527 + - uid: 25460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 - parent: 2 -- proto: ToolboxElectricalFilled - entities: - - uid: 13754 + pos: 19.5,-0.5 + parent: 16527 + - uid: 25461 components: - type: Transform - pos: 42.7662,61.52349 - parent: 2 - - uid: 13755 + pos: 18.5,-0.5 + parent: 16527 + - uid: 25462 components: - type: Transform - pos: 68.49887,37.83966 - parent: 2 - - uid: 13756 + pos: 18.5,-3.5 + parent: 16527 + - uid: 25463 components: - type: Transform - pos: 53.576492,85.342896 - parent: 2 -- proto: ToolboxEmergency - entities: - - uid: 13757 + pos: 18.5,-4.5 + parent: 16527 + - uid: 25464 components: - type: Transform - pos: 21.45564,57.712902 - parent: 2 - - uid: 13758 + pos: 23.5,12.5 + parent: 16527 + - uid: 25465 components: - type: Transform - pos: 21.61464,57.517212 - parent: 2 - - uid: 17729 + pos: 22.5,13.5 + parent: 16527 + - uid: 25466 components: - type: Transform - pos: -7.453809,27.597425 - parent: 16504 - - type: Storage - storedItems: - 17730: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 17730 -- proto: ToolboxEmergencyFilled - entities: - - uid: 13759 + pos: 7.5,34.5 + parent: 16527 + - uid: 25467 components: - type: Transform - pos: 25.516691,30.796638 - parent: 2 - - uid: 13760 + pos: 9.5,34.5 + parent: 16527 + - uid: 25468 components: - type: Transform - pos: 67.50819,41.582222 - parent: 2 - - uid: 13761 + rot: 3.141592653589793 rad + pos: -4.5,39.5 + parent: 16527 + - uid: 25469 components: - type: Transform - pos: 4.6208367,23.109694 - parent: 2 - - uid: 13762 + rot: 3.141592653589793 rad + pos: 5.5,39.5 + parent: 16527 + - uid: 25470 components: - type: Transform - pos: 4.4740696,22.852852 - parent: 2 - - uid: 13763 + rot: 3.141592653589793 rad + pos: -5.5,33.5 + parent: 16527 + - uid: 25471 components: - type: Transform - pos: 0.49746752,11.417831 - parent: 2 -- proto: ToolboxMechanicalFilled - entities: - - uid: 13764 + rot: 3.141592653589793 rad + pos: -5.5,32.5 + parent: 16527 + - uid: 25472 components: - type: Transform - pos: 41.60995,61.96099 - parent: 2 - - uid: 13765 + rot: 3.141592653589793 rad + pos: -2.5,39.5 + parent: 16527 + - uid: 25473 components: - type: Transform - pos: 20.482819,9.663286 - parent: 2 - - uid: 13766 + rot: 3.141592653589793 rad + pos: -3.5,39.5 + parent: 16527 + - uid: 25474 components: - type: Transform - pos: 33.66368,17.528824 - parent: 2 - - uid: 13767 + rot: 3.141592653589793 rad + pos: 3.5,39.5 + parent: 16527 + - uid: 25475 components: - type: Transform - pos: 68.51721,37.564472 - parent: 2 -- proto: ToolboxSyndicateFilled - entities: - - uid: 22095 + rot: 3.141592653589793 rad + pos: -1.5,39.5 + parent: 16527 + - uid: 25476 components: - type: Transform - pos: -12.443481,-6.641393 - parent: 16504 -- proto: Torch - entities: - - uid: 4072 + rot: 3.141592653589793 rad + pos: 4.5,39.5 + parent: 16527 + - uid: 25477 components: - type: Transform - pos: 39.671326,-27.144419 - parent: 2 - - uid: 21445 + rot: 3.141592653589793 rad + pos: 2.5,39.5 + parent: 16527 + - uid: 25478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.657436,-26.574974 - parent: 2 - - uid: 21960 + rot: 3.141592653589793 rad + pos: 6.5,39.5 + parent: 16527 + - uid: 25479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.754658,-27.50553 - parent: 2 -- proto: TorsoBorgJanitor - entities: - - uid: 20203 + rot: 3.141592653589793 rad + pos: 7.5,39.5 + parent: 16527 + - uid: 25480 components: - type: Transform - pos: 19.54964,13.526009 - parent: 16504 -- proto: ToyFigurineEngineer - entities: - - uid: 13769 + pos: -19.5,38.5 + parent: 16527 + - uid: 25481 components: - type: Transform - pos: 7.7734017,31.82122 - parent: 2 -- proto: ToyFigurineFootsoldier - entities: - - uid: 20204 + pos: -18.5,39.5 + parent: 16527 + - uid: 25482 components: - type: Transform - pos: 4.40917,2.6694627 - parent: 16504 -- proto: ToyFigurineGreytider - entities: - - uid: 13770 + pos: -16.5,39.5 + parent: 16527 + - uid: 25483 components: - type: Transform - pos: 33.479034,-10.500564 - parent: 2 -- proto: ToyFigurineMouse - entities: - - uid: 13771 + pos: -10.5,39.5 + parent: 16527 + - uid: 25484 components: - type: Transform - pos: 7.571597,31.674454 - parent: 2 -- proto: ToyFigurineNukieElite - entities: - - uid: 20205 + pos: -9.5,39.5 + parent: 16527 + - uid: 25485 components: - type: Transform - pos: 15.316927,33.65895 - parent: 16504 -- proto: ToyFigurineSpaceDragon - entities: - - uid: 13772 + pos: -8.5,39.5 + parent: 16527 + - uid: 25486 components: - - type: MetaData - desc: Фигурка космического дракона, в таком виде он выглядит на удивление дружелюбным. На макушке находится ленточка. Похоже, это подарок кому-то. - name: фигурка дракона - type: Transform - pos: 24.400814,-4.1974635 - parent: 2 -- proto: ToyFireRipley - entities: - - uid: 20206 + pos: -7.5,39.5 + parent: 16527 + - uid: 25487 components: - type: Transform - pos: -18.49573,19.70897 - parent: 16504 -- proto: ToyMouse - entities: - - uid: 13773 + pos: -6.5,39.5 + parent: 16527 + - uid: 25488 components: - type: Transform - pos: 85.56179,60.664375 - parent: 2 -- proto: ToyNuke - entities: - - uid: 13774 + rot: 3.141592653589793 rad + pos: -4.5,36.5 + parent: 16527 + - uid: 25489 components: - type: Transform - pos: 65.646164,64.54434 - parent: 2 -- proto: ToyRubberDuck - entities: - - uid: 13775 + rot: 3.141592653589793 rad + pos: -3.5,36.5 + parent: 16527 + - uid: 25490 components: - type: Transform - pos: 22.479702,22.299757 - parent: 2 -- proto: ToySpawner - entities: - - uid: 13199 + rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 16527 + - uid: 25491 components: - type: Transform - pos: 24.5,51.5 - parent: 2 - - uid: 13776 + rot: 3.141592653589793 rad + pos: -0.5,36.5 + parent: 16527 + - uid: 25492 components: - type: Transform - pos: 87.5,15.5 - parent: 2 -- proto: ToySword - entities: - - uid: 13508 + rot: 3.141592653589793 rad + pos: 0.5,36.5 + parent: 16527 + - uid: 25493 components: - type: Transform - pos: 23.71894,64.696075 - parent: 2 -- proto: TrackingImplanter - entities: - - uid: 13778 + rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 16527 + - uid: 25494 components: - type: Transform - pos: 61.551952,20.446688 - parent: 2 -- proto: TrashBananaPeel - entities: - - uid: 13779 + rot: 3.141592653589793 rad + pos: 3.5,36.5 + parent: 16527 + - uid: 25495 components: - type: Transform - pos: 53.440598,37.431225 - parent: 2 - - uid: 13780 + rot: 3.141592653589793 rad + pos: 4.5,36.5 + parent: 16527 + - uid: 25496 components: - type: Transform - pos: 53.440598,37.431225 - parent: 2 - - uid: 13781 + rot: 3.141592653589793 rad + pos: 5.5,36.5 + parent: 16527 + - uid: 25497 components: - type: Transform - pos: 50.628098,35.59602 - parent: 2 - - uid: 13782 + rot: 3.141592653589793 rad + pos: 6.5,36.5 + parent: 16527 + - uid: 25498 components: - type: Transform - pos: 56.132828,40.506115 - parent: 2 - - uid: 13783 + pos: 18.5,36.5 + parent: 16527 + - uid: 25499 components: - type: Transform - pos: 53.47692,38.50283 - parent: 2 - - uid: 13784 + pos: 18.5,35.5 + parent: 16527 + - uid: 25500 components: - type: Transform - pos: 58.39883,39.32306 - parent: 2 - - uid: 20207 + pos: 18.5,34.5 + parent: 16527 + - uid: 25501 components: - type: Transform - pos: 14.514723,30.019087 - parent: 16504 -- proto: trayScanner - entities: - - uid: 20208 + pos: 18.5,33.5 + parent: 16527 + - uid: 25502 components: - type: Transform - pos: 26.644728,23.386297 - parent: 16504 -- proto: Truncheon - entities: - - uid: 10988 + pos: 18.5,32.5 + parent: 16527 + - uid: 25503 components: - type: Transform - parent: 10982 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10989 + pos: 18.5,31.5 + parent: 16527 + - uid: 25504 components: - type: Transform - parent: 10982 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10990 + pos: 18.5,30.5 + parent: 16527 + - uid: 25505 components: - type: Transform - parent: 10982 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10991 + pos: 12.5,34.5 + parent: 16527 + - uid: 25506 components: - type: Transform - parent: 10982 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10992 + pos: 12.5,35.5 + parent: 16527 + - uid: 25507 components: - type: Transform - parent: 10982 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TwoWayLever - entities: - - uid: 13785 + pos: 12.5,36.5 + parent: 16527 + - uid: 25508 components: - type: Transform - pos: 1.5,7.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6550: - - Left: Forward - - Right: Reverse - - Middle: Off - 6544: - - Left: Forward - - Right: Reverse - - Middle: Off - 6545: - - Left: Forward - - Right: Reverse - - Middle: Off - 6546: - - Left: Forward - - Right: Reverse - - Middle: Off - 6542: - - Left: Forward - - Right: Reverse - - Middle: Off - 6549: - - Left: Forward - - Right: Reverse - - Middle: Off - 6548: - - Left: Forward - - Right: Reverse - - Middle: Off - 6547: - - Left: Forward - - Right: Reverse - - Middle: Off - 989: - - Left: Open - - Right: Open - - Middle: Close - 988: - - Left: Open - - Right: Open - - Middle: Close - - uid: 13786 + pos: 12.5,37.5 + parent: 16527 + - uid: 25509 components: - type: Transform - pos: 0.5,21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12348: - - Left: Forward - - Right: Reverse - - Middle: Off - 6543: - - Left: Forward - - Right: Reverse - - Middle: Off - 6552: - - Left: Forward - - Right: Reverse - - Middle: Off - 6551: - - Left: Forward - - Right: Reverse - - Middle: Off - 6556: - - Left: Forward - - Right: Reverse - - Middle: Off - 6557: - - Left: Forward - - Right: Reverse - - Middle: Off - 6553: - - Left: Forward - - Right: Reverse - - Middle: Off - 6554: - - Left: Forward - - Right: Reverse - - Middle: Off - 6555: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 20209 + pos: 21.5,18.5 + parent: 16527 + - uid: 25510 components: - type: Transform - pos: -13.5,11.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 18873: - - Left: Forward - - Right: Reverse - - Middle: Off - 18872: - - Left: Forward - - Right: Reverse - - Middle: Off - 18871: - - Left: Forward - - Right: Reverse - - Middle: Off - 18870: - - Left: Forward - - Right: Reverse - - Middle: Off - 18869: - - Left: Forward - - Right: Reverse - - Middle: Off - 18868: - - Left: Forward - - Right: Reverse - - Middle: Off - 18867: - - Left: Forward - - Right: Reverse - - Middle: Off - 18866: - - Left: Forward - - Right: Reverse - - Middle: Off - 18865: - - Left: Forward - - Right: Reverse - - Middle: Off - 18864: - - Left: Forward - - Right: Reverse - - Middle: Off - 19824: - - Left: Forward - - Right: Reverse - - Middle: Off - 18863: - - Left: Forward - - Right: Reverse - - Middle: Off - 18862: - - Left: Forward - - Right: Reverse - - Middle: Off - 18861: - - Left: Forward - - Right: Reverse - - Middle: Off - 18860: - - Left: Forward - - Right: Reverse - - Middle: Off - 18859: - - Left: Forward - - Right: Reverse - - Middle: Off - 18858: - - Left: Forward - - Right: Reverse - - Middle: Off - 18857: - - Left: Forward - - Right: Reverse - - Middle: Off - 18856: - - Left: Forward - - Right: Reverse - - Middle: Off - 18854: - - Left: Forward - - Right: Reverse - - Middle: Off - 18855: - - Left: Forward - - Right: Reverse - - Middle: Off - 18853: - - Left: Forward - - Right: Reverse - - Middle: Off - 18852: - - Left: Forward - - Right: Reverse - - Middle: Off - 19825: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UnfinishedMachineFrame - entities: - - uid: 13787 + pos: 19.5,18.5 + parent: 16527 + - uid: 25511 components: - type: Transform - pos: 51.5,61.5 - parent: 2 - - uid: 13788 + pos: 22.5,23.5 + parent: 16527 + - uid: 25512 components: - type: Transform - pos: 20.5,-16.5 - parent: 2 - - uid: 20211 + pos: 22.5,24.5 + parent: 16527 + - uid: 25513 components: - type: Transform - pos: -4.5,-5.5 - parent: 16504 -- proto: UniformPrinter - entities: - - uid: 13789 + pos: 22.5,25.5 + parent: 16527 + - uid: 25514 components: - type: Transform - pos: 17.5,19.5 - parent: 2 -- proto: UniformShortsRed - entities: - - uid: 11200 + pos: 25.5,22.5 + parent: 16527 + - uid: 25515 components: - type: Transform - pos: 0.7616036,30.60181 - parent: 2 - - uid: 16095 + pos: 26.5,22.5 + parent: 16527 + - uid: 25516 components: - type: Transform - pos: 0.7616036,30.35181 - parent: 2 -- proto: UniformShortsRedWithTop - entities: - - uid: 6608 + pos: 27.5,22.5 + parent: 16527 + - uid: 25517 components: - type: Transform - pos: 0.2928536,30.53931 - parent: 2 - - uid: 15430 + pos: 28.5,22.5 + parent: 16527 + - uid: 25518 components: - type: Transform - pos: 0.2459786,30.57056 - parent: 2 -- proto: UprightPianoInstrument - entities: - - uid: 6924 + pos: 29.5,22.5 + parent: 16527 + - uid: 25519 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,42.5 - parent: 2 - - uid: 13790 + pos: 30.5,22.5 + parent: 16527 + - uid: 25520 components: - type: Transform - pos: 32.5,60.5 - parent: 2 -- proto: UraniumOre1 - entities: - - uid: 13791 + pos: 31.5,22.5 + parent: 16527 + - uid: 25521 components: - type: Transform - pos: 60.641685,82.50011 - parent: 2 -- proto: Vaccinator - entities: - - uid: 13792 + pos: 32.5,22.5 + parent: 16527 + - uid: 25522 components: - type: Transform - pos: 57.5,-5.5 - parent: 2 -- proto: VariantCubeBox - entities: - - uid: 13793 + pos: 22.5,29.5 + parent: 16527 + - uid: 25523 + components: + - type: Transform + pos: 22.5,28.5 + parent: 16527 + - uid: 25524 components: - type: Transform - pos: 24.521978,-11.337398 - parent: 2 -- proto: VendingBarDrobe - entities: - - uid: 13201 + pos: 22.5,27.5 + parent: 16527 + - uid: 25525 components: - type: Transform - pos: 16.5,55.5 - parent: 2 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 13794 + pos: 24.5,50.5 + parent: 16527 + - uid: 25526 components: - type: Transform - pos: 44.5,71.5 - parent: 2 -- proto: VendingMachineBooze - entities: - - uid: 2344 + pos: 19.5,30.5 + parent: 16527 + - uid: 25527 components: - type: Transform - pos: 18.5,55.5 - parent: 2 - - uid: 13795 + pos: 21.5,30.5 + parent: 16527 + - uid: 25528 components: - type: Transform - pos: 26.5,22.5 - parent: 2 - - uid: 13796 + pos: 22.5,30.5 + parent: 16527 + - uid: 25529 components: - type: Transform - pos: 33.5,60.5 - parent: 2 - - uid: 16186 + pos: 22.5,31.5 + parent: 16527 + - uid: 25530 components: - type: Transform - pos: 77.5,2.5 - parent: 2 - missingComponents: - - AccessReader -- proto: VendingMachineBoozeSyndicate - entities: - - uid: 19845 + pos: 23.5,35.5 + parent: 16527 + - uid: 25531 components: - type: Transform - pos: 12.5,68.5 - parent: 2 -- proto: VendingMachineCargoDrobe - entities: - - uid: 13797 + pos: 24.5,35.5 + parent: 16527 + - uid: 25532 components: - type: Transform - pos: 3.5,9.5 - parent: 2 -- proto: VendingMachineCart - entities: - - uid: 13798 + rot: 3.141592653589793 rad + pos: -2.5,45.5 + parent: 16527 + - uid: 25533 components: - type: Transform - pos: 18.5,22.5 - parent: 2 -- proto: VendingMachineChang - entities: - - uid: 13799 + rot: 3.141592653589793 rad + pos: -2.5,40.5 + parent: 16527 + - uid: 25534 components: - type: Transform - pos: 12.5,66.5 - parent: 2 - - uid: 13800 + rot: 3.141592653589793 rad + pos: -2.5,41.5 + parent: 16527 + - uid: 25535 components: - type: Transform - pos: 15.5,77.5 - parent: 2 - - uid: 13801 + rot: 3.141592653589793 rad + pos: -2.5,42.5 + parent: 16527 + - uid: 25536 components: - type: Transform - pos: 90.5,24.5 - parent: 2 -- proto: VendingMachineChapel - entities: - - uid: 13802 + rot: 3.141592653589793 rad + pos: -2.5,43.5 + parent: 16527 + - uid: 25537 components: - type: Transform - pos: 80.5,26.5 - parent: 2 -- proto: VendingMachineChefDrobe - entities: - - uid: 21548 + rot: 3.141592653589793 rad + pos: -2.5,44.5 + parent: 16527 + - uid: 25538 components: - type: Transform - pos: 33.5,58.5 - parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 21565 + pos: 25.5,56.5 + parent: 16527 + - uid: 25539 components: - type: Transform - pos: 32.5,58.5 - parent: 2 -- proto: VendingMachineChemDrobe - entities: - - uid: 13804 + rot: 3.141592653589793 rad + pos: 3.5,40.5 + parent: 16527 + - uid: 25540 components: - type: Transform - pos: 44.5,10.5 - parent: 2 -- proto: VendingMachineChemicals - entities: - - uid: 13805 + pos: -6.5,38.5 + parent: 16527 + - uid: 25541 components: - type: Transform - pos: 40.5,8.5 - parent: 2 -- proto: VendingMachineChemicalsSyndicate - entities: - - uid: 20212 + pos: -6.5,37.5 + parent: 16527 + - uid: 25542 components: - type: Transform - pos: 11.5,35.5 - parent: 16504 -- proto: VendingMachineCigs - entities: - - uid: 13806 + pos: -16.5,52.5 + parent: 16527 + - uid: 25543 components: - type: Transform - pos: 18.5,26.5 - parent: 2 - - uid: 13807 + pos: -2.5,49.5 + parent: 16527 + - uid: 25544 components: - type: Transform - pos: 6.5,31.5 - parent: 2 - - uid: 13808 + pos: -2.5,48.5 + parent: 16527 + - uid: 25545 components: - type: Transform - pos: 12.5,67.5 - parent: 2 - - uid: 20213 + pos: -2.5,51.5 + parent: 16527 + - uid: 25546 components: - type: Transform - pos: -1.5,32.5 - parent: 16504 - - uid: 21287 + pos: -2.5,52.5 + parent: 16527 + - uid: 25547 components: - type: Transform - pos: 31.5,41.5 - parent: 2 -- proto: VendingMachineClothing - entities: - - uid: 13810 + pos: -2.5,53.5 + parent: 16527 + - uid: 25548 components: - type: Transform - pos: 9.5,34.5 - parent: 2 -- proto: VendingMachineCoffee - entities: - - uid: 13811 + pos: -1.5,53.5 + parent: 16527 + - uid: 25549 components: - type: Transform - pos: 43.5,24.5 - parent: 2 - - uid: 13812 + pos: 0.5,53.5 + parent: 16527 + - uid: 25550 components: - type: Transform - pos: 15.5,16.5 - parent: 2 - - uid: 13813 + pos: 2.5,53.5 + parent: 16527 + - uid: 25551 components: - type: Transform - pos: 30.5,26.5 - parent: 2 - - uid: 20214 + pos: 3.5,53.5 + parent: 16527 + - uid: 25552 components: - type: Transform - pos: 35.5,17.5 - parent: 16504 -- proto: VendingMachineCola - entities: - - uid: 20215 + pos: 3.5,52.5 + parent: 16527 + - uid: 25553 components: - type: Transform - pos: -3.5,-3.5 - parent: 16504 -- proto: VendingMachineColaBlack - entities: - - uid: 20216 + pos: 3.5,51.5 + parent: 16527 + - uid: 25554 components: - type: Transform - pos: 9.5,6.5 - parent: 16504 -- proto: VendingMachineCondiments - entities: - - uid: 21605 + pos: 3.5,49.5 + parent: 16527 + - uid: 25555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,55.5 - parent: 2 -- proto: VendingMachineCuraDrobe - entities: - - uid: 13814 + pos: 3.5,48.5 + parent: 16527 + - uid: 25556 components: - type: Transform - pos: 60.5,62.5 - parent: 2 -- proto: VendingMachineDetDrobe - entities: - - uid: 13815 + pos: -3.5,47.5 + parent: 16527 + - uid: 25557 components: - type: Transform - pos: 43.5,34.5 - parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 21622 + pos: -4.5,47.5 + parent: 16527 + - uid: 25558 components: - type: Transform - pos: 33.5,54.5 - parent: 2 -- proto: VendingMachineDiscount - entities: - - uid: 20217 + pos: -8.5,53.5 + parent: 16527 + - uid: 25559 components: - type: Transform - pos: 4.5,-3.5 - parent: 16504 -- proto: VendingMachineDonut - entities: - - uid: 13817 + pos: -5.5,47.5 + parent: 16527 + - uid: 25560 components: - type: Transform - pos: 44.5,24.5 - parent: 2 -- proto: VendingMachineEngiDrobe - entities: - - uid: 13818 + pos: -6.5,47.5 + parent: 16527 + - uid: 25561 components: - type: Transform - pos: 40.5,59.5 - parent: 2 -- proto: VendingMachineEngivend - entities: - - uid: 13819 + pos: -15.5,51.5 + parent: 16527 + - uid: 25562 components: - type: Transform - pos: 45.5,59.5 - parent: 2 - - uid: 13820 + pos: -3.5,53.5 + parent: 16527 + - uid: 25563 components: - type: Transform - pos: 28.5,18.5 - parent: 2 -- proto: VendingMachineGames - entities: - - uid: 13821 + pos: -4.5,53.5 + parent: 16527 + - uid: 25564 components: - type: Transform - pos: 62.5,61.5 - parent: 2 -- proto: VendingMachineHydrobe - entities: - - uid: 15695 + pos: -5.5,53.5 + parent: 16527 + - uid: 25565 components: - type: Transform - pos: 40.5,54.5 - parent: 2 -- proto: VendingMachineJaniDrobe - entities: - - uid: 13822 + pos: -6.5,53.5 + parent: 16527 + - uid: 25566 components: - type: Transform - pos: 68.5,49.5 - parent: 2 - - uid: 20218 + pos: -7.5,53.5 + parent: 16527 + - uid: 25567 components: - type: Transform - pos: 22.5,12.5 - parent: 16504 -- proto: VendingMachineLawDrobe - entities: - - uid: 13823 + pos: -8.5,52.5 + parent: 16527 + - uid: 25568 components: - type: Transform - pos: 9.5,20.5 - parent: 2 -- proto: VendingMachineMagivend - entities: - - uid: 22317 + pos: -15.5,52.5 + parent: 16527 + - uid: 25569 components: - type: Transform - pos: 24.5,40.5 - parent: 2 -- proto: VendingMachineMedical - entities: - - uid: 13825 + pos: -14.5,52.5 + parent: 16527 + - uid: 25570 components: - type: Transform - pos: 37.5,-2.5 - parent: 2 - - uid: 13826 + pos: -13.5,52.5 + parent: 16527 + - uid: 25571 components: - type: Transform - pos: 60.5,24.5 - parent: 2 - - uid: 13827 + pos: -22.5,52.5 + parent: 16527 + - uid: 25572 components: - type: Transform - pos: 54.5,-2.5 - parent: 2 - - uid: 13828 + pos: -11.5,52.5 + parent: 16527 + - uid: 25573 components: - type: Transform - pos: 60.5,4.5 - parent: 2 -- proto: VendingMachineMediDrobe - entities: - - uid: 13829 + pos: -10.5,52.5 + parent: 16527 + - uid: 25574 components: - type: Transform - pos: 60.5,1.5 - parent: 2 -- proto: VendingMachineNutri - entities: - - uid: 13095 + pos: -9.5,52.5 + parent: 16527 + - uid: 25575 components: - type: Transform - pos: 40.5,51.5 - parent: 2 -- proto: VendingMachineRestockBooze - entities: - - uid: 20219 + pos: -16.5,51.5 + parent: 16527 + - uid: 25576 components: - type: Transform - pos: -18.511293,18.581635 - parent: 16504 -- proto: VendingMachineRestockChemVend - entities: - - uid: 13830 + pos: -17.5,51.5 + parent: 16527 + - uid: 25577 components: - type: Transform - pos: 36.470142,-13.439813 - parent: 2 -- proto: VendingMachineRestockDonut - entities: - - uid: 13831 + pos: -18.5,51.5 + parent: 16527 + - uid: 25578 components: - type: Transform - pos: 15.490019,73.41495 - parent: 2 -- proto: VendingMachineRoboDrobe - entities: - - uid: 13832 + pos: -20.5,51.5 + parent: 16527 + - uid: 25579 components: - type: Transform - pos: 30.5,0.5 - parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 13833 + pos: -21.5,51.5 + parent: 16527 + - uid: 25580 components: - type: Transform - pos: 26.5,0.5 - parent: 2 -- proto: VendingMachineSalvage - entities: - - uid: 13834 + pos: -22.5,51.5 + parent: 16527 + - uid: 25581 components: - type: Transform - pos: 2.5,14.5 - parent: 2 - - uid: 20220 + pos: -22.5,53.5 + parent: 16527 + - uid: 25582 components: - type: Transform - pos: -2.5,38.5 - parent: 16504 - - uid: 20221 + pos: -22.5,54.5 + parent: 16527 + - uid: 25583 components: - type: Transform - pos: 3.5,38.5 - parent: 16504 -- proto: VendingMachineSciDrobe - entities: - - uid: 13835 + pos: -22.5,55.5 + parent: 16527 + - uid: 25584 components: - type: Transform - pos: 20.5,-4.5 - parent: 2 -- proto: VendingMachineSec - entities: - - uid: 13836 + pos: -22.5,56.5 + parent: 16527 + - uid: 25585 components: - type: Transform - pos: 58.5,30.5 - parent: 2 - - uid: 13837 + pos: -16.5,56.5 + parent: 16527 + - uid: 25586 components: - type: Transform - pos: 54.5,16.5 - parent: 2 -- proto: VendingMachineSecDrobe - entities: - - uid: 13838 + pos: -16.5,55.5 + parent: 16527 + - uid: 25587 components: - type: Transform - pos: 55.5,16.5 - parent: 2 -- proto: VendingMachineSeeds - entities: - - uid: 21582 + pos: -16.5,54.5 + parent: 16527 + - uid: 25588 components: - type: Transform - pos: 37.5,51.5 - parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 13839 + pos: -16.5,53.5 + parent: 16527 + - uid: 25589 components: - type: Transform - pos: 58.5,41.5 - parent: 2 - - uid: 13840 + pos: -8.5,54.5 + parent: 16527 + - uid: 25590 components: - type: Transform - pos: 66.5,30.5 - parent: 2 -- proto: VendingMachineSnackOrange - entities: - - uid: 13841 + pos: -8.5,55.5 + parent: 16527 + - uid: 25591 components: - type: Transform - pos: 93.5,15.5 - parent: 2 -- proto: VendingMachineSoda - entities: - - uid: 13842 + pos: -8.5,56.5 + parent: 16527 + - uid: 25592 components: - type: Transform - pos: 89.5,24.5 - parent: 2 -- proto: VendingMachineSovietSoda - entities: - - uid: 13843 + pos: -8.5,57.5 + parent: 16527 + - uid: 25593 components: - type: Transform - pos: 15.5,76.5 - parent: 2 -- proto: VendingMachineSustenance - entities: - - uid: 13844 + pos: -8.5,58.5 + parent: 16527 + - uid: 25594 components: - type: Transform - pos: 58.5,24.5 - parent: 2 - - uid: 13845 + pos: -8.5,59.5 + parent: 16527 + - uid: 25595 components: - type: Transform - pos: 45.5,35.5 - parent: 2 - - uid: 13846 + pos: -8.5,60.5 + parent: 16527 + - uid: 25596 components: - type: Transform - pos: 84.5,8.5 - parent: 2 -- proto: VendingMachineSyndieDrobe - entities: - - uid: 20222 + pos: -9.5,60.5 + parent: 16527 + - uid: 25597 components: - type: Transform - pos: 10.5,-2.5 - parent: 16504 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 13848 + pos: -10.5,60.5 + parent: 16527 + - uid: 25598 components: - type: Transform - pos: 54.5,72.5 - parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 13849 + pos: -11.5,60.5 + parent: 16527 + - uid: 25599 components: - type: Transform - pos: 46.5,71.5 - parent: 2 - - uid: 13850 + pos: -12.5,60.5 + parent: 16527 + - uid: 25600 components: - type: Transform - pos: 50.5,57.5 - parent: 2 - - uid: 13851 + pos: -13.5,60.5 + parent: 16527 + - uid: 25601 components: - type: Transform - pos: 58.5,28.5 - parent: 2 - - uid: 20223 + pos: -14.5,60.5 + parent: 16527 + - uid: 25602 components: - type: Transform - pos: -22.5,30.5 - parent: 16504 -- proto: VendingMachineTheater - entities: - - uid: 21393 + pos: -15.5,60.5 + parent: 16527 + - uid: 25603 components: - type: Transform - pos: 26.5,41.5 - parent: 2 -- proto: VendingMachineVendomat - entities: - - uid: 13852 + rot: 3.141592653589793 rad + pos: 11.5,49.5 + parent: 16527 + - uid: 25604 components: - type: Transform - pos: 66.5,41.5 - parent: 2 - - uid: 16452 + pos: -22.5,50.5 + parent: 16527 + - uid: 25605 components: - type: Transform - pos: 23.5,-44.5 - parent: 2 -- proto: VendingMachineViroDrobe - entities: - - uid: 13853 + pos: -22.5,48.5 + parent: 16527 + - uid: 25606 components: - type: Transform - pos: 54.5,-5.5 - parent: 2 -- proto: VendingMachineWinter - entities: - - uid: 13854 + pos: -22.5,46.5 + parent: 16527 + - uid: 25607 components: - type: Transform - pos: 6.5,34.5 - parent: 2 -- proto: VendingMachineYouTool - entities: - - uid: 13855 + pos: 11.5,47.5 + parent: 16527 + - uid: 25608 components: - type: Transform - pos: 33.5,16.5 - parent: 2 - - uid: 13856 + rot: 3.141592653589793 rad + pos: 13.5,47.5 + parent: 16527 + - uid: 25609 components: - type: Transform - pos: 68.5,41.5 - parent: 2 - - uid: 13857 + rot: 3.141592653589793 rad + pos: 13.5,53.5 + parent: 16527 + - uid: 25610 components: - type: Transform - pos: 44.5,59.5 - parent: 2 -- proto: WallCult - entities: - - uid: 13858 + pos: -2.5,59.5 + parent: 16527 + - uid: 25611 components: - type: Transform - pos: 24.5,59.5 - parent: 2 - - uid: 13860 + pos: -2.5,58.5 + parent: 16527 + - uid: 25612 components: - type: Transform - pos: 24.5,57.5 - parent: 2 -- proto: WallmountTelescreen - entities: - - uid: 13861 + pos: -2.5,54.5 + parent: 16527 + - uid: 25613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,35.5 - parent: 2 -- proto: WallmountTelescreenFrame - entities: - - uid: 20224 + pos: 3.5,58.5 + parent: 16527 + - uid: 25614 components: - type: Transform - pos: -17.5,4.5 - parent: 16504 - - uid: 20225 + pos: 3.5,54.5 + parent: 16527 + - uid: 25615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 16504 -- proto: WallmountTelevision - entities: - - uid: 13862 + pos: 3.5,55.5 + parent: 16527 + - uid: 25616 components: - type: Transform - pos: 17.5,15.5 - parent: 2 - - uid: 13863 + pos: 3.5,56.5 + parent: 16527 + - uid: 25617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-0.5 - parent: 2 - - uid: 13864 + pos: 3.5,57.5 + parent: 16527 + - uid: 25618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-3.5 - parent: 2 - - uid: 13865 + pos: -3.5,59.5 + parent: 16527 + - uid: 25619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,47.5 - parent: 2 - - uid: 13866 + pos: -4.5,59.5 + parent: 16527 + - uid: 25620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-3.5 - parent: 2 - - uid: 13867 + pos: -5.5,59.5 + parent: 16527 + - uid: 25621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,19.5 - parent: 2 - - uid: 13868 + pos: -7.5,59.5 + parent: 16527 + - uid: 25622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 2 - - uid: 13869 + pos: 3.5,59.5 + parent: 16527 + - uid: 25623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,21.5 - parent: 2 -- proto: WallmountTelevisionFrame - entities: - - uid: 13870 + pos: 0.5,59.5 + parent: 16527 + - uid: 25624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,72.5 - parent: 2 - - uid: 20226 + pos: 2.5,59.5 + parent: 16527 + - uid: 25625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 16504 -- proto: WallPlastitanium - entities: - - uid: 20230 + pos: -1.5,59.5 + parent: 16527 + - uid: 25626 components: - type: Transform - pos: 9.5,33.5 - parent: 16504 - - uid: 20239 + pos: 4.5,53.5 + parent: 16527 + - uid: 25627 components: - type: Transform - pos: 8.5,0.5 - parent: 16504 - - uid: 20240 + pos: 5.5,53.5 + parent: 16527 + - uid: 25628 components: - type: Transform - pos: 8.5,1.5 - parent: 16504 - - uid: 20241 + pos: 6.5,53.5 + parent: 16527 + - uid: 25629 components: - type: Transform - pos: 8.5,2.5 - parent: 16504 - - uid: 20242 + pos: 7.5,53.5 + parent: 16527 + - uid: 25630 components: - type: Transform - pos: 8.5,3.5 - parent: 16504 - - uid: 20243 + pos: 8.5,53.5 + parent: 16527 + - uid: 25631 components: - type: Transform - pos: 8.5,4.5 - parent: 16504 - - uid: 20244 + pos: 11.5,53.5 + parent: 16527 + - uid: 25632 components: - type: Transform - pos: 8.5,5.5 - parent: 16504 - - uid: 20245 + pos: -28.5,43.5 + parent: 16527 + - uid: 25633 components: - type: Transform - pos: 8.5,6.5 - parent: 16504 - - uid: 20246 + pos: -29.5,43.5 + parent: 16527 + - uid: 25634 components: - type: Transform - pos: 8.5,7.5 - parent: 16504 - - uid: 20247 + pos: -30.5,43.5 + parent: 16527 + - uid: 25635 components: - type: Transform - pos: 4.5,7.5 - parent: 16504 - - uid: 20248 + pos: 28.5,50.5 + parent: 16527 + - uid: 25636 components: - type: Transform - pos: 5.5,7.5 - parent: 16504 - - uid: 20249 + pos: -8.5,74.5 + parent: 16527 + - uid: 25637 components: - type: Transform - pos: 7.5,7.5 - parent: 16504 - - uid: 20251 + pos: 9.5,54.5 + parent: 16527 + - uid: 25638 components: - type: Transform - pos: -3.5,5.5 - parent: 16504 - - uid: 20252 + pos: 10.5,54.5 + parent: 16527 + - uid: 25639 components: - type: Transform - pos: -4.5,5.5 - parent: 16504 - - uid: 20253 + pos: 11.5,54.5 + parent: 16527 + - uid: 25640 components: - type: Transform - pos: -5.5,6.5 - parent: 16504 - - uid: 20254 + pos: 12.5,54.5 + parent: 16527 + - uid: 25641 components: - type: Transform - pos: -5.5,5.5 - parent: 16504 - - uid: 20255 + pos: 11.5,63.5 + parent: 16527 + - uid: 25642 components: - type: Transform - pos: -7.5,3.5 - parent: 16504 - - uid: 20256 + pos: 10.5,63.5 + parent: 16527 + - uid: 25643 components: - type: Transform - pos: -6.5,4.5 - parent: 16504 - - uid: 20267 + pos: 9.5,63.5 + parent: 16527 + - uid: 25644 components: - type: Transform - pos: 7.5,13.5 - parent: 16504 - - uid: 20268 + pos: 9.5,60.5 + parent: 16527 + - uid: 25645 components: - type: Transform - pos: 8.5,13.5 - parent: 16504 - - uid: 20269 + pos: 10.5,60.5 + parent: 16527 + - uid: 25646 components: - type: Transform - pos: 9.5,13.5 - parent: 16504 - - uid: 20270 + pos: 11.5,60.5 + parent: 16527 + - uid: 25647 components: - type: Transform - pos: 10.5,7.5 - parent: 16504 - - uid: 20271 + pos: 12.5,60.5 + parent: 16527 + - uid: 25648 components: - type: Transform - pos: 11.5,6.5 - parent: 16504 - - uid: 20272 + pos: 12.5,57.5 + parent: 16527 + - uid: 25649 components: - type: Transform - pos: 10.5,6.5 - parent: 16504 - - uid: 20273 + pos: 11.5,57.5 + parent: 16527 + - uid: 25650 components: - type: Transform - pos: 9.5,8.5 - parent: 16504 - - uid: 20274 + pos: 10.5,57.5 + parent: 16527 + - uid: 25651 components: - type: Transform - pos: 9.5,7.5 - parent: 16504 - - uid: 20275 + pos: 9.5,57.5 + parent: 16527 + - uid: 25652 components: - type: Transform - pos: 11.5,5.5 - parent: 16504 - - uid: 20276 + pos: 8.5,63.5 + parent: 16527 + - uid: 25653 components: - type: Transform - pos: 12.5,5.5 - parent: 16504 - - uid: 20283 + pos: 8.5,60.5 + parent: 16527 + - uid: 25654 components: - type: Transform - pos: -8.5,8.5 - parent: 16504 - - uid: 20284 + pos: 8.5,57.5 + parent: 16527 + - uid: 25655 components: - type: Transform - pos: -3.5,13.5 - parent: 16504 - - uid: 20285 + pos: 8.5,54.5 + parent: 16527 + - uid: 25656 components: - type: Transform - pos: -4.5,13.5 - parent: 16504 - - uid: 20287 + pos: 9.5,65.5 + parent: 16527 + - uid: 25657 components: - type: Transform - pos: -6.5,13.5 - parent: 16504 - - uid: 20288 + pos: 10.5,65.5 + parent: 16527 + - uid: 25658 components: - type: Transform - pos: -7.5,13.5 - parent: 16504 - - uid: 20289 + pos: 11.5,65.5 + parent: 16527 + - uid: 25659 components: - type: Transform - pos: -8.5,13.5 - parent: 16504 - - uid: 20290 + pos: 8.5,65.5 + parent: 16527 + - uid: 25660 components: - type: Transform - pos: -8.5,12.5 - parent: 16504 - - uid: 20291 + pos: -2.5,60.5 + parent: 16527 + - uid: 25661 components: - type: Transform - pos: -9.5,12.5 - parent: 16504 - - uid: 20292 + pos: -2.5,61.5 + parent: 16527 + - uid: 25662 components: - type: Transform - pos: -10.5,12.5 - parent: 16504 - - uid: 20293 + pos: -2.5,62.5 + parent: 16527 + - uid: 25663 components: - type: Transform - pos: -11.5,12.5 - parent: 16504 - - uid: 20294 + pos: -2.5,64.5 + parent: 16527 + - uid: 25664 components: - type: Transform - pos: -11.5,11.5 - parent: 16504 - - uid: 20295 + pos: -2.5,65.5 + parent: 16527 + - uid: 25665 components: - type: Transform - pos: -12.5,11.5 - parent: 16504 - - uid: 20296 + pos: -2.5,66.5 + parent: 16527 + - uid: 25666 components: - type: Transform - pos: -12.5,10.5 - parent: 16504 - - uid: 20297 + pos: -2.5,67.5 + parent: 16527 + - uid: 25667 components: - type: Transform - pos: -13.5,10.5 - parent: 16504 - - uid: 20298 + pos: -2.5,68.5 + parent: 16527 + - uid: 25668 components: - type: Transform - pos: -13.5,9.5 - parent: 16504 - - uid: 20299 + pos: -2.5,69.5 + parent: 16527 + - uid: 25669 components: - type: Transform - pos: -14.5,9.5 - parent: 16504 - - uid: 20300 + pos: -2.5,70.5 + parent: 16527 + - uid: 25670 components: - type: Transform - pos: -14.5,8.5 - parent: 16504 - - uid: 20301 + pos: -2.5,71.5 + parent: 16527 + - uid: 25671 components: - type: Transform - pos: -15.5,8.5 - parent: 16504 - - uid: 20302 + pos: -2.5,72.5 + parent: 16527 + - uid: 25672 components: - type: Transform - pos: -15.5,7.5 - parent: 16504 - - uid: 20303 + pos: -2.5,73.5 + parent: 16527 + - uid: 25673 components: - type: Transform - pos: -15.5,6.5 - parent: 16504 - - uid: 20304 + pos: -8.5,73.5 + parent: 16527 + - uid: 25674 components: - type: Transform - pos: -15.5,5.5 - parent: 16504 - - uid: 20311 + pos: -8.5,72.5 + parent: 16527 + - uid: 25675 components: - type: Transform - pos: -8.5,5.5 - parent: 16504 - - uid: 20314 + pos: -8.5,71.5 + parent: 16527 + - uid: 25676 components: - type: Transform - pos: -8.5,6.5 - parent: 16504 - - uid: 20315 + pos: -8.5,70.5 + parent: 16527 + - uid: 25677 components: - type: Transform - pos: -7.5,6.5 - parent: 16504 - - uid: 20317 + pos: -8.5,69.5 + parent: 16527 + - uid: 25678 components: - type: Transform - pos: -3.5,6.5 - parent: 16504 - - uid: 20319 + pos: -8.5,68.5 + parent: 16527 + - uid: 25679 components: - type: Transform - pos: -7.5,4.5 - parent: 16504 - - uid: 20320 + pos: -8.5,67.5 + parent: 16527 + - uid: 25680 components: - type: Transform - pos: -11.5,1.5 - parent: 16504 - - uid: 20321 + pos: -8.5,66.5 + parent: 16527 + - uid: 25681 components: - type: Transform - pos: -10.5,1.5 - parent: 16504 - - uid: 20322 + pos: -8.5,65.5 + parent: 16527 + - uid: 25682 components: - type: Transform - pos: -9.5,1.5 - parent: 16504 - - uid: 20323 + pos: -8.5,63.5 + parent: 16527 + - uid: 25683 components: - type: Transform - pos: -10.5,0.5 - parent: 16504 - - uid: 20324 + pos: -8.5,62.5 + parent: 16527 + - uid: 25684 components: - type: Transform - pos: -9.5,0.5 - parent: 16504 - - uid: 20325 + pos: -8.5,61.5 + parent: 16527 + - uid: 25685 components: - type: Transform - pos: -9.5,-0.5 - parent: 16504 - - uid: 20328 + pos: -7.5,67.5 + parent: 16527 + - uid: 25686 components: - type: Transform - pos: -17.5,5.5 - parent: 16504 - - uid: 20329 + pos: -6.5,67.5 + parent: 16527 + - uid: 25687 components: - type: Transform - pos: -16.5,5.5 - parent: 16504 - - uid: 20331 + pos: -4.5,67.5 + parent: 16527 + - uid: 25688 components: - type: Transform - pos: -10.5,-7.5 - parent: 16504 - - uid: 20332 + pos: -3.5,67.5 + parent: 16527 + - uid: 25689 components: - type: Transform - pos: -12.5,-7.5 - parent: 16504 - - uid: 20340 + pos: -1.5,67.5 + parent: 16527 + - uid: 25690 components: - type: Transform - pos: 15.5,8.5 - parent: 16504 - - uid: 20348 + pos: -0.5,67.5 + parent: 16527 + - uid: 25691 components: - type: Transform - pos: 19.5,4.5 - parent: 16504 - - uid: 20349 + pos: 5.5,67.5 + parent: 16527 + - uid: 25692 components: - type: Transform - pos: 19.5,3.5 - parent: 16504 - - uid: 20350 + pos: 6.5,67.5 + parent: 16527 + - uid: 25693 components: - type: Transform - pos: 19.5,2.5 - parent: 16504 - - uid: 20368 + pos: 7.5,67.5 + parent: 16527 + - uid: 25694 components: - type: Transform - pos: -4.5,6.5 - parent: 16504 - - uid: 20369 + pos: -2.5,74.5 + parent: 16527 + - uid: 25695 components: - type: Transform - pos: -6.5,6.5 - parent: 16504 - - uid: 20393 + pos: -9.5,68.5 + parent: 16527 + - uid: 25696 components: - type: Transform - pos: -11.5,13.5 - parent: 16504 - - uid: 20394 + pos: -10.5,68.5 + parent: 16527 + - uid: 25697 components: - type: Transform - pos: -11.5,14.5 - parent: 16504 - - uid: 20396 + pos: -11.5,68.5 + parent: 16527 + - uid: 25698 components: - type: Transform - pos: -11.5,16.5 - parent: 16504 - - uid: 20424 + pos: -13.5,68.5 + parent: 16527 + - uid: 25699 components: - type: Transform - pos: 10.5,19.5 - parent: 16504 - - uid: 20441 + pos: -14.5,68.5 + parent: 16527 + - uid: 25700 components: - type: Transform - pos: 7.5,19.5 - parent: 16504 - - uid: 20442 + pos: -15.5,68.5 + parent: 16527 + - uid: 25701 components: - type: Transform - pos: 9.5,19.5 - parent: 16504 - - uid: 20443 + pos: -26.5,45.5 + parent: 16527 + - uid: 25702 components: - type: Transform - pos: 7.5,20.5 - parent: 16504 - - uid: 20444 + pos: -27.5,45.5 + parent: 16527 + - uid: 25703 components: - type: Transform - pos: 9.5,20.5 - parent: 16504 - - uid: 20445 + pos: -28.5,45.5 + parent: 16527 + - uid: 25704 components: - type: Transform - pos: 7.5,22.5 - parent: 16504 - - uid: 20446 + pos: -28.5,46.5 + parent: 16527 + - uid: 25705 components: - type: Transform - pos: 9.5,22.5 - parent: 16504 - - uid: 20447 + pos: -28.5,47.5 + parent: 16527 + - uid: 25706 components: - type: Transform - pos: 7.5,23.5 - parent: 16504 - - uid: 20448 + pos: -28.5,48.5 + parent: 16527 + - uid: 25707 components: - type: Transform - pos: 9.5,23.5 - parent: 16504 - - uid: 20449 + pos: -28.5,49.5 + parent: 16527 + - uid: 25708 components: - type: Transform - pos: 7.5,25.5 - parent: 16504 - - uid: 20450 + pos: -28.5,50.5 + parent: 16527 + - uid: 25709 components: - type: Transform - pos: 7.5,26.5 - parent: 16504 - - uid: 20451 + pos: -28.5,51.5 + parent: 16527 + - uid: 25710 components: - type: Transform - pos: 9.5,26.5 - parent: 16504 - - uid: 20452 + pos: -27.5,51.5 + parent: 16527 + - uid: 25711 components: - type: Transform - pos: 9.5,25.5 - parent: 16504 - - uid: 20453 + pos: -26.5,51.5 + parent: 16527 + - uid: 25712 components: - type: Transform - pos: 7.5,28.5 - parent: 16504 - - uid: 20454 + pos: -24.5,51.5 + parent: 16527 + - uid: 25713 components: - type: Transform - pos: 7.5,29.5 - parent: 16504 - - uid: 20455 + pos: -23.5,51.5 + parent: 16527 + - uid: 25714 components: - type: Transform - pos: 9.5,29.5 - parent: 16504 - - uid: 20456 + pos: -24.5,45.5 + parent: 16527 + - uid: 25715 components: - type: Transform - pos: 9.5,28.5 - parent: 16504 - - uid: 20459 + pos: -23.5,45.5 + parent: 16527 + - uid: 25716 components: - type: Transform - pos: 9.5,32.5 - parent: 16504 - - uid: 20460 + pos: 0.5,79.5 + parent: 16527 + - uid: 25717 components: - type: Transform - pos: 9.5,31.5 - parent: 16504 - - uid: 20476 + pos: 0.5,82.5 + parent: 16527 + - uid: 25718 components: - type: Transform - pos: -1.5,28.5 - parent: 16504 - - uid: 20477 + pos: 0.5,83.5 + parent: 16527 + - uid: 25719 components: - type: Transform - pos: 2.5,24.5 - parent: 16504 - - uid: 20478 + pos: 0.5,81.5 + parent: 16527 + - uid: 25720 components: - type: Transform - pos: -1.5,24.5 - parent: 16504 - - uid: 20479 + pos: 0.5,80.5 + parent: 16527 + - uid: 25721 components: - type: Transform - pos: 2.5,28.5 - parent: 16504 - - uid: 20480 + pos: 5.5,83.5 + parent: 16527 + - uid: 25722 components: - type: Transform - pos: 3.5,26.5 - parent: 16504 - - uid: 20481 + pos: 1.5,83.5 + parent: 16527 + - uid: 25723 components: - type: Transform - pos: -2.5,26.5 - parent: 16504 - - uid: 20482 + pos: 2.5,83.5 + parent: 16527 + - uid: 25724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,19.5 - parent: 16504 - - uid: 20483 + pos: 4.5,83.5 + parent: 16527 + - uid: 25725 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,19.5 - parent: 16504 - - uid: 20484 + pos: 5.5,82.5 + parent: 16527 + - uid: 25726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,19.5 - parent: 16504 - - uid: 20486 + pos: 3.5,83.5 + parent: 16527 + - uid: 25727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,21.5 - parent: 16504 - - uid: 20487 + pos: 5.5,81.5 + parent: 16527 + - uid: 25728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,19.5 - parent: 16504 - - uid: 20524 + pos: 5.5,80.5 + parent: 16527 + - uid: 25729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,14.5 - parent: 16504 - - uid: 20538 + pos: 5.5,79.5 + parent: 16527 + - uid: 25730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,29.5 - parent: 16504 - - uid: 20539 + pos: -14.5,78.5 + parent: 16527 + - uid: 25731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,29.5 - parent: 16504 - - uid: 20540 + pos: -15.5,78.5 + parent: 16527 + - uid: 25732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,29.5 - parent: 16504 - - uid: 20542 + pos: -13.5,78.5 + parent: 16527 + - uid: 25733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,29.5 - parent: 16504 - - uid: 20543 + pos: -13.5,79.5 + parent: 16527 + - uid: 25734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,29.5 - parent: 16504 - - uid: 20544 + pos: -12.5,64.5 + parent: 16527 + - uid: 25735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,29.5 - parent: 16504 - - uid: 20545 + pos: -13.5,64.5 + parent: 16527 + - uid: 25736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,25.5 - parent: 16504 - - uid: 20546 + pos: -11.5,64.5 + parent: 16527 + - uid: 25737 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,25.5 - parent: 16504 - - uid: 20547 + pos: 13.5,51.5 + parent: 16527 + - uid: 25738 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,25.5 - parent: 16504 - - uid: 20548 + pos: 8.5,48.5 + parent: 16527 + - uid: 25739 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,21.5 - parent: 16504 - - uid: 20549 + pos: 11.5,51.5 + parent: 16527 + - uid: 25740 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,21.5 - parent: 16504 - - uid: 20550 + pos: 8.5,50.5 + parent: 16527 + - uid: 25741 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,21.5 - parent: 16504 - - uid: 20551 + pos: 8.5,52.5 + parent: 16527 + - uid: 25742 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,25.5 - parent: 16504 - - uid: 20552 + pos: 13.5,49.5 + parent: 16527 + - uid: 25743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,25.5 - parent: 16504 - - uid: 20553 + pos: -28.5,44.5 + parent: 16527 + - uid: 25744 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,25.5 - parent: 16504 - - uid: 20554 + pos: -32.5,42.5 + parent: 16527 + - uid: 25745 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,26.5 - parent: 16504 - - uid: 20555 + pos: -32.5,41.5 + parent: 16527 + - uid: 25746 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,26.5 - parent: 16504 - - uid: 20556 + pos: 16.5,47.5 + parent: 16527 + - uid: 25747 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 16504 - - uid: 20557 + pos: 16.5,48.5 + parent: 16527 + - uid: 25748 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 16504 - - uid: 20558 + pos: 16.5,50.5 + parent: 16527 + - uid: 25749 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,19.5 - parent: 16504 - - uid: 20559 + pos: 16.5,52.5 + parent: 16527 + - uid: 25750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,21.5 - parent: 16504 - - uid: 20560 + pos: -31.5,43.5 + parent: 16527 + - uid: 25751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 16504 - - uid: 20561 + pos: -32.5,43.5 + parent: 16527 + - uid: 25752 components: - type: Transform - pos: -23.5,24.5 - parent: 16504 - - uid: 20562 + pos: -33.5,43.5 + parent: 16527 + - uid: 25753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 16504 - - uid: 20563 + pos: -34.5,43.5 + parent: 16527 + - uid: 25754 components: - type: Transform - pos: -26.5,24.5 - parent: 16504 - - uid: 20564 + rot: 1.5707963267948966 rad + pos: 20.5,46.5 + parent: 16527 + - uid: 25755 components: - type: Transform - pos: -27.5,27.5 - parent: 16504 - - uid: 20565 + rot: 1.5707963267948966 rad + pos: 17.5,47.5 + parent: 16527 + - uid: 25756 components: - type: Transform - pos: -27.5,26.5 - parent: 16504 - - uid: 20566 + rot: 1.5707963267948966 rad + pos: 23.5,53.5 + parent: 16527 + - uid: 25757 components: - type: Transform - pos: -22.5,27.5 - parent: 16504 - - uid: 20567 + rot: 1.5707963267948966 rad + pos: 24.5,53.5 + parent: 16527 + - uid: 25758 components: - type: Transform - pos: -22.5,26.5 - parent: 16504 - - uid: 20568 + rot: 1.5707963267948966 rad + pos: 25.5,53.5 + parent: 16527 + - uid: 25759 components: - type: Transform - pos: -22.5,25.5 - parent: 16504 - - uid: 20569 + rot: 1.5707963267948966 rad + pos: 27.5,53.5 + parent: 16527 + - uid: 25760 components: - type: Transform - pos: -27.5,25.5 - parent: 16504 - - uid: 20570 + rot: 1.5707963267948966 rad + pos: 28.5,53.5 + parent: 16527 + - uid: 25761 components: - type: Transform - pos: -26.5,23.5 - parent: 16504 - - uid: 20571 + rot: 1.5707963267948966 rad + pos: 29.5,53.5 + parent: 16527 + - uid: 25762 components: - type: Transform - pos: -23.5,23.5 - parent: 16504 - - uid: 20572 + rot: 1.5707963267948966 rad + pos: 31.5,53.5 + parent: 16527 + - uid: 25763 components: - type: Transform - pos: -28.5,28.5 - parent: 16504 - - uid: 20573 + rot: 1.5707963267948966 rad + pos: 32.5,53.5 + parent: 16527 + - uid: 25764 components: - type: Transform - pos: -21.5,28.5 - parent: 16504 - - uid: 20574 + rot: 1.5707963267948966 rad + pos: 33.5,53.5 + parent: 16527 + - uid: 25765 components: - type: Transform - pos: -28.5,29.5 - parent: 16504 - - uid: 20575 + rot: 3.141592653589793 rad + pos: 31.5,46.5 + parent: 16527 + - uid: 25766 components: - type: Transform - pos: -28.5,30.5 - parent: 16504 - - uid: 20576 + rot: 1.5707963267948966 rad + pos: 32.5,48.5 + parent: 16527 + - uid: 25767 components: - type: Transform - pos: -21.5,30.5 - parent: 16504 - - uid: 20577 + rot: 1.5707963267948966 rad + pos: 32.5,47.5 + parent: 16527 + - uid: 25768 components: - type: Transform - pos: -27.5,31.5 - parent: 16504 - - uid: 20578 + rot: 1.5707963267948966 rad + pos: 33.5,47.5 + parent: 16527 + - uid: 25769 components: - type: Transform - pos: -22.5,31.5 - parent: 16504 - - uid: 20579 + rot: 1.5707963267948966 rad + pos: 29.5,47.5 + parent: 16527 + - uid: 25770 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,18.5 - parent: 16504 - - uid: 20580 + pos: 28.5,47.5 + parent: 16527 + - uid: 25771 components: - type: Transform - pos: 10.5,17.5 - parent: 16504 - - uid: 20581 + pos: 25.5,54.5 + parent: 16527 + - uid: 25772 components: - type: Transform - pos: 10.5,18.5 - parent: 16504 - - uid: 20582 + rot: 3.141592653589793 rad + pos: 31.5,42.5 + parent: 16527 + - uid: 25773 components: - type: Transform - pos: 10.5,13.5 - parent: 16504 - - uid: 20583 + pos: 28.5,56.5 + parent: 16527 + - uid: 25774 components: - type: Transform - pos: 10.5,14.5 - parent: 16504 - - uid: 20584 + pos: 28.5,54.5 + parent: 16527 + - uid: 25775 components: - type: Transform - pos: 10.5,15.5 - parent: 16504 - - uid: 20585 + rot: 3.141592653589793 rad + pos: -32.5,39.5 + parent: 16527 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 25776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 16504 - - uid: 20586 + pos: -29.5,34.5 + parent: 16527 + - uid: 25777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,14.5 - parent: 16504 - - uid: 20587 + rot: -1.5707963267948966 rad + pos: -31.5,37.5 + parent: 16527 + - uid: 25778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,14.5 - parent: 16504 - - uid: 20588 + pos: -28.5,37.5 + parent: 16527 + - uid: 25779 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,13.5 - parent: 16504 - - uid: 20589 + pos: -27.5,24.5 + parent: 16527 + - uid: 25780 components: - type: Transform - pos: 32.5,21.5 - parent: 16504 - - uid: 20590 + rot: 3.141592653589793 rad + pos: -22.5,24.5 + parent: 16527 + - uid: 25781 components: - type: Transform - pos: 22.5,19.5 - parent: 16504 - - uid: 20591 + rot: -1.5707963267948966 rad + pos: -22.5,23.5 + parent: 16527 + - uid: 25782 components: - type: Transform - pos: 23.5,20.5 - parent: 16504 - - uid: 20592 + pos: -27.5,23.5 + parent: 16527 + - uid: 25783 components: - type: Transform - pos: 25.5,21.5 - parent: 16504 - - uid: 20593 + rot: -1.5707963267948966 rad + pos: -27.5,28.5 + parent: 16527 + - uid: 25784 components: - type: Transform - pos: 24.5,21.5 - parent: 16504 - - uid: 20594 + pos: -22.5,28.5 + parent: 16527 + - uid: 25785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,21.5 - parent: 16504 - - uid: 20595 + pos: -28.5,31.5 + parent: 16527 + - uid: 25786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,21.5 - parent: 16504 - - uid: 20596 + rot: -1.5707963267948966 rad + pos: -21.5,31.5 + parent: 16527 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 21160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,21.5 - parent: 16504 - - uid: 20597 + rot: -1.5707963267948966 rad + pos: -21.5,14.5 + parent: 16527 + - uid: 23068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,21.5 - parent: 16504 - - uid: 20598 + rot: -1.5707963267948966 rad + pos: -21.5,12.5 + parent: 16527 + - uid: 23070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,21.5 - parent: 16504 - - uid: 20599 + rot: -1.5707963267948966 rad + pos: -21.5,13.5 + parent: 16527 + - uid: 23978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,21.5 - parent: 16504 - - uid: 20600 + rot: -1.5707963267948966 rad + pos: -21.5,15.5 + parent: 16527 + - uid: 24168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,19.5 - parent: 16504 - - uid: 20601 + rot: -1.5707963267948966 rad + pos: -21.5,11.5 + parent: 16527 + - uid: 25787 components: - type: Transform - pos: 24.5,12.5 - parent: 16504 - - uid: 20602 + pos: -1.5,7.5 + parent: 16527 + - uid: 25788 components: - type: Transform - pos: 24.5,20.5 - parent: 16504 - - uid: 20617 + pos: 3.5,-0.5 + parent: 16527 + - uid: 25789 components: - type: Transform - pos: 23.5,12.5 - parent: 16504 - - uid: 20618 + pos: 2.5,7.5 + parent: 16527 + - uid: 25790 components: - type: Transform - pos: 22.5,13.5 - parent: 16504 - - uid: 20651 + pos: -3.5,-0.5 + parent: 16527 + - uid: 25791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,36.5 - parent: 16504 - - uid: 20663 + pos: -4.5,-0.5 + parent: 16527 + - uid: 25792 components: - type: Transform - pos: 22.5,21.5 - parent: 16504 - - uid: 20664 + pos: -4.5,-1.5 + parent: 16527 + - uid: 25793 components: - type: Transform - pos: 21.5,18.5 - parent: 16504 - - uid: 20665 + pos: -4.5,-2.5 + parent: 16527 + - uid: 25794 components: - type: Transform - pos: 19.5,18.5 - parent: 16504 - - uid: 20666 + pos: -4.5,-3.5 + parent: 16527 + - uid: 25795 components: - type: Transform - pos: 22.5,20.5 - parent: 16504 - - uid: 20667 + pos: -4.5,-4.5 + parent: 16527 + - uid: 25796 components: - type: Transform - pos: 22.5,22.5 - parent: 16504 - - uid: 20668 + pos: 2.5,-0.5 + parent: 16527 + - uid: 25797 components: - type: Transform - pos: 22.5,23.5 - parent: 16504 - - uid: 20669 + pos: -5.5,-4.5 + parent: 16527 + - uid: 25798 components: - type: Transform - pos: 22.5,24.5 - parent: 16504 - - uid: 20670 + pos: -6.5,-4.5 + parent: 16527 + - uid: 25799 components: - type: Transform - pos: 22.5,25.5 - parent: 16504 - - uid: 20671 + pos: -1.5,-0.5 + parent: 16527 + - uid: 25800 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 16527 + - uid: 25801 components: - type: Transform pos: 23.5,22.5 - parent: 16504 - - uid: 20672 + parent: 16527 + - uid: 25802 + components: + - type: Transform + pos: 24.5,21.5 + parent: 16527 + - uid: 25803 components: - type: Transform pos: 24.5,22.5 - parent: 16504 - - uid: 20673 + parent: 16527 + - uid: 25804 components: - type: Transform - pos: 25.5,22.5 - parent: 16504 - - uid: 20674 + pos: 8.5,39.5 + parent: 16527 + - uid: 25805 components: - type: Transform - pos: 26.5,22.5 - parent: 16504 - - uid: 20675 + pos: 22.5,21.5 + parent: 16527 + - uid: 25806 components: - type: Transform - pos: 27.5,22.5 - parent: 16504 - - uid: 20676 + pos: 22.5,22.5 + parent: 16527 + - uid: 25807 components: - type: Transform - pos: 28.5,22.5 - parent: 16504 - - uid: 20677 + pos: 22.5,20.5 + parent: 16527 + - uid: 25808 components: - type: Transform - pos: 29.5,22.5 - parent: 16504 - - uid: 20678 + pos: 23.5,20.5 + parent: 16527 + - uid: 25809 components: - type: Transform - pos: 30.5,22.5 - parent: 16504 - - uid: 20679 + pos: 24.5,20.5 + parent: 16527 + - uid: 25810 components: - type: Transform - pos: 31.5,22.5 - parent: 16504 - - uid: 20680 + pos: -5.5,73.5 + parent: 16527 + - uid: 25811 components: - type: Transform - pos: 32.5,22.5 - parent: 16504 - - uid: 20681 + pos: -4.5,73.5 + parent: 16527 + - uid: 25812 components: - type: Transform - pos: 22.5,29.5 - parent: 16504 - - uid: 20682 + pos: -3.5,73.5 + parent: 16527 + - uid: 25813 components: - type: Transform - pos: 22.5,28.5 - parent: 16504 - - uid: 20683 + pos: -6.5,73.5 + parent: 16527 + - uid: 25814 components: - type: Transform - pos: 22.5,27.5 - parent: 16504 - - uid: 20684 + pos: -7.5,73.5 + parent: 16527 + - uid: 25815 + components: + - type: Transform + pos: -7.5,75.5 + parent: 16527 + - uid: 25816 + components: + - type: Transform + pos: -5.5,74.5 + parent: 16527 + - uid: 25817 + components: + - type: Transform + pos: -7.5,74.5 + parent: 16527 + - uid: 25818 components: - type: Transform - pos: 19.5,30.5 - parent: 16504 - - uid: 20685 + pos: -6.5,75.5 + parent: 16527 + - uid: 25819 components: - type: Transform - pos: 21.5,30.5 - parent: 16504 - - uid: 20686 + pos: -5.5,75.5 + parent: 16527 + - uid: 25820 components: - type: Transform - pos: 22.5,30.5 - parent: 16504 - - uid: 20687 + pos: -4.5,75.5 + parent: 16527 + - uid: 25821 components: - type: Transform - pos: 22.5,31.5 - parent: 16504 - - uid: 20688 + pos: -3.5,74.5 + parent: 16527 + - uid: 25822 components: - type: Transform - pos: 23.5,35.5 - parent: 16504 - - uid: 20689 + pos: -3.5,75.5 + parent: 16527 + - uid: 25823 components: - type: Transform - pos: 24.5,35.5 - parent: 16504 -- proto: WallPlastitaniumDiagonal - entities: - - uid: 20713 + pos: 11.5,39.5 + parent: 16527 + - uid: 25824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,24.5 - parent: 16504 - - uid: 20714 + pos: 10.5,39.5 + parent: 16527 + - uid: 25825 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,24.5 - parent: 16504 - - uid: 20715 + pos: -37.5,26.5 + parent: 16527 + - uid: 25826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,23.5 - parent: 16504 - - uid: 20716 + pos: -31.5,36.5 + parent: 16527 + - uid: 25827 components: - type: Transform - pos: -27.5,23.5 - parent: 16504 - - uid: 20717 + pos: -28.5,35.5 + parent: 16527 + - uid: 25828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,28.5 - parent: 16504 - - uid: 20718 + pos: -37.5,35.5 + parent: 16527 + - uid: 25829 components: - type: Transform - pos: -22.5,28.5 - parent: 16504 - - uid: 20719 + pos: -37.5,34.5 + parent: 16527 + - uid: 25830 components: - type: Transform - pos: -28.5,31.5 - parent: 16504 - - uid: 20720 + pos: -37.5,30.5 + parent: 16527 + - uid: 25831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,31.5 - parent: 16504 -- proto: WallPlastitaniumIndestructible - entities: - - uid: 7894 + pos: -31.5,31.5 + parent: 16527 + - uid: 25832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,21.5 - parent: 16504 - - uid: 8036 + pos: 35.5,47.5 + parent: 16527 + - uid: 25833 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,23.5 - parent: 16504 - - uid: 9702 + pos: -37.5,33.5 + parent: 16527 + - uid: 25834 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,24.5 - parent: 16504 - - uid: 9716 + pos: 21.5,42.5 + parent: 16527 + - uid: 25835 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,22.5 - parent: 16504 - - uid: 9892 + pos: 35.5,20.5 + parent: 16527 + - uid: 25836 components: - type: Transform - pos: 0.5,19.5 - parent: 16504 - - uid: 15399 + pos: -33.5,59.5 + parent: 16527 + - uid: 25837 components: - type: Transform - pos: 14.5,11.5 - parent: 16504 - - uid: 19971 + pos: -37.5,31.5 + parent: 16527 + - uid: 25838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-7.5 - parent: 16504 - - uid: 19972 + rot: 1.5707963267948966 rad + pos: -27.5,37.5 + parent: 16527 + - uid: 25839 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-5.5 - parent: 16504 - - uid: 19973 + rot: 1.5707963267948966 rad + pos: -26.5,37.5 + parent: 16527 + - uid: 25840 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-7.5 - parent: 16504 - - uid: 19974 + rot: 1.5707963267948966 rad + pos: -25.5,37.5 + parent: 16527 + - uid: 25841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 16504 - - uid: 19975 + pos: 35.5,53.5 + parent: 16527 + - uid: 25842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,2.5 - parent: 16504 - - uid: 19976 + rot: 1.5707963267948966 rad + pos: -24.5,37.5 + parent: 16527 + - uid: 25843 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 16504 - - uid: 19977 + rot: 1.5707963267948966 rad + pos: -23.5,37.5 + parent: 16527 + - uid: 25844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 16504 - - uid: 19978 + rot: 1.5707963267948966 rad + pos: -22.5,37.5 + parent: 16527 + - uid: 25845 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 16504 - - uid: 19981 + pos: -35.5,37.5 + parent: 16527 + - uid: 25846 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 16504 - - uid: 19982 + pos: -19.5,33.5 + parent: 16527 + - uid: 25847 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-0.5 - parent: 16504 - - uid: 19983 + pos: -9.5,-4.5 + parent: 16527 + - uid: 25848 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,7.5 - parent: 16504 - - uid: 19984 + pos: -35.5,26.5 + parent: 16527 + - uid: 25849 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,7.5 - parent: 16504 - - uid: 19986 + pos: -21.5,5.5 + parent: 16527 + - uid: 25850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,7.5 - parent: 16504 - - uid: 19987 + pos: -20.5,18.5 + parent: 16527 + - uid: 25851 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,7.5 - parent: 16504 - - uid: 19988 + pos: -37.5,36.5 + parent: 16527 + - uid: 25852 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,7.5 - parent: 16504 - - uid: 19989 + pos: -19.5,34.5 + parent: 16527 + - uid: 25853 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,7.5 - parent: 16504 - - uid: 19990 + pos: -31.5,30.5 + parent: 16527 + - uid: 25854 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,6.5 - parent: 16504 - - uid: 19991 + pos: -31.5,29.5 + parent: 16527 + - uid: 25855 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,6.5 - parent: 16504 - - uid: 19994 + pos: -37.5,27.5 + parent: 16527 + - uid: 25856 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,5.5 - parent: 16504 - - uid: 19995 + pos: -21.5,9.5 + parent: 16527 + - uid: 25857 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,5.5 - parent: 16504 - - uid: 19996 + pos: -31.5,27.5 + parent: 16527 + - uid: 25858 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,5.5 - parent: 16504 - - uid: 19997 + pos: -31.5,28.5 + parent: 16527 + - uid: 25859 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,4.5 - parent: 16504 - - uid: 19999 + pos: -37.5,28.5 + parent: 16527 + - uid: 25860 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,3.5 - parent: 16504 - - uid: 20000 + pos: -11.5,29.5 + parent: 16527 + - uid: 25861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,5.5 - parent: 16504 - - uid: 20001 + pos: -37.5,32.5 + parent: 16527 + - uid: 25862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 16504 - - uid: 20008 + pos: -31.5,33.5 + parent: 16527 + - uid: 25863 components: - type: Transform - pos: 16.5,8.5 - parent: 16504 - - uid: 20210 + rot: 3.141592653589793 rad + pos: -31.5,26.5 + parent: 16527 + - uid: 25864 components: - type: Transform - pos: 16.5,7.5 - parent: 16504 - - uid: 20231 + pos: -33.5,26.5 + parent: 16527 + - uid: 25865 components: - type: Transform - pos: 16.5,6.5 - parent: 16504 - - uid: 20232 + pos: -9.5,-8.5 + parent: 16527 + - uid: 25866 components: - type: Transform - pos: 16.5,5.5 - parent: 16504 - - uid: 20233 + rot: 3.141592653589793 rad + pos: -34.5,37.5 + parent: 16527 + - uid: 25867 components: - type: Transform - pos: 17.5,5.5 - parent: 16504 - - uid: 20238 + rot: 3.141592653589793 rad + pos: -33.5,37.5 + parent: 16527 + - uid: 25868 components: - type: Transform - pos: 18.5,5.5 - parent: 16504 - - uid: 20258 + pos: -34.5,26.5 + parent: 16527 + - uid: 25869 components: - type: Transform - pos: 19.5,5.5 - parent: 16504 - - uid: 20259 + pos: 8.5,46.5 + parent: 16527 + - uid: 25870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,1.5 - parent: 16504 - - uid: 20260 + pos: 8.5,45.5 + parent: 16527 + - uid: 25871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,1.5 - parent: 16504 - - uid: 20261 + pos: 21.5,-9.5 + parent: 16527 + - uid: 25872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,1.5 - parent: 16504 - - uid: 20262 + pos: -16.5,45.5 + parent: 16527 + - uid: 25873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,1.5 - parent: 16504 - - uid: 20263 + pos: 8.5,40.5 + parent: 16527 + - uid: 25874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,0.5 - parent: 16504 - - uid: 20277 + pos: 8.5,41.5 + parent: 16527 + - uid: 25875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-0.5 - parent: 16504 - - uid: 20278 + pos: 8.5,42.5 + parent: 16527 + - uid: 25876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-1.5 - parent: 16504 - - uid: 20280 + pos: 9.5,39.5 + parent: 16527 + - uid: 25877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-1.5 - parent: 16504 - - uid: 20281 + pos: -14.5,45.5 + parent: 16527 + - uid: 25878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 16504 - - uid: 20282 + pos: 8.5,43.5 + parent: 16527 + - uid: 25879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 16504 - - uid: 20305 + pos: -20.5,-3.5 + parent: 16527 + - uid: 25880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-3.5 - parent: 16504 - - uid: 20306 + pos: -21.5,-3.5 + parent: 16527 + - uid: 25881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-4.5 - parent: 16504 - - uid: 20307 + pos: 9.5,43.5 + parent: 16527 + - uid: 25882 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-5.5 - parent: 16504 - - uid: 20308 + pos: -9.5,46.5 + parent: 16527 + - uid: 25883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-6.5 - parent: 16504 - - uid: 20309 + pos: -11.5,46.5 + parent: 16527 + - uid: 25884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-7.5 - parent: 16504 - - uid: 20310 + pos: -8.5,46.5 + parent: 16527 + - uid: 25885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-6.5 - parent: 16504 - - uid: 20312 + pos: -10.5,46.5 + parent: 16527 + - uid: 25886 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,7.5 - parent: 16504 - - uid: 20313 + pos: -22.5,-2.5 + parent: 16527 + - uid: 25887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,26.5 - parent: 16504 - - uid: 20318 + pos: -22.5,-1.5 + parent: 16527 + - uid: 25888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,26.5 - parent: 16504 - - uid: 20326 + pos: -22.5,-0.5 + parent: 16527 + - uid: 25889 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,26.5 - parent: 16504 - - uid: 20341 + pos: -22.5,0.5 + parent: 16527 + - uid: 25890 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,26.5 - parent: 16504 - - uid: 20342 + pos: -18.5,-6.5 + parent: 16527 + - uid: 25891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,26.5 - parent: 16504 - - uid: 20343 + pos: -19.5,-5.5 + parent: 16527 + - uid: 25892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,26.5 - parent: 16504 - - uid: 20344 + pos: -20.5,-4.5 + parent: 16527 + - uid: 25893 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,26.5 - parent: 16504 - - uid: 20345 + pos: -22.5,1.5 + parent: 16527 + - uid: 25894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-7.5 - parent: 16504 - - uid: 20346 + pos: -18.5,-7.5 + parent: 16527 + - uid: 25895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-7.5 - parent: 16504 - - uid: 20347 + pos: -18.5,-8.5 + parent: 16527 + - uid: 25896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-1.5 - parent: 16504 - - uid: 20351 + pos: -21.5,-2.5 + parent: 16527 + - uid: 25897 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 16504 - - uid: 20352 + pos: -17.5,-8.5 + parent: 16527 + - uid: 25898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 16504 - - uid: 20353 + pos: -17.5,-9.5 + parent: 16527 + - uid: 25899 components: - type: Transform - pos: 19.5,8.5 - parent: 16504 - - uid: 20354 + pos: -19.5,-6.5 + parent: 16527 + - uid: 25900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-2.5 - parent: 16504 - - uid: 20355 + pos: -20.5,-5.5 + parent: 16527 + - uid: 25901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,0.5 - parent: 16504 - - uid: 20356 + pos: -11.5,-9.5 + parent: 16527 + - uid: 25902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-0.5 - parent: 16504 - - uid: 20357 + pos: -16.5,-9.5 + parent: 16527 + - uid: 25903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-0.5 - parent: 16504 - - uid: 20358 + pos: -15.5,-9.5 + parent: 16527 + - uid: 25904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-3.5 - parent: 16504 - - uid: 20359 + pos: -14.5,-9.5 + parent: 16527 + - uid: 25905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-4.5 - parent: 16504 - - uid: 20360 + pos: -13.5,-9.5 + parent: 16527 + - uid: 25906 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,36.5 - parent: 16504 - - uid: 20361 + pos: -12.5,-9.5 + parent: 16527 + - uid: 25907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,36.5 - parent: 16504 - - uid: 20362 + pos: -2.5,77.5 + parent: 16527 + - uid: 25908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,36.5 - parent: 16504 - - uid: 20363 + pos: -2.5,76.5 + parent: 16527 + - uid: 25909 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,36.5 - parent: 16504 - - uid: 20364 + pos: -2.5,75.5 + parent: 16527 + - uid: 25910 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 16504 - - uid: 20365 + pos: -15.5,81.5 + parent: 16527 + - uid: 25911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,36.5 - parent: 16504 - - uid: 20366 + pos: -3.5,45.5 + parent: 16527 + - uid: 25912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,38.5 - parent: 16504 - - uid: 20367 + pos: -3.5,44.5 + parent: 16527 + - uid: 25913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,35.5 - parent: 16504 - - uid: 20489 + pos: -3.5,43.5 + parent: 16527 + - uid: 25914 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,26.5 - parent: 16504 - - uid: 20490 + pos: -3.5,42.5 + parent: 16527 + - uid: 25915 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-0.5 - parent: 16504 - - uid: 20491 + pos: -13.5,45.5 + parent: 16527 + - uid: 25916 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,17.5 - parent: 16504 - - uid: 20493 + pos: -5.5,46.5 + parent: 16527 + - uid: 25917 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 16504 - - uid: 20494 + pos: -4.5,46.5 + parent: 16527 + - uid: 25918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,17.5 - parent: 16504 - - uid: 20495 + pos: -21.5,45.5 + parent: 16527 + - uid: 25919 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,17.5 - parent: 16504 - - uid: 20496 + pos: -18.5,45.5 + parent: 16527 + - uid: 25920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,17.5 - parent: 16504 - - uid: 20499 + pos: -20.5,45.5 + parent: 16527 + - uid: 25921 components: - type: Transform - pos: -6.5,-10.5 - parent: 16504 - - uid: 20500 + pos: -19.5,45.5 + parent: 16527 + - uid: 25922 components: - type: Transform - pos: -6.5,-9.5 - parent: 16504 - - uid: 20503 + pos: -3.5,40.5 + parent: 16527 + - uid: 25923 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,17.5 - parent: 16504 - - uid: 20504 + pos: -3.5,41.5 + parent: 16527 + - uid: 25924 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,17.5 - parent: 16504 - - uid: 20505 + pos: -7.5,46.5 + parent: 16527 + - uid: 25925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,17.5 - parent: 16504 - - uid: 20519 + pos: -22.5,38.5 + parent: 16527 + - uid: 25926 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,17.5 - parent: 16504 - - uid: 20520 + pos: -11.5,28.5 + parent: 16527 + - uid: 25927 components: - type: Transform - pos: -6.5,-11.5 - parent: 16504 - - uid: 20521 + pos: -20.5,17.5 + parent: 16527 + - uid: 25928 components: - type: Transform - pos: -6.5,-12.5 - parent: 16504 - - uid: 20525 + pos: -12.5,81.5 + parent: 16527 + - uid: 25929 components: - type: Transform - pos: -5.5,-12.5 - parent: 16504 - - uid: 20528 + pos: -10.5,-9.5 + parent: 16527 + - uid: 25930 components: - type: Transform - pos: -4.5,-12.5 - parent: 16504 - - uid: 20534 + pos: -9.5,-9.5 + parent: 16527 + - uid: 25931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,7.5 - parent: 16504 - - uid: 20535 + pos: -7.5,-4.5 + parent: 16527 + - uid: 25932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,7.5 - parent: 16504 - - uid: 20536 + pos: -8.5,-4.5 + parent: 16527 + - uid: 25933 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 16504 - - uid: 20537 + pos: -9.5,-5.5 + parent: 16527 + - uid: 25934 components: - type: Transform - pos: -4.5,-3.5 - parent: 16504 - - uid: 20541 + pos: -9.5,-7.5 + parent: 16527 + - uid: 25935 components: - type: Transform - pos: -4.5,-2.5 - parent: 16504 - - uid: 20603 + pos: 15.5,-9.5 + parent: 16527 + - uid: 25936 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 16504 - - uid: 20604 + pos: 14.5,-9.5 + parent: 16527 + - uid: 25937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 16504 - - uid: 20605 + pos: 13.5,-9.5 + parent: 16527 + - uid: 25938 components: - type: Transform - pos: -4.5,-1.5 - parent: 16504 - - uid: 20606 + pos: 12.5,-9.5 + parent: 16527 + - uid: 25939 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 16504 - - uid: 20607 + pos: 10.5,-9.5 + parent: 16527 + - uid: 25940 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 16504 - - uid: 20608 + pos: 10.5,-8.5 + parent: 16527 + - uid: 25941 components: - type: Transform - pos: 9.5,12.5 - parent: 16504 - - uid: 20609 + pos: 10.5,-7.5 + parent: 16527 + - uid: 25942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 16504 - - uid: 20610 + pos: 10.5,-6.5 + parent: 16527 + - uid: 25943 components: - type: Transform - pos: 4.5,13.5 - parent: 16504 - - uid: 20611 + pos: 10.5,-5.5 + parent: 16527 + - uid: 25944 components: - type: Transform - pos: 5.5,13.5 - parent: 16504 - - uid: 20612 + pos: 10.5,-4.5 + parent: 16527 + - uid: 25945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 16504 - - uid: 20613 + pos: -22.5,2.5 + parent: 16527 + - uid: 25946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 16504 - - uid: 20614 + pos: -22.5,3.5 + parent: 16527 + - uid: 25947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 - parent: 16504 - - uid: 20615 + pos: -22.5,4.5 + parent: 16527 + - uid: 25948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,31.5 - parent: 16504 - - uid: 20616 + pos: -21.5,7.5 + parent: 16527 + - uid: 25949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,31.5 - parent: 16504 - - uid: 20619 + pos: -21.5,4.5 + parent: 16527 + - uid: 25950 components: - type: Transform - pos: 6.5,13.5 - parent: 16504 - - uid: 20620 + pos: -21.5,6.5 + parent: 16527 + - uid: 25951 components: - type: Transform - pos: 11.5,12.5 - parent: 16504 - - uid: 20621 + pos: -21.5,8.5 + parent: 16527 + - uid: 25952 components: - type: Transform - pos: -5.5,13.5 - parent: 16504 - - uid: 20622 + pos: -21.5,16.5 + parent: 16527 + - uid: 25953 components: - type: Transform - pos: 10.5,12.5 - parent: 16504 - - uid: 20623 + pos: -13.5,17.5 + parent: 16527 + - uid: 25954 components: - type: Transform - pos: -6.5,-1.5 - parent: 16504 - - uid: 20624 + pos: -14.5,17.5 + parent: 16527 + - uid: 25955 components: - type: Transform - pos: -6.5,-3.5 - parent: 16504 - - uid: 20625 + pos: -15.5,17.5 + parent: 16527 + - uid: 25956 components: - type: Transform - pos: 12.5,12.5 - parent: 16504 - - uid: 20626 + pos: -16.5,17.5 + parent: 16527 + - uid: 25957 components: - type: Transform - pos: 12.5,11.5 - parent: 16504 - - uid: 20627 + pos: -17.5,17.5 + parent: 16527 + - uid: 25958 components: - type: Transform - pos: 13.5,11.5 - parent: 16504 - - uid: 20628 + pos: -18.5,17.5 + parent: 16527 + - uid: 25959 components: - type: Transform - pos: 13.5,10.5 - parent: 16504 - - uid: 20629 + pos: -19.5,17.5 + parent: 16527 + - uid: 25960 components: - type: Transform - pos: 14.5,10.5 - parent: 16504 - - uid: 20630 + pos: -19.5,18.5 + parent: 16527 + - uid: 25961 components: - type: Transform - pos: 14.5,9.5 - parent: 16504 - - uid: 20631 + pos: -5.5,31.5 + parent: 16527 + - uid: 25962 components: - type: Transform - pos: 15.5,9.5 - parent: 16504 - - uid: 20632 + pos: 23.5,-1.5 + parent: 16527 + - uid: 25963 components: - type: Transform - pos: 6.5,20.5 - parent: 16504 - - uid: 20633 + pos: -8.5,31.5 + parent: 16527 + - uid: 25964 components: - type: Transform - pos: -5.5,14.5 - parent: 16504 - - uid: 20634 + pos: -11.5,27.5 + parent: 16527 + - uid: 25965 components: - type: Transform - pos: -5.5,15.5 - parent: 16504 - - uid: 20635 + pos: -12.5,26.5 + parent: 16527 + - uid: 25966 components: - type: Transform - pos: -4.5,19.5 - parent: 16504 - - uid: 20636 + pos: -11.5,26.5 + parent: 16527 + - uid: 25967 components: - type: Transform - pos: -5.5,17.5 - parent: 16504 - - uid: 20637 + pos: -10.5,31.5 + parent: 16527 + - uid: 25968 components: - type: Transform - pos: -5.5,18.5 - parent: 16504 - - uid: 20638 + pos: -15.5,26.5 + parent: 16527 + - uid: 25969 components: - type: Transform - pos: 6.5,14.5 - parent: 16504 - - uid: 20639 + pos: -13.5,26.5 + parent: 16527 + - uid: 25970 components: - type: Transform - pos: 6.5,15.5 - parent: 16504 - - uid: 20640 + pos: -17.5,26.5 + parent: 16527 + - uid: 25971 components: - type: Transform - pos: -5.5,19.5 - parent: 16504 - - uid: 20641 + pos: -16.5,26.5 + parent: 16527 + - uid: 25972 components: - type: Transform - pos: 6.5,17.5 - parent: 16504 - - uid: 20642 + pos: -18.5,26.5 + parent: 16527 + - uid: 25973 components: - type: Transform - pos: 6.5,18.5 - parent: 16504 - - uid: 20643 + pos: -28.5,36.5 + parent: 16527 + - uid: 25974 components: - type: Transform - pos: 6.5,19.5 - parent: 16504 - - uid: 20644 + pos: -28.5,34.5 + parent: 16527 + - uid: 25975 components: - type: Transform - pos: 5.5,19.5 - parent: 16504 - - uid: 20645 + pos: -29.5,33.5 + parent: 16527 + - uid: 25976 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-9.5 - parent: 16504 - - uid: 20646 + pos: -12.5,17.5 + parent: 16527 + - uid: 25977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-9.5 - parent: 16504 - - uid: 20647 + pos: 21.5,-3.5 + parent: 16527 + - uid: 25978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 16504 - - uid: 20648 + pos: 20.5,-9.5 + parent: 16527 + - uid: 25979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-9.5 - parent: 16504 - - uid: 20649 + pos: 21.5,-6.5 + parent: 16527 + - uid: 25980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-9.5 - parent: 16504 - - uid: 20650 + pos: 21.5,-8.5 + parent: 16527 + - uid: 25981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-8.5 - parent: 16504 - - uid: 20652 + pos: 21.5,-4.5 + parent: 16527 + - uid: 25982 components: - type: Transform - pos: 1.5,19.5 - parent: 16504 - - uid: 20653 + pos: 22.5,-3.5 + parent: 16527 + - uid: 25983 components: - type: Transform - pos: -3.5,19.5 - parent: 16504 - - uid: 20654 + pos: 21.5,-5.5 + parent: 16527 + - uid: 25984 components: - type: Transform - pos: -0.5,19.5 - parent: 16504 - - uid: 20655 + pos: 21.5,-7.5 + parent: 16527 + - uid: 25985 components: - type: Transform - pos: -2.5,19.5 - parent: 16504 - - uid: 20656 + pos: 19.5,-9.5 + parent: 16527 + - uid: 25986 components: - type: Transform - pos: 3.5,19.5 - parent: 16504 - - uid: 20657 + pos: 17.5,-9.5 + parent: 16527 + - uid: 25987 components: - type: Transform - pos: -1.5,19.5 - parent: 16504 - - uid: 20658 + pos: 18.5,-9.5 + parent: 16527 + - uid: 25988 components: - type: Transform - pos: 4.5,19.5 - parent: 16504 - - uid: 20659 + pos: -6.5,31.5 + parent: 16527 + - uid: 25989 components: - type: Transform - pos: 2.5,19.5 - parent: 16504 - - uid: 20660 + pos: 16.5,-9.5 + parent: 16527 + - uid: 25990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-7.5 - parent: 16504 - - uid: 20661 + pos: 23.5,-2.5 + parent: 16527 + - uid: 25991 components: - type: Transform - pos: -9.5,19.5 - parent: 16504 - - uid: 20662 + pos: 23.5,10.5 + parent: 16527 + - uid: 25992 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 16504 - - uid: 20690 + pos: 23.5,8.5 + parent: 16527 + - uid: 25993 components: - type: Transform - pos: -11.5,19.5 - parent: 16504 - - uid: 20691 + pos: 23.5,7.5 + parent: 16527 + - uid: 25994 components: - type: Transform - pos: -6.5,19.5 - parent: 16504 - - uid: 20692 + pos: 23.5,6.5 + parent: 16527 + - uid: 25995 components: - type: Transform - pos: -10.5,19.5 - parent: 16504 - - uid: 20693 + pos: 23.5,5.5 + parent: 16527 + - uid: 25996 components: - type: Transform - pos: -7.5,19.5 - parent: 16504 - - uid: 20694 + pos: 23.5,4.5 + parent: 16527 + - uid: 25997 components: - type: Transform - pos: -11.5,18.5 - parent: 16504 - - uid: 20695 + pos: 23.5,3.5 + parent: 16527 + - uid: 25998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-5.5 - parent: 16504 - - uid: 20696 + pos: 23.5,1.5 + parent: 16527 + - uid: 25999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-4.5 - parent: 16504 - - uid: 20697 + pos: 23.5,2.5 + parent: 16527 + - uid: 26000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,31.5 - parent: 16504 - - uid: 20698 + pos: 23.5,0.5 + parent: 16527 + - uid: 26001 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,31.5 - parent: 16504 - - uid: 20699 + pos: 23.5,-0.5 + parent: 16527 + - uid: 26002 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,31.5 - parent: 16504 - - uid: 20700 + pos: -31.5,32.5 + parent: 16527 + - uid: 26003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,31.5 - parent: 16504 - - uid: 20701 + pos: -30.5,33.5 + parent: 16527 + - uid: 26004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-9.5 - parent: 16504 - - uid: 20702 + pos: 23.5,11.5 + parent: 16527 + - uid: 26005 components: - type: Transform - pos: -5.5,20.5 - parent: 16504 - - uid: 20703 + pos: 23.5,9.5 + parent: 16527 + - uid: 26006 components: - type: Transform - pos: -5.5,21.5 - parent: 16504 - - uid: 20704 + pos: -7.5,31.5 + parent: 16527 + - uid: 26007 components: - type: Transform - pos: -5.5,22.5 - parent: 16504 - - uid: 20705 + pos: 22.5,-2.5 + parent: 16527 + - uid: 26008 components: - type: Transform - pos: -5.5,23.5 - parent: 16504 - - uid: 20706 + pos: 33.5,11.5 + parent: 16527 + - uid: 26009 components: - type: Transform - pos: -5.5,24.5 - parent: 16504 - - uid: 20707 + pos: 32.5,11.5 + parent: 16527 + - uid: 26010 components: - type: Transform - pos: -5.5,25.5 - parent: 16504 - - uid: 20708 + pos: 34.5,12.5 + parent: 16527 + - uid: 26011 components: - type: Transform - pos: -5.5,26.5 - parent: 16504 - - uid: 20709 + pos: 35.5,14.5 + parent: 16527 + - uid: 26012 components: - type: Transform - pos: -5.5,27.5 - parent: 16504 - - uid: 20710 + pos: 26.5,11.5 + parent: 16527 + - uid: 26013 components: - type: Transform - pos: 6.5,21.5 - parent: 16504 - - uid: 20711 + pos: 27.5,11.5 + parent: 16527 + - uid: 26014 components: - type: Transform - pos: 6.5,22.5 - parent: 16504 - - uid: 20712 + pos: 28.5,11.5 + parent: 16527 + - uid: 26015 components: - type: Transform - pos: 6.5,23.5 - parent: 16504 - - uid: 20721 + pos: 29.5,11.5 + parent: 16527 + - uid: 26016 components: - type: Transform - pos: -11.5,39.5 - parent: 16504 - - uid: 20722 + pos: 30.5,11.5 + parent: 16527 + - uid: 26017 components: - type: Transform - pos: -12.5,39.5 - parent: 16504 - - uid: 20723 + pos: 31.5,11.5 + parent: 16527 + - uid: 26018 components: - type: Transform - pos: -14.5,39.5 - parent: 16504 - - uid: 20724 + pos: 34.5,22.5 + parent: 16527 + - uid: 26019 components: - type: Transform - pos: -13.5,39.5 - parent: 16504 - - uid: 20725 + pos: 33.5,12.5 + parent: 16527 + - uid: 26020 components: - type: Transform - pos: -17.5,39.5 - parent: 16504 - - uid: 20726 + pos: 35.5,13.5 + parent: 16527 + - uid: 26021 components: - type: Transform - pos: -15.5,39.5 - parent: 16504 - - uid: 20727 + pos: 33.5,21.5 + parent: 16527 + - uid: 26022 components: - type: Transform - pos: -21.5,14.5 - parent: 16504 - - uid: 20728 + pos: 34.5,20.5 + parent: 16527 + - uid: 26023 components: - type: Transform - pos: -21.5,11.5 - parent: 16504 - - uid: 20729 + pos: 36.5,14.5 + parent: 16527 + - uid: 26024 components: - type: Transform - pos: -21.5,12.5 - parent: 16504 - - uid: 20730 + pos: 36.5,15.5 + parent: 16527 + - uid: 26025 components: - type: Transform - pos: -21.5,15.5 - parent: 16504 - - uid: 20731 + pos: 36.5,16.5 + parent: 16527 + - uid: 26026 components: - type: Transform - pos: 6.5,24.5 - parent: 16504 - - uid: 20732 + pos: 35.5,18.5 + parent: 16527 + - uid: 26027 components: - type: Transform - pos: 6.5,25.5 - parent: 16504 - - uid: 20733 + pos: 35.5,19.5 + parent: 16527 + - uid: 26028 components: - type: Transform - pos: 6.5,26.5 - parent: 16504 - - uid: 20734 + pos: 33.5,20.5 + parent: 16527 + - uid: 26029 components: - type: Transform - pos: -20.5,19.5 - parent: 16504 - - uid: 20735 + pos: 33.5,22.5 + parent: 16527 + - uid: 26030 components: - type: Transform - pos: -20.5,18.5 - parent: 16504 - - uid: 20736 + pos: 36.5,17.5 + parent: 16527 + - uid: 26031 components: - type: Transform - pos: 1.5,-4.5 - parent: 16504 - - uid: 20737 + pos: 36.5,18.5 + parent: 16527 + - uid: 26032 components: - type: Transform - pos: -2.5,2.5 - parent: 16504 - - uid: 20738 + pos: 25.5,11.5 + parent: 16527 + - uid: 26033 components: - type: Transform - pos: -4.5,-8.5 - parent: 16504 - - uid: 20739 + pos: 24.5,11.5 + parent: 16527 + - uid: 26034 components: - type: Transform - pos: 3.5,-4.5 - parent: 16504 - - uid: 20740 + pos: -19.5,26.5 + parent: 16527 + - uid: 26035 components: - type: Transform - pos: -5.5,-8.5 - parent: 16504 - - uid: 20741 + pos: -19.5,27.5 + parent: 16527 + - uid: 26036 components: - type: Transform - pos: -0.5,-4.5 - parent: 16504 - - uid: 20742 + pos: -19.5,28.5 + parent: 16527 + - uid: 26037 components: - type: Transform - pos: 2.5,-4.5 - parent: 16504 - - uid: 20743 + pos: 9.5,35.5 + parent: 16527 + - uid: 26038 components: - type: Transform - pos: -1.5,-8.5 - parent: 16504 - - uid: 20744 + pos: 9.5,36.5 + parent: 16527 + - uid: 26039 components: - type: Transform - pos: -0.5,-8.5 - parent: 16504 - - uid: 20745 + pos: 9.5,37.5 + parent: 16527 + - uid: 26040 components: - type: Transform - pos: 1.5,-8.5 - parent: 16504 - - uid: 20746 + pos: 9.5,38.5 + parent: 16527 + - uid: 26041 components: - type: Transform - pos: 2.5,-8.5 - parent: 16504 - - uid: 20747 + pos: 7.5,35.5 + parent: 16527 + - uid: 26042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-4.5 - parent: 16504 - - uid: 20748 + pos: 7.5,36.5 + parent: 16527 + - uid: 26043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 16504 - - uid: 20749 + pos: 7.5,37.5 + parent: 16527 + - uid: 26044 components: - type: Transform - pos: -2.5,-8.5 - parent: 16504 - - uid: 20750 + pos: 7.5,38.5 + parent: 16527 + - uid: 26045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-7.5 - parent: 16504 - - uid: 20751 + pos: 8.5,38.5 + parent: 16527 + - uid: 26046 components: - type: Transform - pos: -3.5,-8.5 - parent: 16504 - - uid: 20752 + pos: -19.5,29.5 + parent: 16527 + - uid: 26047 components: - type: Transform - pos: -2.5,-5.5 - parent: 16504 - - uid: 20753 + pos: -19.5,30.5 + parent: 16527 + - uid: 26048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 16504 - - uid: 20754 + pos: -19.5,31.5 + parent: 16527 + - uid: 26049 components: - type: Transform - pos: -1.5,-4.5 - parent: 16504 - - uid: 20755 + pos: -19.5,32.5 + parent: 16527 + - uid: 26050 components: - type: Transform - pos: 4.5,-8.5 - parent: 16504 - - uid: 20756 + pos: -19.5,36.5 + parent: 16527 + - uid: 26051 components: - type: Transform - pos: 3.5,-8.5 - parent: 16504 - - uid: 20757 + pos: -6.5,46.5 + parent: 16527 + - uid: 26052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-5.5 - parent: 16504 - - uid: 20758 + pos: -3.5,46.5 + parent: 16527 + - uid: 26053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-3.5 - parent: 16504 - - uid: 20759 + pos: -19.5,35.5 + parent: 16527 + - uid: 26054 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 16504 - - uid: 20760 + pos: 16.5,39.5 + parent: 16527 + - uid: 26055 components: - type: Transform - pos: -2.5,7.5 - parent: 16504 - - uid: 20761 + pos: 17.5,39.5 + parent: 16527 + - uid: 26056 components: - type: Transform - pos: -6.5,-8.5 - parent: 16504 - - uid: 20762 + pos: 18.5,38.5 + parent: 16527 + - uid: 26057 components: - type: Transform - pos: -6.5,-7.5 - parent: 16504 - - uid: 20763 + pos: 18.5,39.5 + parent: 16527 + - uid: 26058 components: - type: Transform - pos: -6.5,-6.5 - parent: 16504 - - uid: 20764 + pos: 18.5,37.5 + parent: 16527 + - uid: 26059 components: - type: Transform - pos: -6.5,-5.5 - parent: 16504 - - uid: 20765 + pos: 19.5,37.5 + parent: 16527 + - uid: 26060 components: - type: Transform - pos: 6.5,27.5 - parent: 16504 - - uid: 20766 + pos: 20.5,37.5 + parent: 16527 + - uid: 26061 components: - type: Transform - pos: -5.5,-4.5 - parent: 16504 - - uid: 20767 + pos: 17.5,44.5 + parent: 16527 + - uid: 26062 components: - type: Transform - pos: -4.5,-4.5 - parent: 16504 - - uid: 20768 + pos: 35.5,22.5 + parent: 16527 + - uid: 26063 components: - type: Transform - pos: -3.5,-4.5 - parent: 16504 - - uid: 20769 + pos: 38.5,33.5 + parent: 16527 + - uid: 26064 components: - type: Transform - pos: 5.5,-8.5 - parent: 16504 - - uid: 20770 + pos: 36.5,22.5 + parent: 16527 + - uid: 26065 components: - type: Transform - pos: 6.5,-8.5 - parent: 16504 - - uid: 20771 + pos: 37.5,22.5 + parent: 16527 + - uid: 26066 components: - type: Transform - pos: 7.5,-8.5 - parent: 16504 - - uid: 20772 + pos: 38.5,22.5 + parent: 16527 + - uid: 26067 components: - type: Transform - pos: 4.5,-4.5 - parent: 16504 - - uid: 20773 + pos: 38.5,26.5 + parent: 16527 + - uid: 26068 components: - type: Transform - pos: 7.5,-5.5 - parent: 16504 - - uid: 20774 + pos: 38.5,25.5 + parent: 16527 + - uid: 26069 components: - type: Transform - pos: 7.5,-6.5 - parent: 16504 - - uid: 20775 + pos: 38.5,27.5 + parent: 16527 + - uid: 26070 components: - type: Transform - pos: 7.5,-7.5 - parent: 16504 - - uid: 20776 + pos: 38.5,24.5 + parent: 16527 + - uid: 26071 components: - type: Transform - pos: -2.5,4.5 - parent: 16504 - - uid: 20777 + pos: 38.5,28.5 + parent: 16527 + - uid: 26072 components: - type: Transform - pos: -2.5,5.5 - parent: 16504 - - uid: 20778 + pos: 38.5,23.5 + parent: 16527 + - uid: 26073 components: - type: Transform - pos: -2.5,6.5 - parent: 16504 - - uid: 20779 + pos: 9.5,46.5 + parent: 16527 + - uid: 26074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 16504 - - uid: 20780 + pos: 38.5,29.5 + parent: 16527 + - uid: 26075 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-9.5 - parent: 16504 - - uid: 20781 + pos: 38.5,35.5 + parent: 16527 + - uid: 26076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-9.5 - parent: 16504 - - uid: 20782 + pos: 31.5,36.5 + parent: 16527 + - uid: 26077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-9.5 - parent: 16504 - - uid: 20783 + pos: 28.5,36.5 + parent: 16527 + - uid: 26078 components: - type: Transform - pos: 0.5,13.5 - parent: 16504 - - uid: 20784 + pos: 33.5,36.5 + parent: 16527 + - uid: 26079 components: - type: Transform - pos: -1.5,13.5 - parent: 16504 - - uid: 20785 + pos: 32.5,36.5 + parent: 16527 + - uid: 26080 components: - type: Transform - pos: -5.5,28.5 - parent: 16504 - - uid: 20786 + pos: 35.5,36.5 + parent: 16527 + - uid: 26081 components: - type: Transform - pos: -2.5,13.5 - parent: 16504 - - uid: 20787 + pos: 34.5,36.5 + parent: 16527 + - uid: 26082 components: - type: Transform - pos: -2.5,12.5 - parent: 16504 - - uid: 20788 + pos: 36.5,36.5 + parent: 16527 + - uid: 26083 components: - type: Transform - pos: -2.5,11.5 - parent: 16504 - - uid: 20789 + pos: 22.5,37.5 + parent: 16527 + - uid: 26084 components: - type: Transform - pos: -2.5,8.5 - parent: 16504 - - uid: 20790 + pos: 23.5,37.5 + parent: 16527 + - uid: 26085 components: - type: Transform - pos: -2.5,9.5 - parent: 16504 - - uid: 20791 + pos: 29.5,36.5 + parent: 16527 + - uid: 26086 components: - type: Transform - pos: 3.5,8.5 - parent: 16504 - - uid: 20792 + pos: 26.5,36.5 + parent: 16527 + - uid: 26087 components: - type: Transform - pos: 3.5,9.5 - parent: 16504 - - uid: 20793 + pos: 30.5,36.5 + parent: 16527 + - uid: 26088 components: - type: Transform - pos: 3.5,11.5 - parent: 16504 - - uid: 20794 + pos: 27.5,36.5 + parent: 16527 + - uid: 26089 components: - type: Transform - pos: 3.5,12.5 - parent: 16504 - - uid: 20795 + pos: 25.5,36.5 + parent: 16527 + - uid: 26090 components: - type: Transform - pos: -5.5,29.5 - parent: 16504 - - uid: 20796 + pos: 24.5,36.5 + parent: 16527 + - uid: 26091 components: - type: Transform - pos: -16.5,1.5 - parent: 16504 - - uid: 20797 + pos: 38.5,34.5 + parent: 16527 + - uid: 26092 components: - type: Transform - pos: -17.5,1.5 - parent: 16504 - - uid: 20798 + pos: 38.5,32.5 + parent: 16527 + - uid: 26093 components: - type: Transform - pos: -18.5,1.5 - parent: 16504 - - uid: 20799 + pos: 38.5,31.5 + parent: 16527 + - uid: 26094 components: - type: Transform - pos: -15.5,1.5 - parent: 16504 - - uid: 20800 + pos: 37.5,35.5 + parent: 16527 + - uid: 26095 components: - type: Transform - pos: -15.5,0.5 - parent: 16504 - - uid: 20801 + pos: 36.5,35.5 + parent: 16527 + - uid: 26096 components: - type: Transform - pos: -15.5,-1.5 - parent: 16504 - - uid: 20802 + pos: 21.5,37.5 + parent: 16527 + - uid: 26097 components: - type: Transform - pos: -13.5,-8.5 - parent: 16504 - - uid: 20803 + pos: 23.5,36.5 + parent: 16527 + - uid: 26098 components: - type: Transform - pos: -13.5,-9.5 - parent: 16504 - - uid: 20804 + pos: -15.5,45.5 + parent: 16527 + - uid: 26099 components: - type: Transform - pos: -13.5,-2.5 - parent: 16504 - - uid: 20805 + pos: -22.5,39.5 + parent: 16527 + - uid: 26100 components: - type: Transform - pos: -14.5,-2.5 - parent: 16504 - - uid: 20806 + pos: -22.5,40.5 + parent: 16527 + - uid: 26101 components: - type: Transform - pos: -14.5,-1.5 - parent: 16504 - - uid: 20807 + pos: -22.5,41.5 + parent: 16527 + - uid: 26102 components: - type: Transform - pos: -15.5,-0.5 - parent: 16504 - - uid: 20808 + pos: -22.5,42.5 + parent: 16527 + - uid: 26103 components: - type: Transform - pos: -13.5,-3.5 - parent: 16504 - - uid: 20809 + pos: -22.5,43.5 + parent: 16527 + - uid: 26104 components: - type: Transform - pos: -18.5,2.5 - parent: 16504 - - uid: 20810 + pos: -22.5,44.5 + parent: 16527 + - uid: 26105 components: - type: Transform - pos: -18.5,3.5 - parent: 16504 - - uid: 20811 + pos: -17.5,45.5 + parent: 16527 + - uid: 26106 components: - type: Transform - pos: -18.5,4.5 - parent: 16504 - - uid: 20812 + pos: -13.5,46.5 + parent: 16527 + - uid: 26107 components: - type: Transform - pos: -18.5,5.5 - parent: 16504 - - uid: 20813 + pos: -22.5,45.5 + parent: 16527 + - uid: 26108 components: - type: Transform - pos: -11.5,-9.5 - parent: 16504 - - uid: 20814 + pos: -12.5,46.5 + parent: 16527 + - uid: 26109 components: - type: Transform - pos: -10.5,-9.5 - parent: 16504 - - uid: 20815 + pos: 5.5,-0.5 + parent: 16527 + - uid: 26110 components: - type: Transform - pos: -12.5,-9.5 - parent: 16504 - - uid: 20816 + pos: 5.5,-4.5 + parent: 16527 + - uid: 26111 components: - type: Transform - pos: -9.5,-9.5 - parent: 16504 - - uid: 20817 + pos: 6.5,-4.5 + parent: 16527 + - uid: 26112 components: - type: Transform - pos: -5.5,30.5 - parent: 16504 - - uid: 20818 + pos: 7.5,-4.5 + parent: 16527 + - uid: 26113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-9.5 - parent: 16504 - - uid: 20819 + pos: 5.5,-1.5 + parent: 16527 + - uid: 26114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-2.5 - parent: 16504 - - uid: 20820 + pos: 5.5,-2.5 + parent: 16527 + - uid: 26115 components: - type: Transform - pos: -9.5,-5.5 - parent: 16504 - - uid: 20821 + pos: 5.5,-3.5 + parent: 16527 + - uid: 26116 components: - type: Transform - pos: -9.5,-6.5 - parent: 16504 - - uid: 20822 + pos: 6.5,-0.5 + parent: 16527 + - uid: 26117 components: - type: Transform - pos: -13.5,-4.5 - parent: 16504 - - uid: 20823 + pos: 7.5,-0.5 + parent: 16527 + - uid: 26118 components: - type: Transform - pos: -13.5,-5.5 - parent: 16504 - - uid: 20824 + pos: 8.5,-0.5 + parent: 16527 + - uid: 26119 components: - type: Transform - pos: -13.5,-6.5 - parent: 16504 - - uid: 20825 + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 16527 + - uid: 26120 components: - type: Transform - pos: -9.5,-7.5 - parent: 16504 - - uid: 20826 + pos: -3.5,1.5 + parent: 16527 + - uid: 26121 components: - type: Transform - pos: -9.5,-8.5 - parent: 16504 - - uid: 20827 + pos: -7.5,0.5 + parent: 16527 + - uid: 26122 components: - type: Transform - pos: -13.5,-7.5 - parent: 16504 - - uid: 20828 + pos: -6.5,0.5 + parent: 16527 + - uid: 26123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-3.5 - parent: 16504 - - uid: 20829 + pos: -5.5,0.5 + parent: 16527 + - uid: 26124 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-2.5 - parent: 16504 - - uid: 20830 + pos: -4.5,0.5 + parent: 16527 + - uid: 26125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,31.5 - parent: 16504 - - uid: 20831 + pos: -3.5,0.5 + parent: 16527 + - uid: 26126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,31.5 - parent: 16504 - - uid: 20832 + pos: -3.5,2.5 + parent: 16527 + - uid: 26127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,31.5 - parent: 16504 - - uid: 20833 + pos: -3.5,3.5 + parent: 16527 + - uid: 26128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,41.5 - parent: 16504 - - uid: 20834 + pos: -3.5,4.5 + parent: 16527 + - uid: 26129 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 16504 - - uid: 20835 + pos: -5.5,4.5 + parent: 16527 + - uid: 26130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-4.5 - parent: 16504 - - uid: 20836 + pos: -5.5,3.5 + parent: 16527 + - uid: 26131 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-4.5 - parent: 16504 - - uid: 20837 + pos: -5.5,2.5 + parent: 16527 + - uid: 26132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-4.5 - parent: 16504 - - uid: 20838 + pos: -5.5,1.5 + parent: 16527 + - uid: 26133 components: - type: Transform - pos: -19.5,5.5 - parent: 16504 - - uid: 20839 + pos: -4.5,2.5 + parent: 16527 + - uid: 26134 components: - type: Transform - pos: -20.5,5.5 - parent: 16504 - - uid: 20840 + pos: -6.5,2.5 + parent: 16527 + - uid: 26135 components: - type: Transform - pos: -21.5,5.5 - parent: 16504 - - uid: 20841 + pos: -7.5,2.5 + parent: 16527 + - uid: 26136 components: - type: Transform - pos: -21.5,6.5 - parent: 16504 - - uid: 20842 + pos: -7.5,1.5 + parent: 16527 + - uid: 26137 components: - type: Transform - pos: -21.5,7.5 - parent: 16504 - - uid: 20843 + pos: -4.5,4.5 + parent: 16527 + - uid: 26138 components: - type: Transform - pos: -21.5,8.5 - parent: 16504 - - uid: 20844 + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 16527 + - uid: 26139 components: - type: Transform - pos: -21.5,9.5 - parent: 16504 - - uid: 20845 + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 16527 + - uid: 26140 components: - type: Transform - pos: -21.5,10.5 - parent: 16504 - - uid: 20846 + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 16527 + - uid: 26141 components: - type: Transform - pos: -21.5,16.5 - parent: 16504 - - uid: 20847 + pos: 9.5,-2.5 + parent: 16527 + - uid: 26142 components: - type: Transform - pos: -20.5,16.5 - parent: 16504 - - uid: 20848 + pos: 9.5,-3.5 + parent: 16527 + - uid: 26143 components: - type: Transform - pos: -20.5,17.5 - parent: 16504 - - uid: 20849 + pos: 9.5,-4.5 + parent: 16527 + - uid: 26144 components: - type: Transform - pos: 23.5,-1.5 - parent: 16504 - - uid: 20850 + pos: 8.5,-4.5 + parent: 16527 + - uid: 26145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-0.5 - parent: 16504 - - uid: 20851 + pos: 9.5,-0.5 + parent: 16527 + - uid: 26146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-0.5 - parent: 16504 - - uid: 20852 + pos: 9.5,-1.5 + parent: 16527 + - uid: 26147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 16504 - - uid: 20853 + pos: 11.5,1.5 + parent: 16527 + - uid: 26148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 16504 - - uid: 20854 + pos: 12.5,1.5 + parent: 16527 + - uid: 26149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-4.5 - parent: 16504 - - uid: 20855 + pos: 11.5,0.5 + parent: 16527 + - uid: 26150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 16504 - - uid: 20856 + pos: 10.5,0.5 + parent: 16527 + - uid: 26151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,28.5 - parent: 16504 - - uid: 20857 + pos: 10.5,-0.5 + parent: 16527 + - uid: 26152 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,27.5 - parent: 16504 - - uid: 20858 + pos: 11.5,-7.5 + parent: 16527 + - uid: 26153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,31.5 - parent: 16504 - - uid: 20859 + pos: 13.5,-7.5 + parent: 16527 + - uid: 26154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,31.5 - parent: 16504 - - uid: 20860 + pos: -25.5,23.5 + parent: 16527 + - uid: 26155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,31.5 - parent: 16504 - - uid: 20861 + pos: -24.5,23.5 + parent: 16527 + - uid: 26156 components: - type: Transform - pos: 17.5,8.5 - parent: 16504 - - uid: 20862 + pos: -16.5,60.5 + parent: 16527 + - uid: 26157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,30.5 - parent: 16504 - - uid: 20863 + pos: -16.5,61.5 + parent: 16527 + - uid: 26158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,30.5 - parent: 16504 - - uid: 20864 + pos: -16.5,62.5 + parent: 16527 + - uid: 26159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,31.5 - parent: 16504 - - uid: 20865 + pos: -16.5,63.5 + parent: 16527 + - uid: 26160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,29.5 - parent: 16504 - - uid: 20866 + pos: -16.5,64.5 + parent: 16527 + - uid: 26161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,31.5 - parent: 16504 - - uid: 20867 + pos: -16.5,66.5 + parent: 16527 + - uid: 26162 components: - type: Transform - pos: 18.5,8.5 - parent: 16504 - - uid: 20868 + pos: 38.5,30.5 + parent: 16527 + - uid: 26163 components: - type: Transform - pos: 23.5,9.5 - parent: 16504 - - uid: 20869 + pos: -16.5,69.5 + parent: 16527 + - uid: 26164 components: - type: Transform - pos: 23.5,8.5 - parent: 16504 - - uid: 20870 + pos: -16.5,68.5 + parent: 16527 + - uid: 26165 components: - type: Transform - pos: 23.5,7.5 - parent: 16504 - - uid: 20871 + pos: -16.5,67.5 + parent: 16527 + - uid: 26166 components: - type: Transform - pos: 23.5,6.5 - parent: 16504 - - uid: 20872 + pos: 10.5,46.5 + parent: 16527 + - uid: 26167 components: - type: Transform - pos: 23.5,5.5 - parent: 16504 - - uid: 20873 + pos: 11.5,46.5 + parent: 16527 + - uid: 26168 components: - type: Transform - pos: 23.5,4.5 - parent: 16504 - - uid: 20874 + pos: -8.5,75.5 + parent: 16527 + - uid: 26169 components: - type: Transform - pos: 23.5,3.5 - parent: 16504 - - uid: 20875 + pos: 8.5,44.5 + parent: 16527 + - uid: 26170 components: - type: Transform - pos: 23.5,2.5 - parent: 16504 - - uid: 20876 + pos: 35.5,57.5 + parent: 16527 + - uid: 26171 components: - type: Transform - pos: 23.5,1.5 - parent: 16504 - - uid: 20877 + pos: 20.5,53.5 + parent: 16527 + - uid: 26172 components: - type: Transform - pos: 23.5,0.5 - parent: 16504 - - uid: 20878 + pos: 20.5,54.5 + parent: 16527 + - uid: 26173 components: - type: Transform - pos: 23.5,-0.5 - parent: 16504 - - uid: 20879 + pos: 20.5,55.5 + parent: 16527 + - uid: 26174 components: - type: Transform - pos: 23.5,11.5 - parent: 16504 - - uid: 20880 + pos: 25.5,58.5 + parent: 16527 + - uid: 26175 components: - type: Transform - pos: 23.5,10.5 - parent: 16504 - - uid: 20881 + pos: 25.5,57.5 + parent: 16527 + - uid: 26176 components: - type: Transform - pos: 19.5,7.5 - parent: 16504 - - uid: 20882 + pos: 26.5,57.5 + parent: 16527 + - uid: 26177 components: - type: Transform - pos: 20.5,7.5 - parent: 16504 - - uid: 20883 + pos: 12.5,46.5 + parent: 16527 + - uid: 26178 components: - type: Transform - pos: 33.5,11.5 - parent: 16504 - - uid: 20884 + pos: 16.5,46.5 + parent: 16527 + - uid: 26179 components: - type: Transform - pos: 32.5,11.5 - parent: 16504 - - uid: 20885 + pos: 16.5,45.5 + parent: 16527 + - uid: 26180 components: - type: Transform - pos: 34.5,12.5 - parent: 16504 - - uid: 20886 + pos: 16.5,44.5 + parent: 16527 + - uid: 26181 components: - type: Transform - pos: 35.5,13.5 - parent: 16504 - - uid: 20887 + pos: 18.5,44.5 + parent: 16527 + - uid: 26182 components: - type: Transform - pos: 26.5,11.5 - parent: 16504 - - uid: 20888 + pos: 19.5,44.5 + parent: 16527 + - uid: 26183 components: - type: Transform - pos: 27.5,11.5 - parent: 16504 - - uid: 20889 + pos: 20.5,44.5 + parent: 16527 + - uid: 26184 components: - type: Transform - pos: 28.5,11.5 - parent: 16504 - - uid: 20890 + pos: 20.5,43.5 + parent: 16527 + - uid: 26185 components: - type: Transform - pos: 29.5,11.5 - parent: 16504 - - uid: 20891 + pos: 20.5,42.5 + parent: 16527 + - uid: 26186 components: - type: Transform - pos: 30.5,11.5 - parent: 16504 - - uid: 20892 + pos: -8.5,77.5 + parent: 16527 + - uid: 26187 components: - type: Transform - pos: 31.5,11.5 - parent: 16504 - - uid: 20893 + pos: -8.5,76.5 + parent: 16527 + - uid: 26188 components: - type: Transform - pos: 33.5,21.5 - parent: 16504 - - uid: 20894 + pos: -8.5,79.5 + parent: 16527 + - uid: 26189 components: - type: Transform - pos: 33.5,12.5 - parent: 16504 - - uid: 20895 + pos: 32.5,57.5 + parent: 16527 + - uid: 26190 components: - type: Transform - pos: 34.5,13.5 - parent: 16504 - - uid: 20896 + pos: 33.5,57.5 + parent: 16527 + - uid: 26191 components: - type: Transform - pos: 34.5,20.5 - parent: 16504 - - uid: 20897 + pos: 34.5,57.5 + parent: 16527 + - uid: 26192 components: - type: Transform - pos: 35.5,19.5 - parent: 16504 - - uid: 20898 + pos: 35.5,56.5 + parent: 16527 + - uid: 26193 components: - type: Transform - pos: 35.5,14.5 - parent: 16504 - - uid: 20899 + pos: 22.5,42.5 + parent: 16527 + - uid: 26194 components: - type: Transform - pos: 36.5,14.5 - parent: 16504 - - uid: 20900 + pos: 23.5,42.5 + parent: 16527 + - uid: 26195 components: - type: Transform - pos: 36.5,15.5 - parent: 16504 - - uid: 20901 + pos: 24.5,42.5 + parent: 16527 + - uid: 26196 components: - type: Transform - pos: 36.5,18.5 - parent: 16504 - - uid: 20902 + pos: 24.5,41.5 + parent: 16527 + - uid: 26197 components: - type: Transform - pos: 35.5,18.5 - parent: 16504 - - uid: 20903 + pos: 35.5,55.5 + parent: 16527 + - uid: 26198 components: - type: Transform - pos: 34.5,19.5 - parent: 16504 - - uid: 20904 + pos: 36.5,53.5 + parent: 16527 + - uid: 26199 components: - type: Transform - pos: 33.5,20.5 - parent: 16504 - - uid: 20905 + pos: -8.5,78.5 + parent: 16527 + - uid: 26200 components: - type: Transform - pos: 36.5,16.5 - parent: 16504 - - uid: 20906 + pos: 12.5,40.5 + parent: 16527 + - uid: 26201 components: - type: Transform - pos: 36.5,17.5 - parent: 16504 - - uid: 20907 + pos: -8.5,80.5 + parent: 16527 + - uid: 26202 components: - type: Transform - pos: 25.5,11.5 - parent: 16504 - - uid: 20908 + pos: -10.5,81.5 + parent: 16527 + - uid: 26203 components: - type: Transform - pos: 24.5,11.5 - parent: 16504 - - uid: 20909 + pos: -9.5,81.5 + parent: 16527 + - uid: 26204 components: - type: Transform - pos: -19.5,27.5 - parent: 16504 - - uid: 20910 + pos: -11.5,81.5 + parent: 16527 + - uid: 26205 components: - type: Transform - pos: -19.5,28.5 - parent: 16504 - - uid: 20911 + pos: -13.5,81.5 + parent: 16527 + - uid: 26206 components: - type: Transform - pos: -19.5,29.5 - parent: 16504 - - uid: 20912 + pos: -14.5,81.5 + parent: 16527 + - uid: 26207 components: - type: Transform - pos: -19.5,30.5 - parent: 16504 - - uid: 20913 + pos: 27.5,41.5 + parent: 16527 + - uid: 26208 components: - type: Transform - pos: -19.5,31.5 - parent: 16504 - - uid: 20914 + pos: 26.5,41.5 + parent: 16527 + - uid: 26209 components: - type: Transform - pos: -19.5,32.5 - parent: 16504 - - uid: 20915 + pos: 25.5,41.5 + parent: 16527 + - uid: 26210 components: - type: Transform - pos: -19.5,33.5 - parent: 16504 - - uid: 20916 + pos: 19.5,53.5 + parent: 16527 + - uid: 26211 components: - type: Transform - pos: -19.5,34.5 - parent: 16504 - - uid: 20917 + pos: 18.5,53.5 + parent: 16527 + - uid: 26212 components: - type: Transform - pos: -19.5,35.5 - parent: 16504 - - uid: 20918 + pos: 17.5,53.5 + parent: 16527 + - uid: 26213 components: - type: Transform - pos: -19.5,36.5 - parent: 16504 - - uid: 20919 + pos: 16.5,53.5 + parent: 16527 + - uid: 26214 components: - type: Transform - pos: 20.5,6.5 - parent: 16504 - - uid: 20920 + pos: 16.5,54.5 + parent: 16527 + - uid: 26215 components: - type: Transform - pos: 20.5,5.5 - parent: 16504 - - uid: 20921 + pos: 14.5,54.5 + parent: 16527 + - uid: 26216 components: - type: Transform - pos: 4.5,39.5 - parent: 16504 - - uid: 20922 + pos: 15.5,54.5 + parent: 16527 + - uid: 26217 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,36.5 - parent: 16504 - - uid: 20923 + pos: 13.5,54.5 + parent: 16527 + - uid: 26218 components: - type: Transform - pos: 7.5,39.5 - parent: 16504 - - uid: 20924 + pos: 13.5,55.5 + parent: 16527 + - uid: 26219 components: - type: Transform - pos: -19.5,37.5 - parent: 16504 - - uid: 20925 + pos: 13.5,56.5 + parent: 16527 + - uid: 26220 components: - type: Transform - pos: -19.5,38.5 - parent: 16504 - - uid: 20926 + pos: 13.5,57.5 + parent: 16527 + - uid: 26221 components: - type: Transform - pos: -19.5,39.5 - parent: 16504 - - uid: 20927 + pos: 13.5,58.5 + parent: 16527 + - uid: 26222 components: - type: Transform - pos: -18.5,39.5 - parent: 16504 - - uid: 20928 + pos: 13.5,59.5 + parent: 16527 + - uid: 26223 components: - type: Transform - pos: -16.5,39.5 - parent: 16504 - - uid: 20929 + pos: 13.5,60.5 + parent: 16527 + - uid: 26224 components: - type: Transform - pos: -10.5,39.5 - parent: 16504 - - uid: 20930 + pos: 13.5,61.5 + parent: 16527 + - uid: 26225 components: - type: Transform - pos: -9.5,39.5 - parent: 16504 - - uid: 20931 + pos: 13.5,62.5 + parent: 16527 + - uid: 26226 components: - type: Transform - pos: -8.5,39.5 - parent: 16504 - - uid: 20932 + pos: 13.5,63.5 + parent: 16527 + - uid: 26227 components: - type: Transform - pos: -7.5,39.5 - parent: 16504 - - uid: 20933 + pos: 12.5,63.5 + parent: 16527 + - uid: 26228 components: - type: Transform - pos: 6.5,31.5 - parent: 16504 - - uid: 20934 + pos: -16.5,70.5 + parent: 16527 + - uid: 26229 components: - type: Transform - pos: 6.5,30.5 - parent: 16504 - - uid: 20935 + pos: 12.5,64.5 + parent: 16527 + - uid: 26230 components: - type: Transform - pos: 6.5,29.5 - parent: 16504 - - uid: 20936 + pos: 6.5,83.5 + parent: 16527 + - uid: 26231 components: - type: Transform - pos: 6.5,28.5 - parent: 16504 - - uid: 20937 + pos: 6.5,84.5 + parent: 16527 + - uid: 26232 components: - type: Transform - pos: 7.5,31.5 - parent: 16504 - - uid: 20938 + pos: 5.5,84.5 + parent: 16527 + - uid: 26233 components: - type: Transform - pos: 7.5,32.5 - parent: 16504 - - uid: 20939 + pos: 1.5,84.5 + parent: 16527 + - uid: 26234 components: - type: Transform - pos: 10.5,20.5 - parent: 16504 - - uid: 20940 + pos: 8.5,71.5 + parent: 16527 + - uid: 26235 components: - type: Transform - pos: 10.5,21.5 - parent: 16504 - - uid: 20941 + pos: 8.5,72.5 + parent: 16527 + - uid: 26236 components: - type: Transform - pos: 10.5,22.5 - parent: 16504 - - uid: 20942 + pos: -0.5,83.5 + parent: 16527 + - uid: 26237 components: - type: Transform - pos: 10.5,23.5 - parent: 16504 - - uid: 20943 + pos: -0.5,84.5 + parent: 16527 + - uid: 26238 components: - type: Transform - pos: 9.5,39.5 - parent: 16504 - - uid: 20944 + pos: -0.5,82.5 + parent: 16527 + - uid: 26239 components: - type: Transform - pos: 8.5,39.5 - parent: 16504 - - uid: 20945 + pos: -0.5,81.5 + parent: 16527 + - uid: 26240 components: - type: Transform - pos: 10.5,24.5 - parent: 16504 - - uid: 20946 + pos: -16.5,71.5 + parent: 16527 + - uid: 26241 components: - type: Transform - pos: 10.5,25.5 - parent: 16504 - - uid: 20947 + pos: -16.5,72.5 + parent: 16527 + - uid: 26242 components: - type: Transform - pos: 34.5,22.5 - parent: 16504 - - uid: 20948 + pos: -16.5,73.5 + parent: 16527 + - uid: 26243 components: - type: Transform - pos: 33.5,22.5 - parent: 16504 - - uid: 20949 + pos: -16.5,74.5 + parent: 16527 + - uid: 26244 components: - type: Transform - pos: 38.5,30.5 - parent: 16504 - - uid: 20950 + pos: -16.5,75.5 + parent: 16527 + - uid: 26245 components: - type: Transform - pos: 35.5,22.5 - parent: 16504 - - uid: 20951 + pos: -16.5,79.5 + parent: 16527 + - uid: 26246 components: - type: Transform - pos: 36.5,22.5 - parent: 16504 - - uid: 20952 + pos: -16.5,76.5 + parent: 16527 + - uid: 26247 components: - type: Transform - pos: 37.5,22.5 - parent: 16504 - - uid: 20953 + pos: -16.5,81.5 + parent: 16527 + - uid: 26248 components: - type: Transform - pos: 38.5,22.5 - parent: 16504 - - uid: 20954 + pos: -16.5,80.5 + parent: 16527 + - uid: 26249 components: - type: Transform - pos: 38.5,23.5 - parent: 16504 - - uid: 20955 + pos: -16.5,78.5 + parent: 16527 + - uid: 26250 components: - type: Transform - pos: 38.5,24.5 - parent: 16504 - - uid: 20956 + pos: -16.5,77.5 + parent: 16527 + - uid: 26251 components: - type: Transform - pos: 38.5,25.5 - parent: 16504 - - uid: 20957 + pos: 35.5,54.5 + parent: 16527 + - uid: 26252 components: - type: Transform - pos: 38.5,26.5 - parent: 16504 - - uid: 20958 + pos: 36.5,52.5 + parent: 16527 + - uid: 26253 components: - type: Transform - pos: 38.5,27.5 - parent: 16504 - - uid: 20959 + pos: 36.5,50.5 + parent: 16527 + - uid: 26254 components: - type: Transform - pos: 38.5,28.5 - parent: 16504 - - uid: 20960 + pos: 36.5,51.5 + parent: 16527 + - uid: 26255 components: - type: Transform - pos: 38.5,29.5 - parent: 16504 - - uid: 20961 + pos: 36.5,49.5 + parent: 16527 + - uid: 26256 components: - type: Transform - pos: 38.5,35.5 - parent: 16504 - - uid: 20962 + pos: 36.5,48.5 + parent: 16527 + - uid: 26257 components: - type: Transform - pos: 30.5,36.5 - parent: 16504 - - uid: 20963 + pos: 36.5,47.5 + parent: 16527 + - uid: 26258 components: - type: Transform - pos: 29.5,36.5 - parent: 16504 - - uid: 20964 + pos: 35.5,42.5 + parent: 16527 + - uid: 26259 components: - type: Transform - pos: 32.5,36.5 - parent: 16504 - - uid: 20965 + pos: 35.5,41.5 + parent: 16527 + - uid: 26260 components: - type: Transform - pos: 31.5,36.5 - parent: 16504 - - uid: 20966 + pos: 35.5,44.5 + parent: 16527 + - uid: 26261 components: - type: Transform - pos: 34.5,36.5 - parent: 16504 - - uid: 20967 + pos: 35.5,43.5 + parent: 16527 + - uid: 26262 components: - type: Transform - pos: 33.5,36.5 - parent: 16504 - - uid: 20968 + pos: 35.5,45.5 + parent: 16527 + - uid: 26263 components: - type: Transform - pos: 36.5,36.5 - parent: 16504 - - uid: 20969 + pos: 35.5,46.5 + parent: 16527 + - uid: 26264 components: - type: Transform - pos: 35.5,36.5 - parent: 16504 - - uid: 20970 + pos: 34.5,41.5 + parent: 16527 + - uid: 26265 components: - type: Transform - pos: 20.5,37.5 - parent: 16504 - - uid: 20971 + pos: 33.5,41.5 + parent: 16527 + - uid: 26266 components: - type: Transform - pos: 21.5,37.5 - parent: 16504 - - uid: 20972 + pos: 32.5,41.5 + parent: 16527 + - uid: 26267 components: - type: Transform - pos: 25.5,36.5 - parent: 16504 - - uid: 20973 + pos: 31.5,41.5 + parent: 16527 + - uid: 26268 components: - type: Transform - pos: 26.5,36.5 - parent: 16504 - - uid: 20974 + pos: 30.5,41.5 + parent: 16527 + - uid: 26269 components: - type: Transform - pos: 27.5,36.5 - parent: 16504 - - uid: 20975 + pos: 29.5,41.5 + parent: 16527 + - uid: 26270 components: - type: Transform - pos: 28.5,36.5 - parent: 16504 - - uid: 20976 + pos: 28.5,41.5 + parent: 16527 + - uid: 26271 components: - type: Transform - pos: 24.5,36.5 - parent: 16504 - - uid: 20977 + pos: -0.5,79.5 + parent: 16527 + - uid: 26272 components: - type: Transform - pos: 22.5,37.5 - parent: 16504 - - uid: 20978 + pos: -1.5,78.5 + parent: 16527 + - uid: 26273 components: - type: Transform - pos: 23.5,36.5 - parent: 16504 - - uid: 20979 + pos: 10.5,43.5 + parent: 16527 + - uid: 26274 components: - type: Transform - pos: 38.5,34.5 - parent: 16504 - - uid: 20980 + pos: 11.5,43.5 + parent: 16527 + - uid: 26275 components: - type: Transform - pos: 38.5,33.5 - parent: 16504 - - uid: 20981 + pos: 14.5,39.5 + parent: 16527 + - uid: 26276 components: - type: Transform - pos: 38.5,32.5 - parent: 16504 - - uid: 20982 + pos: 12.5,42.5 + parent: 16527 + - uid: 26277 components: - type: Transform - pos: 38.5,31.5 - parent: 16504 - - uid: 20983 + pos: 12.5,41.5 + parent: 16527 + - uid: 26278 components: - type: Transform - pos: 37.5,35.5 - parent: 16504 - - uid: 20984 + pos: 12.5,39.5 + parent: 16527 + - uid: 26279 components: - type: Transform - pos: 36.5,35.5 - parent: 16504 - - uid: 20985 + pos: 13.5,39.5 + parent: 16527 + - uid: 26280 components: - type: Transform - pos: 19.5,37.5 - parent: 16504 - - uid: 20986 + pos: 12.5,43.5 + parent: 16527 + - uid: 26281 components: - type: Transform - pos: 23.5,37.5 - parent: 16504 - - uid: 20987 + pos: 15.5,39.5 + parent: 16527 + - uid: 26282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,34.5 - parent: 16504 - - uid: 20988 + pos: 14.5,46.5 + parent: 16527 + - uid: 26283 components: - type: Transform - pos: -3.5,42.5 - parent: 16504 - - uid: 20989 + pos: 8.5,70.5 + parent: 16527 + - uid: 26284 components: - type: Transform - pos: -3.5,43.5 - parent: 16504 - - uid: 20990 + pos: 8.5,68.5 + parent: 16527 + - uid: 26285 components: - type: Transform - pos: -3.5,44.5 - parent: 16504 - - uid: 20991 + pos: 8.5,69.5 + parent: 16527 + - uid: 26286 components: - type: Transform - pos: -3.5,45.5 - parent: 16504 - - uid: 20992 + pos: 3.5,84.5 + parent: 16527 + - uid: 26287 components: - type: Transform - pos: -2.5,45.5 - parent: 16504 - - uid: 20993 + pos: 12.5,66.5 + parent: 16527 + - uid: 26288 components: - type: Transform - pos: -1.5,45.5 - parent: 16504 - - uid: 20994 + pos: 2.5,84.5 + parent: 16527 + - uid: 26289 components: - type: Transform - pos: -0.5,45.5 - parent: 16504 - - uid: 20995 + pos: 4.5,84.5 + parent: 16527 + - uid: 26290 components: - type: Transform - pos: 0.5,45.5 - parent: 16504 - - uid: 20996 + pos: 12.5,67.5 + parent: 16527 + - uid: 26291 components: - type: Transform - pos: 1.5,45.5 - parent: 16504 - - uid: 20997 + pos: 12.5,65.5 + parent: 16527 + - uid: 26292 components: - type: Transform - pos: 2.5,45.5 - parent: 16504 - - uid: 20998 + pos: 11.5,67.5 + parent: 16527 + - uid: 26293 components: - type: Transform - pos: 3.5,45.5 - parent: 16504 - - uid: 20999 + pos: 9.5,67.5 + parent: 16527 + - uid: 26294 components: - type: Transform - pos: 4.5,45.5 - parent: 16504 - - uid: 21000 + pos: 8.5,67.5 + parent: 16527 + - uid: 26295 components: - type: Transform - pos: 4.5,44.5 - parent: 16504 - - uid: 21001 + pos: 10.5,67.5 + parent: 16527 + - uid: 26296 components: - type: Transform - pos: 4.5,43.5 - parent: 16504 - - uid: 21002 + pos: 0.5,84.5 + parent: 16527 + - uid: 26297 components: - type: Transform - pos: 4.5,42.5 - parent: 16504 - - uid: 21003 + pos: 6.5,82.5 + parent: 16527 + - uid: 26298 components: - type: Transform - pos: 4.5,41.5 - parent: 16504 - - uid: 21004 + pos: 6.5,81.5 + parent: 16527 + - uid: 26299 components: - type: Transform - pos: 4.5,40.5 - parent: 16504 - - uid: 21005 + pos: 6.5,80.5 + parent: 16527 + - uid: 26300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,35.5 - parent: 16504 - - uid: 21006 + pos: 6.5,79.5 + parent: 16527 + - uid: 26301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,36.5 - parent: 16504 - - uid: 21007 + pos: 8.5,78.5 + parent: 16527 + - uid: 26302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,37.5 - parent: 16504 - - uid: 21008 + pos: 7.5,78.5 + parent: 16527 + - uid: 26303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,38.5 - parent: 16504 - - uid: 21009 + pos: 8.5,77.5 + parent: 16527 + - uid: 26304 components: - type: Transform - pos: 10.5,26.5 - parent: 16504 - - uid: 21010 + pos: 8.5,76.5 + parent: 16527 + - uid: 26305 components: - type: Transform - pos: 10.5,27.5 - parent: 16504 - - uid: 21011 + pos: 8.5,75.5 + parent: 16527 + - uid: 26306 components: - type: Transform - pos: 10.5,28.5 - parent: 16504 - - uid: 21012 + pos: 8.5,74.5 + parent: 16527 + - uid: 26307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,34.5 - parent: 16504 - - uid: 21013 + pos: 8.5,73.5 + parent: 16527 + - uid: 26308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,35.5 - parent: 16504 - - uid: 21014 + pos: -2.5,78.5 + parent: 16527 + - uid: 26309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,36.5 - parent: 16504 - - uid: 21015 + pos: -0.5,80.5 + parent: 16527 + - uid: 26310 components: - type: Transform - pos: -2.5,3.5 - parent: 16504 - - uid: 21016 + pos: 0.5,78.5 + parent: 16527 + - uid: 26311 components: - type: Transform - pos: -3.5,1.5 - parent: 16504 - - uid: 21017 + pos: 4.5,78.5 + parent: 16527 + - uid: 26312 components: - type: Transform - pos: -7.5,0.5 - parent: 16504 - - uid: 21018 + pos: 5.5,78.5 + parent: 16527 + - uid: 26313 components: - type: Transform - pos: -6.5,0.5 - parent: 16504 - - uid: 21019 + pos: 1.5,78.5 + parent: 16527 + - uid: 26314 components: - type: Transform - pos: -5.5,0.5 - parent: 16504 - - uid: 21020 + pos: -0.5,78.5 + parent: 16527 + - uid: 26315 components: - type: Transform - pos: -4.5,0.5 - parent: 16504 - - uid: 21021 + pos: 6.5,78.5 + parent: 16527 + - uid: 26316 components: - type: Transform - pos: -3.5,0.5 - parent: 16504 - - uid: 21022 + pos: -40.5,41.5 + parent: 16527 + - uid: 26317 components: - type: Transform - pos: -3.5,2.5 - parent: 16504 - - uid: 21023 + pos: -40.5,40.5 + parent: 16527 + - uid: 26318 components: - type: Transform - pos: -3.5,3.5 - parent: 16504 - - uid: 21024 + pos: -40.5,39.5 + parent: 16527 + - uid: 26319 components: - type: Transform - pos: -3.5,4.5 - parent: 16504 - - uid: 21025 + pos: -40.5,38.5 + parent: 16527 + - uid: 26320 components: - type: Transform - pos: -5.5,4.5 - parent: 16504 - - uid: 21026 + pos: -37.5,44.5 + parent: 16527 + - uid: 26321 components: - type: Transform - pos: -5.5,3.5 - parent: 16504 - - uid: 21027 + pos: -40.5,44.5 + parent: 16527 + - uid: 26322 components: - type: Transform - pos: -5.5,2.5 - parent: 16504 - - uid: 21028 + pos: -39.5,44.5 + parent: 16527 + - uid: 26323 components: - type: Transform - pos: -5.5,1.5 - parent: 16504 - - uid: 21029 + pos: -38.5,44.5 + parent: 16527 + - uid: 26324 components: - type: Transform - pos: -4.5,2.5 - parent: 16504 - - uid: 21030 + pos: -37.5,52.5 + parent: 16527 + - uid: 26325 components: - type: Transform - pos: -6.5,2.5 - parent: 16504 - - uid: 21031 + pos: -37.5,53.5 + parent: 16527 + - uid: 26326 components: - type: Transform - pos: -7.5,2.5 - parent: 16504 - - uid: 21032 + pos: -37.5,54.5 + parent: 16527 + - uid: 26327 components: - type: Transform - pos: -7.5,1.5 - parent: 16504 - - uid: 21033 + pos: -37.5,55.5 + parent: 16527 + - uid: 26328 components: - type: Transform - pos: -4.5,4.5 - parent: 16504 - - uid: 21034 + pos: -37.5,56.5 + parent: 16527 + - uid: 26329 components: - type: Transform - pos: -2.5,1.5 - parent: 16504 - - uid: 21035 + pos: -37.5,57.5 + parent: 16527 + - uid: 26330 components: - type: Transform - pos: -2.5,0.5 - parent: 16504 - - uid: 21036 + pos: -29.5,59.5 + parent: 16527 + - uid: 26331 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,37.5 - parent: 16504 - - uid: 21037 - components: - - type: Transform - pos: 10.5,29.5 - parent: 16504 - - uid: 21038 + pos: -40.5,37.5 + parent: 16527 + - uid: 26332 components: - type: Transform - pos: 10.5,30.5 - parent: 16504 - - uid: 21039 + rot: 3.141592653589793 rad + pos: -39.5,37.5 + parent: 16527 + - uid: 26333 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,38.5 - parent: 16504 - - uid: 21040 + pos: -38.5,37.5 + parent: 16527 + - uid: 26334 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,38.5 - parent: 16504 - - uid: 21041 + pos: -36.5,37.5 + parent: 16527 + - uid: 26335 components: - type: Transform - pos: 10.5,31.5 - parent: 16504 - - uid: 21042 + pos: -21.5,10.5 + parent: 16527 + - uid: 26336 components: - type: Transform - pos: 10.5,32.5 - parent: 16504 - - uid: 21043 + rot: 3.141592653589793 rad + pos: -37.5,37.5 + parent: 16527 + - uid: 26337 components: - type: Transform - pos: 11.5,1.5 - parent: 16504 - - uid: 21044 + pos: -40.5,42.5 + parent: 16527 + - uid: 26338 components: - type: Transform - pos: 12.5,1.5 - parent: 16504 - - uid: 21045 + pos: -37.5,51.5 + parent: 16527 + - uid: 26339 components: - type: Transform - pos: 11.5,0.5 - parent: 16504 - - uid: 21046 + pos: -37.5,50.5 + parent: 16527 + - uid: 26340 components: - type: Transform - pos: 10.5,0.5 - parent: 16504 - - uid: 21047 + pos: -37.5,45.5 + parent: 16527 + - uid: 26341 components: - type: Transform - pos: 10.5,-0.5 - parent: 16504 - - uid: 21048 + pos: -37.5,46.5 + parent: 16527 + - uid: 26342 components: - type: Transform - pos: 11.5,-7.5 - parent: 16504 - - uid: 21049 + pos: -32.5,26.5 + parent: 16527 + - uid: 26343 components: - type: Transform - pos: 13.5,-7.5 - parent: 16504 - - uid: 21050 + rot: 3.141592653589793 rad + pos: -32.5,37.5 + parent: 16527 + - uid: 26344 components: - type: Transform - pos: -25.5,23.5 - parent: 16504 - - uid: 21051 + pos: 15.5,46.5 + parent: 16527 + - uid: 26345 components: - type: Transform - pos: -24.5,23.5 - parent: 16504 - - uid: 21068 + pos: 13.5,46.5 + parent: 16527 + - uid: 26346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,33.5 - parent: 16504 - - uid: 21069 + pos: 20.5,56.5 + parent: 16527 + - uid: 26347 components: - type: Transform - pos: 10.5,33.5 - parent: 16504 - - uid: 21071 + pos: -28.5,59.5 + parent: 16527 + - uid: 26348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,32.5 - parent: 16504 - - uid: 21072 + pos: -27.5,59.5 + parent: 16527 + - uid: 26349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,36.5 - parent: 16504 - - uid: 21076 + pos: -26.5,59.5 + parent: 16527 + - uid: 26350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,36.5 - parent: 16504 - - uid: 21077 + pos: -25.5,59.5 + parent: 16527 + - uid: 26351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,36.5 - parent: 16504 - - uid: 21178 + pos: -24.5,59.5 + parent: 16527 + - uid: 26352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,40.5 - parent: 16504 - - uid: 21469 + pos: -23.5,59.5 + parent: 16527 + - uid: 26353 components: - type: Transform - pos: 10.5,34.5 - parent: 16504 - - uid: 21483 + pos: -22.5,59.5 + parent: 16527 + - uid: 26354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,41.5 - parent: 16504 - - uid: 21581 + pos: -22.5,58.5 + parent: 16527 + - uid: 26355 components: - type: Transform - pos: 16.5,13.5 - parent: 16504 - - uid: 21827 + pos: -22.5,57.5 + parent: 16527 + - uid: 26356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,42.5 - parent: 16504 - - uid: 21829 + pos: -21.5,57.5 + parent: 16527 + - uid: 26357 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,43.5 - parent: 16504 - - uid: 21863 + pos: -20.5,57.5 + parent: 16527 + - uid: 26358 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,44.5 - parent: 16504 - - uid: 21868 + pos: -16.5,58.5 + parent: 16527 + - uid: 26359 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,44.5 - parent: 16504 - - uid: 22010 + pos: -19.5,57.5 + parent: 16527 + - uid: 26360 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,44.5 - parent: 16504 - - uid: 22011 + pos: -18.5,57.5 + parent: 16527 + - uid: 26361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,44.5 - parent: 16504 - - uid: 22012 + pos: -17.5,57.5 + parent: 16527 + - uid: 26362 components: - type: Transform - pos: -19.5,18.5 - parent: 16504 - - uid: 22013 + pos: -16.5,57.5 + parent: 16527 + - uid: 26363 components: - type: Transform - pos: 15.5,12.5 - parent: 16504 - - uid: 22014 + pos: -16.5,59.5 + parent: 16527 + - uid: 26364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,44.5 - parent: 16504 - - uid: 22015 + pos: 24.5,58.5 + parent: 16527 + - uid: 26365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,44.5 - parent: 16504 - - uid: 22016 + pos: 21.5,58.5 + parent: 16527 + - uid: 26366 components: - type: Transform - pos: 17.5,9.5 - parent: 16504 - - uid: 22017 + pos: 20.5,58.5 + parent: 16527 + - uid: 26367 components: - type: Transform - pos: 16.5,9.5 - parent: 16504 - - uid: 22018 + pos: 20.5,57.5 + parent: 16527 + - uid: 26368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,44.5 - parent: 16504 - - uid: 22019 + pos: -40.5,43.5 + parent: 16527 + - uid: 26369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,43.5 - parent: 16504 - - uid: 22020 + pos: -41.5,44.5 + parent: 16527 + - uid: 26370 components: - type: Transform - pos: 22.5,11.5 - parent: 16504 - - uid: 22021 + pos: -42.5,44.5 + parent: 16527 + - uid: 26371 components: - type: Transform - pos: 21.5,11.5 - parent: 16504 - - uid: 22022 + pos: -42.5,43.5 + parent: 16527 + - uid: 26372 components: - type: Transform - pos: 20.5,11.5 - parent: 16504 - - uid: 22023 + pos: -41.5,43.5 + parent: 16527 + - uid: 26373 components: - type: Transform - pos: 19.5,11.5 - parent: 16504 - - uid: 22024 + pos: -42.5,42.5 + parent: 16527 + - uid: 26374 components: - type: Transform - pos: 18.5,11.5 - parent: 16504 - - uid: 22025 + pos: -41.5,42.5 + parent: 16527 + - uid: 26375 components: - type: Transform - pos: 17.5,11.5 - parent: 16504 - - uid: 22026 + pos: -10.5,30.5 + parent: 16527 + - uid: 26376 components: - type: Transform - pos: 16.5,12.5 - parent: 16504 - - uid: 22027 + pos: -53.5,46.5 + parent: 16527 + - uid: 26377 components: - type: Transform - pos: 16.5,11.5 - parent: 16504 - - uid: 22028 + pos: -49.5,50.5 + parent: 16527 + - uid: 26378 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,42.5 - parent: 16504 - - uid: 22029 + pos: -53.5,50.5 + parent: 16527 + - uid: 26379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,41.5 - parent: 16504 - - uid: 22030 + pos: -38.5,52.5 + parent: 16527 + - uid: 26380 components: - type: Transform - pos: 18.5,13.5 - parent: 16504 - - uid: 22031 + pos: -39.5,52.5 + parent: 16527 + - uid: 26381 components: - type: Transform - pos: 18.5,14.5 - parent: 16504 - - uid: 22032 + pos: -40.5,52.5 + parent: 16527 + - uid: 26382 components: - type: Transform - pos: 18.5,15.5 - parent: 16504 - - uid: 22033 + pos: -41.5,52.5 + parent: 16527 + - uid: 26383 components: - type: Transform - pos: 18.5,17.5 - parent: 16504 - - uid: 22034 + pos: -42.5,52.5 + parent: 16527 + - uid: 26384 components: - type: Transform - pos: 18.5,18.5 - parent: 16504 - - uid: 22035 + pos: -42.5,53.5 + parent: 16527 + - uid: 26385 components: - type: Transform - pos: 18.5,19.5 - parent: 16504 - - uid: 22036 + pos: -42.5,54.5 + parent: 16527 + - uid: 26386 components: - type: Transform - pos: 18.5,20.5 - parent: 16504 - - uid: 22037 + pos: -42.5,41.5 + parent: 16527 + - uid: 26387 components: - type: Transform - pos: 18.5,21.5 - parent: 16504 - - uid: 22038 + pos: -56.5,55.5 + parent: 16527 + - uid: 26388 components: - type: Transform - pos: 18.5,22.5 - parent: 16504 - - uid: 22039 + pos: -55.5,55.5 + parent: 16527 + - uid: 26389 components: - type: Transform - pos: 18.5,23.5 - parent: 16504 - - uid: 22040 + pos: -9.5,31.5 + parent: 16527 + - uid: 26390 components: - type: Transform - pos: 18.5,24.5 - parent: 16504 - - uid: 22041 + pos: -50.5,55.5 + parent: 16527 + - uid: 26391 components: - type: Transform - pos: 18.5,25.5 - parent: 16504 - - uid: 22042 + pos: -49.5,55.5 + parent: 16527 + - uid: 26392 components: - type: Transform - pos: 18.5,26.5 - parent: 16504 - - uid: 22043 + pos: -48.5,55.5 + parent: 16527 + - uid: 26393 components: - type: Transform - pos: 18.5,27.5 - parent: 16504 - - uid: 22044 + pos: -47.5,55.5 + parent: 16527 + - uid: 26394 components: - type: Transform - pos: 18.5,28.5 - parent: 16504 - - uid: 22045 + pos: -46.5,55.5 + parent: 16527 + - uid: 26395 components: - type: Transform - pos: 18.5,29.5 - parent: 16504 - - uid: 22046 + pos: -45.5,55.5 + parent: 16527 + - uid: 26396 components: - type: Transform - pos: 11.5,34.5 - parent: 16504 - - uid: 22047 + pos: -42.5,55.5 + parent: 16527 + - uid: 26397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,40.5 - parent: 16504 - - uid: 22048 + pos: -44.5,55.5 + parent: 16527 + - uid: 26398 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,40.5 - parent: 16504 - - uid: 22049 + pos: -43.5,55.5 + parent: 16527 + - uid: 26399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,40.5 - parent: 16504 - - uid: 22050 + pos: -51.5,55.5 + parent: 16527 + - uid: 26400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,40.5 - parent: 16504 - - uid: 22051 + pos: -52.5,55.5 + parent: 16527 + - uid: 26401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,36.5 - parent: 16504 - - uid: 22052 + pos: -56.5,54.5 + parent: 16527 + - uid: 26402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,38.5 - parent: 16504 - - uid: 22053 + pos: -56.5,53.5 + parent: 16527 + - uid: 26403 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,37.5 - parent: 16504 - - uid: 22054 + pos: -56.5,52.5 + parent: 16527 + - uid: 26404 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,41.5 - parent: 16504 - - uid: 22055 + pos: -56.5,51.5 + parent: 16527 + - uid: 26405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,40.5 - parent: 16504 - - uid: 22056 + pos: -58.5,50.5 + parent: 16527 + - uid: 26406 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,41.5 - parent: 16504 - - uid: 22057 + pos: -58.5,48.5 + parent: 16527 + - uid: 26407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,39.5 - parent: 16504 - - uid: 22058 + pos: -58.5,49.5 + parent: 16527 + - uid: 26408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,39.5 - parent: 16504 - - uid: 22059 + pos: -56.5,45.5 + parent: 16527 + - uid: 26409 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 - parent: 16504 - - uid: 22060 + pos: -56.5,44.5 + parent: 16527 + - uid: 26410 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 16504 - - uid: 22061 + pos: -53.5,55.5 + parent: 16527 + - uid: 26411 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 16504 - - uid: 22062 + pos: -54.5,55.5 + parent: 16527 + - uid: 26412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 16504 - - uid: 22063 + pos: -56.5,43.5 + parent: 16527 + - uid: 26413 components: - type: Transform - pos: 8.5,38.5 - parent: 16504 - - uid: 22064 + pos: -56.5,42.5 + parent: 16527 + - uid: 26414 components: - type: Transform - pos: -4.5,39.5 - parent: 16504 - - uid: 22065 + pos: -56.5,41.5 + parent: 16527 + - uid: 26415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-3.5 - parent: 16504 - - uid: 22066 + pos: -55.5,41.5 + parent: 16527 + - uid: 26416 components: - type: Transform - pos: -0.5,39.5 - parent: 16504 - - uid: 22067 + pos: -54.5,41.5 + parent: 16527 + - uid: 26417 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-0.5 - parent: 16504 - - uid: 22068 + pos: -53.5,41.5 + parent: 16527 + - uid: 26418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 16504 - - uid: 22069 + pos: -52.5,41.5 + parent: 16527 + - uid: 26419 components: - type: Transform - pos: -2.5,39.5 - parent: 16504 - - uid: 22070 + pos: -51.5,41.5 + parent: 16527 + - uid: 26420 components: - type: Transform - pos: -3.5,39.5 - parent: 16504 - - uid: 22071 + pos: -50.5,41.5 + parent: 16527 + - uid: 26421 components: - type: Transform - pos: 3.5,39.5 - parent: 16504 - - uid: 22072 + pos: -49.5,41.5 + parent: 16527 + - uid: 26422 components: - type: Transform - pos: -1.5,39.5 - parent: 16504 - - uid: 22073 + pos: -48.5,41.5 + parent: 16527 + - uid: 26423 components: - type: Transform - pos: 1.5,39.5 - parent: 16504 - - uid: 22074 + pos: -47.5,41.5 + parent: 16527 + - uid: 26424 components: - type: Transform - pos: 2.5,39.5 - parent: 16504 - - uid: 22078 + pos: -46.5,41.5 + parent: 16527 + - uid: 26425 components: - type: Transform - pos: 18.5,36.5 - parent: 16504 - - uid: 22079 + pos: -45.5,41.5 + parent: 16527 + - uid: 26426 components: - type: Transform - pos: 18.5,35.5 - parent: 16504 - - uid: 22080 + pos: -44.5,41.5 + parent: 16527 + - uid: 26427 components: - type: Transform - pos: 18.5,34.5 - parent: 16504 - - uid: 22081 + pos: -43.5,41.5 + parent: 16527 + - uid: 26428 components: - type: Transform - pos: 18.5,33.5 - parent: 16504 - - uid: 22082 + pos: -11.5,30.5 + parent: 16527 + - uid: 26429 components: - type: Transform - pos: 18.5,32.5 - parent: 16504 - - uid: 22083 + pos: -9.5,-6.5 + parent: 16527 + - uid: 26430 components: - type: Transform - pos: 18.5,31.5 - parent: 16504 - - uid: 22084 + pos: -49.5,46.5 + parent: 16527 + - uid: 26431 components: - type: Transform - pos: 18.5,30.5 - parent: 16504 - - uid: 22085 + pos: -37.5,29.5 + parent: 16527 + - uid: 26432 components: - type: Transform - pos: 12.5,34.5 - parent: 16504 - - uid: 22086 + pos: 31.5,57.5 + parent: 16527 + - uid: 26433 components: - type: Transform - pos: 12.5,35.5 - parent: 16504 - - uid: 22087 + pos: 30.5,57.5 + parent: 16527 + - uid: 26434 components: - type: Transform - pos: 12.5,36.5 - parent: 16504 - - uid: 22088 + pos: 27.5,57.5 + parent: 16527 + - uid: 26435 components: - type: Transform - pos: 12.5,37.5 - parent: 16504 - - uid: 22090 + pos: 29.5,57.5 + parent: 16527 + - uid: 26436 components: - type: Transform - pos: -3.5,40.5 - parent: 16504 - - uid: 22091 + pos: 28.5,57.5 + parent: 16527 + - uid: 26437 components: - type: Transform - pos: -2.5,40.5 - parent: 16504 - - uid: 22115 + pos: -14.5,26.5 + parent: 16527 + - uid: 26438 components: - type: Transform - pos: -6.5,-4.5 - parent: 16504 - - uid: 22116 + pos: -58.5,47.5 + parent: 16527 + - uid: 26439 components: - type: Transform - pos: 2.5,13.5 - parent: 16504 - - uid: 22117 + pos: -58.5,46.5 + parent: 16527 + - uid: 26440 components: - type: Transform - pos: 3.5,13.5 - parent: 16504 - - uid: 22118 + pos: -57.5,46.5 + parent: 16527 + - uid: 26441 components: - type: Transform - pos: -9.5,-4.5 - parent: 16504 - - uid: 22119 + pos: -56.5,46.5 + parent: 16527 + - uid: 26442 components: - type: Transform - pos: -8.5,-4.5 - parent: 16504 - - uid: 22120 + pos: -56.5,47.5 + parent: 16527 + - uid: 26443 components: - type: Transform - pos: -7.5,-4.5 - parent: 16504 - - uid: 22121 + pos: -56.5,48.5 + parent: 16527 + - uid: 26444 components: - type: Transform - pos: -19.5,20.5 - parent: 16504 - - uid: 22122 + pos: -56.5,49.5 + parent: 16527 + - uid: 26445 components: - type: Transform - pos: -19.5,25.5 - parent: 16504 - - uid: 22123 + pos: -56.5,50.5 + parent: 16527 + - uid: 26446 components: - type: Transform - pos: -19.5,26.5 - parent: 16504 - - uid: 22124 + pos: -57.5,50.5 + parent: 16527 + - uid: 26447 components: - type: Transform - pos: -19.5,19.5 - parent: 16504 - - uid: 22126 + pos: -36.5,26.5 + parent: 16527 + - uid: 26448 components: - type: Transform - pos: 5.5,39.5 - parent: 16504 - - uid: 22127 + pos: -20.5,19.5 + parent: 16527 + - uid: 26449 components: - type: Transform - pos: 6.5,39.5 - parent: 16504 - - uid: 22129 + pos: -20.5,16.5 + parent: 16527 + - uid: 26450 components: - type: Transform - pos: 10.5,39.5 - parent: 16504 - - uid: 22130 + pos: 11.5,-9.5 + parent: 16527 + - uid: 26451 components: - type: Transform - pos: 11.5,39.5 - parent: 16504 - - uid: 22131 + pos: -31.5,59.5 + parent: 16527 + - uid: 26452 components: - type: Transform - pos: 12.5,39.5 - parent: 16504 - - uid: 22132 + pos: -32.5,59.5 + parent: 16527 + - uid: 26453 components: - type: Transform - pos: 13.5,39.5 - parent: 16504 - - uid: 22133 + pos: -8.5,81.5 + parent: 16527 + - uid: 26454 components: - type: Transform - pos: 14.5,39.5 - parent: 16504 - - uid: 22134 + pos: -16.5,65.5 + parent: 16527 + - uid: 26455 components: - type: Transform - pos: 15.5,39.5 - parent: 16504 - - uid: 22135 + pos: -30.5,59.5 + parent: 16527 + - uid: 26456 components: - type: Transform - pos: 16.5,39.5 - parent: 16504 - - uid: 22136 + pos: -34.5,59.5 + parent: 16527 + - uid: 26457 components: - type: Transform - pos: 17.5,39.5 - parent: 16504 - - uid: 22137 + pos: -35.5,59.5 + parent: 16527 + - uid: 26458 components: - type: Transform - pos: 18.5,39.5 - parent: 16504 - - uid: 22138 + pos: -35.5,58.5 + parent: 16527 + - uid: 26459 components: - type: Transform - pos: 18.5,38.5 - parent: 16504 - - uid: 22139 + pos: -36.5,58.5 + parent: 16527 + - uid: 26460 components: - type: Transform - pos: 18.5,37.5 - parent: 16504 + pos: -36.5,57.5 + parent: 16527 - proto: WallReinforced entities: - uid: 687 @@ -136105,6 +160064,12 @@ entities: - type: Transform pos: 21.5,-32.5 parent: 2 + - uid: 5824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,21.5 + parent: 2 - uid: 5846 components: - type: Transform @@ -136270,6 +160235,16 @@ entities: - type: Transform pos: 45.5,17.5 parent: 2 + - uid: 10851 + components: + - type: Transform + pos: 60.5,18.5 + parent: 2 + - uid: 10873 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 - uid: 10890 components: - type: Transform @@ -136352,6 +160327,16 @@ entities: - type: Transform pos: 23.5,-36.5 parent: 2 + - uid: 13435 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 13470 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 - uid: 13938 components: - type: Transform @@ -140367,21 +164352,6 @@ entities: - type: Transform pos: 63.5,32.5 parent: 2 - - uid: 14717 - components: - - type: Transform - pos: 60.5,19.5 - parent: 2 - - uid: 14718 - components: - - type: Transform - pos: 61.5,19.5 - parent: 2 - - uid: 14719 - components: - - type: Transform - pos: 62.5,19.5 - parent: 2 - uid: 14720 components: - type: Transform @@ -140397,11 +164367,6 @@ entities: - type: Transform pos: 63.5,22.5 parent: 2 - - uid: 14724 - components: - - type: Transform - pos: 63.5,23.5 - parent: 2 - uid: 14725 components: - type: Transform @@ -144259,6 +168224,11 @@ entities: rot: 3.141592653589793 rad pos: 23.5,39.5 parent: 2 + - uid: 10226 + components: + - type: Transform + pos: 13.5,48.5 + parent: 2 - uid: 10940 components: - type: Transform @@ -144313,6 +168283,11 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-30.5 parent: 2 + - uid: 11996 + components: + - type: Transform + pos: 13.5,50.5 + parent: 2 - uid: 12346 components: - type: Transform @@ -145238,11 +169213,6 @@ entities: - type: Transform pos: 56.5,5.5 parent: 2 - - uid: 15551 - components: - - type: Transform - pos: 46.5,-5.5 - parent: 2 - uid: 15552 components: - type: Transform @@ -145356,16 +169326,6 @@ entities: - type: Transform pos: 46.5,-12.5 parent: 2 - - uid: 15574 - components: - - type: Transform - pos: 46.5,-8.5 - parent: 2 - - uid: 15575 - components: - - type: Transform - pos: 46.5,-9.5 - parent: 2 - uid: 15576 components: - type: Transform @@ -147063,23 +171023,12 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,54.5 parent: 2 - - uid: 21324 - components: - - type: Transform - pos: 17.5,39.5 - parent: 2 - uid: 21337 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,39.5 parent: 2 - - uid: 21338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,39.5 - parent: 2 - uid: 21560 components: - type: Transform @@ -147092,12 +171041,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,56.5 parent: 2 - - uid: 21629 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,39.5 - parent: 2 - proto: WallSolidRust entities: - uid: 15934 @@ -147392,6 +171335,49 @@ entities: - type: Transform pos: 34.5,-11.5 parent: 2 +- proto: WardrobePrison + entities: + - uid: 19404 + components: + - type: Transform + pos: 5.5,66.5 + parent: 16527 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 35.85072 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19405 + - 19407 + - 19406 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26461 + components: + - type: Transform + pos: -1.5,61.5 + parent: 16527 - proto: WardrobePrisonFilled entities: - uid: 15940 @@ -147424,6 +171410,16 @@ entities: - type: Transform pos: 39.5,17.5 parent: 2 + - uid: 26462 + components: + - type: Transform + pos: 3.5,60.5 + parent: 16527 + - uid: 26463 + components: + - type: Transform + pos: 6.5,54.5 + parent: 16527 - proto: WardrobeWhite entities: - uid: 6411 @@ -147537,11 +171533,11 @@ entities: ent: null - proto: WarningAir entities: - - uid: 21052 + - uid: 26464 components: - type: Transform pos: -10.5,39.5 - parent: 16504 + parent: 16527 - proto: WarningCO2 entities: - uid: 15946 @@ -147550,11 +171546,11 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,78.5 parent: 2 - - uid: 21053 + - uid: 26465 components: - type: Transform pos: -8.5,39.5 - parent: 16504 + parent: 16527 - proto: WarningN2 entities: - uid: 15947 @@ -147563,11 +171559,11 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,72.5 parent: 2 - - uid: 21054 + - uid: 26466 components: - type: Transform pos: -16.5,39.5 - parent: 16504 + parent: 16527 - proto: WarningO2 entities: - uid: 15948 @@ -147576,11 +171572,11 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,74.5 parent: 2 - - uid: 21055 + - uid: 26467 components: - type: Transform pos: -18.5,39.5 - parent: 16504 + parent: 16527 - proto: WarningPlasma entities: - uid: 15949 @@ -147606,18 +171602,13 @@ entities: - type: Transform pos: 29.5,76.5 parent: 2 -- proto: WarpPoint +- proto: WaterCooler entities: - - uid: 20257 + - uid: 13257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 16504 - - type: WarpPoint - location: Sierra -- proto: WaterCooler - entities: + pos: 58.5,22.5 + parent: 2 - uid: 14511 components: - type: Transform @@ -147638,21 +171629,21 @@ entities: - type: Transform pos: 6.5,20.5 parent: 2 - - uid: 15956 - components: - - type: Transform - pos: 55.5,20.5 - parent: 2 - - uid: 21056 + - uid: 26468 components: - type: Transform pos: 15.5,13.5 - parent: 16504 - - uid: 21057 + parent: 16527 + - uid: 26469 components: - type: Transform pos: 20.5,36.5 - parent: 16504 + parent: 16527 + - uid: 26470 + components: + - type: Transform + pos: -15.5,61.5 + parent: 16527 - proto: WaterTankFull entities: - uid: 15957 @@ -147695,11 +171686,11 @@ entities: - type: Transform pos: 46.5,39.5 parent: 2 - - uid: 21058 + - uid: 26471 components: - type: Transform pos: 22.5,10.5 - parent: 16504 + parent: 16527 - proto: WaterTankHighCapacity entities: - uid: 15965 @@ -147743,13 +171734,18 @@ entities: - type: Transform pos: 58.5,20.5 parent: 2 + - uid: 26472 + components: + - type: Transform + pos: -13.5,71.5 + parent: 16527 - proto: WeaponCrusherGlaive entities: - - uid: 21059 + - uid: 26473 components: - type: Transform pos: -27.486176,30.543022 - parent: 16504 + parent: 16527 - proto: WeaponDisabler entities: - uid: 1053 @@ -147758,18 +171754,27 @@ entities: parent: 1046 - type: Physics canCollide: False - - uid: 21060 + - uid: 26474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.6263652,41.58049 - parent: 16504 - - uid: 21061 + rot: 3.141592653589793 rad + pos: 1.5112762,80.3963 + parent: 16527 +- proto: WeaponDisablerPractice + entities: + - uid: 26475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.3757052,41.47495 - parent: 16504 + rot: 3.141592653589793 rad + pos: -14.010925,71.46234 + parent: 16527 +- proto: WeaponDisablerSMG + entities: + - uid: 26476 + components: + - type: Transform + pos: 1.511261,80.6463 + parent: 16527 - proto: WeaponFlareGun entities: - uid: 15973 @@ -147786,136 +171791,91 @@ entities: parent: 2 - proto: WeaponLaserCarbinePractice entities: - - uid: 21062 + - uid: 26477 components: - type: Transform - pos: -1.5029225,43.638535 - parent: 16504 - - uid: 21063 + pos: 4.4702606,82.59161 + parent: 16527 + - uid: 26478 components: - type: Transform - pos: -1.5029225,43.57257 - parent: 16504 - - uid: 21064 + pos: 4.5171356,82.49786 + parent: 16527 + - uid: 26479 components: - type: Transform - pos: -1.4897294,43.40107 - parent: 16504 -- proto: WeaponLauncherChinaLake - entities: - - uid: 19512 + pos: 4.5328064,82.31036 + parent: 16527 + - uid: 26480 components: - type: Transform - pos: 0.4678955,6.375108 - parent: 16504 -- proto: WeaponLightMachineGunL6 + pos: -14.63592,71.66546 + parent: 16527 +- proto: WeaponLaserSvalinn entities: - - uid: 17699 + - uid: 6591 components: - type: Transform - pos: 1.5914307,25.695858 - parent: 16504 - - type: ChamberMagazineAmmoProvider - boltClosed: True - - uid: 17701 + pos: 24.45707,-6.991213 + parent: 2 + - uid: 26481 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.46618652,25.373215 - parent: 16504 - - type: ChamberMagazineAmmoProvider - boltClosed: True - - uid: 22143 + pos: -17.515717,56.627136 + parent: 16527 +- proto: WeaponPistolCHIMP + entities: + - uid: 26482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.673584,43.504818 - parent: 16504 - - type: ChamberMagazineAmmoProvider - boltClosed: True + rot: 1.5707963267948966 rad + pos: -34.45244,27.449646 + parent: 16527 - proto: WeaponPistolCobra entities: - - uid: 21065 + - uid: 26483 components: - type: Transform - pos: -1.5293078,41.448563 - parent: 16504 + pos: 1.5112915,82.56818 + parent: 16527 - proto: WeaponPistolN1984 entities: - - uid: 19350 + - uid: 26484 components: - type: Transform - parent: 19347 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -4.408722,71.91766 + parent: 16527 - proto: WeaponRevolverPython entities: - - uid: 18799 + - uid: 21068 components: - type: Transform - parent: 18790 + parent: 21059 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponRifleM90GrenadeLauncher - entities: - - uid: 22113 - components: - - type: Transform - pos: -17.546509,33.26776 - parent: 16504 - - type: ChamberMagazineAmmoProvider - boltClosed: True - - uid: 22114 - components: - - type: Transform - pos: -10.444946,37.4162 - parent: 16504 - - type: ChamberMagazineAmmoProvider - boltClosed: True - - uid: 22125 - components: - - type: Transform - pos: -15.788696,28.732603 - parent: 16504 - - type: ChamberMagazineAmmoProvider - boltClosed: True - - uid: 22128 - components: - - type: Transform - pos: 29.527954,30.560728 - parent: 16504 - - type: ChamberMagazineAmmoProvider - boltClosed: True - - uid: 22140 + - uid: 21078 components: - type: Transform - pos: 12.336548,26.41229 - parent: 16504 + parent: 21069 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponShotgunBulldog entities: - - uid: 21066 + - uid: 26485 components: - type: Transform - pos: 2.507286,43.53152 - parent: 16504 - - uid: 22100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.4753418,-2.6497467 - parent: 16504 - missingComponents: - - GunRequiresWield - - uid: 22104 + pos: 4.5581055,79.47443 + parent: 16527 +- proto: WeaponShotgunDoubleBarreled + entities: + - uid: 26486 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5559082,-2.5403717 - parent: 16504 - missingComponents: - - GunRequiresWield + rot: -0.7853981633974483 rad + pos: 27.509445,52.473022 + parent: 16527 - proto: WeaponShotgunDoubleBarreledRubber entities: - uid: 1054 @@ -147926,11 +171886,11 @@ entities: canCollide: False - proto: WeaponShotgunSawn entities: - - uid: 21067 + - uid: 26487 components: - type: Transform pos: -6.575594,27.62803 - parent: 16504 + parent: 16527 - proto: WeaponSniperHristov entities: - uid: 22483 @@ -147938,419 +171898,130 @@ entities: - type: Transform pos: 61.576393,31.55321 parent: 2 -- proto: WeaponSubMachineGunC20r +- proto: WeaponSniperMosin entities: - - uid: 17582 + - uid: 26488 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.4646,36.406464 - parent: 16504 - - type: ChamberMagazineAmmoProvider - boltClosed: True - - uid: 17590 + pos: -45.574707,49.307068 + parent: 16527 + - uid: 26489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5896,37.500214 - parent: 16504 - - type: ChamberMagazineAmmoProvider - boltClosed: True - - uid: 19396 + pos: -45.793457,49.400818 + parent: 16527 +- proto: WeaponSubMachineGunC20r + entities: + - uid: 23140 components: - type: Transform - parent: 19394 + parent: 23138 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponSubMachineGunWt550 +- proto: WeaponTurretHostile entities: - - uid: 16118 + - uid: 23035 components: - type: Transform - pos: -2.357666,35.38244 - parent: 16504 - - uid: 17586 - components: - - type: Transform - pos: 29.632324,19.428213 - parent: 16504 - - uid: 17587 - components: - - type: Transform - pos: 13.697266,14.302883 - parent: 16504 - - uid: 17589 - components: - - type: Transform - pos: 28.64795,13.225088 - parent: 16504 - - uid: 17592 - components: - - type: Transform - pos: 25.5542,16.678213 - parent: 16504 - - uid: 17593 - components: - - type: Transform - pos: 5.595459,35.411495 - parent: 16504 - - uid: 17627 + pos: 9.5,21.5 + parent: 16527 + - uid: 26490 components: - type: Transform - pos: 4.4051514,35.451965 - parent: 16504 - - uid: 19336 + pos: -5.5,37.5 + parent: 16527 + - uid: 26491 components: - type: Transform - pos: -3.545166,35.505245 - parent: 16504 - - uid: 19430 + pos: 6.5,37.5 + parent: 16527 + - uid: 26492 components: - type: Transform - pos: 13.431641,18.349758 - parent: 16504 - - uid: 20007 + pos: 0.5,56.5 + parent: 16527 + - uid: 26493 components: - type: Transform - pos: 6.616699,1.6196394 - parent: 16504 - - uid: 21078 + pos: -25.5,48.5 + parent: 16527 + - uid: 26494 components: - type: Transform - pos: -4.2944336,8.688307 - parent: 16504 - - uid: 21688 + pos: -32.5,57.5 + parent: 16527 + - uid: 26495 components: - type: Transform - pos: 16.36914,18.318508 - parent: 16504 - - uid: 21689 + pos: -31.5,45.5 + parent: 16527 + - uid: 26496 components: - type: Transform - pos: -5.4570312,8.522202 - parent: 16504 - - uid: 21843 + rot: -1.5707963267948966 rad + pos: 12.5,50.5 + parent: 16527 + - uid: 26497 components: - type: Transform - pos: -9.438965,24.459805 - parent: 16504 - - uid: 21848 + pos: 5.5,14.5 + parent: 16527 + - uid: 26500 components: - type: Transform - pos: -10.751465,24.491055 - parent: 16504 - - uid: 21862 + pos: -4.5,14.5 + parent: 16527 + - uid: 26501 components: - type: Transform - pos: 6.6173096,5.525026 - parent: 16504 -- proto: WeaponTurretHostile - entities: - - uid: 16587 + pos: 5.5,18.5 + parent: 16527 + - uid: 26505 components: - type: Transform - pos: -24.5,29.5 - parent: 16504 - - type: Gun - fireRate: 16 - projectileSpeed: 40 - - uid: 19513 + pos: 0.5,43.5 + parent: 16527 + - uid: 26510 components: - type: Transform - pos: 6.5,37.5 - parent: 16504 - - type: Gun - fireRate: 16 - - uid: 19514 + pos: -4.5,18.5 + parent: 16527 + - uid: 26511 components: - type: Transform - pos: -5.5,37.5 - parent: 16504 - - type: Gun - fireRate: 16 - - uid: 22075 + pos: 0.5,16.5 + parent: 16527 + - uid: 26627 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 16504 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 600 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - trigger: !type:DamageTrigger - damage: 600 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - !type:PlaySoundBehavior - sound: !type:SoundCollectionSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - collection: MetalGlassBreak - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - SheetSteel1: - max: 5 - min: 3 - - type: Gun - fireRate: 12 - - type: BallisticAmmoProvider - capacity: 1500 - proto: BulletDisabler - - uid: 22076 + pos: 7.5,24.5 + parent: 16527 + - uid: 26628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,14.5 - parent: 16504 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 600 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - trigger: !type:DamageTrigger - damage: 600 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - !type:PlaySoundBehavior - sound: !type:SoundCollectionSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - collection: MetalGlassBreak - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - SheetSteel1: - max: 5 - min: 3 - - type: Gun - fireRate: 12 - - type: BallisticAmmoProvider - capacity: 1500 - - uid: 22077 + pos: 9.5,27.5 + parent: 16527 + - uid: 26629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,14.5 - parent: 16504 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 600 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - trigger: !type:DamageTrigger - damage: 600 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - !type:PlaySoundBehavior - sound: !type:SoundCollectionSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - collection: MetalGlassBreak - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - SheetSteel1: - max: 5 - min: 3 - - type: Gun - fireRate: 12 - - type: BallisticAmmoProvider - capacity: 1500 - - uid: 22089 + pos: 7.5,30.5 + parent: 16527 + - uid: 26630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,18.5 - parent: 16504 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 600 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - trigger: !type:DamageTrigger - damage: 600 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - !type:PlaySoundBehavior - sound: !type:SoundCollectionSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - collection: MetalGlassBreak - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - SheetSteel1: - max: 5 - min: 3 - - type: Gun - fireRate: 12 - - type: BallisticAmmoProvider - capacity: 1500 - proto: BulletDisabler - - uid: 22092 + pos: 31.5,32.5 + parent: 16527 + - uid: 26631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,18.5 - parent: 16504 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 600 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - trigger: !type:DamageTrigger - damage: 1000 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - !type:PlaySoundBehavior - sound: !type:SoundCollectionSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - collection: MetalGlassBreak - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - SheetSteel1: - max: 5 - min: 3 - - type: Gun - fireRate: 2 - projectileSpeed: 15 - - type: BallisticAmmoProvider - capacity: 1500 - proto: GrenadeFrag - - uid: 22489 + pos: 32.5,27.5 + parent: 16527 + - uid: 26632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,12.5 - parent: 16504 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 600 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - trigger: !type:DamageTrigger - damage: 1000 - triggersOnce: False - triggered: False - behaviors: - - !type:DoActsBehavior - acts: Destruction - - !type:PlaySoundBehavior - sound: !type:SoundCollectionSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - collection: MetalGlassBreak - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - SheetSteel1: - max: 5 - min: 3 - - type: Gun - fireRate: 2 - projectileSpeed: 10 - - type: BallisticAmmoProvider - capacity: 1500 - proto: GrenadeFrag + pos: 33.5,24.5 + parent: 16527 - proto: WeaponTurretNanoTrasen entities: - uid: 3186 @@ -148403,22 +172074,6 @@ entities: - type: Transform pos: 26.5,-42.5 parent: 2 -- proto: WeaponTurretSyndicate - entities: - - uid: 19521 - components: - - type: Transform - pos: -4.5,30.5 - parent: 16504 - - type: Gun - fireRate: 16 - - uid: 20006 - components: - - type: Transform - pos: 5.5,30.5 - parent: 16504 - - type: Gun - fireRate: 16 - proto: WeaponTurretSyndicateBroken entities: - uid: 20467 @@ -148436,33 +172091,70 @@ entities: - type: Transform pos: 43.5,16.5 parent: 2 - - uid: 21070 + - uid: 26498 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 16527 + - uid: 26499 components: - type: Transform pos: 5.5,-11.5 - parent: 16504 - - uid: 21073 + parent: 16527 + - uid: 26502 components: - type: Transform pos: -9.5,13.5 - parent: 16504 - - uid: 21074 + parent: 16527 + - uid: 26503 components: - type: Transform pos: -3.5,12.5 - parent: 16504 - - uid: 21075 + parent: 16527 + - uid: 26504 components: - type: Transform pos: 17.5,18.5 - parent: 16504 + parent: 16527 + - uid: 26506 + components: + - type: Transform + pos: -23.5,46.5 + parent: 16527 + - uid: 26507 + components: + - type: Transform + pos: -38.5,45.5 + parent: 16527 + - uid: 26508 + components: + - type: Transform + pos: -38.5,51.5 + parent: 16527 +- proto: WeaponTurretSyndicateDisposable + entities: + - uid: 26509 + components: + - type: Transform + pos: -33.5,36.5 + parent: 16527 + - uid: 26512 + components: + - type: Transform + pos: -1.5,77.5 + parent: 16527 + - uid: 26513 + components: + - type: Transform + pos: 7.5,77.5 + parent: 16527 - proto: WeaponXrayCannon entities: - - uid: 21080 + - uid: 26514 components: - type: Transform - pos: -1.5239639,43.515896 - parent: 16504 + pos: 4.5327606,82.54474 + parent: 16527 - proto: WebBed entities: - uid: 15689 @@ -148473,6 +172165,13 @@ entities: - type: Transform pos: 14.5,53.5 parent: 2 +- proto: Welder + entities: + - uid: 26515 + components: + - type: Transform + pos: 7.378891,60.54236 + parent: 16527 - proto: WelderMini entities: - uid: 15979 @@ -148495,11 +172194,16 @@ entities: - type: Transform pos: 24.281284,-6.3362308 parent: 2 - - uid: 21081 + - uid: 26516 components: - type: Transform pos: -20.52786,14.579549 - parent: 16504 + parent: 16527 + - uid: 26517 + components: + - type: Transform + pos: 7.3788757,54.44861 + parent: 16527 - proto: WeldingFuelTankFull entities: - uid: 15983 @@ -148562,11 +172266,11 @@ entities: - type: Transform pos: 73.5,6.5 parent: 2 - - uid: 21082 + - uid: 26518 components: - type: Transform pos: 19.5,-1.5 - parent: 16504 + parent: 16527 - proto: WeldingFuelTankHighCapacity entities: - uid: 15995 @@ -148617,12 +172321,12 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,29.5 parent: 2 - - uid: 21083 + - uid: 26519 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,3.5 - parent: 16504 + parent: 16527 - proto: WindoorAssembly entities: - uid: 16003 @@ -148636,24 +172340,32 @@ entities: - type: Transform pos: 28.5,-8.5 parent: 2 - - uid: 21084 + - uid: 26520 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,3.5 - parent: 16504 - - uid: 21085 + parent: 16527 + - uid: 26521 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,3.5 - parent: 16504 - - uid: 21086 + parent: 16527 + - uid: 26522 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-4.5 - parent: 16504 + parent: 16527 +- proto: WindoorAssemblySecure + entities: + - uid: 26523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,55.5 + parent: 16527 - proto: WindoorChapelLocked entities: - uid: 16005 @@ -148662,18 +172374,18 @@ entities: rot: 1.5707963267948966 rad pos: 79.5,28.5 parent: 2 - - uid: 21087 + - uid: 26524 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-4.5 - parent: 16504 - - uid: 21088 + parent: 16527 + - uid: 26525 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-2.5 - parent: 16504 + parent: 16527 - proto: WindoorClockwork entities: - uid: 10682 @@ -148711,11 +172423,11 @@ entities: parent: 2 - proto: WindoorJanitorLocked entities: - - uid: 21089 + - uid: 26526 components: - type: Transform pos: -14.5,14.5 - parent: 16504 + parent: 16527 - proto: WindoorKitchenHydroponicsLocked entities: - uid: 2396 @@ -149400,205 +173112,205 @@ entities: rot: 3.141592653589793 rad pos: 60.5,62.5 parent: 2 - - uid: 21090 + - uid: 26527 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,12.5 - parent: 16504 - - uid: 21091 + parent: 16527 + - uid: 26528 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,12.5 - parent: 16504 - - uid: 21092 + parent: 16527 + - uid: 26529 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,4.5 - parent: 16504 - - uid: 21093 + parent: 16527 + - uid: 26530 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,2.5 - parent: 16504 - - uid: 21094 + parent: 16527 + - uid: 26531 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-4.5 - parent: 16504 - - uid: 21095 + parent: 16527 + - uid: 26532 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-4.5 - parent: 16504 - - uid: 21096 + parent: 16527 + - uid: 26533 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,4.5 - parent: 16504 - - uid: 21097 + parent: 16527 + - uid: 26534 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,2.5 - parent: 16504 - - uid: 21098 + parent: 16527 + - uid: 26535 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-3.5 - parent: 16504 - - uid: 21099 + parent: 16527 + - uid: 26536 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-1.5 - parent: 16504 - - uid: 21100 + parent: 16527 + - uid: 26537 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,2.5 - parent: 16504 - - uid: 21101 + parent: 16527 + - uid: 26538 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,4.5 - parent: 16504 - - uid: 21102 + parent: 16527 + - uid: 26539 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-4.5 - parent: 16504 - - uid: 21103 + parent: 16527 + - uid: 26540 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-4.5 - parent: 16504 - - uid: 21104 + parent: 16527 + - uid: 26541 components: - type: Transform pos: 12.5,3.5 - parent: 16504 - - uid: 21105 + parent: 16527 + - uid: 26542 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,3.5 - parent: 16504 - - uid: 21106 + parent: 16527 + - uid: 26543 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,3.5 - parent: 16504 - - uid: 21107 + parent: 16527 + - uid: 26544 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,3.5 - parent: 16504 - - uid: 21108 + parent: 16527 + - uid: 26545 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,14.5 - parent: 16504 - - uid: 21109 + parent: 16527 + - uid: 26546 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,14.5 - parent: 16504 - - uid: 21110 + parent: 16527 + - uid: 26547 components: - type: Transform pos: 27.5,16.5 - parent: 16504 - - uid: 21111 + parent: 16527 + - uid: 26548 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,15.5 - parent: 16504 - - uid: 21112 + parent: 16527 + - uid: 26549 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,15.5 - parent: 16504 - - uid: 21113 + parent: 16527 + - uid: 26550 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,15.5 - parent: 16504 - - uid: 21114 + parent: 16527 + - uid: 26551 components: - type: Transform pos: 30.5,16.5 - parent: 16504 - - uid: 21115 + parent: 16527 + - uid: 26552 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,15.5 - parent: 16504 - - uid: 21116 + parent: 16527 + - uid: 26553 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,17.5 - parent: 16504 - - uid: 21117 + parent: 16527 + - uid: 26554 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,17.5 - parent: 16504 - - uid: 21118 + parent: 16527 + - uid: 26555 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,16.5 - parent: 16504 - - uid: 21119 + parent: 16527 + - uid: 26556 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,16.5 - parent: 16504 - - uid: 21120 + parent: 16527 + - uid: 26557 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,17.5 - parent: 16504 - - uid: 21121 + parent: 16527 + - uid: 26558 components: - type: Transform pos: 27.5,18.5 - parent: 16504 - - uid: 21122 + parent: 16527 + - uid: 26559 components: - type: Transform pos: 30.5,18.5 - parent: 16504 - - uid: 21123 + parent: 16527 + - uid: 26560 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,17.5 - parent: 16504 + parent: 16527 - proto: WindowFrostedDirectional entities: - uid: 2387 @@ -149655,110 +173367,110 @@ entities: rot: 1.5707963267948966 rad pos: 79.5,27.5 parent: 2 - - uid: 21124 + - uid: 21231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,51.5 + parent: 2 + - uid: 21232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,52.5 + parent: 2 + - uid: 21329 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 21330 + components: + - type: Transform + pos: 16.5,42.5 + parent: 2 + - uid: 21331 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 + - uid: 21332 + components: + - type: Transform + pos: 15.5,42.5 + parent: 2 + - uid: 26561 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,36.5 - parent: 16504 - - uid: 21125 + parent: 16527 + - uid: 26562 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,38.5 - parent: 16504 - - uid: 21126 + parent: 16527 + - uid: 26563 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,37.5 - parent: 16504 - - uid: 21127 + parent: 16527 + - uid: 26564 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,36.5 - parent: 16504 - - uid: 21128 + parent: 16527 + - uid: 26565 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,36.5 - parent: 16504 - - uid: 21129 + parent: 16527 + - uid: 26566 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,37.5 - parent: 16504 - - uid: 21130 + parent: 16527 + - uid: 26567 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,36.5 - parent: 16504 - - uid: 21131 + parent: 16527 + - uid: 26568 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,36.5 - parent: 16504 - - uid: 21132 + parent: 16527 + - uid: 26569 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,36.5 - parent: 16504 - - uid: 21133 + parent: 16527 + - uid: 26570 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,36.5 - parent: 16504 - - uid: 21134 + parent: 16527 + - uid: 26571 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,36.5 - parent: 16504 - - uid: 21135 + parent: 16527 + - uid: 26572 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,37.5 - parent: 16504 - - uid: 21231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,51.5 - parent: 2 - - uid: 21232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,52.5 - parent: 2 - - uid: 21329 - components: - - type: Transform - pos: 14.5,42.5 - parent: 2 - - uid: 21330 - components: - - type: Transform - pos: 16.5,42.5 - parent: 2 - - uid: 21331 - components: - - type: Transform - pos: 17.5,42.5 - parent: 2 - - uid: 21332 - components: - - type: Transform - pos: 15.5,42.5 - parent: 2 + parent: 16527 - proto: WindowReinforcedDirectional entities: - uid: 326 @@ -149850,6 +173562,11 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-26.5 parent: 2 + - uid: 13272 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 - uid: 16137 components: - type: Transform @@ -150260,250 +173977,291 @@ entities: rot: 3.141592653589793 rad pos: 48.5,70.5 parent: 2 - - uid: 21136 + - uid: 21213 + components: + - type: Transform + pos: 42.5,51.5 + parent: 2 + - uid: 26573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,48.5 + parent: 16527 + - uid: 26574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,48.5 + parent: 16527 + - uid: 26575 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,10.5 - parent: 16504 - - uid: 21137 + parent: 16527 + - uid: 26576 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,8.5 - parent: 16504 - - uid: 21138 + parent: 16527 + - uid: 26577 components: - type: Transform pos: -16.5,12.5 - parent: 16504 - - uid: 21139 + parent: 16527 + - uid: 26578 components: - type: Transform pos: -17.5,12.5 - parent: 16504 - - uid: 21140 + parent: 16527 + - uid: 26579 components: - type: Transform pos: -15.5,14.5 - parent: 16504 - - uid: 21141 + parent: 16527 + - uid: 26580 components: - type: Transform pos: -16.5,14.5 - parent: 16504 - - uid: 21142 + parent: 16527 + - uid: 26581 components: - type: Transform pos: -19.5,14.5 - parent: 16504 - - uid: 21143 + parent: 16527 + - uid: 26582 components: - type: Transform pos: -18.5,14.5 - parent: 16504 - - uid: 21144 + parent: 16527 + - uid: 26583 components: - type: Transform pos: -20.5,14.5 - parent: 16504 - - uid: 21145 + parent: 16527 + - uid: 26584 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,10.5 - parent: 16504 - - uid: 21146 + parent: 16527 + - uid: 26585 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,9.5 - parent: 16504 - - uid: 21147 + parent: 16527 + - uid: 26586 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,6.5 - parent: 16504 - - uid: 21148 + parent: 16527 + - uid: 26587 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,6.5 - parent: 16504 - - uid: 21149 + parent: 16527 + - uid: 26588 components: - type: Transform pos: -16.5,10.5 - parent: 16504 - - uid: 21150 + parent: 16527 + - uid: 26589 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,9.5 - parent: 16504 - - uid: 21151 + parent: 16527 + - uid: 26590 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,8.5 - parent: 16504 - - uid: 21152 + parent: 16527 + - uid: 26591 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,12.5 - parent: 16504 - - uid: 21153 + parent: 16527 + - uid: 26592 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,12.5 - parent: 16504 - - uid: 21154 + parent: 16527 + - uid: 26593 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,11.5 - parent: 16504 - - uid: 21155 + parent: 16527 + - uid: 26594 components: - type: Transform pos: -17.5,10.5 - parent: 16504 - - uid: 21156 + parent: 16527 + - uid: 26595 components: - type: Transform pos: -20.5,9.5 - parent: 16504 - - uid: 21157 + parent: 16527 + - uid: 26596 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,8.5 - parent: 16504 - - uid: 21158 + parent: 16527 + - uid: 26597 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,12.5 - parent: 16504 - - uid: 21159 + parent: 16527 + - uid: 26598 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,12.5 - parent: 16504 - - uid: 21160 + parent: 16527 + - uid: 26599 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,12.5 - parent: 16504 - - uid: 21161 + parent: 16527 + - uid: 26600 components: - type: Transform pos: -17.5,14.5 - parent: 16504 - - uid: 21162 + parent: 16527 + - uid: 26601 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,12.5 - parent: 16504 - - uid: 21163 + parent: 16527 + - uid: 26602 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,7.5 - parent: 16504 - - uid: 21164 + parent: 16527 + - uid: 26603 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,10.5 - parent: 16504 - - uid: 21165 + parent: 16527 + - uid: 26604 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,10.5 - parent: 16504 - - uid: 21166 + parent: 16527 + - uid: 26605 components: - type: Transform pos: -13.5,14.5 - parent: 16504 - - uid: 21167 + parent: 16527 + - uid: 26606 components: - type: Transform pos: -12.5,14.5 - parent: 16504 - - uid: 21168 + parent: 16527 + - uid: 26607 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,24.5 - parent: 16504 - - uid: 21169 + parent: 16527 + - uid: 26608 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,24.5 - parent: 16504 - - uid: 21170 + parent: 16527 + - uid: 26609 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,24.5 - parent: 16504 - - uid: 21171 + parent: 16527 + - uid: 26610 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,27.5 - parent: 16504 - - uid: 21172 + parent: 16527 + - uid: 26611 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,31.5 - parent: 16504 - - uid: 21173 + parent: 16527 + - uid: 26612 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,32.5 - parent: 16504 - - uid: 21174 + parent: 16527 + - uid: 26613 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,27.5 - parent: 16504 - - uid: 21175 + parent: 16527 + - uid: 26614 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,27.5 - parent: 16504 - - uid: 21176 + parent: 16527 + - uid: 26615 components: - type: Transform pos: 26.5,31.5 - parent: 16504 - - uid: 21213 + parent: 16527 + - uid: 26616 components: - type: Transform - pos: 42.5,51.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -15.5,71.5 + parent: 16527 + - uid: 26617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,71.5 + parent: 16527 + - uid: 26618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,71.5 + parent: 16527 + - uid: 26619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,71.5 + parent: 16527 - proto: Wirecutter entities: - - uid: 21177 + - uid: 26620 components: - type: Transform pos: 37.566605,26.359087 - parent: 16504 + parent: 16527 + - uid: 26621 + components: + - type: Transform + pos: -11.571915,79.84418 + parent: 16527 - proto: WoodDoor entities: - uid: 16487 @@ -150605,6 +174363,13 @@ entities: - type: Transform pos: 16.5,60.5 parent: 2 +- proto: WoodenSupportWall + entities: + - uid: 26622 + components: + - type: Transform + pos: 14.5,11.5 + parent: 16527 - proto: Wrench entities: - uid: 9343 @@ -150658,11 +174423,6 @@ entities: - type: Transform pos: 56.631012,73.23068 parent: 2 - - uid: 21179 - components: - - type: Transform - pos: 26.395555,23.543135 - parent: 16504 - uid: 21364 components: - type: Transform @@ -150674,11 +174434,26 @@ entities: - type: Transform pos: 35.529243,48.14572 parent: 2 + - uid: 26623 + components: + - type: Transform + pos: 26.395555,23.543135 + parent: 16527 + - uid: 26624 + components: + - type: Transform + pos: -11.401566,71.55609 + parent: 16527 + - uid: 26625 + components: + - type: Transform + pos: -36.50699,29.623108 + parent: 16527 - proto: Zipties entities: - - uid: 21180 + - uid: 26626 components: - type: Transform pos: 16.570156,27.194855 - parent: 16504 + parent: 16527 ... diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 93cb4055940..1718282699a 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -9815,6 +9815,8 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-44.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 10559: @@ -9827,6 +9829,12 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9342: + - DoorStatus: DoorBolt + lastSignals: + DoorStatus: True - uid: 20059 components: - type: Transform diff --git a/Resources/Maps/reach.yml b/Resources/Maps/reach.yml index 9e9070b68ed..fca485b2b97 100644 --- a/Resources/Maps/reach.yml +++ b/Resources/Maps/reach.yml @@ -6038,11 +6038,6 @@ entities: - type: Transform pos: 4.5,-8.5 parent: 2 - - uid: 881 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 2 - uid: 882 components: - type: Transform @@ -6058,13 +6053,25 @@ entities: - type: Transform pos: -16.5,6.5 parent: 2 -- proto: ClosetFireFilled +- proto: ClosetEmergencyN2FilledRandom entities: + - uid: 881 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 - uid: 885 components: - type: Transform pos: 11.5,13.5 parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 1739 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 886 diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml b/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml index 8d28a79001e..91ffcf772fa 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml @@ -63,7 +63,7 @@ icon: sprite: Objects/Tanks/red.rsi state: icon - product: CrateSlimepersonLifeSupport + product: CrateNitrogenInternals cost: 350 category: cargoproduct-category-name-emergency group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml index 197d1d000c8..865e833fc74 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml @@ -154,7 +154,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockSalvageEquipmentFilled - cost: 1000 + cost: 1500 category: cargoproduct-category-name-engineering group: market diff --git a/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml b/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml index 7e1fb8f98b2..716d5a07be8 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/emergency.yml @@ -73,10 +73,10 @@ amount: 6 - type: entity - id: CrateSlimepersonLifeSupport + id: CrateNitrogenInternals parent: CrateInternals - name: slimeperson life support crate - description: Contains four breath masks and four large nitrogen tanks. + name: internals crate (nitrogen) + description: Contains four breath masks and four large nitrogen tanks. Intended for Slimepeople and Vox. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index 81beaba03e7..d0ad6b4a589 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -10,7 +10,6 @@ - id: ClothingBeltSecurityFilled - id: Flash - id: ClothingEyesGlassesSecurity - - id: ClothingHeadsetAltSecurity - id: ClothingHandsGlovesCombat - id: ClothingShoesBootsJack - id: ClothingOuterCoatWarden @@ -47,7 +46,6 @@ - id: ClothingBeltSecurityFilled - id: Flash - id: ClothingEyesGlassesSecurity - - id: ClothingHeadsetAltSecurity - id: ClothingHandsGlovesCombat - id: ClothingShoesBootsJack - id: ClothingOuterCoatWarden diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml index 9e5549e2494..7761453327a 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml @@ -3,10 +3,10 @@ startingInventory: Crowbar: 2 Pickaxe: 4 - OreBag: 2 + OreBag: 4 Flare: 4 FlashlightLantern: 2 HandheldGPSBasic: 2 RadioHandheld: 2 - WeaponGrapplingGun: 2 + WeaponGrapplingGun: 4 WeaponProtoKineticAccelerator: 4 diff --git a/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml index eee03e5ab27..b3737dd8f81 100644 --- a/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml +++ b/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml @@ -41,6 +41,17 @@ requiredLegs: 2 - type: Inventory speciesId: reptilian # whyyy + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: Corvax/Mobs/Species/displacement.rsi + state: jumpsuit + shoes: # DM only for colored shoes! + sizeMaps: + 32: + sprite: Corvax/Mobs/Species/displacement.rsi + state: shoes - type: ContentEye targetZoom: "1.125, 1.125" maxZoom: "1.125, 1.125" @@ -81,3 +92,16 @@ components: - type: HumanoidAppearance species: Vulpkanin + - type: Inventory + speciesId: reptilian + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: Corvax/Mobs/Species/displacement.rsi + state: jumpsuit + shoes: # DM only for colored shoes! + sizeMaps: + 32: + sprite: Corvax/Mobs/Species/displacement.rsi + state: shoes diff --git a/Resources/Prototypes/Corvax/Parallax/other.yml b/Resources/Prototypes/Corvax/Parallax/other.yml index 621cebd4472..a66889add38 100644 --- a/Resources/Prototypes/Corvax/Parallax/other.yml +++ b/Resources/Prototypes/Corvax/Parallax/other.yml @@ -24,3 +24,80 @@ tiled: true shader: "" layersLQUseHQ: false + +- type: parallax + id: IceWater + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Tiles/Planet/water.rsi/shoreline_water.png" + slowness: 0.5 + scrolling: "0.1, 0" + tiled: true + shader: "" + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Tiles/Planet/water.rsi/shoreline_water.png" + slowness: 0 + scrolling: "-0.1, 0" + tiled: true + shader: "" + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Corvax/Parallax/IceParallax.png" + slowness: 0 + scrolling: "0, 0" + tiled: true + shader: "" + layersLQ: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Corvax/Parallax/IceParallax.png" + slowness: 0 + scrolling: "0, 0" + tiled: true + shader: "" + layersLQUseHQ: false + +- type: parallax + id: Ice + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Tiles/Planet/Snow/ice.png" + slowness: 0 + scrolling: "0, 0" + tiled: true + shader: "" + layersLQ: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Tiles/Planet/Snow/ice.png" + slowness: 0 + scrolling: "-0, 0" + tiled: true + shader: "" + layersLQUseHQ: false + +- type: parallax + id: Lava + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Corvax/Parallax/LavaParallax.png" + slowness: 0 + scrolling: "0.1, 0" + tiled: true + shader: "" + layersLQUseHQ: true + +- type: parallax + id: LavaLight + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Corvax/Parallax/LavaLightParallax.png" + slowness: 0 + scrolling: "0.1, 0" + tiled: true + layersLQUseHQ: true diff --git a/Resources/Prototypes/Corvax/Parallax/scrolling.yml b/Resources/Prototypes/Corvax/Parallax/scrolling.yml new file mode 100644 index 00000000000..d4f9c490e2a --- /dev/null +++ b/Resources/Prototypes/Corvax/Parallax/scrolling.yml @@ -0,0 +1,168 @@ +- type: parallax + id: MoveSpaceR + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Parallaxes/layer1.png" + slowness: 0.998046875 + scale: "1, 1" + scrolling: "-3, 0" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars" + configPath: "/Prototypes/Parallaxes/parallax_config_stars.toml" + slowness: 0.996625 + scrolling: "-10, 0" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizards_star_slower" + configPath: "/Prototypes/Parallaxes/parallax_config_stars-2.toml" + slowness: 0.989375 + scrolling: "-20, 0" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim.toml" + slowness: 0.987265625 + scrolling: "-5, 0" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim_faster" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim-2.toml" + slowness: 0.984352 + scrolling: "-4, 0" + layersLQ: + - texture: + !type:GeneratedParallaxTextureSource + id: "" + configPath: "/Prototypes/Parallaxes/parallax_config.toml" + slowness: 0.875 + scrolling: "-10, 0" + layersLQUseHQ: false + +- type: parallax + id: MoveSpaceL + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Parallaxes/layer1.png" + slowness: 0.998046875 + scale: "1, 1" + scrolling: "3, 0" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars" + configPath: "/Prototypes/Parallaxes/parallax_config_stars.toml" + slowness: 0.996625 + scrolling: "10, 0" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizards_star_slower" + configPath: "/Prototypes/Parallaxes/parallax_config_stars-2.toml" + slowness: 0.989375 + scrolling: "20, 0" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim.toml" + slowness: 0.987265625 + scrolling: "5, 0" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim_faster" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim-2.toml" + slowness: 0.984352 + scrolling: "4, 0" + layersLQ: + - texture: + !type:GeneratedParallaxTextureSource + id: "" + configPath: "/Prototypes/Parallaxes/parallax_config.toml" + slowness: 0.875 + scrolling: "10, 0" + layersLQUseHQ: false + +- type: parallax + id: MoveSpaceU + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Parallaxes/layer1.png" + slowness: 0.998046875 + scale: "1, 1" + scrolling: "0, -3" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars" + configPath: "/Prototypes/Parallaxes/parallax_config_stars.toml" + slowness: 0.996625 + scrolling: "0, -10" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizards_star_slower" + configPath: "/Prototypes/Parallaxes/parallax_config_stars-2.toml" + slowness: 0.989375 + scrolling: "0, -20" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim.toml" + slowness: 0.987265625 + scrolling: "0, -5" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim_faster" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim-2.toml" + slowness: 0.984352 + scrolling: "0, -4" + layersLQ: + - texture: + !type:GeneratedParallaxTextureSource + id: "" + configPath: "/Prototypes/Parallaxes/parallax_config.toml" + slowness: 0.875 + scrolling: "0, -10" + layersLQUseHQ: false + +- type: parallax + id: MoveSpaceD + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Parallaxes/layer1.png" + slowness: 0.998046875 + scale: "1, 1" + scrolling: "0, 3" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars" + configPath: "/Prototypes/Parallaxes/parallax_config_stars.toml" + slowness: 0.996625 + scrolling: "0, 10" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizards_star_slower" + configPath: "/Prototypes/Parallaxes/parallax_config_stars-2.toml" + slowness: 0.989375 + scrolling: "0, 20" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim.toml" + slowness: 0.987265625 + scrolling: "0, 5" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim_faster" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim-2.toml" + slowness: 0.984352 + scrolling: "0, 4" + layersLQ: + - texture: + !type:GeneratedParallaxTextureSource + id: "" + configPath: "/Prototypes/Parallaxes/parallax_config.toml" + slowness: 0.875 + scrolling: "0, 10" + layersLQUseHQ: false + diff --git a/Resources/Prototypes/Corvax/Parallax/silly_island.yml b/Resources/Prototypes/Corvax/Parallax/silly_island.yml index bc483e136bc..f297d227757 100644 --- a/Resources/Prototypes/Corvax/Parallax/silly_island.yml +++ b/Resources/Prototypes/Corvax/Parallax/silly_island.yml @@ -31,3 +31,49 @@ scrolling: "0, -0.05" shader: "" layersLQUseHQ: false + +- type: parallax + id: SillyIce + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Corvax/Parallax/SillyOcean.png" + slowness: 0.5 + shader: "" + scale: "1, 1" + scrolling: "0, -0.05" + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Corvax/Parallax/SillyOcean_Overlay2.png" + slowness: 0.3 + scale: "0.5, 0.5" + scrolling: "0.08, 0.08" + shader: "" + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Corvax/Parallax/SillyOcean_Overlay.png" + slowness: 0.05 + scale: "0.4, 0.4" + scrolling: "-0.1, -0.1" + shader: "" + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Corvax/Parallax/SillyIceParallax.png" + slowness: 0 + tiled: true + shader: "" + layersLQ: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Corvax/Parallax/SillyOcean.png" + slowness: 0.5 + scale: "1, 1" + scrolling: "0, -0.05" + shader: "" + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Corvax/Parallax/IceParallax.png" + slowness: 0 + tiled: true + shader: "" + layersLQUseHQ: false diff --git a/Resources/Prototypes/Corvax/secret_weights.yml b/Resources/Prototypes/Corvax/secret_weights.yml index 5b8029769b9..a9c7a5b4619 100644 --- a/Resources/Prototypes/Corvax/secret_weights.yml +++ b/Resources/Prototypes/Corvax/secret_weights.yml @@ -2,8 +2,8 @@ id: CorvaxSecretDefault weights: Nukeops: 0.15 - Traitor: 0.45 - Zombie: 0.20 + Traitor: 0.60 + Zombie: 0.05 Extended: 0.05 Survival: 0.10 Revolutionary: 0.05 diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index d9c8f3da1cc..d2bffa4f5c0 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -304,6 +304,8 @@ shoes: - state: equipped-FEET offset: "0, -0.02" + - state: equipped-FEET-reptilian # Corvax reptilian + offset: "0, -0.02" - type: Item size: Small sprite: Clothing/Shoes/Specific/large_clown.rsi @@ -345,6 +347,8 @@ shoes: - state: equipped-FEET offset: "0, -0.04" + - state: equipped-FEET-reptilian # Corvax reptilian + offset: "0, -0.04" - type: Item sprite: Clothing/Shoes/Specific/skates.rsi - type: ClothingSpeedModifier diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml index 6f894902332..cab5b9a1cc7 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml @@ -169,4 +169,5 @@ - PosterLegitSafetyMothMeth - PosterLegitSafetyMothHardhat - PosterLegitSafetyMothSSD + - PosterLegitOppenhopper chance: 1 diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index aafe66ebbde..65301b20fa1 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -60,6 +60,7 @@ skipChecks: true - type: Ghost - type: GhostHearing + - type: ShowElectrocutionHUD - type: IntrinsicRadioReceiver - type: ActiveRadio channels: diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 5c4f6418bcb..edd7e9a86c9 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -30,6 +30,7 @@ - type: IgnoreUIRange - type: StationAiHeld - type: StationAiOverlay + - type: ShowElectrocutionHUD - type: ActionGrant actions: - ActionJumpToCore diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 54518155220..e5bd8382b1a 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -77,6 +77,19 @@ 32: sprite: Mobs/Species/Human/displacement.rsi state: jumpsuit-female + # Corvax-Digitigrade-Start + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: Corvax/Mobs/Species/displacement.rsi + state: jumpsuit + shoes: # DM only for colored shoes! + sizeMaps: + 32: + sprite: Corvax/Mobs/Species/displacement.rsi + state: shoes + # Corvax-Digitigrade-End - type: LanguageSpeaker currentLanguage: TauCetiBasic - type: LanguageKnowledge #backmen: languages @@ -107,5 +120,18 @@ 32: sprite: Mobs/Species/Human/displacement.rsi state: jumpsuit-female + # Corvax-Digitigrade-Start + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: Corvax/Mobs/Species/displacement.rsi + state: jumpsuit + shoes: # DM only for colored shoes! + sizeMaps: + 32: + sprite: Corvax/Mobs/Species/displacement.rsi + state: shoes + # Corvax-Digitigrade-End #Weh diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 3be2e8200aa..a80387423c2 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -498,12 +498,22 @@ - type: Sprite sprite: Objects/Fun/sharkplush.rsi state: blue + - type: EmitSoundOnLand + sound: + path: /Audio/Items/Toys/rawr.ogg + - type: EmitSoundOnTrigger + sound: + path: /Audio/Items/Toys/rawr.ogg - type: EmitSoundOnUse sound: path: /Audio/Items/Toys/rawr.ogg - type: EmitSoundOnActivate sound: path: /Audio/Items/Toys/rawr.ogg + - type: MeleeWeapon + wideAnimationRotation: 180 + soundHit: + path: /Audio/Items/Toys/rawr.ogg - type: Item heldPrefix: blue storedRotation: -90 diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 8371e21c659..e16044b2826 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -54,6 +54,8 @@ reagents: - ReagentId: Cellulose Quantity: 6 + - type: Item + heldPrefix: cardboard - type: entity parent: MaterialCardboard @@ -135,6 +137,8 @@ - type: Construction graph: WebObjects # not sure if I should either keep this here or just make another prototype. Will keep it here just in case. node: cloth + - type: Item + heldPrefix: cloth - type: entity parent: MaterialCloth @@ -195,6 +199,8 @@ tags: - ClothMade - RawMaterial + - type: Item + heldPrefix: durathread - type: entity parent: MaterialDurathread @@ -334,8 +340,7 @@ sprite: Objects/Materials/materials.rsi state: corgihide - type: Item - sprite: Clothing/Head/Misc/hides.rsi - heldPrefix: corgi + heldPrefix: corgihide - type: Clothing sprite: Clothing/Head/Misc/hides.rsi equippedPrefix: corgi2 @@ -427,6 +432,8 @@ tags: - ClothMade - RawMaterial + - type: Item + heldPrefix: cotton - type: entity parent: MaterialCotton @@ -479,6 +486,8 @@ tags: - ClothMade - RawMaterial + - type: Item + heldPrefix: pyrotton - type: entity parent: MaterialPyrotton @@ -538,6 +547,8 @@ - ReagentId: Honk Quantity: 5 - type: Appearance + - type: Item + heldPrefix: bananium - type: entity parent: MaterialBananium @@ -588,6 +599,9 @@ tags: - ClothMade - RawMaterial + - type: Item + sprite: Objects/Materials/silk.rsi + heldPrefix: silk - type: entity parent: MaterialWebSilk @@ -710,6 +724,8 @@ reagents: - ReagentId: Vitamin Quantity: 3 + - type: Item + heldPrefix: bones - type: entity parent: MaterialBones @@ -764,6 +780,8 @@ - goliath_hide_3 - type: Item size: Large + heldPrefix: goliathhide + sprite: Objects/Materials/hide.rsi shape: - 0,0,2,2 diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index fd46fb40be2..9d07aed853b 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -46,6 +46,8 @@ reagents: - ReagentId: Gold Quantity: 10 + - type: Item + heldPrefix: gold - type: entity parent: GoldOre @@ -77,6 +79,8 @@ reagents: - ReagentId: Carbon Quantity: 20 + - type: Item + heldPrefix: diamond - type: entity parent: DiamondOre @@ -108,6 +112,8 @@ reagents: - ReagentId: Iron Quantity: 10 + - type: Item + heldPrefix: iron - type: entity id: SteelOre1 @@ -144,6 +150,8 @@ reagents: - ReagentId: Plasma Quantity: 10 + - type: Item + heldPrefix: plasma - type: entity parent: PlasmaOre @@ -175,6 +183,8 @@ reagents: - ReagentId: Silver Quantity: 10 + - type: Item + heldPrefix: silver - type: entity parent: SilverOre @@ -206,6 +216,8 @@ reagents: - ReagentId: Silicon Quantity: 10 + - type: Item + heldPrefix: spacequartz - type: entity parent: SpaceQuartz @@ -245,6 +257,8 @@ - ReagentId: Radium Quantity: 2 canReact: false + - type: Item + heldPrefix: uranium - type: entity parent: UraniumOre @@ -285,6 +299,8 @@ Quantity: 2 - ReagentId: Honk Quantity: 5 + - type: Item + heldPrefix: bananium - type: entity parent: BananiumOre @@ -324,6 +340,8 @@ - type: PhysicalComposition materialComposition: Coal: 100 + - type: Item + heldPrefix: coal - type: entity parent: Coal @@ -381,6 +399,8 @@ Quantity: 10 - ReagentId: Iodine Quantity: 5 + - type: Item + heldPrefix: salt - type: entity parent: SaltOre diff --git a/Resources/Prototypes/Entities/Objects/Materials/parts.yml b/Resources/Prototypes/Entities/Objects/Materials/parts.yml index 1db564c3b31..700c08e096a 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/parts.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/parts.yml @@ -45,7 +45,7 @@ map: ["base"] - type: Item size: Normal -# heldPrefix: rods + heldPrefix: rods - type: Construction graph: MetalRod node: MetalRod diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 520970ffde8..f31ead76503 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -5,7 +5,7 @@ - type: TimedDespawn lifetime: 0.4 - type: Sprite - drawdepth: Effects + drawdepth: BelowMobs layers: - shader: unshaded map: ["enum.EffectLayers.Unshaded"] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml index 0feab540132..5020a1b81b0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml @@ -107,6 +107,7 @@ Slash: 12 - type: EmbeddableProjectile sound: /Audio/Weapons/star_hit.ogg + offset: -0.15,0.0 - type: LandAtCursor - type: DamageOtherOnHit damage: @@ -119,6 +120,8 @@ sprite: Objects/Weapons/Melee/combat_knife.rsi - type: DisarmMalus malus: 0.225 + - type: ThrowingAngle + angle: 225 - type: entity name: survival knife @@ -297,6 +300,7 @@ Slash: 5 - type: EmbeddableProjectile sound: /Audio/Weapons/star_hit.ogg + offset: -0.15,0.0 - type: LandAtCursor - type: DamageOtherOnHit ignoreResistances: true @@ -306,3 +310,5 @@ Piercing: 15 - type: Item sprite: Objects/Weapons/Melee/throwing_knife.rsi + - type: ThrowingAngle + angle: 225 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 8677751fc5b..1e9ff8f0a3c 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -31,6 +31,11 @@ shader: unshaded - state: panel_open map: ["enum.WiresVisualLayers.MaintenancePanel"] + - state: electrified + sprite: Interface/Misc/ai_hud.rsi + shader: unshaded + visible: false + map: ["enum.ElectrifiedLayers.HUD"] - type: AnimationPlayer - type: Physics - type: Fixtures @@ -74,6 +79,7 @@ - type: DoorBolt - type: Appearance - type: WiresVisuals + - type: ElectrocutionHUDVisuals - type: ApcPowerReceiver powerLoad: 20 - type: ExtensionCableReceiver diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index 9a288368d7b..d70c0ce70fc 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -27,6 +27,11 @@ shader: unshaded - state: panel_open map: ["enum.WiresVisualLayers.MaintenancePanel"] + - state: electrified + sprite: Interface/Misc/ai_hud.rsi + shader: unshaded + visible: false + map: ["enum.ElectrifiedLayers.HUD"] - type: AnimationPlayer - type: Physics - type: Fixtures @@ -67,6 +72,7 @@ containerAccessProvider: board - type: Appearance - type: WiresVisuals + - type: ElectrocutionHUDVisuals - type: ApcPowerReceiver powerLoad: 20 - type: ExtensionCableReceiver diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index e6905d61cc1..3752821e462 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -31,23 +31,6 @@ - type: Sprite sprite: Structures/Doors/Airlocks/Standard/shuttle.rsi snapCardinals: false - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - - state: closed_unlit - shader: unshaded - map: ["enum.DoorVisualLayers.BaseUnlit"] - visible: false - - state: welded - map: ["enum.WeldableLayers.BaseWelded"] - - state: bolted_unlit - shader: unshaded - map: ["enum.DoorVisualLayers.BaseBolted"] - - state: emergency_unlit - shader: unshaded - map: ["enum.DoorVisualLayers.BaseEmergencyAccess"] - - state: panel_open - map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: Wires layoutId: Docking - type: Door @@ -113,6 +96,7 @@ - type: Sprite sprite: Structures/Doors/Airlocks/Glass/shuttle.rsi state: closed + snapCardinals: false - type: Construction graph: AirlockShuttle node: assembly diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index c011d6424cc..81ef89997d8 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -43,6 +43,11 @@ map: ["enum.DoorVisualLayers.BaseEmergencyAccess"] - state: panel_open map: ["enum.WiresVisualLayers.MaintenancePanel"] + - state: electrified + sprite: Interface/Misc/ai_hud.rsi + shader: unshaded + visible: false + map: ["enum.ElectrifiedLayers.HUD"] - type: AnimationPlayer - type: ApcPowerReceiver - type: ExtensionCableReceiver @@ -138,6 +143,7 @@ type: WiresBoundUserInterface - type: Appearance - type: WiresVisuals + - type: ElectrocutionHUDVisuals - type: Airtight noAirWhenFullyAirBlocked: false airBlockedDirection: @@ -177,6 +183,11 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false + - state: electrified + sprite: Interface/Misc/ai_hud.rsi + shader: unshaded + visible: false + map: [ "enum.ElectrifiedLayers.HUD" ] - type: Damageable damageModifierSet: RGlass - type: Destructible @@ -238,6 +249,11 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false + - state: electrified + sprite: Interface/Misc/ai_hud.rsi + shader: unshaded + visible: false + map: [ "enum.ElectrifiedLayers.HUD" ] - type: Destructible thresholds: - trigger: @@ -294,6 +310,11 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false + - state: electrified + sprite: Interface/Misc/ai_hud.rsi + shader: unshaded + visible: false + map: ["enum.ElectrifiedLayers.HUD"] - type: Destructible thresholds: - trigger: @@ -355,6 +376,11 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false + - state: electrified + sprite: Interface/Misc/ai_hud.rsi + shader: unshaded + visible: false + map: [ "enum.ElectrifiedLayers.HUD" ] - type: Destructible thresholds: - trigger: @@ -411,6 +437,11 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false + - state: electrified + sprite: Interface/Misc/ai_hud.rsi + shader: unshaded + visible: false + map: [ "enum.ElectrifiedLayers.HUD" ] - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml index ec9e5bdfa58..7fdd80bd2b1 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml @@ -110,6 +110,7 @@ - type: WarpPoint follow: true location: nuclear bomb + - type: FTLSmashImmune - type: entity parent: NuclearBomb diff --git a/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml b/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml index 8c7ee9e2194..cc6abce25ed 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml @@ -45,3 +45,11 @@ powerMV: !type:CableTerminalNode nodeGroupID: MVPower + +- type: entity + id: CableTerminalUncuttable + parent: CableTerminal + suffix: uncuttable + components: + - type: Cable + cuttingQuality: null \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Power/cables.yml b/Resources/Prototypes/Entities/Structures/Power/cables.yml index ac855a54606..f1ae038bc15 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cables.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cables.yml @@ -98,6 +98,14 @@ sound: path: /Audio/Ambience/Objects/emf_buzz.ogg +- type: entity + id: CableHVUncuttable + parent: CableHV + suffix: uncuttable + components: + - type: Cable + cuttingQuality: null + - type: entity parent: CableBase id: CableMV @@ -142,6 +150,14 @@ - type: CableVisualizer statePrefix: mvcable_ +- type: entity + id: CableMVUncuttable + parent: CableMV + suffix: uncuttable + components: + - type: Cable + cuttingQuality: null + - type: entity parent: CableBase id: CableApcExtension @@ -188,3 +204,11 @@ acts: [ "Destruction" ] - type: CableVisualizer statePrefix: lvcable_ + +- type: entity + id: CableApcExtensionUncuttable + parent: CableApcExtension + suffix: uncuttable + components: + - type: Cable + cuttingQuality: null diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml index e9b976403c3..cf994b3e733 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml @@ -1069,6 +1069,15 @@ - type: Sprite state: poster52_legit +- type: entity + parent: PosterBase + id: PosterLegitOppenhopper + name: "Oppenhopper" + description: "A poster for a long-forgotten movie. It follows a group of tenacious greenhorns from the Grasshopper Sector as they defend against onslaughts of the infamous Nuclear Operatives. The tagline reads: \"Nuke Ops will continue until robustness improves.\"" + components: + - type: Sprite + state: poster53_legit + #maps diff --git a/Resources/Prototypes/Entities/Structures/Walls/fence_metal.yml b/Resources/Prototypes/Entities/Structures/Walls/fence_metal.yml index 2d0c55af5a7..b5fa7d91902 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/fence_metal.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/fence_metal.yml @@ -70,8 +70,8 @@ - type: Appearance - type: GenericVisualizer visuals: - enum.ElectrifiedVisuals.IsPowered: - enum.ElectrifiedLayers.Powered: + enum.ElectrifiedVisuals.ShowSparks: + enum.ElectrifiedLayers.Sparks: True: { visible: True } False: { visible: False } - type: AnimationPlayer @@ -91,7 +91,7 @@ - state: straight_broken - state: electrified sprite: Effects/electricity.rsi - map: ["enum.ElectrifiedLayers.Powered"] + map: ["enum.ElectrifiedLayers.Sparks"] shader: unshaded visible: false - type: Physics @@ -151,7 +151,7 @@ - state: straight - state: electrified sprite: Effects/electricity.rsi - map: ["enum.ElectrifiedLayers.Powered"] + map: ["enum.ElectrifiedLayers.Sparks"] shader: unshaded visible: false - type: Fixtures @@ -209,7 +209,7 @@ - state: corner - state: electrified sprite: Effects/electricity.rsi - map: ["enum.ElectrifiedLayers.Powered"] + map: ["enum.ElectrifiedLayers.Sparks"] shader: unshaded visible: false - type: Fixtures @@ -256,7 +256,7 @@ - state: end - state: electrified sprite: Effects/electricity.rsi - map: ["enum.ElectrifiedLayers.Powered"] + map: ["enum.ElectrifiedLayers.Sparks"] shader: unshaded visible: false - type: Fixtures @@ -292,7 +292,7 @@ map: ["enum.DoorVisualLayers.Base"] - state: electrified sprite: Effects/electricity.rsi - map: [ "enum.ElectrifiedLayers.Powered" ] + map: [ "enum.ElectrifiedLayers.Sparks" ] shader: unshaded visible: false - type: Fixtures diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml index 2b65528d225..3433ffc366b 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml @@ -21,7 +21,7 @@ - state: grille - state: electrified sprite: Effects/electricity.rsi - map: ["enum.ElectrifiedLayers.Powered"] + map: ["enum.ElectrifiedLayers.Sparks"] shader: unshaded visible: false - type: Icon @@ -82,8 +82,8 @@ - type: Appearance - type: GenericVisualizer visuals: - enum.ElectrifiedVisuals.IsPowered: - enum.ElectrifiedLayers.Powered: + enum.ElectrifiedVisuals.ShowSparks: + enum.ElectrifiedLayers.Sparks: True: { visible: True } False: { visible: False } - type: AnimationPlayer @@ -176,7 +176,7 @@ - state: grille_diagonal - state: electrified_diagonal sprite: Effects/electricity.rsi - map: ["enum.ElectrifiedLayers.Powered"] + map: ["enum.ElectrifiedLayers.Sparks"] shader: unshaded visible: false - type: Icon @@ -211,7 +211,7 @@ - state: ratvargrille_diagonal - state: electrified_diagonal sprite: Effects/electricity.rsi - map: ["enum.ElectrifiedLayers.Powered"] + map: ["enum.ElectrifiedLayers.Sparks"] shader: unshaded visible: false - type: Icon diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index e4a72468d4b..64b6fee8ed6 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -10,6 +10,7 @@ - id: ClericalError - id: CockroachMigration - id: GasLeak + - id: GreytideVirus - id: IonStorm # its calm like 90% of the time smh - id: KudzuGrowth - id: MassHallucinations @@ -559,3 +560,24 @@ maxOccurrences: 1 # this event has diminishing returns on interesting-ness, so we cap it weight: 5 - type: MobReplacementRule + +- type: entity + id: GreytideVirus + parent: BaseStationEventShortDelay + components: + - type: StationEvent + startAudio: + path: /Audio/Announcements/attention.ogg + weight: 5 + minimumPlayers: 25 + reoccurrenceDelay: 20 + - type: GreytideVirusRule + accessGroups: + - Cargo + - Command + - Engineering + - Research + - Security + - Service + blacklist: + - External # don't space everything diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 7030c94eb92..e1797b4d57f 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -884,23 +884,6 @@ itemDrop: FloorTileItemSteel #This should probably be made null when it becomes possible to make it such, in SS13 prying destroyed tiles wouldn't give you anything. heatCapacity: 10000 -- type: tile - id: FloorSteelBurnt - name: tiles-steel-floor - sprite: /Textures/Tiles/steel_burnt.png - variants: 2 - placementVariants: - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemSteel #Same case as FloorSteelDamaged, make it null when possible - heatCapacity: 10000 - - # Concrete - type: tile id: FloorConcrete diff --git a/Resources/Prototypes/Tiles/plating.yml b/Resources/Prototypes/Tiles/plating.yml index d5997515ffc..ff3d7a98fba 100644 --- a/Resources/Prototypes/Tiles/plating.yml +++ b/Resources/Prototypes/Tiles/plating.yml @@ -27,18 +27,6 @@ friction: 0.3 heatCapacity: 10000 -- type: tile - id: PlatingBurnt - name: tiles-plating - sprite: /Textures/Tiles/plating_burnt.png - baseTurf: Lattice - isSubfloor: true - deconstructTools: [ AdvancedPrying ] # White Dream - footstepSounds: - collection: FootstepPlating - friction: 0.3 - heatCapacity: 10000 - - type: tile id: PlatingAsteroid name: tiles-asteroid-plating diff --git a/Resources/Prototypes/Tiles/tile_migrations.yml b/Resources/Prototypes/Tiles/tile_migrations.yml index 7b0b9d5d767..400e4f95a0f 100644 --- a/Resources/Prototypes/Tiles/tile_migrations.yml +++ b/Resources/Prototypes/Tiles/tile_migrations.yml @@ -49,6 +49,8 @@ id: FloorAsteroidCoarseSandDug target: FloorAsteroidSandDug +# 2023-09-09 + - type: tileAlias id: FloorGlassAlt target: FloorGlass @@ -56,3 +58,15 @@ - type: tileAlias id: FloorRGlassAlt target: FloorRGlass + +# 2024-11-15 +# Burnt tiles now exist, but they don't use the tiles system. They're decals. +# There's presently no way to add decals over existing tiles, so this will have to suffice for now. + +- type: tileAlias + id: PlatingBurnt + target: PlatingDamaged + +- type: tileAlias + id: FloorSteelBurnt + target: FloorSteelDamaged \ No newline at end of file diff --git a/Resources/Prototypes/audio.yml b/Resources/Prototypes/audio.yml index 24df3239b5c..a215ee45be1 100644 --- a/Resources/Prototypes/audio.yml +++ b/Resources/Prototypes/audio.yml @@ -270,7 +270,7 @@ - !type:NearbyAccessRule access: - Engineering - range: 3 + range: 2.5 - type: rules id: NearMaintenance @@ -320,7 +320,7 @@ components: - type: Morgue range: 3 - + - type: rules id: NearSpookyFog rules: diff --git a/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 488d58f186f..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json index 9a670d15261..b0c4419ddae 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by @ninruB#7795, based off tgstation's jackboots at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. Vox state modified from jackboots.rsi by Flareguy, reptilian made by kuro(388673708753027083)", + "copyright": "Made by @ninruB#7795, based off tgstation's jackboots at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. Vox state modified from jackboots.rsi by Flareguy", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-FEET-vox", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/explorer.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/explorer.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 1b47cb65f00..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/explorer.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/explorer.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/explorer.rsi/meta.json index d9ffa5f0d21..53fe5af64df 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/explorer.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/explorer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6236a0ddd1bd3c4e5574eb9fdebf4d79ccad2d2f, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6236a0ddd1bd3c4e5574eb9fdebf4d79ccad2d2f", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 0a8700b8b63..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json index c0377daa671..06e73942423 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/highheelboots.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 881cdffd80b..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json index 83b50eddf78..2fc72ab58cc 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, reptilian made by kuro(388673708753027083). equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "equipped-FEET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/laceups.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/laceups.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 7c5ac81dd37..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/laceups.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/laceups.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/laceups.rsi/meta.json index b0d1ee8247d..c9cd5639c17 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/laceups.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/laceups.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d672aade35db25affc6ed5e1c7aa0b640f118d4c, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d672aade35db25affc6ed5e1c7aa0b640f118d4c", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 8023b4caeb1..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json index 5aafeff3c11..31e76c8cf88 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, reptilian made by kuro(388673708753027083). equipped-FEET-vox & on-equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi, and equipped-FEET-vox state modified to fix inconsistencies", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, equipped-FEET-vox & on-equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi, and equipped-FEET-vox state modified to fix inconsistencies", "size": { "x": 32, "y": 32 @@ -11,18 +11,10 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "on-equipped-FEET", "directions": 4 }, - { - "name": "on-equipped-FEET-reptilian", - "directions": 4 - }, { "name": "equipped-FEET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-reptilian.png deleted file mode 100644 index fa46fdac0e0..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 03d004ae763..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json index 20e3f4fe25b..254ff8f181b 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json @@ -11,18 +11,10 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "on-equipped-FEET", "directions": 4 }, - { - "name": "on-equipped-FEET-reptilian", - "directions": 4 - }, { "name": "equipped-FEET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/on-equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/on-equipped-FEET-reptilian.png deleted file mode 100644 index dadd841efcd..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/on-equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 710685c2501..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json index 11a9b5c99a2..ad922c3fb75 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, reptilian made by kuro(388673708753027083). equipped-FEET-vox & on-equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi, and equipped-FEET-vox state modified to fix inconsistencies", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, equipped-FEET-vox & on-equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi, and equipped-FEET-vox state modified to fix inconsistencies", "size": { "x": 32, "y": 32 @@ -11,18 +11,10 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "on-equipped-FEET", "directions": 4 }, - { - "name": "on-equipped-FEET-reptilian", - "directions": 4 - }, { "name": "equipped-FEET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-reptilian.png deleted file mode 100644 index 3a7fa01664d..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 4d6abd4fbcd..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json index 5aafeff3c11..31e76c8cf88 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, reptilian made by kuro(388673708753027083). equipped-FEET-vox & on-equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi, and equipped-FEET-vox state modified to fix inconsistencies", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, equipped-FEET-vox & on-equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi, and equipped-FEET-vox state modified to fix inconsistencies", "size": { "x": 32, "y": 32 @@ -11,18 +11,10 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "on-equipped-FEET", "directions": 4 }, - { - "name": "on-equipped-FEET-reptilian", - "directions": 4 - }, { "name": "equipped-FEET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-reptilian.png deleted file mode 100644 index 5be3860724a..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/mercboots.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/mercboots.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 659e9d1593b..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/mercboots.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/mercboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/mercboots.rsi/meta.json index dfecf931f7e..f9a7088d3f7 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/mercboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/mercboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe, reptilian made by kuro(388673708753027083)", + "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index f0282a65a42..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/meta.json index a664e6f01fa..9f2d1bef549 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. This sprite features an adaptation of Hatsune Miku, © Crypton Future Media, Inc. 2007, licensed under a CC BY-NC: https://creativecommons.org/licenses/by-nc/3.0/, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. This sprite features an adaptation of Hatsune Miku, © Crypton Future Media, Inc. 2007, licensed under a CC BY-NC: https://creativecommons.org/licenses/by-nc/3.0/", "size": { "x": 32, "y": 32 @@ -13,10 +13,6 @@ { "name": "equipped-FEET", "directions": 4 - }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index e69568dd569..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json index e8c4fe40cda..7d390dfc0f2 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json @@ -23,14 +23,6 @@ "name": "on-equipped-FEET-vox", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, - { - "name": "on-equipped-FEET-reptilian", - "directions": 4 - }, { "name": "icon" }, diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET-reptilian.png deleted file mode 100644 index 7eff0cc1b16..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index e6f290140eb..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/meta.json index 7931608fda6..1536c6a232f 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/winterboots.rsi/meta.json @@ -10,10 +10,6 @@ { "name": "icon" }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "equipped-FEET", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index e153b9237f2..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/meta.json index 7931608fda6..1536c6a232f 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootscargo.rsi/meta.json @@ -10,10 +10,6 @@ { "name": "icon" }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "equipped-FEET", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index ac0364f5da2..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/meta.json index 4ab8baf84bb..9dbeca0da12 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootsengi.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 71aeb2f4758..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/meta.json index 7931608fda6..1536c6a232f 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootsmed.rsi/meta.json @@ -10,10 +10,6 @@ { "name": "icon" }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "equipped-FEET", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 4966f571918..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/meta.json index 8f2eafcb321..1536c6a232f 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootssci.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 720164af256..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/meta.json index 1056beebb79..91e73c3eb2b 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootssec.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index b0150e37e84..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/meta.json index 2271dfb9805..229de07b8ca 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootssyndicate.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 79200660237..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/meta.json index 8f2eafcb321..1536c6a232f 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/winterbootsweb.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index f5a2082efd7..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/meta.json index 5bc4241b22a..d85ed439110 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Misc/damedaneshoes.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Misc/damedaneshoes.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 9e1049cf816..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Misc/damedaneshoes.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/damedaneshoes.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/damedaneshoes.rsi/meta.json index fafe4b5ead4..b5ea733f551 100644 --- a/Resources/Textures/Clothing/Shoes/Misc/damedaneshoes.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Misc/damedaneshoes.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Alekshhh (Github) for SS14, inspired by Kazuma Kiryu outfit, reptilian made by kuro(388673708753027083)", + "copyright": "Made by Alekshhh (Github) for SS14, inspired by Kazuma Kiryu outfit", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 93d4ad48268..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/meta.json index 210c90fb8a0..54b1191d425 100644 --- a/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Misc/leather.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index daf283cb885..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/meta.json index 5acca6ab5d3..26badd65a4c 100644 --- a/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Misc/snakeskin.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 9c1fd2efe3e..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json index bc8ad87881d..64d692eb24f 100644 --- a/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe, reptilian made by kuro(388673708753027083). equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe, equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "equipped-FEET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index c23e5508f02..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/meta.json index 210c90fb8a0..54b1191d425 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/chef.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 3d9317f18cf..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/meta.json index 210c90fb8a0..54b1191d425 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/cult.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index bd005129e30..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/meta.json index f48c3f51add..76a639298b7 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d0474ed3b3cc00d0e37fb4c6ec8c10009c178f2c, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d0474ed3b3cc00d0e37fb4c6ec8c10009c178f2c", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index 0e523c6704b..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/meta.json index 210c90fb8a0..54b1191d425 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/spaceninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/equipped-FEET-reptilian.png b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/equipped-FEET-reptilian.png deleted file mode 100644 index ef90b174d7a..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/equipped-FEET-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json index 250866b9e28..26e888aefc6 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Skyrat-tg at commit https://github.com/Skyrat-SS13/Skyrat-tg/commit/b9c06b16579dc828ac4d6f603995e083075725b2, reptilian made by kuro(388673708753027083). equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", + "copyright": "Taken from Skyrat-tg at commit https://github.com/Skyrat-SS13/Skyrat-tg/commit/b9c06b16579dc828ac4d6f603995e083075725b2, equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-FEET", "directions": 4 }, - { - "name": "equipped-FEET-reptilian", - "directions": 4 - }, { "name": "equipped-FEET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index d8960add98f..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json index 7a6082970a5..99f5f269632 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 317f89c00fa..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/meta.json index dbfcb9bbf4f..7cd0cba745c 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by KingFroozy (github) for space station 14, reptilian made by hqlle(444118014024220672)", + "copyright": "Sprited by KingFroozy (github) for space station 14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index cba1d28f0e8..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json index 34dcf5256b2..b02e5f4b8a6 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github), monkey made by brainfood1183 (github) for ss14, default suit edit by Skarletto (github), reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github), monkey made by brainfood1183 (github) for ss14, default suit edit by Skarletto (github)", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender_purple.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender_purple.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 49851b9bb7e..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender_purple.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender_purple.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender_purple.rsi/meta.json index c464af94f87..3f72fb44600 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender_purple.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender_purple.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 9255751a8ea..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/meta.json index 47ad675eb79..36ba443fb53 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Skyrat-tg https://github.com/Skyrat-SS13/Skyrat-tg/blob/735606d73c5262dcce6a5d9b9cfc797eb5a64946/modular_skyrat/master_files/icons/mob/clothing/under/security.dmi, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from Skyrat-tg https://github.com/Skyrat-SS13/Skyrat-tg/blob/735606d73c5262dcce6a5d9b9cfc797eb5a64946/modular_skyrat/master_files/icons/mob/clothing/under/security.dmi, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 0391ee21e87..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/meta.json index 254f2d71fea..a1e00e5deae 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/capformal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 546b81558a6..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json index 4cd816e900e..0ae6ec79751 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d8138946b0ed06fced522729ac8eaa0596864329. In hand sprite scaled down by SonicHDC, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d8138946b0ed06fced522729ac8eaa0596864329. In hand sprite scaled down by SonicHDC, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index bba977df36c..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json index dd3f2ed862e..42fff94b5cb 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083), Resprited by MureixloL", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, Resprited by MureixloL", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 3f34c5be8bf..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json index 06779492278..7f39b4e6c5e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index f4d7057e872..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/meta.json index ecccca2185f..8b0bae84eac 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, reptilian made by hqlle(444118014024220672)", + "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_syndie.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_syndie.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 2ba22afa798..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_syndie.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_syndie.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_syndie.rsi/meta.json index ecccca2185f..8b0bae84eac 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_syndie.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_syndie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, reptilian made by hqlle(444118014024220672)", + "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 21d91cf01de..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json index 614a10093f3..6df797b50bf 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 83996655d97..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/meta.json index d24bef20869..a710470d458 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_agent.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index b4fbf22af0a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/meta.json index 06779492278..7f39b4e6c5e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index a26665a2c33..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/meta.json index 9fd0dfc80d1..699d9adec0e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcomformal.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcomformal.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 8f1055ef544..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcomformal.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcomformal.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcomformal.rsi/meta.json index 61021c6846c..253d44c4374 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcomformal.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcomformal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey made by SonicHDC (github) for ss14, reptilian made by Hemo(269831232517308416)", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 640b5d5dbc9..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/meta.json index a35e20535a8..70f8ed02568 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chaplain.rsi/meta.json @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index deaa8f3ce85..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json index 9fd0dfc80d1..699d9adec0e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 8e73b8c0629..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json index 06779492278..7f39b4e6c5e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index bf5c3aa1d98..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json index 80acb4d8eee..1dd4e0e0100 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index ea95f9c5881..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json index 5825d9906a9..3ff9d31a8fb 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index f10a1937109..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/meta.json index f1cabab0016..395146ef500 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14. In hand sprite scaled down by potato1234_x, reptilian made by kuro(388673708753027083)", + "copyright": "Made by brainfood1183 (github) for ss14. In hand sprite scaled down by potato1234_x", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 4301ebaa08f..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json index 06779492278..7f39b4e6c5e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo_turtle.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo_turtle.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 293a2e56bf5..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo_turtle.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo_turtle.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo_turtle.rsi/meta.json index 159c6df2c41..58b759095d7 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo_turtle.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo_turtle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Borrowed from QM turtleneck at https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi and modified by Hanzdegloker (github) for space station 14, resprited from https://github.com/space-syndicate/space-station-14/commit/ea49d33ef6875a9cac4a328dc24d39771d61debd by Deenkaide (github)", + "copyright": "Borrowed from QM turtleneck at https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi and modified by Hanzdegloker (github) for space station 14", "size": { "x": 32, "y": 32 @@ -17,10 +17,6 @@ { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 }, { "name": "inhand-left", diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 6776388d925..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/meta.json index e60cccc70f9..691614b22ba 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cossack.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Tunguso4ka (github) for SS14, monkey made by brainfood1183 (github) for ss14, edited by Alekshhh, reptilian made by kuro(388673708753027083)", + "copyright": "Made by Tunguso4ka (github) for SS14, monkey made by brainfood1183 (github) for ss14, edited by Alekshhh", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/curator.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/curator.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 7bc24ea3bcb..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/curator.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/curator.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/curator.rsi/meta.json index 053795ee773..e44afa7dfab 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/curator.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/curator.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/damedaneoutfit.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/damedaneoutfit.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 63a349a59f6..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/damedaneoutfit.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/damedaneoutfit.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/damedaneoutfit.rsi/meta.json index 8a9163994b9..891a03fd12d 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/damedaneoutfit.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/damedaneoutfit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Alekshhh (Github) for SS14, inspired by Kazuma Kiryu outfit, monkey made by brainfood1183 (github), monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Made by Alekshhh (Github) for SS14, inspired by Kazuma Kiryu outfit, monkey made by brainfood1183 (github), monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/deathsquad.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/deathsquad.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 00c03e85a74..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/deathsquad.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/deathsquad.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/deathsquad.rsi/meta.json index 3a39d00df22..b4ede7083eb 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/deathsquad.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/deathsquad.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by KEEYNy (Github) for Space Station 14. contacts: https://github.com/KEEYNy discord: KEEYN#3805, reptilian made by kuro(388673708753027083)", + "copyright": "Sprited by KEEYNy (Github) for Space Station 14. contacts: https://github.com/KEEYNy discord: KEEYN#3805", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 25cd1faabf9..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json index 105dc8caddf..e6b8442f5aa 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5ea6d8b4422027d0c22cb415d1f05a08bf39aaa0, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5ea6d8b4422027d0c22cb415d1f05a08bf39aaa0, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index fff9f1e87e7..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json index 105dc8caddf..e6b8442f5aa 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5ea6d8b4422027d0c22cb415d1f05a08bf39aaa0, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5ea6d8b4422027d0c22cb415d1f05a08bf39aaa0, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 14a9971cab7..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json index 9fd0dfc80d1..699d9adec0e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 24580f676c0..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json index d87d092d3cf..1fb9cf1b666 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_engineer.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_engineer.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index be62f857dc5..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_engineer.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_engineer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_engineer.rsi/meta.json index 1e4baea5fc0..89d55e0d37f 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_engineer.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_engineer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by discord:SOL(Артур)#8162, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Created by discord:SOL(Артур)#8162, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_janitor.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_janitor.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index dc751314895..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_janitor.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_janitor.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_janitor.rsi/meta.json index f7e7c2f49ab..89d55e0d37f 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_janitor.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_janitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by discord:SOL(Артур)#8162, monkey made by brainfood1183 (github) for ss14, reptilian made by KREKS(1042144875602268200)", + "copyright": "Created by discord:SOL(Артур)#8162, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_leader.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_leader.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 4e04083a255..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_leader.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_leader.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_leader.rsi/meta.json index f7e7c2f49ab..89d55e0d37f 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_leader.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_leader.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by discord:SOL(Артур)#8162, monkey made by brainfood1183 (github) for ss14, reptilian made by KREKS(1042144875602268200)", + "copyright": "Created by discord:SOL(Артур)#8162, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_medic.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_medic.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index a0e52e41f00..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_medic.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_medic.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_medic.rsi/meta.json index f7e7c2f49ab..89d55e0d37f 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_medic.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_medic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by discord:SOL(Артур)#8162, monkey made by brainfood1183 (github) for ss14, reptilian made by KREKS(1042144875602268200)", + "copyright": "Created by discord:SOL(Артур)#8162, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_security.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_security.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index e748677ae13..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_security.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_security.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_security.rsi/meta.json index f7e7c2f49ab..89d55e0d37f 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_security.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ert_security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by discord:SOL(Артур)#8162, monkey made by brainfood1183 (github) for ss14, reptilian made by KREKS(1042144875602268200)", + "copyright": "Created by discord:SOL(Артур)#8162, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index da0970408d8..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/meta.json index 53d02c89c37..76abd8fd310 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/familiar_garbs.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 6d943fcc542..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel.rsi/meta.json index 10a56718d1d..d5e94b031b2 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/flannel.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by MrGreen06#0618 (discord), reptilian made by kuro(388673708753027083), resprited by DreamlyJack(624946166152298517)", + "copyright": "Sprited by MrGreen06#0618 (discord), resprited by DreamlyJack(624946166152298517)", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/genetics.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/genetics.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 777e7bab939..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/genetics.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/genetics.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/genetics.rsi/meta.json index 3e517414b98..a675bb4f160 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/genetics.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/genetics.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083), Resprited by Mureixlol", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, Resprited by Mureixlol", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblack.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblack.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 34418d86b82..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblack.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblack.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblack.rsi/meta.json index fd0831d480a..e15d20c30d9 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblack.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblack.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by ;3#1161, monkey derivative made by brainfoodd183 (github), reptilian made by SonicDC(821343860961706054), resprited by DreamlyJack(624946166152298517), fix sprite by DreamlyJack(624946166152298517)", + "copyright": "Made by ;3#1161, monkey derivative made by brainfoodd183 (github), resprited by DreamlyJack(624946166152298517), fix sprite by DreamlyJack(624946166152298517)", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblue.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblue.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 1bd7b930044..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblue.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblue.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblue.rsi/meta.json index d8ef3d6600a..e15d20c30d9 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblue.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiblue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by ;3#1161, monkey derivative made by brainfoodd183 (github), reptilian made by kuro(388673708753027083), resprited by DreamlyJack(624946166152298517), fix sprite by DreamlyJack(624946166152298517)", + "copyright": "Made by ;3#1161, monkey derivative made by brainfoodd183 (github), resprited by DreamlyJack(624946166152298517), fix sprite by DreamlyJack(624946166152298517)", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaired.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaired.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index a1f7b446ddc..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaired.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaired.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaired.rsi/meta.json index fd0831d480a..e15d20c30d9 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaired.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaired.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by ;3#1161, monkey derivative made by brainfoodd183 (github), reptilian made by SonicDC(821343860961706054), resprited by DreamlyJack(624946166152298517), fix sprite by DreamlyJack(624946166152298517)", + "copyright": "Made by ;3#1161, monkey derivative made by brainfoodd183 (github), resprited by DreamlyJack(624946166152298517), fix sprite by DreamlyJack(624946166152298517)", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiyellow.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiyellow.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 46f37517fc9..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiyellow.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiyellow.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiyellow.rsi/meta.json index fd0831d480a..e15d20c30d9 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiyellow.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hawaiyellow.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by ;3#1161, monkey derivative made by brainfoodd183 (github), reptilian made by SonicDC(821343860961706054), resprited by DreamlyJack(624946166152298517), fix sprite by DreamlyJack(624946166152298517)", + "copyright": "Made by ;3#1161, monkey derivative made by brainfoodd183 (github), resprited by DreamlyJack(624946166152298517), fix sprite by DreamlyJack(624946166152298517)", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index d7e33533851..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json index 06779492278..7f39b4e6c5e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 0492239bd16..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json index 0d852551b62..7487d31b0d3 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "overlay-inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 5d6689f7fc8..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json index 53c028c3cf5..63a28ee9565 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 6f3f702482a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json index 2b005578a0c..c90547d04bd 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 18c92442de9..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/meta.json index 2b005578a0c..c90547d04bd 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 4719a7a7437..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json index c464af94f87..3f72fb44600 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 4b3039e8b22..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/meta.json index ee25d59059f..ea82b657453 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey made by brainfood1183 (github) for ss14, reptilian made by SonicDC(821343860961706054)", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index c531ba4c59e..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json index c464af94f87..3f72fb44600 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 25cc127d5fa..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json index d87d092d3cf..1fb9cf1b666 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index a55e3438e76..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/meta.json index 491a6c0894b..a869e2d92d2 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083), edited by Alekshhh", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, edited by Alekshhh", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index d0d66766d80..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/meta.json index 37dd1a5f626..5b9a00d1b23 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index d867c165bcb..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/meta.json index 00cf8a49eb8..b895d671225 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 and inhand modified by emisse, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 and inhand modified by emisse, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/kimono.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/kimono.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index c06401e4c02..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/kimono.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/kimono.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/kimono.rsi/meta.json index c2f976af35b..541eeb740f1 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/kimono.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/kimono.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite by joestarguy, code by kxvvv, reptilian made by SonicDC(821343860961706054)", + "copyright": "Sprite by joestarguy, code by kxvvv", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblack.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblack.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index e87050158f5..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblack.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblack.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblack.rsi/meta.json index 0dec657e5e3..138aaf39053 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblack.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblack.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblue.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblue.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 39ded499d78..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblue.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblue.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblue.rsi/meta.json index 0dec657e5e3..138aaf39053 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblue.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerblue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyergood.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyergood.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 29774ea42f0..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyergood.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyergood.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyergood.rsi/meta.json index 8376d8168a6..98f1cf18e2f 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyergood.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyergood.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/305131e20cfe53eb41de61db79a99aa12c2925b0, reptilian made by github:Morb0, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/305131e20cfe53eb41de61db79a99aa12c2925b0, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerpurple.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerpurple.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 8bc1e48d5f2..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerpurple.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerpurple.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerpurple.rsi/meta.json index b6505b67048..50c6aadaa69 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerpurple.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerpurple.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, inhands by github:Morb0, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, inhands by github:Morb0, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerred.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerred.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index f6bef563e2d..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerred.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerred.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerred.rsi/meta.json index 0dec657e5e3..138aaf39053 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerred.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/lawyerred.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index cbfa0a90760..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/meta.json index 833d6e70bf4..1dd4e0e0100 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by brainfood1183 (github) for ss14, reptilian made by Hemo(269831232517308416)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/loungewear.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/loungewear.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index b919ff52e83..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/loungewear.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/loungewear.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/loungewear.rsi/meta.json index 69b1c349c85..2eb853380b2 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/loungewear.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/loungewear.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index d7909251317..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json index 06779492278..7f39b4e6c5e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mercenary.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mercenary.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 871b47e6b50..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mercenary.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mercenary.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mercenary.rsi/meta.json index 2a67dcd82cd..358d58264c1 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mercenary.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mercenary.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/d7e905e4d5ab2b0a8ce210c6ad686aeeebbab426, monkey made by Jackal298 for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/d7e905e4d5ab2b0a8ce210c6ad686aeeebbab426, monkey made by Jackal298 for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 3660f96127d..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json index cb857df9b7a..47966793b35 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083), Resprited by github:DreamlyJack(624946166152298517)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by brainfood1183 (github) for ss14, Resprited by github:DreamlyJack(624946166152298517)", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 132e70f8225..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/meta.json index cd00ca614da..ea616f22f06 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, inhands and icon by peptide, edited further by Ian M. Burton, recolored by github:Morb0, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, inhands and icon by peptide, edited further by Ian M. Burton, recolored by github:Morb0, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/nanotrasen.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/nanotrasen.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index b2f938c3f74..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/nanotrasen.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/nanotrasen.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/nanotrasen.rsi/meta.json index e0cfa49e28f..9fcf5f6f051 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/nanotrasen.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/nanotrasen.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by You#1818. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by denlemp(692533587760906270)", + "copyright": "Created by You#1818. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 21f85513d3a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/meta.json index 6ce287691ad..2d0ed017603 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index bba33b69edd..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/meta.json index 80acb4d8eee..1dd4e0e0100 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 6842498c430..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/meta.json index b415944ef9b..9c146e91a69 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 and inhand modified by github:Morb0, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 and inhand modified by github:Morb0, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index f895a9776dd..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json index 06779492278..7f39b4e6c5e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 7a22c7020ab..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/meta.json index c2bc6782bee..8b0bae84eac 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_syndie.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_syndie.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 76d8c464268..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_syndie.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_syndie.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_syndie.rsi/meta.json index c2bc6782bee..8b0bae84eac 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_syndie.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_syndie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index ca780d602e9..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/meta.json index f259d2d52ca..0e56b63681a 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (Github) for ss14, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Made by brainfood1183 (Github) for ss14, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 36b904794ed..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/meta.json index 00cf8a49eb8..b895d671225 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 and inhand modified by emisse, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 and inhand modified by emisse, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pyjamasyndicateblack.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pyjamasyndicateblack.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 5fb74c2e398..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pyjamasyndicateblack.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pyjamasyndicateblack.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pyjamasyndicateblack.rsi/meta.json index 87a31cb44a4..1fb9cf1b666 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pyjamasyndicateblack.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pyjamasyndicateblack.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, reptilian made by ravage123321(606387928297635852)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index dcdf0207a4a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json index 3c5a4fb3604..8c1e3603113 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083), resprited by MureixloL", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, resprited by MureixloL", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 499348dcb1d..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/meta.json index 9c9b302c161..ec9eafdff40 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qmturtle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Derived from qmturtleneck sprite from beestation at commit https://github.com/BeeStation/BeeStation-Hornet/commit/a11e7468ca552cfc97c9164c69ccdafff09e794c and modified by Emisse for Space Station 14, Resprited by MureixloL, fix digi sprited by DreamlyJack, edited by Deenkaide (github) for ss14", + "copyright": "Derived from qmturtleneck sprite from beestation at commit https://github.com/BeeStation/BeeStation-Hornet/commit/a11e7468ca552cfc97c9164c69ccdafff09e794c and modified by Emisse for Space Station 14, fix digi sprited by DreamlyJack, edited by Deenkaide (github) for ss14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 6346716b451..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/meta.json index acf25628698..cb7720cb85a 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rainbow.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-SA-3.0", - "copyright": "Taken from goonstation at commit https://github.com/goonstation/goonstation/commit/4059e4be90832b02b1228b1bee3db342094e4f1e. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from goonstation at commit https://github.com/goonstation/goonstation/commit/4059e4be90832b02b1228b1bee3db342094e4f1e. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_nt.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_nt.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index b83d03df51a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_nt.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_nt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_nt.rsi/meta.json index 2d5a82bd24f..c20fa3e0040 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_nt.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_nt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, reptilian made by ravage123321(606387928297635852)", + "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_syndie.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_syndie.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index eb0e3704717..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_syndie.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_syndie.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_syndie.rsi/meta.json index 2d5a82bd24f..c20fa3e0040 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_syndie.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/recruit_syndie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, reptilian made by ravage123321(606387928297635852)", + "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_nt.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_nt.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 038a02fe1bb..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_nt.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_nt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_nt.rsi/meta.json index c2bc6782bee..8b0bae84eac 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_nt.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_nt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_syndie.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_syndie.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 11da9384bd5..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_syndie.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_syndie.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_syndie.rsi/meta.json index c2bc6782bee..8b0bae84eac 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_syndie.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/repairman_syndie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/reporter.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/reporter.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index e33e2de6700..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/reporter.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/reporter.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/reporter.rsi/meta.json index 00cf8a49eb8..b895d671225 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/reporter.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/reporter.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 and inhand modified by emisse, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 and inhand modified by emisse, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 4952b16463f..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/meta.json index e3a6c8d6d0c..61dcba5f3e9 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/rnd.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083), resprited from https://github.com/space-syndicate/space-station-14/commit/ea49d33ef6875a9cac4a328dc24d39771d61debd by Deenkaide (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, resprited from https://github.com/space-syndicate/space-station-14/commit/ea49d33ef6875a9cac4a328dc24d39771d61debd by Deenkaide (github)", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index fb566d0d725..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json index d960c2d5ec9..bb0a29fbfcd 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/safari.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/safari.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index e6126fdabe7..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/safari.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/safari.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/safari.rsi/meta.json index d5ac0826266..c83128c103c 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/safari.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/safari.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Created by EmoGarbage404, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index b3d5eeab5fc..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json index 1b52ad34b5f..e1d43d8449a 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/0a1ae39f0fb7353b0704f27d1599a567891f727c, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083), Resprited by MureixloL", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/0a1ae39f0fb7353b0704f27d1599a567891f727c, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, Resprited by MureixloL", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 973c4400fc7..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json index 75c2704c44e..963e5954295 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist_formal.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist_formal.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 5717fb8bff1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist_formal.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist_formal.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist_formal.rsi/meta.json index 17d0b118577..180040e6b9b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist_formal.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist_formal.rsi/meta.json @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 0d09b3b67fb..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json index 0d852551b62..7487d31b0d3 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "overlay-inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 260b3f85063..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json index a77c3fe6ac7..74773f22843 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for , reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index cce036889c0..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/meta.json index 2b005578a0c..c90547d04bd 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_engineer.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_engineer.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 41b388bc1d5..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_engineer.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_engineer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_engineer.rsi/meta.json index cd9bbaee825..c8cd53cefed 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_engineer.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_engineer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edit of hazard from tgstation at commit https://github.com/tgstation/tgstation/pull/67000, resprite by muriexlol, reptilian made by kuro(388673708753027083)", + "copyright": "Edit of hazard from tgstation at commit https://github.com/tgstation/tgstation/pull/67000, resprite by muriexlol", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index f07735803ed..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json index 73ba4045dce..6a4bd0d5fa9 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edit by Nairodian (github) of secred_s taken from tgstation at pull request https://github.com/tgstation/tgstation/pull/2984, resprite by muriexlol, reptilian made by kuro(388673708753027083)", + "copyright": "Edit by Nairodian (github) of secred_s taken from tgstation at pull request https://github.com/tgstation/tgstation/pull/2984, resprite by muriexlol", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 6d728674944..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/meta.json index 09a4530690a..626cb5d3230 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edit by Nairodian (github) of paramedic from tgstation at pull request https://github.com/tgstation/tgstation/pull/48236, reptilian made by kuro(388673708753027083)", + "copyright": "Edit by Nairodian (github) of paramedic from tgstation at pull request https://github.com/tgstation/tgstation/pull/48236", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_researcher.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_researcher.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 44f70701144..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_researcher.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_researcher.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_researcher.rsi/meta.json index abae7890ed2..843b852990e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_researcher.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_researcher.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edited by Nairodian (github) from the formal scientist jumpsuit by Flareguy for Space Station 14, reptilian made by kuro(388673708753027083), resprite by muriexlol", + "copyright": "Edited by Nairodian (github) from the formal scientist jumpsuit by Flareguy for Space Station 14, resprite by muriexlol", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/syndieformal.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/syndieformal.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 41e3359f1c4..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/syndieformal.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/syndieformal.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/syndieformal.rsi/meta.json index 2e976bd0021..1af9e0836fd 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/syndieformal.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/syndieformal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by belay5 (Discord) | equipped-INNERCLOTHING-monkey sprited by Puro (Github), reptilian made by kuro(388673708753027083)", + "copyright": "Sprited by belay5 (Discord) | equipped-INNERCLOTHING-monkey sprited by Puro (Github)", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/tacticool.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/tacticool.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 01d359edcee..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/tacticool.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/tacticool.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/tacticool.rsi/meta.json index 5cae80c313d..eb79a6be1a8 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/tacticool.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/tacticool.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d7e905e4d5ab2b0a8ce210c6ad686aeeebbab426, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d7e905e4d5ab2b0a8ce210c6ad686aeeebbab426, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/virology.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/virology.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index 50674e37d72..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/virology.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/virology.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/virology.rsi/meta.json index 3e517414b98..a675bb4f160 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/virology.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/virology.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083), Resprited by Mureixlol", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, Resprited by Mureixlol", "size": { "x": 32, "y": 32 @@ -18,10 +18,6 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index cde9b20b39b..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json index 0d852551b62..7487d31b0d3 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14, reptilian made by kuro(388673708753027083)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "overlay-inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/equipped-INNERCLOTHING-reptilian.png deleted file mode 100644 index e76254086ca..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/equipped-INNERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/meta.json index 616d201f627..15ec9a1b09e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/web.rsi/meta.json @@ -11,10 +11,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Corvax/Mobs/Species/displacement.rsi/jumpsuit.png b/Resources/Textures/Corvax/Mobs/Species/displacement.rsi/jumpsuit.png new file mode 100644 index 00000000000..cb3966d9239 Binary files /dev/null and b/Resources/Textures/Corvax/Mobs/Species/displacement.rsi/jumpsuit.png differ diff --git a/Resources/Textures/Corvax/Mobs/Species/displacement.rsi/meta.json b/Resources/Textures/Corvax/Mobs/Species/displacement.rsi/meta.json new file mode 100644 index 00000000000..4d42b7b5e16 --- /dev/null +++ b/Resources/Textures/Corvax/Mobs/Species/displacement.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "by Litogin", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "jumpsuit", + "directions": 4 + }, + { + "name": "shoes", + "directions" : 4 + } + ] +} diff --git a/Resources/Textures/Corvax/Mobs/Species/displacement.rsi/shoes.png b/Resources/Textures/Corvax/Mobs/Species/displacement.rsi/shoes.png new file mode 100644 index 00000000000..f483797a370 Binary files /dev/null and b/Resources/Textures/Corvax/Mobs/Species/displacement.rsi/shoes.png differ diff --git a/Resources/Textures/Corvax/Parallax/IceParallax.png b/Resources/Textures/Corvax/Parallax/IceParallax.png new file mode 100644 index 00000000000..53aaa7024c5 Binary files /dev/null and b/Resources/Textures/Corvax/Parallax/IceParallax.png differ diff --git a/Resources/Textures/Corvax/Parallax/LavaLightParallax.png b/Resources/Textures/Corvax/Parallax/LavaLightParallax.png new file mode 100644 index 00000000000..aec36ccd709 Binary files /dev/null and b/Resources/Textures/Corvax/Parallax/LavaLightParallax.png differ diff --git a/Resources/Textures/Corvax/Parallax/LavaParallax.png b/Resources/Textures/Corvax/Parallax/LavaParallax.png new file mode 100644 index 00000000000..a96c3ef491c Binary files /dev/null and b/Resources/Textures/Corvax/Parallax/LavaParallax.png differ diff --git a/Resources/Textures/Corvax/Parallax/SillyIceParallax.png b/Resources/Textures/Corvax/Parallax/SillyIceParallax.png new file mode 100644 index 00000000000..62ff6d88ce4 Binary files /dev/null and b/Resources/Textures/Corvax/Parallax/SillyIceParallax.png differ diff --git a/Resources/Textures/Interface/Misc/ai_hud.rsi/apc_hacked.png b/Resources/Textures/Interface/Misc/ai_hud.rsi/apc_hacked.png new file mode 100644 index 00000000000..72e111edac5 Binary files /dev/null and b/Resources/Textures/Interface/Misc/ai_hud.rsi/apc_hacked.png differ diff --git a/Resources/Textures/Interface/Misc/ai_hud.rsi/electrified.png b/Resources/Textures/Interface/Misc/ai_hud.rsi/electrified.png new file mode 100644 index 00000000000..046a307d09f Binary files /dev/null and b/Resources/Textures/Interface/Misc/ai_hud.rsi/electrified.png differ diff --git a/Resources/Textures/Interface/Misc/ai_hud.rsi/meta.json b/Resources/Textures/Interface/Misc/ai_hud.rsi/meta.json new file mode 100644 index 00000000000..7f1e67ac4d9 --- /dev/null +++ b/Resources/Textures/Interface/Misc/ai_hud.rsi/meta.json @@ -0,0 +1,37 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d170a410d40eec4fc19fe5eb8d561d58a0902082", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "electrified", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "apc_hacked", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Interface/Radial/RCD/airlock.png b/Resources/Textures/Interface/Radial/RCD/airlock.png index 7b1e0e9aa08..cb59f607410 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/airlock.png and b/Resources/Textures/Interface/Radial/RCD/airlock.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/airlocks.png b/Resources/Textures/Interface/Radial/RCD/airlocks.png index 1195d79b58b..c6e06962b2f 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/airlocks.png and b/Resources/Textures/Interface/Radial/RCD/airlocks.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/bulb_light.png b/Resources/Textures/Interface/Radial/RCD/bulb_light.png index d607bebf77d..de7677db916 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/bulb_light.png and b/Resources/Textures/Interface/Radial/RCD/bulb_light.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/deconstruct.png b/Resources/Textures/Interface/Radial/RCD/deconstruct.png index ca9548e0cf9..63d4b979708 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/deconstruct.png and b/Resources/Textures/Interface/Radial/RCD/deconstruct.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/directional.png b/Resources/Textures/Interface/Radial/RCD/directional.png index 473ad252aaf..6ea685256cd 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/directional.png and b/Resources/Textures/Interface/Radial/RCD/directional.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/directional_reinforced.png b/Resources/Textures/Interface/Radial/RCD/directional_reinforced.png index 3cb416d2c33..ccbd5c2afdd 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/directional_reinforced.png and b/Resources/Textures/Interface/Radial/RCD/directional_reinforced.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/firelock.png b/Resources/Textures/Interface/Radial/RCD/firelock.png index 5b581a2aa37..af02c703cf5 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/firelock.png and b/Resources/Textures/Interface/Radial/RCD/firelock.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/glass_airlock.png b/Resources/Textures/Interface/Radial/RCD/glass_airlock.png index bc0dbb3591f..b6219600566 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/glass_airlock.png and b/Resources/Textures/Interface/Radial/RCD/glass_airlock.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/lighting.png b/Resources/Textures/Interface/Radial/RCD/lighting.png index df167f35a8d..9f4ba870518 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/lighting.png and b/Resources/Textures/Interface/Radial/RCD/lighting.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/metal_tile.png b/Resources/Textures/Interface/Radial/RCD/metal_tile.png index 14f1ce2bd9d..4813e7ee595 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/metal_tile.png and b/Resources/Textures/Interface/Radial/RCD/metal_tile.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/plating.png b/Resources/Textures/Interface/Radial/RCD/plating.png index d3a63acc610..d10c4e855fd 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/plating.png and b/Resources/Textures/Interface/Radial/RCD/plating.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/reinforced_wall.png b/Resources/Textures/Interface/Radial/RCD/reinforced_wall.png index 07486830e25..0765ce84bf6 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/reinforced_wall.png and b/Resources/Textures/Interface/Radial/RCD/reinforced_wall.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/solid_wall.png b/Resources/Textures/Interface/Radial/RCD/solid_wall.png index b3efd02ac9a..57de5459942 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/solid_wall.png and b/Resources/Textures/Interface/Radial/RCD/solid_wall.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/tube_light.png b/Resources/Textures/Interface/Radial/RCD/tube_light.png index 9c94ccbd7b0..381b40ab209 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/tube_light.png and b/Resources/Textures/Interface/Radial/RCD/tube_light.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/walls_and_flooring.png b/Resources/Textures/Interface/Radial/RCD/walls_and_flooring.png index 88d3c36c7a5..fdca4452a19 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/walls_and_flooring.png and b/Resources/Textures/Interface/Radial/RCD/walls_and_flooring.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/window.png b/Resources/Textures/Interface/Radial/RCD/window.png index ed486c23b8e..df0d3bb8f85 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/window.png and b/Resources/Textures/Interface/Radial/RCD/window.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/window_reinforced.png b/Resources/Textures/Interface/Radial/RCD/window_reinforced.png index 80efff04ec8..1ab2065ce1d 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/window_reinforced.png and b/Resources/Textures/Interface/Radial/RCD/window_reinforced.png differ diff --git a/Resources/Textures/Interface/Radial/RCD/windows_and_grilles.png b/Resources/Textures/Interface/Radial/RCD/windows_and_grilles.png index e51ab094233..382439e329c 100644 Binary files a/Resources/Textures/Interface/Radial/RCD/windows_and_grilles.png and b/Resources/Textures/Interface/Radial/RCD/windows_and_grilles.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lefteye_2.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lefteye_2.png index 25f271fbaf1..09433ff81c8 100644 Binary files a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lefteye_2.png and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lefteye_2.png differ diff --git a/Resources/Textures/Objects/Materials/hide.rsi/goliathhide-inhand-left.png b/Resources/Textures/Objects/Materials/hide.rsi/goliathhide-inhand-left.png new file mode 100644 index 00000000000..b9a381ea13a Binary files /dev/null and b/Resources/Textures/Objects/Materials/hide.rsi/goliathhide-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/hide.rsi/goliathhide-inhand-right.png b/Resources/Textures/Objects/Materials/hide.rsi/goliathhide-inhand-right.png new file mode 100644 index 00000000000..6d3822309c3 Binary files /dev/null and b/Resources/Textures/Objects/Materials/hide.rsi/goliathhide-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/hide.rsi/meta.json b/Resources/Textures/Objects/Materials/hide.rsi/meta.json index 0ec2b254800..9235e8e2e93 100644 --- a/Resources/Textures/Objects/Materials/hide.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/hide.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/88d236d5c91e9a57e103957555c2e9a8c63b68fa/icons/obj/stacks/organic.dmi", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/88d236d5c91e9a57e103957555c2e9a8c63b68fa/icons/obj/stacks/organic.dmi. Inhands by mubururu_ (github).", "size": { "x": 32, "y": 32 @@ -10,6 +10,14 @@ { "name": "goliath_hide" }, + { + "name": "goliathhide-inhand-left", + "directions": 4 + }, + { + "name": "goliathhide-inhand-right", + "directions": 4 + }, { "name": "goliath_hide_2" }, @@ -17,4 +25,4 @@ "name": "goliath_hide_3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Materials/materials.rsi/bananium-inhand-left.png b/Resources/Textures/Objects/Materials/materials.rsi/bananium-inhand-left.png new file mode 100644 index 00000000000..b936e0fd78c Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/bananium-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/bananium-inhand-right.png b/Resources/Textures/Objects/Materials/materials.rsi/bananium-inhand-right.png new file mode 100644 index 00000000000..e352e25fc9d Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/bananium-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/bones-inhand-left.png b/Resources/Textures/Objects/Materials/materials.rsi/bones-inhand-left.png new file mode 100644 index 00000000000..07a339dc364 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/bones-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/bones-inhand-right.png b/Resources/Textures/Objects/Materials/materials.rsi/bones-inhand-right.png new file mode 100644 index 00000000000..5eb64901c0e Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/bones-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/cardboard-inhand-left.png b/Resources/Textures/Objects/Materials/materials.rsi/cardboard-inhand-left.png new file mode 100644 index 00000000000..fd69f67e5f3 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/cardboard-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/cardboard-inhand-right.png b/Resources/Textures/Objects/Materials/materials.rsi/cardboard-inhand-right.png new file mode 100644 index 00000000000..58e1ddc53df Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/cardboard-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/cloth-inhand-left.png b/Resources/Textures/Objects/Materials/materials.rsi/cloth-inhand-left.png new file mode 100644 index 00000000000..22b176f3d37 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/cloth-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/cloth-inhand-right.png b/Resources/Textures/Objects/Materials/materials.rsi/cloth-inhand-right.png new file mode 100644 index 00000000000..15c2d611503 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/cloth-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/corgihide-inhand-left.png b/Resources/Textures/Objects/Materials/materials.rsi/corgihide-inhand-left.png new file mode 100644 index 00000000000..28d69ddcd71 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/corgihide-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/corgihide-inhand-right.png b/Resources/Textures/Objects/Materials/materials.rsi/corgihide-inhand-right.png new file mode 100644 index 00000000000..a75f4f96e68 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/corgihide-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/cotton-inhand-left.png b/Resources/Textures/Objects/Materials/materials.rsi/cotton-inhand-left.png new file mode 100644 index 00000000000..ec9184783f9 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/cotton-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/cotton-inhand-right.png b/Resources/Textures/Objects/Materials/materials.rsi/cotton-inhand-right.png new file mode 100644 index 00000000000..adb73f42841 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/cotton-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/durathread-inhand-left.png b/Resources/Textures/Objects/Materials/materials.rsi/durathread-inhand-left.png new file mode 100644 index 00000000000..139c2a573e8 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/durathread-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/durathread-inhand-right.png b/Resources/Textures/Objects/Materials/materials.rsi/durathread-inhand-right.png new file mode 100644 index 00000000000..4572ed11d5f Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/durathread-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/meta.json b/Resources/Textures/Objects/Materials/materials.rsi/meta.json index 3ae12dc14c0..9fbad41e484 100644 --- a/Resources/Textures/Objects/Materials/materials.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/materials.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 , bear pelt remade by Alekshhh, wood sprite modified by MisterMecky, wood_2 and wood_3 made by MisterMecky based on wood sprite, cardboard sprites made by MisterMecky, bananium, bananium_1 and peel made by brainfood1183 (github) for ss14. Pyrotton sprites are drawn by Ubaser, using the cotton material sprites as a base.", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 , bear pelt remade by Alekshhh, wood sprite modified by MisterMecky, wood_2 and wood_3 made by MisterMecky based on wood sprite, cardboard sprites made by MisterMecky, bananium, bananium_1 and peel made by brainfood1183 (github) for ss14. Pyrotton sprites are drawn by Ubaser, using the cotton material sprites as a base. Bananium, cardboard, corgihide, cloth, cotton, pyrotton, bones and durathread inhands by mubururu_ (github).", "size": { "x": 32, "y": 32 @@ -16,6 +16,14 @@ { "name": "bananium" }, + { + "name": "bananium-inhand-left", + "directions": 4 + }, + { + "name": "bananium-inhand-right", + "directions": 4 + }, { "name": "bananium_1" }, @@ -36,6 +44,14 @@ { "name": "cardboard" }, + { + "name": "cardboard-inhand-left", + "directions": 4 + }, + { + "name": "cardboard-inhand-right", + "directions": 4 + }, { "name": "cardboard_2" }, @@ -48,6 +64,14 @@ { "name": "cloth" }, + { + "name": "cloth-inhand-left", + "directions": 4 + }, + { + "name": "cloth-inhand-right", + "directions": 4 + }, { "name": "cloth_2" }, @@ -57,9 +81,25 @@ { "name": "corgihide" }, + { + "name": "corgihide-inhand-left", + "directions": 4 + }, + { + "name": "corgihide-inhand-right", + "directions": 4 + }, { "name": "cotton" }, + { + "name": "cotton-inhand-left", + "directions": 4 + }, + { + "name": "cotton-inhand-right", + "directions": 4 + }, { "name": "cotton_2" }, @@ -69,6 +109,14 @@ { "name": "pyrotton" }, + { + "name": "pyrotton-inhand-left", + "directions": 4 + }, + { + "name": "pyrotton-inhand-right", + "directions": 4 + }, { "name": "pyrotton_2" }, @@ -95,6 +143,14 @@ { "name": "durathread" }, + { + "name": "durathread-inhand-left", + "directions": 4 + }, + { + "name": "durathread-inhand-right", + "directions": 4 + }, { "name": "durathread_2" }, @@ -160,6 +216,14 @@ { "name": "bones" }, + { + "name": "bones-inhand-left", + "directions": 4 + }, + { + "name": "bones-inhand-right", + "directions": 4 + }, { "name": "bones_2" }, diff --git a/Resources/Textures/Objects/Materials/materials.rsi/pyrotton-inhand-left.png b/Resources/Textures/Objects/Materials/materials.rsi/pyrotton-inhand-left.png new file mode 100644 index 00000000000..e47685d17c9 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/pyrotton-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/pyrotton-inhand-right.png b/Resources/Textures/Objects/Materials/materials.rsi/pyrotton-inhand-right.png new file mode 100644 index 00000000000..3225dc08980 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/pyrotton-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/bananium-inhand-left.png b/Resources/Textures/Objects/Materials/ore.rsi/bananium-inhand-left.png new file mode 100644 index 00000000000..01b00bc68f5 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/bananium-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/bananium-inhand-right.png b/Resources/Textures/Objects/Materials/ore.rsi/bananium-inhand-right.png new file mode 100644 index 00000000000..8c7fddffbdf Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/bananium-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/coal-inhand-left.png b/Resources/Textures/Objects/Materials/ore.rsi/coal-inhand-left.png new file mode 100644 index 00000000000..094a473d89a Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/coal-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/coal-inhand-right.png b/Resources/Textures/Objects/Materials/ore.rsi/coal-inhand-right.png new file mode 100644 index 00000000000..a8286cdebe2 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/coal-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/diamond-inhand-left.png b/Resources/Textures/Objects/Materials/ore.rsi/diamond-inhand-left.png new file mode 100644 index 00000000000..837741af434 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/diamond-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/diamond-inhand-right.png b/Resources/Textures/Objects/Materials/ore.rsi/diamond-inhand-right.png new file mode 100644 index 00000000000..0f97e2c9c9d Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/diamond-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/gold-inhand-left.png b/Resources/Textures/Objects/Materials/ore.rsi/gold-inhand-left.png new file mode 100644 index 00000000000..62255bf46bf Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/gold-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/gold-inhand-right.png b/Resources/Textures/Objects/Materials/ore.rsi/gold-inhand-right.png new file mode 100644 index 00000000000..50892832e05 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/gold-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/iron-inhand-left.png b/Resources/Textures/Objects/Materials/ore.rsi/iron-inhand-left.png new file mode 100644 index 00000000000..7d2f6abd577 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/iron-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/iron-inhand-right.png b/Resources/Textures/Objects/Materials/ore.rsi/iron-inhand-right.png new file mode 100644 index 00000000000..f616f48f957 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/iron-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/meta.json b/Resources/Textures/Objects/Materials/ore.rsi/meta.json index 8f1b4533f2a..bf4d6e77452 100644 --- a/Resources/Textures/Objects/Materials/ore.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/ore.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-SA-3.0", - "copyright": "silver, plasma taken from https://github.com/vgstation-coders/vgstation13 at commit f2ef221849675915a78fd92fe622c32ab740e085, spacequartz taken from https://github.com/goonstation/goonstation at commit b51daf824df46a3a1426475f982c09479818e522 and reshaded by Alekshhh, bananium; uranium; iron; gold; coal by Alekshhh, diamond at commit https://github.com/tgstation/tgstation/pull/78524, edited by TheShuEd", + "copyright": "silver, plasma taken from https://github.com/vgstation-coders/vgstation13 at commit f2ef221849675915a78fd92fe622c32ab740e085, spacequartz taken from https://github.com/goonstation/goonstation at commit b51daf824df46a3a1426475f982c09479818e522 and reshaded by Alekshhh, bananium; uranium; iron; gold; coal by Alekshhh, diamond at commit https://github.com/tgstation/tgstation/pull/78524, edited by TheShuEd. Inhands by mubururu_ (github).", "size": { "x": 32, "y": 32 @@ -10,32 +10,112 @@ { "name": "bananium" }, + { + "name": "bananium-inhand-left", + "directions": 4 + }, + { + "name": "bananium-inhand-right", + "directions": 4 + }, { "name": "gold" }, + { + "name": "gold-inhand-left", + "directions": 4 + }, + { + "name": "gold-inhand-right", + "directions": 4 + }, { "name": "iron" }, + { + "name": "iron-inhand-left", + "directions": 4 + }, + { + "name": "iron-inhand-right", + "directions": 4 + }, { "name": "uranium" }, + { + "name": "uranium-inhand-left", + "directions": 4 + }, + { + "name": "uranium-inhand-right", + "directions": 4 + }, { "name": "plasma" }, + { + "name": "plasma-inhand-left", + "directions": 4 + }, + { + "name": "plasma-inhand-right", + "directions": 4 + }, { "name": "spacequartz" }, + { + "name": "spacequartz-inhand-left", + "directions": 4 + }, + { + "name": "spacequartz-inhand-right", + "directions": 4 + }, { "name": "silver" }, + { + "name": "silver-inhand-left", + "directions": 4 + }, + { + "name": "silver-inhand-right", + "directions": 4 + }, { "name": "coal" }, + { + "name": "coal-inhand-left", + "directions": 4 + }, + { + "name": "coal-inhand-right", + "directions": 4 + }, { "name": "salt" }, + { + "name": "salt-inhand-left", + "directions": 4 + }, + { + "name": "salt-inhand-right", + "directions": 4 + }, { "name": "diamond" + }, + { + "name": "diamond-inhand-left", + "directions": 4 + }, + { + "name": "diamond-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Materials/ore.rsi/plasma-inhand-left.png b/Resources/Textures/Objects/Materials/ore.rsi/plasma-inhand-left.png new file mode 100644 index 00000000000..6c41a2c1494 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/plasma-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/plasma-inhand-right.png b/Resources/Textures/Objects/Materials/ore.rsi/plasma-inhand-right.png new file mode 100644 index 00000000000..00e4f114085 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/plasma-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/salt-inhand-left.png b/Resources/Textures/Objects/Materials/ore.rsi/salt-inhand-left.png new file mode 100644 index 00000000000..fe4e9e2d5d1 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/salt-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/salt-inhand-right.png b/Resources/Textures/Objects/Materials/ore.rsi/salt-inhand-right.png new file mode 100644 index 00000000000..8330643546b Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/salt-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/silver-inhand-left.png b/Resources/Textures/Objects/Materials/ore.rsi/silver-inhand-left.png new file mode 100644 index 00000000000..7f700503135 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/silver-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/silver-inhand-right.png b/Resources/Textures/Objects/Materials/ore.rsi/silver-inhand-right.png new file mode 100644 index 00000000000..ab4dcb98d69 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/silver-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/spacequartz-inhand-left.png b/Resources/Textures/Objects/Materials/ore.rsi/spacequartz-inhand-left.png new file mode 100644 index 00000000000..56837c96099 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/spacequartz-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/spacequartz-inhand-right.png b/Resources/Textures/Objects/Materials/ore.rsi/spacequartz-inhand-right.png new file mode 100644 index 00000000000..45b370cb8e3 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/spacequartz-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/uranium-inhand-left.png b/Resources/Textures/Objects/Materials/ore.rsi/uranium-inhand-left.png new file mode 100644 index 00000000000..422008998b4 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/uranium-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/uranium-inhand-right.png b/Resources/Textures/Objects/Materials/ore.rsi/uranium-inhand-right.png new file mode 100644 index 00000000000..d13a758cbd7 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/uranium-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/parts.rsi/meta.json b/Resources/Textures/Objects/Materials/parts.rsi/meta.json index 290b7dd91ce..c2503bb3936 100644 --- a/Resources/Textures/Objects/Materials/parts.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. Inhands by mubururu_ (github).", "size": { "x": 32, "y": 32 @@ -10,6 +10,14 @@ { "name": "rods" }, + { + "name": "rods-inhand-left", + "directions": 4 + }, + { + "name": "rods-inhand-right", + "directions": 4 + }, { "name": "rods_2" }, diff --git a/Resources/Textures/Objects/Materials/parts.rsi/rods-inhand-left.png b/Resources/Textures/Objects/Materials/parts.rsi/rods-inhand-left.png new file mode 100644 index 00000000000..b0e71052cdc Binary files /dev/null and b/Resources/Textures/Objects/Materials/parts.rsi/rods-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/parts.rsi/rods-inhand-right.png b/Resources/Textures/Objects/Materials/parts.rsi/rods-inhand-right.png new file mode 100644 index 00000000000..01b42adce19 Binary files /dev/null and b/Resources/Textures/Objects/Materials/parts.rsi/rods-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/silk.rsi/meta.json b/Resources/Textures/Objects/Materials/silk.rsi/meta.json index 5ac5189baed..77f77ee31a2 100644 --- a/Resources/Textures/Objects/Materials/silk.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/silk.rsi/meta.json @@ -1,12 +1,20 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by PixelTheKermit (github) for SS14", + "copyright": "Made by PixelTheKermit (github) for SS14. Inhands by mubururu_ (github).", "size": {"x": 32, "y": 32}, "states": [ { - "name": "icon" + "name": "icon" + }, + { + "name": "silk-inhand-left", + "directions": 4 + }, + { + "name": "silk-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Materials/silk.rsi/silk-inhand-left.png b/Resources/Textures/Objects/Materials/silk.rsi/silk-inhand-left.png new file mode 100644 index 00000000000..12425e93ced Binary files /dev/null and b/Resources/Textures/Objects/Materials/silk.rsi/silk-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/silk.rsi/silk-inhand-right.png b/Resources/Textures/Objects/Materials/silk.rsi/silk-inhand-right.png new file mode 100644 index 00000000000..ee1b193af07 Binary files /dev/null and b/Resources/Textures/Objects/Materials/silk.rsi/silk-inhand-right.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json b/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json index 5836524a687..eb7fcd7face 100644 --- a/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json @@ -1,5 +1,5 @@ { - "version": 2, + "version": 1, "license": "CC0-1.0", "copyright": "Original base by deltanedas (github) for SS14. Resprited by (DISCORD)@ps3moira#9488. Resprited by KREKS", "size": { diff --git a/Resources/Textures/Structures/Machines/uniform_printer.rsi/building.png b/Resources/Textures/Structures/Machines/uniform_printer.rsi/building.png index 3c29da5b751..30ccb64d6c5 100644 Binary files a/Resources/Textures/Structures/Machines/uniform_printer.rsi/building.png and b/Resources/Textures/Structures/Machines/uniform_printer.rsi/building.png differ diff --git a/Resources/Textures/Structures/Machines/uniform_printer.rsi/icon.png b/Resources/Textures/Structures/Machines/uniform_printer.rsi/icon.png index 7e01826a1a4..99e893be3e7 100644 Binary files a/Resources/Textures/Structures/Machines/uniform_printer.rsi/icon.png and b/Resources/Textures/Structures/Machines/uniform_printer.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json index 38184d76882..0f7607248a2 100644 --- a/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json @@ -384,6 +384,9 @@ { "name": "poster52_legit" }, + { + "name": "poster53_legit" + }, { "name": "random_legit" }, diff --git a/Resources/Textures/Structures/Wallmounts/posters.rsi/poster53_legit.png b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster53_legit.png new file mode 100644 index 00000000000..bedaf2c5c48 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/posters.rsi/poster53_legit.png differ diff --git a/Resources/Textures/Tiles/plating_burnt.png b/Resources/Textures/Tiles/plating_burnt.png deleted file mode 100644 index 899e6c91880..00000000000 Binary files a/Resources/Textures/Tiles/plating_burnt.png and /dev/null differ diff --git a/Resources/Textures/Tiles/steel_burnt.png b/Resources/Textures/Tiles/steel_burnt.png deleted file mode 100644 index 646c2859161..00000000000 Binary files a/Resources/Textures/Tiles/steel_burnt.png and /dev/null differ diff --git a/Resources/migration.yml b/Resources/migration.yml index 5d38db3e476..bf99669b73d 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -650,6 +650,7 @@ TorsoBorgJanitor: TorsoBorg # 2024-11-17 PresentRandomAsh: PresentRandomCoal + # 2024-11-19 CrateCrewMonitoringBoards: CrateCrewMonitoring @@ -658,3 +659,6 @@ CrateCrewMonitoringBoards: CrateCrewMonitoring # with console that let's you buy any shuttle. ComputerCargoShuttle: ComputerShipyard CargoShuttleComputerCircuitboard: ShipyardComputerCircuitboard + +# 2024-11-25 +CrateSlimepersonLifeSupport: CrateNitrogenInternals